Skip to content
ZeroServer.tools
ZeroServer.tools

Guides & Tutorials

Practical, privacy-first developer guides — using free tools that run entirely in your browser.

CSS

CSS Flexbox: The Complete Guide to Flexible Layouts

Master CSS Flexbox — flex-direction, justify-content, align-items, flex-grow, gap — with real layout examples for nav bars, card grids, and centering.

June 10, 2026 · 6 min read
Read
CSS

CSS Grid: The Complete Guide to Two-Dimensional Layouts

Learn CSS Grid from scratch — grid-template-columns, fr units, auto-fill, minmax, named areas — with real examples for holy grail, magazine, and responsive card layouts.

June 10, 2026 · 7 min read
Read
CSS

CSS Animations and Transitions: A Practical Guide

Build smooth hover effects and keyframe animations with CSS — transition properties, @keyframes, performance tips (GPU-accelerated properties), and prefers-reduced-motion.

June 10, 2026 · 6 min read
Read
Dev Tools

Dates and Timestamps in JavaScript: A Developer's Guide

Avoid common Date pitfalls — Unix timestamps, Intl.DateTimeFormat, IANA timezones, ISO 8601, and the hidden UTC vs local parsing trap in new Date().

June 10, 2026 · 6 min read
Read
Dev Tools

How QR Codes Work and How to Generate Them Online

Understand QR code structure — finder patterns, error correction levels, encoding modes — and best practices for URLs, WiFi, and vCard generation.

June 10, 2026 · 7 min read
Read
Dev Tools

Cron Expressions Explained: Syntax, Examples, and Tips

Decode the 5-field cron syntax — minute, hour, day, month, weekday — with annotated examples for common schedules, special characters, and GitHub Actions cron.

June 10, 2026 · 8 min read
Read
Dev Tools

HTTP Status Codes: A Developer's Complete Reference

Every HTTP status code class explained with REST API design guidance — when to use 201 vs 200, 401 vs 403, 301 vs 302, and common mistakes to avoid.

June 10, 2026 · 7 min read
Read
Dev Tools

Markdown Syntax Guide: Formatting from Basics to Advanced

A complete Markdown reference — headings, bold, links, images, tables, fenced code blocks, task lists, and GFM vs CommonMark differences.

June 10, 2026 · 5 min read
Read
Web & SEO

SEO Meta Tags Explained: Title, Description, and Open Graph

Write title tags, meta descriptions, canonical links, and Open Graph tags that improve rankings and social sharing — with optimal lengths and common mistakes.

June 10, 2026 · 6 min read
Read
CSS

CSS Units Explained: px, rem, em, vw, vh, and When to Use Each

Know when to use px, rem, em, vw, vh — including the em compounding trap, rem for accessibility, svh/dvh for mobile, and fluid typography with clamp().

June 10, 2026 · 6 min read
Read
SecurityPrivacy

Encryption vs Hashing: What's the Difference and When to Use Each

Encryption is reversible; hashing is not — understand when to use each, why MD5/SHA-1 fail for passwords, how salting works, and what HMAC adds.

June 10, 2026 · 6 min read
Read
Dev ToolsAccessibility

Image Formats for the Web: JPEG, PNG, WebP, and SVG Compared

Choose the right image format — when to use JPEG, PNG, WebP, SVG, or AVIF — with a decision guide, Core Web Vitals impact, and picture element fallback patterns.

June 10, 2026 · 6 min read
Read
Finance

CAGR Explained: What It Is, the Formula, and How to Use It

What Compound Annual Growth Rate is, how to calculate it from start/end values and years, why it differs from average return, and when to use CAGR vs IRR.

June 10, 2026 · 4 min read
Read
Web & SEOSecurity

SPF, DKIM, and DMARC Explained: Email Authentication for Developers

How SPF, DKIM, and DMARC work together to prove email legitimacy, stop spoofing, and protect your domain — with record syntax, common mistakes, and a step-by-step setup guide.

