<?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: Akshin Yolcuyev</title>
    <description>The latest articles on DEV Community by Akshin Yolcuyev (@akshin_yolcuyev_3b7e1f03c).</description>
    <link>https://dev.to/akshin_yolcuyev_3b7e1f03c</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%2F3581686%2F67a334a2-60ef-497a-bb1e-01aca3e9169e.jpg</url>
      <title>DEV Community: Akshin Yolcuyev</title>
      <link>https://dev.to/akshin_yolcuyev_3b7e1f03c</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/akshin_yolcuyev_3b7e1f03c"/>
    <language>en</language>
    <item>
      <title>I built an AI resume tool that refuses to invent experience — here's why and how</title>
      <dc:creator>Akshin Yolcuyev</dc:creator>
      <pubDate>Mon, 20 Jul 2026 22:52:38 +0000</pubDate>
      <link>https://dev.to/akshin_yolcuyev_3b7e1f03c/i-built-an-ai-resume-tool-that-refuses-to-invent-experience-heres-why-and-how-2lhi</link>
      <guid>https://dev.to/akshin_yolcuyev_3b7e1f03c/i-built-an-ai-resume-tool-that-refuses-to-invent-experience-heres-why-and-how-2lhi</guid>
      <description>&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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fx5c38pq088kceonud3x3.png" 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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fx5c38pq088kceonud3x3.png" alt=" " width="800" height="800"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Every AI resume tool has the same dirty little secret: to make your CV look impressive, it makes things up.&lt;/p&gt;

&lt;p&gt;I noticed this the hard way during my own job hunt. I'd paste my resume into an LLM, ask it to tailor it for a role, and get back beautiful bullet points describing accomplishments I'd never had. It was persuasive. It was also a trap — the kind that gets you into an interview you then can't survive, because you can't speak to work you never did.&lt;/p&gt;

&lt;p&gt;So when I built &lt;strong&gt;AdaptMyCV&lt;/strong&gt; (&lt;a href="https://adaptmycv.app" rel="noopener noreferrer"&gt;adaptmycv.app&lt;/a&gt;), I started from a constraint instead of a feature: &lt;strong&gt;it is not allowed to invent anything.&lt;/strong&gt; This post is about why that's harder than it sounds, and how I enforced it.&lt;/p&gt;

&lt;h3&gt;
  
  
  The real problem: ATS filtering rewards tailoring, not lying
&lt;/h3&gt;

&lt;p&gt;Most mid-to-large employers run resumes through an Applicant Tracking System before a human sees them. If your CV doesn't reflect the language and requirements of the specific posting, you're filtered out silently — no rejection email, just nothing.&lt;/p&gt;

&lt;p&gt;The honest fix is &lt;em&gt;tailoring&lt;/em&gt;: surfacing the experience you actually have that's relevant to this role, and mirroring the posting's terminology. The dishonest fix is &lt;em&gt;fabrication&lt;/em&gt;: adding skills and results you don't have because they match the keywords. Both get you past the filter. Only one survives the interview.&lt;/p&gt;

&lt;p&gt;The whole product is an attempt to do the first and structurally prevent the second.&lt;/p&gt;

&lt;h3&gt;
  
  
  How the pipeline works
&lt;/h3&gt;

&lt;p&gt;Four stages, two models:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Parse&lt;/strong&gt; — the uploaded CV (PDF/DOCX) is parsed into structured JSON: experience, skills, education, each with provenance back to the source text.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Gap analysis&lt;/strong&gt; — the job description is compared against that structured CV to find genuine overlaps and genuine gaps.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Adapt&lt;/strong&gt; — the rewrite step is constrained: it may re-emphasize, re-order, and re-word &lt;em&gt;existing&lt;/em&gt; experience to match the role, but every claim must trace to something already in the parsed CV.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Render&lt;/strong&gt; — a clean, ATS-parseable PDF (WeasyPrint), because a great rewrite trapped in unparseable formatting is useless.&lt;/li&gt;
&lt;/ol&gt;

&lt;h3&gt;
  
  
  The honesty check
&lt;/h3&gt;

&lt;p&gt;The interesting part is stage 3's guardrail. After the adapt step, a second pass compares the rewritten CV against the original parsed CV and flags any statement that isn't supported by the source. A new job title, a metric that appeared from nowhere, a skill never mentioned — all get surfaced rather than silently shipped.&lt;/p&gt;

