<?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>Bernhard Rode &#187; Bernhard Rode</title>
	<atom:link href="http://www.bernhardrode.de/common/author/admin/feed" rel="self" type="application/rss+xml" />
	<link>http://www.bernhardrode.de</link>
	<description>Free as in beer...</description>
	<lastBuildDate>Mon, 12 Dec 2011 16:50:54 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>The most intense taekwondo fight ever</title>
		<link>http://www.bernhardrode.de/common/2011/12/12/the-most-intense-taekwondo-fight-ever</link>
		<comments>http://www.bernhardrode.de/common/2011/12/12/the-most-intense-taekwondo-fight-ever#comments</comments>
		<pubDate>Mon, 12 Dec 2011 16:50:54 +0000</pubDate>
		<dc:creator>Bernhard Rode</dc:creator>
				<category><![CDATA[Sonstige]]></category>

		<guid isPermaLink="false">http://www.bernhardrode.de/?p=710</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><iframe width="620" height="465" src="http://www.youtube.com/embed/LjxaK-dVugs?fs=1&#038;feature=oembed" frameborder="0" allowfullscreen></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bernhardrode.de/common/2011/12/12/the-most-intense-taekwondo-fight-ever/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setting up AFP on Ubuntu</title>
		<link>http://www.bernhardrode.de/common/2011/12/01/setting-up-afp-on-ubuntu</link>
		<comments>http://www.bernhardrode.de/common/2011/12/01/setting-up-afp-on-ubuntu#comments</comments>
		<pubDate>Thu, 01 Dec 2011 14:07:50 +0000</pubDate>
		<dc:creator>Bernhard Rode</dc:creator>
				<category><![CDATA[Open Source]]></category>

		<guid isPermaLink="false">http://www.bernhardrode.de/?p=700</guid>
		<description><![CDATA[I&#8217;m using VirtualMachines for many development tasks, as I don&#8217;t want to mess my host system. To Access the files on my machines I&#8217;m using AFP which is pretty easy to use. This setup is based upon the work of &#8230; <a href="http://www.bernhardrode.de/common/2011/12/01/setting-up-afp-on-ubuntu">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m using VirtualMachines for many development tasks, as I don&#8217;t want to mess my host system. To Access the files on my machines I&#8217;m using AFP which is pretty easy to use.</p>
<p>This setup is based upon the work of <a href="http://missingreadme.wordpress.com/2010/05/08/how-to-set-up-afp-filesharing-on-ubuntu/">The missing readme</a> So this post is basically just a short reminder and howot for myself :) More informations in <a href="http://wiki.ubuntuusers.de/netatalk">german</a>.</p>
<p>First of alle we need to install the required services:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="php" style="font-family:monospace;">sudo apt<span style="color: #339933;">-</span>get install netatalk avahi<span style="color: #339933;">-</span>daemon libnss<span style="color: #339933;">-</span>mdns</pre></td></tr></table></div>

<p>Then we disable legacy protocols for our file server (this step is optional): Uncomment the following lines in<strong> &#8220;/etc/default/netatalk&#8221;</strong></p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
</pre></td><td class="code"><pre class="php" style="font-family:monospace;">ATALKD_RUN<span style="color: #339933;">=</span>no
PAPD_RUN<span style="color: #339933;">=</span>no
CNID_METAD_RUN<span style="color: #339933;">=</span>yes
AFPD_RUN<span style="color: #339933;">=</span>yes
TIMELORD_RUN<span style="color: #339933;">=</span>no
A2BOOT_RUN<span style="color: #339933;">=</span>no</pre></td></tr></table></div>

<p>Add the Shares to <strong>&#8220;/etc/netatalk/AppleVolumes.default&#8221;</strong></p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="php" style="font-family:monospace;">~<span style="color: #339933;">/</span> <span style="color: #0000ff;">&quot;Home Directory&quot;</span> allow<span style="color: #339933;">:</span> cnidscheme<span style="color: #339933;">:</span>cdb options<span style="color: #339933;">:</span>usedots<span style="color: #339933;">,</span>upriv</pre></td></tr></table></div>

<p>Add mdns to host in <strong>&#8220;<tt>/etc/nsswitch.conf</tt>&#8220;</strong></p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="php" style="font-family:monospace;">hosts<span style="color: #339933;">:</span> files mdns4_minimal <span style="color: #009900;">&#91;</span>NOTFOUND<span style="color: #339933;">=</span><span style="color: #b1b100;">return</span><span style="color: #009900;">&#93;</span> dns mdns4 <span style="color: #339933;">&lt;</span>strong<span style="color: #339933;">&gt;</span>mdns<span style="color: #339933;">&lt;/</span>strong<span style="color: #339933;">&gt;</span></pre></td></tr></table></div>

<p>Add a new services File<strong> &#8220;/etc/avahi/services/afpd.service&#8221;</strong></p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
</pre></td><td class="code"><pre class="xml" style="font-family:monospace;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;?xml</span> <span style="color: #000066;">version</span>=<span style="color: #ff0000;">&quot;1.0&quot;</span> <span style="color: #000066;">standalone</span>=<span style="color: #ff0000;">'no'</span><span style="color: #000000; font-weight: bold;">?&gt;</span></span><span style="color: #808080; font-style: italic;">&lt;!--*-nxml-*--&gt;</span>
<span style="color: #00bbdd;">&lt;!DOCTYPE service-group SYSTEM &quot;avahi-service.dtd&quot;&gt;</span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;service-group<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;name</span> <span style="color: #000066;">replace-wildcards</span>=<span style="color: #ff0000;">&quot;yes&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>%h<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/name<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;service<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;type<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>_afpovertcp._tcp<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/type<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;port<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>548<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/port<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/service<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;service<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;type<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>_device-info._tcp<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/type<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;port<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>0<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/port<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;txt-record<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>model=MacPro<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/txt-record<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/service<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/service-group<span style="color: #000000; font-weight: bold;">&gt;</span></span></span></pre></td></tr></table></div>

<p>If you want to change the Icon, just chaange the value of model to one of the following:</p>
<ul>
<li>Xserve</li>
<li>PowerBook</li>
<li>PowerMac</li>
<li>Macmini</li>
<li>iMac</li>
<li>MacBook</li>
<li>MacBookPro</li>
<li>MacBookAir</li>
<li>MacPro</li>
<li>AppleTV1,1</li>
<li>AirPort</li>
</ul>
<p>So then just restart the service or reboot your machine to get everything up.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bernhardrode.de/common/2011/12/01/setting-up-afp-on-ubuntu/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Master Thesis</title>
		<link>http://www.bernhardrode.de/common/2011/11/24/master-thesis</link>
		<comments>http://www.bernhardrode.de/common/2011/11/24/master-thesis#comments</comments>
		<pubDate>Thu, 24 Nov 2011 17:56:00 +0000</pubDate>
		<dc:creator>Bernhard Rode</dc:creator>
				<category><![CDATA[Sonstige]]></category>
		<category><![CDATA[thesis infotainment]]></category>

		<guid isPermaLink="false">http://www.bernhardrode.de/?p=691</guid>
		<description><![CDATA[So after one a half years at the media university of Stuttgart, I&#8217;m going to write my thesis about in-car infotainment system from now on. We (two masters and one bachelor) are working together on different topics in a project &#8230; <a href="http://www.bernhardrode.de/common/2011/11/24/master-thesis">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>So after one a half years at the media university of Stuttgart, I&#8217;m going to write my thesis about in-car infotainment system from now on.</p>
<p>We (two masters and one bachelor) are working together on different topics in a project between our University and VW. The basic idea behind the project was to find new ways of media aggregation in cars and it will last for at least three years. So we&#8217;re going to scratch the surface of some pretty interesting developments for feature in-car infotainment systems.</p>
<p>As we all know, the Internet/Apps/Services/&#8230;. (insert Buzzword here) is getting more and more ubiquitous. We&#8217;re only two or three steps away of getting into the <a href="http://en.wikipedia.org/wiki/Internet_of_Things">Internet of Things</a>.</p>
<p>So we&#8217;re trying to take on of those steps, by bringing the internet into the car.</p>
<p>The car development compared to the IT is &#8230; let&#8217;s call it <em>damn</em> <em>slow</em> :) &#8230; many innovations and ideas are under the hood and it takes ages until a feature is production ready.</p>
<p>7 years of development is o.k. for engines, security systems, etc&#8230;. but in I.T.?!?</p>
<p>I mean&#8230; youtube was founded in 2005 &#8230; this was just 6 years ago&#8230;</p>
<p>So the car manufactures need to change something in the future, although there have been many product announcements, like Twitter/Facebook integrations (&#8216;Hello World&#8217; for 21st century). But these are all preposterous, imho (Twitter was founded in 2006&#8230; who knows if it is still there, when I&#8217;m going to buy one of those cars in 3-4 years).</p>
<p>So our project is going to turn some things upside down. I&#8217;d really like to post about many topics we already talked about, but as we&#8217;re working together with VW not everything is open for the public. I&#8217;m trying to blog as much as possible in the near feature&#8230; so this blog will become more active and nerdy again ;)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bernhardrode.de/common/2011/11/24/master-thesis/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Link: Creating Realtime Web Applications</title>
		<link>http://www.bernhardrode.de/common/2011/11/24/link-creating-realtime-web-applications</link>
		<comments>http://www.bernhardrode.de/common/2011/11/24/link-creating-realtime-web-applications#comments</comments>
		<pubDate>Thu, 24 Nov 2011 16:57:28 +0000</pubDate>
		<dc:creator>Bernhard Rode</dc:creator>
				<category><![CDATA[Sonstige]]></category>

		<guid isPermaLink="false">http://www.bernhardrode.de/?p=689</guid>
		<description><![CDATA[Re-using Backbone.js Models on the server with Node.js and Socket.io to build real-time apps.]]></description>
			<content:encoded><![CDATA[<p><a title="Re-using Backbone.js Models on the server with Node.js and Socket.io to build real-time apps" href="http://andyet.net/blog/2011/feb/15/re-using-backbonejs-models-on-the-server-with-node/" target="_blank">Re-using Backbone.js Models on the server with Node.js and Socket.io to build real-time apps.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bernhardrode.de/common/2011/11/24/link-creating-realtime-web-applications/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ohio University Marching 110 &#8211; The Party Rock Anthem</title>
		<link>http://www.bernhardrode.de/common/2011/10/13/ohio-university-marching-110-the-party-rock-anthem</link>
		<comments>http://www.bernhardrode.de/common/2011/10/13/ohio-university-marching-110-the-party-rock-anthem#comments</comments>
		<pubDate>Thu, 13 Oct 2011 15:18:31 +0000</pubDate>
		<dc:creator>Bernhard Rode</dc:creator>
				<category><![CDATA[Sonstige]]></category>

		<guid isPermaLink="false">http://www.bernhardrode.de/?p=686</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><iframe width="620" height="349" src="http://www.youtube.com/embed/uZtCZOiZ-cg?fs=1&#038;feature=oembed" frameborder="0" allowfullscreen></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bernhardrode.de/common/2011/10/13/ohio-university-marching-110-the-party-rock-anthem/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mini Fridge Beer Cannon</title>
		<link>http://www.bernhardrode.de/common/2010/12/29/mini-fridge-beer-cannon</link>
		<comments>http://www.bernhardrode.de/common/2010/12/29/mini-fridge-beer-cannon#comments</comments>
		<pubDate>Wed, 29 Dec 2010 15:43:58 +0000</pubDate>
		<dc:creator>Bernhard Rode</dc:creator>
				<category><![CDATA[Sonstige]]></category>

		<guid isPermaLink="false">http://www.bernhardrode.de/?p=645</guid>
		<description><![CDATA[This is the maiden voyage of my mini fridge that now shoots beers via iPhone. It is controlled by an iobridge via a web based iPhone interface and shoots the beers from an air cannon in the housing. Features: Vends &#8230; <a href="http://www.bernhardrode.de/common/2010/12/29/mini-fridge-beer-cannon">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>This is the maiden voyage of my mini fridge that now shoots beers via iPhone. It is controlled by an iobridge via a web based iPhone interface and shoots the beers from an air cannon in the housing.</p>
<p>Features:<br />
Vends 4 types of beer<br />
Broadcasts temperature<br />
Adjust temperature via iPhone<br />
Aim via webcam<br />
Auto tweet video per shot<br />
Fire beer with 50psi of deliciousness</p>
<p><iframe width="620" height="465" src="http://www.youtube.com/embed/AMZfmbu6prU?fs=1&#038;feature=oembed" frameborder="0" allowfullscreen></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bernhardrode.de/common/2010/12/29/mini-fridge-beer-cannon/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Translate Server Error Bild</title>
		<link>http://www.bernhardrode.de/common/2010/08/03/translate-server-error-bild</link>
		<comments>http://www.bernhardrode.de/common/2010/08/03/translate-server-error-bild#comments</comments>
		<pubDate>Mon, 02 Aug 2010 22:16:00 +0000</pubDate>
		<dc:creator>Bernhard Rode</dc:creator>
				<category><![CDATA[Sonstige]]></category>

		<guid isPermaLink="false">http://www.bernhardrode.de/?p=623</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.bernhardrode.de/wp-content/uploads/2010/08/21894-translate-server-error1.jpg"><img src="http://www.bernhardrode.de/wp-content/uploads/2010/08/21894-translate-server-error1-400x300.jpg" alt="" title="21894-translate-server-error" width="400" height="300" class="alignnone size-medium wp-image-626" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bernhardrode.de/common/2010/08/03/translate-server-error-bild/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Logorama on Vimeo</title>
		<link>http://www.bernhardrode.de/common/2010/07/28/logorama-on-vimeo</link>
		<comments>http://www.bernhardrode.de/common/2010/07/28/logorama-on-vimeo#comments</comments>
		<pubDate>Wed, 28 Jul 2010 08:00:22 +0000</pubDate>
		<dc:creator>Bernhard Rode</dc:creator>
				<category><![CDATA[Internet]]></category>

		<guid isPermaLink="false">http://www.bernhardrode.de/?p=620</guid>
		<description><![CDATA[Logorama from Marc Altshuler &#8211; Human Music on Vimeo. via Logorama on Vimeo.]]></description>
			<content:encoded><![CDATA[<p><object width="400" height="265"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=10149605&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=10149605&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="400" height="265"></embed></object>
<p><a href="http://vimeo.com/10149605">Logorama</a> from <a href="http://vimeo.com/user3365583">Marc Altshuler &#8211; Human Music</a> on <a href="http://vimeo.com">Vimeo</a>.</p>
<p>via <a href="http://vimeo.com/10149605">Logorama on Vimeo</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bernhardrode.de/common/2010/07/28/logorama-on-vimeo/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>BP Photoshops Another Official Image Terribly</title>
		<link>http://www.bernhardrode.de/common/2010/07/22/bp-photoshops-another-official-image-terribly-3</link>
		<comments>http://www.bernhardrode.de/common/2010/07/22/bp-photoshops-another-official-image-terribly-3#comments</comments>
		<pubDate>Thu, 22 Jul 2010 08:38:14 +0000</pubDate>
		<dc:creator>Bernhard Rode</dc:creator>
				<category><![CDATA[Sonstige]]></category>

		<guid isPermaLink="false">http://www.bernhardrode.de/?p=616</guid>
		<description><![CDATA[BP Photoshops Another Official Image Terribly.]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://gizmodo.com/5592836/bp-photoshops-another-official-image-again-terribly"><img src='http://www.bernhardrode.de/wp-content/uploads/2010/07/500x_bphotoshop2.jpg' alt='' /></a></p>
<p><a href="http://gizmodo.com/5592836/bp-photoshops-another-official-image-again-terribly">BP Photoshops Another Official Image Terribly</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bernhardrode.de/common/2010/07/22/bp-photoshops-another-official-image-terribly-3/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>YouTube &#8211; Life After Death by Powerpoint 2010</title>
		<link>http://www.bernhardrode.de/common/2010/06/01/youtube-life-after-death-by-powerpoint-2010</link>
		<comments>http://www.bernhardrode.de/common/2010/06/01/youtube-life-after-death-by-powerpoint-2010#comments</comments>
		<pubDate>Tue, 01 Jun 2010 18:48:40 +0000</pubDate>
		<dc:creator>Bernhard Rode</dc:creator>
				<category><![CDATA[Sonstige]]></category>

		<guid isPermaLink="false">http://www.bernhardrode.de/?p=610</guid>
		<description><![CDATA[donmcmillancomedy via YouTube &#8211; Life After Death by Powerpoint 2010.]]></description>
			<content:encoded><![CDATA[<p>donmcmillancomedy</p>
<p>via <a href="http://www.youtube.com/watch?v=KbSPPFYxx3o&amp;feature=related">YouTube &#8211; Life After Death by Powerpoint 2010</a>.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="350" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="wmode" value="transparent" /><param name="src" value="http://www.youtube.com/v/KbSPPFYxx3o&amp;feature=related" /><embed type="application/x-shockwave-flash" width="425" height="350" src="http://www.youtube.com/v/KbSPPFYxx3o&amp;feature=related" wmode="transparent"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bernhardrode.de/common/2010/06/01/youtube-life-after-death-by-powerpoint-2010/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

