ZYVOPMulti-Platform Sync
SeriesAI NewsWhy ZyVOPJoin Discord
LoginGet Started
ZYVOP
The Developer Publishing Hub
PrivacyTermsGuidelinesDMCACommunity
© 2026 ZyVOP
HomeShould You Still Learn to Code Now That AI Can Write It?

Should You Still Learn to Code Now That AI Can Write It?

Nvidia's CEO says programming is obsolete. Anthropic's own research, plus METR and Stanford data, tells a different story about who actually benefits from AI.

Sanju Singh
Sanju Singh
September 25, 2026•
4 min read
Should You Still Learn to Code Now That AI Can Write It?
#Junior Developers#AI coding tools#learning to code#code-quality

Every few weeks someone posts the same argument: AI writes the code now, so spending years learning to program yourself is a waste of time.

Nvidia's Jensen Huang has been making a version of this case since 2024, when he told the World Government Summit in Dubai that computing's whole job is to make programming unnecessary, since human language is now the only programming language anyone needs, according to TechRadar. I think he is wrong, and the evidence for that is not a hunch.

Google gives Huang's argument some real numbers to stand on. More than a quarter of its new code was AI generated by late 2024, CEO Sundar Pichai told investors on a call covered by Fortune, and that share has climbed since.

So the code volume argument is not made up. What it leaves out is who is checking that code, and whether that person still knows what they are looking at.

What happens when you actually measure it

That question got a real answer in January 2026, when Anthropic ran a randomized trial on 52 mostly junior developers learning a Python library none of them had touched before. Half got AI help, half did not. Both groups then took a quiz on debugging and comprehension with no AI allowed.

The AI group finished the coding task barely faster and scored 50 percent on the quiz. The unaided group scored 67 percent, with the widest gap on debugging, per Anthropic's own writeup and the arXiv paper behind it.

Something similar showed up in METR's study of experienced open source developers a few months earlier. Given real issues on repositories they had worked in for years, developers using AI tools took 19 percent longer than developers working without them.

Before starting, they had guessed AI would make them 24 percent faster. Afterward, they still believed it had, estimating a 20 percent speedup that never happened. Feeling faster and being faster turned out to be two different things, off by close to 40 points.

GitClear's research on actual codebases backs this up from a different angle. Across more than 200 million changed lines, refactoring dropped from about a quarter of all changes to under 10 percent, while duplicated code blocks jumped eightfold, right as AI assisted commits became routine.

GitClear's own CEO has pointed to a simple mechanism: AI tends to write a new function instead of reusing one that already exists, because it does not carry the context of the codebase around the way a developer does.

The market already believes this

Undergraduate computer science enrollment fell 3.6 percent in fall 2025 and another 8.4 percent the following spring, with graduate programs down 14 percent, according to National Student Clearinghouse numbers reported by Fortune.

Read that next to the Stanford Digital Economy Lab finding that employment for software developers aged 22 to 25 dropped 13 percent relative to older developers in the same jobs since late 2022, nearly 20 percent from its own peak. Fewer people are studying it, and fewer of the ones who do are getting hired into it.

You could read that as proof AI already won and there is no point learning a shrinking trade. I read it the other way.

The entry level job used to be where fundamentals got built on the clock, with a senior engineer catching your mistakes as you went. That job is disappearing faster than the fundamentals it used to teach. If nobody is going to hand you that training anymore, you have to go build it yourself, on purpose, before you need it.

Stack Overflow's 2025 survey of about 49,000 developers shows the tension in real numbers. 84 percent are using or planning to use AI tools, up from 76 percent a year before, and trust in the results has dropped to about a third of respondents.

Two thirds say the output is almost right but not quite. Nearly half say debugging it takes longer than writing the code themselves would have, per ADTmag's coverage of the same numbers. Developers keep reaching for the tool and keep not believing it.

Here is the part of the Anthropic study that actually matters more than the headline number: it was not AI use itself that predicted the score, it was how people used it.

Developers who asked the assistant to explain its reasoning, or questioned why a piece of code worked, scored close to the unaided group. Developers who just accepted what came out scored the worst. The tool was not the variable. Getting stuck first was.

flowchart TD
    A[Developer works with an AI assistant] --> B{How is it used}
    B -->|Asks why, checks the reasoning, gets stuck first| C[Judgment and debugging skill grow]
    B -->|Accepts the output and moves on| D[Skill formation stalls]
    C --> E[Can catch AI mistakes later, under pressure]
    D --> F[Cannot tell good output from bad]

So learn to code. Not because the market owes you a job for it, and not because Huang is lying about where AI is headed.

Learn it because somebody has to be able to tell when the code is wrong, and that skill is built by writing bad code yourself first, not by reading good code somebody else generated.

Build the thing without help once. Then use AI to go faster on the parts you already understand.

Comments (0)

Join the discussion by logging into your account.

Sanju Singh
Sanju Singh

Passionate developer sharing knowledge about modern web technologies and best practices.

Subscribe to Sanju Singh's Newsletter

Direct email dispatches when new stories are published. Zero algorithms.

Sanju Singh
Like
Love
Clap
Fire
Party
Wow

More from Sanju Singh

View profile

Claude Opus 5.5 Just Landed

Anthropic's Claude Opus 5.5 launched Sept 22, 2026, matching Fable 5.1 on most benchmarks while running 40% cheaper. It adds new Life Sciences and Cyber Verification Programs, lower token pricing, and its best-yet alignment scores.

5 minSep 22

Qwen-Image-2.1: Compact, Efficient, and Unified Image Creation

Alibaba open-sourced Qwen-Image-2.1, a 7B-parameter model unifying generation and editing with native transparency and up to 10 reference images. Day-zero framework support is strong, but it ships under a non-commercial license with no independent benchmarks yet.

5 minSep 21

Cloudflare Quick Tunnels: One Command, Three Hard Limits

Quick Tunnels expose localhost in one command, no signup required. But they cap at 200 concurrent requests, drop Server-Sent Events, and carry no SLA. Here's the mechanics, a Node helper that reads the tunnel URL properly, and when to stop using them.

13 minSep 19

From 64MB to 16GB: How Software Got So Hungry

Microsoft's published minimum RAM requirement rose roughly 256x between 2001 and 2024. Here's the paper trail behind that number, a correction to the most-repeated Tauri benchmark, and a way to measure your own Electron app's memory footprint tonight.

6 minSep 18

Neural Networks, Explained Simply - Part 2: How Neural Networks Actually Learn

Part 2 of our Neural Network Series: how a neural network starts out guessing randomly and learns from its mistakes through training and backpropagation. A plain-language look at how the correction cycle actually works, no calculus needed.

3 minSep 17