sudo -u postgres psql postgres`postgres=# \l| #!/bin/sh | |
| rpm -Uih https://dl.fedoraproject.org/pub/epel/6/i386/epel-release-6-8.noarch.rpm | |
| curl -L https://get.rvm.io | bash -s stable | |
| source /etc/profile.d/rvm.sh | |
| rvm install 2.0.0 | |
| rvm use 2.0.0@global --default | |
| ### install bundler and rails | |
| gem install bundler --no-ri --no-rdoc |
| #!/bin/sh | |
| # | |
| # a simple way to parse shell script arguments | |
| # | |
| # please edit and use to your hearts content | |
| # | |
| ENVIRONMENT="dev" |
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |