Skip to content

Instantly share code, notes, and snippets.

View peterdeweese's full-sized avatar

Peter DeWeese peterdeweese

View GitHub Profile
@peterdeweese
peterdeweese / openssl-build.sh
Created July 26, 2016 21:23
openssl fips help
#!/bin/bash
# This script builds the iOS and Mac openSSL libraries
# Download openssl http://www.openssl.org/source/ and place the tarball next to this script
# Credits:
# https://github.com/st3fan/ios-openssl
# https://github.com/x2on/OpenSSL-for-iPhone/blob/master/build-libssl.sh
@peterdeweese
peterdeweese / gitflow-tutorial.sh
Created December 10, 2012 16:05
Gitflow Tutorial
set -o verbose
set -o errexit
echo '* Create and initialize a repository.'
git init gitflow-tutorial
cd gitflow-tutorial/
git flow init -d
echo '* Develop a Feature'