Live data from Hacker News

Viewing profile — biscarch

biscarch

HN member
Joined
Mon, Apr 23, 2012, 6:44 PM UTC
HN karma
406
Public activity
260 items

About biscarch

Golang, JavaScript, Docker, Products

Recent public activity

  1. comment
    Comment #15888749

    All functions in Haskell are single-argument functions. Multiple arguments are syntactic sugar. The syntax sugar can make it confusing to talk about but if you define an `add` func…

  2. comment
    Comment #15884245

    All functions in Haskell are curried by default Your `add2` uses a tuple instead of currying whereas `add1` is already curried. In ghci: Prelude> (+) 3 4 == (+ 3) 4 True So you cou…

  3. comment
    Comment #15755205

    windmove is probably it -- https://www.emacswiki.org/emacs/WindMove

  4. comment
    Comment #15554098

    link-rest fits the use case where you might not be able to transition the REST endpoint to be behind a GraphQL API (and thus be server-side resolvable which is definitely preferabl…

  5. comment
    Comment #14860147

    I've been super excited about Chrome headless but haven't had a chance to dig into using it yet. The api here looks amazing for getting started without getting lost in the weeds. I…

  6. comment
  7. comment
    Comment #12720052

    I think my intent might have come across wrong here. The "states" aren't related to container/dumb components or data-fetching/selection logic. They're purely about rendering the s…

  8. comment
    Comment #12719739

    Loading (and error, etc) state should be the responsibility of the component doing the content rendering, not the parent. So the ConditionalSpinner component: Could be written bett…

  9. comment
    Comment #12659776

    FWIW webpack's docs are getting much better for v2

  10. comment
    Comment #12500599

    You can use something like dataloader[0] or haxl[1] to help with this issue. [0]: https://github.com/facebook/dataloader [1]: https://github.com/facebook/Haxl

  11. comment
    Comment #12455592

    You link to a comment which indicates serialization is a potentially breaking issue. This is a tradeoff that does not affect the routine behavior of redux but may affect advanced u…

  12. comment
    Comment #12448829

    It is possible to use Symbols instead of strings, which yields some nice improvements in terms of no longer allowing construction of actions with potentially misspelled strings, et…

  13. comment
    Comment #12175468

    If you go the docker-machine route, you can do the following. brew install docker-machine docker-machine create --name myserver ...digital-ocean-options eval $(docker-machine env m…

  14. comment
    Comment #12133356

    Right, except support for that has to be built into the static site generator you're using. In the React case, the user can choose how they want to do it without the SSG author car…

  15. comment
    Comment #12131291

    Having React on a static blog makes it easier to share component libraries that you've built up on other projects (perhaps SPAs) with said static blog. It also allows the use of Re…

  16. comment
    Comment #12131249

    As someone who is also building a React-based SSG, what do you believe makes sitegen's design superior to other React SSG's?

  17. comment
    Comment #11612769

    Location: SF Remote: Yes/Preferably (6+ years of remote experience) Willing to relocate: No Technologies: JS(Babel), React, Haskell, Docker Résumé/CV: christopherbiscardi.com/resum…

  18. comment
    Comment #10820606

    React Router has been iterating towards better APIs for advanced use cases (server-side rendering, code splitting, relay (and other lib) integration, etc). Having used it in projec…

  19. comment
    Comment #10630806

    I've been using lost for a few months now. Even if you don't use it it's worth taking a look. (built with PostCSS)

  20. comment
    Comment #9751671

    We use it at $work in an "isomorphic" context along with react-router[0] and fluxible[1]. I'm very happy with it and the ecosystem developing around it. Using React also provides a…

  21. comment
    Comment #9440038

    For Haskell, Hayoo[0] works well [0]: http://hayoo.fh-wedel.de/?query=.%3A

  22. comment
    Comment #8619304

    The link for OSX points to `new-www`.haskell.org. I'm sure the old site still links to haskell platform.

  23. comment
    Comment #8526912

    After looking into this I've come to the conclusion that rewriting the JavaScript to handle events through React's system is the best way to include Foundation's JS components. (Th…

  24. comment
    Comment #8516623

    You could use this list to discover [other keyword] if you are unfamiliar with the landscape. (For example, Isomorphic applications)

  25. comment
    Comment #8438261

    I find it no more complicated than things such as figuring out things like clearfixes were in the beginning.