Industry Insights 16 min read

Andrew Ng: AI Writes Code, But Top Engineers Are Busier Than Ever

Andrew Ng warns that developers still coding like it's 2022 face obsolescence, as AI handles 30-40% of tasks but shifts value to the remaining 60%—system understanding, context, judgment, and product sense—making elite engineers busier while demanding full-stack fluency, proactive agency, and learning that retains cognitive ownership.

macrozheng
macrozheng
macrozheng
Andrew Ng: AI Writes Code, But Top Engineers Are Busier Than Ever
Andrew Ng interview header
Andrew Ng interview header
Andrew Ng: “If someone still writes code like it’s 2022, before ChatGPT, they’re in trouble.”

This statement comes from a recent Andrew Ng interview. Ng, founder of Google Brain, co-founder of Coursera, and Stanford adjunct professor, has long opposed the narrative that AI will immediately eliminate all jobs. Yet when discussing programmers, his tone shifts: AI already writes code well, and software engineering is among the most affected professions. Paradoxically, the excellent engineers Ng knows have not become idle—they are busier than before.

Agent writes more code, yet good engineers are busier. Writing code is only one segment of the development lifecycle; companies still need people to discover problems, make judgments, and own results until changes reach production.

AI Replaces 30% to 40% of Tasks

The interviewer asked: if AI doubles individual output, why keep the same headcount? Ng did not start from “roles.” He broke a job into concrete tasks.

Andrew Ng: “Maybe AI could do 30, 40% of many jobs. And what that means is that the 60% the human does has become even more valuable.”
Andrew Ng explains AI automates tasks, not entire roles
Andrew Ng explains AI automates tasks, not entire roles

Automated portions are usually well-bounded and easy to verify. The remaining 60-70%—clarifying ambiguous requirements, tracing legacy dependencies, deciding release readiness, planning rollbacks—has not disappeared; it has become more visible. Ng calls this “economic complementarity”: AI cheapens one slice of work, making the human slice more valuable.

Consequently, as agents grow stronger, developers have not relaxed. Code generation accelerates, but review, integration, deployment, and incident response do not automate themselves. A feature that once took two weeks to code now enters test in two days, pushing downstream work onto the team earlier.

Coding Like It’s 2022 Is Now Dangerous

Ng explicitly states AI cannot yet replace software engineers. The excellent engineers he knows are all busier. He then turns to another group:

Developers who stick to pre-ChatGPT workflows—manually doing tasks AI can already handle reliably—will find their position increasingly difficult.

Installing Claude Code, Codex, or Cursor is only the starting point; counting daily prompts means little. The gap appears in the workflow.

Take fixing a production bug. The old way: search code, read logs, hypothesize causes, edit files, run test cycles. Now you can first have the agent ingest error logs and relevant modules, map the call chain, propose several suspects, and then the developer decides where to dive in.

The human has not exited; they have moved from executing every step to controlling task scope and accepting outcomes.

Frontend and Backend Boundaries Are Thinning

Discussing role changes, Ng gave a concrete example.

Andrew Ng: “Front-end and back-end developers have now become full-stack developers because of AI help. You can take on broader scope.”
Andrew Ng on how AI expands developer scope
Andrew Ng on how AI expands developer scope

Expecting everyone to master every stack is unrealistic. What companies value: when you hit an adjacent domain, can you use AI to keep moving forward?

A backend engineer who previously handed UI work to a frontend colleague can now have AI scaffold the page and wire the API, then ask the frontend engineer for final calibration. A frontend engineer can use an agent to understand service interfaces, add a query, or debug deployment config.

Specialization remains, but the wait-for-another-role moments shrink.

Instead of immediately learning another framework, first bring an adjacent domain to “judgment level.” Backend developers should at least read frontend state flow; frontend developers should read interfaces and logs; ML engineers should understand service deployment and data pipelines.

AI can produce a first draft in an unfamiliar area. You still must know where it might go wrong, who to ask for review, and what constitutes done.

AI Finishes the Homework, But You May Learn Nothing

On learning, Ng’s tone sharpens.

Andrew Ng: “LLMs, as they are most commonly used, are terrible for learning.”
Andrew Ng on the cost of outsourcing thinking to AI
Andrew Ng on the cost of outsourcing thinking to AI

He describes a common pattern: students use AI, assignment scores rise; retested later, retention drops. The task was completed, but the thinking process was outsourced.

