<?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: ming zhang</title>
    <description>The latest articles on DEV Community by ming zhang (@fafa_ai).</description>
    <link>https://dev.to/fafa_ai</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%2F3843870%2F9409ed95-f301-41f0-8ecc-32fb63ed8b65.png</url>
      <title>DEV Community: ming zhang</title>
      <link>https://dev.to/fafa_ai</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/fafa_ai"/>
    <language>en</language>
    <item>
      <title>I Built a Free AI Detector + Humanizer with Sentence-Level Highlighting</title>
      <dc:creator>ming zhang</dc:creator>
      <pubDate>Sat, 11 Apr 2026 14:43:13 +0000</pubDate>
      <link>https://dev.to/fafa_ai/i-built-a-free-ai-detector-humanizer-with-sentence-level-highlighting-51jj</link>
      <guid>https://dev.to/fafa_ai/i-built-a-free-ai-detector-humanizer-with-sentence-level-highlighting-51jj</guid>
      <description>&lt;h2&gt;
  
  
  The Problem
&lt;/h2&gt;

&lt;p&gt;I got tired of pasting text into AI detection tools and getting a single percentage back. "83% AI-generated" — but &lt;strong&gt;which sentences&lt;/strong&gt;? Without knowing what to fix, the number is useless.&lt;/p&gt;

&lt;p&gt;So I built a tool that shows you exactly which sentences trigger AI detection, and optionally rewrites them.&lt;/p&gt;

&lt;h2&gt;
  
  
  What It Does
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://humanize.fafa-tools.com" rel="noopener noreferrer"&gt;HumanizeAI&lt;/a&gt;&lt;/strong&gt; — free, no signup, no login.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;AI Detection&lt;/strong&gt; — paste any text, get a sentence-by-sentence breakdown. Each sentence is highlighted: red = likely AI, green = likely human. You see a circular gauge with the overall score and individual detector ratings from 4 different detection algorithms.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Text Humanization&lt;/strong&gt; — click "Humanize" and it rewrites the text to sound more natural. You can compare before/after side by side.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  Technical Implementation
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Stack
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Next.js 16&lt;/strong&gt; (App Router)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Tailwind CSS v4&lt;/strong&gt; — the new CSS-first config, no more &lt;code&gt;tailwind.config.js&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;AI text model&lt;/strong&gt; via API — for text humanization&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Custom detection engine&lt;/strong&gt; — multi-detector scoring with weighted analysis&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Cloudflare Pages&lt;/strong&gt; — edge deployment via &lt;code&gt;@opennextjs/cloudflare&lt;/code&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Sentence-Level Highlighting
&lt;/h3&gt;

&lt;p&gt;The detection endpoint (&lt;code&gt;/api/detect&lt;/code&gt;) returns per-sentence results:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight typescript"&gt;&lt;code&gt;&lt;span class="kr"&gt;interface&lt;/span&gt; &lt;span class="nx"&gt;DetectionResult&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
  &lt;span class="nl"&gt;sentence&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="nl"&gt;aiProbability&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="c1"&gt;// 0-100&lt;/span&gt;
  &lt;span class="nl"&gt;detectors&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="kr"&gt;string&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;label&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;// "AI" | "Human" | "Mixed"&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;Each sentence gets a color based on its AI probability:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Red&lt;/strong&gt; (&amp;gt;70%): likely AI-generated&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Yellow&lt;/strong&gt; (40-70%): uncertain&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Green&lt;/strong&gt; (&amp;lt;40%): likely human-written&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Gauge Dashboard
&lt;/h3&gt;

&lt;p&gt;Built with pure SVG — no chart library needed:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight tsx"&gt;&lt;code&gt;&lt;span class="c1"&gt;// Circular progress ring using SVG circle + stroke-dasharray&lt;/span&gt;
&lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;circumference&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="mi"&gt;2&lt;/span&gt; &lt;span class="o"&gt;*&lt;/span&gt; &lt;span class="nb"&gt;Math&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;PI&lt;/span&gt; &lt;span class="o"&gt;*&lt;/span&gt; &lt;span class="nx"&gt;radius&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;offset&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nx"&gt;circumference&lt;/span&gt; &lt;span class="o"&gt;-&lt;/span&gt; &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;score&lt;/span&gt; &lt;span class="o"&gt;/&lt;/span&gt; &lt;span class="mi"&gt;100&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="o"&gt;*&lt;/span&gt; &lt;span class="nx"&gt;circumference&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The gauge color shifts dynamically: red → yellow → green based on the overall AI score.&lt;/p&gt;

