Blog posts in category “Debugging”
How to figure out what's the problem when the computer doesn't do what you think it should? Let's debug!
-
Jan 13th, 2024Debugging Python
How to figure out what happens when the computer says no? This article is the written form of my Debugging Python talk I’ve given a couple of times lately. It explores both technical and non-technical approaches to being a code detective.
-
Jan 4th, 2023Introducing: Syntax Error
I'm launching a newsletter for software developers. Syntax Error helps developers to learn debugging and turn a stressful situation into a joyful exploration.
-
Jun 29th, 2022Javascript's console is so much more than just console.log
I previously wrote how print statements are the best debugging tool. This time, I'll dive deeper into debugging via printing in Javascript/Typescript land. console.log is well known but there's more than meets the eye.
-
Jun 8th, 2022print is your best debugging tool
One tool to rule them all, one tool to find them (bugs). One tool to bring them all, and in the editor fix them.
-
Jan 13th, 2021Thoughts on debugging
Debugging is a way to figure out what's wrong with your application and code. It's one of those skills that is very much worth investing your time and effort into as it will help you become a better developer.