A good[ish] website
Web development blog, loads of UI and JavaScript topics
The Nginx location directive sets configuration depending on a request URI, on which, for example, redirects can be performed. The basics…
This post examines all the ways multiple DOM elements can be manipulated. That can be done with a while loop or with recursion when using…
Here I’m trying to figure out what forms the specificity in CSS? What is the good kind of specificity, and what is bad specificity. And how…
The JavaScript's For...of loop structure is syntactic caster sugar dusted over the good old for statement. It's an extremely capable loop…
In other words: how to access objects values within the object itself. Would be cool if this worked: But it won’t, a getter is needed…
Here’s a reference type of post on modify arrays with native JavaScript methods. Adding to end of arrays with .push() Put anything into an…
The forEach loop for beginners, and how to use it with a nodeLists, and HTMLCollections. Array.prototype.forEach() So the forEach loop…
A lightweight introduction into some of array methods in JavaScript, and how work with objects in an iterative manner. Object.keys() Object…
Simple rebase/merge workflow and how to deal with possible merge conflicts. So you're building a feature on a feature branch called some…
Cherry-picking commits in Git is easy and straightforward, here’s how to do that. Basic usage of cherry-pick Take two branches: new-feature…