Skip to content

Instantly share code, notes, and snippets.

@nvanderw
nvanderw / zalgo.py
Created April 25, 2013 21:52
Zalgo
from __future__ import division
import sys
from random import SystemRandom
# A list of unicode combining characters
COMBINING = [unichr(c) for c in xrange(0x300, 0x370)]
ZalgoError = KeyError