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

推荐订阅源

Google DeepMind News
Google DeepMind News
罗磊的独立博客
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Last Week in AI
Last Week in AI
云风的 BLOG
云风的 BLOG
T
The Blog of Author Tim Ferriss
Y
Y Combinator Blog
A
About on SuperTechFans
WordPress大学
WordPress大学
B
Blog
Martin Fowler
Martin Fowler
Jina AI
Jina AI
I
InfoQ
P
Proofpoint News Feed
小众软件
小众软件
S
SegmentFault 最新的问题
V
V2EX
B
Blog RSS Feed
量子位
大猫的无限游戏
大猫的无限游戏
aimingoo的专栏
aimingoo的专栏
博客园 - 三生石上(FineUI控件)
MongoDB | Blog
MongoDB | 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
The best thing about Copilot - what some executives get w...
Andreas Müll · 2026-05-07 · via DEV Community

Andreas Müller

Let me say this in advance: I love Copilot. Or, to be more precise, the Copilot Plugin for IntelliJ. It lets me choose suitable models, it's a seamless workflow with accepting the changes or rejecting them. For me, the whole experience is just really joyful.

But the best thing about Copilot is not the technical aspects. It is the name. For what is a Copilot? A copilot is someone who's there to help the pilot with basically everything he can do, but he's generally not there to direct the work done during a flight. That's the pilot's job.

That's the sad thing about this whole craze to fully automate software development. Or replace developers. It's like saying "well, we have a copilot, and he can basically do the job as well so why bother having a pilot?".

It's because the copilot and the pilot complement each other, and together create a safer and better flight experience than each could have on its own. Also, what do you do when the pilot has a stroke? Or the pilot is about to make a wrong decision? That's when you need the copilot. But that's true the other way around too.

For anyone who has any understanding, even like me just a basic one, of how LLMs work know that this type of AI is not intelligent the way you or I are intelligent. But here's the thing: The whole debate about "is it more or less intelligent than us?" really misses the point. That question would only make sense if we talked about the same type of intelligence. But we don't.

We're talking about a type of intelligence which very nicely complements ours, and makes up for some of our weaknesses. Humans can't crunch large amounts of data for relations. AI can. But humans can do explicit reasoning. AI as it is constructed (the LLM type, there are actually systems who can in limited settings) can't do explicit reasoning. It has no mechanisms for it.

That is due to what LLMs do. At their core, they complete your input with the most likely output. You might be misled by the "thoughts" that AI tells you it has, but that's also just more input completion. LLMs have no explicit mechanisms for reasoning.

Of course we don't really know if humans have explicit reasoning capabilities in their brain either. But I can take completely new knowledge, that I have never seen before, integrate it into my internal world model and reason based on this explicit knowledge. What's more, I can tell you in detail the reasoning steps I took and the reasoning mechanisms I used (or at least someone trained in doing so can).

And I think why it is so dumb to try to replace developers is that for producing good software, you need both: The big data crunching for relations and the explicit reasoning. If you have just the big data crunching, sure in some cases that might be enough. But for critical software it is not enough, and many types of software we wouldn't call critical are actually pretty critical for their users. Just think of what happens to administration if their SAP system goes down. I once waited for a doctor's appointment over an hour beyond my scheduled time because they couldn't get the SAP system to work, and therefore couldn't register I was actually there for the appointment. Even for non-critical systems, a lot of people are depending on them.

Thankfully at my workplace, we are not looking for ways to replace people. And I actually think this hype that is perceivable in the media is way more exaggerated than things in the industry really are. If there wouldn't be a lot of people out there who know what they're doing we wouldn't have the generally reliable software ecosystem we all depend on every day.

What do you think of the argument? Do you agree, disagree? And why?

Thanks for reading :)