Swiss Army Dev

Privacy-first developer toolkit. No cookies. No tracking. Works with curl.

37 tools 6 categories 100% free
/

JSON Formatter

Format, validate, and minify JSON

echo '{"a":1}' | curl -X POST -d @- /json

ID Generator

UUID v4, v7, ULID, nanoid

curl /uuid?type=v7&count=5

Encoder / Decoder

Base64, URL, HTML, hex encode/decode

echo -n "hello" | curl -d @- /encode?type=base64-encode

Hash Generator

SHA-1, SHA-256, SHA-512

echo -n "hello" | curl -X POST -d @- /hash

IP Info

Your IP, geo, and headers

curl /ip

QR Code

Generate QR codes from text/URLs

curl /qr?data=https://example.com

Timestamp

Unix ↔ human-readable dates

curl /timestamp?ts=1700000000

Cron Explainer

Standard + Spring Boot cron with next runs

curl "/cron?expr=*/5+*+*+*+*"

Chmod Calculator

Octal ↔ symbolic permissions

curl /chmod?mode=755

JWT Decoder

Decode tokens, check expiry

echo "eyJhbG..." | curl -X POST -d @- /jwt

String Escaper

Escape special chars for code contexts

curl -d 'input=foo.*bar&context=regex' /escape

JSON ↔ YAML

Convert between JSON and YAML

echo '{"a":1}' | curl -d @- /convert?direction=json-to-yaml

RegEx Tester

Live regex with match highlighting

curl -d 'pattern=\d%2B&flags=g&test=abc123' /regex

Text Diff

Compare two texts line-by-line

curl -H 'Content-Type: application/json' -d '{"old":"a","new":"b"}' /diff

Color Converter

Hex/RGB/HSL + WCAG contrast

curl /color?color=%236366f1

Password Generator

Cryptographically secure passwords

curl /password?length=32

Lorem Ipsum

Placeholder text generator

curl /lorem?paragraphs=3

Case Converter

camelCase, snake_case, kebab-case

curl /case?text=helloWorld

Word Counter

Characters, words, lines, bytes

echo "Hello world" | curl -X POST -d @- /count

URL Parser

Break URLs into components

curl "/url?url=https://example.com/path?q=1"

CSV ↔ JSON

Convert between CSV and JSON

printf "name,age\nAlice,30" | curl -d @- /csv?direction=csv-to-json

SQL Formatter

Prettify SQL with dialect support

echo "SELECT * FROM users WHERE id=1" | curl -d @- /sql

TOML Converter

TOML ↔ JSON ↔ YAML

echo '[pkg] name="app"' | curl -d @- /toml?direction=toml-to-json

Base Converter

Decimal, hex, binary, octal

curl /base?value=255&from=decimal

DNS Lookup

A, AAAA, MX, CNAME, TXT, NS records

curl /dns?domain=example.com&type=A

HTTP Headers

Inspect response headers + security

curl /headers?url=https://example.com

Markdown Preview

Render Markdown as HTML

echo "# Hello" | curl -X POST -d @- /md

HTML Preview

Preview HTML in sandboxed iframe

echo "<h1>Hello</h1>" | curl -X POST -d @- /html

Placeholder Image

Generate SVG placeholder images

curl /placeholder?w=800&h=400&text=Logo

Encrypted Paste

Zero-knowledge paste bin

Browser only — encryption happens client-side

CIDR Calculator

Subnet mask, range, host count

curl /cidr?cidr=192.168.1.0/24

User-Agent Parser

Browser, OS, device, bot detection

curl /ua

HTTP Status Codes

Searchable status code reference

curl /http?code=404

Whois Lookup

Domain registrar, dates, nameservers

curl /whois?domain=example.com

SSL Checker

Certificate validity and expiry dates

curl /ssl?domain=example.com

JSON Schema

Generate schema from JSON sample

echo '{"a":1}' | curl -X POST -d @- /jsonschema

AI Content Detector

Heuristic AI text analysis

echo "Your text..." | curl -X POST -d @- /ai-detect