June 10, 2026 · 6 min read
Read
Dev Tools

Network Speed Units Explained: Mbps, MB/s, Gbps, and More

Demystify internet and storage speed units — bits vs bytes, Kbps/Mbps/Gbps, why your 100 Mbps plan downloads at ~12 MB/s, and how bandwidth affects real-world transfer times.

June 10, 2026 · 4 min read
Read
Dev Tools

Runtime Type Validation with Zod: A Practical Guide

Why TypeScript types alone aren't enough at runtime, how Zod validates API responses and environment variables, and how to generate a Zod schema from existing JSON.

June 10, 2026 · 5 min read
Read
Security

Classic Ciphers Explained: Caesar, Atbash, Vigenère, and Polybius

How historical substitution ciphers work — Caesar shift, Atbash mirror, Vigenère key, and the Polybius square — with the math behind each and why they're insecure today.

June 10, 2026 · 6 min read
Read
SecurityWeb

HTTP Security Headers Explained: CSP, Cookies, and Robots

A practical guide to the HTTP security headers every web app should set — Content-Security-Policy, Set-Cookie flags, X-Robots-Tag, and CORS — with generator tools for each.

June 10, 2026 · 3 min read
Read
NetworkingDev Tools

IP Addressing Explained: Decimal, Binary, Hex, and Subnets

How IP addresses work in every number base — dotted decimal, binary octets, and hexadecimal — plus CIDR subnet masks, private ranges, and loopback addresses explained simply.

June 10, 2026 · 3 min read
Read
Math

Fraction Arithmetic: Add, Subtract, Multiply, and Divide Step by Step

How to add, subtract, multiply, and divide fractions — finding the lowest common denominator, simplifying with GCD, and handling mixed numbers — with worked examples.

June 10, 2026 · 3 min read
Read
CSS

CSS Resets vs Normalize: Which Reset Should You Use in 2026?

Comparing CSS reset strategies — Eric Meyer Reset, Normalize.css, the modern minimal reset, and Tailwind Preflight — when to use each, and what they actually change in the browser.

June 10, 2026 · 4 min read
Read
CSS

CSS Gradients: Linear, Radial, and Conic — A Complete Guide

Master CSS gradients — linear, radial, and conic — with syntax breakdowns, multi-stop techniques, animation tips, and a free in-browser gradient generator.

June 9, 2026 · 3 min read
Read
Dev Tools

JavaScript Regex Flags Explained: g, i, m, s, u, y, d

A practical guide to all seven JavaScript regex flags — what each does, when to use it, and common gotchas — with live examples you can run in a browser.

June 9, 2026 · 4 min read
Read
SecurityPrivacy

Password vs Passphrase: Entropy, Memorability, and Security in 2026

Why passphrases can be stronger and far easier to remember than complex passwords — explained through entropy, the math behind it, and how to generate both securely.

June 9, 2026 · 4 min read
Read
CSS

CSS Clamp for Responsive Typography: No Media Queries Needed

How CSS clamp() replaces brittle media-query font stacks with a single rule that scales smoothly between any two viewport sizes — with a calculator and real-world examples.

June 9, 2026 · 4 min read
Read
CSS

CSS Custom Properties: A Practical Guide to Design Tokens

What CSS custom properties (CSS variables) are, how to structure a design token system with them, and how to generate a full color scale — all in your browser.

June 5, 2026 · 3 min read
Read
Dev Tools

Regular Expressions Quick Reference: Common Patterns Explained

The most useful regex patterns for developers — email, URL, date, number, word boundaries — explained with examples and a free in-browser tester.

June 5, 2026 · 4 min read
Read
Dev ToolsData

JSON to Go, Rust, TypeScript: Code Generation Tools for Any Language

Stop writing boilerplate struct definitions by hand — paste a JSON sample and generate typed structs for Go, Rust, TypeScript, and PHP instantly in your browser.

June 5, 2026 · 3 min read
Read
Dev Tools

What to Put in .gitignore (and Why)

