<?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: Dobritoiu David-Constantin</title>
    <description>The latest articles on DEV Community by Dobritoiu David-Constantin (@davis856).</description>
    <link>https://dev.to/davis856</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%2F3781449%2F280f1f24-1587-4947-8955-568e7efd95d7.png</url>
      <title>DEV Community: Dobritoiu David-Constantin</title>
      <link>https://dev.to/davis856</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/davis856"/>
    <language>en</language>
    <item>
      <title>I built an AI that "roasts" your resume (so recruiters won't)</title>
      <dc:creator>Dobritoiu David-Constantin</dc:creator>
      <pubDate>Fri, 20 Feb 2026 11:30:51 +0000</pubDate>
      <link>https://dev.to/davis856/i-built-an-ai-that-roasts-your-resume-so-recruiters-wont-2l09</link>
      <guid>https://dev.to/davis856/i-built-an-ai-that-roasts-your-resume-so-recruiters-wont-2l09</guid>
      <description>&lt;p&gt;Most "AI Resume Builders" are wrappers that just say: &lt;em&gt;"Good job! Maybe add more numbers."&lt;/em&gt;&lt;br&gt;
They give you a generic score (e.g., 72/100) but don't tell you &lt;strong&gt;why&lt;/strong&gt;.&lt;br&gt;
As a developer, I hate "Black Box" logic. If I get a low score, I want to see the stack trace. I want to see the diff.&lt;br&gt;
So I built &lt;strong&gt;Refine.tools&lt;/strong&gt;—a free, local-first tool that forces the AI to "Show its Math."&lt;br&gt;
Here is how I engineered the "Audit Log" feature to give job seekers an unfair advantage.&lt;/p&gt;
&lt;h2&gt;
  
  
  The Problem: "Vague Feedback"
&lt;/h2&gt;

&lt;p&gt;When you send a resume to an ATS (Applicant Tracking System), it parses your PDF into text and looks for specific keywords (e.g., "React", "TypeScript", "System Design").&lt;br&gt;
If you miss them, you get rejected.&lt;br&gt;
Most tools just use a generic GPT-4 prompt: &lt;em&gt;"Review this resume."&lt;/em&gt;&lt;br&gt;
The result is usually fluff.&lt;/p&gt;
&lt;h2&gt;
  
  
  The Solution: Gap Analysis with Structured JSON
&lt;/h2&gt;

&lt;p&gt;I didn't want advice. I wanted a &lt;strong&gt;Gap Analysis&lt;/strong&gt;.&lt;br&gt;
I updated my backend (Next.js App Router) to accept two inputs:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;The Resume (Parsed from PDF)&lt;/li&gt;
&lt;li&gt;The Job Description (The target)
Then, I used OpenAI's &lt;code&gt;response_format: { type: "json_object" }&lt;/code&gt; to force a strict schema.
&lt;/li&gt;
&lt;/ol&gt;
&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight typescript"&gt;&lt;code&gt;&lt;span class="c1"&gt;// The Structure I force the AI to return&lt;/span&gt;
&lt;span class="kr"&gt;interface&lt;/span&gt; &lt;span class="nx"&gt;ResumeAudit&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
  &lt;span class="nl"&gt;missingKeywords&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="kr"&gt;string&lt;/span&gt;&lt;span class="p"&gt;[];&lt;/span&gt; &lt;span class="c1"&gt;// "Critical skills found in JD but MISSING in Resume"&lt;/span&gt;
  &lt;span class="nl"&gt;formattingIssues&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="kr"&gt;string&lt;/span&gt;&lt;span class="p"&gt;[];&lt;/span&gt; &lt;span class="c1"&gt;// "Header missing", "Photo detected"&lt;/span&gt;
  &lt;span class="nl"&gt;categories&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
    &lt;span class="na"&gt;name&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;Impact Language&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
    &lt;span class="nl"&gt;score&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="kr"&gt;number&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
    &lt;span class="nl"&gt;feedback&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="kr"&gt;string&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
  &lt;span class="p"&gt;}[];&lt;/span&gt;
&lt;span class="p"&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;


&lt;p&gt;By forcing this schema, the AI stops being a "Career Coach" and starts being a "Linter".&lt;br&gt;
It returns arrays like:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight json"&gt;&lt;code&gt;&lt;span class="nl"&gt;"missingKeywords"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="s2"&gt;"AWS"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"CI/CD"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"Docker"&lt;/span&gt;&lt;span class="p"&gt;]&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  The "Audit Log" UI
&lt;/h2&gt;

&lt;p&gt;On the frontend, I render this as a strict "Pass/Fail" audit.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Red Badges&lt;/strong&gt;: Skills you claimed to have but are missing from the text.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Green Checks&lt;/strong&gt;: Formatting rules you passed (no columns, standard fonts).
It turns the subjective art of "Resume Writing" into an objective "Bug Squashing" session.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Privacy First (The "Anti-SaaS")
&lt;/h2&gt;

