<?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: krzy19</title>
    <description>The latest articles on DEV Community by krzy19 (@krzy19).</description>
    <link>https://dev.to/krzy19</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.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3413431%2Fef2a46a8-c5b2-4196-9e0f-cdb649bd9b8d.png</url>
      <title>DEV Community: krzy19</title>
      <link>https://dev.to/krzy19</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/krzy19"/>
    <language>en</language>
    <item>
      <title>Got GPT-5 but still copying and pasting?</title>
      <dc:creator>krzy19</dc:creator>
      <pubDate>Tue, 12 Aug 2025 15:11:47 +0000</pubDate>
      <link>https://dev.to/krzy19/got-gpt-5-but-still-copying-and-pasting-2ic2</link>
      <guid>https://dev.to/krzy19/got-gpt-5-but-still-copying-and-pasting-2ic2</guid>
      <description>&lt;p&gt;This summer I started a small &lt;em&gt;vibe-coding&lt;/em&gt; experiment — just for fun.&lt;br&gt;&lt;br&gt;
The idea: edit, translate, and refine text with AI &lt;em&gt;right where you’re working&lt;/em&gt;, without switching windows or tabs.  &lt;/p&gt;

&lt;p&gt;It was supposed to be a weekend hack. Instead, it became a daily tool I can’t work without — so I shipped it to GitHub and the App Store.  &lt;/p&gt;




&lt;h2&gt;
  
  
  🛠 From Need to Prototype
&lt;/h2&gt;

&lt;p&gt;I often use AI for small edits — fixing typos, translating a sentence, rewriting a short code snippet.&lt;br&gt;&lt;br&gt;
But opening ChatGPT in the browser, pasting text, getting results, and pasting back… it kills focus.  &lt;/p&gt;

&lt;p&gt;So I built a minimal macOS app:  &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Select text in any app
&lt;/li&gt;
&lt;li&gt;Press a global shortcut (⌥ + /)
&lt;/li&gt;
&lt;li&gt;Type a command (e.g. &lt;code&gt;/fix&lt;/code&gt; or &lt;code&gt;/en&lt;/code&gt;)
&lt;/li&gt;
&lt;li&gt;AI processes the text and replaces it in place — no copy-paste, no window switching
&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  ⚡ Stage 1: Quick Hack in Swift
&lt;/h2&gt;

&lt;p&gt;The first prototype was built in one evening — my first time using Swift.&lt;br&gt;&lt;br&gt;
With a little help from AI, I had a functional app that:  &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Detected selected text
&lt;/li&gt;
&lt;li&gt;Sent it to an AI provider
&lt;/li&gt;
&lt;li&gt;Returned the result via the clipboard
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;At this point, I called it &lt;em&gt;vibe-coding&lt;/em&gt;: fast prototyping just to see if the idea works.&lt;/p&gt;




&lt;h2&gt;
  
  
  🎯 Stage 2: Minimalist UX
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fs56c6ppp3x29cehzkpfq.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fs56c6ppp3x29cehzkpfq.jpg" alt="Inlaider Inline AI text editor" width="800" height="500"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The UI should not distract — just a small popup, quick keyboard shortcut, hands stay on the keyboard.&lt;br&gt;&lt;br&gt;
Added features along the way:  &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Command shortcuts (&lt;code&gt;/en&lt;/code&gt;, &lt;code&gt;/fix&lt;/code&gt;, &lt;code&gt;/shorten&lt;/code&gt;)
&lt;/li&gt;
&lt;li&gt;Command history (↑/↓ like in the terminal)
&lt;/li&gt;
&lt;li&gt;Local commands without AI (&lt;code&gt;.sort&lt;/code&gt;, &lt;code&gt;.unique&lt;/code&gt;, &lt;code&gt;.trim&lt;/code&gt;)
&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  &lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Ftdep350ljw6kylesfe4z.gif" alt="Shorten with Inlaider demo" width="720" height="405"&gt;
&lt;/h2&gt;

&lt;h2&gt;
  
  
  🚀 Stage 3: Shipping It
&lt;/h2&gt;

&lt;p&gt;When I turned it off, I felt its absence — that was the sign to release it.  &lt;/p&gt;

&lt;p&gt;Challenges:  &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Passing App Store review (had to create a separate China build using DeepSeek only)
&lt;/li&gt;
&lt;li&gt;Simple backend for paid users — no accounts, just App Store purchase receipts as IDs
&lt;/li&gt;
&lt;li&gt;No logs beyond credit counters
&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  📦 Try It
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;GitHub (MIT License):&lt;/strong&gt; &lt;a href="https://github.com/cojapacze/inlaider" rel="noopener noreferrer"&gt;github.com/cojapacze/inlaider&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;App Store (Global):&lt;/strong&gt; &lt;a href="https://apps.apple.com/us/app/inlaider-text-assistant/id6748281212" rel="noopener noreferrer"&gt;Inlaider — Text Assistant&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;App Store (China):&lt;/strong&gt; &lt;a href="https://apps.apple.com/cn/app/inlaider-%E8%BE%93%E5%85%A5%E5%8A%A9%E6%89%8B-cn/id6748965756" rel="noopener noreferrer"&gt;Inlaider CN&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;📖 Full build story (technical + design decisions):&lt;br&gt;&lt;br&gt;
&lt;a href="https://medium.com/@krzy19/summer-2025-with-vibe-coding-1f2b2087e0a3" rel="noopener noreferrer"&gt;Summer 2025 with Vibe-Coding — Medium&lt;/a&gt;  &lt;/p&gt;

</description>
      <category>vibecoding</category>
      <category>ai</category>
      <category>productivity</category>
      <category>showdev</category>
    </item>
  </channel>
</rss>
