# HG changeset patch # User HackBot # Date 1361831625 0 # Node ID 129aa859f1db46f72f1c3289c3eeb9a8218fbfdd # Parent 2aed4650d9abc2cfd3490e7fd12172e002560a45 sed -i \'s/str[^ ]*/\'\\\'\'%02d\'\\\'\' % random.randrange(2,15)/\' bin/colorize diff -r 2aed4650d9ab -r 129aa859f1db bin/colorize --- a/bin/colorize Mon Feb 25 22:23:55 2013 +0000 +++ b/bin/colorize Mon Feb 25 22:33:45 2013 +0000 @@ -1,2 +1,2 @@ #!/bin/sh -python -c "import random; w=raw_input(); p=list('x'*len(w)+'C'*int((350-len(w))/3+1)); random.shuffle(p); i=(c for c in w); print ''.join(i.next() if c=='x' else chr(3)+str(random.randrange(2,15)) for c in ['C']+p)" +python -c "import random; w=raw_input(); p=list('x'*len(w)+'C'*int((350-len(w))/3+1)); random.shuffle(p); i=(c for c in w); print ''.join(i.next() if c=='x' else chr(3)+'%02d' % random.randrange(2,15) for c in ['C']+p)"