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

推荐订阅源

WordPress大学
WordPress大学
Jina AI
Jina AI
小众软件
小众软件
GbyAI
GbyAI
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 【当耐特】
D
DataBreaches.Net
腾讯CDC
V
Visual Studio Blog
博客园 - 叶小钗
B
Blog
Apple Machine Learning Research
Apple Machine Learning Research
T
The Blog of Author Tim Ferriss
S
SegmentFault 最新的问题
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
V
V2EX
博客园 - 三生石上(FineUI控件)
云风的 BLOG
云风的 BLOG
The Cloudflare Blog
MongoDB | Blog
MongoDB | Blog
有赞技术团队
有赞技术团队
U
Unit 42
博客园 - 司徒正美
博客园 - 聂微东

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
Quick Win Card #01 — Your backlog.md lied to you (a 30-se...
Michel Faure · 2026-05-25 · via DEV Community

Quick Win Card #01 strip — Michel reads

The hook

This morning I opened my own status file with complete confidence. It told me four DEV.to articles were still drafts to push. They had been live for three days. The article you're reading was almost about chasing a backlog that didn't exist.

What broke

articles/backlog.md is a human-edited summary of scripts/devto/state.json (the source-of-truth, auto-written by my push.ts script after every API call). Three days ago I shipped four drafts through the pipeline; state.json updated correctly, backlog.md never re-synced. A sync-backlog.ts script exists to bridge the two — I forgot to run it.

So I read the summary instead of the source. Five-minute confident plan. Then Niran, looking over my shoulder, asked the only material question that mattered: "Sure they're still drafts?". Sixty seconds of curl https://dev.to/api/articles/<id> later, the truth was on screen: published_at: 2026-05-19T07:56:11Z × 4.

The real cost of this kind of drift isn't the twenty minutes of wrong diagnostic. It's the trust you lose in your own tools. Once your status file lies to you, you spend the following weeks silently re-verifying it every time you open it — a quiet cognitive tax that outlasts the incident by a wide margin.

The lesson is simple. Any status file edited by hand drifts the moment the underlying source ticks. Trust the source, not its résumé.

The 30-second snippet

Paste this into your shell before any status-related diagnostic on any project with a machine-written state file. Each line replaces a belief with an observable fact. Adjust paths once, keep forever:

# Filesystem-over-summary check (R2 of Counterpart Toolkit).
git log --since='7d' --oneline | head -20                                  # what actually shipped
jq '[.[] | select(.published==false)] | length' scripts/devto/state.json   # how many drafts remain
jq '.[] | select(.published==false) | .url' scripts/devto/state.json       # which exact URLs

The length is a sanity-check before you unroll the list: if the number surprises you, don't even start the diagnostic, resync first. Three commands, twenty-seven seconds wall-clock. Catches the drift before you spend twenty minutes acting on a phantom backlog.

ROI

One bad status diagnostic costs me about thirty minutes of wrong-direction work, plus the embarrassment of being corrected by Niran looking over my shoulder. This snippet has caught the drift twice in two weeks, but the real win isn't the reclaimed hours — it's the trust rebuilt in my own status files. An agent-pilot who no longer trusts their dashboard moves slower; they move more accurately.

Apply now

Open a terminal, copy the three lines above, swap scripts/devto/state.json for your project's auto-generated state file — lockfiles, *.cache, build manifests, any machine-written manifest will do. Save as bin/status-real or a shell alias. Next time you're tempted to "just check the summary", run the alias instead.

You have your quick win in five minutes flat.


Quick Win Card series, episode 01. Counterpart Toolkit v0.7, rule R2 — *Filesystem over summary. Doctrine repo: github.com/michelfaure/doctrine-counterpart.*