Skip to content

Instantly share code, notes, and snippets.

View EricEisaman's full-sized avatar

SirFizX EricEisaman

View GitHub Profile
@EricEisaman
EricEisaman / SimpleHTTPServerWithUpload.py
Created January 16, 2017 16:41 — 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.
"""
@EricEisaman
EricEisaman / SimpleHTTPServerWithUpload.py
Created January 16, 2017 16:40 — forked from touilleMan/SimpleHTTPServerWithUpload.py
Simple Python Http Server with Upload - Python3 version
#!/usr/bin/env python3
"""Simple HTTP Server With Upload.
This module builds on BaseHTTPServer by implementing the standard GET
and HEAD requests in a fairly straightforward manner.
see: https://gist.github.com/UniIsland/3346170
"""
@EricEisaman
EricEisaman / index.html
Created December 5, 2013 19:05
Processing.js
<!doctype html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width" />
<title>$title</title>
$styles
</head>
<body>
<h1>$title</h1>