Developer Recipes
Short workflows for common developer tasks. Each recipe links the relevant tools together so you can move from one step to the next without guessing where to start.
Debug an API response
Inspect a raw API payload, diff it against an expected response, and format stack traces when the failure is in the error body.
Safely share production logs
Parse, filter, and redact logs locally before you paste them into tickets, chat, or incident notes.
Turn a spreadsheet into SQL
Export a sheet as CSV, check the rows, and turn them into INSERT statements.
Validate and document a JWT
Decode a JWT, inspect claims and expiry, and verify HS256 signatures when you have the shared secret.
Compare environment configs (dev vs prod)
Compare two .env files by key, spot duplicates, and convert the cleaned set into structured config.
Turn a DDL script into a database diagram
Paste CREATE TABLE statements and get a scannable ER diagram.
Generate test fixtures from a schema
Infer a schema from sample JSON, then generate deterministic mock records in the format you need.