Decision spinner
Stuck choosing between options? List them one per line — where to eat, which task to start, whose turn it is — then spin and let the tool pick fairly for you. It is a quick, no-arguments way to settle everyday choices.
How it works
Type your options, one per line; the tool trims blank lines and counts the rest. When you spin, it draws a random number from the browser’s cryptographically secure generator (crypto.getRandomValues) and maps it to an option index. To keep every option exactly equally likely, it uses rejection sampling: if a draw falls in the small leftover range that would skew the result, it is discarded and re-drawn. You need at least two options to spin, and each spin is independent — repeats are possible, just like rolling a fair die.
Example
With five options entered:
Pizza
Sushi
Burgers
Salad
Tacos
Each has a 1 in 5 = 20% chance on every spin. Press Spin and one is selected at random — say, Tacos. Spin again and the odds reset to 20% each, so any option, including the one just picked, can come up next.
| Options | Probability each |
|---|---|
| 2 | 50% |
| 4 | 25% |
| 5 | 20% |
| 10 | 10% |
The whole thing runs in your browser with nothing uploaded.