These commands are good as of 2013-07-27.
App store http://itunes.apple.com/us/app/xcode/id448457090?mt=12) The download/install takes awhile so start it first. When it finishes downloading you will still need to run it to complete installation.
| class Api::RegistrationsController < Api::BaseController | |
| respond_to :json | |
| def create | |
| user = User.new(params[:user]) | |
| if user.save | |
| render :json=> user.as_json(:auth_token=>user.authentication_token, :email=>user.email), :status=>201 | |
| return | |
| else |
| #!/usr/bin/env bash | |
| ############ | |
| # QuickSBT # | |
| ############ | |
| # Launch SBT with support for generating /tmp/sbt.quickfix file for Vim | |
| # http://github.com/aloiscochard / https://gist.github.com/4698501 | |
| # Error format for SBT, and shortcut to open SBT quickfix file : |
These commands are good as of 2013-07-27.
App store http://itunes.apple.com/us/app/xcode/id448457090?mt=12) The download/install takes awhile so start it first. When it finishes downloading you will still need to run it to complete installation.
| #!/usr/bin/env bash | |
| # Tested for Ubuntu 12.04 | |
| [[ "$(id -u)" -ne "0" ]] && echo "must be root!" && exit 1 | |
| RBVER="1.9.3-p194" | |
| apt-get update | |
| apt-get install -y build-essential zlib1g-dev libyaml-dev libssl-dev wget rsync |
| <script type="text/javascript"> | |
| var queueBytesLoaded = 0; | |
| var queueBytesTotal = 0; | |
| var myQueue = null; | |
| var queueChangeHandler = function(queue){ | |
| // alert('Uploading Started'); | |
| myQueue = queue; | |
| // console.log("COLLECTION CHANGE!"); | |
| var list = document.getElementById('file_todo_list'); |