git clone git://github.com/sproutcore/sproutcore20.git
cd sproutcore20
echo "rvm use 1.9.2@sproutcore" > .rvmrc
cd -
cd sproutcore20
gem update --system 1.7.2
bundle install
gem uninstall spade # Version 0.1.0 isn't working for me yet
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
{ | |
"name": "orangetrack-js", | |
"bpm": "1.0.0", | |
"version": "0.0.1", | |
"dependencies": { | |
"spade": "~> 1.0", | |
"sensor-js-message-parsing": "~> 1.0" | |
}, | |
"bpm:build": { | |
"bpm_libs.js": { |
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
gem install bpm --pre | |
bpm init bpm_test_project | |
cd bpm_test_project | |
bpm add jquery | |
bpm add sproutcore -v 2.0.beta.2.pre |
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
brew install python | |
# Edit $PATH so it picks up python bins | |
easy_install mercurial | |
brew install https://raw.github.com/adamv/homebrew-alt/master/duplicates/vim.rb |
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
cd ~/src | |
wget ftp://ftp.vim.org/pub/vim/unix/vim-7.3.tar.bz2 | |
tar -xvf vim-7.3.tar.bz2 | |
cd vim73 | |
CONF_OPT_RUBY=--enable-rubyinterp make | |
src/vim --version | |
sudo make install |
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
# Redis install instructions for systems without upstart | |
mkdir ~/redis | |
cd ~/redis | |
wget --no-check-certificate http://github.com/antirez/redis/tarball/v2.0.0-rc4 -O redis_v2.0.0-rc4.tar.gz && tar --strip-components 1 -xzvf redis_v2.0.0-rc4.tar.gz | |
make | |
sudo mv redis-server /usr/local/bin/ | |
sudo mv redis-cli /usr/local/bin/ | |
sudo mv redis-benchmark /usr/local/bin/ | |
sudo mv redis-check-dump /usr/local/bin/ | |
sudo mkdir /var/lib/redis |
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
du -h / | egrep "^[0-9].*[MG][[:space:]]" | more |
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
# Setup a git repo on dreamhost | |
ssh [email protected] | |
mkdir ~/git/my_app.git && cd ~/git/my_app.git | |
git --bare init | |
exit | |
cd my_app | |
git remote add origin [email protected]:git/my_app.git | |
git push origin master |
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
history 1000 | awk '{a[$2]++}END{for(i in a){print a[i] " " i}}' | sort -rn | head |
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
# Snow Leopard | |
ARCHFLAGS="-arch x86_64" gem install mysql -v=2.7 -- --with-mysql-config=/usr/local/bin/mysql_config | |
# Leopard | |
env ARCHFLAGS="-arch i386" gem install mysql -- --with-mysql-dir=/usr/local/mysql --with-mysql-lib=/usr/local/mysql/lib --with-mysql-include=/usr/local/mysql/include |