I often find stuff like this in codebases I review: function foo(bar) { const baz = bar(false) // we no longer do this for some good reason // if (baz === 'foobar') { // return baz // } else { ...

This last week Andrew Blick filed an issue on glamorous indicating that the UMD build of glamorous doesn’t work with React 16. The problem is that glamorous does a lazy-require for the prop-types module and apparently when building the UMD ...

Maintainability through colocation Source link ...

I’ve given this blog post as a talk which you can watch here: A while back, Guillermo Rauch‏ (creator of Socket.io and founder of Zeit.co (the company behind a ton of the awesome stuff coming out lately)) tweeted something profound: ...

Back in October of 2011 Ryan Dahl wrote a blogpost entitled “I hate almost all software” in which he asserts: The only thing that matters in software is the experience of the user. I totally agree with this statement, but ...