Badges

Forums
MinkNote is part of Indie App Sales this week
MinkNote is joining Indie App Sales from July 28 to July 30.
If you've been thinking about trying it, you can get 50% off your first 3 months with code INDIEAPPSALES2026.
Direct link
MinkNote is a privacy-friendly, local-first notes app for Mac, built around files you own.
The "if it works, ship it" trap, and the one habit that actually prevents it
There's a specific moment that happens with almost every project: the agent produces code, it passes your tests, everything's green, and there's a real pull to just move on to the next thing. Totally understandable, the whole appeal of this workflow is speed.
But there's a gap between "this works" and "I understand why this works," and that gap is where the real risk hides. Not because the code is wrong, most of the time it isn't, but because the next time something breaks nearby, you're debugging code you never actually read closely the first time.
during the BC (before ChatGPT) era, this gap barely existed. You wrote it, so you understood it, mostly by necessity. Now understanding is a separate step you have to choose to take, not something that comes free with writing the code yourself.
One habit that closes that gap fast: before merging anything non-trivial, ask the agent to explain its own implementation back to you, line by line, in plain language. Not as a formality, actually read the explanation. Two things tend to happen. Either it confirms your understanding and takes thirty seconds, or it surfaces an assumption you didn't know was baked in, which is usually the more valuable outcome.
What's your go to tech stack when starting a new SaaS project?
Lately I've noticed most discussion around AI coding tools focuses on which assistant or terminal agent people use, but not much on the actual architecture decisions behind that, things like framework, hosting, database, and auth choices that affect cost and security down the line.
For context, my current default stack is Next.js on the frontend, Supabase for database and auth, Vercel for hosting, and Stripe for payments. I picked it mainly for speed of shipping and because it keeps infra costs predictable early on, but I'm not sure it's the best call for security or scaling past MVP stage.
A few things I'm curious about:
Do you settle on a default stack before prompting your AI agent, or does the agent end up influencing your stack choice?
What's been your biggest regret, cost, security, or scaling wise, with a stack you picked early on?
Any stack you'd actively avoid for a new SaaS in 2026?
