<?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: Jorresss</title>
    <description>The latest articles on DEV Community by Jorresss (@jorresss).</description>
    <link>https://dev.to/jorresss</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%2F3983185%2F1c025140-574b-4808-a7dd-aff28be2e1ca.jpg</url>
      <title>DEV Community: Jorresss</title>
      <link>https://dev.to/jorresss</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/jorresss"/>
    <language>en</language>
    <item>
      <title>I Built 135 Free Browser Tools — No Ads, No Sign-Up, No Tracking</title>
      <dc:creator>Jorresss</dc:creator>
      <pubDate>Sat, 13 Jun 2026 21:06:44 +0000</pubDate>
      <link>https://dev.to/jorresss/i-built-135-free-browser-tools-no-ads-no-sign-up-no-tracking-32d</link>
      <guid>https://dev.to/jorresss/i-built-135-free-browser-tools-no-ads-no-sign-up-no-tracking-32d</guid>
      <description>&lt;p&gt;I'm not a startup. I don't have a team. I'm just a developer who got tired of landing on tool websites that shove ads in your face, demand an account before you can do anything, or worse — quietly harvest your data in the background.&lt;/p&gt;

&lt;p&gt;So I built my own: &lt;strong&gt;&lt;a href="https://jorresapps.onrender.com/" rel="noopener noreferrer"&gt;Jorres Apps&lt;/a&gt;&lt;/strong&gt; — a growing collection of 135 free browser-based tools and mini-games. Open one, use it, close it. That's it.&lt;/p&gt;




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

&lt;p&gt;The tools span 10 categories:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Developer tools&lt;/strong&gt;&lt;br&gt;
JSON formatter, Regex tester, JWT generator, Diff checker, CIDR calculator, SQL formatter, CSS formatter, Base64 tool, UUID generator, Cron builder, HTML previewer, Code beautifier, Chmod calculator, and more.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;PDF &amp;amp; image tools&lt;/strong&gt;&lt;br&gt;
PDF merger, PDF splitter, PDF compressor, PDF to image, PDF to Word, Image cropper, Image filters, Watermark tool, EXIF viewer, SVG to PNG, Favicon generator, Meme generator.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Finance &amp;amp; calculators&lt;/strong&gt;&lt;br&gt;
Loan calculator, Compound interest, ROI calculator, Break-even calculator, VAT calculator, Salary calculator, Inflation calculator, Expense splitter, Depreciation calculator, Tip calculator.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Productivity&lt;/strong&gt;&lt;br&gt;
Kanban board, Pomodoro timer, Habit tracker, Todo list, Journal, Sticky notes, Mind map, OKR tracker, Gantt chart, Meeting timer, Budget tracker.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Games&lt;/strong&gt;&lt;br&gt;
2048, Tetris, Snake, Minesweeper, Sudoku, Chess, Battleship, Flappy Bird, Wordle, Hangman, Connect Four, Simon Says, Memory card game, Tic-tac-toe, and more.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;And more:&lt;/strong&gt; Color tools, Text utilities, Health calculators, Network tools, Data visualizers, Business templates...&lt;/p&gt;




&lt;h2&gt;
  
  
  The rules I set for myself
&lt;/h2&gt;

&lt;p&gt;When I started building this, I made three non-negotiable rules:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;1. No ads — ever.&lt;/strong&gt;&lt;br&gt;
I'd rather accept donations via QR code than clutter the UI with banners. Tools should feel clean.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2. No accounts required.&lt;/strong&gt;&lt;br&gt;
You shouldn't need to sign up to convert a PDF or generate a UUID. That's friction nobody asked for.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;3. No tracking.&lt;/strong&gt;&lt;br&gt;
Apps that save state (Notepad, Kanban, Journal) use &lt;code&gt;localStorage&lt;/code&gt; only. Your data never leaves your browser. No cookies, no analytics, no server-side storage.&lt;/p&gt;




&lt;h2&gt;
  
  
  How it's built
&lt;/h2&gt;

&lt;p&gt;The stack is intentionally simple:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Backend:&lt;/strong&gt; Python + Flask, hosted on Render&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Frontend:&lt;/strong&gt; Vanilla JS + a bit of React where complexity demands it&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Storage:&lt;/strong&gt; &lt;code&gt;localStorage&lt;/code&gt; only — zero database for user data&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Deployment:&lt;/strong&gt; Render free tier (yes, with the cold start problem — I'm solving that separately)
One of the interesting challenges was building 135 tools without them feeling like 135 disconnected pages. Everything lives under one roof with a unified search (&lt;code&gt;Ctrl+K&lt;/code&gt;), category navigation, and a favorites system so you can pin the tools you actually reach for daily.&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  The cold start problem
&lt;/h2&gt;

&lt;p&gt;Render's free tier spins down after 15 minutes of inactivity. So I used Uptimerobot that pings my sitemap URLs on a loop every 10 minutes to keep the server warm. Unglamorous, but it works.&lt;/p&gt;




&lt;h2&gt;
  
  
  Why I'm sharing this
&lt;/h2&gt;

&lt;p&gt;A few reasons:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;I genuinely use these tools myself every week.&lt;/li&gt;
&lt;li&gt;I want feedback — what's broken, what's missing, what could be better&lt;/li&gt;
&lt;li&gt;If even one of these tools saves you 5 minutes of Googling, it's worth it.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The project is live at &lt;strong&gt;&lt;a href="https://jorresapps.onrender.com/" rel="noopener noreferrer"&gt;jorresapps.onrender.com&lt;/a&gt;&lt;/strong&gt;. No install, no account, just open and use.&lt;/p&gt;

&lt;p&gt;If it's useful to you, there's a donation QR code on the homepage. Every contribution keeps the project running and motivates me to keep adding tools.&lt;/p&gt;




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

&lt;ul&gt;
&lt;li&gt;Custom domain (getting off &lt;code&gt;.onrender.com&lt;/code&gt;)&lt;/li&gt;
&lt;li&gt;Dark mode refinements&lt;/li&gt;
&lt;li&gt;More developer tools (HTTP client improvements, YAML editor, more converters)&lt;/li&gt;
&lt;li&gt;PWA support so tools work offline
Drop a comment if there's a tool you wish existed — I'm actively adding new ones.&lt;/li&gt;
&lt;/ul&gt;




&lt;p&gt;&lt;em&gt;Built by one developer, for developers (and everyone else). Free forever.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Tags:&lt;/strong&gt; &lt;code&gt;#webdev&lt;/code&gt; &lt;code&gt;#javascript&lt;/code&gt; &lt;code&gt;#python&lt;/code&gt; &lt;code&gt;#tools&lt;/code&gt; &lt;code&gt;#opensource&lt;/code&gt;&lt;/p&gt;

</description>
      <category>productivity</category>
      <category>showdev</category>
      <category>sideprojects</category>
      <category>tooling</category>
    </item>
  </channel>
</rss>
