⌘T | go to file |
⌘⌃P | go to project |
⌘R | go to methods |
⌃G | go to line |
⌘KB | toggle side bar |
⌘⇧P | command prompt |
This file contains 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
#!/bin/bash | |
#This script watches your project folder and outputs a HTML5 Manifest to $OUT | |
#You may need to change the location of your depency scripts | |
#Dependencies: confess.js and phantomjs | |
#Usage: sh manigest_generator.sh <url> <dir> | |
#Author Adrian Maurer (https://github.com/adrianmaurer) | |
#Based on http://stackoverflow.com/questions/2972765/linux-script-that-monitors-file-changes-within-folders-like-autospec-does | |
#sh manifest_generator.sh $URL $DIR $OUT |
This file contains 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
#!/bin/bash | |
#This script watches your project folder ($DIR) and outputs a HTML5 Manifest to $OUT | |
#You may need to change the location of your depency scripts | |
#Dependencies: confess.js and phantomjs | |
#Author Adrian Maurer (https://github.com/adrianmaurer) | |
#Based on http://stackoverflow.com/questions/2972765/linux-script-that-monitors-file-changes-within-folders-like-autospec-does | |
#sh manifest_generator.sh $URL $DIR $OUT |
This file contains 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
/* | |
* object.watch polyfill | |
* | |
* 2012-04-03 | |
* | |
* By Eli Grey, http://eligrey.com | |
* Public Domain. | |
* NO WARRANTY EXPRESSED OR IMPLIED. USE AT YOUR OWN RISK. | |
*/ |