July 18, 2026
Dots, drama, and a surprise identity
Revisiting Yliluoma's ordered dither algorithm
Old-school image trick gets a glow-up — and the comments instantly turned into a nerd food fight
TLDR: The article revisits an old image-dotting technique, explains how it works, and proposes simpler new versions with code included. In the comments, readers turned it into a showdown over missing rival methods, animation worries, and a flashy tool plug — plus a surprise “wait, that’s Bisqwit?!” moment.
A deep dive into a 2011 image-making trick might sound like quiet math-club material, but the comment section had other plans. The article itself revisits Joel Yliluoma’s ordered dithering method — basically a clever way to turn smooth digital pictures into stylish dot patterns with limited colors — then simplifies it, compares it to newer methods, and drops source code for the brave. In plain English: this is about making retro-looking images look better, with fewer ugly artifacts and more control.
But the real fireworks came from readers. One commenter stormed in with a full-on flex, claiming they built the only interactive version and the only GPU-accelerated version at DitherMark, which is exactly the kind of “my app can beat up your app” energy the internet runs on. Another delivered the sharpest drive-by of the thread: “Where Floyd–Steinberg?” Translation for non-graphics people: “Cool article, but why didn’t you mention the other famous method everyone argues about?” Instant tiny drama, classic nerd-subtweet vibes.
Then there was the practical panic: does it work in animation? That one question hints at a bigger issue — a technique that looks gorgeous in one still image can turn into a flickery mess in motion. And for extra plot twist energy, one reader realized Joel Yliluoma is actually Bisqwit, the beloved YouTube tinkerer behind everything from game emulators to raw assembly videos. Suddenly this wasn’t just an article about dots. It was a mini fandom reunion, a tool plug, a method war, and a surprise creator reveal all rolled into one wonderfully pixelated mess.
Key Points
- •The article revisits Joel Yliluoma’s 2011 ordered dithering algorithm, explains its internals, proposes simplified variants, and compares them with a state-of-the-art method.
- •It begins with a 1-bit ordered dithering explanation using a tiled 4x4 Bayer threshold matrix and provides code showing threshold-based black-or-white output.
- •The article states that simple ordered dithering in black and white can look grainy and identifies Atkinson error diffusion dithering as a better option for 1-bit output.
- •For color images, it presents a method that treats the threshold matrix as structured noise, adds a scaled offset to each pixel color, and then selects the nearest palette color.
- •The article says the greyscale-offset approach works acceptably with image-specific palettes but can produce desaturated results for arbitrary palettes, and it introduces N-candidate methods as a more advanced alternative.