changeset 2332:d58de78dc914

<oerjan> fetch http://oerjan.nvg.org/colorize
author HackBot
date Fri, 01 Mar 2013 03:20:46 +0000
parents 2d4a84770216
children dcbc60550ce6
files colorize.1
diffstat 1 files changed, 9 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/colorize.1	Fri Mar 01 03:20:46 2013 +0000
@@ -0,0 +1,9 @@
+#!/usr/bin/env python
+import random
+import re
+w=raw_input()
+p=list('x'*len(w)+'C'*int((341-len(w))/3+1))
+random.shuffle(p)
+p=re.sub('C+','C',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)