<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Yan Fróes</title>
    <description>The latest articles on DEV Community by Yan Fróes (@yanz).</description>
    <link>https://dev.to/yanz</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3027431%2F0afc686d-9982-49a4-b352-cab185bd32e0.jpg</url>
      <title>DEV Community: Yan Fróes</title>
      <link>https://dev.to/yanz</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/yanz"/>
    <language>en</language>
    <item>
      <title>Will AI Replace Programmers? Notes From Someone Who Ships With It Every Day</title>
      <dc:creator>Yan Fróes</dc:creator>
      <pubDate>Fri, 03 Jul 2026 12:10:38 +0000</pubDate>
      <link>https://dev.to/yanz/will-ai-replace-programmers-notes-from-someone-who-ships-with-it-every-day-2k63</link>
      <guid>https://dev.to/yanz/will-ai-replace-programmers-notes-from-someone-who-ships-with-it-every-day-2k63</guid>
      <description>&lt;p&gt;&lt;em&gt;Ep 1 of building in public on Yanz Dev.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;I let AI write most of my code. Every day. Seven products, one person, no team.&lt;/p&gt;

&lt;p&gt;So when the question comes up - and it comes up constantly - &lt;em&gt;"will AI replace&lt;br&gt;
programmers?"&lt;/em&gt;, I'm not speculating from the sidelines. I'm answering from inside the&lt;br&gt;
thing. And my honest answer is uncomfortable for both camps: &lt;strong&gt;AI already replaced part&lt;br&gt;
of my job. Just not the part everyone thinks.&lt;/strong&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Where this take comes from
&lt;/h2&gt;

&lt;p&gt;Quick context, because takes without context are just noise. I'm an indie dev. I have a&lt;br&gt;
day job, and outside of it I build my own products: a life-management app that's live, a&lt;br&gt;
tennis community platform running in production, a SaaS starter template, a social&lt;br&gt;
publishing agent, and - because apparently I hate free time - a 2D MMORPG engine written&lt;br&gt;
in Ruby.&lt;/p&gt;

&lt;p&gt;All solo. All built with AI in the loop daily. I'm not selling an AI course, and I'm not&lt;br&gt;
farming panic for clicks. This is just what changed at my desk, and what didn't.&lt;/p&gt;

&lt;h2&gt;
  
  
  What AI actually took from me
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;The typing.&lt;/strong&gt; That's the part that's gone, and I don't miss it.&lt;/p&gt;

&lt;p&gt;Boilerplate - migrations, CRUD, forms, test scaffolding - I haven't hand-written those in&lt;br&gt;
a long time. First drafts of features: I describe what I want, the agent writes a first&lt;br&gt;
pass, usually with tests attached. Reading a huge unfamiliar codebase used to cost an&lt;br&gt;
afternoon; now "explain how auth flows through this app" is a question, not a project.&lt;/p&gt;

&lt;p&gt;But the biggest change is one I rarely see mentioned: &lt;strong&gt;unfamiliar territory stopped&lt;br&gt;
being scary.&lt;/strong&gt; This past stretch I shipped WebRTC signaling and real-time game netcode -&lt;br&gt;
a fixed-timestep tick loop, a binary WebSocket protocol. Technologies I had never touched&lt;br&gt;
before. Pre-AI, each of those meant weeks of reading before the first line of code. Now I&lt;br&gt;
explore alongside the AI, ask my dumb questions in private, and ship. Entire areas of&lt;br&gt;
programming moved from "someday, maybe" to "this sprint."&lt;/p&gt;

&lt;p&gt;If your mental model of programming is "a person typing code" - then yes, that person is&lt;br&gt;
being replaced. By programmers using AI.&lt;/p&gt;

&lt;h2&gt;
  
  
  What it didn't touch
&lt;/h2&gt;

