<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>mustERkennung</title>
	<atom:link href="http://musterkennung.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://musterkennung.wordpress.com</link>
	<description>mustERkennung ... stuff about patterns and their recognition</description>
	<lastBuildDate>Wed, 11 Jan 2012 21:03:43 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='musterkennung.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://1.gravatar.com/blavatar/df15e4f9f8d33cc38880fa85f5e76510?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>mustERkennung</title>
		<link>http://musterkennung.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://musterkennung.wordpress.com/osd.xml" title="mustERkennung" />
	<atom:link rel='hub' href='http://musterkennung.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Ruby and me &#8211; III</title>
		<link>http://musterkennung.wordpress.com/2012/01/08/ruby-and-me-iii/</link>
		<comments>http://musterkennung.wordpress.com/2012/01/08/ruby-and-me-iii/#comments</comments>
		<pubDate>Sun, 08 Jan 2012 17:19:01 +0000</pubDate>
		<dc:creator>Rayk Fenske</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[ActiveRecord]]></category>
		<category><![CDATA[HABTM]]></category>
		<category><![CDATA[Ruby on Rails]]></category>

		<guid isPermaLink="false">http://musterkennung.wordpress.com/?p=263</guid>
		<description><![CDATA[There are valuable ressources to be found in the internet. Some of them are: Stack Overflow Ruby in Rails Documentation But I was lost when it came to the implementation of a link table. Not the implementation itself but the implementation of the ActiveRecord associations for later usage. I have a data model containing (beside [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=musterkennung.wordpress.com&amp;blog=6829529&amp;post=263&amp;subd=musterkennung&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>There are valuable ressources to be found in the internet. Some of them are:</p>
<ul>
<li><a href="http://stackoverflow.com/">Stack Overflow</a></li>
<li><a href="http://api.rubyonrails.org/">Ruby in Rails Documentation</a></li>
</ul>
<p>But I was lost when it came to the implementation of a link table. Not the implementation itself but the implementation of the ActiveRecord associations for later usage.</p>
<p>I have a data model containing (beside others) one RELATIONS table and one ITEMS table. RELATIONS holds its own ID, and SOURCE and TARGET, both pointing to ITEMS. ITEMS also has its own ID.</p>
<p>From the item perspective I want to know whicht items are pointing to me, and to which items I&#8217;m pointing to. Just get the world around the item. The difficulty is that I left Rubys path of conversions here and need to name everything on my own. What needs to be done (without any :destroy or other surounding codes) is:</p>
<ol>
<li>Create a association &#8220;links_to_sources&#8221; to all the RELATIONS pointing to me</li>
<li>Use this association to access all the ITEMS pointing to me</li>
<li>Do the same for the other direction: Create a association &#8220;link_to_targets&#8221; to all the RELATIONS I&#8217;m pointing to and use this association to access all the ITEMS I&#8217;m pointing to</li>
</ol>
<p>The overall code (in item.rb, the ITEM model) does look like this:</p>
<pre>has_many :links_to_sources, :class_name =&gt; "Relation", :foreign_key =&gt; "target"
has_many :sources, :class_name =&gt; "Item", :through =&gt; :links_to_sources, :source =&gt; :predecessor
has_many :links_to_targets, :class_name =&gt; "Relation", :foreign_key =&gt; "source"
has_many :targets, :class_name =&gt; "Item", :through =&gt; :links_to_targets, :source =&gt; :successor</pre>
<p>What was not clear to me from all the documentations was the meaning of :source&#8221; configuration and the importance of the counterpart, in this example the RELATIONS model (relations.rb). Here its this code:</p>
<pre>belongs_to :predecessor, :class_name =&gt; "Poem", :foreign_key =&gt; "source"
belongs_to :successor, :class_name =&gt; "Poem", :foreign_key =&gt; "target"</pre>
<p>It is neccessary to reuse the name of the belongs_to association (RELATIONS model) as reference for the :source option in the has_many association of the ITEMS model. That the same foreign keys are used is clear as this is predefined by the data model.</p>
<p>What now? I&#8217;m able to access all item I&#8217;m pointing to simply by using</p>
<pre>self.targets</pre>
<p>and any iterator afterwards. And this by implementing no code on my own but using the features of ActiveRecord.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/musterkennung.wordpress.com/263/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/musterkennung.wordpress.com/263/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/musterkennung.wordpress.com/263/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/musterkennung.wordpress.com/263/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/musterkennung.wordpress.com/263/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/musterkennung.wordpress.com/263/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/musterkennung.wordpress.com/263/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/musterkennung.wordpress.com/263/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/musterkennung.wordpress.com/263/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/musterkennung.wordpress.com/263/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/musterkennung.wordpress.com/263/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/musterkennung.wordpress.com/263/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/musterkennung.wordpress.com/263/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/musterkennung.wordpress.com/263/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=musterkennung.wordpress.com&amp;blog=6829529&amp;post=263&amp;subd=musterkennung&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://musterkennung.wordpress.com/2012/01/08/ruby-and-me-iii/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2ac5685c55aef0aeebd643ee7ea8d090?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Rayk</media:title>
		</media:content>
	</item>
		<item>
		<title>Message from Shangri-La</title>
		<link>http://musterkennung.wordpress.com/2011/12/29/message-from-shangri-la/</link>
		<comments>http://musterkennung.wordpress.com/2011/12/29/message-from-shangri-la/#comments</comments>
		<pubDate>Thu, 29 Dec 2011 16:32:54 +0000</pubDate>
		<dc:creator>Rayk Fenske</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Fnord]]></category>

		<guid isPermaLink="false">https://musterkennung.wordpress.com/?p=261</guid>
		<description><![CDATA[Luthor is imitating the disguised paddle and will long for the trolley. Yadda, yadda, yadda.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=musterkennung.wordpress.com&amp;blog=6829529&amp;post=261&amp;subd=musterkennung&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Luthor is imitating the disguised paddle and will long for the trolley. Yadda, yadda, yadda.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/musterkennung.wordpress.com/261/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/musterkennung.wordpress.com/261/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/musterkennung.wordpress.com/261/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/musterkennung.wordpress.com/261/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/musterkennung.wordpress.com/261/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/musterkennung.wordpress.com/261/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/musterkennung.wordpress.com/261/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/musterkennung.wordpress.com/261/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/musterkennung.wordpress.com/261/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/musterkennung.wordpress.com/261/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/musterkennung.wordpress.com/261/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/musterkennung.wordpress.com/261/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/musterkennung.wordpress.com/261/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/musterkennung.wordpress.com/261/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=musterkennung.wordpress.com&amp;blog=6829529&amp;post=261&amp;subd=musterkennung&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://musterkennung.wordpress.com/2011/12/29/message-from-shangri-la/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2ac5685c55aef0aeebd643ee7ea8d090?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Rayk</media:title>
		</media:content>
	</item>
		<item>
		<title>iBlindness</title>
		<link>http://musterkennung.wordpress.com/2011/12/26/iblindness/</link>
		<comments>http://musterkennung.wordpress.com/2011/12/26/iblindness/#comments</comments>
		<pubDate>Mon, 26 Dec 2011 12:39:08 +0000</pubDate>
		<dc:creator>Rayk Fenske</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://musterkennung.wordpress.com/?p=258</guid>
		<description><![CDATA[Out of any context I thought about my audio integration again. What I have is an old-fashioned turntable, a not so old-fashioned CD player and a very old receiver. Additional I would like to stream music from iTunes or iPhone wireless. First idea was to keep the old receiver as well as the two players [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=musterkennung.wordpress.com&amp;blog=6829529&amp;post=258&amp;subd=musterkennung&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Out of any context I thought about my audio integration again. What I have is an old-fashioned turntable, a not so old-fashioned CD player and a very old receiver. Additional I would like to stream music from iTunes or iPhone wireless. First idea was to keep the old receiver as well as the two players and add an AirPort Express station to that setting. But my real aim is to reduce boxes. So airplay enabled receivers came in my mind. Major vendors like Denon, Marantz or Pioneer are offering such, but in most cases those are A/V receivers. Which is something I do not want to install. Video is video and audio is audio and both settings have at least a spatial difference. I&#8217;ve heard about a while, but came across again during my small research. The <a href="http://www.teac.eu/no_cache/hifi-audio/reference-series/h-700/cr-h700/?sword_list[0]=crh700">TEAC CR-H700</a>. This is what it offers:</p>
<ul>
<li>Analog audio tuner</li>
<li>Internet radio</li>
<li>Integrated CD player</li>
<li>Dedicated phono connectors</li>
<li>Airplay</li>
</ul>
<p>Due to its integration there is AUX connections left, so I could reactivate the tape deck again. Or not. I&#8217;ll rerun this research by then, but it seems that this receiver does exactly what I want it to do.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/musterkennung.wordpress.com/258/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/musterkennung.wordpress.com/258/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/musterkennung.wordpress.com/258/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/musterkennung.wordpress.com/258/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/musterkennung.wordpress.com/258/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/musterkennung.wordpress.com/258/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/musterkennung.wordpress.com/258/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/musterkennung.wordpress.com/258/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/musterkennung.wordpress.com/258/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/musterkennung.wordpress.com/258/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/musterkennung.wordpress.com/258/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/musterkennung.wordpress.com/258/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/musterkennung.wordpress.com/258/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/musterkennung.wordpress.com/258/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=musterkennung.wordpress.com&amp;blog=6829529&amp;post=258&amp;subd=musterkennung&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://musterkennung.wordpress.com/2011/12/26/iblindness/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2ac5685c55aef0aeebd643ee7ea8d090?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Rayk</media:title>
		</media:content>
	</item>
		<item>
		<title>Lumière et compagnie</title>
		<link>http://musterkennung.wordpress.com/2011/12/23/lumiere-et-compagnie/</link>
		<comments>http://musterkennung.wordpress.com/2011/12/23/lumiere-et-compagnie/#comments</comments>
		<pubDate>Fri, 23 Dec 2011 16:47:27 +0000</pubDate>
		<dc:creator>Rayk Fenske</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[David Lynch]]></category>
		<category><![CDATA[Lumière]]></category>
		<category><![CDATA[Peter Greenaway]]></category>
		<category><![CDATA[UBUWEB]]></category>
		<category><![CDATA[Wim Wenders]]></category>

		<guid isPermaLink="false">http://musterkennung.wordpress.com/?p=255</guid>
		<description><![CDATA[What do Wim Wenders, David Lynch and Peter Greenaway have in common? In 1995 they &#8211; among 38 others &#8211; had the chance to shot with an original Cinématographe camera invented by the Lumière brothers (IMDB).  Luckily those short movies are now accessible at U B U W E B. Staring Damiel and Cassiel. It [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=musterkennung.wordpress.com&amp;blog=6829529&amp;post=255&amp;subd=musterkennung&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>What do Wim Wenders, David Lynch and Peter Greenaway have in common? In 1995 they &#8211; among 38 others &#8211; had the chance to shot with an original Cinématographe camera invented by the Lumière brothers (<a href="http://www.imdb.com/title/tt0113718/">IMDB</a>).  Luckily those short movies are now accessible at <a href="http://ubu.com/film/lumiere.html">U B U W E B</a>. Staring Damiel and Cassiel. It is great to see how technology is influencing the result and how much the knowledge about the circumstances is influencing the reception. Take about ten minutes and enjoy.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/musterkennung.wordpress.com/255/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/musterkennung.wordpress.com/255/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/musterkennung.wordpress.com/255/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/musterkennung.wordpress.com/255/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/musterkennung.wordpress.com/255/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/musterkennung.wordpress.com/255/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/musterkennung.wordpress.com/255/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/musterkennung.wordpress.com/255/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/musterkennung.wordpress.com/255/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/musterkennung.wordpress.com/255/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/musterkennung.wordpress.com/255/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/musterkennung.wordpress.com/255/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/musterkennung.wordpress.com/255/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/musterkennung.wordpress.com/255/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=musterkennung.wordpress.com&amp;blog=6829529&amp;post=255&amp;subd=musterkennung&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://musterkennung.wordpress.com/2011/12/23/lumiere-et-compagnie/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2ac5685c55aef0aeebd643ee7ea8d090?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Rayk</media:title>
		</media:content>
	</item>
		<item>
		<title>Ruby and me &#8211; II</title>
		<link>http://musterkennung.wordpress.com/2011/12/19/ruby-and-me-ii/</link>
		<comments>http://musterkennung.wordpress.com/2011/12/19/ruby-and-me-ii/#comments</comments>
		<pubDate>Mon, 19 Dec 2011 10:40:24 +0000</pubDate>
		<dc:creator>Rayk Fenske</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[JRuby]]></category>
		<category><![CDATA[neo4j]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[Ruby on Rails]]></category>

		<guid isPermaLink="false">http://musterkennung.wordpress.com/?p=251</guid>
		<description><![CDATA[Nearly a month passed by, and I tried to handle Ruby and especially Ruby on Rails. A lots of books were bought of which I would like to recommend some later. I thought about the design of my application and some way to early about databases or storage at all. I came across neo4j, a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=musterkennung.wordpress.com&amp;blog=6829529&amp;post=251&amp;subd=musterkennung&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Nearly a month passed by, and I tried to handle Ruby and especially Ruby on Rails. A lots of books were bought of which I would like to recommend some later. I thought about the design of my application and some way to early about databases or storage at all. I came across <a href="http://neo4j.org/">neo4j</a>, a popular graph database. Without recognizing the license model I moved from Ruby to <a href="http://jruby.org/">JRuby</a>, uninstalled and installed lots of software and fiddled around with the gem tool and different versions of gems and dependencies etc. After a private workshop and on-paper design, or more sophisticated JSON design, I&#8217;m back at pure Ruby. And I&#8217;m back with a pimped system. Due to a helpful hint (Thanks to <a href="http://40bits.com/">40bits</a>) I installed <a href="http://www.jetbrains.com/index.html">JetBrains</a> <a href="http://www.jetbrains.com/ruby/">RubyMine</a>, which is stunning. Without any knowledge, but the helpful resources now at hand, I managed to set up an application (easy), set up some data structures (easy easy) and access them in a meaningful way (not so easy anymore). Yesterday I stopped because I have no idea of how to navigate through the application. Which is wrong. I have an idea, but no clue of how to implement. So, I&#8217;ll spent my vacation on implementing the Depot Application from &#8220;Agile Web Development wit Ruby on Rails&#8221;. Updates to come!</p>
<h4>Recommendations</h4>
<p>First of all there was and is <a href="http://pragprog.com/book/rails4/agile-web-development-with-rails">&#8220;Agile Web Development wit Ruby on Rails&#8221;</a> by Sam Ruby, Dave Thomas, and David Heinemeier Hansson from the <a href="http://pragprog.com/">Pragmatic Bookshelf</a>. It is a helpful and not to deep introduction into Rails concepts, Ruby conventions, and into an example application, which covers most of the topics one will face. It&#8217;s well written, nearly a page turner.</p>
<p>Second one is an introduction into <a href="http://nosql-database.org/">NoSQL</a> databases (only German title at hand): &#8220;NoSQL &#8211; Einstieg in die Welt nichtrelationaler Web2.0 Datenbanken&#8221;. Cryptic. By Stefan Edlich, Achim Friedland, Jens Hampe, Benjamin Brauer, and Markus Brückner; published at Hanser. The many authors may give a hint about the content. Various types of NoSQL databases are covered, and for each type many databases or vendors introduced. One will get a quick overview what&#8217;s on the market, which integration is provided. And how to use it by example code written in Java, Python or&#8230; Ruby.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/musterkennung.wordpress.com/251/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/musterkennung.wordpress.com/251/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/musterkennung.wordpress.com/251/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/musterkennung.wordpress.com/251/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/musterkennung.wordpress.com/251/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/musterkennung.wordpress.com/251/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/musterkennung.wordpress.com/251/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/musterkennung.wordpress.com/251/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/musterkennung.wordpress.com/251/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/musterkennung.wordpress.com/251/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/musterkennung.wordpress.com/251/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/musterkennung.wordpress.com/251/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/musterkennung.wordpress.com/251/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/musterkennung.wordpress.com/251/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=musterkennung.wordpress.com&amp;blog=6829529&amp;post=251&amp;subd=musterkennung&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://musterkennung.wordpress.com/2011/12/19/ruby-and-me-ii/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2ac5685c55aef0aeebd643ee7ea8d090?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Rayk</media:title>
		</media:content>
	</item>
		<item>
		<title>Thomas Ruff</title>
		<link>http://musterkennung.wordpress.com/2011/12/11/thomas-ruff/</link>
		<comments>http://musterkennung.wordpress.com/2011/12/11/thomas-ruff/#comments</comments>
		<pubDate>Sun, 11 Dec 2011 18:18:17 +0000</pubDate>
		<dc:creator>Rayk Fenske</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[9/11]]></category>
		<category><![CDATA[C/O Berlin]]></category>
		<category><![CDATA[Kunstmuseum Wolfsburg]]></category>
		<category><![CDATA[Thomas Ruff]]></category>

		<guid isPermaLink="false">http://musterkennung.wordpress.com/?p=248</guid>
		<description><![CDATA[&#8230; ist der missing link zwischen Berlin und Wolfsburg. Zumindest für mich, zumindest auf Grund der letzten beiden Wochenenden. Die Gallerie C/O Berlin zeigte bis zum 4. Dezember 2011 die Ausstellung &#8220;unheimlich vertraut . Bilder vom Terror&#8221;, eine, wie ich finde, sehr beeindruckende Schau. Wenn gleich in der Wirkung nicht am nachhaltigsten so doch ob [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=musterkennung.wordpress.com&amp;blog=6829529&amp;post=248&amp;subd=musterkennung&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>&#8230; ist der <em>missing link</em> zwischen Berlin und Wolfsburg. Zumindest für mich, zumindest auf Grund der letzten beiden Wochenenden. Die Gallerie <a href="http://www.co-berlin.info/index.php" title="C/O Berlin">C/O Berlin</a> zeigte bis zum 4. Dezember 2011 die Ausstellung &#8220;unheimlich vertraut . Bilder vom Terror&#8221;, eine, wie ich finde, sehr beeindruckende Schau. Wenn gleich in der Wirkung nicht am nachhaltigsten so doch ob ihrer Größe und letztendlich Art der Entstehung im Gedächnis verblieben sind die von <a href="http://de.wikipedia.org/wiki/Thomas_Ruff" title="Thomas Ruff">Thomas Ruff</a> stark vergrößerten Bilder der brenndenden und einstürzenden Türme. Die Basis dazu waren mit Kleinkameras oder Smartphones aufgenommene Bilder im jpeg-Format.</p>
<p>Eine Woche später besuchte ich im <a href="http://www.kunstmuseum-wolfsburg.de/" title="Kunstmuseum Wolfsburg">Kunstmuseum Wolfsburg</a> die Ausstellung &#8220;Die Kunst der Entschleunigung&#8221;. Sie behandelt noch bis zum 9. April 2012 ein eher klassisches Thema von Kunst und Ausstellungsräumen an sich, das Spannungsfeld zwischen Beschleunigung und Verlangsamung. In der großen Kunsthalle werden beide Facetten immer wieder gegenübergestellt, es wird ein Bogen von der Romantik bis zur zeitgenössischen Kunst geschlagen. Sehr spannend. Ein Teil der Ausstellung beleuchtet, für mein Empfinden wirr integriert, die Möglichkeiten zukünftigen, urbanen Lebens in Megacities. Und hier dann wieder eins der hochgezoomten Bilder von Thomas Ruff.</p>
<p>Bei google sollte man nach seinem Namen und der Serie <em>jpeg</em> suchen.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/musterkennung.wordpress.com/248/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/musterkennung.wordpress.com/248/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/musterkennung.wordpress.com/248/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/musterkennung.wordpress.com/248/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/musterkennung.wordpress.com/248/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/musterkennung.wordpress.com/248/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/musterkennung.wordpress.com/248/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/musterkennung.wordpress.com/248/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/musterkennung.wordpress.com/248/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/musterkennung.wordpress.com/248/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/musterkennung.wordpress.com/248/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/musterkennung.wordpress.com/248/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/musterkennung.wordpress.com/248/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/musterkennung.wordpress.com/248/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=musterkennung.wordpress.com&amp;blog=6829529&amp;post=248&amp;subd=musterkennung&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://musterkennung.wordpress.com/2011/12/11/thomas-ruff/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2ac5685c55aef0aeebd643ee7ea8d090?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Rayk</media:title>
		</media:content>
	</item>
		<item>
		<title>Ruby and me &#8211; I</title>
		<link>http://musterkennung.wordpress.com/2011/11/27/ruby-and-me-i/</link>
		<comments>http://musterkennung.wordpress.com/2011/11/27/ruby-and-me-i/#comments</comments>
		<pubDate>Sun, 27 Nov 2011 16:46:56 +0000</pubDate>
		<dc:creator>Rayk Fenske</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Ruby]]></category>

		<guid isPermaLink="false">http://musterkennung.wordpress.com/?p=244</guid>
		<description><![CDATA[It&#8217;s been a while, and I drove back home. Or vice versa, doesn&#8217;t matter. I listened to the Caosradio Express Podcast number CRE163, which is about Ruby on Rails. Together with Martin Wöginger Tim Pritlove talked about this language, some historic stuff, nice features, and how easy it is to set up a application, how [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=musterkennung.wordpress.com&amp;blog=6829529&amp;post=244&amp;subd=musterkennung&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been a while, and I drove back home. Or vice versa, doesn&#8217;t matter. I listened to the <a href="http://chaosradio.ccc.de/chaosradio_express.html">Caosradio Express</a> Podcast number <a href="http://chaosradio.ccc.de/cre163.html">CRE163</a>, which is about Ruby on Rails. Together with Martin Wöginger Tim Pritlove talked about this language, some historic stuff, nice features, and how easy it is to set up a application, how Rails supports you in the MVC architecture and, through the usage of conventions helps you to develop. Without complex IDE and such. </p>
<p>I&#8217;m off programming for a while, but I developed an idea the recent months. And for now I try to implement it. Using new technologies and paradigms emerged during my absence. </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/musterkennung.wordpress.com/244/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/musterkennung.wordpress.com/244/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/musterkennung.wordpress.com/244/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/musterkennung.wordpress.com/244/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/musterkennung.wordpress.com/244/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/musterkennung.wordpress.com/244/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/musterkennung.wordpress.com/244/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/musterkennung.wordpress.com/244/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/musterkennung.wordpress.com/244/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/musterkennung.wordpress.com/244/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/musterkennung.wordpress.com/244/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/musterkennung.wordpress.com/244/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/musterkennung.wordpress.com/244/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/musterkennung.wordpress.com/244/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=musterkennung.wordpress.com&amp;blog=6829529&amp;post=244&amp;subd=musterkennung&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://musterkennung.wordpress.com/2011/11/27/ruby-and-me-i/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2ac5685c55aef0aeebd643ee7ea8d090?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Rayk</media:title>
		</media:content>
	</item>
		<item>
		<title>Overtone</title>
		<link>http://musterkennung.wordpress.com/2011/10/09/overtone/</link>
		<comments>http://musterkennung.wordpress.com/2011/10/09/overtone/#comments</comments>
		<pubDate>Sun, 09 Oct 2011 18:57:08 +0000</pubDate>
		<dc:creator>Rayk Fenske</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://musterkennung.wordpress.com/?p=242</guid>
		<description><![CDATA[Thanks to ThisWaste I simply wanted to try out Overtone. Nothing easier than this. Realy? Distribution is done via GitHub. No clue what this is. So download this. Normal installation. Haven&#8217;t edited path variable in years. Ah, it is a good moment to mention that I&#8217;m dealing with a Windows system. Anyway. git installed! overtone [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=musterkennung.wordpress.com&amp;blog=6829529&amp;post=242&amp;subd=musterkennung&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Thanks to <a href="http://twitter.com/#!/thiswaste" title="ThisWaste">ThisWaste</a> I simply wanted to try out <a href="http://jng.imagine27.com/articles/2011-10-02-171602_overtone.html" title="Overtone">Overtone</a>. Nothing easier than this. Realy? Distribution is done via GitHub. No clue what this is. So download this. Normal installation. Haven&#8217;t edited path variable in years. Ah, it is a good moment to mention that I&#8217;m dealing with a Windows system. Anyway. git installed! <a href="http://overtone.github.com/" title="Overtone">overtone</a> cloned onto local machine! Now setting up the project by using&#8230; lein. What? Leiningen, a tool of which its added value I&#8217;m currently not aware of. And the windows distribution in form of a zip file does not what I expected. So, I&#8217;ll give the stand alone jar file a chance. But that later. And what for? Music and sound. And I didn&#8217;t even started with the <a href="http://www.audiosynth.com/" title="SuperCollider">SuperCollider</a> installation. </p>
<p>I was used to this by stuff by then, but moving out of IT department let me struggle with this. Heavily. </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/musterkennung.wordpress.com/242/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/musterkennung.wordpress.com/242/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/musterkennung.wordpress.com/242/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/musterkennung.wordpress.com/242/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/musterkennung.wordpress.com/242/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/musterkennung.wordpress.com/242/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/musterkennung.wordpress.com/242/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/musterkennung.wordpress.com/242/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/musterkennung.wordpress.com/242/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/musterkennung.wordpress.com/242/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/musterkennung.wordpress.com/242/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/musterkennung.wordpress.com/242/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/musterkennung.wordpress.com/242/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/musterkennung.wordpress.com/242/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=musterkennung.wordpress.com&amp;blog=6829529&amp;post=242&amp;subd=musterkennung&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://musterkennung.wordpress.com/2011/10/09/overtone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2ac5685c55aef0aeebd643ee7ea8d090?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Rayk</media:title>
		</media:content>
	</item>
		<item>
		<title>Bye bye Capitalism</title>
		<link>http://musterkennung.wordpress.com/2011/10/08/bye-bye-capitalsim/</link>
		<comments>http://musterkennung.wordpress.com/2011/10/08/bye-bye-capitalsim/#comments</comments>
		<pubDate>Sat, 08 Oct 2011 09:04:41 +0000</pubDate>
		<dc:creator>Rayk Fenske</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://musterkennung.wordpress.com/?p=234</guid>
		<description><![CDATA[&#8230; so schreibt es Jens Best in einem seiner Tweets und zieht diesen Schluss aus der Erkenntnis der Jahre 2008 &#8211; 2011, dass private Unternehmen es nicht besser und vor allem auch nicht günstiger hinbekommen. Die Frage ist doch aber, bekommt es der staatliche Sektor besser hin? Wie wirtschaftet der Staat, wenn nicht auch Gewinnorientiert. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=musterkennung.wordpress.com&amp;blog=6829529&amp;post=234&amp;subd=musterkennung&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>&#8230; so schreibt es <a href="http://www.facebook.com/jens.best" title="Jens Best" target="_blank">Jens Best</a> in einem seiner <a href="http://bit.ly/nl0E36" title="Tweet">Tweets</a> und zieht diesen Schluss aus der Erkenntnis der Jahre 2008 &#8211; 2011, dass private Unternehmen es nicht besser und vor allem auch nicht günstiger hinbekommen.</p>
<p>Die Frage ist doch aber, bekommt es der staatliche Sektor besser hin? Wie wirtschaftet der Staat, wenn nicht auch Gewinnorientiert. Die Reduzierung von Kapitalismus auf Gewinnmaximierung ist in dem Sinn gefährlich, dass auch ein Staat versuchen sollte, die Einnahmen- und Ausgabenseite in eine positive Bilanz zu überführen. Genau so, wie es private Unternehmen auch tun. In diesem Bereich gibt es Verträge, im Zusammenhang mit demokratisch legalisierter Gewalt Wahlen. Somit bietet sich auf Grundlage dieser Argumentation keine Alternative. Selbst Mäzene, die aktuell ohne Gewinnabsicht agieren, verfoglten diese einst oder wieder in der Zukunft. </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/musterkennung.wordpress.com/234/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/musterkennung.wordpress.com/234/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/musterkennung.wordpress.com/234/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/musterkennung.wordpress.com/234/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/musterkennung.wordpress.com/234/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/musterkennung.wordpress.com/234/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/musterkennung.wordpress.com/234/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/musterkennung.wordpress.com/234/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/musterkennung.wordpress.com/234/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/musterkennung.wordpress.com/234/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/musterkennung.wordpress.com/234/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/musterkennung.wordpress.com/234/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/musterkennung.wordpress.com/234/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/musterkennung.wordpress.com/234/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=musterkennung.wordpress.com&amp;blog=6829529&amp;post=234&amp;subd=musterkennung&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://musterkennung.wordpress.com/2011/10/08/bye-bye-capitalsim/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2ac5685c55aef0aeebd643ee7ea8d090?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Rayk</media:title>
		</media:content>
	</item>
		<item>
		<title>home entertainment</title>
		<link>http://musterkennung.wordpress.com/2010/01/07/home-entertainment/</link>
		<comments>http://musterkennung.wordpress.com/2010/01/07/home-entertainment/#comments</comments>
		<pubDate>Thu, 07 Jan 2010 21:01:18 +0000</pubDate>
		<dc:creator>Rayk Fenske</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[dvb-s]]></category>
		<category><![CDATA[home entertainment]]></category>

		<guid isPermaLink="false">http://musterkennung.wordpress.com/?p=215</guid>
		<description><![CDATA[Es sieht folgendermaßen aus: Mit einer abnehmenden, in der Grundtendenz jedoch noch freudigen Erregung sehe ich traditionell die 20-Uhr-Nachrichten, dann den Wetterbericht und häufig dann noch den ersten Block irgendeines Unterhaltungsprogramms bei den Privaten. Dann kommt Werbung und ich habe schon genug, es nervt mich ziemlich. Also muss ein Aufzeichnungsgerät her, mit time shift, aber [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=musterkennung.wordpress.com&amp;blog=6829529&amp;post=215&amp;subd=musterkennung&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Es sieht folgendermaßen aus: Mit einer abnehmenden, in der Grundtendenz jedoch noch freudigen Erregung sehe ich traditionell die 20-Uhr-Nachrichten, dann den Wetterbericht und häufig dann noch den ersten Block irgendeines Unterhaltungsprogramms bei den Privaten. Dann kommt Werbung und ich habe schon genug, es nervt mich ziemlich. Also muss ein Aufzeichnungsgerät her, mit time shift, aber auch etwas auf DVD brennen, Heim-Netzwerk, na klar. Und ein zweiter Rechner sowieso und auch endlich mal. Und ein neuer Fernseher auch. Und eigentlich möchte ich mir Episoden bei iTunes kaufen und dann in Ruhe ansehen. Oder vielleicht ganz auf PayTV, z.B. das Angebot der Telekom umsteigen. Und dem iPod endlich mal ein sleakes Apple-Produkt zu Seite stellen? Warum nicht. Was also tun?</p>
<p>Meine erste Überlegung beinhalteten eine Time Capsule, optisch zu Schade für den Anschlußraum, da könnte man sicher auch ein anderes &#8211; wie heisst es so schön? &#8211; Network Attached Storage nehmen. Dann bräuche ich aber auch einen WLAN-fähigen SAT-Receiver mit Festplatte. Die gibt es als twin-Variante, und am Ende auch gar nicht so teuer.</p>
<p>Auf die Frage nach dem integrierten TV-Tuner kam dann vom Experten O. der Hinweis, doch einen Mac mini mit USB-Stick zu erweitern. DVB-T tut nur leider nicht so richtig, wenngleich Braunschweig Testregion ist. Aber up Dorpe ist der Empfang eher mäßig.</p>
<p>Hier nun der Stand der 2. Iteration:</p>
<ol>
<li><a title="Apple Store - Mac mini" href="http://store.apple.com/de/browse/home/shop_mac/family/mac_mini" target="_blank">Mac mini</a>, 2,53GHz, 4GB DDR3, 320GB Festplatte, ne, lieber 500GB, magic mouse und wireless key board, noch die Fernbedienung. Juchu, 1.000 Euro!</li>
<li><a title="elgato EyeTV 310" href="http://www.elgato.com/elgato/int/mainmenu/products/tuner/310/product1.de.html" target="_blank">EyeTV 310</a> von <a title="elgate German home page" href="http://www.elgato.com/elgato/int/mainmenu/home.de.html" target="_blank">elgato</a>. Nochmals 250 Euro.</li>
</ol>
<p>Also schlappe 2 Mille für Fernsehen, Aufnehmen und nebenbei noch Computern. Der iPod hat &#8216;nen großen Bruder, die Mediensammlung ist im Wohnzimmer und alles sieht auch noch gut aus. Puh! Alternativ gibt es wohl auch eine Kiste namens <a title="Networx product page - SATV" href="http://www.networx.de/satv/satv.html" target="_blank">SATV</a> von Networx. Sieht aus wie der Mac mini, würde sich also gut machen. Es passt dort auch noch eine Festplatte rein, was ja so schlecht nicht wäre, dann könnte ich erstmal eine kleiner für den mini nehmen. Preise sind aber nicht zu finden, als Retailer wird <a title="Gravis home page" href="http://www.gravis.de/" target="_blank">Gravis</a> angeboten, aber bei denen finde ich auch nichts. Auch der <a title="Digitalnomade" href="http://www.digitalnomade.de/" target="_blank">Digitalnomade </a>hilft nicht weiter.</p>
<p>So meine Lieben, jetzt brauche ich Rat. Und irgendwie auch eine günstiger Lösung.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/musterkennung.wordpress.com/215/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/musterkennung.wordpress.com/215/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/musterkennung.wordpress.com/215/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/musterkennung.wordpress.com/215/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/musterkennung.wordpress.com/215/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/musterkennung.wordpress.com/215/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/musterkennung.wordpress.com/215/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/musterkennung.wordpress.com/215/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/musterkennung.wordpress.com/215/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/musterkennung.wordpress.com/215/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/musterkennung.wordpress.com/215/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/musterkennung.wordpress.com/215/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/musterkennung.wordpress.com/215/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/musterkennung.wordpress.com/215/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=musterkennung.wordpress.com&amp;blog=6829529&amp;post=215&amp;subd=musterkennung&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://musterkennung.wordpress.com/2010/01/07/home-entertainment/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2ac5685c55aef0aeebd643ee7ea8d090?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Rayk</media:title>
		</media:content>
	</item>
	</channel>
</rss>