Which files and directories to exclude from version control for Node, Python, Go, Rust, and more — plus the .gitignore pattern syntax every developer should know.

June 5, 2026 · 3 min read
Read
PrivacyDev Tools

How to Merge, Split, and Rotate PDFs in Your Browser (No Upload Required)

A complete guide to editing PDFs entirely client-side using pdf-lib — merge, split by page range, rotate pages, remove pages, and convert images to PDF without sending files to any server.

June 5, 2026 · 4 min read
Read
CSSAccessibility

Designing for Color Blindness: What Every Developer Should Know

Understand the four main types of color vision deficiency, how they affect your UI, and actionable steps to make your web apps accessible — with tools to simulate and test.

June 5, 2026 · 4 min read
Read
Dev ToolsData

Generating Fake Test Data for Development and QA

Strategies for creating realistic fake names, emails, addresses, and IDs for unit tests, database seeding, UI demos, and privacy-safe data sharing — all without external APIs.

June 5, 2026 · 4 min read
Read
Dev ToolsData

Generating JSON Schema from Example Data: A Practical Guide

Learn how JSON Schema works, how to auto-generate one from an existing JSON document, and how to use it for API validation, TypeScript generation, and documentation.

June 5, 2026 · 4 min read
Read
PrivacyDev Tools

Why Client-Side Tools Are Safer: Free, Private, No Upload

Most online dev tools upload your data to a server. Client-side tools run entirely in your browser, so your JSON, tokens, and secrets never leave your device — here's why that matters and how to tell the difference.

June 4, 2026 · 3 min read
Read
CSS

Pure CSS UI: Buttons, Loaders, and Animations Without JavaScript

Build buttons, loading spinners, and keyframe animations with CSS alone — no JavaScript, no images — for lighter pages and fewer dependencies, with free generators for each.

June 4, 2026 · 3 min read
Read
Health

BMR, TDEE, and Body Fat: The Numbers Behind Your Calorie Goals

How BMR, TDEE, and body-fat percentage relate — what each number means, the formulas behind them, and how to use them to plan a cut or a bulk. All computed in your browser.

June 4, 2026 · 4 min read
Read
Finance

How Mortgage Payments Work: PITI, Interest, and PMI Explained

What makes up a monthly mortgage payment — principal, interest, taxes, insurance, and PMI — plus the amortization formula and how to estimate yours in your browser.

June 4, 2026 · 4 min read
Read
Dev Tools

URL Encoding and Decoding, Explained

What percent-encoding is, which characters need escaping, encodeURI vs encodeURIComponent, and how to encode or decode URLs safely in your browser.

June 4, 2026 · 4 min read
Read
Security

MD5 vs SHA-256: Which Hash Should You Use?

MD5, SHA-1 and SHA-256 compared — what hashing is, why MD5 and SHA-1 are broken for security, when each is still fine, and how HMAC differs. With free in-browser hash tools.

June 4, 2026 · 4 min read
Read
Dev Tools

UUID vs ULID vs Nano ID: Choosing an ID Format

How UUID, ULID and Nano ID differ — randomness, sortability, length, and URL-friendliness — and which to pick for database keys, public IDs, and short links.

June 4, 2026 · 4 min read
Read
Dev ToolsData

How to Format and Validate JSON Online

Format, validate, minify, and convert JSON entirely in your browser — plus the privacy reason you shouldn't upload sensitive payloads to a server.

June 3, 2026 · 3 min read
Read
SecurityDev Tools

How to Decode a JWT Safely in Your Browser

What's inside a JWT, the difference between decoding and verifying, and how to read a token's claims without sending a live credential to someone else's server.

June 2, 2026 · 3 min read
Read
SecurityDev Tools

Base64 Encoding and Decoding, Explained

What Base64 actually is, when to use it, why it is NOT encryption, the 33% size overhead, and Base64 vs Base64URL — with a free in-browser encoder/decoder.

June 1, 2026 · 3 min read
Read