Skip to content

Instantly share code, notes, and snippets.

@clivegross
clivegross / autossh.init.sh
Created September 14, 2017 10:49 — forked from Clement-TS/autossh.init.sh
Autossh init script (Ubuntu) for ssh tunneling
#! /bin/sh
# author: Clément Désiles
# date: 01/08/2016
# source: https://gist.github.com/suma/8134207
# source: http://stackoverflow.com/questions/34094792/autossh-pid-is-not-equal-to-the-one-in-pidfile-when-using-start-stop-daemon
### BEGIN INIT INFO
# Provides: autossh
# Required-Start: $remote_fs $syslog
# Required-Stop: $remote_fs $syslog
@clivegross
clivegross / app.py
Created March 28, 2016 14:49
Falcon Framework troubleshooting byte string request
class LoginResource(object):
def __init__(self, db):
self.db = db
self.logger = logging.getLogger('test.' + __name__)
def on_post(self, req, resp):
"""Handles GET requests"""
print(req.get_header)
print(req.content_type)