Posts
What I've learned so far.
-
Mental Health, Open Source and the xz backdoor
Posted on: April 02, 2024Open source maintainers are under a lot of stress. The xz backdoor and its social engineering to execute it showed us the possible repercussions.
open-source mental-health
-
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
-
Tagging e2e tests to reduce wait time
Posted on: March 12, 2024While testing your code is a great thing, useless end-to-end testing can be cumbersome. Here's how I leveraged tags to only run certain tests in PRs!
testing web-dev
-
More on the event loop
Posted on: March 07, 2024It's not just the callback queue. It's macrotask vs microtask queue!
javascript computer-science
-
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