Categories
The taxonomy the catalog grows into. Categories with no tools yet are listed deliberately — they are the roadmap, not an oversight.
JSON
8 toolsJSON is the default wire format for almost every API, config file and log pipeline, which means engineers spend a surprising amount of time reading it. These tools make that faster: pretty-print, validate with precise error positions, minify for transport, diff two payloads and convert to and from YAML.
API
4 toolsEverything you reach for while debugging an HTTP integration: decode a JWT to see what a provider actually issued, look up what a status code means in practice, check which headers are safe to rely on, and turn a request into a reproducible cURL command.
Encoding
6 toolsEncoding bugs are quiet bugs — a stray percent sign or an unescaped angle bracket breaks things far from where it was introduced. These converters run in your browser so you can safely round-trip values and see exactly what changed.
Developer
7 toolsThe general-purpose bench tools: generate identifiers and strong passwords, hash a value, translate an epoch timestamp into something human, and build a regular expression with live feedback on what it matches.
DevOps
2 toolsOperational configuration is easy to get almost right, which is the worst kind of right. These tools let you build a cron schedule from a form and read an existing expression back in plain English, including the next times it fires.
Database
3 toolsLong SQL is unreviewable SQL. Format a query into a consistent, diff-friendly shape, strip it back down for embedding in code, or turn INSERT statements into JSON rows for fixtures and tests.
Networking
2 toolsSubnet planning is arithmetic nobody should do by hand twice. Expand a CIDR block into its usable range, split a network into evenly sized subnets, and check whether two blocks overlap before you apply the change.
Cloud
In developmentGenerators and validators for the configuration that surrounds a deployment — Dockerfiles, Compose files, Kubernetes manifests and resource sizing.
AWS
In developmentPer-service cost calculators and, eventually, an interactive architecture estimator: assemble a load balancer, compute, database, cache and queue, then see what the month looks like before you build it.
Security
In developmentInspection tools for the security-adjacent artefacts engineers handle daily: certificates, keys, tokens and headers. Anything that touches a secret runs locally, in your browser, or not at all.
Calculators
In developmentCapacity planning, error budgets, throughput, data-size conversions and the other back-of-the-envelope numbers that decide architecture arguments.