###1. Before that make sure that you dont have any ruby package installed on your system
sudo apt-get purge ruby
sudo apt-get purge ruby-gems
sudo apt-get purge ruby1.9.3
| *.axf | |
| *.htm | |
| *.Inp | |
| *.map | |
| *.tra | |
| *.dep | |
| *.__i | |
| *.crf | |
| *.d | |
| *.o |
| 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/ |
| 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 |
| [user] | |
| name = Vishwas Sharma | |
| email = [email protected] | |
| [color] | |
| ui = auto | |
| [color "branch"] | |
| current = yellow reverse | |
| local = yellow | |
| remote = green | |
| [color "diff"] |
| { | |
| "name": "bisnux", | |
| "version": "0.0.1", | |
| "author": "Vishwas Sharma <[email protected]>", | |
| "description": "A simple ecommerce solution", | |
| "contributors": [ | |
| { | |
| "name": "Vishwas Sharma", | |
| "email": "[email protected]" | |
| } |
| Rich Text editor | |
| git://github.com/joshontheweb/etch.git |
| 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 |
| 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] = []; |
| # 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 |