<?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: Sophia Anjum</title>
    <description>The latest articles on DEV Community by Sophia Anjum (@sophia_anjum_0509b2bb7049).</description>
    <link>https://dev.to/sophia_anjum_0509b2bb7049</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%2F4025196%2Fb6be3e69-a50c-4fed-842b-91822d4c7879.png</url>
      <title>DEV Community: Sophia Anjum</title>
      <link>https://dev.to/sophia_anjum_0509b2bb7049</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/sophia_anjum_0509b2bb7049"/>
    <language>en</language>
    <item>
      <title># I built 62 free browser tools in one website — no uploads, no sign-ups, works offline</title>
      <dc:creator>Sophia Anjum</dc:creator>
      <pubDate>Sat, 11 Jul 2026 13:21:49 +0000</pubDate>
      <link>https://dev.to/sophia_anjum_0509b2bb7049/-i-built-62-free-browser-tools-in-one-website-no-uploads-no-sign-ups-works-offline-3cia</link>
      <guid>https://dev.to/sophia_anjum_0509b2bb7049/-i-built-62-free-browser-tools-in-one-website-no-uploads-no-sign-ups-works-offline-3cia</guid>
      <description>&lt;p&gt;I got tired of a routine most of us know too well: you need to merge two PDFs, or shrink an image, or make a QR code — so you Google it, land on some ad-covered site, and it asks you to upload your file to their server and maybe "create a free account" before giving you the result.&lt;/p&gt;

&lt;p&gt;For a 10-second task. And now your file lives on someone else's computer.&lt;/p&gt;

&lt;p&gt;So I built the site I wished existed: Tools Guru — 62 free tools in one place, where everything runs locally in your browser. Nothing is ever uploaded. No account. No limits. Install it as an app and it works with your WiFi turned off.&lt;/p&gt;

&lt;p&gt;What's inside&lt;/p&gt;

&lt;p&gt;The tools cover pretty much everything I kept needing:&lt;/p&gt;

&lt;p&gt;📄 PDF tools — merge PDFs, split by page range, images → PDF, text → PDF. Your documents never leave your device, which honestly is the whole point for anything sensitive — contracts, IDs, invoices.&lt;/p&gt;

&lt;p&gt;🖼️ Image tools — compressor, resizer, image → Base64, color picker, CSS gradient generator... and the two I'm most proud of, which I'll get to in a second.&lt;/p&gt;

&lt;p&gt;📝 A full resume maker — 20 recruiter-style templates (sidebar, timeline, two-column, with-photo layouts), live preview, pixel-perfect PDF and Word export. The kind of thing other sites paywall behind $9.99/month.&lt;/p&gt;

&lt;p&gt;🧮 Calculators &amp;amp; converters — EMI, loan, GST, SIP, BMI, age, date difference, unit converter, temperature, binary/hex, Roman numerals, Morse code with actual sound playback...&lt;/p&gt;

&lt;p&gt;⚙️ Developer utilities — JSON formatter, regex tester with live highlighting, hash generator, Base64/URL/HTML encoding, timestamp converter, CSV ⇄ JSON, markdown preview, a live HTML/CSS/JS playground.&lt;/p&gt;

&lt;p&gt;🎲 Generators — passwords with strength meter, QR codes, barcodes, UUIDs, color palettes, random name picker for giveaways.&lt;/p&gt;

&lt;p&gt;Plus everyday stuff: text-to-speech with downloadable audio, stopwatch, event countdowns, a calorie finder, live weather.&lt;/p&gt;

&lt;p&gt;The two tools that were genuinely hard to build&lt;/p&gt;

&lt;p&gt;Most of the 62 are honest, simple utilities. Two of them nearly broke me:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;The AI background remover. Every background remover online uploads your photo to a server. Mine runs the AI entirely in your browser — two different segmentation models (ISNet and RMBG-1.4, ~280 MB of neural network weights combined) executed locally via ONNX Runtime and transformers.js. Your photo never leaves your machine, and after the first visit it works completely offline.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Getting there meant solving problems like: pre-downloading the models silently when you first open the site (so the tool is instant when you need it), writing files into the exact Cache Storage buckets the AI libraries look up, working around Chrome's Background Fetch API silently stalling on CDN redirects, and discovering that my own service worker was wiping the downloaded models on every site update. If people are interested, I'll write a separate deep-dive post on the engineering.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;The AI image generator — type a description, get an image, free, no account. Same philosophy: as little server as possible, no data hoarding.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Why "nothing uploaded" is the hill I'll die on&lt;/p&gt;

&lt;p&gt;Three reasons this became the core rule for all 62 tools:&lt;/p&gt;

&lt;p&gt;Privacy that's structural, not promised. I don't have to convince you I delete your files — I never receive them. Open DevTools, watch the network tab, verify it yourself.&lt;br&gt;
Speed. No upload → process → download round-trip. A 20 MB PDF merges in about a second because it never travels anywhere.&lt;br&gt;
It works offline. The site is a PWA. On a flight, in a dead zone, during an internet outage — every tool keeps working.&lt;/p&gt;

&lt;p&gt;I need your feedback (the real reason for this post)&lt;/p&gt;

&lt;p&gt;The site is live and free: toolsguru.shop&lt;/p&gt;

&lt;p&gt;I built this solo, and 62 tools means 62 places I might have gotten something wrong. If you have two minutes, I'd genuinely love to hear:&lt;/p&gt;

&lt;p&gt;Which tool did you try first, and did it do what you expected?&lt;br&gt;
What's broken or awkward? Especially on mobile — be brutal, it's the only useful kind of feedback.&lt;br&gt;
What's missing? If there's a tool you keep re-Googling that isn't here, tell me and there's a good chance I'll build it.&lt;br&gt;
For the curious: throw a difficult photo at the background remover — hair, fur, glass — and tell me which of the two engines handled it better.&lt;/p&gt;

&lt;p&gt;I'll be in the comments. Every suggestion gets read, and honestly the roadmap for the next 10 tools will probably come from this thread.&lt;/p&gt;

&lt;p&gt;Stack: vanilla JS, transformers.js + ONNX Runtime WASM for the AI tools, Service Worker + Cache Storage for offline, deployed on Vercel. No frameworks, no backend, no database — the entire product is static files and your browser.&lt;/p&gt;

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