Your Backend Is Leaking Secrets (Mine Was Too)
Ever had that feeling where your app works perfectly… but deep down you know it's kinda unsafe? Yeah — that was me. So I went all-in on fixing some serious backend security flaws in my project: 👉 BAR

Search for a command to run...
Articles tagged with #python
Ever had that feeling where your app works perfectly… but deep down you know it's kinda unsafe? Yeah — that was me. So I went all-in on fixing some serious backend security flaws in my project: 👉 BAR

Let me tell you something. Apps don’t usually break because of complex algorithms. They break because of: A 0-byte file. A random binary blob pretending to be text. A filename like report:final*version?.docx Or an undo operation that travels back...

If your app looks alive but feels dead… congratulations 🎉You’ve probably blocked the main thread. This post is a walkthrough of two real bugs I fixed recently: A UI freeze caused by blocking file I/O on the main thread A nasty crash where a schedu...

Random crashes. Database corruption. “database is locked” errors. That’s how my app Sortify behaved when multiple threads hit SQLite at the same time. This post is how I fixed it properly — and made the database production-ready. 🧠 The Problem: SQ...

The Problem Nobody Knew They Had You know what's boring? Regular QR codes. You scan them, they take you to a website. Yawn. 😴 You know what's exciting? QR codes that look totally normal to everyone else, but secretly contain hidden messages that onl...

The Before Times (aka The Dark Ages) Picture this: You open your backend folder. It's like walking into a teenager's room. Files everywhere. No rhyme. No reason. Just pure, unadulterated chaos. database.py living next to upload.py, hanging out with s...
