<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><!-- generator="wordpress/2.2.3 DE-Edition" --><rss 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:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Treibstofff.de</title>
	<link>http://www.treibstofff.de</link>
	<description>Auf der Suche nach IT-Treibstofff</description>
	<pubDate>Tue, 04 May 2010 13:41:07 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.2.3</generator>
	<language>de</language>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/Treibstofffde" /><feedburner:info uri="treibstofffde" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Rails 2.3.5 - Add routes to your app - Really useful for rails engines and plugins</title>
		<link>http://feedproxy.google.com/~r/Treibstofffde/~3/6WIth5x8VBw/</link>
		<comments>http://www.treibstofff.de/2010/05/04/rails-235-add-routes-to-your-app-really-useful-for-rails-engines-and-plugins/#comments</comments>
		<pubDate>Tue, 04 May 2010 13:39:44 +0000</pubDate>
		<dc:creator>Julian Fischer</dc:creator>
		
		<category><![CDATA[Ruby on Rails]]></category>

		<category><![CDATA[Ruby]]></category>

		<guid isPermaLink="false">http://www.treibstofff.de/2010/05/04/rails-235-add-routes-to-your-app-really-useful-for-rails-engines-and-plugins/</guid>
		<description><![CDATA[Since Rails 2.3.5 you can easily load new routes to your app anytime. So using
RouteSet#add_configuration_file
to load a separate route file can me extremly useful when creating a rails plugin or engine that needs to define some extra routes.
]]></description>
			<content:encoded><![CDATA[<p>Since <a href="http://guides.rubyonrails.org/2_3_release_notes.html" target="_blank">Rails 2.3.5</a> you can easily load new routes to your app anytime. So using</p>
<p><a href="http://apidock.com/rails/ActionController/Routing/RouteSet/add_configuration_file" target="_blank">RouteSet#add_configuration_file</a></p>
<p>to load a separate route file can me extremly useful when creating a rails plugin or engine that needs to define some extra routes.</p>
<img src="http://feeds.feedburner.com/~r/Treibstofffde/~4/6WIth5x8VBw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.treibstofff.de/2010/05/04/rails-235-add-routes-to-your-app-really-useful-for-rails-engines-and-plugins/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.treibstofff.de/2010/05/04/rails-235-add-routes-to-your-app-really-useful-for-rails-engines-and-plugins/</feedburner:origLink></item>
		<item>
		<title>CouchDB - How to replace an SQL Auto-Value, Auto-Increment or DB-Sequence with CouchDB Views?</title>
		<link>http://feedproxy.google.com/~r/Treibstofffde/~3/smlnSI7R91w/</link>
		<comments>http://www.treibstofff.de/2010/04/30/couchdb-how-to-replace-an-sql-auto-value-auto-increment-or-db-sequence-with-couchdb-views/#comments</comments>
		<pubDate>Fri, 30 Apr 2010 11:06:22 +0000</pubDate>
		<dc:creator>Julian Fischer</dc:creator>
		
		<category><![CDATA[CouchDB]]></category>

		<guid isPermaLink="false">http://www.treibstofff.de/2010/04/30/couchdb-how-to-replace-an-sql-auto-value-auto-increment-or-db-sequence-with-couchdb-views/</guid>
		<description><![CDATA[Learning CouchDB for a SQL educated person is sometimes a bit tricky because things are solved so different. So happened to me.
Currently I am trying to create a simple invoicing app based on CouchDB. When creating invoices you might want to have a straight integer sequence to acts as invoice numbers. In a RDBM this [...]]]></description>
			<content:encoded><![CDATA[<p>Learning CouchDB for a SQL educated person is sometimes a bit tricky because things are solved so different. So happened to me.</p>
<p>Currently I am trying to create a simple invoicing app based on CouchDB. When creating invoices you might want to have a straight integer sequence to acts as invoice numbers. In a RDBM this is a great job to use an auto increment, auto value or DB sequence.</p>
<p>The <a href="http://wiki.apache.org/couchdb/Frequently_asked_questions" target="_blank">CouchDB FAQ</a> says that using sequences to identify records is not necessary because CouchDB has its own way to create document uuids and optimistically postulates that you&#8217;ll find a different way for all other DB-sequence use cases as well.</p>
<p>And well, I did :-)</p>
<p>Using an integer attribute &#8220;nr&#8221; for each invoice containing its number its as simple as creating a map-reduce-maximum-search to simulate a sequence:</p>
<p><strong>View function</strong>:</p>
<textarea name="code" class="javascript" cols="60" rows="10">

function(doc) {
if (doc.ruby_class = "Invoice") {
emit(null, doc.nr);
}
}

</textarea>
<p>The map function simply emits the invoice&#8217;s nr resulting into an array of invoice numbers.</p>
<p><strong>Emit function</strong>:</p>
<textarea name="code" class="javascript" cols="60" rows="10">

function(keys, values, rereduce) {
var max = 0;
for( i in values ) {
log( "\n\n" + values[i] + "\n\n");
if (values[i] &gt; max) {
max = values[i];
}
}

return max;
}

</textarea>
<p>The corresponding reduce method is also simple as pie. Just take the incoming array and look for and return the largest element. A simple maximum search.</p>
<p>My first idea of incrementing the return value by 1 to not only get the maximum invoice nr but also receive the next invoice number turned out to be a bad idea.</p>
<p>This is because the reduce function can be called multiple times. Those rereduce method calls then fold result values of prio reduce-calls.</p>
<p>Example:</p>
<p>[1,4,2,5,6,3] might be split into [1,4,2] and [5,6,3].</p>
<p>[1,4,2] reduces to 4.</p>
<p>[5,6,3] reduces to 6,</p>
<p>[4,6] then finally reduces to 6.</p>
<p>Since we don&#8217;t know when we&#8217;re in the last map invocation we pass the job to increment the result of the maximum search to the client.</p>
<p>Using <a href="http://github.com/langalex/couch_potato" target="_blank">couch_potato</a> in a Ruby app the example looks like this:</p>
<textarea name="code" class="ruby" cols="60" rows="10">

# CouchPotato.database.view Invoice.max_nr
view :max_nr, :type =&gt; :raw,
:map =&gt; "function(doc) { if (doc.ruby_class = \"Invoice\") { emit(null, doc.nr); } }",
:reduce =&gt; "function(keys, values, rereduce) { var max = 0; for( i in values ) { if (values[i] &gt; max) { max = values[i]; } } return max; }",
:results_filter =&gt; lambda { |result| result["rows"].first["value"].to_i }

</textarea>
<p>Feedback to this article is very welcome: <a href="http://www.twitter.com/railshoster" target="_blank">http://www.twitter.com/railshoster</a></p>
<img src="http://feeds.feedburner.com/~r/Treibstofffde/~4/smlnSI7R91w" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.treibstofff.de/2010/04/30/couchdb-how-to-replace-an-sql-auto-value-auto-increment-or-db-sequence-with-couchdb-views/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.treibstofff.de/2010/04/30/couchdb-how-to-replace-an-sql-auto-value-auto-increment-or-db-sequence-with-couchdb-views/</feedburner:origLink></item>
		<item>
		<title>CouchDB - Debug CouchDB Views</title>
		<link>http://feedproxy.google.com/~r/Treibstofffde/~3/GI-1m6yTguc/</link>
		<comments>http://www.treibstofff.de/2010/04/30/couchdb-debug-couchdb-views/#comments</comments>
		<pubDate>Fri, 30 Apr 2010 10:19:51 +0000</pubDate>
		<dc:creator>Julian Fischer</dc:creator>
		
		<category><![CDATA[CouchDB]]></category>

		<guid isPermaLink="false">http://www.treibstofff.de/2010/04/30/couchdb-debug-couchdb-views/</guid>
		<description><![CDATA[In order to debug couchDB view functions you can use the log - function:


function(keys, values, rereduce) {
var max = 0;
for( i in values ) {
log( "\n\n" + values[i] + "\n\n");
if (values[i] &#62; max) {
max = values[i];
}
}

return max;
}
You&#8217;ll find the output in your couchdb-Log file.
]]></description>
			<content:encoded><![CDATA[<p>In order to debug couchDB view functions you can use the log - function:</p>
<textarea name="code" class="javascript" cols="60" rows="10">

function(keys, values, rereduce) {
var max = 0;
for( i in values ) {
log( "\n\n" + values[i] + "\n\n");
if (values[i] &gt; max) {
max = values[i];
}
}

return max;
}</textarea>
<p>You&#8217;ll find the output in your couchdb-Log file.</p>
<img src="http://feeds.feedburner.com/~r/Treibstofffde/~4/GI-1m6yTguc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.treibstofff.de/2010/04/30/couchdb-debug-couchdb-views/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.treibstofff.de/2010/04/30/couchdb-debug-couchdb-views/</feedburner:origLink></item>
		<item>
		<title>CouchDB - Where can I find more information about build in JavaScript functions like sum()?</title>
		<link>http://feedproxy.google.com/~r/Treibstofffde/~3/ht3n3EmJFFY/</link>
		<comments>http://www.treibstofff.de/2010/04/30/couchdb-where-can-i-find-more-information-about-build-in-javascript-funktions-like-sum/#comments</comments>
		<pubDate>Fri, 30 Apr 2010 10:01:10 +0000</pubDate>
		<dc:creator>Julian Fischer</dc:creator>
		
		<category><![CDATA[CouchDB]]></category>

		<guid isPermaLink="false">http://www.treibstofff.de/2010/04/30/couchdb-where-can-i-find-more-information-about-build-in-javascript-funktions-like-sum/</guid>
		<description><![CDATA[When starting to work with CouchDB the lack of an indepth documentation can be a bit frustrating.
If you&#8217;re wondering where JavaScript methods like &#8220;sum&#8221; used in reduce functions are described, for example, you don&#8217;t find any detailed information in the CouchDB-Wiki.
What you can do is to have a look at:
COUCHDB_HOME/share/server
There are a number of javascript [...]]]></description>
			<content:encoded><![CDATA[<p>When starting to work with CouchDB the lack of an indepth documentation can be a bit frustrating.</p>
<p>If you&#8217;re wondering where JavaScript methods like &#8220;sum&#8221; used in reduce functions are described, for example, you don&#8217;t find any detailed information in the CouchDB-Wiki.</p>
<p>What you can do is to have a look at:</p>
<p>COUCHDB_HOME/share/server</p>
<p>There are a number of javascript files.</p>
<p>They contain the method definitions you&#8217;re looking for.</p>
<p>For my version of CouchDB (0.10.1) there is a single .js file called main.js containing the sum function definition:</p>
<textarea name="code" class="JavaScript" cols="60" rows="10">

sum = function(values) {
var rv = 0;
for (var i in values) {
rv += values[i];
}
return rv;
}
</textarea>
<p>In newer CouchDB versions such as 0.11.0 you&#8217;ll find multiple javascript files. Just have look at them.</p>
<img src="http://feeds.feedburner.com/~r/Treibstofffde/~4/ht3n3EmJFFY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.treibstofff.de/2010/04/30/couchdb-where-can-i-find-more-information-about-build-in-javascript-funktions-like-sum/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.treibstofff.de/2010/04/30/couchdb-where-can-i-find-more-information-about-build-in-javascript-funktions-like-sum/</feedburner:origLink></item>
		<item>
		<title>Rails 3 - Beta - no such file to load — rails/cli (LoadError)</title>
		<link>http://feedproxy.google.com/~r/Treibstofffde/~3/rhl5MJzmf0k/</link>
		<comments>http://www.treibstofff.de/2010/04/27/rails-3-beta-no-such-file-to-load-railscli-loaderror/#comments</comments>
		<pubDate>Tue, 27 Apr 2010 08:53:42 +0000</pubDate>
		<dc:creator>Julian Fischer</dc:creator>
		
		<category><![CDATA[Ruby on Rails]]></category>

		<category><![CDATA[Ruby]]></category>

		<guid isPermaLink="false">http://www.treibstofff.de/2010/04/27/rails-3-beta-no-such-file-to-load-railscli-loaderror/</guid>
		<description><![CDATA[When trying to create a rails project you might encounter the following error:
/Users/jfischer/.rvm/gems/ruby-1.9.1-p378/gems/rails-3.0.0.beta3/bin/rails:1:in `require&#8217;: no such file to load &#8212; rails/cli (LoadError)
from /Users/jfischer/.rvm/gems/ruby-1.9.1-p378/gems/rails-3.0.0.beta3/bin/rails:1:in `&#60;top (required)&#62;&#8217;
from /Users/jfischer/.rvm/gems/ruby-1.9.1-p378/bin/rails:19:in `load&#8217;
from /Users/jfischer/.rvm/gems/ruby-1.9.1-p378/bin/rails:19:in `&#60;main&#62;&#8217;
The problem can be solved by uninstalling all prior rails and active* beta versions using the gem command:

gem uninstall railties actionpack actionmailer activemodel activeresource activerecord activesupport
Then reinstall [...]]]></description>
			<content:encoded><![CDATA[<p>When trying to create a rails project you might encounter the following error:</p>
<p>/Users/jfischer/.rvm/gems/ruby-1.9.1-p378/gems/rails-3.0.0.beta3/bin/rails:1:in `require&#8217;: no such file to load &#8212; rails/cli (LoadError)<br />
from /Users/jfischer/.rvm/gems/ruby-1.9.1-p378/gems/rails-3.0.0.beta3/bin/rails:1:in `&lt;top (required)&gt;&#8217;<br />
from /Users/jfischer/.rvm/gems/ruby-1.9.1-p378/bin/rails:19:in `load&#8217;<br />
from /Users/jfischer/.rvm/gems/ruby-1.9.1-p378/bin/rails:19:in `&lt;main&gt;&#8217;</p>
<p>The problem can be solved by uninstalling all prior rails and active* beta versions using the gem command:</p>
<pre>
gem uninstall railties actionpack actionmailer activemodel activeresource activerecord activesupport</pre>
<p>Then reinstall rails:</p>
<pre>
gem install rails --prerelease --no-ri --no-rdoc</pre>
<img src="http://feeds.feedburner.com/~r/Treibstofffde/~4/rhl5MJzmf0k" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.treibstofff.de/2010/04/27/rails-3-beta-no-such-file-to-load-railscli-loaderror/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.treibstofff.de/2010/04/27/rails-3-beta-no-such-file-to-load-railscli-loaderror/</feedburner:origLink></item>
		<item>
		<title>Rails3 - Beta - No such file or directory - lib</title>
		<link>http://feedproxy.google.com/~r/Treibstofffde/~3/e3qYG3OUEr8/</link>
		<comments>http://www.treibstofff.de/2010/04/27/rails3-beta-no-such-file-or-directory-lib/#comments</comments>
		<pubDate>Tue, 27 Apr 2010 08:47:46 +0000</pubDate>
		<dc:creator>Julian Fischer</dc:creator>
		
		<category><![CDATA[Ruby on Rails]]></category>

		<category><![CDATA[Ruby]]></category>

		<guid isPermaLink="false">http://www.treibstofff.de/2010/04/27/rails3-beta-no-such-file-or-directory-lib/</guid>
		<description><![CDATA[If you encounter an error like the following when trying to install rails 3 prerelease:

ravel:~ jfischer$ gem install rails --prerelease

Successfully installed rails-3.0.0.beta3

1 gem installed

Installing ri documentation for rails-3.0.0.beta3...

ERROR:  While executing gem ... (Errno::ENOENT)

No such file or directory - lib
then you might want to try skipping the ri and rdoc generation which worked for me:

ravel:~ jfischer$ [...]]]></description>
			<content:encoded><![CDATA[<p>If you encounter an error like the following when trying to install rails 3 prerelease:</p>
<pre>
ravel:~ jfischer$ gem install rails --prerelease

Successfully installed rails-3.0.0.beta3

1 gem installed

Installing ri documentation for rails-3.0.0.beta3...

ERROR:  While executing gem ... (Errno::ENOENT)

No such file or directory - lib</pre>
<p>then you might want to try skipping the ri and rdoc generation which worked for me:</p>
<pre>
ravel:~ jfischer$ gem install rails --prerelease --no-ri --no-rdoc

Successfully installed rails-3.0.0.beta3

1 gem installed</pre>
<img src="http://feeds.feedburner.com/~r/Treibstofffde/~4/e3qYG3OUEr8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.treibstofff.de/2010/04/27/rails3-beta-no-such-file-or-directory-lib/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.treibstofff.de/2010/04/27/rails3-beta-no-such-file-or-directory-lib/</feedburner:origLink></item>
		<item>
		<title>Scottish Ruby Conference 2010 sum up</title>
		<link>http://feedproxy.google.com/~r/Treibstofffde/~3/Msv8QxjMn_w/</link>
		<comments>http://www.treibstofff.de/2010/04/08/scottish-ruby-conference-2010-sum-up/#comments</comments>
		<pubDate>Thu, 08 Apr 2010 16:33:47 +0000</pubDate>
		<dc:creator>Julian Fischer</dc:creator>
		
		<category><![CDATA[Conferences]]></category>

		<category><![CDATA[Ruby on Rails]]></category>

		<category><![CDATA[Ruby]]></category>

		<guid isPermaLink="false">http://www.treibstofff.de/2010/04/08/scottish-ruby-conference-2010-sum-up/</guid>
		<description><![CDATA[Really impressed by the beauty of scottish architecture I was wondering how the Scottish Ruby Conference will be like.It has been held at the Royal College of Physicians in Edinburgh a really impressive location. With a history of more than 300 (!) years it is an organization contrasting the the baby aged computer science fraction.
The contrast of talks delivering [...]]]></description>
			<content:encoded><![CDATA[<p>Really impressed by the beauty of scottish architecture I was wondering how the <a href="http://scottishrubyconference.com/" target="_blank">Scottish Ruby Conference</a> will be like.It has been held at the <a href="http://uniquevenuesofedinburgh.co.uk/index.cfm/venue-search/?venue_id=48">Royal College of Physicians</a> in Edinburgh a really impressive location. With a history of more than 300 (!) years it is an organization contrasting the the baby aged computer science fraction.<img src="http://farm3.static.flickr.com/2765/4476829680_5a899652c9_t.jpg" onmouseout="undefined" onmouseover="undefined" alt="The old library" title="undefined" align="left" border="0" height="100" hspace="5" vspace="5" width="75" /></p>
<p>The contrast of talks delivering bleeding edge content and rooms like the &#8220;<a href="http://www.flickr.com/photos/katandaq/4476829680/" target="_blank">old library</a>&#8221; with the elegance and beauty of centuries made up an extraordinary atmosphere.</p>
<p>It was great to see so many well known faces in Edinburgh. I&#8217;ve met friends from many different places such as Berlin, Belgium, and the Netherlands. It&#8217;s always a pleasure to hang out with you guys!</p>
<p>The talks have been on a very good level.Beside Jim Weirich&#8217;s role playing talk about Rails and the ENTERPRISE (sound like &#8220;the Beauty and the Beast&#8221;, I Know) I really liked <a href="http://jabberwocky.eu/" target="_blank">Elise Huard</a>&#8217;s talk &#8220;<a href="http://jabberwocky.eu/2010/03/29/12-hours-to-rate-a-rails-application/" target="_blank">12 hours to rate a rails application</a>&#8220;. This talk covered - beside others - how to use code metrics to find code smells, how those metrics work and which social aspect to keep in mind when interviewing the programming team of the app to be evaluated.</p>
<p>Certainly a highlight was the insight view of scottish culture with music a weapon fights. Have a look at <a href="http://www.flickr.com/photos/tags/scotruby" target="_blank">scotruby&#8217;s flickr photos</a> and see them in action. Awesome!</p>
<p>It was also very nice to hang out with a lot of new people in various situations. I really hope we&#8217;ll see next year at the Scottish Ruby Conference 2011!</p>
<img src="http://feeds.feedburner.com/~r/Treibstofffde/~4/Msv8QxjMn_w" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.treibstofff.de/2010/04/08/scottish-ruby-conference-2010-sum-up/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.treibstofff.de/2010/04/08/scottish-ruby-conference-2010-sum-up/</feedburner:origLink></item>
		<item>
		<title>Accessing the Java Printing API using JRuby</title>
		<link>http://feedproxy.google.com/~r/Treibstofffde/~3/oV586y27V-c/</link>
		<comments>http://www.treibstofff.de/2010/04/05/access-the-java-printing-api-using-jruby/#comments</comments>
		<pubDate>Mon, 05 Apr 2010 18:43:48 +0000</pubDate>
		<dc:creator>Julian Fischer</dc:creator>
		
		<category><![CDATA[JRuby]]></category>

		<category><![CDATA[Java]]></category>

		<category><![CDATA[Ruby]]></category>

		<guid isPermaLink="false">http://www.treibstofff.de/2010/04/05/access-the-java-printing-api-using-jruby/</guid>
		<description><![CDATA[If you ever have to print a document from a Ruby app you might want to consider using JRuby to access the Java Printing API.Here is a small example accessing the API, looking up the printers and printing out their names to the console:


require 'java'
flavor = javax.print.DocFlavor::INPUT_STREAM::TEXT_PLAIN_HOST

aset = javax.print.attribute.HashPrintRequestAttributeSet.new
aset.add(javax.print.attribute.standard.MediaSizeName::ISO_A4)
aset.add(javax.print.attribute.standard.Copies.new(1))

services = javax.print.PrintServiceLookup.lookupPrintServices(flavor, aset);

puts("Anzahl der Drucker: " + [...]]]></description>
			<content:encoded><![CDATA[<p>If you ever have to print a document from a Ruby app you might want to consider using JRuby to access the <a href="http://java.sun.com/products/java-media/2D/forDevelopers/sdk12print.html" target="_blank">Java Printing API</a>.Here is a small example accessing the API, looking up the printers and printing out their names to the console:</p>
<textarea name="code" class="Ruby" cols="60" rows="10">

require 'java'
flavor = javax.print.DocFlavor::INPUT_STREAM::TEXT_PLAIN_HOST

aset = javax.print.attribute.HashPrintRequestAttributeSet.new
aset.add(javax.print.attribute.standard.MediaSizeName::ISO_A4)
aset.add(javax.print.attribute.standard.Copies.new(1))

services = javax.print.PrintServiceLookup.lookupPrintServices(flavor, aset);

puts("Anzahl der Drucker: " + services.length.to_s)

services.each do |service|
puts service.name
end

</textarea>
<p>The output looks like this:</p>
<p><code>Anzahl der Drucker: 1HP Photosmart 8000 series</code></p>
<img src="http://feeds.feedburner.com/~r/Treibstofffde/~4/oV586y27V-c" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.treibstofff.de/2010/04/05/access-the-java-printing-api-using-jruby/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.treibstofff.de/2010/04/05/access-the-java-printing-api-using-jruby/</feedburner:origLink></item>
		<item>
		<title>Video of the talk about Evolutionary Programming with Ruby</title>
		<link>http://feedproxy.google.com/~r/Treibstofffde/~3/LdewG0WpnGI/</link>
		<comments>http://www.treibstofff.de/2009/12/25/video-of-the-talk-about-evolutionary-programming-with-ruby/#comments</comments>
		<pubDate>Fri, 25 Dec 2009 16:44:38 +0000</pubDate>
		<dc:creator>Julian Fischer</dc:creator>
		
		<category><![CDATA[Conferences]]></category>

		<category><![CDATA[Ruby]]></category>

		<category><![CDATA[Allgemein]]></category>

		<guid isPermaLink="false">http://www.treibstofff.de/2009/12/25/video-of-the-talk-about-evolutionary-programming-with-ruby/</guid>
		<description><![CDATA[The video of my Talk about Evolutionary Programming with Ruby at the Ruby en Rails Conference 2009 in Amsterdam ist now online.



ReR09 - Julian Fisher - Evolutionary Algorithms from Interbureau Holder on Vimeo.
]]></description>
			<content:encoded><![CDATA[<p>The video of <a href="http://www.twitter.com/railshoster" target="_blank">my</a> Talk about Evolutionary Programming with Ruby at the <a href="http://2009.rubyenrails.nl/" target="_blank">Ruby en Rails Conference 2009</a> in Amsterdam ist now online.<object height="300" width="400">
<param value="true" name="allowfullscreen"></param>
<param value="always" name="allowscriptaccess"></param>
<param value="http://vimeo.com/moogaloop.swf?clip_id=8134854&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" name="movie"></param><embed src="http://vimeo.com/moogaloop.swf?clip_id=8134854&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" height="300" width="400" allowscriptaccess="always" allowfullscreen="true" type="application/x-shockwave-flash"></embed></object></p>
<p><a href="http://vimeo.com/8134854">ReR09 - Julian Fisher - Evolutionary Algorithms</a> from <a href="http://vimeo.com/user2623183">Interbureau Holder</a> on <a href="http://vimeo.com">Vimeo</a>.</p>
<img src="http://feeds.feedburner.com/~r/Treibstofffde/~4/LdewG0WpnGI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.treibstofff.de/2009/12/25/video-of-the-talk-about-evolutionary-programming-with-ruby/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.treibstofff.de/2009/12/25/video-of-the-talk-about-evolutionary-programming-with-ruby/</feedburner:origLink></item>
		<item>
		<title>RuPy 2009 - Ruby/Python conference in Poznan Poland sum up</title>
		<link>http://feedproxy.google.com/~r/Treibstofffde/~3/J0W52lT3cdg/</link>
		<comments>http://www.treibstofff.de/2009/11/20/rupy-2009-rubypython-concerence-in-poznan-poland-sum-up/#comments</comments>
		<pubDate>Fri, 20 Nov 2009 12:44:30 +0000</pubDate>
		<dc:creator>Julian Fischer</dc:creator>
		
		<category><![CDATA[Conferences]]></category>

		<category><![CDATA[JRuby]]></category>

		<category><![CDATA[Ruby]]></category>

		<category><![CDATA[Allgemein]]></category>

		<guid isPermaLink="false">http://www.treibstofff.de/2009/11/20/rupy-2009-rubypython-concerence-in-poznan-poland-sum-up/</guid>
		<description><![CDATA[The RuPy conference 2009 was really a great event. I was totally excited how a polish technology conference will look like and I was impressed how the organiziers cared about everything. Among others Jakub P. Nowak, Katarzyna Bylec and Adam Parchimowicz helped with any open questions. They organized a hotel room as well as the [...]]]></description>
			<content:encoded><![CDATA[<p>The <a href="http://rupy.eu/" target="_blank">RuPy conference</a> 2009 was really a great event. I was totally excited how a polish technology conference will look like and I was impressed how the organiziers cared about everything. Among others <a href="http://www.twitter.com/jakubpnowak" target="_blank">Jakub P. Nowak</a>, <a href="http://pl.linkedin.com/in/katarzynabylec" target="_blank">Katarzyna Bylec</a> and <a href="http://www.twitter.com/theadam" target="_blank">Adam Parchimowicz</a> helped with any open questions. They organized a hotel room as well as the transportation from and to the airport. That&#8217;s really a great thing for a non-commercial conf!</p>
<p>The conference itself was a hell lot of fun with very good speakers and valuable talks.</p>
<p>I enjoyed hanging around with <a href="http://www.twitter.com/headius">Charles Nutter aka headius.</a> I am totally impressed by his work for <a href="http://jruby.org" target="_blank">JRuby</a> and his very smart and analytic way of thinking. His talk about JRuby without any slides was very motivating and helped me to find my enthusiasm for live coding sessions.</p>
<p>Another talk that souldn&#8217;t be missing on a good conference is <a href="http://www.twitter.com/hungryblank">Paolo Negri</a> presenting <a href="http://www.rabbitmq.com/" target="_blank">RabbitMQ</a>. I heard his talks before at <a href="http://en.oreilly.com/rails2010" target="_blank">RailsConf</a> 2009 in Las Vegas and <a href="http://www.rails-underground.com/" target="_blank">Rails Underground</a> 2009 in London. They are never the same and always worth listening to them. Even multiple times.</p>
<p><a href="http://www.linkedin.com/in/mdirolf" target="_blank">Michael Dirolf</a>&#8217;s talk <em>An Introduction to <a href="http://www.mongodb.org" target="_blank">MongoDB</a></em> was very interesting. I really like MongoDB because it&#8217;s a document based DB with a query language that is very easy to understand for people with RDBMS experience. So have a look at it.</p>
<p>And of course don&#8217;t miss<a href="http://www.twitter.com/feyeleanor" target="_blank"> Eleanor McHugh</a>. Her talk  <em>The Ruby Plumber’s Guide to *nix</em> was very contrasting to other talks. She adviced people to remind that web applications are not aliens landed on a unix box but that they are still living in a symbiotic way with it. I think if you have a question about system programming - ask her! Don&#8217;t excpect a single sentence answer but be sure you will get a very profound one.</p>
<p><a href="http://www.twitter.com/serge_smetana" target="_blank">Serge Smetana</a> presented <em>Advanced Performance Optimization of Rails Applications</em>. Badly I was unable to listen to his talk but everybody said it was very, very good. We talked a lot so I am totally sure that he really knows about optimization very well.</p>
<p>I have received a lot positive feedback for my own talk about Ruby and Python <a href="http://www.enterprise-rails.de" target="_blank">Enterprise Hosting</a> as well. Thanks to everybody for that. I still think that people can save a lot of time, nerves and money if they really gather their requirements before diving into the hosting topic. I tried to sum up the most important factors when building a high availability hosting platform. So if you have any questions about this - just<a href="http://www.twitter.com/railshoster" target="_blank"> let me know</a>.</p>
<p style="width: 425px; text-align: left" id="__ss_2448821"><a href="http://www.slideshare.net/avarteq/enterprise-hosting-2448821" style="margin: 12px 0pt 3px; font-family: Helvetica,Arial,Sans-serif; font-style: normal; font-variant: normal; font-weight: normal; font-size: 14px; line-height: normal; font-size-adjust: none; font-stretch: normal; display: block; text-decoration: underline" title="Enterprise Hosting">Enterprise Hosting</a><object style="margin: 0px" height="355" width="425"></object></p>
<param name="movie" value="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=enterprisehosting-091108023914-phpapp01&amp;rel=0&amp;stripped_title=enterprise-hosting-2448821"></param>
<param name="allowFullScreen" value="true"></param>
<param name="allowScriptAccess" value="always"></param><embed src="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=enterprisehosting-091108023914-phpapp01&amp;rel=0&amp;stripped_title=enterprise-hosting-2448821" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" height="355" width="425"></embed></p>
<p style="font-size: 11px; font-family: tahoma,arial; height: 26px; padding-top: 2px">View more <a href="http://www.slideshare.net/" style="text-decoration: underline">presentations</a> from <a href="http://www.slideshare.net/avarteq" style="text-decoration: underline">Julian Fischer</a>.</p>
<p>Beside the conference content there were a lot of great off topic conversations with many people. I totally liked hanging around with Chares, Michael, Serge, Elenor, Paolo and all the others. Hope to see these friends again, soon. Maybe on the next conf, maybe on the next RuPy?</p>
<p>P.S.: I heard about wedding crashers before. This time I saw my first conference crasher. There was this guy who found (or stolen) a conference batch. He used it to get free food and attended to a number of talks. Instead of beeing calm he talked to nearly every speaker. It turned out that he doesn&#8217;t have a clue what Ruby or Python is. At the end of the conf he told one of the organizers that he is actually not a legitimate attende. The orga team told him they will call the police. I saw the ANGST in his eyes :-) Mabe that&#8217;s what he needed after behaving very very odd and unpolite in many situations. However he was another fun factory for the conf!</p>
<p>So we&#8217;ll see next year at the RuPy?</p>
<img src="http://feeds.feedburner.com/~r/Treibstofffde/~4/J0W52lT3cdg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.treibstofff.de/2009/11/20/rupy-2009-rubypython-concerence-in-poznan-poland-sum-up/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.treibstofff.de/2009/11/20/rupy-2009-rubypython-concerence-in-poznan-poland-sum-up/</feedburner:origLink></item>
	</channel>
</rss>
