Viewing profile — theThree
theThree
HN member- Joined
- Sat, Mar 16, 2024, 1:54 PM UTC
- HN karma
- 236
- Public activity
- 46 items
- HN profile
- View on Hacker News ↗
About theThree
No profile information was provided.
Recent public activity
-
comment
Comment #46259201
I don't know if I'm the only one experiencing this: It's too hard to find the download link from their website.
-
comment
Comment #45556686
I developed a JS pg client that use pipeline mode by default: https://github.com/stanNthe5/pgline
- story
-
comment
Comment #44936646
I'm using Bun, but I avoid using any Bun.* function, because I don't want to bind my typescript project to a runtime.
-
comment
Comment #44780587
It's still not ready for use. I don't care Enum. But you can not import local files without extensions. You can not define class properties in constructor.
- comment
- story
- story
- story
-
comment
Comment #44600353
It still have issues. Example: `import foo from "./Foo"` doesn't work. You have to `import foo from "./Foo.ts"`
-
comment
Comment #44556431
Something like this? async function runTasks(tasks: Job[]) { for (let task of tasks) { try { await task() } catch (e) { } } }
- story
- story
-
comment
Comment #44190760
Async/await is the only thing prevent me from using Rust.
- story
-
comment
Comment #44097873
Good to see there is already a preview version (@typescript/native-preview). Can tsc/ts-node use it now?
-
comment
Comment #44090716
The fastest PostgreSQL Node driver written in TypeScript: https://github.com/stanNthe5/pgline
- story
- story
- story
-
comment
Comment #43946827
Will do that. Thank you.
- story
-
comment
Comment #43899940
You can still control it by adding "//no-await". In fact, the "//no-await" makes me feel more clear.
- story
-
comment
Comment #43865206
From my own testing. In high-concurrency scenarios, their performance is roughly the same, and Node uses less memory. When it comes to string concatenation, Go has to do a lot of e…