HN Hall of Fame Weekly email

Explaining Code Using ASCII Art

blog.regehr.org Essays & writing Essays & articles Software engineering Candidate
Screenshot of blog.regehr.org captured 2026-07-20
Page preview · captured 2026-07-20

Resurfaced independently across 5 calendar years, with breakout response in 2 of them.

submissions
5
submitters
5
observed span
2019–2024
peak thread · 80 comments
232 pts
latest 20+ return · 2022-06-27
232 pts

Submission timeline

2007–2026

One slot for every year since HN launched. Height is that year's peak points; orange marks a 100+ point or 50+ comment breakout. Select a bar to open its strongest thread.

First comments on top threads

HN comment order

Man - this is my fkn brand. Plain text is almost a universal truth -- and it's easy to church up your documentation with a well presented ASCII chart. Some ANSI Color Codes and ASCIInema can carry you a long way. Here's a list of plain text information tools from my notes: https://mbarkhau.keybase.pub/asciigrid/ https://gitlab.com/mbarkhau/asciigrid/ ascii-tables is exactly what is says on the label. https://ozh.github.io/ascii-tables/ https://github.com/ozh/ascii-tables/ https://www.netpen.io/main/…

A little ASCII art for math from a code snippet of mine: // // B(m,n)(x) = binomial(m,n) * (1-x)^(m-n) * x^n // __ m-n // (1-x)^(m-n) = \ (-1)^i * binomial(m-n,i) * x^i // /_ i=0 // __ m-n // B(m,n)(x) = binomial(m,n) \ (-1)^i * binomial(m-n,i) * x^(i+n) // /_ i=0 // Polynomial Polynomial::bernstein(unsigned m, unsigned n) { Polynomial B(m); unsigned j = m-n; double scale = binomial(m,n); for (unsigned i = 0; i <= j; i++) if (isEven(i))…

The first top-level comment from each of the four biggest threads, in HN’s own order. Excerpts are shortened; open a comment for full context.

Breakout years
2

100+ points or 50+ comments

Total points
452

reference only — not used in Hall rules or ranking

Total comments
127

reference only — not used in Hall rules or ranking

Every submission

DateTitle as submittedByPointsComments
2019-02-18Explaining Code Using ASCII ArtFirst breakoutdmit20947
2020-06-26Explaining Code using ASCII Art (2019)galacticdessert30
2021-06-17Explaining Code using ASCII Art (2019)bshanks50
2022-06-27Explaining Code Using ASCII ArtBest thread · Latest 20+ point returnbehnamoh23280
2024-04-25Explaining code using ASCII artmemalign30