Viewing profile — hyperapp
hyperapp
HN member- Joined
- Mon, Jan 30, 2017, 3:51 AM UTC
- HN karma
- 217
- Public activity
- 120 items
- HN profile
- View on Hacker News ↗
About hyperapp
No profile information was provided.
Recent public activity
-
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-…
-
comment
Comment #28686625
I'm sorry to hear that. I address the Oh My Fish fiasco here: https://news.ycombinator.com/item?id=28661561
-
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…
-
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…
-
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.…
-
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.
-
comment
Comment #27082220
What's the difference between the bracketed syntax, e.g. [City] and `list`?
- story
-
comment
Comment #26303451
Thank you Zanchey, Ridiculousfish, Fabian, and everyone else!
-
comment
Comment #25312076
And Fish!
- story
- story
- story
- story
- story
-
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…
-
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…
-
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…
-
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 …
-
comment
Comment #23703858
Thank you. That's a marquee haha.
-
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…
-
comment
Comment #23703524
I hope not! :)
-
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…
-
comment
Comment #23703408
Preact would be the lighter React. Hyperapp is more comparable to Elm.
-
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,…