Viewing profile — kaleidawave
kaleidawave
HN member- Joined
- Mon, Aug 03, 2020, 2:20 PM UTC
- HN karma
- 208
- Public activity
- 51 items
- HN profile
- View on Hacker News ↗
About kaleidawave
No profile information was provided.
Recent public activity
- story
-
comment
Comment #47248517
The "coding benchmarks" should be based heavily biased on what dependencies they use etc. Reduced characters etc.
-
comment
Comment #47248398
Feeling glad I got a 2nd hand air M1 (16gb+512gb) for ~400 GBP last October, rather than waiting out for this. No idea how the processors compare, but that RAM isn't a good sign
- story
- story
-
comment
Comment #44614794
HTML?
- story
- story
- story
- story
-
comment
Comment #38656482
Just seen this, was playing with complex Fourier series yesterday. Here https://gist.github.com/kaleidawave/bdaf8649e7917152b6cdd624... Mind blowing that there might be a solar sys…
-
comment
Comment #37270689
Case of the “Vacuous truth”
-
comment
Comment #36312593
Just one file at a time for this preview. Eventually want to decide some customisations/options inline with tsconfig.
-
comment
Comment #36312549
Thanks! I could see why the name is a problem. Especially how N rotated 90 is Z. Unfortunate a bit late, given it was free on the package systems etc :/ Naming still remains the ha…
- story
-
comment
Comment #34999606
https://github.com/denoland/deno/issues/1739 just crossed 4 years. if they want people to do transpiling inside their own tool create an API so we can use our own tools rather than…
- story
-
comment
Comment #34136590
Ezno a semi compatible TypeScript compiler does effect tracking. It’s possible but you do have to handle the way functions handle parameters which is why it’s type system is differ…
-
comment
Comment #34136536
Not sure but I think startup time is impeded by the fact that tsc has to parse and synthesize around 20k+ lines of TS definition files. These require a parse for hoisting, require …
-
comment
Comment #33513523
It’s silly how the ‘async’ function modifier got a keyword before the function keyword and the generator modifier got a symbol ‘*’ after the function keyword…
-
comment
Comment #33195919
Ah I didn't realise it did that? The homepage still makes several references to lazily downloading JS? Eagerly downloading JS is something every framework does though and many only…
-
comment
Comment #33176899
It is true that a button's click event can fire before a client re-render. *However* if that event changes state it does have to do a initial VDOM render to make a first frame befo…
-
comment
Comment #33176733
Qwik does use a virtual dom: https://github.com/BuilderIO/qwik/blob/3ac5665141208ccfac04f...
-
comment
Comment #32961079
No defiantly not an intention to render anything obsolete. I think React will be around for a while. Instead if you like stricter types, `.map`, and `.push` JSX and want to reduce …
-
comment
Comment #32960997
Thank you. Just checked out the Bagel post ( https://www.brandons.me/blog/the-bagel-language ) and it looks really cool. Identifying pure functions (whether that is by syntax annot…