Skip to content

Instantly share code, notes, and snippets.

View cmckni3's full-sized avatar

Chris McKnight cmckni3

View GitHub Profile
@cmckni3
cmckni3 / README.md
Last active January 30, 2024 22:32
Objective-C Clean Style

Style settings for Objective-C in XCode

@cmckni3
cmckni3 / rbenv-bash.bash
Last active October 13, 2015 23:27
install rbenv on a Linux/Mac account
#!/usr/bin/bash
# Clone rbenv and set it up to build versions of ruby
git clone git://github.com/sstephenson/rbenv.git .rbenv
mkdir -p ~/.rbenv/plugins
cd ~/.rbenv/plugins
git clone git://github.com/sstephenson/ruby-build.git
# Optional
@cmckni3
cmckni3 / symfony-mac.sh
Last active October 4, 2015 06:08
symfony propel setup for Mac OS X
# this script sets up a new symfony 1.4.x installation and installs the propel ORM plugin on Mac OS X
#!/bin/bash
if [ $# == 0 ]; then
echo "Usage: $0 projectname"
exit 1
fi
mkdir $1 && cd $1