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

推荐订阅源

WordPress大学
WordPress大学
Vercel News
Vercel News
博客园_首页
Y
Y Combinator Blog
美团技术团队
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
阮一峰的网络日志
阮一峰的网络日志
aimingoo的专栏
aimingoo的专栏
H
Hackread – Cybersecurity News, Data Breaches, AI and More
MyScale Blog
MyScale Blog
GbyAI
GbyAI
人人都是产品经理
人人都是产品经理
T
Tailwind CSS Blog
MongoDB | Blog
MongoDB | Blog
D
DataBreaches.Net
博客园 - Franky
Engineering at Meta
Engineering at Meta
量子位
The GitHub Blog
The GitHub Blog
F
Fortinet All Blogs
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
酷 壳 – CoolShell
酷 壳 – CoolShell
N
Netflix TechBlog - Medium

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
When code becomes cheaper, what still makes an engineer v...
Ethan Zhang · 2026-06-12 · via DEV Community

When code becomes cheaper, what still makes an engineer valuable?

Recently, while writing my cover letter for remote roles and Upwork projects, I asked myself a very direct question:

Why should a remote team or client choose me, especially in the AI era?

I do not think the answer should be: “Because I am the strongest engineer technically.”

That is not how I want to position myself.

What I want to become is this:

A backend engineer who can turn unclear business problems into reliable, maintainable systems.

AI is making implementation faster. It can generate code, explain technologies, and provide alternatives. At the same time, remote work and platforms like Upwork make competition more global. We are not only competing with engineers nearby, but also with engineers from everywhere.

If the only question is “Who knows more frameworks, patterns, or tools?”, many ordinary engineers may feel hopeless.

But I believe there is another path.

In real systems, code is only part of the work. Someone still needs to understand the business workflow. Someone still needs to define what “correct” means. Someone still needs to identify risks, edge cases, performance concerns, and reliability boundaries.

My usual way of working starts from these questions:

What is the real requirement?
What does correctness mean in this workflow?
What data must stay consistent?
What edge cases could break the process?
What performance or reliability signals should be protected?
Where should the module boundary be?
Who should orchestrate the main flow, and who should act as collaborators?

This “orchestrator + collaborators” thinking helps me keep the main business process clear. The orchestrator owns the workflow. The collaborators handle specific responsibilities such as validation, translation, persistence, messaging, or external integration.

I also use AI in this process, but not only to generate code. I use it to challenge my assumptions, explore alternatives, find missing cases, improve naming, review design trade-offs, and refine the implementation. AI is an accelerator, not a replacement for engineering judgment.

One example is a definition-driven batch import/export module I worked on for a return-order system.

At first, it looked like a normal Excel import/export feature. But the real challenge was not Excel itself. The business template changed over time, and import and export had to stay aligned with the same rules.

So I designed the module around template definitions instead of hard-coded columns. The import flow included raw validation, translation, business validation, and database update. The export flow reused the same definition model to keep the output consistent with the import contract.

This made the system easier to reason about: where the data came from, which rule failed, which cell caused the problem, and how future template changes should be handled.

That is the kind of work I care about.

So I keep asking myself:

In the AI era, do remote teams and Upwork clients only need someone who can write code faster?

Or do they also need someone who can understand the problem, reduce uncertainty, communicate clearly, and take responsibility for the result?

I do not know if this makes me the best engineer.

But this is the kind of engineer I want to keep becoming:

A backend engineer who turns unclear business problems into reliable, maintainable systems, using AI as an accelerator while still owning correctness, judgment, and delivery.