Text & documents
Encoder/DecoderURL, Base64, HTML
Text convertercamelCase, snake_case...
Text DiffCompare two texts
LaTeXPreview mathematical formulas
MarkdownReal-time preview
MermaidDiagrams as code
DiagramsVisio-style visual editor, Mermaid import
String escaperJS, JSON, SQL, Regex, HTML, URL
Unicode / ASCIICharacter information
Numbers & maths
CalculatorMath expressions + LaTeX
Base converterBase 2 to 64
Unit systembits, bytes, SI, IEC
Subnet / CIDRNetwork calculator
Timestamp and datesUnix, time zones, formats
Date calculatorDays between dates, exact age, day of the week
Data & formats
Format converterJSON, YAML, Properties, ENV, CSV
JSON FormatterFormat and validate JSON
Regex TesterRegular expressions
JSON DiffStructurally compare two JSONs
Code formatterSQL, CSS, HTML, JavaScript
DB StudioVisual Postgres database in the browser
SQL LabValidate, run and optimize SQL with real Postgres
Giant file viewerOpen huge CSV/logs without loading them
Visual ETL flowTransform data by chaining nodes
Security
Text anonymizerRedact PII and secrets (reversible)
JWT InspectorDecode JWT tokens
Auth flowsBasic, JWT and OAuth2 step by step
Hash generatorSHA-256, SHA-384, SHA-512
Password & UUID generatorPasswords and UUIDs
Development & DevOps
CronGenerator and validator
Docker → ComposeConvert docker run to Compose
Skaffold multi-configDependency graph and requires validation
Linux: permissions and userschmod, chown, useradd and groups
URLParse and build URLs
Random dataNames, emails, IPs, UUIDs...
ElectronicsOhm's law, series/parallel resistors
Logic GatesAND, OR, NOT and more gate simulator
Quantum simulatorQubits, gates, superposition and entanglement
HammingError detection
Nginx/Apache SPA configGenerate config to serve a SPA
SemverSemantic version ranges
CORS ExplainerAnalyse your server's CORS headers
Cert inspectorAnalyse X.509 certificates in PEM format
Rate LimiterSimulate Token Bucket and Fixed Window
Assembly simulatorSimplified MIPS ISA · step-by-step · registers & memory
Context ForgePack and shield your project for AI
Artificial Intelligence
LLM costsSimulate monthly spend
Prompt builderSystem prompt for AI agents
EmbeddingsSimilarity, 2D map and RAG
Local AIChat, summarization, translation & sentiment in-browser
TokenizerVisualize tokens, compare models, estimate costs
Probability for AIDistributions, softmax, Bayes and entropy
Gradient descentSGD, Momentum, RMSProp, Adam
Neural networkTrain an MLP and watch the boundary form
Mini-LLMTrain a language model with your text
Dimensionality reducerPCA, t-SNE and UMAP, live
Confusion matrix & ROCThreshold, precision/recall, ROC/AUC, PR
Clustering (k-means, DBSCAN)Discover groups without labels
Attention visualizerWhat each word looks at in a transformer
Convolution & CNN filtersImage filters and feature maps
Decision treeDecision regions + the tree
Fourier & convolutionFFT spectrum and signal filters
DiffusionThe noise behind Stable Diffusion
Regression & MLELeast squares, overfitting, ridge
Markov chainsStates, stationary distribution and text
Hypothesis testingp-values, t-test, χ², ANOVA and power
OCR — Image to textExtract text from images, 100% local
Finance
InflationYear-by-year purchasing power erosion
Compound interestCapital + contributions + compound interest
Mortgage / loanMonthly payment and French amortization schedule
Split expensesWho owes whom and how much
Health & Wellness
BMI & healthBMI, ideal weight, BMR and sleep cycles
Productivity
PomodoroTime-block work technique
StopwatchWith laps, stages and history
Games & Entertainment
DiceTables with numeric and symbolic dice
ScorekeeperPoints per player with game timer
Random pickerPick a random item from a list
Name generatorReal, fantasy, sci-fi, Norse names
Multimedia & design
Color HEX/RGB/HSLColor converter
QR CodeGenerate QR codes
ImagesResize, convert, Base64
PDF ToolsMerge, extract, watermark
ChartsVisualize data with charts
WCAG ContrastWCAG AA/AAA contrast ratio
Business
Meeting costHow much does each meeting really cost?
SLA / UptimeAvailability percentage ↔ downtime
Break-evenCost and revenue break-even point
Burn rate / RunwayHow long does your cash last?
A/B TestStatistical significance of experiments
DORA MetricsClassify your team by DevOps metrics
UTM BuilderBuild and decode URLs with UTM parameters
How to use
What it is and what it's for

