Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
buglungtung
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
7 ms
·
1.
▲
by
buglungtung
1mo ago
I registered on their platform API, and immediately it asked for a selfie inage to verify Im a human. Thanks, but there is definately no chance I gave them my selfie to use their model.
2.
▲
by
buglungtung
3mo ago
If you look back in your career, you will find out that most of time you dont write code, you read code. You need to travel back and forth of the logic to understand it, write some piece of code, run it then read it again to understand why
3.
▲
I Deleted a Million Lines of Code from an App 90M People Use
(chauapps.com)
3 points
by
buglungtung
3mo ago
|
0 comments
4.
▲
by
buglungtung
4mo ago
I use AI to summarize a book because I need to use it asap for my professional works. But I do reading because I enjoy learning process, the knowledge is a bonus, not the goal
5.
▲
Show HN: Sayathing – Open-Source platform that gives your text a voice
(github.com)
2 points
by
buglungtung
1y ago
|
0 comments
6.
▲
Show HN: Run arbitrary Python script, no setup, no configuration, just run it
(github.com)
1 points
by
buglungtung
1y ago
|
2 comments
7.
▲
by
buglungtung
1y ago
In the AI era, I often deal with the situation that I ask AI for a python script then need to setup an environment to run it. It's frustrated because I only need to run it once but need to deal with 15-30mins setup. That why I develope
8.
▲
by
buglungtung
2y ago
Greate article! I have learned about block/page long time ago when I needed to debug performance issue but not as deep as this article. Will share it with my teammate and its funny to see their emotional face :D
9.
▲
by
buglungtung
2y ago
The funny story behind KanthorQ is that it stemmed from a challenge I faced with another project: an open-source webhook gateway ( https://github.com/kanthorlabs/kanthor ). After completing that project and starting some
10.
▲
Show HN: KanthorQ – Messaging System Backed by PostgreSQL
(github.com)
4 points
by
buglungtung
2y ago
|
1 comments
11.
▲
by
buglungtung
2y ago
I agree that we are overthinking about infrastructure. Boring stack like traditional RDMS, single server with regular backup, few bash script for deployment is fine for normal startup that targets to non-tech customer. They will serve you w
12.
▲
Show HN: Get updates from your favourite Hacker News threads or comments
(hacker-news-watchdog.web.app)
1 points
by
buglungtung
2y ago
|
0 comments
13.
▲
by
buglungtung
2y ago
I'm using KSUID ( https://sotergreco.com/why-choose-ulids-over-traditional-uui... ) for a while and totally happen with it One tiny note about using sortable id is you should not expose it to public use without authentic
14.
▲
by
buglungtung
3y ago
Database is the most interesting topic that I could not stop curious about it. I used to hosted a techtalk for my teammate about how to write a db with LSM tree ans SSTable but I could not go so far as your article Sent it to my teammate an
15.
▲
by
buglungtung
3y ago
Absolutely Posgtres!!! Yesterday I had to migrate from postgres to mysql and I found some disadvantage things about mysql in my use case There is no returning for insert/update/delete what forces me do a second query to get new da
16.
▲
by
buglungtung
3y ago
Or use Gitlab. I remember doing a mirror syncing from Github with one of my gitlab repository. The main reason I used to do it is Gitlab offer free built-in CI at that time In my case one of most important thing is the GitOps workflow. It&#
17.
▲
by
buglungtung
3y ago
I'm considering host a gitea instance backup all of my repos. I have an important fix that need to be deployed right now but there is no way to deploy it in a normal way with our CI which one was setup with Github Action. Fortunately I
18.
▲
by
buglungtung
4y ago
I see. I also often spend my holidays in front of my desk, playing with my pet project. And I find it more worthwhile than going outside, lol. Thank you so much for your comment.
19.
▲
by
buglungtung
4y ago
Thank you for the feedback and advice you provided, especially regarding the target audience. In light of this, I plan to start by publishing some of my smaller projects first, as they are relatively easier to complete. This will involve do
20.
▲
Ask HN: How long does it take for you to release your open source project?
2 points
by
buglungtung
4y ago
|
4 comments
21.
▲
by
buglungtung
4y ago
I see. I hope you have a great journey. I used to want to implement a system like that for my import/export tasks because my workload heavily involves importing and exporting CSV files. But the deadline defeated me ;) I have no time to
22.
▲
by
buglungtung
4y ago
I have two questions 1. Does the retry function work based on the logic that the same input will always return the same output, even if the code uses non-deterministic methods like "new Date()" or "Math.random"? If not,
23.
▲
by
buglungtung
4y ago
Really like your idea because sometime I just want a "just work" solution to verify my idea. Then I can optimize it later if I need