Guided lessons

Learn developer workflows with Toolzy

Practical, browser-native lessons that start with a realistic broken input, walk through the right tools, and end with a clear diagnosis or cleaned output.

API Debugging

Inspect requests, responses, tokens, URLs, payloads, headers, and scheduler-adjacent API behavior.

Workflow

Data Transformation

Turn messy JSON, CSV, YAML, XML, SQL, query strings, and generated fixtures into shapes a developer can use.

Workflow
beginner Tool lesson 8 min

Normalize API Field Names Before Mapping JSON

Turn human column labels into consistent property names before building a payload mapper.

beginner Tool lesson 8 min

Spot Hidden Reversed Text in a Broken Payload

Reverse a suspicious field to find whether a payload was mirrored, pasted backward, or intentionally obfuscated.

beginner Tool lesson 8 min

Find Repeated Terms in a Noisy Log or Document

Count repeated words so the real failure theme stands out from noisy text.

beginner Tool lesson 8 min

Clean a List of IDs Before a Bulk Import

Sort and deduplicate identifiers before a bulk import creates duplicate work.

intermediate Tool lesson 12 min

Inspect and Fix a Messy XML Response

Format XML before deciding whether the response is malformed or merely hard to read.

intermediate Tool lesson 12 min

Read a Dense SQL Query Before Changing It

Format SQL so joins, filters, and limits are reviewable before you edit production data logic.

beginner Tool lesson 8 min

Find the JSON Syntax Error Breaking a Request

Validate JSON and locate the exact syntax issue before blaming the API.

beginner Tool lesson 8 min

Make a Nested JSON Response Readable

Pretty-print a dense response so nested fields can be reviewed and copied safely.

intermediate Tool lesson 12 min

Inspect an Unfamiliar JSON Response Before Changing It

Trace paths, arrays, and inconsistent records in an unfamiliar response before changing the code that consumes it.

beginner Tool lesson 10 min

Turn Messy CSV Into API-Ready JSON

Clean a spreadsheet export into predictable JSON, then inspect the shape before handing it to an API.

intermediate Tool lesson 12 min

Convert a YAML Config Into JSON for an API

Convert configuration data while preserving booleans, arrays, and nested objects.

intermediate Tool lesson 12 min

Generate Types From a Real API Response

Create TypeScript interfaces from actual JSON so client code starts from the real shape.

intermediate Tool lesson 12 min

Validate a Payload Against the Shape You Expect

Use a schema check to separate syntax-valid JSON from contract-valid JSON.

beginner Tool lesson 8 min

Generate and Check UUIDs for Test Data

Generate UUIDs for fixtures and keep them distinct from meaningful production identifiers.

beginner Tool lesson 8 min

Generate a Scannable Barcode for a Product Label

Turn a 12-digit GTIN into a print-ready EAN-13 with a computed check digit instead of guessing the thirteenth number.

intermediate Workflow 12 min

Compare JSON Payloads Across Environments

Compare a local baseline and a changed payload without confusing ordinary values with structural change.

intermediate Workflow 12 min

Find the Record Breaking a JSON Consumer

Use local structure evidence to isolate the record whose shape breaks an otherwise healthy consumer.

intermediate Workflow 15 min

Plan a JSON Contract Change

Turn Current and Proposed examples into declared contract intent, local artifacts, and a reviewable rollout plan.

intermediate Workflow 14 min

Review Breaking JSON Contract Impact

Review producer, consumer, and rollout consequences without pretending that an inferred sample settles compatibility.

intermediate Workflow 12 min

Verify an Implemented JSON Contract

Compare implementation evidence with declared intent so a passing example does not hide an unfinished contract change.

Encoding & Escaping

Handle Base64, URLs, HTML entities, binary text, byte views, and the boundaries between encoding, escaping, hashing, and encryption.

Workflow

Frontend Utilities

Format markup and code, inspect styles, convert UI snippets, and prepare browser-facing assets.

Workflow
beginner Tool lesson 8 min

Turn a Draft Title Into a Safe URL Slug

Create a stable slug from editorial text without dragging punctuation into the route.

beginner Tool lesson 8 min

Review a Config Change Without Missing a Line

Compare two config snippets so a tiny value change does not hide inside whitespace noise.

intermediate Tool lesson 12 min

Build a Regex That Catches the Right Inputs

Test a pattern against matching and non-matching examples before it becomes validation code.

beginner Tool lesson 8 min

Make Minified HTML Readable Before Debugging

Format dense markup so structure, nesting, and attributes can be reviewed safely.

intermediate Tool lesson 12 min

Clean Up a Snippet Before Reviewing It

Format code before reviewing behavior so style noise does not hide the real issue.

beginner Tool lesson 8 min

Preview and Fix Markdown Before Publishing

Render Markdown before publishing so broken headings, lists, and links are caught early.

intermediate Tool lesson 12 min

Convert HTML Into JSX Without Breaking Attributes

Convert markup into JSX while preserving semantics and React-friendly attribute names.

beginner Tool lesson 8 min

Convert Plain Text Into Styled Unicode Safely

Create styled Unicode text while checking whether the result is still appropriate for copy-paste.

beginner Tool lesson 8 min

Check Fancy Unicode Text Before Pasting It

Preview decorative text before it lands somewhere that cannot render or search it well.

beginner Tool lesson 8 min

Clean Up Glitched Zalgo Text Before Sharing

Recognize heavy combining marks and keep decorative glitch text away from fragile contexts.

beginner Tool lesson 8 min

Create Small Unicode Labels Without Breaking Copy-Paste

Use small Unicode text sparingly and keep a normal-text fallback for real labels.

beginner Tool lesson 8 min

Choose Unicode Styles That Survive Platform Changes

Compare styled text across platform-safe options before using it in public copy.

Security Hygiene

Inspect security-adjacent strings locally: hashes, passwords, JWTs, random tokens, signatures, and certificates.

Workflow

Time, Date & Scheduling

Convert timestamps, read cron expressions, compare time zones, and reduce scheduling ambiguity.

Workflow

CS Fundamentals

Make low-level concepts visible: number bases, bits, logic, character encodings, and simple classical ciphers.

Workflow