&lt;p&gt;It's not perfect (LLMs are fuzzy, and "supported by" is a judgment call), but the default is inverted from the rest of the market: &lt;strong&gt;when in doubt, don't add it.&lt;/strong&gt; The cost of a false "that's invented" flag is a small annoyance. The cost of a confident fabrication is a candidate humiliated in an interview.&lt;/p&gt;

&lt;h3&gt;
  
  
  A few engineering notes
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Two-tier models:&lt;/strong&gt; a cheaper model for parse/gap/scoring, the flagship only for the actual rewrite. Keeps per-adaptation cost around a few cents.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Preview before payment:&lt;/strong&gt; you run and see the full tailored CV for free; payment gates only the downloadable file. If the rewrite is bad, you've lost nothing.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;EU-hosted, data deleted after 30 days.&lt;/strong&gt; A resume is sensitive; treating it as disposable is a feature.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  What I'd do differently
&lt;/h3&gt;

&lt;p&gt;The honesty check should probably be its own fine-tuned classifier rather than a prompted pass — cheaper and more consistent. And parsing remains the single biggest source of errors: if the parse misreads a date or a title, everything downstream inherits it.&lt;/p&gt;

&lt;p&gt;If you want to see the honesty angle in practice, it's live at &lt;a href="https://adaptmycv.app" rel="noopener noreferrer"&gt;AdaptMyCV&lt;/a&gt; — the ATS score checker is free. I'd genuinely like feedback from other builders on the "refuse to fabricate" constraint: too strict? not strict enough? Where would you draw the line?&lt;/p&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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F4i1j45zjhapn66k7vxk1.png" 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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F4i1j45zjhapn66k7vxk1.png" alt=" " width="800" height="420"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>career</category>
      <category>showdev</category>
      <category>webdev</category>
    </item>
    <item>
      <title>I got tired of rearranging my monitors every time I plug them in</title>
      <dc:creator>Akshin Yolcuyev</dc:creator>
      <pubDate>Sun, 12 Apr 2026 18:35:58 +0000</pubDate>
      <link>https://dev.to/akshin_yolcuyev_3b7e1f03c/i-got-tired-of-rearranging-my-monitors-every-time-i-plug-them-in-4p3a</link>
      <guid>https://dev.to/akshin_yolcuyev_3b7e1f03c/i-got-tired-of-rearranging-my-monitors-every-time-i-plug-them-in-4p3a</guid>
      <description>&lt;p&gt;I have two external monitors connected to my Mac. Every time I unplug one — for a meeting, to move my laptop to the couch, or just after waking from sleep — macOS "forgets" the arrangement. Monitors swap sides. The primary display changes. Resolution resets.&lt;/p&gt;

&lt;p&gt;Every single time: System Settings &amp;gt; Displays &amp;gt; drag the rectangles &amp;gt; pick the resolution &amp;gt; set the primary monitor. Thirty seconds that feel like thirty minutes.&lt;/p&gt;

&lt;p&gt;I looked it up — this has been a known problem for years. There are paid solutions, but it felt absurd to pay for something macOS should handle on its own: remembering where my monitors go.&lt;/p&gt;

&lt;p&gt;So I built MonitorManager. A menu bar utility written in Swift that does exactly one thing: remembers your monitor arrangement and restores it automatically.&lt;/p&gt;

&lt;p&gt;Set up your monitors &amp;gt; hit Save &amp;gt; give it a name &amp;gt; done. Next time you plug in, everything snaps back into place: positions, resolution, primary display. You can save multiple profiles — "Work", "Gaming", "Presentation" — and switch with one click.&lt;/p&gt;

&lt;p&gt;No Electron. No subscriptions. A native 100KB app that sits in your menu bar and just works.&lt;/p&gt;

&lt;p&gt;Open source. For now you can build from source:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;git clone https://github.com/akshin18/monitor_man.git
&lt;span class="nb"&gt;cd &lt;/span&gt;monitor_man &lt;span class="o"&gt;&amp;amp;&amp;amp;&lt;/span&gt; &lt;span class="nb"&gt;chmod&lt;/span&gt; +x build.sh &lt;span class="o"&gt;&amp;amp;&amp;amp;&lt;/span&gt; ./build.sh
open MonitorManager.app
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Homebrew tap is coming soon.&lt;/p&gt;

&lt;p&gt;GitHub: github.com/akshin18/monitor_man&lt;/p&gt;

</description>
      <category>productivity</category>
      <category>showdev</category>
      <category>sideprojects</category>
      <category>swift</category>
    </item>
  </channel>
</rss>
