Jim Hall

Authored Content

Why FreeDOS has 16 colors

Why does text only come in this limited palette, and why does FreeDOS use those colors and shades, instead of some other colors? The answer, like many things in technology, is…

(Correspondent)
June 17, 2021

Authored Comments

I'll add that I adapted the Numbers game for my article. The show does the Numbers game with two sets of small numbers 1-10, and one set of large numbers: 25, 50, 75, and 100. But 'seq 25 25 100' doesn't show off the 'seq' command very well. :-) To do the Numbers game more like the show, do this:

seq 25 25 100 | shuf | head -2
(seq 1 10 ; seq 1 10) | shuf | head -4
echo 'and the target is:'
echo $(( RANDOM % 800 + 200 ))

Kevin, I love that you're writing these articles. Keep it up!