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
| sudo apt-get install zsh tmux | |
| bash <( curl -s https://raw.github.com/pierot/termieter/master/install ) | |
| sudo chsh -s /bin/zsh | |
| git clone git://github.com/proximitybbdo/vim.git ~/.vim | |
| cd ~/.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
| bash <( curl https://gist.github.com/pierot/5636319/raw/21acb455afbf471f5937682ffa2a8cf4bdfea06b/termieter-vim.sh ) |
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
| wget -N --quiet https://raw.github.com/pierot/termieter/master/install -O termieter-install.sh | |
| chmod +x termieter-install.sh | |
| source ./termieter-install.sh | |
| source ~/.bash_profile | |
| chsh -s /bin/zsh | |
| # 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
| assets/ | |
| js/ | |
| main.js | |
| main.js.map | |
| main.map | |
| main.min.js |
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
| $ grunt watch:sass |
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
| $ grunt watch:app |
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
| $ grunt |
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
| $ npm install |
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
| assets/ | |
| js/ | |
| *.js | |
| coffee/ | |
| **/*.coffee | |
| img/ | |
| fonts/ | |
| css/ | |
| *.sass | |
| *.css |
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
| // This sketch will send out a Nikon D50 trigger signal (probably works with most Nikons) | |
| // See the full tutorial at http://www.ladyada.net/learn/sensors/ir.html | |
| // this code is public domain, please enjoy! | |
| int IRledPin = 13; // LED connected to digital pin 13 | |
| // The setup() method runs once, when the sketch starts | |
| void setup() { | |
| // initialize the IR digital pin as an output: |