Skip to content

Instantly share code, notes, and snippets.

@hdasch
hdasch / keybase.md
Created October 7, 2018 02:27
Keybase proof

Keybase proof

I hereby claim:

  • I am hdasch on github.
  • I am hdasch (https://keybase.io/hdasch) on keybase.
  • I have a public key ASCB-T9MXSmdElyQh13QWO9b51zHp_jtmLNyxH2BK_hn6Qo

To claim this, I am signing this object:

@hdasch
hdasch / server.py
Created October 10, 2017 20:26
Simple server responding to http://localhost:9000/
# Adapted from https://wiki.python.org/moin/BaseHttpServer
import BaseHTTPServer
HOST_NAME = 'localhost'
PORT_NUMBER = 9000
class LocalHandler(BaseHTTPServer.BaseHTTPRequestHandler):
def do_HEAD(s):