Featured Posts
A curated list of my posts so far.
-
Building my first Rust CLI tool
Posted on: March 24, 2024Sometimes it's better to build the tools you need yourself. You will learn a lot along the way!
tools rust cli open-source
-
Writing my first GitHub Action
Posted on: February 14, 2024When I needed a specific action to add in my workflow, I could not find a good one. So I wrote it myself - here is how!
typescript github-actions
-
A quick history of the world's most notorious font
Posted on: November 16, 2023How a virtual dog in a computer program aimed at new PC users and children changed the world of typography
typography
-
Using git bisect to find the one bad commit
Posted on: October 26, 2023Commits may break things. But you might not notice it right away and push more commits. With git bisect you'll find the bad commit in no time.
git
-
The intricacies of the event loop
Posted on: October 22, 2023Asynchronous code would be impossible without the event loop. But how does it work?
javascript computer-science