Developer tools
Small utilities for builders: hashes, JWTs, regular expressions, timestamps, slugs, QR codes and schema generators. No API calls and no rate limits here.
Developer tools
This is the workbench: a regex tester with live match highlighting, a JWT decoder that splits header, payload and signature, hash generation (MD5, SHA-1, SHA-256, SHA-512), QR code generation, CSV-to-JSON and CSV-to-HTML-table conversion, a slug generator, URL and email extractors, a UTM link builder, CSS and SQL minifiers, a color converter between HEX, RGB and HSL, and more.
The difference from most developer-tool sites is architectural: there is no backend. Every one of these tools is a pure function running in your browser tab. That means the JWT you decode — which often carries user IDs, emails and roles — never travels anywhere. The same goes for connection strings in an env file you convert, or the production CSV you turn into JSON. For anything covered by an NDA or a privacy policy, that is the whole ballgame.
No backend also means no rate limits, no login walls and no latency: tools respond as fast as your machine can compute, work offline once loaded, and never go down because someone's API did.