&lt;p&gt;Here's the part that never makes the thumbnail.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Deciding what to build.&lt;/strong&gt; The AI has infinite ideas and zero opinions. Every feature in&lt;br&gt;
my products exists because I chose it, and half of the job is saying no. Nothing about&lt;br&gt;
that got automated.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Architecture taste.&lt;/strong&gt; A real example: every AI assistant, by default, wants to give my&lt;br&gt;
apps Postgres, Redis, and a fleet of workers. I run everything on SQLite - cheaper,&lt;br&gt;
simpler, and honestly plenty for my scale. The AI will happily write the code either way.&lt;br&gt;
The &lt;em&gt;call&lt;/em&gt; is mine, and I can only make it because I understand the trade-off. That&lt;br&gt;
understanding is exactly the thing you can't outsource.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Review.&lt;/strong&gt; Every diff still passes through my eyes before it merges. The AI is confident&lt;br&gt;
when it's right and equally confident when it's wrong - the tone never wavers, which is&lt;br&gt;
precisely why a human gate matters.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Accountability.&lt;/strong&gt; When production breaks at 2am, the AI is not the one responsible. I&lt;br&gt;
am. My users don't care who typed the bug.&lt;/p&gt;

&lt;h2&gt;
  
  
  The job changed shape
&lt;/h2&gt;

&lt;p&gt;So no - I wasn't replaced. But my job title quietly changed meaning. I went from typist&lt;br&gt;
to &lt;strong&gt;director&lt;/strong&gt;, and directing turns out to have real tools:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;A conventions file in every repo.&lt;/strong&gt; The rules the AI must follow: patterns, naming,
what's forbidden. Without it, every session reinvents the codebase.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Tests as the contract.&lt;/strong&gt; I make the AI write tests first. A very fast worker needs an
objective referee, and "the suite is green" beats "it looks right."&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;CI as the gate.&lt;/strong&gt; Lint, security scan, full test run on every change - so speed
doesn't decay into chaos.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Managing AI well feels like managing an extremely fast junior with infinite patience and&lt;br&gt;
zero memory. If that sounds like a skill - it is. It might be &lt;em&gt;the&lt;/em&gt; skill now.&lt;/p&gt;

&lt;h2&gt;
  
  
  The junior question
&lt;/h2&gt;

&lt;p&gt;The uncomfortable honest bit: if your entire value was "I can write the code," that value&lt;br&gt;
dropped. The market is telling the truth about that, even when it's rude.&lt;/p&gt;

&lt;p&gt;But if your value is "I can decide, verify, and own the result," you're fine - and you're&lt;br&gt;
rarer than ever. Which leads to the conclusion juniors don't want to hear and seniors&lt;br&gt;
under-repeat: &lt;strong&gt;fundamentals matter more now, not less.&lt;/strong&gt; You cannot verify what you&lt;br&gt;
don't understand. You cannot direct work you couldn't have done slowly yourself. The&lt;br&gt;
ladder changed. The destination didn't.&lt;/p&gt;

&lt;h2&gt;
  
  
  So, will AI replace programmers?
&lt;/h2&gt;

&lt;p&gt;It already replaced the part of the job that was typing. It hasn't touched the part that&lt;br&gt;
was judgment - and that part was always the actual job.&lt;/p&gt;

&lt;p&gt;One person now ships like a small team. That's not a threat, that's the biggest leverage&lt;br&gt;
increase our profession has ever had - &lt;em&gt;if&lt;/em&gt; you're on the right side of the divide&lt;br&gt;
between generating code and owning it.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;This is Episode 1 of my build-in-public journey - I'm documenting how I build all seven&lt;br&gt;
products, with AI, in the open: the wins, the bugs, the real process. Follow along on&lt;br&gt;
&lt;a href="https://x.com/yan_froes" rel="noopener noreferrer"&gt;X&lt;/a&gt;, &lt;a href="https://www.threads.com/@yanfroes" rel="noopener noreferrer"&gt;Threads&lt;/a&gt;, or the&lt;br&gt;
&lt;a href="https://www.youtube.com/@yanzf" rel="noopener noreferrer"&gt;Yanz channel on YouTube&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>llm</category>
      <category>webdev</category>
      <category>buildinpublic</category>
    </item>
  </channel>
</rss>
