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

推荐订阅源

爱范儿
爱范儿
大猫的无限游戏
大猫的无限游戏
J
Java Code Geeks
MongoDB | Blog
MongoDB | Blog
Martin Fowler
Martin Fowler
GbyAI
GbyAI
Microsoft Azure Blog
Microsoft Azure Blog
Recent Announcements
Recent Announcements
F
Fortinet All Blogs
B
Blog
U
Unit 42
B
Blog RSS Feed
D
DataBreaches.Net
Google DeepMind News
Google DeepMind News
人人都是产品经理
人人都是产品经理
腾讯CDC
量子位
酷 壳 – CoolShell
酷 壳 – CoolShell
V
Visual Studio Blog
博客园 - 聂微东
MyScale Blog
MyScale Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - 三生石上(FineUI控件)
Engineering at Meta
Engineering at Meta

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
I Think We're Measuring Software Engineers Wrong.
Irvan Gerhana Septiyana · 2026-06-25 · via DEV Community

AI Changed the Metrics. We Haven't.

A few years ago, one question appeared in almost every engineering interview.

"How many programming languages do you know?"

Then it became:

"How many years of experience do you have?"

Today it's slowly becoming:

"Which AI coding tool do you use?"

Cursor.

Claude Code.

GitHub Copilot.

Codex.

Windsurf.

Lovable.

Bolt.

The tools have changed.

But I think we're still measuring engineers using the wrong metrics.


We Used To Reward Code

For decades, software engineering rewarded output.

More commits.

More pull requests.

More features.

More lines of code.

It made sense.

Writing software was expensive.

Every line represented time.

Effort.

Knowledge.

Today...

AI can generate hundreds of lines before you finish your coffee.

Suddenly, writing code is no longer the bottleneck.

So why are we still acting like it is?


Code Has Become Cheap

This isn't a bad thing.

It's progress.

Boilerplate.

CRUD endpoints.

Configuration files.

Documentation.

Tests.

Much of this can now be generated in seconds.

The cost of producing code has dropped dramatically.

Whenever something becomes cheaper...

Something else becomes more valuable.


So What's Becoming Valuable?

Not syntax.

Understanding.

Good engineers don't just write software.

They answer questions like:

How should this system evolve over the next three years?

Which service should own this data?

What happens when the database is unavailable?

How do we avoid duplicating business rules?

How do we keep different teams from stepping on each other?

None of these questions disappear because AI exists.

In many ways, they become even more important.


AI Doesn't Understand Your Company

One thing I've noticed while building enterprise software is that AI understands programming surprisingly well.

It understands Python.

Go.

TypeScript.

React.

FastAPI.

SQL.

What it doesn't understand is your business.

Ask it to generate an authentication service.

You'll probably get a good result.

Ask it to explain why Customer A can partially pay Invoice B under Contract C while Customer D cannot.

Now the conversation changes completely.

That's no longer a programming problem.

That's institutional knowledge.


Every Company Has Hidden Logic

Every business has rules that never appear in tutorials.

Healthcare.

Manufacturing.

Banking.

Insurance.

Retail.

Logistics.

Government.

Eventually you discover sentences like:

"This customer follows the legacy billing process."

Or:

"That contract uses a completely different approval workflow."

Or:

"Invoices created before 2022 are handled differently."

None of this exists inside a language model.

Someone has to model it.

Someone has to protect it.

Someone has to maintain it.

That's engineering.


The Best Engineers I Know

The engineers I admire rarely impress me because they code faster.

They impress me because they reduce complexity.

They ask better questions.

They see failure modes before they happen.

They simplify architectures.

They create systems that other engineers enjoy working on.

Ironically...

Many of them probably write fewer lines of code than junior developers.

But every line carries much more value.


AI Is Raising the Bar

Some people worry AI will replace software engineers.

I think something different is happening.

AI is raising the minimum expectation.

If everyone can generate CRUD applications...

CRUD applications stop being impressive.

The differentiator becomes everything around the code.

Architecture.

Communication.

Domain modeling.

Reliability.

Observability.

Business understanding.

These aren't disappearing.

They're becoming the job.


My Workflow Changed Completely

I still use AI every day.

Probably more than ever.

But I ask different questions now.

Instead of:

"Write this API."

I ask:

"What architecture would make this easy to maintain?"

Instead of:

"Generate a database schema."

I ask:

"What's the domain model behind this business?"

Instead of measuring how quickly I can generate code...

I measure how many future problems I can avoid.

That single shift has probably saved me more time than any coding assistant ever has.


Maybe Experience Isn't About Code

Sometimes we describe senior engineers as people who know more technologies.

I'm no longer convinced that's true.

Maybe seniority is simply the ability to recognize patterns.

To understand trade-offs.

To make good decisions with incomplete information.

AI can help us write implementations.

Experience still helps us choose the right implementation.

Those are very different skills.


Final Thoughts

Software engineering isn't disappearing.

It's evolving.

As AI continues to automate implementation, the profession moves closer to what it has always been underneath:

Designing reliable systems that solve meaningful problems.

The tools will continue to improve.

Models will become faster.

Frameworks will come and go.

But one thing will remain surprisingly constant.

Technology changes.

Engineering judgment compounds.

And I suspect that's what will separate great engineers from everyone else over the next decade.


Continue Learning

Over the past several months, I've been documenting how these ideas apply in real enterprise software.

Instead of focusing on AI demos, I built a complete Enterprise AI Transaction Intelligence System that covers the entire engineering lifecycle:

  • Canonical Data Architecture
  • Synthetic Enterprise Dataset Design
  • Financial Named Entity Recognition (NER)
  • Entity Resolution
  • Business Rules & Decision Engines
  • Automated Reconciliation
  • FastAPI Production APIs
  • End-to-End Evaluation & Benchmarking

The complete implementation—including three technical handbooks, production-ready Python source code, synthetic datasets, and architecture documentation—is available here:

📘 Enterprise AI Automation Blueprint

👉 https://uigerhana.gumroad.com/l/enterprise-ai-automation-blueprint

I'm also publishing a long-form Dev.to series on Enterprise AI Engineering, Software Architecture, and Production AI Systems.

If you're interested in building systems that last—not just demos—I hope you'll follow along.

Happy building. 🚀