Skip to content

Instantly share code, notes, and snippets.

View wyoumans's full-sized avatar
💭
Laraveling

Will wyoumans

💭
Laraveling
View GitHub Profile
@therabidbanana
therabidbanana / git-dash.sh
Created February 10, 2011 22:18
A shell script to show status of several git directories at once.
#!/bin/bash
git_is_dirty(){
if [[ $(git status 2> /dev/null | tail -n1) != "nothing to commit (working directory clean)" ]]; then
echo "1"
else
echo "0"
fi
}
DIR=`pwd`
@RandomEtc
RandomEtc / README.mkd
Created September 28, 2010 00:11
smooth panning and zooming for polymaps
@redoPop
redoPop / .gitignore
Created June 18, 2010 22:08
Template .gitignore file for WordPress projects
# This is a template .gitignore file for git-managed WordPress projects.
#
# Fact: you don't want WordPress core files, or your server-specific
# configuration files etc., in your project's repository. You just don't.
#
# Solution: stick this file up your repository root (which it assumes is
# also the WordPress root directory) and add exceptions for any plugins,
# themes, and other directories that should be under version control.
#
# See the comments below for more info on how to add exceptions for your