Monu Tools

Learn

Clear, practical guides to the tools on Monu Tools. No fluff, just the parts that get you unblocked.

Working with JSON: Format, Convert, and Validate

JSON is everywhere, in API responses, config files, and log lines, and almost all of it needs the same handful of fixes: make it readable, shrink it, convert it, or work out why a parser is choking on it. These guides walk through each job with real examples, and every one links to a tool that does the work right in your browser, so your data never leaves the page.

Protein, Calories and BMI: Nutrition Numbers Explained

How much protein you really need, how many calories your body burns, and what BMI does and does not tell you: these guides turn the numbers behind the calculators into plain, evidence-based answers. Every figure is sourced from research and health bodies, and each guide links the tool so you can run your own numbers.

HEALTH · NUTRITION· 5 min

How Much Protein Do You Need Per Day?

Work out how much protein per day you need from your bodyweight and activity level, with the official RDA, athlete ranges, and a worked example.

HEALTH · NUTRITION· 5 min

Protein Per Kg of Body Weight: What the Ranges Really Mean

Protein per kg of body weight, explained: the 0.8 to 2.2 g/kg ranges, who each fits, total vs lean mass, plus worked examples at 60, 80 and 100 kg.

HEALTH · NUTRITION· 5 min

How Much Protein to Build Muscle?

Protein for muscle gain explained: aim for 1.6 to 2.2 g/kg, why total intake wins, how to split meals, and why you also need a surplus and training.

HEALTH · NUTRITION· 5 min

How Much Protein Should You Eat to Lose Weight?

How much protein to lose weight: why a higher target of 1.6 to 2.4 g/kg in a deficit protects muscle, curbs hunger, and burns more energy.

HEALTH · NUTRITION· 5 min

How Many Calories Do You Need? BMR and TDEE Explained

Learn how a calorie calculator estimates your daily needs using the Mifflin-St Jeor BMR formula, activity multipliers, and TDEE, with a worked example.

HEALTH · NUTRITION· 7 min

BMR and TDEE: How Many Calories You Burn

What is BMR and TDEE? Learn how your body burns calories at rest, the three formulas, the activity factors, and how accurate the numbers really are.

HEALTH · NUTRITION· 6 min

What Is a Healthy BMI (and What It Misses)

What is a healthy BMI? See the formula, the WHO categories, a worked example, and the real limits of BMI as a health screening tool.

HEALTH · NUTRITION· 7 min

BMI vs Body Fat Percentage: Which Matters

BMI vs body fat percentage: what each number really measures, why they disagree, how to measure body fat at home, and healthy ranges by sex.

See all 9 guides

French Taxes and Finance, Explained

How income tax, VAT, and salaries work in France: the 2026 barème, the quotient familial and parts, the plafonnement and the décote, the four TVA rates, and a step-by-step guide to payslip deductions, in plain English. Every figure follows the official rates, and every guide links the calculator so you can run your own numbers.

Spanish Taxes and Finance, Explained

How income tax, VAT, and severance pay work in Spain: the six IRPF brackets, the combined estatal and autonomica scale, the minimo personal allowance, the three IVA rates, and the 33-day and 20-day dismissal formulas. Every figure follows the official 2026 rates, and each guide links the calculator so you can run your own numbers.

Italian Taxes, Salary and University Life, Explained

How IRPEF works in Italy, how to calculate your net salary from RAL, how the Italian university grading system converts trentesimi into a voto di laurea on the 110 scale, and how the TFR severance fund compounds through yearly rivalutazione: clear guides with worked examples. Every figure follows official sources, and each guide links the calculator so you can run your own numbers.

Dutch Taxes, Salary and Severance, Explained

How net pay, tax, VAT and severance work in the Netherlands: the 2026 Box 1 brackets and the algemene heffingskorting and arbeidskorting credits, the 30%-ruling for incoming workers, the 8% vakantiegeld holiday allowance, the 21% and 9% BTW rates, and the statutory transitievergoeding. Every figure follows the official 2026 rates, and each guide links the calculator so you can run your own numbers.

