Live data from Hacker News

Viewing profile — kaleidawave

kaleidawave

HN member
Joined
Mon, Aug 03, 2020, 2:20 PM UTC
HN karma
208
Public activity
51 items

About kaleidawave

No profile information was provided.

Recent public activity

  1. story
  2. comment
    Comment #47248517

    The "coding benchmarks" should be based heavily biased on what dependencies they use etc. Reduced characters etc.

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

  4. story
  5. story
  6. comment
  7. story
  8. story
  9. story
  10. story
  11. 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…

  12. comment
    Comment #37270689

    Case of the “Vacuous truth”

  13. comment
    Comment #36312593

    Just one file at a time for this preview. Eventually want to decide some customisations/options inline with tsconfig.

  14. 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…

  15. story
  16. 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…

  17. story
  18. 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…

  19. 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 …

  20. 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…

  21. 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…

  22. 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…

  23. comment
    Comment #33176733

    Qwik does use a virtual dom: https://github.com/BuilderIO/qwik/blob/3ac5665141208ccfac04f...

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

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