General

gisty

A while back, I blogged about a little Python program I wrote that uploads snippets to gist from the command-line. Well, Martin Cozzi took the original gist and made a full-fledged GitHub project out of it, called gisty. So now...
ProgrammingPython

Python ternary operator

Today's Python discovery: Python doesn't have the C style ?: ternary operator (e.g.: cond ? valueIfTrue : valueIfFalse). But as of Python 2.5 it has a ternary operator with its own syntax: value_when_true if condition else...