Skip to content

Instantly share code, notes, and snippets.

View mamachanko's full-sized avatar
🐙
deep sea work

Max Brauer mamachanko

🐙
deep sea work
View GitHub Profile
import sys
import math
from random import random
from PIL import Image, ImageOps, ImageEnhance
def dot(bits):
bits = bits & 7 | (bits & 112) >> 1 | (bits & 8) << 3 | bits & 128
return unichr(0x2800 + bits)
class Grayscale24: