Skip to content

Instantly share code, notes, and snippets.

View ryross's full-sized avatar

Ryder Ross ryross

View GitHub Profile
@ryross
ryross / kreate.sh
Created August 5, 2010 04:07
kreate.sh
#!/bin/bash
dir=$(pwd)
project=''
# Check for Git
type -P git || { echo 'Git is not installed. Exiting.'; exit 1; }
while [ "$1" != '' ]
do
case $1 in
#!/bin/bash
dir=$(pwd)
project=''
# Check for Git
type -P git || { echo 'Git is not installed. Exiting.'; exit 1; }
while [ "$1" != '' ]
do
case $1 in
@ryross
ryross / Helper_States
Created April 12, 2010 21:57
Helper_States
<?php defined('SYSPATH') or die('No direct script access.');
class Helper_States
{
public static $state_list = array(
'alabama' => 'Alabama',
'alaska' => 'Alaska',
'arizona' => 'Arizona',
'arkansas' => 'Arkansas',
[2:24pm] <MaximusColourum_>four tet
[2:24pm] <MaximusColourum_> eoto
[2:24pm] <MaximusColourum_> sound tribe sector 9
[2:24pm] <MaximusColourum_> 5 style
[2:25pm] <MaximusColourum_> the duo
[2:25pm] <MaximusColourum_> aka Benevento Russo Duo
[2:25pm] <MaximusColourum_> ryduh hope that helps keep you going for a while ^^
[2:26pm] <ryduh> it will lol. thanks. I'm checking out Four Tet right now
[2:27pm] <MaximusColourum_> the next two are electronica jam bands. the duo play an old ass soundcraft keyboard and a simple jazz drum set. 5 style is as it says in the name, a hodge podge of stuff
javascript:elms=document.getElementById('friends').getElementsByTagName('li');for(var fid in elms){if(typeof elms[fid] === 'object'){fs.click(elms[fid]);}}
@ryross
ryross / .profile
Created March 5, 2010 19:00
bash script for git branch recognition
function find_git_branch {
local dir=. head
until [ "$dir" -ef / ]; do
if [ -f "$dir/.git/HEAD" ]; then
head=$(< "$dir/.git/HEAD")
if [[ $head == ref:\ refs/heads/* ]]; then
git_branch=" (${head#*/*/})"
elif [[ $head != '' ]]; then
git_branch=' (detached)'
else