<?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 on: Rails With Calendar Date Select</title>
	<atom:link href="http://blog.hackerforhire.org/2008/03/29/rails-with-calendar-date-select/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.hackerforhire.org/2008/03/29/rails-with-calendar-date-select/</link>
	<description>Burning Down People&#039;s Dreams Since That One Day ...</description>
	<lastBuildDate>Sat, 21 Jan 2012 07:19:59 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Liam</title>
		<link>http://blog.hackerforhire.org/2008/03/29/rails-with-calendar-date-select/#comment-32441</link>
		<dc:creator>Liam</dc:creator>
		<pubDate>Sat, 18 Apr 2009 15:20:17 +0000</pubDate>
		<guid isPermaLink="false">http://blog.hackerforhire.org/2008/03/29/rails-with-calendar-date-select/#comment-32441</guid>
		<description>Awesome. That&#039;s even better, I was considering a few different methods to format the date, but now I can pass it straight to the model.</description>
		<content:encoded><![CDATA[<p>Awesome. That&#8217;s even better, I was considering a few different methods to format the date, but now I can pass it straight to the model.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Wyatt</title>
		<link>http://blog.hackerforhire.org/2008/03/29/rails-with-calendar-date-select/#comment-32439</link>
		<dc:creator>Wyatt</dc:creator>
		<pubDate>Sat, 18 Apr 2009 14:11:40 +0000</pubDate>
		<guid isPermaLink="false">http://blog.hackerforhire.org/2008/03/29/rails-with-calendar-date-select/#comment-32439</guid>
		<description>Also, for anyone else out there using &lt;a href=&quot;http://code.google.com/p/calendardateselect/&quot; rel=&quot;nofollow&quot;&gt;Calendar Date Select&lt;/a&gt;, the author has rolled my changes into his plugin so you shouldn&#039;t need to add your own JavaScript ISO date formatting.</description>
		<content:encoded><![CDATA[<p>Also, for anyone else out there using <a href="http://code.google.com/p/calendardateselect/" rel="nofollow">Calendar Date Select</a>, the author has rolled my changes into his plugin so you shouldn&#8217;t need to add your own JavaScript ISO date formatting.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Liam</title>
		<link>http://blog.hackerforhire.org/2008/03/29/rails-with-calendar-date-select/#comment-32406</link>
		<dc:creator>Liam</dc:creator>
		<pubDate>Fri, 17 Apr 2009 18:34:24 +0000</pubDate>
		<guid isPermaLink="false">http://blog.hackerforhire.org/2008/03/29/rails-with-calendar-date-select/#comment-32406</guid>
		<description>Thanks a lot for that. You&#039;ve just made someones life a hell of a lot easier!</description>
		<content:encoded><![CDATA[<p>Thanks a lot for that. You&#8217;ve just made someones life a hell of a lot easier!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike</title>
		<link>http://blog.hackerforhire.org/2008/03/29/rails-with-calendar-date-select/#comment-24792</link>
		<dc:creator>Mike</dc:creator>
		<pubDate>Sun, 30 Mar 2008 13:05:02 +0000</pubDate>
		<guid isPermaLink="false">http://blog.hackerforhire.org/2008/03/29/rails-with-calendar-date-select/#comment-24792</guid>
		<description>@wyatt: Agreed about the docs. The recipes book may be more what you&#039;re looking for.

@rick: Mongrel cluster behind Apache mod_proxy FTW.</description>
		<content:encoded><![CDATA[<p>@wyatt: Agreed about the docs. The recipes book may be more what you&#8217;re looking for.</p>
<p>@rick: Mongrel cluster behind Apache mod_proxy FTW.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rick Altherr</title>
		<link>http://blog.hackerforhire.org/2008/03/29/rails-with-calendar-date-select/#comment-24787</link>
		<dc:creator>Rick Altherr</dc:creator>
		<pubDate>Sun, 30 Mar 2008 00:45:05 +0000</pubDate>
		<guid isPermaLink="false">http://blog.hackerforhire.org/2008/03/29/rails-with-calendar-date-select/#comment-24787</guid>
		<description>Yes, I went down this same path when writing my first Rails app.  After getting all of the site functional, but ugly as sin, I gave up.  If you read enough guides and stumble onto the correct functions, Rails can be easy.  The main problem is that there is no definitive guide for what everything does.  The documentation is designed as a reference which means you need to know what you want to use before you can see what it does.

Then I started looking at what happens on the server side.  Running CGIs directly from apache is generally a poor performer.  There was a mod_ruby project similar to mod_perl, but they decided this was a bad direction and subsequently stopped development.  FastCGI is purported to be a great savior for performance, but when I was playing with Rails, Apache 2.0 had no FastCGI support and it didn&#039;t look like it was going to happen anytime soon.  So, if you don&#039;t mind a few seconds between pages, Rails is fine.  I&#039;m now headed in a direction designed more around having a dynamic backend that generates static pages.  For things like blogs, calendars, etc, that puts the dynamic portion in the correct place, at the time of change, not on every view.  Clearly for some types of sites, you still need all the dynamic pages for every view.  I&#039;m not sure what the best option there is, but I doubt I would choose Rails, PHP, or Perl ever again.</description>
		<content:encoded><![CDATA[<p>Yes, I went down this same path when writing my first Rails app.  After getting all of the site functional, but ugly as sin, I gave up.  If you read enough guides and stumble onto the correct functions, Rails can be easy.  The main problem is that there is no definitive guide for what everything does.  The documentation is designed as a reference which means you need to know what you want to use before you can see what it does.</p>
<p>Then I started looking at what happens on the server side.  Running CGIs directly from apache is generally a poor performer.  There was a mod_ruby project similar to mod_perl, but they decided this was a bad direction and subsequently stopped development.  FastCGI is purported to be a great savior for performance, but when I was playing with Rails, Apache 2.0 had no FastCGI support and it didn&#8217;t look like it was going to happen anytime soon.  So, if you don&#8217;t mind a few seconds between pages, Rails is fine.  I&#8217;m now headed in a direction designed more around having a dynamic backend that generates static pages.  For things like blogs, calendars, etc, that puts the dynamic portion in the correct place, at the time of change, not on every view.  Clearly for some types of sites, you still need all the dynamic pages for every view.  I&#8217;m not sure what the best option there is, but I doubt I would choose Rails, PHP, or Perl ever again.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

