I hereby claim:
- I am juanfernandes on github.
- I am juanfernandes (https://keybase.io/juanfernandes) on keybase.
- I have a public key ASCNPfnhhCmCmE2iGXsOlKcNB4MfPGdrKOm8AuoJDiYT7wo
To claim this, I am signing this object:
| # http://lancespeelmon.wordpress.com/2012/05/10/three-tips-for-creating-the-best-ever-git-command-line/ | |
| c_cyan=`tput setaf 6` | |
| c_red=`tput setaf 1` | |
| c_green=`tput setaf 2` | |
| c_sgr0=`tput sgr0` | |
| parse_git_branch () | |
| { | |
| if git rev-parse --git-dir >/dev/null 2>&1 | |
| then |
| Let's say you have the following HTML: | |
| <div id="module"> | |
| <p> | |
| This is some <b>example</b> text | |
| <span>with some random markup.</span> | |
| </p> | |
| </div> | |
| If you want to grab all the text content inside of #module, you can do this: |
I hereby claim:
To claim this, I am signing this object:
| [ | |
| {name: 'Afghanistan', code: 'AF'}, | |
| {name: 'Åland Islands', code: 'AX'}, | |
| {name: 'Albania', code: 'AL'}, | |
| {name: 'Algeria', code: 'DZ'}, | |
| {name: 'American Samoa', code: 'AS'}, | |
| {name: 'AndorrA', code: 'AD'}, | |
| {name: 'Angola', code: 'AO'}, | |
| {name: 'Anguilla', code: 'AI'}, | |
| {name: 'Antarctica', code: 'AQ'}, |
| *:focus { | |
| outline: 2px solid rebeccapurple; | |
| box-shadow: 0 1px 1px rgba(0,0,0,.075) inset,0 0 8px rebeccapurple; | |
| } |
| #!/usr/bin/env bash | |
| git branch | grep -v $(git rev-parse --abbrev-ref HEAD) | xargs git branch -D |
| <div id="header"></div> | |
| <style> | |
| #header { | |
| position: fixed; | |
| background: pink; | |
| height: 72px; | |
| width: 100%; | |
| opacity: 0.2; | |
| transition: all 300ms ease; |
| defaults write com.apple.Dock autohide-delay -float 1000000 && killall Dock | |
| defaults delete com.apple.Dock autohide-delay |