Viewing profile — amk_
amk_
HN member- Joined
- Sat, Aug 09, 2014, 8:12 PM UTC
- HN karma
- 860
- Public activity
- 235 items
- HN profile
- View on Hacker News ↗
About amk_
No profile information was provided.
Recent public activity
- story
- story
-
comment
Comment #16814329
Here's one: https://medium.com/@mbaranovski/quick-guide-to-tdd-in-react-...
-
comment
Comment #16814255
Extracted boilerplate from some of my libs: https://github.com/alexkrolick/react-lib-quickstart Want to port this to a CLI eventually, too
- comment
- comment
-
comment
Comment #15877079
IMO its origins in the gaming community, and all the moderation features that grew out of it, make Discord a much better fit for open source communities than Slack. For example: - …
-
comment
Comment #15841586
A framework like Phoenix would be awesome. Even something more lightweight (Express-like) would be pretty handy. Clojurescript front-end, Clojure backend...
- story
- story
-
comment
Comment #15672064
CSS-in-JS libs like https://emotion.sh make "micro-componentization" even easier - pretty much every raw DOM element can be replaced by a domain-relevant/ui-relevant component type…
-
comment
Comment #15626650
Fastify is a similar project that aims to be faster than Express and adds a number of API improvements like baked-in schema validation for routes, logging, and async-by-default API…
-
comment
Comment #15502689
This would be a good checklist for anyone considering building a UI framework. This kind of thing is the reason Bootstrap & friends are so large - they do a lot for you.
- story
-
comment
Comment #15430104
I have to agree, this will create a new component type every time the function is called, definitely causing a repaint and re-render of the subtree. The "right" way to do this is r…
-
comment
Comment #15373893
Still, it isn't entirely obvious under what conditions the methods of a React Component class are going to be called. For all you know they might always be called against the insta…
- story
-
comment
Comment #15345383
Wrote about that recently: https://medium.com/@alexkrolick/writing-react-components-for... See also: the docs
-
comment
Comment #15340792
The adapter system is super interesting: https://github.com/airbnb/enzyme/blob/master/docs/guides/mig... This might be the way to go for complex dependencies like React where APIs …
- story
-
comment
Comment #15200992
Yeah, I wrote about it last week: https://medium.com/@alexkrolick/writing-react-components-for... "Overall it's not a bad experience. JSX makes HTML feel more at home, but tends to…
-
comment
Comment #15198612
I could be wrong, but I don't think a LISP macro can transform the structure of the code in the same way that the JSX pragma turns an XML tree "inside-out". For example here's the …
- story
-
comment
Comment #15172686
KHTML -> Webkit -> Blink \_ Safari \_ Chromium |_ Epiphany |_ Opera 15+ |_ Vivaldi
-
comment
Comment #15147409
React is my preferred frontend library, so rather than ditch it when I needed to work with a CMS I decided to go JSX-free and write my component in plain ES2015 with Preact's hyper…