<?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 Binary Doodles</title>
	<atom:link href="http://nithinbekal.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://nithinbekal.com</link>
	<description>Ruby on Rails, Web 2.0, Wordpress and more...</description>
	<lastBuildDate>Fri, 30 Jul 2010 17:15:28 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Rails: Importing data from spreadsheets into database by Nithin Bekal</title>
		<link>http://nithinbekal.com/2009/12/09/rails-importing-data-from-spreadsheets-into-database/comment-page-1/#comment-1446</link>
		<dc:creator>Nithin Bekal</dc:creator>
		<pubDate>Fri, 30 Jul 2010 17:15:28 +0000</pubDate>
		<guid isPermaLink="false">http://nithinbekal.com/?p=118#comment-1446</guid>
		<description>@NealMJD. Thank you for the comment. I suppose the problem with putting the task in lib folder was because the path to images is relative to the root folder.</description>
		<content:encoded><![CDATA[<p>@NealMJD. Thank you for the comment. I suppose the problem with putting the task in lib folder was because the path to images is relative to the root folder.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Rails: Importing data from spreadsheets into database by NealJMD</title>
		<link>http://nithinbekal.com/2009/12/09/rails-importing-data-from-spreadsheets-into-database/comment-page-1/#comment-1439</link>
		<dc:creator>NealJMD</dc:creator>
		<pubDate>Thu, 29 Jul 2010 20:16:22 +0000</pubDate>
		<guid isPermaLink="false">http://nithinbekal.com/?p=118#comment-1439</guid>
		<description>I just want to add a note that I discovered when I was using this tutorial to set up my rake task. I needed to create entries in a database each of which with an image. I&#039;m using paperclip by thoughtbot for image storage so I did this - 

&lt;pre&gt;FasterCSV.foreach(&quot;product_categories.csv&quot;) do &#124;row&#124;
      puts row[0]
      puts row[1]
      ProductCategory.create(
                 :name =&gt; row[0].to_s,
                 :main_image =&gt; File.open(row[1].to_s)
               )
end&lt;/pre&gt;

I ended up putting in those puts just to give a little more info when the task is run. Additionally I had to put my product_categories.csv file in the root directory of my app. Anyway this post saved me a ton of time, thanks for writing it!</description>
		<content:encoded><![CDATA[<p>I just want to add a note that I discovered when I was using this tutorial to set up my rake task. I needed to create entries in a database each of which with an image. I&#8217;m using paperclip by thoughtbot for image storage so I did this &#8211; </p>
<pre>FasterCSV.foreach("product_categories.csv") do |row|
      puts row[0]
      puts row[1]
      ProductCategory.create(
                 :name =&gt; row[0].to_s,
                 :main_image =&gt; File.open(row[1].to_s)
               )
end</pre>
<p>I ended up putting in those puts just to give a little more info when the task is run. Additionally I had to put my product_categories.csv file in the root directory of my app. Anyway this post saved me a ton of time, thanks for writing it!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Rails: Importing data from spreadsheets into database by Nithin Bekal</title>
		<link>http://nithinbekal.com/2009/12/09/rails-importing-data-from-spreadsheets-into-database/comment-page-1/#comment-1387</link>
		<dc:creator>Nithin Bekal</dc:creator>
		<pubDate>Sat, 17 Jul 2010 16:35:40 +0000</pubDate>
		<guid isPermaLink="false">http://nithinbekal.com/?p=118#comment-1387</guid>
		<description>@anon. Thanks. :)</description>
		<content:encoded><![CDATA[<p>@anon. Thanks. :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Rails: Importing data from spreadsheets into database by anon</title>
		<link>http://nithinbekal.com/2009/12/09/rails-importing-data-from-spreadsheets-into-database/comment-page-1/#comment-1384</link>
		<dc:creator>anon</dc:creator>
		<pubDate>Fri, 16 Jul 2010 21:40:09 +0000</pubDate>
		<guid isPermaLink="false">http://nithinbekal.com/?p=118#comment-1384</guid>
		<description>awesome tutorial.  worked like a charm; way easier than most of the other tutorials I&#039;ve seen out there for this kinda stuff.</description>
		<content:encoded><![CDATA[<p>awesome tutorial.  worked like a charm; way easier than most of the other tutorials I&#8217;ve seen out there for this kinda stuff.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Rails: Importing data from spreadsheets into database by Nithin Bekal</title>
		<link>http://nithinbekal.com/2009/12/09/rails-importing-data-from-spreadsheets-into-database/comment-page-1/#comment-1285</link>
		<dc:creator>Nithin Bekal</dc:creator>
		<pubDate>Fri, 25 Jun 2010 16:30:40 +0000</pubDate>
		<guid isPermaLink="false">http://nithinbekal.com/?p=118#comment-1285</guid>
		<description>@gnitmada. Put it in the lib/tasks directory.</description>
		<content:encoded><![CDATA[<p>@gnitmada. Put it in the lib/tasks directory.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Rails: Importing data from spreadsheets into database by gnitmada</title>
		<link>http://nithinbekal.com/2009/12/09/rails-importing-data-from-spreadsheets-into-database/comment-page-1/#comment-1280</link>
		<dc:creator>gnitmada</dc:creator>
		<pubDate>Thu, 24 Jun 2010 21:35:43 +0000</pubDate>
		<guid isPermaLink="false">http://nithinbekal.com/?p=118#comment-1280</guid>
		<description>What rails directory does the file need to be put in?</description>
		<content:encoded><![CDATA[<p>What rails directory does the file need to be put in?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Rails: Avoid multiple level nested resource routes by Sathya Sekaran</title>
		<link>http://nithinbekal.com/2010/05/14/rails-avoid-multiple-level-nested-resource-routes/comment-page-1/#comment-1276</link>
		<dc:creator>Sathya Sekaran</dc:creator>
		<pubDate>Wed, 23 Jun 2010 18:24:02 +0000</pubDate>
		<guid isPermaLink="false">http://nithinbekal.com/?p=335#comment-1276</guid>
		<description>Yeah, I&#039;ve been looking around to see if anyone had a better approach than nesting like crazy, and I like the standard approach you&#039;re describing (and that most people use) better. It just doesn&#039;t sit well with me to have so many levels of nesting, even if it&#039;s restful to do so.</description>
		<content:encoded><![CDATA[<p>Yeah, I&#8217;ve been looking around to see if anyone had a better approach than nesting like crazy, and I like the standard approach you&#8217;re describing (and that most people use) better. It just doesn&#8217;t sit well with me to have so many levels of nesting, even if it&#8217;s restful to do so.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Setting up Ruby on Rails development environment with NetBeans on Windows by mohd ajmal</title>
		<link>http://nithinbekal.com/2009/09/19/setting-up-ruby-on-rails-development-environment-with-netbeans-on-windows/comment-page-1/#comment-1251</link>
		<dc:creator>mohd ajmal</dc:creator>
		<pubDate>Wed, 16 Jun 2010 07:14:01 +0000</pubDate>
		<guid isPermaLink="false">http://nithinbekal.com/2009/09/19/setting-up-ruby-on-rails-development-environment-with-netbeans-on-windows/#comment-1251</guid>
		<description>thank you for tutorial ......</description>
		<content:encoded><![CDATA[<p>thank you for tutorial &#8230;&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Setting up Ruby on Rails development environment with NetBeans on Windows by Nithin Bekal</title>
		<link>http://nithinbekal.com/2009/09/19/setting-up-ruby-on-rails-development-environment-with-netbeans-on-windows/comment-page-1/#comment-1211</link>
		<dc:creator>Nithin Bekal</dc:creator>
		<pubDate>Wed, 09 Jun 2010 13:48:03 +0000</pubDate>
		<guid isPermaLink="false">http://nithinbekal.com/2009/09/19/setting-up-ruby-on-rails-development-environment-with-netbeans-on-windows/#comment-1211</guid>
		<description>@cooljaz. Good to hear you are moving to rails development. Trust me, you&#039;ll enjoy it.</description>
		<content:encoded><![CDATA[<p>@cooljaz. Good to hear you are moving to rails development. Trust me, you&#8217;ll enjoy it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Setting up Ruby on Rails development environment with NetBeans on Windows by cooljaz124</title>
		<link>http://nithinbekal.com/2009/09/19/setting-up-ruby-on-rails-development-environment-with-netbeans-on-windows/comment-page-1/#comment-1175</link>
		<dc:creator>cooljaz124</dc:creator>
		<pubDate>Fri, 04 Jun 2010 18:48:57 +0000</pubDate>
		<guid isPermaLink="false">http://nithinbekal.com/2009/09/19/setting-up-ruby-on-rails-development-environment-with-netbeans-on-windows/#comment-1175</guid>
		<description>Just done the whole process. Have to Check out the IDE now. Thanks Man !!</description>
		<content:encoded><![CDATA[<p>Just done the whole process. Have to Check out the IDE now. Thanks Man !!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
