<?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>xurde.info &#187; rubyonrails</title>
	<atom:link href="http://xurde.info/category/rubyonrails/feed" rel="self" type="application/rss+xml" />
	<link>http://xurde.info</link>
	<description>nothing to be tested</description>
	<lastBuildDate>Fri, 19 Feb 2010 11:12:23 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>what the hell is happening to rubyonrails.org website???</title>
		<link>http://xurde.info/projects/what-the-hell-is-happening-to-rubyonrailsorg-site</link>
		<comments>http://xurde.info/projects/what-the-hell-is-happening-to-rubyonrailsorg-site#comments</comments>
		<pubDate>Thu, 23 Apr 2009 03:38:53 +0000</pubDate>
		<dc:creator>xurde</dc:creator>
				<category><![CDATA[projects]]></category>
		<category><![CDATA[rubyonrails]]></category>

		<guid isPermaLink="false">http://xurde.info/?p=343</guid>
		<description><![CDATA[
What the hell is happening with rubyonrails.org website???
]]></description>
			<content:encoded><![CDATA[<p><a href="http://img.skitch.com/20090423-x9rebhed9b5iwxhjb8r2jp2dis.jpg"><img class="alignnone" title="WTF rubyonrails.org???" src="http://img.skitch.com/20090423-x9rebhed9b5iwxhjb8r2jp2dis.jpg" alt="" width="650" /></a></p>
<h3>What the hell is happening with <a href="http://rubyonrails.org">rubyonrails.org website</a>???</h3>
]]></content:encoded>
			<wfw:commentRss>http://xurde.info/projects/what-the-hell-is-happening-to-rubyonrailsorg-site/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>one-hit wonders detector mashup</title>
		<link>http://xurde.info/projects/one-hit-wonders-detector-mashup</link>
		<comments>http://xurde.info/projects/one-hit-wonders-detector-mashup#comments</comments>
		<pubDate>Sun, 30 Dec 2007 18:52:24 +0000</pubDate>
		<dc:creator>xurde</dc:creator>
				<category><![CDATA[projects]]></category>
		<category><![CDATA[rubyonrails]]></category>

		<guid isPermaLink="false">http://xurde.info/projects/one-hit-wonders-detector-mashup.html</guid>
		<description><![CDATA[
Do you remember all those big big hits that smashed your head for a never ending year in all the radios all over the world? Most of them fell inmediatly in to ostracism punished by the cruelty of the hustle and bustle of music markets. Well, from then on, those forgotten hits became &#8220;One-Hit Wonder&#8221;
I&#8217;ve [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://onehitwonders.xurdeonrails.com/"><img src='http://xurde.info/wp-content/uploads/2007/12/logo-ohw.png' alt='on-hit wonders logo' /></a></p>
<p>Do you remember all those big big hits that smashed your head for a never ending year in all the radios all over the world? Most of them fell inmediatly in to ostracism punished by the cruelty of the hustle and bustle of music markets. Well, from then on, those forgotten hits became <a href="http://en.wikipedia.org/wiki/One-hit_wonder">&#8220;One-Hit Wonder&#8221;</a></p>
<p>I&#8217;ve been developing a little experimental mashup for detecting and ranking these &#8220;wonders&#8221;. The idea is getting the data from the most popular social musical tracking platform, <a href="http://last.fm">Last.fm</a>. Catching music listening data from Last.fm guarantees the hit is really a One-Hit Wonder and not only for the commercial billboard including/excluding criteria.</p>
<p>The ranking is calculated with a very simple ratio done with the division of the most listened song of an artist and the average of the other 9 in his top ten songs. This gives an idea about the difference of popularity between the hit and the other songs.</p>
<p><a href="http://onehitwonders.xurdeonrails.com/"><img src='http://xurde.info/wp-content/uploads/2007/12/one-hit-wonders-snapshot.png' alt='one hit wonders snapshot' /></a></p>
<p><a href="http://onehitwonders.xurdeonrails.com/">Give it a try</a> and try to add all the unlisted artists you can remind!</p>
]]></content:encoded>
			<wfw:commentRss>http://xurde.info/projects/one-hit-wonders-detector-mashup/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>String.capitalize_each_word</title>
		<link>http://xurde.info/rubyonrails/stringcapitalize_each_word</link>
		<comments>http://xurde.info/rubyonrails/stringcapitalize_each_word#comments</comments>
		<pubDate>Sat, 29 Dec 2007 01:21:55 +0000</pubDate>
		<dc:creator>xurde</dc:creator>
				<category><![CDATA[rubyonrails]]></category>

		<guid isPermaLink="false">http://xurde.info/rubyonrails/stringcapitalize_each_word.html</guid>
		<description><![CDATA[A very simple Ruby snippet to capitalize all the words in a text string done extending the String class.
class String
&#160; def capitalize_each_word
&#160; &#160; (self.split(' ').each {&#124;w&#124; w.capitalize! }).join(' ')
&#160; end
end
(Hosted in snipplr)
]]></description>
			<content:encoded><![CDATA[<p>A very simple Ruby snippet to capitalize all the words in a text string done extending the String class.</p>
<p><code></p><p></p><div class='code' style='border: 1px dotted; overflow: auto; white-space:nowrap;'>class String<br />
&nbsp; def capitalize_each_word<br />
&nbsp; &nbsp; (self.split(' ').each {|w| w.capitalize! }).join(' ')<br />
&nbsp; end<br />
end</div><p></code></p>
<p>(Hosted in <a href="http://snipplr.com/view/4425/">snipplr</a>)</p>
]]></content:encoded>
			<wfw:commentRss>http://xurde.info/rubyonrails/stringcapitalize_each_word/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>happy new rails (2.0)</title>
		<link>http://xurde.info/rubyonrails/happy-new-rails-20</link>
		<comments>http://xurde.info/rubyonrails/happy-new-rails-20#comments</comments>
		<pubDate>Mon, 17 Dec 2007 01:12:55 +0000</pubDate>
		<dc:creator>xurde</dc:creator>
				<category><![CDATA[rubyonrails]]></category>

		<guid isPermaLink="false">http://xurde.info/rubyonrails/happy-new-rails-20.html</guid>
		<description><![CDATA[Rails 2.0 is just here to make us a happier 2008 year.

]]></description>
			<content:encoded><![CDATA[<p>Rails 2.0 is <a href="http://weblog.rubyonrails.org/2007/12/7/rails-2-0-it-s-done">just here</a> to make us a happier 2008 year.</p>
<p><img src='http://xurde.info/wp-content/uploads/2007/12/rails2christmas.jpg' alt='rails christmas' /></p>
]]></content:encoded>
			<wfw:commentRss>http://xurde.info/rubyonrails/happy-new-rails-20/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>artículo sobre frameworks web para pc actual</title>
		<link>http://xurde.info/rubyonrails/articulo-sobre-frameworks-web-para-pc-actual</link>
		<comments>http://xurde.info/rubyonrails/articulo-sobre-frameworks-web-para-pc-actual#comments</comments>
		<pubDate>Mon, 08 Oct 2007 21:29:07 +0000</pubDate>
		<dc:creator>xurde</dc:creator>
				<category><![CDATA[rubyonrails]]></category>

		<guid isPermaLink="false">http://xurde.info/rubyonrails/articulo-sobre-frameworks-web-para-pc-actual.html</guid>
		<description><![CDATA[Cuelgo un artículo sobre frameworks web recientemente publicado en la PC-Actual de Octubre.
Tengo que decir para mi justa redención que algunos titulares, entradillas y fotos un tanto faltos de rigor no estaban en el documento que yo envié, pero también es justo decir que está mejor maquetado.  

Descarga artículo (PDF &#8211; 9.7 MB)
]]></description>
			<content:encoded><![CDATA[<p>Cuelgo un artículo sobre frameworks web recientemente publicado en la PC-Actual de Octubre.<br />
Tengo que decir para mi justa redención que algunos titulares, entradillas y fotos un tanto faltos de rigor no estaban en el documento que yo envié, pero también es justo decir que está mejor maquetado. <img src='http://xurde.info/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><img height=245 width=180 src='http://xurde.info/wp-content/uploads/2007/10/lafiebredelosframeworks.jpg' alt='la fiebre de los frameworks' /></p>
<p><a href="/wp-content/uploads/2007/10/articulo-frameworks-web.pdf">Descarga artículo (PDF &#8211; 9.7 MB)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://xurde.info/rubyonrails/articulo-sobre-frameworks-web-para-pc-actual/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Borland (aka CodeGear) goes for Ruby on Rails</title>
		<link>http://xurde.info/rubyonrails/borland-aka-codegear-goes-for-ruby-on-rails</link>
		<comments>http://xurde.info/rubyonrails/borland-aka-codegear-goes-for-ruby-on-rails#comments</comments>
		<pubDate>Wed, 29 Aug 2007 10:13:14 +0000</pubDate>
		<dc:creator>xurde</dc:creator>
				<category><![CDATA[rubyonrails]]></category>

		<guid isPermaLink="false">http://xurde.info/rubyonrails/borland-aka-codegear-goes-for-ruby-on-rails.html</guid>
		<description><![CDATA[
My most beloved ever developer tools company Borland, currently turned into CodeGear, seems to be seriously getting into Web Development world with the announcement of a new IDE for Ruby On Rails that will be released in late Q3 2007.
This makes me having big expectatives for this Borland new phase.
]]></description>
			<content:encoded><![CDATA[<p><img src='http://xurde.info/wp-content/uploads/2007/08/codegear.gif' alt='CodeGear' /></p>
<p>My most beloved ever developer tools company Borland, currently turned into CodeGear, seems to be seriously getting into Web Development world with <a href="http://www.codegear.com/products/rubyide">the announcement of a new IDE for Ruby On Rails</a> that will be released in late Q3 2007.</p>
<p>This makes me having big expectatives for this Borland new phase.</p>
]]></content:encoded>
			<wfw:commentRss>http://xurde.info/rubyonrails/borland-aka-codegear-goes-for-ruby-on-rails/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ActiveScaffold: the end of the boring side of programming</title>
		<link>http://xurde.info/rubyonrails/activescaffold-the-end-of-the-boring-side-of-programming</link>
		<comments>http://xurde.info/rubyonrails/activescaffold-the-end-of-the-boring-side-of-programming#comments</comments>
		<pubDate>Tue, 15 May 2007 19:09:00 +0000</pubDate>
		<dc:creator>xurde</dc:creator>
				<category><![CDATA[rubyonrails]]></category>

		<guid isPermaLink="false">http://xurde.info/rubyonrails/activescaffold-the-end-of-the-boring-side-of-programming.html</guid>
		<description><![CDATA[Things like this makes me trust the human being yet.
If you want to code a database administration application one more time, your own, but you could be becoming stupid in that moment.
Check this demo and disagree if you can.
]]></description>
			<content:encoded><![CDATA[<p>Things like <a href="http://www.activescaffold.com/">this</a> makes me trust the human being yet.<br />
If you want to code a database administration application one more time, your own, but you could be becoming stupid in that moment.</p>
<p>Check <a href="http://demo.activescaffold.com/users">this demo</a> and disagree if you can.</p>
]]></content:encoded>
			<wfw:commentRss>http://xurde.info/rubyonrails/activescaffold-the-end-of-the-boring-side-of-programming/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>kaiser chiefs claim for ruby</title>
		<link>http://xurde.info/rubyonrails/kaiser-chiefs-claim-for-ruby</link>
		<comments>http://xurde.info/rubyonrails/kaiser-chiefs-claim-for-ruby#comments</comments>
		<pubDate>Mon, 26 Mar 2007 10:03:52 +0000</pubDate>
		<dc:creator>xurde</dc:creator>
				<category><![CDATA[rubyonrails]]></category>

		<guid isPermaLink="false">http://xurde.info/rubyonrails/kaiser-chiefs-claim-for-ruby.html</guid>
		<description><![CDATA[
See how the new britpop&#8217;s golden boys claim for the server side definite language.
But their official site seems not to be very agree. ( http://www.kaiserchiefs.co.uk/txp/index.php )
]]></description>
			<content:encoded><![CDATA[<p><object width="425" height="350"><param name="movie" value="http://www.youtube.com/v/JMDcOViViNY"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/JMDcOViViNY" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></object></p>
<p>See how the new britpop&#8217;s golden boys claim for the server side definite language.</p>
<p>But their official site seems not to be very agree. ( <a href="http://www.kaiserchiefs.co.uk/txp/index.php">http://www.kaiserchiefs.co.uk/txp/index.php</a> )</p>
]]></content:encoded>
			<wfw:commentRss>http://xurde.info/rubyonrails/kaiser-chiefs-claim-for-ruby/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>happy new rails! (1.2)</title>
		<link>http://xurde.info/rubyonrails/happy-new-rails-12</link>
		<comments>http://xurde.info/rubyonrails/happy-new-rails-12#comments</comments>
		<pubDate>Mon, 22 Jan 2007 23:25:10 +0000</pubDate>
		<dc:creator>xurde</dc:creator>
				<category><![CDATA[rubyonrails]]></category>

		<guid isPermaLink="false">http://xurde.info/index.php/uncategorized/happy-new-rails-12.html</guid>
		<description><![CDATA[The longly awaited rails 1.2 is here!
Update:
The shortly awaited rails 1.2.1 is here!
]]></description>
			<content:encoded><![CDATA[<p>The longly awaited rails 1.2 is here!</p>
<p>Update:</p>
<p>The shortly awaited rails 1.2.1 is here!</p>
]]></content:encoded>
			<wfw:commentRss>http://xurde.info/rubyonrails/happy-new-rails-12/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>cachos son trozos</title>
		<link>http://xurde.info/uncategorized/cachos-son-trozos</link>
		<comments>http://xurde.info/uncategorized/cachos-son-trozos#comments</comments>
		<pubDate>Fri, 24 Nov 2006 17:01:41 +0000</pubDate>
		<dc:creator>xurde</dc:creator>
				<category><![CDATA[events]]></category>
		<category><![CDATA[rubyonrails]]></category>
		<category><![CDATA[uncategorized]]></category>

		<guid isPermaLink="false">http://xurde.info/index.php/uncategorized/cachos-son-trozos.html</guid>
		<description><![CDATA[&#8220;Cachos son trozos.&#8220;
- David Barral a Asís García - Conferencia Rails 2006
]]></description>
			<content:encoded><![CDATA[<p>&#8220;Cachos son trozos.<em>&#8220;</em></p>
<p><em>- David Barral a Asís García -</em> Conferencia Rails 2006</p>
]]></content:encoded>
			<wfw:commentRss>http://xurde.info/uncategorized/cachos-son-trozos/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
