Jo Liss
Jo Liss
:preserve_host, when set to true, causes the Host header to be overridden, not to be preserved, unlike Apache's [ProxyPreserveHost](http://httpd.apache.org/docs/2.0/mod/mod_proxy.html#proxypreservehost), which has the semantics you would expect. In other words, given...
The .sort is extremely fast, and it cannot hurt to make things deterministic, to avoid flickering tests for instance. --- This is borderline bikesheddy, but I noticed the `readdir` call...
So I'm a big fan of ES6 modules, because they have statically analyzable `import`/`export` syntax with well-defined semantics, which means that bundling doesn't need to rely on any sorts of...
I'm not sure if this an issue with the OSM upstream or the data extraction -- hope it's OK I'm reporting this here: AF.geojson has the field `properties.osm_data.official_name` set to...
If you accidentally add a colon at the end of a line, like in Python, the CoffeeScript compiler (HEAD) produces rather unhelpful error messages. I ended up spending some time...
There are cases where loading an Agda file with C-c C-l can fail silently, without any error message or indication that something went wrong. I managed to reproduce it in...
My beforeEach functions are pretty slow, and sometimes even dominate test time. (I set up test fixture data and initialize an Ember app.) But the little timing badges that show...
Hi Gal, Thanks so much for this tool! I've been bothered by nvm slowing down my shell startup for a long time, and fnm is making my life so much...
Let's say I have three files, `a/y`, `b/x`, and `b/z`. If I specify these files as arguments, `exa` sorts by base name, whereas `ls` sort by full name: ``` $...
jQuery 3.0.0-rc1 uses `requestAnimationFrame`, resulting in significantly smoother animations compared to before. However, its tweening logic uses `Date.now()` instead of the [RAF `timestamp` argument](https://developer.mozilla.org/en-US/docs/Web/API/window/requestAnimationFrame). As a result, the animation is...