Infinite Alias Stream
mdimrankhanalpha@gmail.com
Aliases generated
0 so far
This isn't a page listing email aliases. It's one Gmail identity, unfolding into a sequence of addresses that never runs out. Every alias is real Gmail plus-addressing syntax, derived from a single moment in time plus an ever-climbing number.
The root identity is mdimrankhanalpha@gmail.com. The username and domain never change — everything generated here is a plus-addressed variant of that one account, not a new account.
Pressing Generate captures the exact moment — year, month, day, hour, minute, second, and a 9-digit nanosecond field — once. That timestamp stays fixed for the whole session; it's what every alias in the stream shares.
After the timestamp, each alias gets a sequence number: .1, .2, .3, and onward. That number is stored as a BigInt, not a regular JavaScript number, so it has no built-in ceiling — it can keep growing past the point where ordinary numbers would lose precision.
Auto-scroll offers nine speeds: 0.5×, 1×, 2×, 4×, 8×, 16×, 100×, 500×, and 1000×. The slower speeds scroll smoothly, pixel by pixel. At 100× and above, the app stops animating individual pixels and instead jumps the underlying sequence position directly, redrawing only what's on screen — which is what keeps extreme speeds from bogging down a phone.
The browser never holds every alias you've scrolled past. A small pool of row elements is continuously recycled — reused for whatever's newly in view — while old rows are released. If you scroll back to a position you've already seen, its alias is recalculated from its index, not fetched from storage, so it's always exactly what it was.
Both stopwatches measure elapsed time from a single fixed point — September 9, 2026, 00:00:00 UTC — not from when you opened the page. The first breaks that elapsed time into days, hours, minutes, seconds, and nanoseconds. The second shows only the total nanosecond count, as one continuously growing number. Neither can be paused, and reloading the page doesn't reset them, because they're recalculated fresh from that fixed reference point every time.
18:00 is this project's recurring mark — a small HUD badge paired with ∞, appearing wherever the interface wants to remind you where you are without getting in the way of the stream itself.