Visit my blog or connect with me on Twitter
git init
or
| #!/usr/bin/python -u | |
| import sys, json | |
| from pygments import highlight | |
| from pygments.lexers import JsonLexer | |
| from pygments.formatters import Terminal256Formatter | |
| while True: | |
| line = sys.stdin.readline() | |
| if line.strip(): |
Visit my blog or connect with me on Twitter
git init
or