<?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: Sylumk</title>
    <description>The latest articles on DEV Community by Sylumk (@sylumkdev).</description>
    <link>https://dev.to/sylumkdev</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%2F3900793%2F2dac7a6c-6671-4d94-ba5e-3fecd7034d1e.png</url>
      <title>DEV Community: Sylumk</title>
      <link>https://dev.to/sylumkdev</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/sylumkdev"/>
    <language>en</language>
    <item>
      <title>I was tired of copy-pasting between job tracker and CV tools, so I connected them</title>
      <dc:creator>Sylumk</dc:creator>
      <pubDate>Mon, 27 Apr 2026 22:24:16 +0000</pubDate>
      <link>https://dev.to/sylumkdev/i-was-tired-of-copy-pasting-between-job-tracker-and-cv-tools-so-i-connected-them-2ai2</link>
      <guid>https://dev.to/sylumkdev/i-was-tired-of-copy-pasting-between-job-tracker-and-cv-tools-so-i-connected-them-2ai2</guid>
      <description>&lt;p&gt;Last year when I was applying for jobs, my setup was a mess.&lt;/p&gt;

&lt;p&gt;I had 10 tabs open, a spreadsheet to track applications, and multiple versions of my CV. Every time I wanted to tailor my CV for a role, I had to copy paste the job description somewhere, paste my CV somewhere else, and manually compare the two.&lt;/p&gt;

&lt;p&gt;It worked, but it was slow and annoying. So I built a small tool to fix that.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The idea&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;I wanted one place where I could both track applications and tailor my CV without jumping between tabs.&lt;/p&gt;

&lt;p&gt;The flow is simple.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;You open a job in your tracker. You click “Tailor my CV for this role”. A new tab opens with your CV and the job description already there.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;From there, you get suggestions. Keywords to add, bullet points to rewrite, things to remove. You pick what you want.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;When you're done, the result syncs back to the original tab. You can close everything and come back later without doing the work again.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;That’s it. No copy paste loop.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The tracker&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The tracker is just a small column based board with four columns: Draft, Applied, Interview, Offer.&lt;/p&gt;

&lt;p&gt;Each card has the company name, role, job description, and your notes. Enough to stop using a spreadsheet, nothing more.&lt;/p&gt;

&lt;p&gt;I did not add drag and drop. A simple “Move to” dropdown does the job and took an hour instead of a day. That tradeoff felt right.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;How the sync works&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The interesting part is how the two tabs talk to each other.&lt;/p&gt;

&lt;p&gt;When the CV tab finishes generating suggestions or when you apply changes, it writes the result to localStorage.&lt;/p&gt;

&lt;p&gt;The tracker listens to the localStorage storage event. When it fires, the card updates automatically. No refresh, no manual reload.&lt;/p&gt;

&lt;p&gt;It is a small thing, but it removes a lot of friction. You do the work in one tab and see the result in another instantly.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;How the CV analysis works&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;There are two modes.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;The first one is keyword matching. It runs instantly and highlights missing or weak matches between your CV and the job description.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;The second one uses an AI model through your own Gemini API key. It gives more detailed suggestions like rewriting bullet points or spotting gaps.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;In both cases, the output is not a full rewrite. I tried that first and dropped it. It felt like a black box and I did not trust it.&lt;/p&gt;

&lt;p&gt;Now it gives small, specific suggestions. You pick what to apply.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;PDF support&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;You can upload your CV as a PDF. The text is extracted directly in the browser and used for the analysis.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What I chose not to build&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;A few things I skipped on purpose.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;A full CV rewrite, as mentioned.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Drag and drop on the board. Nice to have, not worth the time for a first version.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Anything that adds friction or setup. The goal was to make this faster than my old copy paste workflow, not more complex.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;What’s next&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Right now, adding a job to the tracker is still manual. You copy the job description and paste it into a card.&lt;/p&gt;

&lt;p&gt;The next step is a browser extension.&lt;/p&gt;

&lt;p&gt;The idea is to open a job page and click a button to send everything to the tracker. Title, company, description. No copy paste at all.&lt;/p&gt;

&lt;p&gt;That would complete the loop.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;If you want to try it&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The tracker and the CV tools are available at &lt;a href="https://sylumk.dev" rel="noopener noreferrer"&gt;https://sylumk.dev&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;If you are not job hunting, you probably know someone who is. Feel free to share it with them.&lt;/p&gt;

&lt;p&gt;If you have feedback, I would love to hear it !&lt;/p&gt;

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