comparison bin/zalgo @ 2925:53551d5bf4da

<Jafet> mv bin/zalgo{2,}
author HackBot
date Sun, 19 May 2013 05:17:17 +0000
parents 4cc75b611f79
children
comparison
equal deleted inserted replaced
2924:4cba53dea490 2925:53551d5bf4da
1 (binary file application/octet-stream, hash: ad68f09b2e77d131b2560931db98aa018b871f07) 1 #!/usr/bin/python
2 import codecs,sys,random
3 stdin=codecs.getreader("utf-8")(sys.stdin)
4 stdout=codecs.getwriter("utf-8")(sys.stdout)
5 x=[unichr(0x300+i) for i in range(0,112)+[393,2887]]
6 def z(n,c):
7 if c in ["\n"]+x:
8 n=0
9 return u"".join(x[random.randrange(0,len(x))] for i in range(n))
10 stdout.write(u"".join(c+z(2,c) for c in stdin.read()) + u"\n")