Live data from Hacker News

Viewing profile — rtsao

rtsao

HN member
Joined
Mon, Jul 20, 2015, 7:40 AM UTC
HN karma
658
Public activity
32 items

About rtsao

https://twitter.com/rtsao

https://github.com/rtsao

[ my public key: https://keybase.io/rtsao; my proof: https://keybase.io/rtsao/sigs/UdppFRMUpq358KvKVkjisKYgFzYjThbtMebS65joGhI ]

Recent public activity

  1. comment
    Comment #40893848

    I've heard of `isolatedDeclarations` in TS 5.5, but this post left me with more questions than answers because it conflates so many distinct things (TS 5.5, Deno, JSR). I'll try my…

  2. comment
    Comment #37991053

    Yarn 2.0 was ambitious, but in hindsight, it probably would have been better to make regular node_modules the default rather than pushing PnP and zero installs (and alienating most…

  3. comment
    Comment #36202074

    The demonstrated software doesn't look too compelling (mostly floating 2D app windows), but I could see this becoming the ultimate learning/training tool. Interactive, step-by-step…

  4. story
  5. comment
    Comment #35518127

    I recall many years ago Jonathan Hall (economist at Uber) describing a "traffic apocalypse" caused by empty self-driving cars flooding city streets. I think the notion was the oper…

  6. comment
    Comment #33334489

    Automatic JSX runtime was added to esbuild in 0.14.51: https://github.com/evanw/esbuild/pull/2349

  7. comment
    Comment #30561612

    Your assumption is correct. Those docks are all based on the Goodway DBD1100 [1]. When I was researching which dock to purchase myself, I came across this comprehensive list [2] of…

  8. comment
    Comment #29784734

    Uber | Senior Software Engineer | Web Platform | San Francisco Help develop the foundation for all web applications at Uber! Our team builds and maintains the developer tools, infr…

  9. comment
    Comment #28762567

    I think the fundamental issue plaguing virtually all forms of automatic release note generation boils down to the mismatch of audience. Commit messages and even pull request titles…

  10. comment
    Comment #26157842

    There's also a substantial writeup on the architecture of esbuild in the repo [1]. It is definitely worth a read if you are interested in some of the inner workings of esbuild or a…

  11. comment
    Comment #24934136

    It's great to see more tools adopting tree-sitter [1]. Having a (fast) single tool that can accurately parse most commonly used programming languages is incredibly useful, but it r…

  12. story
  13. comment
    Comment #22595082

    I hope this doesn't alter the current GitHub npm package registry policy where all packages must be published under a scope corresponding to name of the owning GitHub user/org. The…

  14. comment
    Comment #20647920

    Did you evaluate TOML and if so, what were the drawbacks you identified for the workflow use case?

  15. comment
  16. story
  17. story
  18. comment
    Comment #17853928

    https://www.deconstructconf.com/2017/brian-marick-patterns-f... is an interesting talk on this topic, which is where I learned about Seeing Like a State . I've just finished readin…

  19. comment
    Comment #17664812

    The Fusion plugin system is rather powerful and enables colocation of related/coupled code that would normally be spread across several places. For example, the Styletron plugin fo…

  20. comment
    Comment #13385094

    For folks who really care about performance, the easiest win is just switching to Inferno or Preact. You can pretty much leave your React code unmodified and get massive performanc…

  21. comment
    Comment #13136226

    For fun mostly. It's a passion project I did in my free time. I wanted to dogfood ideas, experiment, and learn.

  22. comment
    Comment #13133993

    Yeah, media queries and pseudo selectors (such as :hover) are supported. These tend to be really important for critical CSS. Descendent combinators are possible but to a greater de…

  23. comment
    Comment #13133691

    Thank you! It was built with Styletron actually (you can inspect the source). It was also built with the excellent Inferno.js [1] library to render static pages while also having a…

  24. comment
    Comment #13133583

    You're absolutely right that you can do it with pure CSS. But doing a pure CSS solution usually involves some CSS methodology that you need to apply extremely strictly and consiste…

  25. comment
    Comment #13133466

    Someone submitted a proposal on how to support descendent/child combinators. It's certainly possible, but I wrote a response on why it would would potentially involve tradeoffs: ht…