view bin/zalgo2 @ 2924:4cba53dea490

<Jafet> echo $\'#!/usr/bin/python\\nimport codecs,sys,random\\nstdin=codecs.getreader("utf-8")(sys.stdin)\\nstdout=codecs.getwriter("utf-8")(sys.stdout)\\nx=[unichr(0x300+i) for i in range(0,112)+[393,2887]]\\ndef z(n,c):\\n if c in ["\\\\n"]+x:\\n n=0\\n return u"".join(x[random.randrange(0,len(x))] for i in range(n))\\nstdout.write(u"".join(c+z(2,c) for c in stdin.read()) + u"\\\\n")\' > bin/zalgo2 && chmod +x bin/zalgo2 && echo HE COMES | zalgo2
author HackBot
date Sun, 19 May 2013 05:16:36 +0000
parents 02b04d2b8759
children
line wrap: on
line source

#!/usr/bin/python
import codecs,sys,random
stdin=codecs.getreader("utf-8")(sys.stdin)
stdout=codecs.getwriter("utf-8")(sys.stdout)
x=[unichr(0x300+i) for i in range(0,112)+[393,2887]]
def z(n,c):
 if c in ["\n"]+x:
  n=0
 return u"".join(x[random.randrange(0,len(x))] for i in range(n))
stdout.write(u"".join(c+z(2,c) for c in stdin.read()) + u"\n")