Viewing profile — mjackson
mjackson
HN member- Joined
- Fri, Mar 30, 2012, 6:08 PM UTC
- HN karma
- 516
- Public activity
- 91 items
- HN profile
- View on Hacker News ↗
About mjackson
Recent public activity
-
comment
Comment #28861491
Although esbuild has been out for a while now, I think it's relevant today because the benchmarks have been updated to include Parcel 2, which was just released earlier today.
- story
- story
-
comment
Comment #12512084
Hi, one of the authors of the router here :) Try to insert routing only when you need it. When you're ready for a router, react-router is a great choice. Lots of people are already…
- story
-
comment
Comment #12314219
Ah, great catch! I never see that error because that file is only loaded in browsers that don't have a native window.fetch. Thanks for catching that. Will fix right away.
- story
- story
-
comment
Comment #10621096
Karma and Mocha don't do the same thing, so this comparison is weird. Karma is a test runner. Use Karma to launch and run your tests in real browser instances. There is no better t…
-
comment
Comment #9997162
> The centralization of information also worries me because it makes it easier for things to disappear. After my arrest, my hosting service closed my account, because I wasn’t able…
- story
-
comment
Comment #9484691
> That sounds like a terrible design decision. The author never said it was a good design decision, or even a desirable one. He only said it would be impossibly difficult to do in …
-
comment
Comment #9317350
Co-author of ReactRouter here. With regards to #2, I used to think that a fully sync render function was a limitation of React, but have come to appreciate the fact that React trie…
-
comment
Comment #9010686
Maybe of interest: Zed Shaw, creator of Mongrel, gave a talk a few years back where he mentioned that he was using Factor to create the slides in his presentation. http://vimeo.com…
-
comment
Comment #8930021
> The point of React is to mix HTML and JS together. In React, there are no "templates." There's just JavaScript, and then more JavaScript that looks kind of like HTML (JSX). But i…
-
comment
Comment #8895614
Awesome stuff James :) I've been having a lot of those weird client vs. server realizations myself. Still getting used to thinking about stuff that renders in both places. I'm part…
-
comment
Comment #8845370
Using Go (or Scala or Java or whatever) doesn't magically scale a large system. Scaling problems in large systems are rarely solved at the micro level, i.e. you don't "scale" by si…
- story
-
comment
Comment #8625931
This is HUGE! Thanks to everyone at Facebook who worked on this. You guys are awesome. Also: The fact that this is written primarily in OCaml (as opposed to JS) is an excellent exa…
-
comment
Comment #8402476
> With the $18,000 fellowship, Gan will collaborate with industry and researchers around the world to work on new breakthroughs for data storage devices, and also see how his exist…
-
comment
Comment #8336920
Hats off to you guys as well. That's a TON of work. :) What % of Dart's development is sponsored by Google? Not trying to get a dig in at you guys, but it's also interesting to not…
-
comment
Comment #8335988
I'm constantly impressed by the level of execution of the Elixir project. In ~3 years they have accomplished much more than many other language ecosystems have to date. It's great …
-
comment
Comment #8238323
That should be part of your build system, not your package manager.
-
comment
Comment #8238299
tl;dr: "We want to build isomorphic apps, so we wrote a new package manager" Coupling the goal of building isomorphic apps with the need for a new way of managing packages to accom…
-
comment
Comment #7968478
> FRP streams go beyond promises by allowing many returned values. This is pretty nice, and shows how FRP is at least as powerful as Promises. The fact that you can only return a s…