
Technical debt is something you should always be conscious of in the software industry. Basically it is the result of doing a rushed or “unclean” job and leaving code or infrastructure in a state that makes it harder and slower…
Technical debt is something you should always be conscious of in the software industry. Basically it is the result of doing a rushed or “unclean” job and leaving code or infrastructure in a state that makes it harder and slower…
Here is a handy wrapper that turns setTimeout() into an async function.
NodeJS is awesome, but every now and then you come across something that isn’t really easy. One of those things is copying a file. Seems simple, but a glance at StackOverflow proves otherwise. The answers basically consist of reading a…
This post has been a long time coming. I started trying out NPM 5 the day it was released (May 2017), but wanted to reserve judgement until it had some time to “stabilize” and get some initial bugs fixed. As…
It’s fairly frequent that we end up wanting to log what the contents of a JS variable is. Often times though, that ends up being an object. Frequently this leads to something like this: This of course prints: The interpolation…
The Rest and Spread operators added in ES6 / JS2015 drastically improve the ability to deal with unknown numbers of function parameters, and array and hash manipulation.
One of the problems with using CSS to style an SVG is that you will typically want to target class names, just like other HTML elements. Unfortunately it can be difficult to get meaningful class names exported into your SVGs in most editors. Here is a technique for exporting names in Adobe Illustrator.