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

推荐订阅源

GbyAI
GbyAI
阮一峰的网络日志
阮一峰的网络日志
G
Google Developers Blog
J
Java Code Geeks
Blog — PlanetScale
Blog — PlanetScale
大猫的无限游戏
大猫的无限游戏
云风的 BLOG
云风的 BLOG
Vercel News
Vercel News
L
LangChain Blog
Hugging Face - Blog
Hugging Face - Blog
T
The Blog of Author Tim Ferriss
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Stack Overflow Blog
Stack Overflow Blog
P
Proofpoint News Feed
腾讯CDC
博客园_首页
博客园 - 聂微东
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
M
MIT News - Artificial intelligence
WordPress大学
WordPress大学
D
DataBreaches.Net
Microsoft Security Blog
Microsoft Security 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
Correct by Design vs Correct by Coincidence
Doogal Simpson · 2026-06-23 · via DEV Community

Quick Answer: Code is "correct by coincidence" when it relies on duplicated, fragile details—like matching magic strings—that just happen to align perfectly to make the application work. Code is "correct by design" when you structurally enforce stability, such as centralizing shared values, ensuring the system cannot easily break from simple typos.

You can build an application a hundred different ways. From the outside, the users are happy, the behaviors are exactly what the product manager asked for, and your entire test suite is glowing green. But on the inside, the reality can be vastly different. The codebase might be a solid domain model accurately reflecting the real world—or it could be held together with tape, string, and pure luck.

This brings up a question I ask myself a lot: Is this codebase correct by coincidence, or is it correct by design?

What does "correct by coincidence" mean in programming?

Correct by coincidence means your software functions properly only because loosely connected, duplicated details happen to match up perfectly at runtime. If any single unlinked detail changes or a developer makes a tiny typo, the entire system breaks.

Imagine a city planner who builds a bridge where the support beams aren't bolted together, but they stay standing simply because the wind happens to be blowing with equal force from both sides. It works today, but it is incredibly fragile.

Let's look at a concrete software scenario. Imagine your team is building a microservice that needs to read a configuration file—let's call it config_init.json. This file is absolutely critical and needs to be read in ten different places across your application.

If you write the application so that in each of those ten places you manually type out the magic string "config_init.json", your code is correct by coincidence. It is purely a coincidence that each of those ten scattered locations happens to contain the exact same magic string required to successfully read the file. The moment someone renames the file but only updates nine of those ten strings, the application blows up.

How do you write code that is "correct by design"?

Writing code that is correct by design involves structuring your system so that fragile duplications are eliminated and invalid states are hard to represent. You establish a single source of truth—like a centralized constant—so correctness is enforced structurally rather than relying on human memory.

To fix the coincidental correctness in our configuration file example, the solution is remarkably simple. You extract that magic string, pull it into a single shared variable, and reference that variable in all ten locations.

// Correct by coincidence
const data = readFile("config_init.json");

// Correct by design
const CONFIG_FILE_PATH = "config_init.json";
const data = readFile(CONFIG_FILE_PATH);

By doing this, you've moved the responsibility of correctness away from human memory and handed it to the structure of the code itself. If the filename needs to change, you update it in exactly one place. If you typo the variable name, the compiler or linter yells at you immediately.

What are the main risks of coincidental correctness?

The primary risk is creating a brittle codebase where minor updates trigger unpredictable, cascading failures. This ultimately destroys developer confidence, slows down feature delivery, and turns routine refactoring into a high-risk operation.

When a codebase relies on coincidence, you will typically notice a few recurring symptoms:

  • Hidden Coupling: Unrelated modules become secretly dependent on each other because they share the same hardcoded values.
  • Refactoring Fear: Developers become terrified to change file names, database keys, or route paths because they don't know where else those strings are secretly hiding.
  • Silent Failures: Because coincidences aren't structurally enforced, regressions often are not caught until runtime, sometimes making it all the way to production.
  • Onboarding Friction: New engineers have no way of knowing the unspoken rules of the codebase, making it easy for them to accidentally break things when adding new features.

Frequently Asked Questions

How do I spot code that is correct by coincidence?

Look for magic strings, magic numbers, or duplicated logic that appears in multiple files without a shared reference. If you find yourself using global search-and-replace to safely rename a concept in your application, you are likely looking at coincidental correctness.

Is "correct by coincidence" the same as technical debt?

It is a specific type of technical debt. While technical debt can encompass anything from poor overall architecture to missing documentation, coincidental correctness specifically refers to fragile implementation details that rely on unlinked elements perfectly aligning to function.

Can unit tests prevent coincidental correctness?

Not always. If you write your tests using the same scattered magic strings as your implementation code, your tests will pass, but the underlying design flaw remains. Tests prove the behavior works, but structural design proves it will keep working when the system changes.