Skip to content

Instantly share code, notes, and snippets.

View jackpinto's full-sized avatar

Jackson Pinto jackpinto

View GitHub Profile
@jackpinto
jackpinto / Pattern para o Intellisense Visual Studio
Created January 29, 2014 14:34
Pattern usado pelo Visual Studio para lançar o intellisense
{}[]().,:;+-*/%&|^!~=<>?@#'"\
@jackpinto
jackpinto / .bashrc
Last active December 15, 2015 22:09 — forked from henrik/.bashrc
# http://henrik.nyh.se/2008/12/git-dirty-prompt
# http://www.simplisticcomplexity.com/2008/03/13/show-your-git-branch-name-in-your-prompt/
# username@Machine ~/dev/dir[master]$ # clean working directory
# username@Machine ~/dev/dir[master*]$ # dirty working directory
function parse_git_dirty {
[[ $(git status 2> /dev/null | tail -n1) != "nothing to commit (working directory clean)" ]] && echo "*"
}
function parse_git_branch {