&lt;h3&gt;
  
  
  Multi-Detector Scoring
&lt;/h3&gt;

&lt;p&gt;Instead of relying on one detection method, the tool runs 4 independent detectors and aggregates the results. Each detector analyzes different patterns (perplexity, burstiness, vocabulary distribution, sentence structure). The final score is a weighted average displayed as individual progress bars.&lt;/p&gt;

&lt;h3&gt;
  
  
  Rate Limiting
&lt;/h3&gt;

&lt;p&gt;Rate limited per IP with daily caps to prevent abuse. Simple in-memory implementation — no Redis needed at this scale.&lt;/p&gt;

&lt;h3&gt;
  
  
  Deployment on Cloudflare Pages
&lt;/h3&gt;

&lt;p&gt;Deployed via &lt;code&gt;@opennextjs/cloudflare&lt;/code&gt; adapter. The entire app runs on the edge — API routes and all. No separate backend server.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npm &lt;span class="nb"&gt;install&lt;/span&gt; @opennextjs/cloudflare
npx opennextjs-cloudflare build
npx wrangler pages deploy
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Connected to GitHub for auto-deploys on push.&lt;/p&gt;

&lt;h2&gt;
  
  
  Design Decisions
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Decision&lt;/th&gt;
&lt;th&gt;Why&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;No signup/login&lt;/td&gt;
&lt;td&gt;Friction kills conversion for simple tools&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Sentence-level, not paragraph&lt;/td&gt;
&lt;td&gt;Users need to know &lt;strong&gt;what&lt;/strong&gt; to fix&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Multi-detector&lt;/td&gt;
&lt;td&gt;Single detectors have high false positive rates&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;SVG gauge, no library&lt;/td&gt;
&lt;td&gt;Keeps bundle small (~0 dependency overhead)&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;In-memory rate limit&lt;/td&gt;
&lt;td&gt;Simple, free, works at low traffic&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Cloudflare Pages&lt;/td&gt;
&lt;td&gt;Free tier is generous, edge = fast globally&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h2&gt;
  
  
  Limitations (Honest Take)
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;AI humanization has a ceiling. Good prompting can reduce AI scores significantly, but eliminating them entirely is unreliable. The detection feature is the real value — humanization is a helper.&lt;/li&gt;
&lt;li&gt;Rate limiting resets on deploy. Fine for now, not for scale.&lt;/li&gt;
&lt;li&gt;No file upload or PDF export yet. On the backlog.&lt;/li&gt;
&lt;/ul&gt;

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

&lt;p&gt;&lt;strong&gt;&lt;a href="https://humanize.fafa-tools.com" rel="noopener noreferrer"&gt;HumanizeAI&lt;/a&gt;&lt;/strong&gt; — paste some text, see which sentences look AI-generated, optionally humanize. Free, no account needed.&lt;/p&gt;

&lt;p&gt;Feedback welcome — what features would make this actually useful for your workflow?&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>ai</category>
      <category>nextjs</category>
      <category>tutorial</category>
    </item>
    <item>
      <title>How I Built ResumeAI: A Free Tool to Optimize Your Resume</title>
      <dc:creator>ming zhang</dc:creator>
      <pubDate>Sat, 28 Mar 2026 01:58:25 +0000</pubDate>
      <link>https://dev.to/fafa_ai/how-i-built-resumeai-a-free-tool-to-optimize-your-resume-4hke</link>
      <guid>https://dev.to/fafa_ai/how-i-built-resumeai-a-free-tool-to-optimize-your-resume-4hke</guid>
      <description>&lt;h2&gt;
  
  
  Why I Built This