&lt;p&gt;The best part? I didn't want to store anyone's data.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Local-First&lt;/strong&gt;: The resume parsing happens in your browser (or ephemerally in memory).&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;No Database&lt;/strong&gt;: I don't confirm your email because I don't &lt;em&gt;have&lt;/em&gt; a database.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;No Sign-up&lt;/strong&gt;: You just drag, drop, and refine.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Try it out
&lt;/h2&gt;

&lt;p&gt;I built this because I believe the job market is broken, and candidates deserve better tooling than the recruiters rejecting them.&lt;br&gt;
👉 &lt;strong&gt;&lt;a href="https://refine.tools/tools/resume" rel="noopener noreferrer"&gt;Try the Resume Auditor (Free)&lt;/a&gt;&lt;/strong&gt;&lt;br&gt;
The strategy is simple: Don't guess. Audit.&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>ai</category>
      <category>programming</category>
      <category>javascript</category>
    </item>
    <item>
      <title>I built a free AI resume tool with no database (because I hate signups)</title>
      <dc:creator>Dobritoiu David-Constantin</dc:creator>
      <pubDate>Thu, 19 Feb 2026 18:19:56 +0000</pubDate>
      <link>https://dev.to/davis856/i-built-a-free-ai-resume-tool-with-no-database-because-i-hate-signups-5faa</link>
      <guid>https://dev.to/davis856/i-built-a-free-ai-resume-tool-with-no-database-because-i-hate-signups-5faa</guid>
      <description>&lt;p&gt;I hate resume builders.&lt;/p&gt;

&lt;p&gt;You know the drill. You spend 20 minutes typing in your work history, tweaking the formatting, and getting everything perfect. Then you hit "Download PDF" and get hit with a pop-up:&lt;/p&gt;

&lt;p&gt;&lt;em&gt;"Create an account to save."&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Fine. You create an account.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;"Upgrade to Premium for $19/month to download."&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;I got tired of this dark pattern. So I decided to build &lt;strong&gt;Refine.tools&lt;/strong&gt; - a completely free, privacy-first alternative that runs entirely in your browser.&lt;/p&gt;

&lt;p&gt;Here is how I built it without a database, and why "Local-First" is the future of these kinds of apps.&lt;/p&gt;

&lt;h2&gt;
  
  
  The "Anti-SaaS" Architecture
&lt;/h2&gt;

&lt;p&gt;My goal was simple: &lt;strong&gt;Zero Data Liability.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;If I don't store your data, I can't lose it, I can't sell it, and I don't need to ask for your email.&lt;/p&gt;

&lt;p&gt;To do this, I had to ditch the standard "Postgres + Auth" setup.&lt;/p&gt;

&lt;h3&gt;
  
  
  1. The Database is Your Browser (Dexie.js)
&lt;/h3&gt;

&lt;p&gt;Instead of saving your resume to my server, I save it to &lt;strong&gt;IndexedDB&lt;/strong&gt; inside your browser.&lt;/p&gt;

&lt;p&gt;I used a library called &lt;strong&gt;Dexie.js&lt;/strong&gt; to make this easy. It acts just like a database table but lives 100% on your device.&lt;/p&gt;

&lt;p&gt;This means you can close the tab, come back a week later, and your resume is still there. But I never see it.&lt;/p&gt;

&lt;h3&gt;
  
  
  2. The "Harvard" PDF Trick
&lt;/h3&gt;

&lt;p&gt;Most resume tools use heavy JavaScript libraries to generate PDFs. This usually results in weird text selection issues or massive file sizes.&lt;/p&gt;

&lt;p&gt;I took a different approach: &lt;strong&gt;Native CSS Print Styling.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;I just used standard HTML and CSS for the resume layout (mimicking the classic "Harvard" template recruiters love). Then I used a simple &lt;code&gt;@media print&lt;/code&gt; query to hide the buttons and navbars.&lt;/p&gt;

&lt;p&gt;When you click "Download", the browser just prints the page to PDF. It is pixel-perfect, passes all ATS bots, and requires zero libraries.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why this matters
&lt;/h2&gt;

&lt;p&gt;We are drowning in "AI Wrappers" that are just data farms.&lt;/p&gt;

&lt;p&gt;I wanted to prove you can build a useful, powerful tool that respects the user.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;No Signup:&lt;/strong&gt; You start using it instantly.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;No Database:&lt;/strong&gt; Your data is yours.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Free:&lt;/strong&gt; I cover the small API costs because it's a passion project.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;If you are currently job hunting, give it a try. It will score your resume against ATS filters and help you rewrite weak bullet points.&lt;/p&gt;

&lt;p&gt;Check it out here: &lt;a href="https://refine.tools" rel="noopener noreferrer"&gt;Refine.tools&lt;/a&gt;&lt;/p&gt;

</description>
      <category>nextjs</category>
      <category>javascript</category>
      <category>privacy</category>
      <category>showdev</category>
    </item>
  </channel>
</rss>
