What we found should be generally applicable to all Rails applications, so I’d like to share them:
* Don’t use ActiveRecord#attributes or ActiveRecord#read_attribute
* Get your :includes right
* Don’t check template timestamps ( cache_template_loading = true)
* Don’t use url_for
* Don’t let Rails parse timestamps
* Don’t symbolize keys (local_assigns_support_string_keys = false)

If you interested in the nitty-gritty details of each change, keep reading!

Making Rails Go Vroom

Plumber is a Proc leak-detector. It automatically hooks into your controllers and reports, for each request, how many Proc objects were garbage collected, how many were created, and how many survived from the previous request. It also reports where each Proc was created and shows you how many were created at each location. The report gets written to a file in the log/ directory, named “objects-#{pid}.log” (where #{pid} is the process ID that is running your application).

http://svn.jamisbuck.org/rails-plugins/plumber/README

Whenever I tweak my website design, a yellow form field background often fills up some (not all) form fields in my web browser (both IE and Firefox). I tried tweaking the site CSS and tried all sorts of form field tweaks, but the Yellow Form Field Background would just not go away. I am sure the yellow form fields bugs all web designers too. I finally identified the cause… Yellow Form Fields I identified that the cause of the yellow form field background was the Google Toolbar

How to Remove Yellow Form Fields Background Color