view bin/distort @ 9430:0f5140c4ba5b

<boily> learn Eyebrows are Taneb\'s most notable feature. Their knots can walk uphill through seven feet of snow.
author HackBot
date Tue, 25 Oct 2016 23:43:49 +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]