<?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>plasticboy.de</title>
	<atom:link href="http://www.plasticboy.de/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.plasticboy.de</link>
	<description>About the art of building metaphoric solutions to real world problems.</description>
	<lastBuildDate>Sat, 03 Jul 2010 12:59:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Using Gmail as preferred email application in Ubuntu</title>
		<link>http://www.plasticboy.de/2010/07/03/installing-gmail-as-preferred-email-application-in-ubuntu/</link>
		<comments>http://www.plasticboy.de/2010/07/03/installing-gmail-as-preferred-email-application-in-ubuntu/#comments</comments>
		<pubDate>Sat, 03 Jul 2010 12:57:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Gmail]]></category>
		<category><![CDATA[google]]></category>

		<guid isPermaLink="false">http://www.plasticboy.de/?p=231</guid>
		<description><![CDATA[You need to install http://gnome-gmail.sourceforge.net/ if  you want to use Googlemail as your preferred email application. After the installation of the .deb file, go to "System -&#62; Preferences -&#62; Preferred Applications" and select Gmail. That&#8217;s it.]]></description>
			<content:encoded><![CDATA[<p>You need to install <a href="http://gnome-gmail.sourceforge.net/">http://gnome-gmail.sourceforge.net/</a> if  you want to use Googlemail as your preferred email application.</p>
<p>After the installation of the .deb file, go to <tt>"System -&gt; Preferences -&gt; Preferred Applications"</tt> and select Gmail. That&#8217;s it.</p>
<div id="attachment_232" class="wp-caption alignleft" style="width: 410px"><a href="http://www.plasticboy.de/wp-content/uploads/2010/07/ubuntu_preferredApplications.png"><img class="size-full wp-image-232" title="ubuntu_preferredApplications" src="http://www.plasticboy.de/wp-content/uploads/2010/07/ubuntu_preferredApplications.png" alt="Ubuntu Preferred Applications for Gmail" width="400" /></a><p class="wp-caption-text">Ubuntu Preferred Applications for Gmail</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.plasticboy.de/2010/07/03/installing-gmail-as-preferred-email-application-in-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing git and gitosis on ubuntu</title>
		<link>http://www.plasticboy.de/2010/06/25/installing-git-and-gitosis-on-ubuntu/</link>
		<comments>http://www.plasticboy.de/2010/06/25/installing-git-and-gitosis-on-ubuntu/#comments</comments>
		<pubDate>Fri, 25 Jun 2010 21:05:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[dvcs]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[gitosis]]></category>
		<category><![CDATA[svc]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.plasticboy.de/?p=217</guid>
		<description><![CDATA[A short tutorial how to install git and gitosis. The installation is finished in 5 easy to follow steps. Give it a try.]]></description>
			<content:encoded><![CDATA[<p>I had to set up a source code repository for my personal coding projects. In the recent years I had some very good experiences with <a href="http://svnbook.red-bean.com/" target="_blank">subversion</a>. While in use I never saw any big trouble and it worked like charme. But the time is right to jump on the hype and use one of the <a href="http://en.wikipedia.org/wiki/Distributed_revision_control">distributed version control systems</a> now.</p>
<p>My decision was to use <a href="http://git-scm.com/" target="_blank">git</a> this time and give it a try. I don&#8217;t know what to expect but let&#8217;s roll.<br />
By the time this tutorial was written, <a href="http://eagain.net/gitweb/?p=gitosis.git" target="_blank">gitosis</a> was not in the ubuntu repositories, so I had to install it manually.<br />
After the installation was done, I was stunned how fast it was over.</p>
<p>But see for yourself:</p>
<p><strong>Step 1</strong><br />
First we need to get git on our machines.</p>
<pre class="brush: bash;">sudo apt-get install git-core</pre>
<p>You need to do this on every machine &#8211; client and server.<br />
From now on we can start to use all git commands. But what we really want is a server installation, so it&#8217;s not over now.</p>
<p><strong>Step 2</strong><br />
All following steps are done on the server.<br />
Log into your server using ssh.<br />
In the end we will have a service running git.So it is a good idea to create a system user for that task:</p>
<pre class="brush: bash;">
sudo adduser \
    --system \
    --home /home/git \
    --shell /bin/sh \
    --gecos 'git system user' \
    --group \
    --disabled-password \
    git
</pre>
<p><strong>Step 3</strong><br />
Also install the python set up tools for the compilation and installation of gitosis.<br />
Yet again, another call for apt:</p>
<pre class="brush: bash;">
sudo apt-get install python-setuptools
</pre>
<p><strong>Step 4</strong><br />
Now we have everything together to install gitosis. For the installation we do our first clone of the sources and immediately install them:</p>
<pre class="brush: bash;">
mkdir ~/tmp
cd ~/tmp
git clone git://eagain.net/gitosis.git    #here we fetch the sources
cd gitosis
sudo python setup.py install
</pre>
<p>Now gitosis is installed.</p>
<p><strong>Step 5</strong><br />
In the end you have two choices:<br />
If you use ssh logins via keyfile, then you can use the following command to fire up gitosis:</p>
<pre class="brush: bash;">
sudo -H -u git gitosis-init &lt; ~/.ssh/authorized_keys
sudo chmod 755 /home/git/repositories/gitosis-admin.git/hooks/post-update
</pre>
<p>if you don&#8217;t have ssh via keyfile use this:</p>
<pre class="brush: bash;">
sudo -H -u git gitosis-init
sudo chmod 755 /home/git/repositories/gitosis-admin.git/hooks/post-update
</pre>
<p>You&#8217;re done!</p>
<p>You can validate your installation if you run following command on your client:</p>
<pre class="brush: bash;">
cd ~/tmp
git clone git@YOUR_SERVER:gitosis-admin.git
cd gitosis-admin
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.plasticboy.de/2010/06/25/installing-git-and-gitosis-on-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Robot That Balances on a Ball</title>
		<link>http://www.plasticboy.de/2010/05/01/a-robot-that-balances-on-a-ball/</link>
		<comments>http://www.plasticboy.de/2010/05/01/a-robot-that-balances-on-a-ball/#comments</comments>
		<pubDate>Sat, 01 May 2010 15:31:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Headline]]></category>
		<category><![CDATA[Science]]></category>
		<category><![CDATA[Videos]]></category>

		<guid isPermaLink="false">http://www.plasticboy.de/?p=208</guid>
		<description><![CDATA[I want my office chair powered with one of these&#8230;]]></description>
			<content:encoded><![CDATA[<p>I want my office chair powered with one of these&#8230;</p>
<p><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/bI06lujiD7E&hl=en_US&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/bI06lujiD7E&hl=en_US&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="355"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.plasticboy.de/2010/05/01/a-robot-that-balances-on-a-ball/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Augmented Reality Wall Hack</title>
		<link>http://www.plasticboy.de/2010/01/15/augmented-reality-wall-hack/</link>
		<comments>http://www.plasticboy.de/2010/01/15/augmented-reality-wall-hack/#comments</comments>
		<pubDate>Fri, 15 Jan 2010 21:33:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Science]]></category>
		<category><![CDATA[Videos]]></category>

		<guid isPermaLink="false">http://www.plasticboy.de/?p=200</guid>
		<description><![CDATA[Yet another very good idea how to secure traffic even more. I am looking forward to see this implemented in urban areas. Whit the low cost of WiFi and camera components it possible to build this into traffic lights or signs so your BMW cHUD can get these streaming life images.]]></description>
			<content:encoded><![CDATA[<p>Yet another very good idea how to secure traffic even more. I am looking forward to see this implemented in urban areas. Whit the low cost of WiFi and camera components it possible to build this into traffic lights or signs so your BMW cHUD can get these streaming life images.</p>
<p><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/Q5O13bk7z2s&hl=en_US&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Q5O13bk7z2s&hl=en_US&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="355"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.plasticboy.de/2010/01/15/augmented-reality-wall-hack/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Have a good start into a new decade!</title>
		<link>http://www.plasticboy.de/2009/12/31/have-a-good-start-into-a-new-decade/</link>
		<comments>http://www.plasticboy.de/2009/12/31/have-a-good-start-into-a-new-decade/#comments</comments>
		<pubDate>Thu, 31 Dec 2009 15:29:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Science]]></category>
		<category><![CDATA[Videos]]></category>

		<guid isPermaLink="false">http://www.plasticboy.de/?p=195</guid>
		<description><![CDATA[This wouldn&#8217;t be my blog if I wouldn&#8217;t post a &#8220;scientific&#8221; video. The video is from a high school physics project and demonstrates the calculations of velocity, force and acceleration of a pyrotechnic effect. I&#8217;m off celebrating new year. I hope to see you all in good health in the next decade.]]></description>
			<content:encoded><![CDATA[<p>This wouldn&#8217;t be my blog if I wouldn&#8217;t post a &#8220;scientific&#8221; video.<br />
The video is from a high school physics project and demonstrates the calculations of velocity, force and acceleration of a pyrotechnic effect.</p>
<p>I&#8217;m off celebrating new year.<br />
I hope to see you all in good health in the next decade.</p>
<p><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/SmQ0EjyVmJw&hl=en_US&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/SmQ0EjyVmJw&hl=en_US&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="355"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.plasticboy.de/2009/12/31/have-a-good-start-into-a-new-decade/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ISS Fly Arround with Michael Barratt</title>
		<link>http://www.plasticboy.de/2009/12/20/iss-fly-arround-with-michael-barratt/</link>
		<comments>http://www.plasticboy.de/2009/12/20/iss-fly-arround-with-michael-barratt/#comments</comments>
		<pubDate>Sun, 20 Dec 2009 01:34:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Science]]></category>
		<category><![CDATA[Videos]]></category>

		<guid isPermaLink="false">http://www.plasticboy.de/?p=187</guid>
		<description><![CDATA[I found this 20 minute video of a ISS fly around sight seeing tour with Astronaut Michael Barratt on youtube. I had no idea how densely packed the whole station is with all the stuff brought up there. Space seems to be a serious issue up there.]]></description>
			<content:encoded><![CDATA[<p>I found this 20 minute video of a ISS fly around sight seeing tour with Astronaut Michael Barratt on youtube.<br />
I had no idea how densely packed the whole station is with all the stuff brought up there. Space seems to be a serious issue up there. </p>
<p><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/-1OTSbIzcwI&hl=en_US&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/-1OTSbIzcwI&hl=en_US&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="355"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.plasticboy.de/2009/12/20/iss-fly-arround-with-michael-barratt/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iRobot&#8217;s Soft Morphing Blob &#8216;Bot Takes Its First Steps</title>
		<link>http://www.plasticboy.de/2009/11/28/irobots-soft-morphing-blob-bot-takes-its-first-steps/</link>
		<comments>http://www.plasticboy.de/2009/11/28/irobots-soft-morphing-blob-bot-takes-its-first-steps/#comments</comments>
		<pubDate>Sat, 28 Nov 2009 02:55:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Videos]]></category>

		<guid isPermaLink="false">http://www.plasticboy.de/?p=178</guid>
		<description><![CDATA[Today I want to present a video about a different robotics concept: Softbody shape shifting though jamming. I haven&#8217;t heard about that before and personally think that it&#8217;s movement is creepy. The video explains the concept and in the end you&#8217;ll see it move. This is a very interesting concept if you think of bots [...]]]></description>
			<content:encoded><![CDATA[<p>Today I want to present a video about a different robotics concept: Softbody shape shifting though jamming. I haven&#8217;t heard about that before and personally think that it&#8217;s movement is creepy.</p>
<p>The video explains the concept and in the end you&#8217;ll see it move.<br />
This is a very interesting concept if you think of bots on microscopic scale, lust like amoeba.<br />
The less complex mechanical parts you have in a a machine, the less likely something will brake.</p>
<p><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/SbqHERKdlK8&hl=en_US&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/SbqHERKdlK8&hl=en_US&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="355"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.plasticboy.de/2009/11/28/irobots-soft-morphing-blob-bot-takes-its-first-steps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Breathtaking video from the Kuroshio Sea Aquarium</title>
		<link>http://www.plasticboy.de/2009/11/26/breathtaking-video-from-the-kuroshio-sea-aquarium/</link>
		<comments>http://www.plasticboy.de/2009/11/26/breathtaking-video-from-the-kuroshio-sea-aquarium/#comments</comments>
		<pubDate>Thu, 26 Nov 2009 01:24:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Featured]]></category>

		<guid isPermaLink="false">http://www.plasticboy.de/?p=160</guid>
		<description><![CDATA[This video was taken from the worlds second largest fish tank.
From the youtube info, I know that the Song is “Please don’t go” from “Barcelona” and that it’s available on iTunes.

Be shure to watch this video in HD and full screen.]]></description>
			<content:encoded><![CDATA[<p>This video was taken from the worlds second largest fish tank.<br />
From the youtube info, I know that the Song is &#8220;Please don&#8217;t go&#8221; from &#8220;Barcelona&#8221; and that it&#8217;s available on iTunes.</p>
<p>Be shure to watch this video in HD and full screen.</p>
<p><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/u7deClndzQw&hl=en_US&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/u7deClndzQw&hl=en_US&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="355"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.plasticboy.de/2009/11/26/breathtaking-video-from-the-kuroshio-sea-aquarium/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Interesting short video about the mechanics of traffic jams</title>
		<link>http://www.plasticboy.de/2009/11/24/interesting-short-video-about-the-mechanics-of-traffic-jams/</link>
		<comments>http://www.plasticboy.de/2009/11/24/interesting-short-video-about-the-mechanics-of-traffic-jams/#comments</comments>
		<pubDate>Mon, 23 Nov 2009 23:26:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Science]]></category>
		<category><![CDATA[Videos]]></category>

		<guid isPermaLink="false">http://www.plasticboy.de/?p=136</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/Suugn-p5C1M&hl=en_US&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Suugn-p5C1M&hl=en_US&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="355"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.plasticboy.de/2009/11/24/interesting-short-video-about-the-mechanics-of-traffic-jams/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>We Are Here: The Pale Blue Dot</title>
		<link>http://www.plasticboy.de/2009/11/23/we-are-here-the-pale-blue-dot/</link>
		<comments>http://www.plasticboy.de/2009/11/23/we-are-here-the-pale-blue-dot/#comments</comments>
		<pubDate>Mon, 23 Nov 2009 02:05:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Videos]]></category>

		<guid isPermaLink="false">http://www.plasticboy.de/2009/11/23/we-are-here-the-pale-blue-dot/</guid>
		<description><![CDATA[Even the biggest problems are microscopic if you see them in an astronomical context.]]></description>
			<content:encoded><![CDATA[<p>Even the biggest problems are microscopic if you see them in an astronomical context.</p>
<p><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/2pfwY2TNehw&hl=en_US&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/2pfwY2TNehw&hl=en_US&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="355"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.plasticboy.de/2009/11/23/we-are-here-the-pale-blue-dot/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
