Assumptions that regular people are familiar with these terms will likely result in communication failure.
- Yak Shaving
- Rubberducking
- Bikeshedding
- Dogfooding
- Grok
| # ~/.tmuxinator/angularstarter.yml | |
| name: angularstarter | |
| root: ~/Sites/angularStarter | |
| windows: | |
| - editor: | |
| layout: main-vertical | |
| panes: | |
| - vim |
| #!/bin/bash | |
| source "$HOME/.rvm/scripts/rvm" | |
| rvm use 2.0.0-p598 | |
| bundle install | |
| middleman build --clean | |
| middleman deploy |
http://xecdesign.com/qemu-emulating-raspberry-pi-the-easy-way/
sudo apt-get update sudo apt-get upgrade
wget http://node-arm.herokuapp.com/node_latest_armhf.deb sudo dpkg -i node_latest_armhf.deb
name: Testing 101 class: middle, center
| // Same short bit of js makes both of these sets of markup work the same way. | |
| <section ng-class="{ 'active': accordionA == 1}"> | |
| <h2 ng-click="accordionToggle($event, 'accordionA', 1)">Title 1 - A</h2> | |
| <div> | |
| ... | |
| </div> | |
| </section> | |
| // Another appropriate flavor of maring up and accordion flavors. |
| %listless { | |
| list-style: none; | |
| margin: 0; | |
| padding: 0; | |
| } | |
| ul.nav { | |
| @extend %listless; | |
| } |
| #!/bin/bash | |
| # CONFIG | |
| # Give options empty values to bypass checks ("OPTIONNAME=") | |
| # whether to check ig git merge conflicts have been added | |
| CONFLICTS=1 | |
| # Simple check for merge conflics | |
| if [[ -n $CONFLICTS ]]; then |
| name: [project name] | |
| root: ~/Sites/[project name] | |
| windows: | |
| - editor: | |
| layout: main-vertical | |
| panes: | |
| - vim | |
| - grunt watch:scripts | |
| - server: grunt watch |