<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	>
<channel>
	<title>Comments for Relentless Simplicity :: The Bonanza Tech Blog</title>
	<atom:link href="http://www.williambharding.com/blog/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.williambharding.com/blog</link>
	<description>Rails programming with an entrepreneurial aftertaste.</description>
	<pubDate>Sat, 04 Feb 2012 13:11:32 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Javascript play sound (wav, MP3, etc) in one line by John G</title>
		<link>http://www.williambharding.com/blog/uncategorized/play-sound-wav-mp3-etc-with-one-line-of-javascript/comment-page-1/#comment-10620</link>
		<dc:creator>John G</dc:creator>
		<pubDate>Thu, 08 Sep 2011 22:34:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.williambharding.com/blog/?p=318#comment-10620</guid>
		<description>Thanks for this. Some of the techniques out there are so freaking excessive, especially for making one simple sound file play.</description>
		<content:encoded><![CDATA[<p>Thanks for this. Some of the techniques out there are so freaking excessive, especially for making one simple sound file play.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Determine location of ruby gems by Abe</title>
		<link>http://www.williambharding.com/blog/uncategorized/determine-location-of-ruby-gems/comment-page-1/#comment-10615</link>
		<dc:creator>Abe</dc:creator>
		<pubDate>Tue, 06 Sep 2011 20:49:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.williambharding.com/blog/uncategorized/determine-location-of-ruby-gems/#comment-10615</guid>
		<description>Just wanted to say this helped me out. Thanks :)</description>
		<content:encoded><![CDATA[<p>Just wanted to say this helped me out. Thanks <img src='http://www.williambharding.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Rails 3 Autoload Modules/Classes - 3 Easy Fixes by Aaron Scruggs</title>
		<link>http://www.williambharding.com/blog/technology/rails-3-autoload-modules-and-classes-in-production/comment-page-1/#comment-10416</link>
		<dc:creator>Aaron Scruggs</dc:creator>
		<pubDate>Sun, 07 Aug 2011 19:01:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.williambharding.com/blog/?p=455#comment-10416</guid>
		<description>Thank you.  Point 3 is maddening and possibly the most poorly documented aspect of rails I have run into.</description>
		<content:encoded><![CDATA[<p>Thank you.  Point 3 is maddening and possibly the most poorly documented aspect of rails I have run into.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Paypal Masspay Ruby Example by Mathew vivek</title>
		<link>http://www.williambharding.com/blog/rails/paypal-masspay-ruby-example/comment-page-1/#comment-10389</link>
		<dc:creator>Mathew vivek</dc:creator>
		<pubDate>Wed, 03 Aug 2011 14:11:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.williambharding.com/blog/?p=374#comment-10389</guid>
		<description>Thank u very much.. Works fine.. I have been searching for materials for more than a day.</description>
		<content:encoded><![CDATA[<p>Thank u very much.. Works fine.. I have been searching for materials for more than a day.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Paypal Masspay Ruby Example by Dharin</title>
		<link>http://www.williambharding.com/blog/rails/paypal-masspay-ruby-example/comment-page-1/#comment-10354</link>
		<dc:creator>Dharin</dc:creator>
		<pubDate>Wed, 27 Jul 2011 22:35:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.williambharding.com/blog/?p=374#comment-10354</guid>
		<description>&lt;a href="#comment-9958" rel="nofollow"&gt;@Gargron&lt;/a&gt; 
Hi Gargron,

I am working with rails 3.0.5 and have sandbox account and want to do mass payment with WPP and soap. Can you help me out with this?

Thanks, 
Dharin</description>
		<content:encoded><![CDATA[<p><a href="#comment-9958" rel="nofollow">@Gargron</a><br />
Hi Gargron,</p>
<p>I am working with rails 3.0.5 and have sandbox account and want to do mass payment with WPP and soap. Can you help me out with this?</p>
<p>Thanks,<br />
Dharin</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Rails 3 Autoload Modules/Classes - 3 Easy Fixes by Rahil Sondhi</title>
		<link>http://www.williambharding.com/blog/technology/rails-3-autoload-modules-and-classes-in-production/comment-page-1/#comment-10338</link>
		<dc:creator>Rahil Sondhi</dc:creator>
		<pubDate>Tue, 26 Jul 2011 11:55:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.williambharding.com/blog/?p=455#comment-10338</guid>
		<description>#1 didn't work for me.

Instead, I made a new file config/initializers/requires.rb:

# Require modules in lib
Dir[File.join(Rails.root, 'lib', '*.rb')].each do &#124;f&#124;
  require f
end</description>
		<content:encoded><![CDATA[<p>#1 didn&#8217;t work for me.</p>
<p>Instead, I made a new file config/initializers/requires.rb:</p>
<p># Require modules in lib<br />
Dir[File.join(Rails.root, 'lib', '*.rb')].each do |f|<br />
  require f<br />
end</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Paypal Masspay Ruby Example by Gargron</title>
		<link>http://www.williambharding.com/blog/rails/paypal-masspay-ruby-example/comment-page-1/#comment-9958</link>
		<dc:creator>Gargron</dc:creator>
		<pubDate>Tue, 05 Jul 2011 20:51:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.williambharding.com/blog/?p=374#comment-9958</guid>
		<description>Thank you very much! I have been fiddling with this for about 5 hours, at last my code looked almost exactly like yours, but a few small details lacked. Now it works :D</description>
		<content:encoded><![CDATA[<p>Thank you very much! I have been fiddling with this for about 5 hours, at last my code looked almost exactly like yours, but a few small details lacked. Now it works <img src='http://www.williambharding.com/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Rails Thinking Sphinx Plugin:  Full Text Searching that&#8217;s Cooler than a Polar Bear&#8217;s Toenails by How do I do full-text searching in Ruby on Rails? - Programmers Goodies</title>
		<link>http://www.williambharding.com/blog/rails/rails-thinking-sphinx-plugin-full-text-searching-thats-cooler-than-a-polar-bears-toenails/comment-page-1/#comment-9930</link>
		<dc:creator>How do I do full-text searching in Ruby on Rails? - Programmers Goodies</dc:creator>
		<pubDate>Mon, 04 Jul 2011 21:22:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.williambharding.com/blog/rails/rails-thinking-sphinx-plugin-full-text-searching-thats-cooler-than-a-polar-bears-toenails/#comment-9930</guid>
		<description>[...] plugin for Sphinx is Thinking Sphinx which has a lot of positive feedback. It is a little easier to get started using Thinking Sphinx than Ultrasphinx. I would suggest [...]</description>
		<content:encoded><![CDATA[<p>[...] plugin for Sphinx is Thinking Sphinx which has a lot of positive feedback. It is a little easier to get started using Thinking Sphinx than Ultrasphinx. I would suggest [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Rails 3 Performance: Abysmal to Good to Great by rails3 unbearably slow view rendering: use REE with GC tuning &#124; Bibliographic Wilderness</title>
		<link>http://www.williambharding.com/blog/uncategorized/rails-3-performance-abysmal-to-good-to-great/comment-page-1/#comment-9794</link>
		<dc:creator>rails3 unbearably slow view rendering: use REE with GC tuning &#124; Bibliographic Wilderness</dc:creator>
		<pubDate>Tue, 28 Jun 2011 19:13:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.williambharding.com/blog/?p=472#comment-9794</guid>
		<description>[...] Then I found this post which had the answer.  They were seeing symptoms much like mine, partial views taking pathological amounts of time to render (although there&#8217;s weren&#8217;t nearly as crazy bad as mine). And they discovered the problem was Ruby&#8217;s Garbage Collector. (Aha! Why didn&#8217;t that remind me of very similar problems I&#8217;ve had in the past when I worked with Java, with GC?  Probably because I&#8217;ve blocked it out of my memory to preserve my sanity). [...]</description>
		<content:encoded><![CDATA[<p>[...] Then I found this post which had the answer.  They were seeing symptoms much like mine, partial views taking pathological amounts of time to render (although there&#8217;s weren&#8217;t nearly as crazy bad as mine). And they discovered the problem was Ruby&#8217;s Garbage Collector. (Aha! Why didn&#8217;t that remind me of very similar problems I&#8217;ve had in the past when I worked with Java, with GC?  Probably because I&#8217;ve blocked it out of my memory to preserve my sanity). [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Rails 3 Performance: Abysmal to Good to Great by Jonathan Rochkind</title>
		<link>http://www.williambharding.com/blog/uncategorized/rails-3-performance-abysmal-to-good-to-great/comment-page-1/#comment-9778</link>
		<dc:creator>Jonathan Rochkind</dc:creator>
		<pubDate>Mon, 27 Jun 2011 20:56:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.williambharding.com/blog/?p=472#comment-9778</guid>
		<description>I ran into this same issue upgrading an app from Rails2 to Rails3. Was going crazy trying to figure out what it was -- thanks for this blog post, using REE and GC tuning fixed it. 

But here's the thing... I was wondering, the date on your post is only a couple months ago, Rails has been out forever.... nobody else noticed this until now?

Out of curiosity, I ran my app under rails 3.0.0 instead of the latest 3.0.8... and there was no slowness problem even without using REE at all. (I never used to use REE in my rails2 app, I was getting acceptable performance without it and didn't need another thing to deal with). 

Looks to me like something has crept into Rails recently to cause this.</description>
		<content:encoded><![CDATA[<p>I ran into this same issue upgrading an app from Rails2 to Rails3. Was going crazy trying to figure out what it was &#8212; thanks for this blog post, using REE and GC tuning fixed it. </p>
<p>But here&#8217;s the thing&#8230; I was wondering, the date on your post is only a couple months ago, Rails has been out forever&#8230;. nobody else noticed this until now?</p>
<p>Out of curiosity, I ran my app under rails 3.0.0 instead of the latest 3.0.8&#8230; and there was no slowness problem even without using REE at all. (I never used to use REE in my rails2 app, I was getting acceptable performance without it and didn&#8217;t need another thing to deal with). </p>
<p>Looks to me like something has crept into Rails recently to cause this.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

