Skip to content

Instantly share code, notes, and snippets.

View TabTwo's full-sized avatar

Ralph J.Mayer TabTwo

View GitHub Profile
@TabTwo
TabTwo / snowden-ietf93.md
Last active August 29, 2015 14:27 — forked from mnot/snowden-ietf93.md
Transcript of Edward Snowden's comments at IETF93.
#!/bin/sh
# router name generator
# [ omachonu ogali / oogali at blip dot tv / @oogali ]
#
# README:
# 1. point at your router with a community
# 2. finesse names as needed into your DNS zones
# 3. have a cold beverage of your choosing.
#
@TabTwo
TabTwo / hack.sh
Created August 4, 2012 21:59 — forked from jnorthrop/hack.sh
OSX For Hackers
#!/usr/bin/env sh
# This fork from https://gist.github.com/2260182 eliminates some of
# the prefs I didn't want to change.
##
# This is script with usefull tips taken from:
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx
#
# install it:
#!/usr/bin/python
import os
from getpass import getpass
import paramiko
def deploy_key(key, server, username, password):
client = paramiko.SSHClient()
client.set_missing_host_key_policy(paramiko.AutoAddPolicy())
client.connect(server, username=username, password=password)