Live data from Hacker News

Viewing profile — theThree

theThree

HN member
Joined
Sat, Mar 16, 2024, 1:54 PM UTC
HN karma
236
Public activity
46 items

About theThree

No profile information was provided.

Recent public activity

  1. 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.

  2. comment
    Comment #45556686

    I developed a JS pg client that use pipeline mode by default: https://github.com/stanNthe5/pgline

  3. story
  4. 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.

  5. 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.

  6. comment
  7. story
  8. story
  9. story
  10. comment
    Comment #44600353

    It still have issues. Example: `import foo from "./Foo"` doesn't work. You have to `import foo from "./Foo.ts"`

  11. comment
    Comment #44556431

    Something like this? async function runTasks(tasks: Job[]) { for (let task of tasks) { try { await task() } catch (e) { } } }

  12. story
  13. story
  14. comment
    Comment #44190760

    Async/await is the only thing prevent me from using Rust.

  15. story
  16. comment
    Comment #44097873

    Good to see there is already a preview version (@typescript/native-preview). Can tsc/ts-node use it now?

  17. comment
    Comment #44090716

    The fastest PostgreSQL Node driver written in TypeScript: https://github.com/stanNthe5/pgline

  18. story
  19. story
  20. story
  21. comment
    Comment #43946827

    Will do that. Thank you.

  22. story
  23. comment
    Comment #43899940

    You can still control it by adding "//no-await". In fact, the "//no-await" makes me feel more clear.

  24. story
  25. 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…