Skip to content

Navid's Blog

Ideas, Experiments, and Lessons Learned

Menu
Menu

Category: Vibe Coding

My Team Spent 2 Weeks Replacing Our Authentication — Here’s What Happened

Posted on April 3, 2026 by Navid

Two weeks ago, my team made the call to replace our authentication system. Not because it was broken — it worked fine. But it was holding us back in ways that became obvious only when we tried to move fast. Why We Decided to Change Our original auth was a custom solution built years ago…

Read more

Why I Stopped Using useEffect (And What I Use Instead)

Posted on March 30, 2026 by Navid

I used to reach for useEffect for everything. Data fetching? useEffect. Form validation? useEffect. Syncing state? useEffect. My components looked like chaos, and I couldn’t figure out why my code felt so hard to maintain. Then I learned something that changed how I write React: useEffect is not the answer for most problems. The Problem…

Read more

The Error Handling Patterns That Saved Our Production System

Posted on March 21, 2026 by Navid

Let me be honest — I used to think error handling was boring. Just wrap things in try-catch and move on, right? Wrong. That mindset cost us hours of debugging at 2 AM. After dealing with enough production fires, I started collecting patterns that actually work. These aren’t theoretical best practices — they’re the things…

Read more

Why I Stopped Using Try-Catch Everywhere in My Backend Code

Posted on March 19, 2026 by Navid

For years, I wrapped everything in try-catch blocks. Every function, every API call, every database query. I thought that’s what defensive programming looked like. I was wrong. The Problem with Catching Everything When you catch exceptions at every level, you lose context. You mask real errors. You make debugging a nightmare because you never know…

Read more

I Stopped Using Authentication Libraries — Here’s What I Learned

Posted on March 15, 2026 by Navid

Why I Ditched the Library For years, I used Auth0, Firebase Auth, and Passport.js without thinking twice. They handled the hard stuff — token management, security patches, OAuth flows. Why reinvent the wheel? Then I joined a startup with a tight budget and a weird requirement: we needed custom auth logic that didn’t fit any…

Read more

Why I Stopped Writing Unit Tests for Everything

Posted on March 14, 2026 by Navid

For years, I was that developer. The one who insisted on 90% code coverage. Who would spend hours writing tests for every function, every edge case, every tiny module. I thought more tests meant better code. I was wrong. The Test Everything Mentality It started when I joined my first proper dev team. The senior…

Read more

I Tried Vibe Coding for a Week and Here’s What Happened

Posted on March 8, 2026 by Navid

You know that feeling when you type something into ChatGPT or Cursor, and code just appears? Like magic. No manual. No Stack Overflow scrolling. Just you, typing what you want, and boom — it works. That’s vibe coding. And I decided to try it seriously for a week. What is vibe coding? Basically, it’s writing…

Read more

The Art of Deleting Code: Why Less Is Often More in Production Systems

Posted on February 19, 2026February 20, 2026 by Navid

I’ve been revisiting some of my older codebases lately, and something keeps hitting me: most of the problems I solved didn’t need to be solved at all. Looking back at thousands of lines I once thought were genius architecture, I now see complexity that actively hurt the systems I was building. The Engineering Ego Trap…

Read more
vibe coding programming flow state

7 Vibe Coding Tips That Changed How I Code Forever

Posted on February 6, 2026 by Navid

Discover what vibe coding is and how it transformed my programming approach. Learn 7 practical tips to code with flow and intuition. Start vibing with your code today!

Read more
vibe coding productivity mistakes

7 Vibe Coding Mistakes That Kill Your Productivity in 2025

Posted on February 6, 2026 by Navid

Discover the 7 common vibe coding mistakes that slow you down instead of speeding you up. Learn how to use AI coding tools effectively without sacrificing quality or skill.

Read more

Posts pagination

  • 1
  • 2
  • Next

Categories

  • AI Experiments
  • Coding
  • Debugging Stories
  • Hot Takes
  • Ideas
  • Lessons Learned
  • Project Management
  • Uncategorized
  • Vibe Coding

Recent Posts

  • My Team Spent 2 Weeks Replacing Our Authentication — Here’s What Happened
  • My Team Spent 2 Weeks Replacing Our Authentication — Here’s What Happened
  • I Deleted 2000 Lines of Code and Everything Still Worked
  • Why I Stopped Using useEffect (And What I Use Instead)
  • Why I Stopped Using useEffect (And What I Use Instead)