<?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: cancerdude</title>
    <description>The latest articles on DEV Community by cancerdude (@cancerdude).</description>
    <link>https://dev.to/cancerdude</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%2F4133112%2F2dfd7353-5990-4e61-b539-2b9aa49b5cdd.png</url>
      <title>DEV Community: cancerdude</title>
      <link>https://dev.to/cancerdude</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/cancerdude"/>
    <language>en</language>
    <item>
      <title>Why I stopped using random online tools (and built my own 100% local alternative)</title>
      <dc:creator>cancerdude</dc:creator>
      <pubDate>Sat, 19 Sep 2026 15:57:10 +0000</pubDate>
      <link>https://dev.to/cancerdude/why-i-stopped-using-random-online-tools-and-built-my-own-100-local-alternative-4gpk</link>
      <guid>https://dev.to/cancerdude/why-i-stopped-using-random-online-tools-and-built-my-own-100-local-alternative-4gpk</guid>
      <description>&lt;p&gt;As developers, we constantly rely on quick online utilities. Need to format a messy JSON payload? Decode a JWT token? Compare two code snippets? Generate a UUID? We just Google it, click the first result, and paste our data in.&lt;/p&gt;

&lt;p&gt;But recently, I had a terrifying thought while pasting a production API key into a random JSON formatter: &lt;strong&gt;"Wait, is this site logging my data?"&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The truth is, many free online tools process your data on their backend servers. You have absolutely no guarantee that your proprietary code, API keys, or sensitive customer data isn't being saved, logged, or worse, leaked.&lt;/p&gt;

&lt;h3&gt;
  
  
  The Solution: Building a 100% Local Toolset
&lt;/h3&gt;

&lt;p&gt;I decided to stop trusting random servers and build &lt;a href="https://fastutilz.pages.dev" rel="noopener noreferrer"&gt;FastUtilz&lt;/a&gt; — a collection of developer and everyday utilities where &lt;strong&gt;absolutely zero data ever leaves your device.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;By leveraging modern Web APIs, JavaScript, and WebAssembly, I was able to build tools that do all the heavy processing directly in your browser.&lt;/p&gt;

&lt;h3&gt;
  
  
  The Tech Stack
&lt;/h3&gt;

&lt;p&gt;I wanted this site to be blazing fast, so I chose a modern stack:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  &lt;a href="https://astro.build/" rel="noopener noreferrer"&gt;Astro&lt;/a&gt; - To ship zero JavaScript for the static pages and ensure instant load times. Components only hydrate when absolutely necessary.&lt;/li&gt;
&lt;li&gt;  Vanilla CSS - No heavy frameworks, just a clean, developer-focused true dark mode (&lt;code&gt;#0b0e14&lt;/code&gt;).&lt;/li&gt;
&lt;li&gt;  Cloudflare Pages - For lightning-fast global edge hosting.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  The Tools (So far)
&lt;/h3&gt;

&lt;p&gt;I've built 14 tools so far, completely free and instantly usable. Here are some of the most popular ones:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;👨‍💻 Developer Tools:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  &lt;a href="https://fastutilz.pages.dev/developer/jwt-decoder/" rel="noopener noreferrer"&gt;JWT Decoder&lt;/a&gt; - Safely inspect your tokens.&lt;/li&gt;
&lt;li&gt;  &lt;a href="https://fastutilz.pages.dev/json/formatter/" rel="noopener noreferrer"&gt;JSON Formatter &amp;amp; Beautifier&lt;/a&gt; - Format massive payloads instantly.&lt;/li&gt;
&lt;li&gt;  &lt;a href="https://fastutilz.pages.dev/text/diff-checker/" rel="noopener noreferrer"&gt;Text Diff Checker&lt;/a&gt; - Find differences in code or text files side-by-side.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;🖼️ Image &amp;amp; Media Tools:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  &lt;a href="https://fastutilz.pages.dev/image/compressor/" rel="noopener noreferrer"&gt;Image Compressor&lt;/a&gt; - Shrink file sizes entirely in-browser.&lt;/li&gt;
&lt;li&gt;  &lt;a href="https://fastutilz.pages.dev/image/base64/" rel="noopener noreferrer"&gt;Base64 Encoder / Decoder&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;  &lt;a href="https://fastutilz.pages.dev/image/qr-generator/" rel="noopener noreferrer"&gt;QR Code Generator&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;📝 Formatting &amp;amp; CSS:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  &lt;a href="https://fastutilz.pages.dev/converter/markdown-to-pdf/" rel="noopener noreferrer"&gt;Markdown to PDF Converter&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;  &lt;a href="https://fastutilz.pages.dev/css/shadow-generator/" rel="noopener noreferrer"&gt;CSS Box Shadow Generator&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;  &lt;a href="https://fastutilz.pages.dev/text/word-counter/" rel="noopener noreferrer"&gt;Word &amp;amp; Character Counter&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Try it out!
&lt;/h3&gt;

&lt;p&gt;You can check out the full collection here: &lt;a href="https://fastutilz.pages.dev" rel="noopener noreferrer"&gt;FastUtilz Homepage&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I'm actively maintaining this and looking to add more tools that developers actually need. What is the one utility you find yourself constantly Googling for? Let me know in the comments and I'll add it to the platform!&lt;/p&gt;

</description>
      <category>productivity</category>
      <category>javascript</category>
      <category>opensource</category>
      <category>lowcode</category>
    </item>
  </channel>
</rss>
