Build faster.
Format. Convert. Generate.
A focused collection of practical developer utilities for text, data, identifiers, encoding, debugging and everyday development workflows.
Most used tools
Everything runs locally in your browser.
Case
Converter.
Convert text instantly into common programming naming conventions.
JSON
Formatter.
Beautify, minify, validate and escape JSON without leaving the workspace.
Regex
Tester.
Test and inspect regular expressions with real-time match information.
Unix
Timestamp.
Convert timestamps to local, UTC and ISO dates, and back again.
Color
Picker.
Inspect HEX, RGB, HSL and readable foreground contrast.
Hash
Generator.
Generate common hashes directly in the browser with optional salt.
QR &
Barcode.
Generate QR codes and CODE128 barcodes from text or links.
UUID /
ID.
Create UUIDs, sortable v7-style IDs, slugs and secure random strings.
Base64
Encode.
Encode and decode Unicode text, files and image Data URLs.
CSV / TSV
Viewer.
Preview pasted CSV or TSV data as a clean table.
Lorem
Ipsum.
Generate clean placeholder paragraphs for designs and development.
Git
Cheat.
Useful everyday Git commands for setup, branches and recovery.
Getting Started
git initgit clone URLgit statusgit log --oneline
Commit Changes
git add .git commit -m "message"git push origin maingit pull
Branches
git branchgit switch -c featuregit switch maingit merge feature
Undo / Reset
git restore filegit reset --soft HEAD~1git revert COMMITgit stash