Categories
Tags
37 signals android apple backup C++ certificate corrupt crash cringely dialogs error failure file filter folders generics Google google-code hidden Inversoft jason fried Java JCatapult li Linux list item mvc open solaris open source operating system osx OS X profanity pulpit repository restore self-signed ssl subversion syllable talkinator tomcat type conversion Ubuntu unixArchives
- October 2011
- September 2011
- August 2011
- July 2011
- June 2011
- May 2011
- August 2010
- July 2010
- June 2010
- March 2010
- December 2009
- October 2009
- August 2009
- March 2009
- February 2009
- January 2009
- December 2008
- November 2008
- October 2008
- September 2008
- August 2008
- July 2008
- June 2008
- May 2008
- April 2008
- March 2008
- February 2008
- January 2008
- December 2007
- November 2007
- October 2007
- September 2007
- August 2007
- July 2007
- June 2007
- May 2007
- April 2007
- March 2007
- February 2007
- January 2007
- December 2006
- November 2006
- October 2006
- September 2006
- August 2006
- July 2006
- June 2006
- May 2006
- April 2006
- March 2006
- February 2006
- January 2006
- November 2005
- October 2005
- August 2005
- July 2005
- April 2005
- March 2005
- February 2005
- November 2004
- July 2004
Meta
Category Archives: Rails
An evening with Jason Fried from 37 Signals
I went to the 37 Signals event last night sponsored by CPB. The speaker was Jason Fried, who is a founder of the company, a designer and all around smart guy. Jason spoke mainly about small business. He presented a … Continue reading
Posted in Engineering, Inversoft, Life, Rails, Tech
Tagged 37 signals, complexity, cpb, ideals, jason fried
Leave a comment
Do we really need code reloading?
With Grails, Rails, Python, etc offering developers the chance to change code, hit refresh and see the changes I often wonder if reload truly a feature that is a must have these days? It seems like it is one of … Continue reading
Posted in Engineering, JCatapult, Java, Rails, Tech
4 Comments
Handling strange Rails URLs
Came across an interesting situation where my Rails application was going to be receiving URLs with characters like – (dash) and . (period or dot). Something like this: http://example.com/my_controller/action-with-odd.characters Ruby doesn’t allow dashes or periods in identifiers, so this was … Continue reading
Posted in Rails, Ruby
2 Comments
Handling Rails 404 and 500 errors
I spent a couple of hours trying to figure out how to handle 404 and 500 errors in Rails. This is not simple and actually really annoying. Hopefully future versions clean this up because right now it sucks pretty badly. … Continue reading
Posted in Rails, Ruby
7 Comments
FCGID timeout causing Rails 500 errors
The default timeout for FCGID is pretty low I think (maybe 5-10 seconds). This was causing me SO much grief that I was just about to lose it. I found these posts out there that helped a lot: http://wiki.rubyonrails.org/rails/pages/Debian+mod_fastcgi+Notes http://weblog.rubyonrails.com/2005/01/03/watch-for-huge-requests-on-default-fcgi … Continue reading
Posted in Rails, Tech
3 Comments