0x55aa
← Back to Blog

#"debugging"

10 articles tagged with ""debugging""

"laravel""php""web-dev"
6 min read

Laravel Telescope: Stop Debugging in the Dark 🔭

You're dd()-ing everywhere like it's 2012. Laravel Telescope gives you X-ray vision into every query, job, exception, and request — in real time.

Mar 16, 2026
"nodejs""debugging""backend"
5 min read

🔍 Stop console.log Debugging Your Node.js App (The Inspector Is Free)

You've been sprinkling console.log like parmesan on every bug. There's a built-in debugger in Node.js that's been sitting there this whole time, judging you.

Mar 13, 2026
"rust""systems-programming""observability"
9 min read

Rust's `tracing` Crate: Stop Using println! in Production 🦀📋

Coming from 7 years of Laravel's Monolog and Node.js's Winston, I thought I knew logging. Then Rust's tracing crate showed me what structured, async-aware, zero-overhead observability actually looks like. Spoiler: println! is not a logging strategy!

Mar 10, 2026
"nodejs""backend""performance"
6 min read

🕵️ Node.js Memory Leaks: Your App is Eating RAM and You Don't Even Know It

Your Node.js process started at 80MB and now it's sitting at 1.2GB after three days. No, it's not haunted — you have a memory leak. Let's find it and kill it.

Mar 09, 2026
"open-source""github""developer-tools"
10 min read

git bisect: The Binary Search That Finds Which Commit Broke Everything 🔍

Something broke in production. The last 400 commits are suspects. You could review them one by one like a detective with infinite patience and no life — or you could let git do a binary search and find the culprit in 9 commits flat.

Mar 05, 2026
"laravel""php""web-dev"
5 min read

Laravel Tinker: Stop Writing Test Controllers Just to Run One Query 🔮

You've done it. We've all done it. Created a TestController just to run a single Eloquent query at 2am. Tinker is here to save your dignity.

Mar 05, 2026
"laravel""php""web-dev"
7 min read

Laravel Telescope: Stop Guessing What's Happening in Your App 🔭

Flying blind in production? Laravel Telescope gives your app X-ray vision. Here's how I use it to catch bugs before my users even notice them.

Feb 26, 2026
"open-source""github""git"
10 min read

Git Bisect: The Bug-Hunting Superpower That Found a 2-Year-Old Flaw in 5 Minutes 🕵️

I blamed three different team members before using git bisect to discover the regression was mine. From 14 months ago. On a Friday afternoon. This tool is equal parts powerful and humbling.

Feb 21, 2026
"nodejs""backend""performance"
6 min read

Your Node.js Server is Bleeding Memory (And How to Stop It) 🩸

Memory leaks are like slow carbon monoxide poisoning for your Node.js server — silent, invisible, and deadly. Learn how to find them, fix them, and sleep better at night.

Feb 20, 2026
"nodejs""javascript""backend"
12 min read

Node.js Error Handling: Stop Crashing in Production 💥

Think console.log() is logging? Think try/catch fixes everything? Cool! Now explain why your Node.js server silently crashes at 3 AM with zero logs. Let's dive into error handling and logging that actually works in production!

Feb 07, 2026