May 17, 2026
16 bytes, infinite chaos
WriteUp: 16 Bytes of x86 that turn Matrix rain into sound
Tiny 16-byte code turns a blank screen into spooky art and a beat, and people are losing it
TLDR: A 16-byte program for an old PC was shown making endless geometric visuals and sound at the same time, which is wildly small for what it does. Commenters bounced between calling it magic, joking their replies were bigger than the code, and asking what on earth they were actually seeing.
A tiny program unveiled at the Outline demoparty in the Netherlands has the internet doing the digital equivalent of rubbing its eyes and yelling, "that can't be real". The stunt: just 16 bytes of old-school PC code making a blank-looking screen blossom into a triangle-like fractal pattern while also spitting out sound. In plain English, it's absurdly small code using the computer's display memory as both drawing pad and noisemaker, and the community reaction has been a mix of awe, confusion, and delighted paranoia.
The loudest mood in the comments is total disbelief. One person flat-out said it "must be magic," while another joked that their own comment was bigger than the program itself, which honestly is the kind of humiliation the internet lives for. There was also some classic comment-thread whiplash: one user arrived expecting a simple "Matrix rain turned into sound" gimmick and instead found visual art and audio, then immediately escalated to, "Is this a program or a secret key that unlocks a beast?" Fair question!
The mini-drama came from confusion over what people were even looking at. One commenter asked how the famous triangle fractal connects to the supposed "rain" effect, exposing the eternal tech-thread split between "this is genius" and "wait, explain it like I'm five." Meanwhile, others were already passing around the video like contraband. The result? A perfect internet spectacle: half the crowd is worshipping technical wizardry, and the other half is happily meme-posting through the confusion.
Key Points
- •The article analyzes a 16-byte x86 real-mode DOS assembly program released at Outline Demoparty in May 2026 in Ommen, Netherlands.
- •The program uses video memory at segment `0xB800` as a computational space after `int 10h` initializes video mode 0.
- •The BIOS screen clear leaves text memory in a uniform state with ASCII `0x20` and attribute `0x07`, which the article says is important for the pattern to emerge.
- •A simplified model replacing `xor` with `add` is used to explain the loop as a running prefix-sum process over a 65,536-byte segment.
- •The article states that the evolving values follow scaled binomial coefficients and uses this to explain the emergence of a Sierpinski-like fractal structure.