<?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: kaketiti</title>
    <description>The latest articles on DEV Community by kaketiti (@magickit).</description>
    <link>https://dev.to/magickit</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%2F4134458%2F3513a966-91f0-40b5-bbf0-110e0ec4aa2b.png</url>
      <title>DEV Community: kaketiti</title>
      <link>https://dev.to/magickit</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/magickit"/>
    <language>en</language>
    <item>
      <title>I Built a 100% Free AI Toolbox with No Sign-Up (Here's How)</title>
      <dc:creator>kaketiti</dc:creator>
      <pubDate>Mon, 21 Sep 2026 00:02:33 +0000</pubDate>
      <link>https://dev.to/magickit/i-built-a-100-free-ai-toolbox-with-no-sign-up-heres-how-1m2b</link>
      <guid>https://dev.to/magickit/i-built-a-100-free-ai-toolbox-with-no-sign-up-heres-how-1m2b</guid>
      <description>&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;TL;DR&lt;/strong&gt;: I built &lt;a href="http://47.80.8.174" rel="noopener noreferrer"&gt;MagicKit&lt;/a&gt; — a free AI toolbox for image generation, AI writing, and video making. No sign-up, no API key, no paywall. The whole thing is &lt;a href="https://github.com/kaketiti/magickit" rel="noopener noreferrer"&gt;open source on GitHub&lt;/a&gt;.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2&gt;
  
  
  Why I built this
&lt;/h2&gt;

&lt;p&gt;Every AI tool these days wants you to sign up, hand over an API key, or subscribe before you can even try it. I wanted the opposite: &lt;strong&gt;open the page and just create.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;So I spent a few evenings building MagicKit — three tools in one page:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;🖼️ &lt;strong&gt;AI Image Generator&lt;/strong&gt; — text-to-image with the FLUX model, multiple aspect ratios&lt;/li&gt;
&lt;li&gt;✍️ &lt;strong&gt;AI Writer&lt;/strong&gt; — scripts, copywriting, naming, translation&lt;/li&gt;
&lt;li&gt;🎬 &lt;strong&gt;AI Video Maker&lt;/strong&gt; — combine generated images into a short video&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  The stack (boring on purpose)
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Layer&lt;/th&gt;
&lt;th&gt;Choice&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;Backend&lt;/td&gt;
&lt;td&gt;Node.js + Express&lt;/td&gt;
&lt;td&gt;One file, easy to deploy&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Frontend&lt;/td&gt;
&lt;td&gt;Pure HTML/CSS/JS&lt;/td&gt;
&lt;td&gt;No build step, no framework bloat&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;AI&lt;/td&gt;
&lt;td&gt;Pollinations free API&lt;/td&gt;
&lt;td&gt;No key required&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Video&lt;/td&gt;
&lt;td&gt;FFmpeg&lt;/td&gt;
&lt;td&gt;Battle-tested, runs on a tiny VPS&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;The entire backend sits at around &lt;strong&gt;60 MB RAM&lt;/strong&gt;, because my server only has 1.6 GB to work with.&lt;/p&gt;

&lt;h2&gt;
  
  
  The hard parts
&lt;/h2&gt;

&lt;h3&gt;
  
  
  1. Aggressive rate limits
&lt;/h3&gt;

&lt;p&gt;The free image API only allows &lt;strong&gt;one queued request per IP&lt;/strong&gt;. Concurrent requests instantly return &lt;code&gt;429 Queue full&lt;/code&gt;. My first naive implementation fell over immediately.&lt;/p&gt;

&lt;p&gt;The fix:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;A &lt;strong&gt;fully serial queue&lt;/strong&gt; (concurrency = 1)&lt;/li&gt;
&lt;li&gt;A global &lt;strong&gt;minimum 3-second interval&lt;/strong&gt; between requests&lt;/li&gt;
&lt;li&gt;Retry with exponential-ish backoff (up to 5 attempts), detecting 429 responses that come back as tiny error pages instead of real JPEGs
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight javascript"&gt;&lt;code&gt;&lt;span class="k"&gt;async&lt;/span&gt; &lt;span class="kd"&gt;function&lt;/span&gt; &lt;span class="nf"&gt;generateImageWithRetry&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;prompt&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nx"&gt;width&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nx"&gt;height&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
  &lt;span class="k"&gt;for &lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="kd"&gt;let&lt;/span&gt; &lt;span class="nx"&gt;attempt&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="mi"&gt;0&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt; &lt;span class="nx"&gt;attempt&lt;/span&gt; &lt;span class="o"&gt;&amp;lt;&lt;/span&gt; &lt;span class="mi"&gt;5&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt; &lt;span class="nx"&gt;attempt&lt;/span&gt;&lt;span class="o"&gt;++&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
    &lt;span class="k"&gt;await&lt;/span&gt; &lt;span class="nf"&gt;globalRateLimitGate&lt;/span&gt;&lt;span class="p"&gt;();&lt;/span&gt;        &lt;span class="c1"&gt;// 3s minimum spacing&lt;/span&gt;
    &lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;file&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="k"&gt;await&lt;/span&gt; &lt;span class="nf"&gt;downloadWithCurl&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nf"&gt;buildUrl&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;prompt&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nx"&gt;width&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nx"&gt;height&lt;/span&gt;&lt;span class="p"&gt;));&lt;/span&gt;
    &lt;span class="k"&gt;if &lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="o"&gt;!&lt;/span&gt;&lt;span class="nf"&gt;isRateLimitError&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;file&lt;/span&gt;&lt;span class="p"&gt;))&lt;/span&gt; &lt;span class="k"&gt;return&lt;/span&gt; &lt;span class="nx"&gt;file&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
    &lt;span class="k"&gt;await&lt;/span&gt; &lt;span class="nf"&gt;sleep&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="mi"&gt;3000&lt;/span&gt; &lt;span class="o"&gt;*&lt;/span&gt; &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;attempt&lt;/span&gt; &lt;span class="o"&gt;+&lt;/span&gt; &lt;span class="mi"&gt;1&lt;/span&gt;&lt;span class="p"&gt;));&lt;/span&gt; &lt;span class="c1"&gt;// 3s, 6s, 9s...&lt;/span&gt;
  &lt;span class="p"&gt;}&lt;/span&gt;
  &lt;span class="k"&gt;throw&lt;/span&gt; &lt;span class="k"&gt;new&lt;/span&gt; &lt;span class="nc"&gt;Error&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;Image service busy, please try again&lt;/span&gt;&lt;span class="dl"&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;h3&gt;
  
  
  2. &lt;code&gt;socket hang up&lt;/code&gt; from the HTTP client
