Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am andatche on github.
  • I am andatche (https://keybase.io/andatche) on keybase.
  • I have a public key whose fingerprint is 7A25 B9CB D644 A3F5 5615 B193 A545 5B42 E54A C47A

To claim this, I am signing this object:

@andatche
andatche / gist:7676982
Created November 27, 2013 14:53
Quick hack to verify SSL cert/keys match
#!/bin/bash
if [[ ! $# -eq 2 ]]
then
echo "USAGE: $0 <key path> <certificate path>"
exit 1
fi
KEY=$1
CERT=$2
@andatche
andatche / hack.sh
Created April 1, 2012 23:37 — forked from erikh/hack.sh
OSX For Hackers
#!/usr/bin/env sh
##
# This is script with usefull tips taken from:
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx
#
# install it:
# curl -sL https://raw.github.com/gist/2108403/hack.sh | sh
#