<?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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>dream.think.create</title>
	<atom:link href="http://blog.ncodedevlabs.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.ncodedevlabs.com</link>
	<description>Technological journey&#039;s of a lonely African Programmer</description>
	<lastBuildDate>Sat, 17 Jul 2010 15:09:09 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Secured way to deploy Rails App</title>
		<link>http://blog.ncodedevlabs.com/2010/03/27/secured-way-to-deploy-rails-app/</link>
		<comments>http://blog.ncodedevlabs.com/2010/03/27/secured-way-to-deploy-rails-app/#comments</comments>
		<pubDate>Sat, 27 Mar 2010 05:38:18 +0000</pubDate>
		<dc:creator>Rowe Alfred</dc:creator>
				<category><![CDATA[Ruby on Rails]]></category>
		<category><![CDATA[Web Security]]></category>
		<category><![CDATA[mod_rails]]></category>
		<category><![CDATA[Passenger]]></category>
		<category><![CDATA[Rails]]></category>

		<guid isPermaLink="false">http://blog.ncodedevlabs.com/?p=50</guid>
		<description><![CDATA[In recent times Rails has grown into a very large community of developers with new ones joining the programming sweetness by the hour. With the release of Passenger a.k.a mod_rails , the pain of deploying a Rails application is almost &#8230; <a href="http://blog.ncodedevlabs.com/2010/03/27/secured-way-to-deploy-rails-app/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://blog.ncodedevlabs.com/2010/03/27/secured-way-to-deploy-rails-app/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Intelligent HTTP Request performance boost with Delayed_job</title>
		<link>http://blog.ncodedevlabs.com/2010/03/24/intelligent-httprequestperformance-boost-with-delayed_job/</link>
		<comments>http://blog.ncodedevlabs.com/2010/03/24/intelligent-httprequestperformance-boost-with-delayed_job/#comments</comments>
		<pubDate>Wed, 24 Mar 2010 19:01:48 +0000</pubDate>
		<dc:creator>Rowe Alfred</dc:creator>
				<category><![CDATA[Ruby on Rails]]></category>
		<category><![CDATA[delayed_job]]></category>
		<category><![CDATA[Rails]]></category>
		<category><![CDATA[rio]]></category>

		<guid isPermaLink="false">http://blog.ncodedevlabs.com/?p=45</guid>
		<description><![CDATA[After the launch of a recently developed application MYtxtBOX Lite, which allows free sms service online to all mobile networks in Ghana. Do to the nature of the SMS gateway which was the traditional style HTTP post or get request, &#8230; <a href="http://blog.ncodedevlabs.com/2010/03/24/intelligent-httprequestperformance-boost-with-delayed_job/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://blog.ncodedevlabs.com/2010/03/24/intelligent-httprequestperformance-boost-with-delayed_job/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Phone number cleanup in Rails</title>
		<link>http://blog.ncodedevlabs.com/2010/02/06/phone-number-cleanup-in-rails/</link>
		<comments>http://blog.ncodedevlabs.com/2010/02/06/phone-number-cleanup-in-rails/#comments</comments>
		<pubDate>Sat, 06 Feb 2010 08:06:23 +0000</pubDate>
		<dc:creator>Rowe Alfred</dc:creator>
				<category><![CDATA[Ruby on Rails]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[Rails]]></category>

		<guid isPermaLink="false">http://blog.ncodedevlabs.com/?p=29</guid>
		<description><![CDATA[There is practically nothing that cant be done with ruby (hmm&#8230; may be a little exaggerating there). Was working on this SMS platform where users can send SMS free without login or registration. The number was to be in the &#8230; <a href="http://blog.ncodedevlabs.com/2010/02/06/phone-number-cleanup-in-rails/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://blog.ncodedevlabs.com/2010/02/06/phone-number-cleanup-in-rails/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Implementing reCAPTCHA in your rails app</title>
		<link>http://blog.ncodedevlabs.com/2010/01/26/implementing-recaptcha-in-your-rails-app/</link>
		<comments>http://blog.ncodedevlabs.com/2010/01/26/implementing-recaptcha-in-your-rails-app/#comments</comments>
		<pubDate>Tue, 26 Jan 2010 08:50:29 +0000</pubDate>
		<dc:creator>Rowe Alfred</dc:creator>
				<category><![CDATA[reCAPTCHA]]></category>
		<category><![CDATA[Ruby on Rails]]></category>
		<category><![CDATA[Rails]]></category>

		<guid isPermaLink="false">http://blog.ncodedevlabs.com/?p=24</guid>
		<description><![CDATA[Adding reCaptcha to rails is quite easy First create an account with reCAPTCHA and get your API keys. Secondly get the ambethia-recaptcha gem from github http://github.com/ambethia/recaptcha You can either install it as a gem by adding config.gem &#8220;ambethia-recaptcha&#8221;, :lib =&#62; &#8230; <a href="http://blog.ncodedevlabs.com/2010/01/26/implementing-recaptcha-in-your-rails-app/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://blog.ncodedevlabs.com/2010/01/26/implementing-recaptcha-in-your-rails-app/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Extracting audio length using Rails</title>
		<link>http://blog.ncodedevlabs.com/2010/01/14/extracting-audio-length-using-rails/</link>
		<comments>http://blog.ncodedevlabs.com/2010/01/14/extracting-audio-length-using-rails/#comments</comments>
		<pubDate>Thu, 14 Jan 2010 12:07:27 +0000</pubDate>
		<dc:creator>Rowe Alfred</dc:creator>
				<category><![CDATA[Ruby on Rails]]></category>
		<category><![CDATA[FFMpeg]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mac OS]]></category>
		<category><![CDATA[Rails]]></category>

		<guid isPermaLink="false">http://blog.ncodedev.com/?p=18</guid>
		<description><![CDATA[Was working on a module in one of my Rails projects and I had to find the length of the audio file clients uploaded to that they can be billed accordingly, since this was voice sms it was very crucial. &#8230; <a href="http://blog.ncodedevlabs.com/2010/01/14/extracting-audio-length-using-rails/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://blog.ncodedevlabs.com/2010/01/14/extracting-audio-length-using-rails/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rails 2.3.5 gem update (dependency errors fixed)</title>
		<link>http://blog.ncodedevlabs.com/2010/01/07/rails-2-3-5-gem-update-dependency-errors-fixed/</link>
		<comments>http://blog.ncodedevlabs.com/2010/01/07/rails-2-3-5-gem-update-dependency-errors-fixed/#comments</comments>
		<pubDate>Thu, 07 Jan 2010 21:49:21 +0000</pubDate>
		<dc:creator>Rowe Alfred</dc:creator>
				<category><![CDATA[Ruby on Rails]]></category>
		<category><![CDATA[Rails]]></category>

		<guid isPermaLink="false">http://blog.ncodedev.com/?p=11</guid>
		<description><![CDATA[I recently updated my rails gem and realised i was getting errors trying to create new rails projects in 2.3.5, below is the error i was getting. I went through a few debug modes checked but came up with no &#8230; <a href="http://blog.ncodedevlabs.com/2010/01/07/rails-2-3-5-gem-update-dependency-errors-fixed/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://blog.ncodedevlabs.com/2010/01/07/rails-2-3-5-gem-update-dependency-errors-fixed/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Heavy weight Rails Job workaround</title>
		<link>http://blog.ncodedevlabs.com/2010/01/02/heavy-weight-rails-job-workaround/</link>
		<comments>http://blog.ncodedevlabs.com/2010/01/02/heavy-weight-rails-job-workaround/#comments</comments>
		<pubDate>Sat, 02 Jan 2010 06:41:53 +0000</pubDate>
		<dc:creator>Rowe Alfred</dc:creator>
				<category><![CDATA[Ruby on Rails]]></category>
		<category><![CDATA[delayed_job]]></category>
		<category><![CDATA[god]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[Rails]]></category>

		<guid isPermaLink="false">http://www.ncodedev.com/blog/?p=4</guid>
		<description><![CDATA[I am working on a Rails project and I recently had to do some FTP tricky stuff. I had to allow users to upload audio Files which will be transferred via FTP to another Server for processing to voice sms. &#8230; <a href="http://blog.ncodedevlabs.com/2010/01/02/heavy-weight-rails-job-workaround/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://blog.ncodedevlabs.com/2010/01/02/heavy-weight-rails-job-workaround/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

