Re: [Rails] Re: How old are you?

2010-10-12 Thread Jason Soo
Just turned 24 --- Jason Soo "I'm going to live forever or die trying." On Tue, Oct 12, 2010 at 8:51 AM, Walter Lee Davis wrote: > I'm 46. My first (and only formal) CS course was conducted using teletypes > and a mainframe in Canada, while I was in Phoenix AZ: the

[Rails] Rails setup process (from HTTP request to root router loaded)

2010-08-05 Thread Jason Soo
Hi all I'm interested in learning more about what happens within rails (or the web server) from when an HTTP request is made, to the point where its served. I know config/router.rb is involved somehow, and I imagine many other files. Does anyone know of any writings online which address this iss

Re: [Rails] VISIT A URL PROGRAMATICALLY

2010-05-10 Thread Jason Soo
There is a helpful railscast on mechanize here: http://railscasts.com/episodes/191-mechanize --- Jason Soo "I'm going to live forever or die trying." On Mon, May 10, 2010 at 1:36 PM, Jarl Friis wrote: > kevid writes: > > > hi all, > > > > i have the

Re: [Rails] Any training institutes for RoR in India?

2010-03-01 Thread Jason Soo
Hey Not a direct answer butthis could help if you don't know about it already: http://railscasts.com/ --- Jason Soo "I'm going to live forever or die trying." On Sun, Feb 28, 2010 at 1:51 PM, Meghana It sol wrote: > > > Hello friends, > > Are there any

Re: [Rails] Re: RoR hosting help?

2010-01-29 Thread Jason Soo
+1 vote for Heroku and Slicehost. I've used both and love both. However, I use Slicehost for non-rails apps, and Heroku for my rails apps. --- Jason Soo "I'm going to live forever or die trying." On Fri, Jan 29, 2010 at 1:59 PM, Joel Dezenzio wrote: > Check for a ho

Re: [Rails] Re: Re: Fighting with Hello World

2010-01-09 Thread Jason Soo
"I type in localhost:8080/RailsApplication6/book/list" Given that, plus your routes output, perhaps try adding a line like this to your config.rb file (near the top) map.resources :books or map.resources :book Not sure if it would be singular or plural for you. Good luck. --- Jaso

Re: [Rails] A Little SQL Help

2010-01-09 Thread Jason Soo
Ballin! --- Jason Soo "I'm going to live forever or die trying." On Fri, Jan 8, 2010 at 4:48 PM, Rob Biedenharn wrote: > On Jan 8, 2010, at 5:30 PM, Karl Smith wrote: > > Can someone give me a hand with the sql (mysql works for me) for this >> rails project

Re: [Rails] Zip Code/Leading Zero's search problem

2010-01-03 Thread Jason Soo
I ended up solving the problem using Philip's solution (thanks). Curtis, thanks for the recommendation, but zero is a valid leading value for some zip codes, so only doing a range of 1-9 wouldn't be as tight of a check as I would've liked. Thank you all for your help and replies

Re: [Rails] Zip Code/Leading Zero's search problem

2010-01-03 Thread Jason Soo
A[0-9]{5}\Z/i, fails on something like this 03062. --- Jason Soo "I'm going to live forever or die trying." On Sun, Jan 3, 2010 at 2:32 PM, tom wrote: > reg exp > > On Sun, Jan 3, 2010 at 3:02 PM, jsoo wrote: > > Hey > > > > I'm running into an smal