UK Taxes, Pay and Redundancy, Explained

How take-home pay, tax, VAT and redundancy work in the UK for 2025/26: income tax for England, Wales and Northern Ireland and the separate Scottish bands, the Personal Allowance and its 100k taper, employee National Insurance, student loan repayments, the 20% and 5% VAT rates, and statutory redundancy pay. Every figure follows the official HMRC rates, and each guide links the calculator so you can run your own numbers.

US Paycheck and Sales Tax, Explained

How your US paycheck and sales tax work for 2025: federal income tax brackets and the standard deduction, Social Security and Medicare (FICA) including the Additional Medicare Tax, and how sales tax is added at the state and local level. Federal figures follow the IRS and SSA, and each guide links the calculator so you can run your own numbers. State income tax is not included.

Encoding, Hashing, and Web Security Basics

Base64, URL encoding, JWTs, and hashing turn up in every web stack, and the same misunderstandings turn up with them: that encoding is encryption, that decoding a token verifies it, that a hash can be reversed. These guides clear that up with plain explanations and worked examples, and each one links a tool that does the job right in your browser, so your data never leaves the page.

ENCODING · SECURITY· 4 min

Base64 Explained: Why Encoding Is Not Encryption

What Base64 actually does, why it makes data about a third larger, when to use it, and why it protects nothing on its own.

ENCODING · SECURITY· 3 min

URL Encoding Explained: When and Why to Percent-Encode

Why URLs use %20 and other percent codes, which characters are safe, and when to reach for encodeURIComponent instead of encodeURI.

ENCODING · SECURITY· 4 min

How to Read a JWT, and Why Decoding Is Not Verifying

A JWT is three Base64url parts anyone can read. Learn how to decode one, what each part means, and why decoding proves nothing.

ENCODING · SECURITY· 4 min

Hashing vs Encryption: What a Hash Can and Cannot Do

Hashing is one-way and keyless; encryption is two-way and needs a key. Learn the difference, why you cannot decrypt a hash, and when to use each.

ENCODING · SECURITY· 4 min

How Passwords Should Be Stored: Salting, bcrypt, and Why Not SHA-256

Why a fast hash like SHA-256 is wrong for passwords, what a salt does, and why bcrypt, scrypt, and Argon2 are the right tools.

ENCODING · SECURITY· 4 min

How Webhook Signatures Work: HMAC, Shared Secrets, and Timing-Safe Checks

How Stripe and GitHub prove a webhook is genuine using HMAC and a shared secret, and the timing-safe comparison most developers get wrong.

ENCODING · SECURITY· 4 min

UUIDv4 vs UUIDv7: Why Time-Ordered IDs Make Better Database Keys

UUIDv4 is random and scatters database indexes; UUIDv7 is time-ordered and inserts in order. Learn the difference and when each one wins.

ENCODING · SECURITY· 4 min

Data URIs: Embedding Images with Base64, and When It Backfires

Inlining an image as a Base64 data URI removes a request but breaks caching and adds 33% size. Learn the size rules and the better SVG trick.

See all 9 guides

Regular Expressions, From Basics to Backtracking

Regular expressions look cryptic until you learn the handful of pieces they are built from. These guides cover the core syntax, capturing and named groups, lookahead and lookbehind, the greedy-versus-lazy distinction and the catastrophic backtracking to avoid, and why a giant email regex is the wrong tool. Every guide links the regex tester so you can try each pattern in your browser, where your text never leaves the page.

Optimizing Images for the Web

Images are usually the heaviest thing on a page, and a few decisions, the right format, the right size, sensible compression, decide whether they load fast or drag everything down. These guides cover choosing between JPEG, PNG, WebP and AVIF, compressing without visible loss, converting iPhone HEIC photos, stripping hidden EXIF location data, resizing properly (and the DPI myth), and SVG versus PNG. Each links a tool that does the job right in your browser, so your images never leave the page.