<?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: 신석진( Seokjin Shin)</title>
    <description>The latest articles on DEV Community by 신석진( Seokjin Shin) (@ssj9685).</description>
    <link>https://dev.to/ssj9685</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%2F4025466%2F7e693826-6d28-4638-acb6-80be161ad805.jpg</url>
      <title>DEV Community: 신석진( Seokjin Shin)</title>
      <link>https://dev.to/ssj9685</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/ssj9685"/>
    <language>en</language>
    <item>
      <title>The Era of Not Opening a Code Editor May Be Closer Than I Thought</title>
      <dc:creator>신석진( Seokjin Shin)</dc:creator>
      <pubDate>Sat, 11 Jul 2026 00:00:00 +0000</pubDate>
      <link>https://dev.to/ssj9685/the-era-of-not-opening-a-code-editor-may-be-closer-than-i-thought-3ddi</link>
      <guid>https://dev.to/ssj9685/the-era-of-not-opening-a-code-editor-may-be-closer-than-i-thought-3ddi</guid>
      <description>&lt;blockquote&gt;
&lt;p&gt;“Developers will stop opening code editors altogether.”&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;I said that years ago.&lt;/p&gt;

&lt;p&gt;At the time, it sounded like a bold prediction. Lately, I find myself thinking about it often. Something close to that future has started to emerge, although it looks a little different from what I imagined.&lt;/p&gt;

&lt;h2&gt;
  
  
  Work now starts with the right Option key
&lt;/h2&gt;

&lt;p&gt;I recently configured Codex on macOS so that pressing the right Option key starts voice input. No matter which app is in front of me, I can press one key and start talking.&lt;/p&gt;

&lt;p&gt;When something goes wrong, the first thing I open is no longer my IDE. I press Option and say:&lt;/p&gt;

&lt;p&gt;“Find the root cause.”&lt;/p&gt;

&lt;p&gt;“Check the official documentation and fix it.”&lt;/p&gt;

&lt;p&gt;“Run the tests too.”&lt;/p&gt;

&lt;p&gt;Codex searches the codebase, checks the documentation, edits files, and runs commands. I review the changes, the test results, and the actual interface, then decide what should happen next.&lt;/p&gt;

&lt;p&gt;The editor still has not opened.&lt;/p&gt;

&lt;p&gt;At first, I thought voice input had simply become more convenient. But if voice only turned my speech into text, it would not have changed the way I work. Now, my words do not stop at transcription. They continue into file changes and test runs.&lt;/p&gt;

&lt;p&gt;Even when I do open an editor, it happens much later. Some tasks are completed without opening one at all. A scene I once imagined is gradually becoming part of my everyday work.&lt;/p&gt;

&lt;h2&gt;
  
  
  What decreased was not typing, but translation
&lt;/h2&gt;

&lt;p&gt;To make a computer do something, I used to translate what I wanted into search queries, file paths, commands, and code. Even when I knew the desired outcome, I still had to convert it into a procedure the computer could execute.&lt;/p&gt;

&lt;p&gt;AI agents take on part of that translation. Instead of specifying every operation in sequence, I start by explaining what seems wrong, what outcome I want, and how far the investigation should go.&lt;/p&gt;

&lt;p&gt;The idea that a person sets the goal while a system handles part of the execution is not new. Back in 1999, &lt;a href="https://www.microsoft.com/en-us/research/wp-content/uploads/2016/11/chi99horvitz.pdf" rel="noopener noreferrer"&gt;research on mixed-initiative interfaces&lt;/a&gt; argued that direct human control and agent-driven automation should work together. What was once discussed mainly as a research direction is now becoming tangible in everyday development tools.&lt;/p&gt;

&lt;p&gt;That does not mean input disappears. The more work I delegate by voice, the more output I need to inspect. A &lt;a href="https://glassmanlab.seas.harvard.edu/papers/copilot_lbw_chi22.pdf" rel="noopener noreferrer"&gt;user study of generative coding tools&lt;/a&gt; similarly found that AI could help people get started, while understanding, editing, and debugging the generated code remained separate work.&lt;/p&gt;

&lt;p&gt;The bottleneck has not vanished. The cost of specifying procedures has gone down, while the work of explaining intent and validating results has moved to the foreground.&lt;/p&gt;

&lt;p&gt;Delegating execution is not the same as delegating judgment.&lt;/p&gt;

&lt;h2&gt;
  
  
  Thinking beyond voice
&lt;/h2&gt;

&lt;p&gt;When I think about what might follow this shift, I think of brain-computer interfaces, or BCIs. Voice still requires us to turn thought into language and then transmit that language as sound.&lt;/p&gt;

&lt;p&gt;That does not mean BCI will simply become the next input method after voice. One representative &lt;a href="https://www.nature.com/articles/s41586-023-06377-x" rel="noopener noreferrer"&gt;brain-to-speech interface study&lt;/a&gt; decoded signals produced when a participant with ALS, who had implanted microelectrode arrays, attempted to speak. That is still far from technology that can freely read a person’s thoughts.&lt;/p&gt;

&lt;p&gt;I have no idea when the next major transition will happen. But I suspect we will keep looking for ways to communicate intent to computers through fewer layers of translation.&lt;/p&gt;

&lt;h2&gt;
  
  
  Revisiting the prediction
&lt;/h2&gt;

&lt;p&gt;I still open my editor. Sometimes I need to follow the code directly in order to think. For a small change, editing it myself can still be faster.&lt;/p&gt;

&lt;p&gt;What has changed is when I open it.&lt;/p&gt;

&lt;p&gt;Most of my work used to begin in the editor. Now I start by telling an AI what I want. Once it produces a result, I enter the editor only if I need to.&lt;/p&gt;

&lt;p&gt;The era of not opening a code editor may not arrive because editors disappear. It may arrive because more and more tasks can be completed without opening one.&lt;/p&gt;

&lt;p&gt;Every time I press the right Option key, I am reminded that the future I once described may not be as far away as it sounded.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;This is an English adaptation of &lt;a href="https://blog.ga-ut.com/archive/distance-between-thought-and-execution/" rel="noopener noreferrer"&gt;my original Korean essay&lt;/a&gt;. I used AI to help with translation and editorial refinement; the ideas, examples, and final responsibility are mine.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>programming</category>
      <category>devtools</category>
      <category>productivity</category>
    </item>
  </channel>
</rss>
