This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| cordova plugin ls | |
| cordova plugin add org.apache.cordova.media | |
| cordova plugin add com.ionic.keyboard | |
| cordova plugin remove com.ionic.keyboard |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| heroku run bash | |
| heroku run node | |
| heroku plugins:install https://github.com/naaman/heroku-vim | |
| heroku vim |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| git log | |
| git log --oneline | |
| git log --stat | |
| git log --patch | |
| git log --graph | |
| git log --graph --all --decorate --oneline | |
| git log --graph --full-history --all --pretty=format:"%h%x09%d%x20%s" | |
| git log --graph --full-history --all --color --pretty=format:"%x1b[31m%h%x09%x1b[32m%d%x1b[0m%x20%s" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| git diff | |
| git diff --staging | |
| git diff --color0words | |
| git diff --word-diff | |
| git diff --stat |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| git reset --hard # removes staged and working directory changes | |
| git clean -f -d # remove untracked files |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| border: 1in solid black; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #share ul{ | |
| list-style-type: none; | |
| margin: 0; | |
| padding: 0; | |
| } | |
| #share li{ | |
| display: inline; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // color even rows | |
| tr:nth-child(2n){ | |
| background-color: @lighter; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /*TILT*/ | |
| .tilt { | |
| -webkit-transition: all 0.5s ease; | |
| -moz-transition: all 0.5s ease; | |
| -o-transition: all 0.5s ease; | |
| -ms-transition: all 0.5s ease; | |
| transition: all 0.5s ease; | |
| } | |
| .tilt:hover { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -webkit-transition: all 0.7s ease-out; | |
| transition: all 0.7s ease-out; |