Featured Posts
A curated list of my posts so far.
-
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