Birthday in π

Search your birth date in π (client-side)

Select a calendar date; the app searches for an 8-digit MMDDYYYY pattern in the first ten million digits of π. Data is loaded in chunks to keep memory bounded in the browser tab—no server-side search.

Architecture

Dataπ digits bundled or fetched incrementally; string search uses efficient index scans per chunk.
UIMonth/day/year controls with validation; results show offset and context digits when found.
HostingStatic under /pi/; works entirely offline after assets load.

Design

The project demonstrates how “big data” curiosity can stay client-private: your birthday never leaves the machine. Chunked loading keeps mobile browsers from OOM on multi-megabyte digit strings.