&lt;/h2&gt;

&lt;p&gt;Job hunting is competitive. I noticed many candidates struggle with resume formatting, weak action verbs, and missing keywords. I wanted a simple tool that gives instant, actionable feedback.&lt;/p&gt;

&lt;h2&gt;
  
  
  What It Does
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;ResumeAI&lt;/strong&gt; analyzes and optimizes your resume in seconds:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Paste your resume text&lt;/li&gt;
&lt;li&gt;Get AI-powered improvement suggestions&lt;/li&gt;
&lt;li&gt;See your score across 5 dimensions (clarity, impact, keywords, structure, achievements)&lt;/li&gt;
&lt;li&gt;Download optimized version as PDF&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Free to use, no signup required.&lt;/p&gt;

&lt;h2&gt;
  
  
  How It Works
&lt;/h2&gt;

&lt;p&gt;Built with:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Next.js&lt;/strong&gt; for the frontend&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Tailwind CSS&lt;/strong&gt; for styling&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;GLM-4&lt;/strong&gt; for resume analysis&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Cloudflare Workers&lt;/strong&gt; for edge deployment&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The app evaluates resumes on 5 key dimensions, each scored out of 20, with specific suggestions for improvement.&lt;/p&gt;

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

&lt;p&gt;&lt;a href="https://resume-ai.onlyforfafa888.workers.dev" rel="noopener noreferrer"&gt;ResumeAI&lt;/a&gt; - Free, no signup required&lt;/p&gt;

&lt;h2&gt;
  
  
  Feedback Welcome
&lt;/h2&gt;

&lt;p&gt;What features would help you land more interviews?&lt;/p&gt;

</description>
      <category>ai</category>
      <category>webdev</category>
      <category>productivity</category>
      <category>career</category>
    </item>
    <item>
      <title>How I Built HumanizeAI: A Free Tool to Make AI Text Sound Human</title>
      <dc:creator>ming zhang</dc:creator>
      <pubDate>Thu, 26 Mar 2026 00:28:52 +0000</pubDate>
      <link>https://dev.to/fafa_ai/how-i-built-humanizeai-a-free-tool-to-make-ai-text-sound-human-3f68</link>
      <guid>https://dev.to/fafa_ai/how-i-built-humanizeai-a-free-tool-to-make-ai-text-sound-human-3f68</guid>
      <description>&lt;h2&gt;
  
  
  Why I Built This
&lt;/h2&gt;

&lt;p&gt;As a content creator, I noticed AI detection tools were becoming stricter. Many genuine creators were getting flagged just for using AI assistance. I wanted a simple tool to help.&lt;/p&gt;

&lt;h2&gt;
  
  
  What It Does
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;HumanizeAI&lt;/strong&gt; transforms AI-generated text into natural, human-like content:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Paste any AI text (ChatGPT, Claude, etc.)&lt;/li&gt;
&lt;li&gt;Get humanized output instantly&lt;/li&gt;
&lt;li&gt;Free to use, no signup required&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  How It Works
&lt;/h2&gt;

&lt;p&gt;Built with:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Next.js&lt;/strong&gt; for the frontend&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Tailwind CSS&lt;/strong&gt; for styling&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;GLM-4&lt;/strong&gt; for text transformation&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Cloudflare Workers&lt;/strong&gt; for edge deployment&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The app uses a simple API route to process text through the AI model, with rate limiting to prevent abuse.&lt;/p&gt;

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

&lt;p&gt;&lt;a href="https://humanize-ai.onlyforfafa888.workers.dev" rel="noopener noreferrer"&gt;HumanizeAI&lt;/a&gt; - Free, no signup required&lt;/p&gt;

&lt;h2&gt;
  
  
  Feedback Welcome
&lt;/h2&gt;

&lt;p&gt;I'd love to hear your thoughts and suggestions! What features would you find useful?&lt;/p&gt;

</description>
      <category>ai</category>
      <category>webdev</category>
      <category>productivity</category>
      <category>nextjs</category>
    </item>
  </channel>
</rss>
