Command Palette

Search for a command to run...

Developer Guides

Practical, original guides for the real-world problems behind the tools: debugging payloads, inspecting tokens, handling Base64 safely, choosing UUIDs, and reading timestamps without guesswork.

Guide 016 min read
Data & Formats
A practical guide to formatting, validating, and sharing JSON safely while debugging APIs, config files, and webhooks.

Learn a reliable workflow for inspecting messy JSON, fixing syntax problems, and keeping payloads safe while you debug.

Read article
Guide 025 min read
API & Auth
Understand what a JWT decoder can and cannot tell you, and avoid treating decoded claims as proof of trust.

Decode tokens for debugging, but verify signatures and claims in your application before you trust them.

Read article
Guide 035 min read
Data & Formats
A field guide to using Base64 for transport, embedding, and debugging without confusing encoding for encryption.

Base64 is useful for transport and embedding, but it makes payloads larger and does not protect sensitive data.

Read article
Guide 045 min read
Validation & Testing
Use UUIDs well in distributed systems, test fixtures, and debugging workflows without confusing identifiers for secrets.

UUIDs are great identifiers for distributed systems, but they should be validated carefully and never treated as authentication secrets.

Read article
Guide 054 min read
Time & Dates
Convert epoch values confidently and avoid mixing seconds, milliseconds, and time zone assumptions.

Most timestamp confusion comes from unit mismatches and time zone assumptions. Converting them carefully saves time during incidents.

Read article
Guide 066 min read
Data & Formats
Choose the right format for configuration work by comparing readability, tooling, and failure modes.

YAML can be friendlier to read, but JSON is often stricter and easier to validate. Pick based on your workflow, not habit.

Read article
Guide 075 min read
Content & Markup
Preview HTML without turning every quick inspection into a browser-security gamble.

HTML preview tools are helpful for debugging markup, but you should still separate previewing from deploying or trusting unknown content.

Read article
Guide 085 min read
Content & Markup
Avoid formatting drift when moving content from Markdown into rendered HTML.

Markdown feels simple until tables, raw HTML, and line-break behavior make the output differ from what you expected.

Read article
Guide 096 min read
Validation & Testing
Build a repeatable regex workflow that catches false positives before the pattern ships.

Regex problems usually come from overmatching, edge cases, and portability assumptions, not just syntax errors.

Read article
Guide 105 min read
API & Auth
Understand what is actually inside long URLs before changing application behavior.

Query strings are easy to misread once encoding, repeated keys, and nested values enter the picture.

Read article
Guide 115 min read
Time & Dates
Convert human-readable dates into epoch values without creating off-by-hours or off-by-days problems.

Timestamp generation gets risky when time zones, daylight saving changes, and input formats are left implicit.

Read article
Guide 125 min read
Time & Dates
Keep timelines accurate when logs, dashboards, and humans are all speaking different time zones.

Timezone problems waste time because the data is often correct while the interpretation is not.

Read article
Guide 135 min read
Security & Workflows
Use password generators more effectively by understanding where length matters more than decorative complexity.

Complexity rules can help, but length and uniqueness are usually the bigger wins in real account security.

Read article
Guide 145 min read
Content & Markup
Know when entity encoding solves a display problem and when it just hides the real bug.

Entity encoding is useful for displaying literal markup, but it should not be used as a vague substitute for real escaping or sanitization rules.

Read article
Guide 156 min read
Data & Formats
Turn messy spreadsheet exports into cleaner JSON without carrying hidden data-quality issues into your app.

CSV-to-JSON conversion is easy until quoting, empty columns, and inconsistent headers start affecting the output shape.

Read article
Guide 165 min read
API & Auth
Share payload examples with teammates without leaking secrets or creating debugging confusion.

A useful payload sample is readable, validated, and redacted. Anything less creates risk or wastes time.

Read article
Guide 177 min read
API & Auth
Inspect failing webhooks carefully without breaking the original payload shape or stripping away the clues you need to debug delivery issues.

Webhook debugging gets easier when you preserve the original payload, validate before editing, and separate redaction from root-cause analysis.

Read article
Guide 186 min read
Security & Workflows
Share logs with teammates without leaking tokens, personal data, or the surrounding context needed to understand the issue.

Good log redaction keeps the sequence, structure, and failure clues while removing the values that should never leave the original system.

Read article
Guide 196 min read
API & Auth
Untangle redirect bugs caused by values that were URL-encoded once, twice, or at the wrong point in the request chain.

Most redirect URL bugs are not mysterious. They come from encoding the right value at the wrong layer or decoding it too early.

Read article
Guide 206 min read
API & Auth
Understand expired-token incidents faster by comparing JWT claims, server clocks, and user-reported times in one consistent timeline.

JWT expiry bugs often come from clock drift, timezone confusion, or reading claims without translating them into the same reference time.

Read article
Guide 217 min read
Validation & Testing
Build test payloads that stay readable, valid, and reusable instead of rotting into copy-paste blobs nobody trusts.

Strong JSON fixtures are small, realistic, validated, and named around the behavior they test rather than the incident they came from.

Read article
Guide 226 min read
Data & Formats
Catch whitespace mistakes, implicit typing surprises, and structural drift before a YAML change blocks a deployment pipeline.

YAML changes deserve the same review discipline as code because tiny formatting mistakes can trigger expensive CI failures.

Read article
Guide 236 min read
Content & Markup
Move changelogs and release notes from Markdown into HTML output without breaking headings, code blocks, or link structure.

Release notes are easy to write in Markdown, but publishing them reliably means checking how your renderer handles the details.

Read article
Guide 245 min read
Content & Markup
Know when entity encoding helps with content publishing and when it only masks a rendering-context problem.

Entity encoding is useful in publishing workflows, but only when you are clear about whether the content should display markup or render it.

Read article
Guide 256 min read
Data & Formats
Handle embedded files and binary payloads more safely when APIs choose Base64 instead of direct file transfer.

Base64 attachments can simplify transport, but they add size, complexity, and debugging friction if teams do not decode and validate them intentionally.

Read article
Guide 267 min read
API & Auth
Inspect callback URLs carefully when state, code, error, and redirect parameters stop matching what your auth flow expects.

OAuth callback bugs often hide in encoded state values, redirect mismatches, and assumptions about which side owns query-string parsing.

Read article
Guide 276 min read
Validation & Testing
Test regex-based validation against messy real-world data before it reaches forms, imports, and production logs.

Regex validation looks solid on perfect examples, but the real work is catching the near-misses and weird inputs your users actually provide.

Read article
Guide 287 min read
Data & Formats
Clean up spreadsheet exports and bulk user imports before they turn into mismatched fields, type errors, and support cleanup work.

Bulk imports go more smoothly when you normalize headers, verify types, and decide how to handle blanks before conversion starts.

Read article
Guide 295 min read
Security & Workflows
Choose sane generator settings for internal workflows so strong passwords are easy to adopt instead of constantly edited by hand.

A good password generator setup balances length, compatibility, and usability so people stop weakening generated passwords to make them fit.

Read article
Guide 306 min read
Time & Dates
Compare event timing across audit logs, webhook deliveries, and user reports without mixing units or time-zone assumptions.

Audit timestamps are only useful when you normalize units and time zones before drawing conclusions about event order.

Read article
Guide 316 min read
Data & Formats
Choose the right format for data exchange between teams so handoffs stay readable, reviewable, and less error-prone.

CSV is great for tabular editing, while JSON is better for structure and validation. Picking the wrong one creates avoidable cleanup work.

Read article