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: |
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
/* Raw IR decoder sketch! | |
This sketch/program uses the Arduno and a PNA4602 to | |
decode IR received. This can be used to make a IR receiver | |
(by looking for a particular code) | |
or transmitter (by pulsing an IR LED at ~38KHz for the | |
durations detected | |
Code is public domain, check out www.ladyada.net and adafruit.com | |
for more tutorials! | |
*/ |
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
DEVELOPMENT: | |
<script data-main='/assets/js/build' src="/assets/js/vendor/require.js"></script> | |
PRODUCTION | |
<script data-main='/assets/js/main.min' src="/assets/js/vendor/require.js"></script> |