Viewing profile — rtsao
rtsao
HN member- Joined
- Mon, Jul 20, 2015, 7:40 AM UTC
- HN karma
- 658
- Public activity
- 32 items
- HN profile
- View on Hacker News ↗
About rtsao
https://github.com/rtsao
[ my public key: https://keybase.io/rtsao; my proof: https://keybase.io/rtsao/sigs/UdppFRMUpq358KvKVkjisKYgFzYjThbtMebS65joGhI ]
Recent public activity
-
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…
-
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…
-
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…
- story
-
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…
-
comment
Comment #33334489
Automatic JSX runtime was added to esbuild in 0.14.51: https://github.com/evanw/esbuild/pull/2349
-
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…
-
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…
-
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…
-
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…
-
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…
- story
-
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…
-
comment
Comment #20647920
Did you evaluate TOML and if so, what were the drawbacks you identified for the workflow use case?
- comment
- story
- story
-
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…
-
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…
-
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…
-
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.
-
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…
-
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…
-
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…
-
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…