Skip to content

Instantly share code, notes, and snippets.

View elimc's full-sized avatar

Eli McMakin elimc

  • Eli McMakin
  • Austin, TX
View GitHub Profile
# Command line prompt.
export PS1="\n\[\033[32m\]\w\[\033[1;36m\]\$(parse_git_branch)\n\[\033[33;1m\]❯ "
# Colorize the command line.
export CLICOLOR=1
export LSCOLORS=ExFxBxDxCxegedabagacad
# Set paths to my applications.
export PATH="/usr/local/Cellar/git/:/usr/local/Cellar/ruby/:/Applications/AMPPS/php/bin:/Applications/AMPPS/mysql/bin:/usr/local/bin:/usr/local/git/bin:$HOME/Scripts/wp-completion.bash:/usr/local/sbin:/usr/bin:/bin:/usr/sbin:/sbin"
@elimc
elimc / gist:3558868
Created August 31, 2012 20:56
Retina CSS example
@media only screen and (-moz-min-device-pixel-ratio: 1.5),
only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (min-device-pixel-ratio: 1.5)
{
#test {
background: url(../images/test@2.png) no-repeat center center;
-webkit-background-size: 25px 25px;
-moz-background-size: 25px 25px;
background-size: 25px 25px;
)