The Core Problem With “Free” Web Utilities
I started building e204 because I kept needing a quick clipboard between my browser tabs, an encrypted note safe for API keys, and a Wi-Fi QR generator, and got thoroughly tired of navigating bloated SaaS products. Almost every “free” online utility tool today follows the same playbook:
- Forced Sign-ups: Requiring an email address and a password before you can copy a block of text or generate a single QR code.
- Heavy Server Relays: Sending your plain text, secrets, or uploaded documents to distant cloud servers for transformations that your modern browser could calculate in 2 milliseconds.
- Telemetry Tracking: Injecting tracking scripts, marketing pixels, and background listeners that monitor keystrokes and session behaviors.
What started as a single experimental tool grew into a curated suite of six applications, all adhering to one non-negotiable architectural rule: If a tool does not mathematically require a server to perform its task, it must never touch a server.
The Golden Rule of Client-Side Engineering
A clipboard does not need a database. A QR code generator does not need a backend API. A password safe does not need an external server when your browser already has the standardized Web Crypto API built directly into its core engine.
How These Tools Are Actually Built
There is no bloated JavaScript framework doing heavy lifting behind the scenes, and no analytics SDK quietly reporting user interactions. Every tool is intentionally small:
- Native Web APIs: Cryptographic functions rely on
window.crypto.subtle— the exact same audited cryptographic implementation that Google Chrome, Mozilla Firefox, and Apple Safari ship natively. This eliminates third-party library vulnerabilities. - Isolated Browser Memory: State is held in volatile memory or browser
localStoragethat never transmits beyond the local origin. - Vector Mathematical Rendering: Utilities like our QR Code Generator compute the matrix algorithms client-side and draw directly to pure SVG vector format.
Honest Engineering Trade-offs
Choosing a client-side architecture involves real, practical trade-offs that we believe in being completely transparent about:
- No Automatic Cross-Device Sync: Because there is no central database or account system holding your clipboard or notes, data saved in your laptop’s browser will not magically appear on your smartphone unless you explicitly export it.
- No Password Reset: In our Vault tool, because we never hold your master password or encryption key, if you forget your master password, your encrypted data cannot be recovered by anyone — including us.
- Single-Session Ephemeral Chat: In Burn Chat, closing your browser tab permanently destroys the active communication buffer without lingering archives.
Curated Project Lineup (v2)
As our platform evolved, we retired generic commodity utilities (such as basic daily planners, quick notes, and plain password generators) in favor of high-value tools with specialized algorithmic value:
- Clip Board — 4-slot scratchpad with PDF regex cleanup and case conversion.
- Vault — AES-256-GCM zero-knowledge cryptographic safe with 100,000 PBKDF2 rounds.
- Burn Chat — Peer-to-peer ephemeral messaging that destroys all traces upon exit.
- QR Code Generator — Lossless vector QR codes with Wi-Fi and vCard presets.
- Holiday Planner — Algorithmic calendar engine finding 3:1+ bridge-day vacation leverage.
- FixLog — Hardware-verified, step-by-step troubleshooting database without 2,000-word intro padding.
Who Is Behind It
Built and maintained by Vedant Pande, an independent software developer focused on web standards, cryptography, and client-side computing. e204.store is an ongoing labor of love dedicated to proving that modern browsers are fully capable application runtimes in their own right.