Simple static HTTP server in Python
Suppose you need to transfer some files from Linux machine to another machine that does not have any other file transfer client available than browser (ie - regular Windows machine). So instead of trying to figure out how to configure Apache and/or start copying files to Apache's htdocs dir, you can simply do this in a directory containing these files:
python -m SimpleHTTPServer
I wish I had known it few years ago...