<?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>about: things &#187; OpenSource</title>
	<atom:link href="http://www.sofasportler.de/dirk.blog/category/opensource/feed" rel="self" type="application/rss+xml" />
	<link>http://www.sofasportler.de/dirk.blog</link>
	<description>on me and coding and some things</description>
	<lastBuildDate>Mon, 27 Oct 2008 00:47:44 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Beef up your RSS2 template for consumption with the Google Feed API Slide Show Control</title>
		<link>http://www.sofasportler.de/dirk.blog/articles/beef-up-your-rss2-template-for-consumption-with-the-google-feed-api</link>
		<comments>http://www.sofasportler.de/dirk.blog/articles/beef-up-your-rss2-template-for-consumption-with-the-google-feed-api#comments</comments>
		<pubDate>Thu, 31 May 2007 08:39:50 +0000</pubDate>
		<dc:creator>crux</dc:creator>
				<category><![CDATA[OpenSource]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[ruby]]></category>

		<guid isPermaLink="false">http://www.sofasportler.de/dirk.blog/2007/05/31/beef-up-your-rss2-template-for-consum</guid>
		<description><![CDATA[There can be no doubt about it, RSS Feeds became the connecting backplane for the internet. Like Yahoo Pipes a while ago, the new Google Feed API is building its functionallity on top off standartized RSS feeds. For the feeds API, just providing a standardized RSS feed is enough to offer you a free ride. [...]]]></description>
			<content:encoded><![CDATA[<p>There can be no doubt about it, RSS Feeds became the connecting backplane for the internet. Like <a href="http://pipes.yahoo.com/pipes/">Yahoo Pipes</a> a while ago, the new <a href="http://code.google.com/apis/ajaxfeeds/">Google Feed API</a> is building its functionallity on top off standartized RSS feeds. For the feeds API, just providing a standardized RSS feed is enough to offer you a free ride. And a jolly good ride it is. The <a href="http://googleajaxsearchapi.blogspot.com/2007/05/ajax-feed-api-slide-show-control.html">Slide Show Control</a> is rich in features. Most major photo banks are supported and the actual controls allows for fine grained control of timings and sizes. The funny thing is, the API pretty much covers most of what we discussed at work on the friday before the weekend the API was released.</p>

<p>For the <a href="http://sorry-but-this-is-not-released-yet">public timeline</a> of our <em>all-online-in-browser-photobooth-application</em> <a href="http://foto-foo.com">foto-foo</a> at <a href="http://prodev.idmedia.com/blog">/i-d media</a> we wanted to add RSS feeds from which to build slide show like applications displaying a constant stream of fresh images. I decided to give it try and found this <a href="http://snippets.dzone.com/posts/show/558">RSS2 rxml template on dzone.com</a> which i filled with my data.<br /><br />Various things happend, but no image was to be seen and the browser stalled a couple of times. First thing i found out was, “standard” Feed actually means it uses the <a href="http://search.yahoo.com/mrss">Media RSS extension</a>. This means the feed header has include the Media RSS namespace:<br /><pre><code><rss version="2.0">        xmlns:media="http://search.yahoo.com/mrss/" <br />        xmlns:dc="http://purl.org/dc/elements/1.1/"&gt;</rss></code></pre>which in rxml looks like:<br /><pre><code>xml.rss "version" =&gt; "2.0", \<br />        "xmlns:dc" =&gt; "http://purl.org/dc/elements/1.1/", \<br />        "xmlns:media" =&gt; "http://search.yahoo.com/mrss/" do</code></pre>Next thing to do is adding a &lt;media:group&gt; to all the feed items:<media :group=""></media><br /><pre><code><media :group="">      &lt;media:group&gt;<br />        &lt;media:title&gt;"#{img.title}"&lt;/media:title&gt;<br />        &lt;media:content type="#{img.type}" medium="image" url="#{img.url}"/&gt;<br />        &lt;media:credit role="#{img.credit.role"&gt;#{img.credit.txt}&lt;/media:credit&gt;<br />        &lt;media:description type="plain"&gt;"#{img.desc}"&lt;/media:description&gt;<br />        &lt;media:keywords&gt;"#{img.keywords}"&lt;/media:keywords&gt;<br />        &lt;media:thumbnail<br />                width="#{img.thumbnail.width" height="#{img.thumbnail.height"<br />                url="#{img.thumbnail.url}"/&gt;<br />      &lt;/media:group&gt;</media><media :thumbnail=""> </media></code></pre>your media group <media :group=""> attributes/elements may vary but there is one nasty surprise lurking which you should be aware of. The Feeds API seems to <em>ignore</em> the actual image URL and chooses the the thumbnail URL instead: no thumbnail, no slideshow! This was kind of driving me mad not beeing able to spot the difference between my none working feed and the working one.</media><br /></p>

<h2 id="bonus_feed_reader_compliance">Bonus: feed reader compliance</h2>

<p>handling images in RSS feeds is part of the vaguely borderline of rich media feeds where things like the <a href="http://search.yahoo.com/mrss">Media RSS extension</a> are actually made for. For Atom it seems media handling is defined a little better but the Feed API depends on RSS2. All this variations are hard to grok for some feedreaders but I wanted to have my <a href="http://foto-foo.com/">foto-foo</a> RSS stream also in my Reader, but the <media :group=""> did just not show up. I checked out <a href="http://web.mac.com/bdunford/iWeb/Riding_with_Robots/Home/Home.html">Riding with robots</a> feed which brings fresh views from outer space directly to my desk. It turns out that they just include a little encode HTML in the decscription tag:</media><br /><pre><code><description>&lt;description&gt;&amp;lt;a href='#{img.link}'&amp;gt;&amp;lt;img src='#{img.url}'/&amp;gt;&amp;lt;/a&amp;gt;&lt;/description&gt;<br /></description></code></pre>and voila, your <a href="http://googleajaxsearchapi.blogspot.com/2007/05/ajax-feed-api-slide-show-control.html">Slide Show</a> complient rss image feed works equally well in your normal feed reader.<br /><br />i know this is all rough and dirty, but it works for me, might help you a bit, and i dont like to drown in spec reading for to long today. Find my <a href="http://snippets.dzone.com/posts/show/4083">RSS2 rxml code snippet on dzone</a> and mess it up in any way you like.<br /><br />have fun.<br /><br />Technorati Tags: <a class="performancingtags" href="http://technorati.com/tag/rss" rel="tag">rss</a>, <a class="performancingtags" href="http://technorati.com/tag/mrss" rel="tag">mrss</a>, <a class="performancingtags" href="http://technorati.com/tag/ruby" rel="tag">ruby</a>, <a class="performancingtags" href="http://technorati.com/tag/rxml" rel="tag">rxml</a>, <a class="performancingtags" href="http://technorati.com/tag/rails" rel="tag">rails</a>, <a class="performancingtags" href="http://technorati.com/tag/foto-foo" rel="tag">foto-foo</a>, <a class="performancingtags" href="http://technorati.com/tag/google-feed-api" rel="tag">google-feed-api</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sofasportler.de/dirk.blog/articles/beef-up-your-rss2-template-for-consumption-with-the-google-feed-api/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SecondLife jetzt auch in 3D</title>
		<link>http://www.sofasportler.de/dirk.blog/articles/secondlife-jetzt-auch-in-3d</link>
		<comments>http://www.sofasportler.de/dirk.blog/articles/secondlife-jetzt-auch-in-3d#comments</comments>
		<pubDate>Sat, 28 Apr 2007 10:28:19 +0000</pubDate>
		<dc:creator>crux</dc:creator>
				<category><![CDATA[OpenSource]]></category>
		<category><![CDATA[secondlife]]></category>

		<guid isPermaLink="false">http://www.sofasportler.de/dirk.blog/2007/04/28/secondlife-jetzt-auch-in-3d/</guid>
		<description><![CDATA[thank good it&#8217;s friday, grossartige nachrichten fuer alle die schon immer wussten was polygone und triangle meshes sind aber sich in SecondLife wie mit auf dem Ruecken verbundenen Armen gefuehlt haben muessen. Seien wir mal ehrlich, bei aller Begeisterung darueben das 3D virtuelle Welten nun scheinbar tatsaechlich Einzug in den Mainstream halten werden(siehe Gardner Report: [...]]]></description>
			<content:encoded><![CDATA[<p>thank good it&#8217;s friday, <a href="http://wiki.secondlife.com/wiki/Sculpted_Prims">grossartige nachrichten </a>fuer alle die schon immer wussten was polygone und triangle meshes sind aber sich in SecondLife wie mit auf dem Ruecken verbundenen Armen gefuehlt haben muessen. Seien wir mal ehrlich, bei aller Begeisterung darueben das 3D virtuelle Welten nun scheinbar tatsaechlich Einzug in den Mainstream halten werden(siehe <a href="http://home.businesswire.com/portal/site/google/index.jsp?ndmViewId=news_view&#038;newsId=20070424006287&#038;newsLang=en">Gardner Report</a>: 80 Percent of Active Internet Users Will Have A &#8220;Second Life&#8221;), so sind wir doch alle einig das das in-world modelling von SecondLife schon immer ganz grosser Mist war. Nur jemand der vollkommen unbedarft in Sachen 3D Content Produktion war konnte wahrscheinlich ertragen sich auf das steinzeitliche Niveau des Linden Lab clients zu begeben. Alle dich kenne sind dazu auf jeden Fall viel zu verwoehnt gewesen.</p>

<p>Aber das koennte nun alles ganz anders werden. <a href="http://www.3pointd.com/20070427/second-life-build-tools-support-more-formats/">Angeblogged</a> durch den wie immer <a href="http://3pointd.com/about">gut informierten Mark Wallace</a> werde ich mir nun sofort <a href="http://wiki.secondlife.com/wiki/Sculpted_Prims">Sculpted Prims</a> ansehen. Durch einen wuesten Hack, so wie das auf den ersten Blick aussieht, haben Linden Labs wohl ohne grosse vorankuendigung, quasi durch die kalte Kueche die tuer aufgemacht zu 3D Conten Produktion in vollkommen neuen dimensionen. Vieleicht war ihnen das ein bisschen peinlich? Sie verwenden die Farbkanaele aus den Texturen um darin die X,Y,Z Raumkoordinaten der Sculpted Objekte zu koodieren. Grossartig! Genau richtig so. <a href="http://www.graficaobscura.com/">Paul Haeberli</a>, Miterfinder von (Open)GL hat gesagt: &#8220;hack means usefull, dirty hack  means extremly useful&#8221;, genau so seh ich das auch. Und besonders amusiert war ich natuerlich auch weil mein Freund Henrik und ich, genau daselbe gamacht haben als wir in unseren Radiosity Renderer das Problem hatten dringend notwendige Informationen irgentwie in ein falsch designtes System zu quetschen das dafuer einfach nicht vorgesehen war. Aber das war bevor es das internet gab :-( daher auch mal keine links dazu. Vielicht finde ich noch ein paar Dias,</p>

<p>anyhow, LindenLabs rulez, yep, Ja ich denke die sind auf einem guten Weg. Klar, der client, das backend, das system, alles mist, alles schlecht designed. Egal! creativity thrieves best under contraints! BETAMAX!</p>

<p>und nun zurueck ans geraet.</p>

<p>Technorati Tags: <a rel="tag" class="performancingtags" href="http://technorati.com/tag/secondlife">secondlife</a>, <a rel="tag" class="performancingtags" href="http://technorati.com/tag/virtual">virtual</a>, <a rel="tag" class="performancingtags" href="http://technorati.com/tag/3d">3d</a>, <a rel="tag" class="performancingtags" href="http://technorati.com/tag/converter">converter</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sofasportler.de/dirk.blog/articles/secondlife-jetzt-auch-in-3d/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>ruby user group berlin: JRuby, YARV/1.9, omdb.de and more</title>
		<link>http://www.sofasportler.de/dirk.blog/articles/ruby-user-group-berlin-jruby-yarv19-omdbde-and-more</link>
		<comments>http://www.sofasportler.de/dirk.blog/articles/ruby-user-group-berlin-jruby-yarv19-omdbde-and-more#comments</comments>
		<pubDate>Sat, 03 Mar 2007 12:55:17 +0000</pubDate>
		<dc:creator>crux</dc:creator>
				<category><![CDATA[OpenSource]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[community]]></category>
		<category><![CDATA[english]]></category>
		<category><![CDATA[events]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[ruby]]></category>
		<category><![CDATA[understanding: IT]]></category>
		<category><![CDATA[whatever]]></category>

		<guid isPermaLink="false">http://www.sofasportler.de/dirk.blog/2007/03/03/ruby-user-group-berlin-jruby-yarv19-o</guid>
		<description><![CDATA[We had our 2nd ruby users group berlin meeting yesterday with two speakers and the demo of the yet to be released omdb.org project. First was Tim Lossen giving a good round-up of the JRuby developments. Not of much interest to me because i have’t touched Java in a while. There was a common understanding [...]]]></description>
			<content:encoded><![CDATA[<p>We had our 2nd <a href="http://www.rubyonrails-ug.de/wiki/berlin">ruby users group berlin</a> meeting yesterday with two speakers and the demo of the yet to be released <a href="http://www.omdb.org">omdb.org</a> project.</p>

<p>First was <a href="http://www.rubyonrails-ug.de/wiki/timlossen">Tim Lossen</a> giving a good round-up of the <strong>JRuby developments</strong>. Not of much interest to me because i have’t touched Java in a while. There was a common understanding that <a href="http://jruby.codehaus.org/">JRuby</a> is a good thing and will pave Rubys way into the enterprise world, and with Sun now as official backing partner, <a href="http://jruby.codehaus.org/">JRuby</a> is heading for a 1.0 release this summer for Javaworld confererence. You can already run <a href="http://jruby.codehaus.org/">JRuby</a> based Rails applications inside you <span class="caps">IBM</span> Websphere Application server, Yeah! But can you run a Rails application with <a href="http://jruby.codehaus.org/">JRuby</a> from inside a Java applet on your client browser? Hm, interesting idea, we couldn’t answer that yesterday.</p>

<p>Next was the talk by <a href="http://forum.ruby-portal.de/profile.php?mode=viewprofile&#038;u=73&#038;sid=c3be0574577a752cce3b13fde159eded">Murphy</a> about the state of the ruby 1.9 release. Murphy mainly used <a href="http://eigenclass.org/hiki.rb?Changes+in+Ruby+1.9">Mauricio Fernandez eigenclass</a> for reference and gave a really great overview around the three main themes of this topic: Roadmap, New and changed features and performance. Everybody loves the hand drawn roadmap image(which i can’t find now) and while a <strong>Ruby2.0 release</strong> being something from a far utopian future, we might see a 1.9 release later this year. I’m actually not following the <strong>1.9 developments</strong> but became inspired to check again. Enumerators for examples reminded me to my <span class="caps">STL</span>/C++ years, just now without the template pains :-)
Interessting were his <strong>comments on performance</strong>. Tim already showed some charts which related the <a href="http://jruby.codehaus.org/">JRuby</a> to some other implementations and Murphy made some own benchmarks which were pretty much in line with Tims data. The general information is that <strong>1.9(==YARV) is a couple of times faster</strong>, ranging from 3 to 10 times faster. <strong><span class="caps">BUT</span>!</strong> and that is a big but, Murphy did report that on the real life applications he tested, the speed-up was close to insignificant for various applications. This is because the the performance tuning in 1.9 seems to be focussing on benchmark relevant stuff. And <strong>real life application are hardly build from benchmark functionallity</strong>.  This sounds like, been there, seen that before. History(benchmark tweaking) is repeating itself. For me it doesn’t matter. When others can do <a href="http://joyeur.com/2007/02/04/a-brief-update-with-some-numbers-for-hardware-load-balanced-mongrels">4000 requests/second</a>, ruby/rails is definitly fast enough for me.</p>

<p>Finally <a href="http://www.rubyonrails-ug.de/wiki/benjaminkrause">Benjamin Krause</a> showcased his upcoming <a href="http://www.omdb.org"><span class="caps">OMDB</span></a> project(<a href="http://blog.omdb-beta.org/">tech blog</a>, <a href="http://www.omdb-beta.org/">development version</a>, <a href="http://www.omdb.org">live</a>).  <a href="http://www.omdb.org"><span class="caps">OMDB</span></a> is a <a href="http://imdb.com">IMDb</a> in wikipedia style with a <a href="http://creativecommons.org/">creative commons</a> licence. <strong>16501 People</strong>(see comment) <strong><strike>16000 movies</strike> </strong><strong>are already in the database</strong> and once it will open up, everybody can extend it. Thats a cool idea conceptually and what he showed technically was nothing less than the equivalent to an “Full House” in poker. For example the subsecond async response times for fetching actors from a huge database which were made possible by his <a href="http://ferret.davebalmain.com/trac/">ferret</a> magic. impressive.</p>

<p>And this also led to the <a href="http://www.rubyonrails-ug.de/wiki/doku.php#agenda_treffen">agenda for the next meeting</a> where Benjamin will give a talk about <a href="http://ferret.davebalmain.com/trac/">ferret</a> on Rails. Everybody wanted to see more of it. Also we will have a talk by <a href="http://www.rubyonrails-ug.de/wiki/adamgroves">Adam</a> about <em>AmzonWebServices: S3 and Rails on <span class="caps">EC2</span></em> . I’m looking forward to it. And about the open mic section, i’m pretty sure <a href="http://prodev.idmedia.com">we</a> are releasing our <a href="http://foto-foo.com">foto-foo</a> into the wild.</p>

<p>And for you to have some fun, we plan to record the talks next time and put them up as podcasts to fit with your online consumption habits. Murphy and Tim also promised to upload their talks for online viewing <a href="http://www.rubyonrails-ug.de/wiki/berlin">(to the wiki i guess)</a>.</p>

<p>looks like the <strong>ruby users group berlin</strong> is consolidating.</p>

<p>Technorati Tags: <a class="performancingtags" rel="tag" href="http://technorati.com/tag/ruby">ruby</a>, <a class="performancingtags" rel="tag" href="http://technorati.com/tag/usergroup">usergroup</a>, <a class="performancingtags" rel="tag" href="http://technorati.com/tag/YARV">YARV</a>, <a class="performancingtags" rel="tag" href="http://technorati.com/tag/jruby">jruby</a>, <a class="performancingtags" rel="tag" href="http://technorati.com/tag/omdb">omdb</a>, <a class="performancingtags" rel="tag" href="http://technorati.com/tag/imdb">imdb</a>, <a class="performancingtags" rel="tag" href="http://technorati.com/tag/idmedia">idmedia</a>, <a class="performancingtags" rel="tag" href="http://technorati.com/tag/berlin">berlin</a>, <a class="performancingtags" rel="tag" href="http://technorati.com/tag/" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sofasportler.de/dirk.blog/articles/ruby-user-group-berlin-jruby-yarv19-omdbde-and-more/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>bubble bursting version numbers</title>
		<link>http://www.sofasportler.de/dirk.blog/articles/bubble-bursting-version-numbers</link>
		<comments>http://www.sofasportler.de/dirk.blog/articles/bubble-bursting-version-numbers#comments</comments>
		<pubDate>Wed, 21 Feb 2007 00:13:02 +0000</pubDate>
		<dc:creator>crux</dc:creator>
				<category><![CDATA[OpenSource]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[understanding: IT]]></category>

		<guid isPermaLink="false">http://www.sofasportler.de/dirk.blog/2007/02/21/bubble-bursting-version-numbers/</guid>
		<description><![CDATA[With all due respect, New versioning, 0.12.2 —&#62; 2.2.0: is the most ridiculous version number jump i have seen i a while. Yahoo just released a new version of their Yahoo! UI Library and pull this little marketing trick.This is even more extreme than in the good old new economy times when marketing geniuses where [...]]]></description>
			<content:encoded><![CDATA[<p>With all due respect, <br /></p>

<blockquote><h3 id="new-versioning"><a href="http://yuiblog.com/blog/2007/02/20/yui-220-released/">New versioning, 0.12.2 —&gt; 2.2.0:</a></h3></blockquote>

<p>is the most ridiculous version number jump i have seen i a while. Yahoo just released a new version of their <a href="http://developer.yahoo.com/yui/">Yahoo! UI Library</a> and pull this little marketing trick.<br /><br />This is even more extreme than in the good old new economy times when marketing geniuses where pushing their fail-ups towards their IPOs.<br /><br />Don&#8217;t get me wrong, YUI is a fine piece of work and the <a href="http://yuiblog.com/blog/">yuiblog</a> a delighting source of inspiration. But no marketing blah-blah whatsoever will make me understand the reasoning behind going from below 1.0 to 2.2 in a single step. Get real, start at 1 please. <br /><br />cheers<br /><br />Technorati Tags: <a class="performancingtags" href="http://technorati.com/tag/yui" rel="tag">yui</a>, <a class="performancingtags" href="http://technorati.com/tag/yahoo" rel="tag">yahoo</a>, <a class="performancingtags" href="http://technorati.com/tag/javascript" rel="tag">javascript</a>, <a class="performancingtags" href="http://technorati.com/tag/gui" rel="tag">gui</a>, <a class="performancingtags" href="http://technorati.com/tag/library" rel="tag">library</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sofasportler.de/dirk.blog/articles/bubble-bursting-version-numbers/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>crontab&#8217;ed linden mania with hpricot</title>
		<link>http://www.sofasportler.de/dirk.blog/articles/update-bloomstreet-verpasst-den-januar</link>
		<comments>http://www.sofasportler.de/dirk.blog/articles/update-bloomstreet-verpasst-den-januar#comments</comments>
		<pubDate>Sat, 03 Feb 2007 11:57:04 +0000</pubDate>
		<dc:creator>crux</dc:creator>
				<category><![CDATA[OpenSource]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[english]]></category>
		<category><![CDATA[ruby]]></category>

		<guid isPermaLink="false">http://www.sofasportler.de/dirk.blog/2007/02/03/update-bloomstreet-verpasst-den-janua</guid>
		<description><![CDATA[a kind of buzzwordy post title, i know, but hey, at least i kept the unavoidable second life out of it. For reasons far from being thrilling enough to tell here i pulled the latest hpricot release and made my server pull the latest stats from linden labs frontpage every 6 hours. I&#8217;m kind of [...]]]></description>
			<content:encoded><![CDATA[<p><img style="float: right" src="http://farm1.static.flickr.com/178/379777615_5d58878ea3.jpg?v=0" />a kind of buzzwordy post title, i know, but hey, at least i kept the unavoidable <a href="http://secondlife.com/">second life</a> out of it. For reasons far from being thrilling enough to tell here i pulled <a href="http://redhanded.hobix.com/inspect/andNowHpricot05IsYours.html">the latest hpricot release</a> and made my server pull the latest stats from linden labs frontpage every 6 hours. I&#8217;m kind of sad I could not get it up before the (ridiculous)3293499 residents mark, but once SL will hit the billion, it will still look like a pioneer. So here is the beef: I made a cronjob screenscraping secondlife&#8217;s stats from their frontpage. A nice graph from the data i will put up soon hopefuly. And stay tuned for the raw data feed if you like.  Lets see, a week i guess, before it becomes a nice exponential curve.</p>

<ol>
<li>get value elements from the stats div
<pre>v = Hpricot(open("http://www.secondlife.com")).search("#SL_stats strong")</pre></li>
<li>make it digestible
<pre>v.map { |e| e.innerText.gsub(/[$,]/, "").to_i }</pre></li>
<li>dump the stuff
<pre># is left as an exercise to the reade</pre>
and <a href="http://www.sofasportler.de/dirk.blog/wp-content/trac-sl.rb">mine you&#8217;ll get right here.</a></li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.sofasportler.de/dirk.blog/articles/update-bloomstreet-verpasst-den-januar/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>rails 1.2.1 got &#8220;Mehrwertsteuererhoehung&#8221;</title>
		<link>http://www.sofasportler.de/dirk.blog/articles/rails-121-got-mehrwertsteuererhoehung</link>
		<comments>http://www.sofasportler.de/dirk.blog/articles/rails-121-got-mehrwertsteuererhoehung#comments</comments>
		<pubDate>Sat, 20 Jan 2007 10:59:36 +0000</pubDate>
		<dc:creator>crux</dc:creator>
				<category><![CDATA[OpenSource]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[ruby]]></category>

		<guid isPermaLink="false">http://www.sofasportler.de/dirk.blog/2007/01/20/rails-121-got-mehrwertsteuererhoehung</guid>
		<description><![CDATA[Sorry for the german in the title, but i just stumbled over the coincidence of the Rails 1.2.1 release lines of code increased conforming to the german VAT update we got this januar. VAT is now 19% in Germany and ruby came from 6246 to 7428 lines of ruby code. That is an 18.924111431316 percent [...]]]></description>
			<content:encoded><![CDATA[<p>Sorry for the german in the title, but i just stumbled over the coincidence of the <a href="http://weblog.rubyonrails.com/2007/1/19/rails-1-2-rest-admiration-http-lovefest-and-utf-8-celebrations">Rails 1.2.1 release</a> lines of code increased conforming to the german VAT update we got this januar. VAT is now 19% in Germany and ruby came from 6246 to 7428 lines of ruby code. That is an 18.924111431316 percent increase, which rounds up quite nicely to 19%. I checked against the last pre-1.2 release . <br /><br />With 7428 lines of code rails still stays a lithe and lissom young framework. All the best for the REST. <br /><br />cheers<br /> <br /><br /><br /><br />Technorati Tags: <a class="performancingtags" href="http://technorati.com/tag/rubyonrails" rel="tag">rubyonrails</a>, <a class="performancingtags" href="http://technorati.com/tag/release" rel="tag">release</a>, <a class="performancingtags" href="http://technorati.com/tag/1.2.1" rel="tag">1.2.1</a>, <a class="performancingtags" href="http://technorati.com/tag/" rel="tag"></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sofasportler.de/dirk.blog/articles/rails-121-got-mehrwertsteuererhoehung/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Happy birthday Camping</title>
		<link>http://www.sofasportler.de/dirk.blog/articles/happy-birthday-camping</link>
		<comments>http://www.sofasportler.de/dirk.blog/articles/happy-birthday-camping#comments</comments>
		<pubDate>Fri, 19 Jan 2007 08:09:59 +0000</pubDate>
		<dc:creator>crux</dc:creator>
				<category><![CDATA[OpenSource]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[events]]></category>
		<category><![CDATA[ruby]]></category>

		<guid isPermaLink="false">http://www.sofasportler.de/dirk.blog/2007/01/19/happy-birthday-camping/</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[
]]></content:encoded>
			<wfw:commentRss>http://www.sofasportler.de/dirk.blog/articles/happy-birthday-camping/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>one browser to rule tham all?</title>
		<link>http://www.sofasportler.de/dirk.blog/articles/one-browser-to-rule-tham-all</link>
		<comments>http://www.sofasportler.de/dirk.blog/articles/one-browser-to-rule-tham-all#comments</comments>
		<pubDate>Thu, 18 Jan 2007 08:22:51 +0000</pubDate>
		<dc:creator>crux</dc:creator>
				<category><![CDATA[OpenSource]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[understanding: IT]]></category>

		<guid isPermaLink="false">http://www.sofasportler.de/dirk.blog/2007/01/18/one-browser-to-rule-tham-all/</guid>
		<description><![CDATA[huch, da hat mich dion aber erschreckt. in a surprise move, they have created Microsoft Firefox 2007 that mimics a lot of features from Mozilla Firefox. soweit sind wir also schon. Nach dem ersten Schreck allerdings und einem kurzen Blick über die Seite sortiert sich die Welt jedoch schnell wieder ins gewohnte. have fun Technorati [...]]]></description>
			<content:encoded><![CDATA[<p>huch, da hat mich <a href="http://ajaxian.com/archives/microsoft-firefox-2007-professional-edition">dion</a> aber erschreckt.</p>

<blockquote>in a surprise move, they have created Microsoft Firefox 2007 that mimics a lot of features from Mozilla Firefox.<a target="_blank" href="http://www.msfirefox.com/"><img src="http://ajaxian.com/wp-content/images/msfirefox.png" alt="MS Firefox" style="padding: 10px; float: right;" border="0" height="92" width="249" /></a></blockquote>

<p>soweit sind wir also schon. Nach dem ersten Schreck allerdings und einem kurzen Blick über die Seite sortiert sich die Welt jedoch schnell wieder ins gewohnte.</p>

<p>have fun</p>

<p>Technorati Tags: <a class="performancingtags" href="http://technorati.com/tag/microsoft" rel="tag">microsoft</a>, <a class="performancingtags" href="http://technorati.com/tag/firefox" rel="tag">firefox</a>, <a class="performancingtags" href="http://technorati.com/tag/ie" rel="tag">ie</a>, <a class="performancingtags" href="http://technorati.com/tag/hoax" rel="tag">hoax</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sofasportler.de/dirk.blog/articles/one-browser-to-rule-tham-all/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Aus für Amateure</title>
		<link>http://www.sofasportler.de/dirk.blog/articles/aus-fur-amateure</link>
		<comments>http://www.sofasportler.de/dirk.blog/articles/aus-fur-amateure#comments</comments>
		<pubDate>Wed, 17 Jan 2007 00:42:29 +0000</pubDate>
		<dc:creator>crux</dc:creator>
				<category><![CDATA[OpenSource]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[life]]></category>
		<category><![CDATA[market]]></category>
		<category><![CDATA[understanding: IT]]></category>

		<guid isPermaLink="false">http://www.sofasportler.de/dirk.blog/2007/01/17/aus-fur-amateure/</guid>
		<description><![CDATA[Die Niederländer legen die Latte mächtig hoch in Sachen Webenwicklung. Peter Paul Koch berichtet über das neue Accessebilty Gesetz in Holland. Auf Quirksmode schreibt er schon seit Jahren für geordnetet Verhältnisse im Sachen CSS, HTML und Javascript. Er war einer der ersten, bei dem ich systematische Lösungen gefunden habe, die sich wohltuend von den cut-copy-paste [...]]]></description>
			<content:encoded><![CDATA[<p>Die Niederländer legen die Latte mächtig hoch in Sachen Webenwicklung. <a href="http://www.quirksmode.org/about/intro.html">Peter Paul Koch</a> berichtet über das <a href="http://www.quirksmode.org/blog/archives/2007/01/new_dutch_acces.html">neue Accessebilty Gesetz in Holland</a>. Auf <a href="http://www.quirksmode.org/">Quirksmode</a> schreibt er schon seit Jahren für geordnetet Verhältnisse im Sachen CSS, HTML und Javascript. Er war einer der ersten, bei dem <a href="http://www.sebrink.de/drops/">ich systematische Lösungen gefunden habe</a>, die sich wohltuend von den <span style="font-style: italic;">cut-copy-paste</span> Orgien der unzähligen <a href="http://de.wikipedia.org/wiki/Cargo_Cult_Science">Cargo-Cult</a> Adepten abhob. <br /><br />Das Gesetz ist zwar schon seit letztem Jahr in Kraft, aber wer liest sowas denn schon? Wie kann man auch ahnen das die Leute was von ihrem Handwerk verstehen und Regeln wie die folgenden festlegen:<br /></p>

<blockquote><ul><li>valid HTML 4.01 or XHTML 1.0</li><li class="odd">CSS and semantic HTML and separation of structure and presentation</li><li>progressive enhancement</li><li class="odd">the W3C DOM (instead of the old Microsoft <code>document.all</code>)</li><li>meaningful values of <code>class</code> and <code>id</code></li><li class="odd">meaningful <code>alt</code> attributes on all images</li></ul></blockquote>

<p>Und das gilt wohlgemerkt:<br /></p>

<blockquote>As of 1 September last year, every website built for a government agency is required by law to use [die so festgelegten Regeln]<br /></blockquote>

<p>, und von denen gibt es 125! In der Konsequenz bedeutet das die Vertreibung der Armateure aus dem Geschaeft mit öffentlichen Webseiten. Zum anderen aber macht es die Produktion teurer und Regierungen sind auch nur Kunden die am Ende immer Geld sparen wollen/müssen. Da per Gesetz aber alle bestehenden Regierungsseiten bis 2011 entsprechend angepasst werden müssen entsteht auf jeden Fall ein lukrativer Markt. Auf diese Weise werden qualifizierte Leute gefördert und der gesamten Branche ein Qualifizierungsanreiz aller erster Güte gegeben. Und Qualität ist ja noch immer das beste Geschäft, <a href="http://www.quirksmode.org/blog/archives/2007/01/new_dutch_acces.html">PPK auf jeden Fall scheint sich zu freuen</a>. Volkswirtschaftlich ist Qualifikation in Zeiten der Globalisierung sicher eine probates Mittel für ein an natürlichen Rohstoffen ja so reiches Land wie Holland. Davon sollte man lernen.<br /><br />Und nun, wer Traute hat, <a href="http://webrichtlijnen.overheid.nl/toetsen/">der kann sich ja mal selbst versuchen</a>. Ich weiss nicht welcher Affe mich geritten hat die full flash version der <a href="http://www.idmedia.com/">neuen Homepage meines Arbeitgebers</a> zu checken, aber hey! Die <a href="http://webrichtlijnen.overheid.nl/toetsen/report/7629/12015/">80% können sich sehen lassen</a>, dass ist <a href="http://webrichtlijnen.overheid.nl/toetsen/report/7615/12000/">deutlich besser als die 58%</a> für das <span style="text-decoration: underline;">P</span><a href="http://ajaxian.com/archives/dutch-government-websites-be-accessible-or-break-the-law">osting</a> auf <a href="http://ajaxian.com/">Ajaxian</a> zu dem Artikel in Quirksmode, und das ist ja schliesslich das Zentralorgan des Web2.0.<br /><br />My personal favorite: &#8220;<span style="font-style: italic;">meaningful values of </span><code style="font-style: italic;">class</code><span style="font-style: italic;"> and </span><code style="font-style: italic;">id",</code> ganz, ganz großartig, nachdem ich heute mal wieder rätsend darüber saß wofür wohl <span style="font-style: italic;">&#8220;pb-id&#8221;</span> stehen mag.<br /><br />cheers<br /><br />Technorati Tags: <a class="performancingtags" href="http://technorati.com/tag/accessebilty" rel="tag">accessebilty</a>, <a class="performancingtags" href="http://technorati.com/tag/css" rel="tag">css</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sofasportler.de/dirk.blog/articles/aus-fur-amateure/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ruby for system adminstrators</title>
		<link>http://www.sofasportler.de/dirk.blog/articles/ruby-for-system-adminstrators</link>
		<comments>http://www.sofasportler.de/dirk.blog/articles/ruby-for-system-adminstrators#comments</comments>
		<pubDate>Thu, 04 Jan 2007 11:08:13 +0000</pubDate>
		<dc:creator>joe.sixpack</dc:creator>
				<category><![CDATA[OpenSource]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[ruby]]></category>

		<guid isPermaLink="false">http://www.sofasportler.de/dirk.blog/2007/01/04/ruby-for-system-adminstrators/</guid>
		<description><![CDATA[From the &#8220;Weichet von mir Dämonen!&#8221; department here is a little helper i found for the would-be ruby savvy system adminstraters. The Daemons ruby gem by Thomas Uehlinger is a very welcomed replacment for the shell and perl scripting mess you do for half of the day. Daemons provides: &#8230;. scripts&#160; to be run as [...]]]></description>
			<content:encoded><![CDATA[<p>From the <span style="font-style: italic;">&#8220;Weichet von mir Dämonen!&#8221;</span> department here is a little helper i found for the would-be ruby savvy system adminstraters. The <a href="http://daemons.rubyforge.org/">Daemons</a> ruby gem  by <a href="http://physiker.ch/?page_id=4">Thomas Uehlinger</a> is a very welcomed replacment for the shell and perl scripting mess you do for half of the day. <br /><br /></p>

<blockquote><p> <a href="http://daemons.rubyforge.org/classes/Daemons.html">Daemons</a> provides: &#8230;. scripts&nbsp; to be <em>run as a daemon</em> and to be <em>controlled by simple start/stop/restart commands</em>. </p><p> &#8230; <em>run blocks of ruby code </em>and control these processes from the main application. </p></blockquote>

<blockquote> &#8230;offers many advanced features like <em>exception backtracing</em> and logging and <em>monitoring</em> <br /><br />&#8230;and automatic restarting of your processes if they crash.<br /></blockquote>

<p>I spread the word here as part of my ruby evangelizing efforts to bring light into your scripting hell and as maybe your first step onto the path of ruby enlightenment.<br /><br />have fun<br /><br /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sofasportler.de/dirk.blog/articles/ruby-for-system-adminstrators/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

