Today I learned
A little blog that embraces the principles of learning in public. Why don't share your journey of getting better at stuff? Everyone started somewehere.
I want to keep learning about interesting things, to keep getting better at various topics.
The plan is to write about:
- Web Developlment
- Computer Science
- Science related topics
- ...whatever I found interesting that day!
Join me and let's have some fun!
Latest
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.
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...
The intricacies of the event loop
Posted on:October 22, 2023Asynchronous code would be impossible without the event loop. But how does it work?