Skip to content

Instantly share code, notes, and snippets.

View shibug's full-sized avatar
💭
I may be slow to respond.

nitros shibug

💭
I may be slow to respond.
  • Better World
  • Dallas, TX
  • X @nitros
View GitHub Profile
@charlesponti
charlesponti / uninstall_homebrew.sh
Created January 27, 2016 16:54
Uninstall Homebrew
#!/bin/sh
# Just copy and paste the lines below (all at once, it won't work line by line!)
# MAKE SURE YOU ARE HAPPY WITH WHAT IT DOES FIRST! THERE IS NO WARRANTY!
function abort {
echo "$1"
exit 1
}
set -e
@phrawzty
phrawzty / 2serv.py
Last active June 30, 2024 05:39
simple python http server to dump request headers
#!/usr/bin/env python2
import SimpleHTTPServer
import SocketServer
import logging
PORT = 8000
class GetHandler(SimpleHTTPServer.SimpleHTTPRequestHandler):