Live data from Hacker News

Viewing profile — jorgre

jorgre

HN member
Joined
Mon, Jan 30, 2017, 3:51 AM UTC
HN karma
217
Public activity
120 items

About jorgre

No profile information was provided.

Recent public activity

  1. comment
    Comment #28691197

    I reached out to him when I could've filed a takedown notice instead. Later, after the tweets, I even asked him to shake hands on the whole thing[1][2][3], but he was already sunk-…

  2. comment
    Comment #28686625

    I'm sorry to hear that. I address the Oh My Fish fiasco here: https://news.ycombinator.com/item?id=28661561

  3. comment
    Comment #28680985

    Yes, indeed. 1. From a technical standpoint, it just meant swapping Oh My Fish for Wahoo and changing the name. But my complete lack of planning led to numerous issues that escalat…

  4. comment
    Comment #28674670

    I'm that person, but that's not exactly what I did. Wahoo, a framework I had built, became the base for the then, new Oh My Fish. I, myself, committed[1] it into the Oh My Fish rep…

  5. comment
    Comment #28660623

    Colorette author here. I put the benchmarks in a CI workflow so anyone can check. Click Benchmarks to see the results: https://github.com/jorgebucaran/color-bench-test/runs/371243.…

  6. comment
    Comment #27403301

    Not exactly what you are looking for, but 3blue1brown's https://github.com/3b1b/manim is a great resource all in all.

  7. comment
    Comment #27082220

    What's the difference between the bracketed syntax, e.g. [City] and `list`?

  8. story
  9. comment
    Comment #26303451

    Thank you Zanchey, Ridiculousfish, Fabian, and everyone else!

  10. comment
    Comment #25312076

    And Fish!

  11. story
  12. story
  13. story
  14. story
  15. story
  16. comment
    Comment #23706091

    Basically, yes! In practice, we don't advocate users to reach out for dispatch, as Hyperapp intends to provide all the fx/subscriptions building blocks you need to create the right…

  17. comment
    Comment #23705893

    Can't use DOM events to create side effects. What we do is define UI interactions as state transitions. Transitions allow you to say [nextState, myEffect] to update the state and c…

  18. comment
    Comment #23705299

    Finish the site and docs, merge the minimizations branch (has memory performance improvements, and brings it down to 1690 bytes gzipped / 1528 bytes brotlified total), add tests, t…

  19. comment
    Comment #23705192

    Just saying "purely functional SPAs" was lazy, but it's usually enough to convey what makes Hyperapp different from other frameworks like React, etc. Let me try harder. There's no …

  20. comment
    Comment #23703858

    Thank you. That's a marquee haha.

  21. comment
    Comment #23703816

    My example actually has no issues, but [here is an example][1] so you can confirm that. I included the implementation of `delay` there as well so you can also see what happens behi…

  22. comment
    Comment #23703524

    I hope not! :)

  23. comment
    Comment #23703518

    Hyperapp only makes sense if you want to write immutable, purely functional SPAs in JavaScript. There's no Web API or native abstraction for that. And if your site was only content…

  24. comment
    Comment #23703408

    Preact would be the lighter React. Hyperapp is more comparable to Elm.

  25. comment
    Comment #23698192

    We built it into the framework, if you happen to be familiar with Elm, this should make sense right away, but here's how you'd write something like that using Hyperapp: import { h,…