SimpleHTTPServer has become even simpler in Python 3
by @mzrnsh
One of the simplest ways to serve a static website on locally has forever been opening up a terminal window, "cd"-ing to the website folder and running Python's SimpleHTTPServer in it:
python -m SimpleHTTPServer 8000
Today I learned that the command has become a bit more memorable in Python 3:
python3 -m http.server