<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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>developergurus.com</title>
	<atom:link href="http://blog.developergurus.com/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://blog.developergurus.com</link>
	<description>On Budget. On Time.</description>
	<pubDate>Tue, 21 Apr 2009 19:32:12 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>starling yaml config file</title>
		<link>http://blog.developergurus.com/?p=51</link>
		<comments>http://blog.developergurus.com/?p=51#comments</comments>
		<pubDate>Tue, 21 Apr 2009 19:32:12 +0000</pubDate>
		<dc:creator>aeldaly</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.developergurus.com/?p=51</guid>
		<description><![CDATA[I had a bit of trouble figuring how this should look like. Ended up finding it here. Basically, it should look something like:
&#8212;
starling:
queue_path: spool/starling
pid_file: pids/starling.pid
log_file: logs/starling.log
daemonize: true
]]></description>
			<content:encoded><![CDATA[<p>I had a bit of trouble figuring how this should look like. Ended up finding it <a href="http://groups.google.com/group/starlingmq/browse_thread/thread/630c2c3842cf695e">here</a>. Basically, it should look something like:</p>
<p>&#8212;<br />
starling:<br />
queue_path: spool/starling<br />
pid_file: pids/starling.pid<br />
log_file: logs/starling.log<br />
daemonize: true</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.developergurus.com/?feed=rss2&amp;p=51</wfw:commentRss>
		</item>
		<item>
		<title>Setting up starling on ubuntu</title>
		<link>http://blog.developergurus.com/?p=48</link>
		<comments>http://blog.developergurus.com/?p=48#comments</comments>
		<pubDate>Tue, 21 Apr 2009 17:43:47 +0000</pubDate>
		<dc:creator>aeldaly</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.developergurus.com/?p=48</guid>
		<description><![CDATA[I use Enterprise Ruby for anything ruby. Here is the no none-sense process:

sudo apt-get install build-essential zlib1g-dev libssl-dev libreadline5-dev
Go here http://www.rubyenterpriseedition.com/download.html. Download and install
On your server: sudo ln -s /opt/ruby-enterprise-x.x.x /opt/ruby
sudo rm /usr/bin/ruby /usr/bin/gem
sudo ln -s /opt/ruby/bin/ruby /usr/bin/ruby
sudo ln -s /opt/ruby/bin/gem /usr/bin/gem
sudo gem sources -a http://gems.github.com
sudo gem install starling-starling
Create a /etc/init.d/starling file and put this: [...]]]></description>
			<content:encoded><![CDATA[<p>I use Enterprise Ruby for anything ruby. Here is the no none-sense process:</p>
<ol>
<li>sudo apt-get install build-essential zlib1g-dev libssl-dev libreadline5-dev</li>
<li>Go here http://www.rubyenterpriseedition.com/download.html. Download and install</li>
<li>On your server: sudo ln -s /opt/ruby-enterprise-x.x.x /opt/ruby</li>
<li>sudo rm /usr/bin/ruby /usr/bin/gem</li>
<li>sudo ln -s /opt/ruby/bin/ruby /usr/bin/ruby</li>
<li>sudo ln -s /opt/ruby/bin/gem /usr/bin/gem</li>
<li>sudo gem sources -a http://gems.github.com</li>
<li>sudo gem install starling-starling</li>
<li>Create a /etc/init.d/starling file and put this: http://gist.github.com/28849 in it</li>
<li>sudo chmod +x /etc/init.d/starling</li>
</ol>
<p>Done! Enjoy <img src='http://blog.developergurus.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.developergurus.com/?feed=rss2&amp;p=48</wfw:commentRss>
		</item>
		<item>
		<title>Reloading a model during a migration</title>
		<link>http://blog.developergurus.com/?p=43</link>
		<comments>http://blog.developergurus.com/?p=43#comments</comments>
		<pubDate>Sun, 19 Apr 2009 22:14:37 +0000</pubDate>
		<dc:creator>aeldaly</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.developergurus.com/?p=43</guid>
		<description><![CDATA[It&#8217;s documented, but I&#8217;ve somehow missed it. I was running this migration:


units = Unit.all
Unit.destroy_all

change_table :units do &#124;t&#124;
t.string :original_name, :null =&#62; false
t.string :original_length
end

units.each do &#124;unit&#124;
u = Unit.new(unit.attributes)
u.original_length = unit.length
u.original_name   = unit.name
u.save
end


This kept failing with: undefined method `original_name=&#8217; for #&#60;Unit:0&#215;3b61aa4&#62;
After some poking around, comes reset_column_information to the rescue. After adding the columns and before looping, just add [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s documented, but I&#8217;ve somehow missed it. I was running this migration:</p>
<textarea name="code" class="ruby:showcolumns" cols="60" rows="10">

units = Unit.all
Unit.destroy_all

change_table :units do |t|
t.string :original_name, :null =&gt; false
t.string :original_length
end

units.each do |unit|
u = Unit.new(unit.attributes)
u.original_length = unit.length
u.original_name   = unit.name
u.save
end

</textarea>
<p>This kept failing with: undefined method `original_name=&#8217; for #&lt;Unit:0&#215;3b61aa4&gt;</p>
<p>After some poking around, comes reset_column_information to the rescue. After adding the columns and before looping, just add Unit.reset_column_information. This will reload the Unit model with the new columns, and all will go well.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.developergurus.com/?feed=rss2&amp;p=43</wfw:commentRss>
		</item>
		<item>
		<title>metric-fu installation</title>
		<link>http://blog.developergurus.com/?p=33</link>
		<comments>http://blog.developergurus.com/?p=33#comments</comments>
		<pubDate>Tue, 03 Mar 2009 15:21:09 +0000</pubDate>
		<dc:creator>aeldaly</dc:creator>
		
		<category><![CDATA[Rails]]></category>

		<guid isPermaLink="false">http://blog.developergurus.com/?p=33</guid>
		<description><![CDATA[Installing metric-fu is a really manual process. Copy the following and paste it in your shell:
sudo gem install flay
sudo gem install flog
sudo gem install rcov
sudo gem install railroad
sudo gem install reek
sudo gem install roodi
sudo gem install jscruggs-metric_fu -s http://gems.github.com/
]]></description>
			<content:encoded><![CDATA[<p>Installing metric-fu is a really manual process. Copy the following and paste it in your shell:</p>
<p>sudo gem install flay</p>
<p>sudo gem install flog</p>
<p>sudo gem install rcov</p>
<p>sudo gem install railroad</p>
<p>sudo gem install reek</p>
<p>sudo gem install roodi</p>
<p>sudo gem install jscruggs-metric_fu -s http://gems.github.com/</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.developergurus.com/?feed=rss2&amp;p=33</wfw:commentRss>
		</item>
		<item>
		<title>Stopping SPAM and fake signups with mod_defensible and Apache on Ubuntu</title>
		<link>http://blog.developergurus.com/?p=29</link>
		<comments>http://blog.developergurus.com/?p=29#comments</comments>
		<pubDate>Mon, 23 Feb 2009 17:47:48 +0000</pubDate>
		<dc:creator>aeldaly</dc:creator>
		
		<category><![CDATA[Apache]]></category>

		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://blog.developergurus.com/?p=29</guid>
		<description><![CDATA[Want to stop users from known blacklisted IP&#8217;s from accessing your site? Well, mod_definsible is the apache module for you. Here&#8217;s how to install it on Ubuntu:
sudo apt-get install libapache2-mod-defensible
then to enable the module do:
a2enmod defensible
Now create a file in /etc/apache2/mods-available/defensible.conf and put the following couple of lines in it:
DnsblUse On
DnsblServers xbl-bl.spamhaus.org. mydnbl.server.org.
Now restart apache [...]]]></description>
			<content:encoded><![CDATA[<p>Want to stop users from known blacklisted IP&#8217;s from accessing your site? Well, mod_definsible is the apache module for you. Here&#8217;s how to install it on Ubuntu:</p>
<p>sudo apt-get install libapache2-mod-defensible</p>
<p>then to enable the module do:</p>
<p>a2enmod defensible</p>
<p>Now create a file in /etc/apache2/mods-available/defensible.conf and put the following couple of lines in it:</p>
<p>DnsblUse On<br />
DnsblServers xbl-bl.spamhaus.org. mydnbl.server.org.</p>
<p>Now restart apache and you&#8217;re all set. Now whenever a user that&#8217;s on spamhaus&#8217;s blocklist tries to access your site, they get a 403 Forbidden page.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.developergurus.com/?feed=rss2&amp;p=29</wfw:commentRss>
		</item>
		<item>
		<title>Rails, passenger, ubuntu and EC2 - Part 1</title>
		<link>http://blog.developergurus.com/?p=17</link>
		<comments>http://blog.developergurus.com/?p=17#comments</comments>
		<pubDate>Wed, 04 Feb 2009 05:10:11 +0000</pubDate>
		<dc:creator>aeldaly</dc:creator>
		
		<category><![CDATA[AWS]]></category>

		<category><![CDATA[Rails]]></category>

		<guid isPermaLink="false">http://blog.developergurus.com/?p=17</guid>
		<description><![CDATA[I&#8217;ve been spending the better part of a year working on MoreDating, a dating site with a twist. It was and still is a joy to work on. I was asked to write my experience in deploying to EC2.
Let me start by saying that I am really impressed with EC2. It is super quick, and [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been spending the better part of a year working on <a title="MoreDating" href="http://moredating.com" target="_blank">MoreDating</a>, a dating site with a twist. It was and still is a joy to work on. I was asked to write my experience in deploying to EC2.</p>
<p>Let me start by saying that I am really impressed with EC2. It is super quick, and so far has been very stable. Let&#8217;s start with the technicalities.</p>
<h2>Technical Specs:</h2>
<ol>
<li>Ubuntu 8.04 Hardy</li>
<li>Passenger 2.06</li>
<li>Enterprise Ruby</li>
<li>Large EC2 instance (8GB of RAM, 900 and change GB storage) @ $0.40/hour</li>
<li>Image storage to S3</li>
<li>MySQL database running off an EBS (Elastic Block Storage) drive</li>
</ol>
<p>In this installment I will be talking about how I got EC2 up and running, and the preliminary configuration of the environment.</p>
<h2>EC2 up and running with Ubuntu</h2>
<p>I started out by getting an Amazon account, of course. You sign up by visiting: <a title="Amazon AWS" href="http://aws.amazon.com/" target="_blank">Amazon AWS</a>. I then headed on to <a title="http://alestic.com/" href="http://alestic.com/" target="_blank">http://alestic.com/</a> to get the AMI that I need. Note that to use the 64-bit versions, you will need to setup a large EC2 instance. Now when I set it up, there wasn&#8217;t a pretty shiny interface for AWS, so I used elastic fox, the EC2 plugin for firefox (<a title="ElasticFox" href="http://developer.amazonwebservices.com/connect/entry.jspa?externalID=609" target="_blank">ElasticFox</a>).</p>
<p>To spin up a new instance with all the necessary permissions, follow the <a title="Amazon EC2 Getting Started Guide" href="http://docs.amazonwebservices.com/AWSEC2/latest/GettingStartedGuide/" target="_blank">Amazon EC2 Getting Started Guide</a> . When it comes to the part about running an AMI, put in the ami path from the image you would like to use from alestic.</p>
<p>Once it&#8217;s up an running and you&#8217;re all connected, you can now start to configure it to your needs. Once we&#8217;re done with the configuration, we&#8217;ll go through taking an image of your instance so that you can spin other identical instances and to have a backup in case your instance goes haywire.</p>
<h2>Configuring the goodies</h2>
<ol>
<li>Install apache. Now, don&#8217;t go install any old apache, install the cool mpm-worker version. More information on that on the <a title="Apache Documentation Site" href="http://httpd.apache.org/docs/2.0/mod/worker.html" target="_blank">Apache Documentation Site</a> . Install by running: sudo apt-get install apache2-mpm-worker</li>
<li>Install ruby. Hold on, don&#8217;t go installing your vanilla ruby. Go to the good guys at <a title="phusion" href="http://www.rubyenterpriseedition.com/" target="_blank">phusion</a> and download and install it. No vanilla ruby to install. Now we just need to make sure that it&#8217;s in the path server wide, so create a file in /etc/profile.d/ and call it ruby_path.sh and put this in it: export PATH=/opt/ruby/bin:$PATH. Now for this to work, make sure you have a symlink called /opt/ruby pointing to /opt/ruby/ruby-enterprise-lots-of-numbers-and-stuff-default-enterprise-installation-name. That way, whenever you install a new version of ruby enterprise edition, you just have to update the symlink.</li>
<li>Install mysql (or postgres, or whatever). sudo apt-get install mysql-server (or whatever db server you&#8217;re going to use). Make sure you install the headers too.</li>
<li>Little hack, I couldn&#8217;t figure out how to get it working properly. Whenever I try to install any gems using sudo, I have to provide the full path, so I made an alias for it in my .bash_profile: alias sgi=&#8221;sudo /opt/ruby/bin/gem install&#8221;. So now I just go: sgi some_gem</li>
<li>Powered with this little hack, go ahead and run: sgi passenger. The installer is super friendly and will let you know exactly what is missing if you&#8217;re missing anything.</li>
</ol>
<p>In my next post, I&#8217;ll be talking about capistrano setup, my deploy.rb script, and the costs of running EC2 full time + our use of S3 so far + our use of EBS.</p>
<p>Here&#8217;s a sample of the passenger and worker-specific of my <a rel="attachment wp-att-18" href="http://blog.developergurus.com/2009/02/04/rails-passenger-ubuntu-and-ec2-part-1/apache2/">apache2.conf</a> and my <a rel="attachment wp-att-19" href="http://blog.developergurus.com/2009/02/04/rails-passenger-ubuntu-and-ec2-part-1/bash_profile/">bash_profile</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.developergurus.com/?feed=rss2&amp;p=17</wfw:commentRss>
		</item>
		<item>
		<title>jQuery and IE blues</title>
		<link>http://blog.developergurus.com/?p=14</link>
		<comments>http://blog.developergurus.com/?p=14#comments</comments>
		<pubDate>Fri, 05 Dec 2008 19:31:21 +0000</pubDate>
		<dc:creator>aeldaly</dc:creator>
		
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://blog.developergurus.com/?p=14</guid>
		<description><![CDATA[Getting a &#8220;Expected identifier, string or number&#8221; error in IE using jQuery? Yeah I know, it takes forever to debug. In my case it was because I had one of those in my code:
$(element_id).attr({class: &#8217;signup_label_err&#8217;});
Apparently, class is a reserved keyword and this is what causes the error. Solution? Easy, just replace it with:
$(element_id).addClass(&#8217;signup_label_err&#8217;);
Enjoy IE worry-free [...]]]></description>
			<content:encoded><![CDATA[<p>Getting a &#8220;Expected identifier, string or number&#8221; error in IE using jQuery? Yeah I know, it takes forever to debug. In my case it was because I had one of those in my code:</p>
<p>$(element_id).attr({class: &#8217;signup_label_err&#8217;});</p>
<p>Apparently, class is a reserved keyword and this is what causes the error. Solution? Easy, just replace it with:</p>
<p>$(element_id).addClass(&#8217;signup_label_err&#8217;);</p>
<p>Enjoy IE worry-free days.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.developergurus.com/?feed=rss2&amp;p=14</wfw:commentRss>
		</item>
		<item>
		<title>ActionView::TemplateError (undefined method `adjust&#8217; for #) on line #3 of vendor/plugins/exception_notification/views/exception_notifier/_timestamp.rhtml:</title>
		<link>http://blog.developergurus.com/?p=11</link>
		<comments>http://blog.developergurus.com/?p=11#comments</comments>
		<pubDate>Thu, 30 Oct 2008 14:02:12 +0000</pubDate>
		<dc:creator>aeldaly</dc:creator>
		
		<category><![CDATA[Rails]]></category>

		<category><![CDATA[Exception Notification]]></category>

		<category><![CDATA[Plugins]]></category>

		<guid isPermaLink="false">http://blog.developergurus.com/?p=11</guid>
		<description><![CDATA[Got that one? Ha! Me too  
Well apparently, Rails 2.1 doesn&#8217;t have TimeZone.adjust anymore, which is being called by vendor/plugins/exception_notification/views/exception_notifier/_timestamp.rhtml. All you have to do is replace those two lines:
time_zone = TimeZone.new(&#8221;Eastern Time (US &#38; Canada)&#8221;)
timestamp = time_zone.adjust(Time.now)
and replace them with:
time_zone = ActiveSupport::TimeZone.new(&#8221;Eastern Time (US &#38; Canada)&#8221;)
timestamp = Time.now.in_time_zone(time_zone)
A diff file is attached. Happy [...]]]></description>
			<content:encoded><![CDATA[<p>Got that one? Ha! Me too <img src='http://blog.developergurus.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Well apparently, Rails 2.1 doesn&#8217;t have TimeZone.adjust anymore, which is being called by vendor/plugins/exception_notification/views/exception_notifier/_timestamp.rhtml. All you have to do is replace those two lines:</p>
<p>time_zone = TimeZone.new(&#8221;Eastern Time (US &amp; Canada)&#8221;)<br />
timestamp = time_zone.adjust(Time.now)</p>
<p>and replace them with:</p>
<p>time_zone = ActiveSupport::TimeZone.new(&#8221;Eastern Time (US &amp; Canada)&#8221;)<br />
timestamp = Time.now.in_time_zone(time_zone)</p>
<p>A diff file is attached. Happy updating!<a href="http://blog.developergurus.com/wp-content/uploads/2008/10/exception_notifier_tz_fix.diff"></a></p>
<p><a href="http://blog.developergurus.com/wp-content/uploads/2008/10/exception_notifier_tz_fix.diff">exception_notifier_tz_fix</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.developergurus.com/?feed=rss2&amp;p=11</wfw:commentRss>
		</item>
		<item>
		<title>Hey! Where&#8217;s my firebug highlighting??</title>
		<link>http://blog.developergurus.com/?p=8</link>
		<comments>http://blog.developergurus.com/?p=8#comments</comments>
		<pubDate>Tue, 17 Jun 2008 19:02:53 +0000</pubDate>
		<dc:creator>aeldaly</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.developergurus.com/?p=8</guid>
		<description><![CDATA[Just installed firefox 3? Missing firebug highlighting? I guess you probably went to http://getfirebug.com and only saw the link for 1.0?
Fret not, the solution is here: https://addons.mozilla.org/en-US/firefox/addon/1843. Firebug 1.2 beta. The release version should be coming out in a couple of days.
]]></description>
			<content:encoded><![CDATA[<p>Just installed firefox 3? Missing firebug highlighting? I guess you probably went to <a href="http://getfirebug.com">http://getfirebug.com</a> and only saw the link for 1.0?</p>
<p>Fret not, the solution is here: <a href="https://addons.mozilla.org/en-US/firefox/addon/1843">https://addons.mozilla.org/en-US/firefox/addon/1843</a>. Firebug 1.2 beta. The release version should be coming out in a couple of days.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.developergurus.com/?feed=rss2&amp;p=8</wfw:commentRss>
		</item>
		<item>
		<title>vendor/rails/actionpack/lib/action_view/helpers/date_helper.rb:602:in `date_or_time_select&#8217;</title>
		<link>http://blog.developergurus.com/?p=7</link>
		<comments>http://blog.developergurus.com/?p=7#comments</comments>
		<pubDate>Sat, 07 Jun 2008 15:27:57 +0000</pubDate>
		<dc:creator>aeldaly</dc:creator>
		
		<category><![CDATA[Rails]]></category>

		<category><![CDATA[monkey-patching]]></category>

		<category><![CDATA[snippets]]></category>

		<guid isPermaLink="false">http://blog.developergurus.com/?p=7</guid>
		<description><![CDATA[Am I the only person in the world with this problem? I searched all over the web for a fix, but no one was even talking about it. The error I get is:
ArgumentError in My/profiles#show
wrong number of arguments (2 for 1)
I am running Rails 2.1, and putting a run-of-the-mill date_select crashes with the error shown [...]]]></description>
			<content:encoded><![CDATA[<p>Am I the only person in the world with this problem? I searched all over the web for a fix, but no one was even talking about it. The error I get is:</p>
<p>ArgumentError in My/profiles#show<br />
wrong number of arguments (2 for 1)</p>
<p>I am running Rails 2.1, and putting a run-of-the-mill date_select crashes with the error shown in the title. I scratched my head at first, then banged it against the wall. I don&#8217;t know how this could be broken, but here is how I monkey-patched it.</p>
<p>Create a file in config/initializers and call it anythingyouwant.rb, and paste this in:</p>

<div class="wp_codebox_msgheader"><span class="codebox_right"><a href="javascript:;" onclick="toggle_collapse('72');">[<span id="72_symbol">-</span>]</a></span><span class="codebox_left"><span id="l7code2"><a href="javascript:;" onclick="javascript:showCodeTxt('7code2'); return false;">View Code</a> RUBY</span></span><div class="codebox_clear"></div></div><div class="wp_codebox"><table width="100%" ><tr id="72"><td class="code" id="7code2"><pre class="ruby"><span style="color:#9966CC; font-weight:bold;">module</span> ActionView
  <span style="color:#9966CC; font-weight:bold;">module</span> Helpers
    <span style="color:#9966CC; font-weight:bold;">class</span> InstanceTag <span style="color:#008000; font-style:italic;">#:nodoc:</span>
      <span style="color:#9966CC; font-weight:bold;">def</span> to_date_select_tag<span style="color:#006600; font-weight:bold;">&#40;</span>options = <span style="color:#006600; font-weight:bold;">&#123;</span><span style="color:#006600; font-weight:bold;">&#125;</span>, html_options = <span style="color:#006600; font-weight:bold;">&#123;</span><span style="color:#006600; font-weight:bold;">&#125;</span><span style="color:#006600; font-weight:bold;">&#41;</span>
        date_or_time_select<span style="color:#006600; font-weight:bold;">&#40;</span>options.<span style="color:#9900CC;">merge</span><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#ff3333; font-weight:bold;">:discard_hour</span> <span style="color:#006600; font-weight:bold;">=&gt;</span> <span style="color:#0000FF; font-weight:bold;">true</span><span style="color:#006600; font-weight:bold;">&#41;</span><span style="color:#006600; font-weight:bold;">&#41;</span>
      <span style="color:#9966CC; font-weight:bold;">end</span>
    <span style="color:#9966CC; font-weight:bold;">end</span>
  <span style="color:#9966CC; font-weight:bold;">end</span>
<span style="color:#9966CC; font-weight:bold;">end</span></pre></td></tr></table></div>

<p>That should fix it. </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.developergurus.com/?feed=rss2&amp;p=7</wfw:commentRss>
		</item>
	</channel>
</rss>