A visual lab of the probability that underpins AI, split into 4 tabs:

Distributions — plot 7 distributions and sample data from them.
Softmax & temperature — how an LLM turns logits into probabilities and picks the next token.
Bayes — why a test that is right 90% of the time can still fool you, with the classic medical case.
Entropy / KL — the information theory behind cross-entropy, the loss used to train classifiers.

Everything is computed in your browser, with no server. This help changes with the tab you have open.

Distributions: density and cumulative

Pick a distribution with the buttons at the top and move its parameters with the sliders; the chart updates instantly:

Continuous distributions (Normal, Exponential, Uniform, Beta) are drawn as a density curve (PDF) with its area under the curve.
Discrete ones (Bernoulli, Binomial, Poisson) are drawn as bars (PMF): the probability of each integer value.
• Tick CDF to overlay the cumulative (0 to 1), the probability of getting a value ≤ x.

The 7 distributions and their role in AI

Each distribution comes with its parameters and a note on why it shows up in AI:

Normal (Gaussian) μ, σ — the queen: noise/errors and weight initialization (Xavier/He scale σ by the number of neurons).
Bernoulli p — a yes/no trial; the output of a binary classification (sigmoid) and the basis of log-loss.
Binomial n, p — number of successes in n trials; counting hits and A/B tests.
Poisson λ — counts of rare events per interval; mean = variance = λ.
Exponential λ — time between events (memoryless); latencies and waits.
Uniform a, b — maximum uncertainty over a range; uniform initialization and sampling.
Beta α, β — a distribution over probabilities (0–1); conjugate prior of Bernoulli/Binomial in Bayesian inference.

Mean, standard deviation, variance and entropy

Below the sliders four statistics are shown and recompute on their own:

Mean — the expected value (center of mass).
Std and Variance — how spread out the values are (the std is the square root of the variance).
Entropy — the distribution's uncertainty, measured in nats (natural log, not bits): the flatter the distribution, the higher the entropy. A closed-form formula is used where it exists (Normal, Exponential, Uniform) and a numeric sum or integral otherwise.

Sampling and the law of large numbers

Press Sample to draw N random values from the distribution (N goes from 200 to 8000 with the slider). Its histogram, normalized, is drawn over the theoretical curve: the more samples, the better the histogram matches the density — the law of large numbers in action. Clear removes the samples; changing a parameter or the distribution also discards them.

Central limit theorem (CLT)

Tick CLT and each sample becomes the mean of k values (set k from 2 to 30). Whatever the source distribution —skewed, discrete or uniform—, the mean tends to a normal, ever narrower as k grows (its std is σ/√k). The limiting normal N(mean, σ/√k) is overlaid as a line. That's why the Gaussian shows up everywhere.

Probability for AIDistributions, softmax, Bayes and entropy
Probability for AIDistributions, softmax, Bayes and entropy — visual and interactive
μ
0
σ
1
Mean0
Std.1
Variance1
Entropy1.419 nats

The queen of AI: assumed for noise/errors and to initialize weights (Xavier/He scale σ by the number of neurons).

-4.0-2.00.02.04.0
DensityCumulative (0–1)
N
2000