Recipes

Recipes

Curated multi-tool workflows for common developer tasks. Follow the steps in order — each one links directly to the right tool with the right settings.

12 recipes

Debug a JWT Token

SecurityAuthAPI
3 steps

Decode a JWT, inspect its claims, and verify the signature — the fastest path from an opaque bearer token to understanding what it grants.

1Decode
2Verify
3Claims ref

Decode a Layered / Opaque Token

SecurityDebugAPI
4 steps

Some tokens are Base64-encoded JSON, or a JWT wrapped in another encoding. Strip the layers one at a time to reach the payload.

1URL Decode
2Base64 Decode
3JWT Decode
4JSON Format

Compare Two API Responses

APIDebug
3 steps

Make two requests, format the JSON, then diff them side-by-side to spot schema changes, missing fields, or unexpected values.

1REST Client
2Format JSON
3Diff

Set Up CORS Correctly

SecurityNetworkDevOps
3 steps

Build the right Access-Control-* headers for your use-case, then drop the generated snippet into your server config.

1CORS Builder
2Nginx / .htaccess
3HTTP Status

Audit Web Page Security

SecurityNetwork
3 steps

Check which security headers your server returns, build a Content Security Policy from scratch, and verify your CORS setup — all without leaving the app.

1Security Headers
2CSP Builder
3CORS Builder

Plan and Document a Release

GitDevOps
4 steps

Generate a changelog from your commits, bump the semver, write a conventional commit message — everything needed to ship a clean release.

1Changelog
2Semver Bump
3Commit Message
4Validate Commit

Build a Color Design System

CSSDesign
4 steps

Pick a palette, check accessibility contrast ratios, then export as CSS custom properties ready to drop into any project.

1Color Picker
2Palette
3WCAG Contrast
4CSS Tokens

Generate and Hash a Secret

Security
3 steps

Create a cryptographically strong secret key, hash it for safe storage, and produce a Base64 representation for use in HTTP headers.

1Password Generator
2Hash Generator
3Base64 Encode

Decode a Double-Encoded Value

DebugAPI
3 steps

API query params, OAuth state values, and webhook payloads are often URL-encoded AND Base64-encoded. Strip both layers to see the raw data.

1URL Decode
2Base64 Decode
3JSON Format

Generate a Test Data Pipeline

DataAPI
3 steps

Create realistic fake records, validate them against a schema, then export as CSV or JSON for use in tests, demos, or seed scripts.

1Fake Data
2Validate Schema
3CSV Export

Debug a Network / DNS Issue

NetworkDebugDevOps
4 steps

Step through the network stack: check DNS propagation, verify the TLS certificate, inspect security headers, and look up HTTP status codes.

1DNS Propagation
2SSL Checker
3Security Headers
4HTTP Status ref

Set Up and Document a Cron Job

DevOpsGit
3 steps

Build the cron expression visually, verify the schedule with the calendar heat-map, then write a commit message documenting the change.

1Cron Builder
2Validate Schedule
3Commit Message