Beat the Bot
A hobby project—play Reversi (Othello) against a minimax AI. The bot searches the game tree with alpha-beta pruning and a positional heuristic, and shows you exactly how many positions it evaluated each move. Play the corners and you can beat it.
// highlight: Adversarial game AI you can watch think — live
// note: Negamax + alpha-beta pruning, positional weights, and mobility heuristics — all client-side.