Posts
What I've learned so far.
-
Revisiting sorting algorithms
Posted on: November 03, 2023From Bubble to Quick, unraveling the magic of sorting data efficiently.
computer-science
-
Understanding useRef
Posted on: November 01, 2023What exaclty is the useRef hook doing and when should you use it?
web-dev react
-
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
-
Uncovering valuable insight with git log
Posted on: October 23, 2023Working on a large codebase for the first time can be intimidating. If only there is a way to quickly scan the most important files...
open-source 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