Posts

Showing posts from July, 2012

Stick figure gets it.

Image

Follow the eyes

Image

KEEP PYTHON WEIRD

Image

pretty print json

Pretty Print JSON How to pretty print json from the command line? $ echo '{"foo": "lorem", "bar": "ipsum"}' | python -mjson.tool { "bar": "ipsum", "foo": "lorem" } $ python -mjson.tool < /tmp/input.json { "bar": "ipsum", "foo": "lorem" } $ curl http://rene.f0o.com/~rene/json_example.json | python -mjson.tool { "bar": "ipsum", "foo": "lorem" }