One-time Dependency Setup/Configuration
wget https://getcomposer.org/download/1.1.0/composer.phar && chmod +x composer.phar && sudo mv /usr/local/bin/composer && composer self-update
| ====== | |
| Videos | |
| ====== | |
| DevOps | |
| What is DevOps? by Rackspace - Really great introduction to DevOps | |
| https://www.youtube.com/watch?v=_I94-tJlovg | |
| Sanjeev Sharma series on DevOps (great repetition to really get the DevOps concept) |
git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
| /* GLOBAL STYLES */ | |
| h3 {text-align:center;} | |
| /* PRINT VERSION */ | |
| @media print { | |
| h3:after {content: ' - PRINT'; display: inline;} | |
| } | |
| /* PHONE LANDSCAPE VERSION */ | |
| @media only screen and (min-width: 320px) and (orientation : landscape) { |
| @media all and (max-width: 1024px) {...} | |
| @media all and (min-width: 800px) and (max-width: 1024px) {...} | |
| @media not screen and (color) {...} | |
| @media only screen and (orientation: portrait) {...} | |
| @media all and (max-width: 420px) { | |
| section, aside { | |
| float: none; | |
| width: auto; | |
| } |