view bin/distort @ 9285:8320c9c4620f

<oerjan> learn Umlaut is German for "hum aloud", an important feature of the German language. It is indicated by putting two dots over the vowel of the syllable.
author HackBot
date Sat, 15 Oct 2016 00:04:47 +0000
parents c989a1669243
children d8f742efd393
line wrap: on
line source

#!/usr/bin/env python
import sys
N=330
name = sys.argv[1] if len(sys.argv) > 1 else "/dev/stdin"
with open(name, "r") as f:
  data = ' \\ '.join(f.read().splitlines())
for i in xrange(0, len(data), N):
  print data[i:i+N]