Yes or No Oracle
Stuck on a simple decision? Ask the Yes or No Oracle any question and get an instant, colour-coded verdict — Yes, No, or Maybe. It is a fast, private way to break a tie, settle a small choice, or just have fun when you cannot make up your mind.
How it works
Each answer is drawn with cryptographically secure randomness, not a predictable
pseudo-random sequence. When you ask, the oracle requests a single random byte from
the browser’s crypto.getRandomValues (a value from 0 to 255) and takes it modulo 3:
- result 0 to Yes
- result 1 to No
- result 2 to Maybe
That gives each of the three outcomes an approximately equal one-in-three chance. The text of your question is never read — it only helps you focus the decision.
Example
Type “Should I order pizza tonight?” and press Ask the oracle. Say the random byte is 130; then 130 mod 3 = 1, so the oracle shows No in red. Ask again and a fresh byte gives an independent new verdict — past answers never affect the next.
| Random value mod 3 | Verdict |
|---|---|
| 0 | Yes |
| 1 | No |
| 2 | Maybe |
Nothing you type is uploaded or stored — the oracle runs entirely in your browser with no network calls.