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
| # A sample Guardfile | |
| # More info at https://github.com/guard/guard#readme | |
| guard 'coffeescript', :output => 'public/js' do | |
| watch(%r{public/coffee/(.*)\.coffee}) | |
| end | |
| guard 'coffeescript', :output => 'tests/spec/js' do | |
| watch(%r{tests/spec/coffee/(.*)\.coffee}) | |
| end |
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
| function nestCollection(model, attributeName, nestedCollection) { | |
| //setup nested references | |
| for (var i = 0; i < nestedCollection.length; i++) { | |
| model.attributes[attributeName][i] = nestedCollection.at(i).attributes; | |
| } | |
| //create empty arrays if none | |
| nestedCollection.bind('add', function (initiative) { | |
| if (!model.get(attributeName)) { | |
| model.attributes[attributeName] = []; |
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
| Install Java | |
| Install databene | |
| http://databene.org/ | |
| To install databene create a folder to known location | |
| and add the path to bashrc file | |
| + export BENERATOR_HOME='/path/to/databene/folder' | |
| + export PATH=$PATH:$BENERATOR_HOME/bin |
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
| Rich Text editor | |
| git://github.com/joshontheweb/etch.git |
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
| { | |
| "name": "bisnux", | |
| "version": "0.0.1", | |
| "author": "Vishwas Sharma <[email protected]>", | |
| "description": "A simple ecommerce solution", | |
| "contributors": [ | |
| { | |
| "name": "Vishwas Sharma", | |
| "email": "[email protected]" | |
| } |
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
| [user] | |
| name = Vishwas Sharma | |
| email = [email protected] | |
| [color] | |
| ui = auto | |
| [color "branch"] | |
| current = yellow reverse | |
| local = yellow | |
| remote = green | |
| [color "diff"] |
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
| 1. Create new SSH key | |
| ssh-keygen -t rsa -C "[email protected]" | |
| <set the appropriate path for the keys> | |
| Use a path like /home/cr01nk/.ssh/identity.heroku.work | |
| 2. Once the keys are generated the add the heroku multiple account plugin | |
| heroku plugins:install git://github.com/ddollar/heroku-accounts.git | |
| 3. Add the following in you ~/.ssh/config |
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
| cd llvm | |
| git clone http://llvm.org/git/llvm.git | |
| cd llvm/tools | |
| git clone http://llvm.org/git/clang.git | |
| cd llvm/projects | |
| git clone http://llvm.org/git/compiler-rt.git | |
| cd ../llvm-build/ |
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
| *.axf | |
| *.htm | |
| *.Inp | |
| *.map | |
| *.tra | |
| *.dep | |
| *.__i | |
| *.crf | |
| *.d | |
| *.o |
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
| #I like to work in home bin directory | |
| cd $HOME/bin | |
| #Get the source code | |
| wget http://downloads.yoctoproject.org/releases/yocto/yocto-1.4/poky-dylan-9.0.0.tar.bz2 | |
| #Extract the files into the corresponding directory | |
| tar xvf poky-dylan-9.0.0.tar.bz2 | |
| cd poky-dylan-9.0.0 |