Skip to content

Instantly share code, notes, and snippets.

@dnshl
dnshl / HTTPServer
Created December 17, 2011 13:32
Python one liner starts a HTTP server in the current directory.
# Python 2.x:
python -m SimpleHTTPServer
# Python 3.x:
python -m http.server 8000
@dnshl
dnshl / histimeformat
Created December 14, 2011 23:17
Date and Time Information for Bash History
# History with time and date
export HISTTIMEFORMAT="- [%a %d. %h %H:%M:%S] - "