&lt;/h3&gt;

&lt;p&gt;Node's &lt;code&gt;https&lt;/code&gt; module kept dropping connections to the image endpoint under slow responses. I replaced it with a &lt;strong&gt;&lt;code&gt;curl&lt;/code&gt; child process&lt;/strong&gt;:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;curl &lt;span class="nt"&gt;-L&lt;/span&gt; &lt;span class="nt"&gt;--max-redirs&lt;/span&gt; 5 &lt;span class="nt"&gt;--max-time&lt;/span&gt; 120 &lt;span class="nt"&gt;--connect-timeout&lt;/span&gt; 10 &lt;span class="nt"&gt;-o&lt;/span&gt; output.jpg &lt;span class="s2"&gt;"&lt;/span&gt;&lt;span class="nv"&gt;$URL&lt;/span&gt;&lt;span class="s2"&gt;"&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Boring, predictable, and it never hangs half-open.&lt;/p&gt;

&lt;h3&gt;
  
  
  3. FFmpeg can silently corrupt output
&lt;/h3&gt;

&lt;p&gt;My first video pipeline used &lt;code&gt;zoompan&lt;/code&gt; + &lt;code&gt;xfade&lt;/code&gt; filters together. On a 2-core box with 1.6 GB RAM, long runs produced truncated, unplayable MP4s.&lt;/p&gt;

&lt;p&gt;The reliable version uses the &lt;strong&gt;concat demuxer&lt;/strong&gt; and a single simple filter for scaling/padding:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;ffmpeg &lt;span class="nt"&gt;-f&lt;/span&gt; concat &lt;span class="nt"&gt;-safe&lt;/span&gt; 0 &lt;span class="nt"&gt;-i&lt;/span&gt; list.txt &lt;span class="se"&gt;\&lt;/span&gt;
  &lt;span class="nt"&gt;-vf&lt;/span&gt; &lt;span class="s2"&gt;"scale=1080:1920:force_original_aspect_ratio=decrease,&lt;/span&gt;&lt;span class="se"&gt;\&lt;/span&gt;&lt;span class="s2"&gt;
pad=1080:1920:(ow-iw)/2:(oh-ih)/2,format=yuv420p"&lt;/span&gt; &lt;span class="se"&gt;\&lt;/span&gt;
  &lt;span class="nt"&gt;-c&lt;/span&gt;:v libx264 out.mp4
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;No fancy transitions, but the file always plays. Lesson: on constrained hardware, &lt;strong&gt;finish reliably beats fancy&lt;/strong&gt;.&lt;/p&gt;

&lt;h3&gt;
  
  
  4. Memory discipline
&lt;/h3&gt;

&lt;p&gt;1.6 GB RAM means nothing can be buffered in memory. Generated images go &lt;strong&gt;straight to disk&lt;/strong&gt;, videos stream through FFmpeg, and the queue keeps at most one job in flight.&lt;/p&gt;

&lt;h2&gt;
  
  
  Try it / run it yourself
&lt;/h2&gt;

&lt;p&gt;🔗 &lt;strong&gt;Live demo&lt;/strong&gt;: &lt;a href="http://47.80.8.174" rel="noopener noreferrer"&gt;http://47.80.8.174&lt;/a&gt;&lt;br&gt;
💻 &lt;strong&gt;Source&lt;/strong&gt;: &lt;a href="https://github.com/kaketiti/magickit" rel="noopener noreferrer"&gt;https://github.com/kaketiti/magickit&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Self-hosting takes about a minute:&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/kaketiti/magickit.git
&lt;span class="nb"&gt;cd &lt;/span&gt;magickit
npm &lt;span class="nb"&gt;install
&lt;/span&gt;npm start
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;It's MIT licensed — fork it, remix it, deploy your own.&lt;/p&gt;

&lt;h2&gt;
  
  
  Honest limitations
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;The free image API gets slow during peak hours — that's what the retry queue is for&lt;/li&gt;
&lt;li&gt;Text generation has daily free-tier limits, and the UI tells you plainly when they're exhausted&lt;/li&gt;
&lt;li&gt;Video synthesis takes a few minutes for longer clips&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  What's next
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Pluggable image backends (so when one free provider is throttled, another takes over)&lt;/li&gt;
&lt;li&gt;Optional self-supplied API keys for power users&lt;/li&gt;
&lt;li&gt;More aspect-ratio presets and a simple gallery&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Feedback is genuinely welcome — what would you add first? Drop a comment or open an issue on GitHub.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>opensource</category>
      <category>webdev</category>
      <category>showdev</category>
    </item>
  </channel>
</rss>
