Viewing profile — biscarch
biscarch
HN member- Joined
- Mon, Apr 23, 2012, 6:44 PM UTC
- HN karma
- 406
- Public activity
- 260 items
- HN profile
- View on Hacker News ↗
About biscarch
Recent public activity
-
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…
-
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…
-
comment
Comment #15755205
windmove is probably it -- https://www.emacswiki.org/emacs/WindMove
-
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…
-
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…
- comment
-
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…
-
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…
-
comment
Comment #12659776
FWIW webpack's docs are getting much better for v2
-
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
-
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…
-
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…
-
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…
-
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…
-
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…
-
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?
-
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…
-
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…
-
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)
-
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…
-
comment
Comment #9440038
For Haskell, Hayoo[0] works well [0]: http://hayoo.fh-wedel.de/?query=.%3A
-
comment
Comment #8619304
The link for OSX points to `new-www`.haskell.org. I'm sure the old site still links to haskell platform.
-
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…
-
comment
Comment #8516623
You could use this list to discover [other keyword] if you are unfamiliar with the landscape. (For example, Isomorphic applications)
-
comment
Comment #8438261
I find it no more complicated than things such as figuring out things like clearfixes were in the beginning.