Code

favicon generation stuff
[roundup.git] / tools / base64
diff --git a/tools/base64 b/tools/base64
new file mode 100755 (executable)
index 0000000..22e4bfb
--- /dev/null
@@ -0,0 +1,3 @@
+#!/usr/bin/env python
+import zlib, base64, sys
+print base64.encodestring(zlib.compress(sys.stdin.read()))