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

推荐订阅源

H
Help Net Security
爱范儿
爱范儿
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - 三生石上(FineUI控件)
大猫的无限游戏
大猫的无限游戏
Hugging Face - Blog
Hugging Face - Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Vercel News
Vercel News
人人都是产品经理
人人都是产品经理
G
Google Developers Blog
WordPress大学
WordPress大学
S
SegmentFault 最新的问题
雷峰网
雷峰网
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Jina AI
Jina AI
博客园 - 叶小钗
D
DataBreaches.Net
D
Docker
月光博客
月光博客
博客园 - 司徒正美
Last Week in AI
Last Week in AI
有赞技术团队
有赞技术团队
腾讯CDC
酷 壳 – CoolShell
酷 壳 – CoolShell

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
AI productivity gains vanish when you measure them honestly
Aditya Agarwal · 2026-06-21 · via DEV Community

Each vendor promises that AI coding tools will increase your productivity by 40%. But senior engineers kept a time log. It's the difference between those two numbers that makes you blush.

A recent discussion among experienced developers revealed something uncomfortable. When they honestly logged where their hours went — including all the cleanup — that 40% boost shrank to single digits. Sometimes it vanished entirely.

The Marketing Number vs. the Real Number

Let me explain how the 40% is calculated. You request an AI to generate a function. It provides you with 30 lines within 10 seconds. Compared to typing it yourself, that's a massive speedup. Congratulations, you've measured the least interesting part of the job.

Nobody ships their first draft. Here's a more accurate timeline:

→ AI generates code in seconds
→ You read it carefully to check for subtle bugs
→ You realize it ignored your team's style guide
→ You refactor it to match existing patterns
→ You debug the one edge case it hallucinated away
→ You write the tests it didn't think about

That "10 seconds" quietly becomes 45 minutes. The denominator changed, but nobody updated the slide deck.

The Hidden Costs Nobody Talks About

The generation speed is real. I'm not denying that. But speed of producing text isn't the bottleneck for experienced engineers. Thinking is the bottleneck. Reading is the bottleneck. Integration is the bottleneck.

That tiny inner voice.

Debugging AI-introduced bugs. These are the worst kind — they look correct at first glance. You trust the output just enough to miss the flaw. Then it shows up in production. 🎉
Style guide compliance. Every team has conventions. AI doesn't know yours. Someone has to make the output match.
Integration with existing code. AI generates isolated snippets. Your codebase is not a collection of isolated snippets.

Time spent fixing AI-introduced bugs often negates the generation speed completely. You crossed the streams. You're moving time from writing to debugging, then pretending the debugging doesn't count.

Who Benefits, Who Doesn't

I'm not here to bash AI. There are genuinely times when AI tools can be a huge help. Boilerplate generation, exploring unfamiliar APIs, writing first-draft tests — these are real wins.

However, the impact on productivity varies depending on the level of experience. Junior developers perceive that they write more code because they become unblocked more frequently. This is very valuable. Senior developers already knew how to write the code. For them, the tool shifts effort from writing to reading.

The honest framing isn't "AI makes you 40% faster." It's "AI changes where you spend your time." Whether that's a net positive depends on the task, the codebase, and how much you trust output you didn't write. 🤷

The Measurement Problem

The real issue is that most productivity claims measure generation and ignore everything downstream. It's like measuring a writer's productivity by words per minute without counting editing.

If your benchmark stops the clock when the AI finishes generating, you'll get impressive numbers every time. If your benchmark stops the clock when the code passes review, ships, and doesn't cause an incident — the numbers get a lot more humble.

Honest measurement is boring. It doesn't make good marketing. But it's the only kind that matters when you're deciding how to invest your team's workflow.

The summary: AI programming tools are beneficial. The productivity gains are real but modest — probably single digits for experienced engineers on real codebases. Anyone claiming 40% either isn't measuring the full cycle or is selling something.

What is your overall feeling after using AI tooling for some time? Has AI tooling actually moved the needle on your shipping speed, or did it just feel faster? 💬