Live data from Hacker News

Viewing profile — amk_

amk_

HN member
Joined
Sat, Aug 09, 2014, 8:12 PM UTC
HN karma
860
Public activity
235 items

About amk_

No profile information was provided.

Recent public activity

  1. story
  2. story
  3. comment
    Comment #16814329

    Here's one: https://medium.com/@mbaranovski/quick-guide-to-tdd-in-react-...

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

  5. comment
  6. comment
  7. 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: - …

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

  9. story
  10. story
  11. 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…

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

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

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

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

  17. story
  18. comment
    Comment #15345383

    Wrote about that recently: https://medium.com/@alexkrolick/writing-react-components-for... See also: the docs

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

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

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

  23. story
  24. comment
    Comment #15172686

    KHTML -> Webkit -> Blink \_ Safari \_ Chromium |_ Epiphany |_ Opera 15+ |_ Vivaldi

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