What I Wish I Knew About Dev Tools When I Started Coding
Choosing the Right Dev Tools Without Wasting Time As you learn how to code, you will eventually run into a wide variety of development tools. Pretty soon, you start asking yourself questions like: Which dev tools should I use? Which ones actually matter? Which ones will make me better or faster? When I say “dev…
How Teams Use Git Branches to Build Features
If you’re using Git to do your software development and you’re using your main or master branch and doing all your development there, you’re doing it wrong. Real teams make branches and do all their features or bug fixes in branches. Then, after everything works, they merge those branches into the main branch. It might…
The Lazy Way to Debug (That Actually Works)
Stop Debugging with Hope: How to Debug Code Like a Pro When I was first starting to learn how to code, and even into my early days of my software career, I had a very inefficient way of debugging my code. Whenever I saw a crash or some behavior that I wasn’t expecting (basically, a…

