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

推荐订阅源

D
Docker
Apple Machine Learning Research
Apple Machine Learning Research
宝玉的分享
宝玉的分享
博客园 - 叶小钗
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 司徒正美
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - Franky
爱范儿
爱范儿
罗磊的独立博客
IT之家
IT之家
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
N
Netflix TechBlog - Medium
云风的 BLOG
云风的 BLOG
P
Proofpoint News Feed
U
Unit 42
Engineering at Meta
Engineering at Meta
WordPress大学
WordPress大学
博客园 - 三生石上(FineUI控件)
T
Tailwind CSS Blog
H
Help Net Security
博客园_首页
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
人人都是产品经理
人人都是产品经理

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
Coding Cat Oran S2 Ep1 — The Excel Republic
SysLayer · 2026-05-10 · via DEV Community

A story about trial production, three departments, and three versions of the truth.


It's 7am on the production floor.

Three people are standing around a whiteboard.
One is from QA. One is from Engineering. One is from Manufacturing.
They are arguing about a number.

The number is the yield rate for Product A, Batch 7, last Tuesday.

QA says: 87%.
Engineering says: 91%.
Manufacturing says: "Depends on which shift."

All three are holding laptops.
All three are looking at Excel files.
All three are right.


Oran is an orange cat. No CS degree.
He learned to code at night, online, on his own time,
with AI tools and courses he bought on sale.

He got hired anyway. It's that kind of year.

His job title is IT. His actual job is: whatever nobody else wants to do.

This week, his job is to reconcile the production data.

He sits down. He opens all three Excel files.

The columns have different names.
The formulas have different logic.
The defect definitions are different.
QA counts a scratch as a defect. Manufacturing counts it as cosmetic. Engineering doesn't count it at all unless it affects function.

Same scratch. Three categories. Three numbers.

Oran closes his laptop.
He stares at the ceiling for a long time.


Here is what Oran understands, sitting in that chair:

The data problem is not a data problem.

It's a political problem dressed as a data problem.

Each department's Excel file is their scoreboard.
Their evidence. Their alibi.
If QA's numbers are the official numbers, QA controls the narrative.
If Engineering's numbers are official, Engineering does.
If they merge into one system, someone's score gets worse.

Nobody built these spreadsheets to hide information.
They built them to protect themselves.
That's different. And it's harder to fix.


Oran opens a blank document.

He doesn't start with a database schema.
He doesn't start with a system architecture.
He starts with a question:

What would it mean for all three of these numbers to be correct at the same time?

He writes:

  • Inspection timing is different. QA measures at end-of-line. Engineering measures at each station. Manufacturing measures at shipment.
  • Defect scope is different. Three departments, three definitions, never written down anywhere.
  • The data is collected by different people, at different times, with different tools, for different audiences.

One batch. One production run. Six data points that look like contradictions but are actually just context.

The problem isn't that the data is wrong.
The problem is that there's no single place that holds all of it together.


That evening, Oran writes the first three lines of what will eventually become a database schema.

He doesn't know that yet.
He thinks he's just taking notes.

-- What actually happened
-- Who was there
-- When

Enter fullscreen mode Exit fullscreen mode

He looks at the three Excel files one more time.

Then he writes a fourth line:

-- And what "defect" means in this context

Enter fullscreen mode Exit fullscreen mode


There were three versions of the truth.
Everyone was lying. No one was wrong.
The database didn't exist yet.
But the problem did.