A zero-dependency, single-file infinite minesweeper. Per aspera ad astra — through mines, to victory.
🎮 https://kseniaiv.github.io/Infinite-Minesweeper/
- Deterministic mine generation — mines are computed on-the-fly from a hash of
(row, col), so the board never needs to be stored. Same coordinate always produces the same mine. - Infinite grid — only the visible cells are rendered each frame. Pan in any direction forever (sans memory constraints).
- BFS flood fill — open areas are revealed iteratively (no recursion stack overflow).