<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.1.2" -->
<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/"
	>

<channel>
	<title>rubycorner.net</title>
	<link>http://rubycorner.net</link>
	<description>resources for Ruby and Rails development</description>
	<pubDate>Sat, 02 Feb 2008 12:51:46 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.1.2</generator>
	<language>en</language>
			<item>
		<title>Rails and RMagick made easy - generating thumbnails</title>
		<link>http://rubycorner.net/rails-programming/rails-and-rmagick-made-easy-generating-thumbnails/</link>
		<comments>http://rubycorner.net/rails-programming/rails-and-rmagick-made-easy-generating-thumbnails/#comments</comments>
		<pubDate>Thu, 14 Jun 2007 11:27:13 +0000</pubDate>
		<dc:creator>Yavor Ivanov</dc:creator>
		
		<category><![CDATA[Rails Programming]]></category>

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

		<guid isPermaLink="false">http://rubycorner.net/rails-programming/rails-and-rmagick-made-easy-generating-thumbnails/</guid>
		<description><![CDATA[The one thing that is different about this article from others around the web is that I wanted to do simple and easy stuff. I did not want to have a model or to put pictures in a database and so on I just wanted to store a resized image to the file system. Why [...]]]></description>
			<content:encoded><![CDATA[<p>The one thing that is different about this article from others around the web is that I wanted to do simple and easy stuff. I did not want to have a model or to put pictures in a database and so on I just wanted to store a resized image to the file system. Why the filesystem and not database? Database is like a funnel. You put and put and use and it isn&#8217;t something that you can easily extend or expand to fit easily your needs. There are extends and so on&#8230; and you can always hack around problems but why running into them in the first place? So my way was simple and easy without putting much effort in things that I don&#8217;t actually need.</p>
<p> <a href="http://rubycorner.net/rails-programming/rails-and-rmagick-made-easy-generating-thumbnails/#more-86" class="more-link">(more&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://rubycorner.net/rails-programming/rails-and-rmagick-made-easy-generating-thumbnails/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to use Rails Migrations - Part II</title>
		<link>http://rubycorner.net/rails-programming/how-to-use-rails-migrations-part-ii/</link>
		<comments>http://rubycorner.net/rails-programming/how-to-use-rails-migrations-part-ii/#comments</comments>
		<pubDate>Thu, 26 Apr 2007 01:34:10 +0000</pubDate>
		<dc:creator>Yavor Ivanov</dc:creator>
		
		<category><![CDATA[Rails Programming]]></category>

		<category><![CDATA[Tutorials]]></category>
<category>code</category><category>development</category><category>migrations</category><category>tutorial</category>
		<guid isPermaLink="false">http://rubycorner.net/rails-programming/how-to-use-rails-migrations-part-ii/</guid>
		<description><![CDATA[&#160;

This article is part two of the series about Rails Migrations and it will explain on a deeper level how to use the Ruby on Rails migrations.
&#160;
&#160;
After we spoke about Migrations in our previous article found here we understood the basics needed to use Migrations in Ruby on Rails.
Now to begin with the code and [...]]]></description>
			<content:encoded><![CDATA[<p>&nbsp;</p>
<p><img src='http://rubycorner.net/wp-content/uploads/2007/03/migration.gif' alt='Migrations' style='float:left; margin-right: 5px;' /><br />
<em><strong>This article is part two of the series about Rails Migrations and it will explain on a deeper level how to use the Ruby on Rails migrations.</strong></em></p>
<p>&nbsp;<br />
&nbsp;</p>
<p>After we spoke about Migrations in our previous article found <a href="http://rubycorner.net/rails-programming/how-to-use-rails-migrations-part-i/">here</a> we understood the basics needed to use Migrations in Ruby on Rails.</p>
<p>Now to begin with the code and something we did not mention earlier.</p>
<textarea name="code" class="ruby:nocontrols" cols="60" rows="20">
class AddNameIndex &lt; ActiveRecord::Migration
  def self.up
    add_index :users, :name
  end

  def self.down
    remove_index :users, :name
  end
end
</textarea>
<p>You see indexes are something that a good database design MUST contain!<br />
This example shows how to add and remove an indexed field.</p>
<p>&nbsp;</p>
<p>And now let&#8217;s take a look at some examples which might or might not be so obvious to make.</p>
<textarea name="code" class="ruby:nocontrols" cols="60" rows="20">
add_column :orders, :name, :string, :limit =&gt; 100, :null =&gt; false
add_column :orders, :age, :integer, :limit =&gt; 2
add_column :orders, :tfield, :string, :limit =&gt; 15, :default =&gt; 'priority'
add_column :orders, :price, :decimal, :precision =&gt; 8, :scale =&gt; 2
add_column :orders, :other, :decimal, :precision =&gt; 24, :scale =&gt; 0
</textarea>
<p> <a href="http://rubycorner.net/rails-programming/how-to-use-rails-migrations-part-ii/#more-62" class="more-link">(more&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://rubycorner.net/rails-programming/how-to-use-rails-migrations-part-ii/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Ruby on Rails Blog Carnival - April</title>
		<link>http://rubycorner.net/rails-blog-carnival/ruby-on-rails-blog-carnival-april/</link>
		<comments>http://rubycorner.net/rails-blog-carnival/ruby-on-rails-blog-carnival-april/#comments</comments>
		<pubDate>Sun, 22 Apr 2007 22:17:12 +0000</pubDate>
		<dc:creator>Stanislav Bozhkov</dc:creator>
		
		<category><![CDATA[Carnival]]></category>
<category>carnival</category><category>links</category><category>valuable posts</category>
		<guid isPermaLink="false">http://rubycorner.net/rails-blog-carnival/ruby-on-rails-blog-carnival-april/</guid>
		<description><![CDATA[ Here it is - this month&#8217;s Blog Carnival. After lots of reading and searching the network I&#8217;ve collected a new dozen of valuable posts. As everybody knows not every single blog post on the globe deserves a read up. That&#8217;s why I&#8217;m trying to weed out those that are not so useful. So, as [...]]]></description>
			<content:encoded><![CDATA[<p><img src='http://rubycorner.net/wp-content/uploads/2007/03/rails_mug.png' alt='Rails'  border="0" style="float: left; margin-right: 20px; margin-top: 10px;"/> Here it is - this month&#8217;s Blog Carnival. After lots of reading and searching the network I&#8217;ve collected a new dozen of valuable posts. As everybody knows not every single blog post on the globe deserves a read up. That&#8217;s why I&#8217;m trying to weed out those that are not so useful. So, as a result I&#8217;ve compiled this Blog Carnival. I believe that most of these posts deserve a browse. Have a nice reading!</p>
<p align="left">&nbsp;</p>
<p align="left">&nbsp;</p>
<p align="left">&nbsp;</p>
<h2>Rails Performance</h2>
<ul>
<li><a href="http://www.loudthinking.com/arc/000608.html">Twitter starting to get de-Railed</a> - Twitter starting to get de-Railed - On this post is questioned the scalability of Rails applications. This question has also been asked to David Heinemeier Hansson. Moreover there&#8217;s a small discussion on the problem of scaling Twitter. It&#8217;s worth to give this post a read.
</li>
<li><a href="http://drnicwilliams.com/2007/04/12/magic-multi-connections-a-facility-in-rails-to-talk-to-more-than-one-database-at-a-time/">A “facility in Rails to talk to more than one database at a time”</a> - Dr.Nic has writen a great plugin to enable our Rails applications to talk to more than one database. Moreover he has written a nice tutor how things work. Good work!
</li>
</ul>
<p align="left">&nbsp;</p>
<p> <a href="http://rubycorner.net/rails-blog-carnival/ruby-on-rails-blog-carnival-april/#more-78" class="more-link">(more&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://rubycorner.net/rails-blog-carnival/ruby-on-rails-blog-carnival-april/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Developing a News site in Rails [Project 1] [Part 1]</title>
		<link>http://rubycorner.net/projects/developing-a-news-site-in-rails-project-1-part-1/</link>
		<comments>http://rubycorner.net/projects/developing-a-news-site-in-rails-project-1-part-1/#comments</comments>
		<pubDate>Sat, 21 Apr 2007 23:27:13 +0000</pubDate>
		<dc:creator>Yavor Ivanov</dc:creator>
		
		<category><![CDATA[Projects]]></category>
<category>code</category><category>development</category><category>Projects</category><category>tutorial</category><category>web application</category>
		<guid isPermaLink="false">http://rubycorner.net/articles/developing-a-news-site-in-rails-project-1-part-1/</guid>
		<description><![CDATA[Recently I was asked the following question:
 “How hard is it to build this project in Rails”
You can substitute this with anything. After a short period of time I realized that such a question can&#8217;t be really answered to a point where a programmer would agree completely if he/she didn&#8217;t even touched Ruby on Rails. [...]]]></description>
			<content:encoded><![CDATA[<p><a href='http://rubycorner.net/wp-content/uploads/2007/04/wheel-of-steel.jpg' title='Development Cycle'><img src='http://rubycorner.net/wp-content/uploads/2007/04/wheel-of-steel.thumbnail.jpg' alt='Development Cycle' style="float: left; border: 0; padding: 10px;" /></a>Recently I was asked the following question:</p>
<p> “<em>How hard is it to build <u>this</u> project in Rails</em>”</p>
<p>You can substitute <em><u>this</u></em> with anything. After a short period of time I realized that such a question can&#8217;t be really answered to a point where a programmer would agree completely if he/she didn&#8217;t even touched Ruby on Rails. In order to change that fact a person should see the whole process of developing and deploying a Rails application so he/she can realize the power and potential of a Rails application.</p>
<p>&nbsp;</p>
<p>With all this in mind I hereby announce <strong><em>the <strong>Project</strong> type articles of <strong>RubyCorner.net</strong></em></strong>. Those articles will represent an overview of the development process of a real working Rails web application. This article is the first of the series <strong><em>Project</em></strong> and it will begin not so briefly and give a more detailed overview of the things we will do. The next articles in the series will focus on more complex things and will skip those explained before assuming the knowledge was already obtained.</p>
<p>&nbsp;</p>
<p>Let&#8217;s begin with our first web application project: </p>
<p>&nbsp;</p>
<p><strong>Project 1 – Developing a News site in Rails</strong><br />
<em><strong>parts count: 3 (this is a three day project)</strong></em><br />
<em><br />
Rails version used: 1.2.3 (used both on Windows and Linux platform)<br />
Ruby version used: 1.8.5 (used both on Windows and Linux platform)<br />
Knowledge of HTML and CSS: assumed<br />
Knowledge of a Web Programming Language and Database: Basic-Advanced assumed<br />
</em></p>
<p> <a href="http://rubycorner.net/projects/developing-a-news-site-in-rails-project-1-part-1/#more-74" class="more-link">(more&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://rubycorner.net/projects/developing-a-news-site-in-rails-project-1-part-1/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Create An eBay Clone With Ruby on Rails?</title>
		<link>http://rubycorner.net/opinion/create-an-ebay-clone-with-ruby-on-rails/</link>
		<comments>http://rubycorner.net/opinion/create-an-ebay-clone-with-ruby-on-rails/#comments</comments>
		<pubDate>Thu, 12 Apr 2007 23:52:27 +0000</pubDate>
		<dc:creator>Stanislav Bozhkov</dc:creator>
		
		<category><![CDATA[Opinion]]></category>
<category>agile development</category><category>development</category><category>ebay</category><category>opinion</category><category>web application</category>
		<guid isPermaLink="false">http://rubycorner.net/articles/create-an-ebay-clone-with-ruby-on-rails/</guid>
		<description><![CDATA[I found an interesting topic recently in a forum discussion. It was about whether or not an eBay clone could be build on the top of Ruby on Rails. A few interesting questions are:  &#8220;Is RoR the best toolkit for doing that?&#8221;, &#8220;Whether the
same eBay functionality could be accomplished?&#8221; or &#8220;Could it scale enough?&#8221;
]]></description>
			<content:encoded><![CDATA[<p><img src='http://rubycorner.net/wp-content/uploads/2007/04/ebay.png' alt='ebay'  style="padding: 10px 10px 10px;" align="left" border="0"/>I found an interesting topic recently in a forum discussion. It was about whether or not an eBay clone could be build on the top of Ruby on Rails. A few interesting questions are:  &#8220;Is RoR the best toolkit for doing that?&#8221;, &#8220;Whether the<br />
same eBay functionality could be accomplished?&#8221; or &#8220;Could it scale enough?&#8221;<br />
 <a href="http://rubycorner.net/opinion/create-an-ebay-clone-with-ruby-on-rails/#more-70" class="more-link">(more&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://rubycorner.net/opinion/create-an-ebay-clone-with-ruby-on-rails/feed/</wfw:commentRss>
		</item>
		<item>
		<title>The Key For Ruby And Telnet Communication With Cisco</title>
		<link>http://rubycorner.net/rails-programming/the-key-for-ruby-and-telnet-communication-with-cisco/</link>
		<comments>http://rubycorner.net/rails-programming/the-key-for-ruby-and-telnet-communication-with-cisco/#comments</comments>
		<pubDate>Wed, 04 Apr 2007 06:38:00 +0000</pubDate>
		<dc:creator>Stanislav Bozhkov</dc:creator>
		
		<category><![CDATA[Rails Programming]]></category>
<category>cisco</category><category>code</category><category>experience</category><category>telnet</category>
		<guid isPermaLink="false">http://rubycorner.net/articles/the-key-for-ruby-and-telnet-communication-with-cisco/</guid>
		<description><![CDATA[
Have you ever had the need to programatically obtain information from a network device. In general when we deal with manageable network devices the smartest way is to use SNMP. However in some cases your head can get fired from problems concerning SNMP. Sometimes you would want just to obtain the output of a common [...]]]></description>
			<content:encoded><![CDATA[<p><img src='http://rubycorner.net/wp-content/uploads/2007/04/cisco_switch_2950.png' alt='cisco switch 2950' style="padding: 3px 10px;" align="left"/><br />
Have you ever had the need to programatically obtain information from a network device. In general when we deal with manageable network devices the smartest way is to use SNMP. However in some cases your head can get fired from problems concerning SNMP. Sometimes you would want just to obtain the output of a common terminal command. Well it could be a bit tricky when communicating with Cisco switches. I will share my experience now - problems and resolutions about this issue.</p>
<p align="left">&nbsp;</p>
<p>In my case I&#8217;m developing a webconsole application. It should have the feature to search for a mac address in the ARP tables of a couple of switches. Of course what I did first was to try doing it with SNMP. <a href="http://rubycorner.net/rails-programming/the-key-for-ruby-and-telnet-communication-with-cisco/#more-67" class="more-link">(more&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://rubycorner.net/rails-programming/the-key-for-ruby-and-telnet-communication-with-cisco/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Why use Ruby on Rails ?</title>
		<link>http://rubycorner.net/articles/why-use-ruby-on-rails/</link>
		<comments>http://rubycorner.net/articles/why-use-ruby-on-rails/#comments</comments>
		<pubDate>Mon, 26 Mar 2007 09:48:26 +0000</pubDate>
		<dc:creator>Yavor Ivanov</dc:creator>
		
		<category><![CDATA[Articles]]></category>
<category>agile development</category><category>business</category><category>development</category><category>rails</category><category>web application</category>
		<guid isPermaLink="false">http://rubycorner.net/articles/why-use-ruby-on-rails/</guid>
		<description><![CDATA[&#160;
&#160;
 &#160; Programming languages and tools from the business point of view &#160; Programming languages and tools are considered only for developers but smart companies have understood that in order to achieve best results they should not only care for business but for developers too. And what kind of better care than the one for [...]]]></description>
			<content:encoded><![CDATA[<p align="left">&nbsp;</p>
<p align="left">&nbsp;</p>
<div><fieldset style="border:0; padding: 5px 15px 15px 15px;"><legend style="padding: 0 5px 0 5px;"> &nbsp; <strong>Programming languages and tools from the business point of view</strong> &nbsp; </legend><img src='http://rubycorner.net/wp-content/uploads/2007/03/businessman-holding-laptop.thumbnail.png' alt='business man holding notebook' style="float: left; margin-right: 20px; margin-top: 10px;" />Programming languages and tools are considered only for developers but smart companies have understood that in order to achieve best results they should not only care for business but for developers too. And what kind of better care than the one for programmers happiness and productivity by suppling them with the best tools available? This article intention is to point out in a bit of a story like form how Rails helps. It will go from the ways of developing a web application and points out some of the aspect in business and development which are really useful when a company chooses to use Rails for it&#8217;s development tool.</fieldset></div>
<p> <a href="http://rubycorner.net/articles/why-use-ruby-on-rails/#more-64" class="more-link">(more&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://rubycorner.net/articles/why-use-ruby-on-rails/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Be A Developer Not A Coder (Rails)</title>
		<link>http://rubycorner.net/articles/be-a-developer-not-a-coder-rails/</link>
		<comments>http://rubycorner.net/articles/be-a-developer-not-a-coder-rails/#comments</comments>
		<pubDate>Wed, 21 Mar 2007 22:09:08 +0000</pubDate>
		<dc:creator>Stanislav Bozhkov</dc:creator>
		
		<category><![CDATA[Articles]]></category>
<category>development</category><category>glory</category><category>opinion</category>
		<guid isPermaLink="false">http://rubycorner.net/articles/be-a-developer-not-a-coder-rails/</guid>
		<description><![CDATA[ Not more than two months ago I started programming in Ruby. Ofcourse using the rails framework. It was superb for me to find that just everything about web development is already there in the framework. The directory structure - it&#8217;s just so easy and you intuitively find whatever you need, logging - it has [...]]]></description>
			<content:encoded><![CDATA[<p><a href='http://rubycorner.net/wp-content/uploads/2007/03/developer_not_coder.jpg' title='Developer not a coder'><img src='http://rubycorner.net/wp-content/uploads/2007/03/developer_not_coder.jpg' alt='Developer not a coder' border='0' style="float: left; margin-right: 20px; margin-top: 10px;" /></a> Not more than two months ago I started programming in Ruby. Ofcourse using the rails framework. It was superb for me to find that just everything about web development is already there in the framework. The directory structure - it&#8217;s just so easy and you intuitively find whatever you need, logging - it has that useful feature to tell you the performance of your business logic as well as the performance of rendering the view. Ruby on Rails clearly MVC based. Working with and refactoring of your DB is an ease with the help of migrations. You&#8217;ve heard about Web 2.0 - yes, AJAX is well incorporated into the rails, too. I still haven&#8217;t found a missing part.</p>
<p align="left">&nbsp;</p>
<p>
Why a Developer but not a Coder? Well, you should feel the beauty to develop in Rails. For me a CODER is someone who concentrates on code structure and thinks about how to CODE down the business logic for his problem. The Coder is also highly considering the difficulties for accessing his DB. What&#8217;s the contrast in case of using Ruby on Rails. Just after a little experience, you don&#8217;t code down - you write down whatever you need. Moreover you are not scared to think about adding new functionality related to DB Objects - you just tell rails that you want it. All this ease lets you think on a higher level and lets you concentrate on the real problems that should be solved.
</p>
<p> <a href="http://rubycorner.net/articles/be-a-developer-not-a-coder-rails/#more-20" class="more-link">(more&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://rubycorner.net/articles/be-a-developer-not-a-coder-rails/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to use Rails Migrations - Part I</title>
		<link>http://rubycorner.net/rails-programming/how-to-use-rails-migrations-part-i/</link>
		<comments>http://rubycorner.net/rails-programming/how-to-use-rails-migrations-part-i/#comments</comments>
		<pubDate>Sun, 18 Mar 2007 23:28:22 +0000</pubDate>
		<dc:creator>Yavor Ivanov</dc:creator>
		
		<category><![CDATA[Rails Programming]]></category>

		<category><![CDATA[Tutorials]]></category>
<category>code</category><category>development</category><category>migrations</category><category>rails</category><category>tutorial</category>
		<guid isPermaLink="false">http://rubycorner.net/articles/how-to-use-rails-migrations-part-i/</guid>
		<description><![CDATA[&#160;


This article is part one of the series about Rails Migrations and it will explain on a basic level how to use the Ruby on Rails migrations.

&#160;
&#160;

1. What are Migrations ?


Migrations in Rails is a way of describing what the database should look like and synchronize it with the respective model.
Migrations are abstract to the [...]]]></description>
			<content:encoded><![CDATA[<p>&nbsp;</p>
<p align="left">
<img src='http://rubycorner.net/wp-content/uploads/2007/03/migration.gif' alt='Migrations' style='float:left; margin-right: 5px;' /><br />
<em><strong>This article is part one of the series about Rails Migrations and it will explain on a basic level how to use the Ruby on Rails migrations.</strong></em>
</p>
<p>&nbsp;<br />
&nbsp;</p>
<p align="left">
<strong>1. What are Migrations ?</strong>
</p>
<p align="left">
Migrations in Rails is a way of describing what the database should look like and synchronize it with the respective model.<br />
Migrations are abstract to the database they are used with. This means that if you have used a MySQL database server when developing the application and the production database server is different let&#8217;s say Postgresql the database you defined within the migrations will remain intact and will run just fine on the new database server.<br />
Migrations provide a way to make the database development SVN like&#8230; I will cover this latter on so just keep in mind this for now.
</p>
<p>&nbsp;</p>
<p align="left">
<strong>2. Creating and Running Migrations</strong>
</p>
<p align="left">
A migration is a simple Ruby file in the db/migrate directory.<br />
Each migration file has a name starting with three digits and an<br />
underscore. Those digits are the representation of the migrations version (a bit like SVN),<br />
because they define the sequence in which the migrations are applied.
</p>
<p align="left">
To generate a migration type:
</p>
<textarea name="code" class="ruby:nocontrols" cols="60" rows="20">
ruby script/generate model user
</textarea>
<p><em style="font-size: 10px;">Notice: This will generate a model and a migration to it.</em></p>
<p>&nbsp;</p>
<p> <a href="http://rubycorner.net/rails-programming/how-to-use-rails-migrations-part-i/#more-59" class="more-link">(more&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://rubycorner.net/rails-programming/how-to-use-rails-migrations-part-i/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Ruby On Rails Blog Carnival</title>
		<link>http://rubycorner.net/rails-blog-carnival/ruby-on-rails-blog-carnival/</link>
		<comments>http://rubycorner.net/rails-blog-carnival/ruby-on-rails-blog-carnival/#comments</comments>
		<pubDate>Sun, 18 Mar 2007 19:32:38 +0000</pubDate>
		<dc:creator>Stanislav Bozhkov</dc:creator>
		
		<category><![CDATA[Carnival]]></category>
<category>carnival</category><category>links</category>
		<guid isPermaLink="false">http://rubycorner.net/articles/ruby-on-rails-blog-carnival/</guid>
		<description><![CDATA[
These days I searched for a blog carnival about Ruby on Rails. However I couldn&#8217;t find a good one. In fact such a carnival should be useful for a lot of people interested in this topic - web development on rails. That&#8217;s why I&#8217;ll setup one mine carnival here. I&#8217;ll try to filter the most [...]]]></description>
			<content:encoded><![CDATA[<p><a href='http://rubycorner.net/wp-content/uploads/2007/03/rails_mug.png' title='Rails'><img src='http://rubycorner.net/wp-content/uploads/2007/03/rails_mug.png' alt='Rails'  border="0" style="float: left; margin-right: 20px; margin-top: 10px;"/></a></p>
<p>These days I searched for a blog carnival about Ruby on Rails. However I couldn&#8217;t find a good one. In fact such a carnival should be useful for a lot of people interested in this topic - web development on rails. That&#8217;s why I&#8217;ll setup one mine carnival here. I&#8217;ll try to filter the most useful posts for you. So let&#8217;s the carnival begin :).</p>
<p align="left">&nbsp;</p>
<p align="left">&nbsp;</p>
<p align="left">&nbsp;</p>
<p align="left">&nbsp;</p>
<p align="left">&nbsp;</p>
<h2>The glory of Ruby and Rails</h2>
<ul>
<li>
<a href="http://www.oreillynet.com/ruby/blog/2007/01/php_vs_ruby_on_rails_an_evolu.html">PHP vs. Ruby on Rails. An evolutionary story of a Web Developer and his tools.</a> - The story of Nathaniel S. H. Brown - an experienced PHP developer. He compares in a good manner PHP vs Ruby (Ruby on Rails) and puts some ideas that Rails along with Ruby is the &#8220;evolutionary king&#8221; of the web development niche.
</li>
<li>
<a href="http://blog.carlmercier.com/2007/01/30/why-i-moved-from-ruby-on-rails-to-pythondjango-and-back/">Why I moved from Ruby on Rails to Python/Django and back</a> - Carl Mercier: &#8220;I am now at least twice as productive with Ruby on Rails than with ASP.NET&#8221;. This guy jumps into RoR world from ASP.NET, after that he tries python/django and at the end he is again happy with Ruby on Rails. It&#8217;s interesting to read his story.
</li>
<li>
<a href="http://casperfabricius.com/blog/2007/01/28/how-ruby-on-rails-has-made-me-a-better-programmer/">How Ruby on Rails has made me a better programmer</a> - Casper Fabricius is a programmer who has moved from ASP to Ruby on Rails. He notices some obvious difficulties about rails and it&#8217;s documentation.
</li>
</ul>
<p> <a href="http://rubycorner.net/rails-blog-carnival/ruby-on-rails-blog-carnival/#more-47" class="more-link">(more&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://rubycorner.net/rails-blog-carnival/ruby-on-rails-blog-carnival/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
