The first version of Snake I built reused the platformer's exact mechanic: every time you ate, the four direction keys got reassigned to a random direction. Up might become left. It worked, technically. It was also the wrong call, and it took about five minutes of looking at the finished thing to see why.
"A Mildly Infuriating Game" — the platformer — is built entirely around its control shuffle. It's in the title, the domain name, the About page. That's fine for one game. The moment a second game in the catalog does the identical thing with a different sprite, it stops reading as "this studio has a signature move" and starts reading as "this studio has one idea." Two games sharing a twist isn't a callback, it's a rerun.
Going back to the About page's own description of the goal: something "slightly obnoxious," not a foddian game, not actually unfair. The shuffle satisfies that for a platformer because you have discrete levels — clean checkpoints where a reshuffle is a fresh puzzle, not a mid-action betrayal. Snake doesn't have levels. It has one continuous run. Reshuffling controls mid-run, every time you eat, means the moment of success (getting food) is punished by taking away your ability to react to what comes right after. That's less "mildly infuriating" and more "actively cruel" — the wrong side of the line the site is explicitly trying to stay on.
The replacement needed to hit the same notes without touching input at all: controls always mean what they say, and the challenge comes from somewhere else entirely. The arena itself became a window into a much larger space, drifting one cell at a time in a direction that changes every few seconds. Nothing about pressing "up" ever changes. What changes is which direction is actually safe, because the wall you weren't near a few seconds ago might be sliding toward you right now, whether you've eaten anything or not.
That last part mattered: making the twist run on a timer instead of triggering on food meant the pressure is constant and ambient rather than a punishment for scoring. You can be doing everything right and still get squeezed. That's the actual target — a system working against you that isn't gated behind your own success.
One thing carried over from the platformer's design philosophy: the game always tells you the current state, even if it won't tell you what's coming. The platformer shows the live control mapping after every shuffle. Snake shows a drift arrow and a hint the moment the direction changes. Neither game hides information that's already true — they just don't warn you before it becomes true. That distinction is basically the whole design philosophy in one sentence.
Play Mildly Infuriating Snake, or read the FAQ entry for the mechanical details.