The same dynamic hits programmers. An agent writes your OAuth callback, message retry logic, or database migration; the feature runs. Months later an incident occurs—if you never understood why it was designed that way, you can only ask AI again.

Offloading cognitive load during delivery is fine; offloading it while learning a new technology is not. You cannot keep only the final diff.

A safer habit: write down your own judgment first—where the bug likely lives, what to verify, which files must not change. Then let the agent act. After completion, don’t just check test pass; ask the agent to explain key changes, then restate the call chain and failure path yourself.

AI can do your exercises, or it can spar with you. The prompts look similar; six months later the difference is whether you can handle the next incident alone.

The Context Models Can’t See Is Exactly the Engineer’s Experience

Ng believes AI cannot run a company in the near term, largely because humans hold context models lack.

Andrew Ng: “Humans have a massive context advantage compared to AI. We know so much from our years of experience.”
Andrew Ng explains where human judgment comes from
Andrew Ng explains where human judgment comes from

This context is not about stuffing more files into a context window.

It might be the customer’s frown in a meeting, or knowing that a migration three years ago left dirty data; it includes which metric the CEO said must not drop, why a service dares not be refactored, which modules became untouchable after a colleague left.

Models read code and docs, but they don’t know why the team made those seemingly awkward choices.

When collaborating with an agent, a polished prompt is far from enough. More useful: write the implicit constraints explicitly.

“Knowing the business” in engineering terms means filling in the conditions the model cannot see, and spotting the untouchable spot in a solution that looks correct on the surface.

When Code Is Cheap, the Hardest Part Is Deciding What to Build

Near the end, the host asked: what AI opportunities in 2026 are worth pursuing for ordinary people?

Ng’s answer was plain:

Learn AI, build fast, then go talk to customers.

He observes that AI has drastically cut development cost. A small team can prototype in a weekend what used to take weeks of scheduling. The new problem: the team can build ten things, but may not know which one is worth building.

Ng calls this the new product-management bottleneck.

Developers need not switch to product management. Before writing code, ask a few more questions: Who will use this? How do they solve it today? What does this feature save? If we get it wrong, which metric breaks first?

Agents can rapidly generate backends, pages, and APIs, but they cannot replace the team’s contact with real users. Once the direction is wrong, AI only makes the wrong product finish faster.

Job Descriptions Now Show a New Keyword: Agency

Ng also notes a rising requirement in job postings.

Andrew Ng: Companies want candidates with “sense of agency.” “sense of agency.” (The ability to proactively drive problems to resolution.)
Andrew Ng on the capability enterprises now prize
Andrew Ng on the capability enterprises now prize

Previously, execution cost was high, so many ideas queued. Now one person can validate quickly with AI, so companies naturally want people who find problems, organize resources, and deliver results.

Agency has boundaries. Authority, scheduling, and final decisions still need clarity. You must be able to push the problem forward, not carry the whole organization.

Closing Thoughts

Ng did not hand programmers a “must-master AI tools” checklist. His verdict is more direct: AI will take a slice of tasks and reprice the rest.

The value of manually writing repetitive code will keep falling. Understanding systems, filling context, judging direction, setting boundaries, and accepting outcomes will consume more time.

For developers, three small steps today: start using an agent on a maintenance task that has tests; keep your own analysis process—don’t let AI do your learning too; each week, pick one recurring problem and try to turn it into a reusable automated workflow.

Programmers will not vanish because models write code. The real danger is that the work has changed, but you are still stuck in the pre-ChatGPT era.

Original Source

Signed-in readers can open the original source through BestHub's protected redirect.

Sign in to view source
Republication Notice

This article has been distilled and summarized from source material, then republished for learning and reference. If you believe it infringes your rights, please contactadmin@besthub.devand we will review it promptly.

AI codingsoftware engineeringdeveloper productivityfull-stack developmentAndrew Ngcontext advantagelearning with AIsense of agency
macrozheng
Written by

macrozheng

Dedicated to Java tech sharing and dissecting top open-source projects. Topics include Spring Boot, Spring Cloud, Docker, Kubernetes and more. Author’s GitHub project “mall” has 50K+ stars.

0 followers
Reader feedback

How this landed with the community

Sign in to like

Rate this article

Was this worth your time?

Sign in to rate
Discussion

0 Comments

Thoughtful readers leave field notes, pushback, and hard-won operational detail here.