Distributed Systems Toolkit
Tools for the problems that show up once a system spans more than one machine — unique IDs, coordination, and consistency. All run entirely in your browser.
How these fit together
Snowflake ID Generator tackles the first problem any system spread across multiple machines runs into: minting unique IDs without a central database or coordinator to hand them out. Generate mode shows the timestamp/machine/sequence scheme in action — including what happens when several IDs are requested within the same millisecond — and Decode mode reverses any Snowflake ID back into the creation time, machine, and sequence number it was built from.