CloudSCAD Blog
I created a blog just for CloudSCAD at http://blog.cloudscad.com
And oh yeah, here's a video of CloudSCAD on an iPad. Sometimes I even impress myself!
I created a blog just for CloudSCAD at http://blog.cloudscad.com
Comments [22]
I found that every day when I goto work in the morning I do the same things whenever I go to work on a rails project:
Sure it only takes a few seconds, but it wasn’t very DRY. :) I figured I could create a shell alias to basically reduce all that to a single command. I also thought I’d finally start giving mongrel a try. So this is what I came up with for an rdev command (along with a bunch of my other rails related aliases):
alias rdev='svn update;mate .;mongrel_rails start -d;sleep 2;open http://localhost:3000;tail -f log/development.log' alias ss='script/server' alias sc='script/console' alias sg='script/generate' alias sp='script/plugin' alias sr='script/runner' alias rt='rake test' alias rtu='rake test:units' alias rtr='rake test:recent' alias mr='mongrel_rails start -d' alias mrs='mongrel_rails stop'
Just stick that in your ~/.profile file and either reopen your console or run:
. ~/.profile
Comments [0]
Comments [1]