惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园 - 司徒正美
大猫的无限游戏
大猫的无限游戏
腾讯CDC
J
Java Code Geeks
博客园 - 【当耐特】
Microsoft Azure Blog
Microsoft Azure Blog
V
Visual Studio Blog
人人都是产品经理
人人都是产品经理
博客园 - Franky
博客园 - 聂微东
阮一峰的网络日志
阮一峰的网络日志
美团技术团队
云风的 BLOG
云风的 BLOG
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
U
Unit 42
雷峰网
雷峰网
B
Blog RSS Feed
博客园_首页
量子位
F
Fortinet All Blogs
罗磊的独立博客
H
Hackread – Cybersecurity News, Data Breaches, AI and More
酷 壳 – CoolShell
酷 壳 – CoolShell
C
Check Point Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
How Would I Build For Right Now
Damola Adegb · 2026-05-28 · via DEV Community

There's a woman selling food on the street. Two years in. She restocks, pays her supplier, feeds her kids, shows up tomorrow. Not rich, not struggling. Moving.

Someone tells her she needs a proper system. Inventory tracking. Demand forecasting. A loyalty programme. Her friends are doing it. She learned about it in school. Serious businesses do this. So she sets it up. Spends time and money getting it right.

Six months later she's still on the street. The system is on her phone, untouched. Her margins are thinner from the setup cost. The customers she was supposed to retain with the loyalty programme don't own smartphones.

She didn't fail because she was careless. She built for a version of her business that doesn't exist yet and nearly killed the one that does.


Nobody warns you about this trap because it doesn't look like one. It looks like ambition. It looks like doing things properly.

She never stopped to ask whether any of it served her right now. The standard said serious businesses do this, her mates were doing it, she followed it. The advice wasn't wrong in the abstract. It was wrong for her, today, with what she had.


The question she never asked:

Does this serve the business that exists today, or a version that hasn't arrived yet?

There's a version of her business where inventory tracking makes complete sense. Twenty vendors, three locations, a proper supply chain. That version needs systems.

That version isn't real yet.

The present needed to know what sold today, what to restock tomorrow, how much she made this week. A notebook solves that. She didn't need a system. She needed to survive long enough to need one.


Software is the same problem in different clothes.

You get a project, a deadline, a client. Before you write a line you're already making decisions about architecture, standards, what professional looks like. Most of those decisions happen on autopilot, based on what you were taught and what your peers are doing.

DRY. SOLID. Full test coverage. Sometimes that's exactly right.

But sometimes you've got 30 days, one developer, and a client who needs 90% of this working end to end. And you're five hours into an abstraction that would matter if three million people were hitting your server. You have three hundred users. Half of them are your own team.

Those five hours weren't lost to bad code. They went to a problem that doesn't exist yet.


This is not an argument against standards.

Some standards are load-bearing from day one. Building anything that touches money seriously, anything with compliance requirements, anything where a wrong number means someone's rent doesn't go through — tests, auditing, proper error handling aren't optional there. You follow them because of what failure costs in that specific system, not because a textbook said so.

That's the distinction. Some standards hold the thing up. Others are for a version of the system that doesn't exist yet.

The first category doesn't move regardless of deadline. The second goes on the backlog and you stay honest about it.


The vendor's mistake wasn't thinking about the future. Her mistake was building for it before the present was stable.

There's an order of operations that matters here.

Can this thing function today? Can it make money, deliver value, hold up under the weight it carries right now?

After that, what does it need to survive the next version of itself?

Most people reverse this. They architect for version three before version one has a single real user. The product dies somewhere in the gap between the version they built for and the version that showed up.


Before I start anything now, two questions.

What does this need to work today? Not at scale. Not in six months. Today, with these users, this deadline, this team.

What does failure actually cost here? Is this a system where a wrong number destroys someone's finances and their trust? Or is this one where a bug gets fixed in the next push and nobody lost sleep?

Those answers tell me which standards are non-negotiable today and which ones get deferred. Deferred, not ignored. Ignoring means you forgot. Deferring means you made a deliberate call and you know what it'll cost later.

The code is just the answers made real.


The woman is still on the street. The system is still on her phone. Somewhere a developer is six hours into an abstraction for a codebase with three hundred users wondering why the deadline feels impossible.

Same problem. Wrong version.


I'm Damola, a backend engineer. Find the rest of this series on GitHub. Follow me on Dev.to for the next one.