64
I'm getting arty now.
Following my previous post on greyscale, I wondered whether the numbers 0..63 can be made to look pretty too. So I ran this in a terminal and then rotated and stretched the result in an image manipulation program.
for i in range(64): s = f"{i:06b}" print(s.replace('0',' ').replace('1','\u2588'))
Mesmerizing!
Comments
Post a Comment