Skip to content

Instantly share code, notes, and snippets.

View mgapatrick's full-sized avatar

Melanie G. A. PATRICK mgapatrick

View GitHub Profile
@mgapatrick
mgapatrick / fronttrends2012.txt
Created April 30, 2012 10:16
FrontTrends 2012
------------------------------
DAY 1
------------------------------
10:20 Vitaly Friedman: Responsive Design: Smashing Magazine's case study
http://www.smashingmagazine.com/
pre-condition:
width 1024px
fully accessible without images
@mgapatrick
mgapatrick / bash_profile.txt
Created July 21, 2016 15:38
custom bash prompt
# copy into your .bash_profile or .bashrc
function parse_git_dirty {
[[ $(git status 2> /dev/null | tail -n1) != "nothing to commit, working directory clean" ]] && echo "*"
}
function parse_git_branch {
git branch --no-color 2> /dev/null | sed -e '/^[^*]/d' -e "s/* \(.*\)/[\1$(parse_git_dirty)]/"
}
export PS1='\u@\h \[\033[1;33m\]\w\[\033[0m\]$(parse_git_branch)$ '