Skip to content

Instantly share code, notes, and snippets.

@hikerpig
hikerpig / 0_reuse_code.js
Created April 22, 2014 02:28
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@hikerpig
hikerpig / SimpleHTTPServerWithUpload.py
Created October 17, 2018 05:52 — forked from UniIsland/SimpleHTTPServerWithUpload.py
Simple Python Http Server with Upload
#!/usr/bin/env python
"""Simple HTTP Server With Upload.
This module builds on BaseHTTPServer by implementing the standard GET
and HEAD requests in a fairly straightforward manner.
"""