惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Google DeepMind News
Google DeepMind News
L
LangChain Blog
H
Help Net Security
博客园_首页
T
Tailwind CSS Blog
Microsoft Security Blog
Microsoft Security Blog
T
The Blog of Author Tim Ferriss
雷峰网
雷峰网
Recent Announcements
Recent Announcements
D
DataBreaches.Net
U
Unit 42
Vercel News
Vercel News
I
InfoQ
Martin Fowler
Martin Fowler
Microsoft Azure Blog
Microsoft Azure Blog
Apple Machine Learning Research
Apple Machine Learning Research
S
SegmentFault 最新的问题
Jina AI
Jina AI
博客园 - 叶小钗
博客园 - 【当耐特】
罗磊的独立博客
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
月光博客
月光博客
Last Week in AI
Last Week in AI

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
I Built 135 Free Browser Tools — No Ads, No Sign-Up, No T...
Jorresss · 2026-06-14 · via DEV Community

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.

So I built my own: Jorres Apps — a growing collection of 135 free browser-based tools and mini-games. Open one, use it, close it. That's it.


What's inside

The tools span 10 categories:

Developer tools
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.

PDF & image tools
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.

Finance & calculators
Loan calculator, Compound interest, ROI calculator, Break-even calculator, VAT calculator, Salary calculator, Inflation calculator, Expense splitter, Depreciation calculator, Tip calculator.

Productivity
Kanban board, Pomodoro timer, Habit tracker, Todo list, Journal, Sticky notes, Mind map, OKR tracker, Gantt chart, Meeting timer, Budget tracker.

Games
2048, Tetris, Snake, Minesweeper, Sudoku, Chess, Battleship, Flappy Bird, Wordle, Hangman, Connect Four, Simon Says, Memory card game, Tic-tac-toe, and more.

And more: Color tools, Text utilities, Health calculators, Network tools, Data visualizers, Business templates...


The rules I set for myself

When I started building this, I made three non-negotiable rules:

1. No ads — ever.
I'd rather accept donations via QR code than clutter the UI with banners. Tools should feel clean.

2. No accounts required.
You shouldn't need to sign up to convert a PDF or generate a UUID. That's friction nobody asked for.

3. No tracking.
Apps that save state (Notepad, Kanban, Journal) use localStorage only. Your data never leaves your browser. No cookies, no analytics, no server-side storage.


How it's built

The stack is intentionally simple:

  • Backend: Python + Flask, hosted on Render
  • Frontend: Vanilla JS + a bit of React where complexity demands it
  • Storage: localStorage only — zero database for user data
  • Deployment: 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 (Ctrl+K), category navigation, and a favorites system so you can pin the tools you actually reach for daily.

The cold start problem

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.


Why I'm sharing this

A few reasons:

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

The project is live at jorresapps.onrender.com. No install, no account, just open and use.

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.


What's next

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

Built by one developer, for developers (and everyone else). Free forever.

Tags: #webdev #javascript #python #tools #opensource