
Probably better not to use for…of loops from ES2015 if you are transpiling with Babel. Not only does it produce a lot of code, this code wont run in ie11 without a polyfill for Symbol.

Probably better not to use for…of loops from ES2015 if you are transpiling with Babel. Not only does it produce a lot of code, this code wont run in ie11 without a polyfill for Symbol.
Collection of awesome things regarding WebAssembly (wasm) ecosystem.
https://github.com/mbasso/awesome-wasm/blob/master/README.md
INFINITOWN
This WebGL experiment is an attempt to create a procedural city that feels alive and is fun to watch.
Good brief introduction to ReasonML. This is definitely a language that I’d consider using. Of course it transpiles to JavaScript but it also targets WebAssembly and native.

It ended much the same way as it began.

Much informative, so nuance.
Like most things to do with CSS I’m not sure what I think of this.
Animating Layouts with the FLIP Technique for jank free layout transitions.
FLIP is a mnemonic device and technique which stands for First, Last, Invert, Play.
First: before anything happens, record the current (i.e., first) position and dimensions of the element that will transition. You can use getBoundingClientRect() for this, as will be shown below.
Last: execute the code that causes the transition to instantaneously happen, and record the final (i.e., last) position and dimensions of the element.*
Invert: since the element is in the last position, we want to create the illusion that it’s in the first position, by using transform to modify its position and dimensions. This takes a little math, but it’s not too difficult.
Play: with the element inverted (and pretending to be in the first position), we can move it back to its last position by setting its transform to none.
