# HG changeset patch # User HackBot # Date 1440887422 0 # Node ID f1a8b7c7ac5d4a99284cca1d9ef57f570d76adac # Parent de0ac7e571e85ad442bf92c76293b851504bf22e sed -i \'s/read()/read(3)/\' bin/loudly diff -r de0ac7e571e8 -r f1a8b7c7ac5d bin/loudly --- a/bin/loudly Sat Aug 29 22:27:42 2015 +0000 +++ b/bin/loudly Sat Aug 29 22:30:22 2015 +0000 @@ -1,5 +1,5 @@ #!/usr/bin/env python import sys, itertools -inp = sys.stdin.read() or sys.argv[1] +inp = sys.stdin.read(3) or sys.argv[1] cyc = itertools.cycle(["\00304,09","\00309,04"]) print "".join(cyc.next() + c for c in inp)