<?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>schrankmonster blog &#187; hack-the-planet</title>
	<atom:link href="http://www.schrankmonster.de/category/n3rd/hack-the-planet/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.schrankmonster.de</link>
	<description>technology-ninja!</description>
	<lastBuildDate>Sun, 08 Jan 2012 21:32:31 +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>downloading the whole Jamendo catalog</title>
		<link>http://www.schrankmonster.de/2011/09/18/downloading-the-whole-jamendo-catalog/</link>
		<comments>http://www.schrankmonster.de/2011/09/18/downloading-the-whole-jamendo-catalog/#comments</comments>
		<pubDate>Sun, 18 Sep 2011 11:20:35 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[hack-the-planet]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2011/09/18/downloading-the-whole-jamendo-catalog/</guid>
		<description><![CDATA[Yesterday @simcup wrote on twitter about that he is currently downloading the whole Jamendo catalog of Creative Commons music. Although I already knew Jamendo it never occurred to be to download their whole catalog. Since I am a fan of choice I immediately thought about how I could download the catalog too. Since the only [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday <a href="http://twitter.com/#!/simcup/status/115186326776717312" target="_blank">@simcup</a> wrote on twitter about that he is currently downloading the whole Jamendo catalog of Creative Commons music. <a href="http://twitter.com/#!/simcup/status/115186326776717312" target="_blank"><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: block; float: none; margin-left: auto; margin-right: auto; padding-top: 0px; border: 0px;" title="Capture" src="http://www.schrankmonster.de/wp-content/uploads/2011/09/Capture.png" alt="Capture" width="404" height="165" border="0" /></a></p>
<p>Although I already knew Jamendo it never occurred to be to download their whole catalog. Since I am a fan of choice I immediately thought about how I could download the catalog too. Since the only clue was a cryptic uri-like text how to achieve that it suddenly sounded like a great idea to write a universal tool and release it as open-source. This tool should allow users to download the whole catalog and keep their local jamendo mirror in sync with the server. So anytime new artists, albums or tracks are added the user does not need to download them all again.</p>
<p>So the only thing I had as a starting point was that cryptic uri pointing me to something I’ve never heard of called Rythmbox. Turns out that this is a GNOME music player application which has Jamendo integration. After some clueless poking around I decided to take a look at the source of Rythmbox, especially the Jamendo module.</p>
<p><a href="http://git.gnome.org/browse/rhythmbox/plain/plugins/jamendo/jamendo/JamendoSource.py?h=v0.13.x" target="_blank">This module</a> is written in python and quite clean to read. And just by looking at the first lines I came across the interesting fact that there is a almost daily updated XML dump of the Jamendo catalog available from Jamendo. Hurray! Since Jamendo wants developers to interact with the platform they decided to put a documentation online which allows anyone to write tools and stream and download tracks. After all the clues I found <a href="http://developer.jamendo.com/en/wiki/NewDatabaseDumps" target="_blank">I finally ended up on this page</a>.</p>
<p>So there are the catalog download, track stream and torrent uris necessary to download the catalog. Now the only thing that is needed is a tool which parses the XML and creates a nice folder structure for us.</p>
<p><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: block; float: none; margin-left: auto; margin-right: auto; padding-top: 0px; border: 0px;" title="folderstructure" src="http://www.schrankmonster.de/wp-content/uploads/2011/09/folderstructure.png" alt="folderstructure" width="183" height="128" border="0" /></p>
<p>Parsing XML in C# (my prefered programming language) is easy. Basically you can use a tool called <a href="http://msdn.microsoft.com/en-us/library/x6c1kb0s%28v=vs.80%29.aspx" target="_blank">XSD.exe</a> and let it generate first the XSD from the XML and then ready-to-use C# classes from that XSD.</p>
<p><a href="http://www.schrankmonster.de/wp-content/uploads/2011/09/generating_xsd_and_csharp.png" target="_blank"><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: block; float: none; margin-left: auto; margin-right: auto; padding-top: 0px; border: 0px;" title="generating_xsd_and_csharp" src="http://www.schrankmonster.de/wp-content/uploads/2011/09/generating_xsd_and_csharp_thumb.png" alt="generating_xsd_and_csharp" width="400" height="258" border="0" /></a></p>
<p>After doing all that actually reading the whole catalog into a useable form breaks down to just three lines of code:</p>
<p><a href="http://www.schrankmonster.de/wp-content/uploads/2011/09/parsingxml.png"><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: block; float: none; margin-left: auto; margin-right: auto; padding-top: 0px; border: 0px;" title="parsingxml" src="http://www.schrankmonster.de/wp-content/uploads/2011/09/parsingxml_thumb.png" alt="parsingxml" width="404" height="57" border="0" /></a></p>
<p>Isn’t it great how modern frameworks take away the complexity of such tasks. At this point I’ve already parsed the whole catalog into my tool and only wrote three lines of code. The rest was generated automatically for me. The best of all – this also works on non-windows operating systems when you use <a href="http://www.mono-project.com/Main_Page" target="_blank">mono</a>.</p>
<p>When the XML data is parsed and available in a nice data structure it’s easy to iterate through all artists, all albums and all tracks and then download the actual mp3 or ogg. And that’s basically what my tool does. It takes the XML, parses it, and downloads. It will check before downloading if the track already exists and will only download those added since the last run.</p>
<p>Additionally since I am deeply involved into the development of the <a href="http://github.com/sones/sones" target="_blank">GraphDB graph database at sones</a> I want to make use of the Jamendo data and the graph structure it poses. Since the directory structure my tool is generating is only one aspect how you could possibly look at the data it’s quite interesting to demonstrate the capabilities of GraphDB based on that data.</p>
<p>The idea behind the graph representation of the data is that you could start from almost any starting point imaginable. No matter if you you start from a single track and drill up into genre and artists, or if you start at a location and drill down to tracks.</p>
<p>So what the Downloader does in matters of GraphDB integration is that it outputs a GraphQL script which can be imported into an instance of GraphDB.</p>
<p><a href="https://github.com/bietiekay/JAMENDOwnloader" target="_blank">The sourcecode of my tool is available on github</a> and released unter the BSD license – feel free to play with it and to contribute.</p>
<p>Source 1: <a href="http://www.jamendo.com">http://www.jamendo.com</a><br />
Source 2: <a title="https://github.com/bietiekay/JAMENDOwnloader" href="https://github.com/bietiekay/JAMENDOwnloader">https://github.com/bietiekay/JAMENDOwnloader</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2011/09/18/downloading-the-whole-jamendo-catalog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Achievement Unlocked: Scaring the hell out of people</title>
		<link>http://www.schrankmonster.de/2011/04/20/achievement-unlocked-scaring-the-hell-out-of-people/</link>
		<comments>http://www.schrankmonster.de/2011/04/20/achievement-unlocked-scaring-the-hell-out-of-people/#comments</comments>
		<pubDate>Wed, 20 Apr 2011 18:32:45 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[hack-the-planet]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[travelling]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/?p=7586</guid>
		<description><![CDATA[Oh boy, it seems that Apple just screwed up big time when it comes to data privacy. Obviously everytime someone attaches an iOS device like the iPhone to a PC or Mac and it does a backup run this backup includes the location data of that iPhone of the last several months. Impressive logging on [...]]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter" title="Achievement Unlocked" src="http://achievements.schrankmonster.de/Achievement.aspx?text=Successfully%20spied%20on%20all%20your%20customers" alt="" width="422" height="77" /></p>
<p>Oh boy, it seems that Apple just screwed up big time when it comes to data privacy. Obviously everytime someone attaches an iOS device like the iPhone to a PC or Mac and it does a backup run this backup includes the location data of that iPhone of the last several months. Impressive logging on the one hand and a shame that they did not talk about that in public upfront on the other hand.</p>
<p>There&#8217;s<a href="http://petewarden.github.com/iPhoneTracker/" target="_blank"> a great tool available on GitHub which uses OpenStreetMap to visualize the logged data</a> &#8211; it creates a quite impressive graphical representation of where I was the last 6 months&#8230;</p>
<p style="text-align: center;"><a href="http://www.schrankmonster.de/wp-content/uploads/2011/04/Bildschirmfoto-2011-04-20-um-19.22.21.png" target="_blank"><img class="aligncenter size-medium wp-image-7587" title="Bildschirmfoto 2011-04-20 um 19.22.21" src="http://www.schrankmonster.de/wp-content/uploads/2011/04/Bildschirmfoto-2011-04-20-um-19.22.21-300x216.png" alt="" width="300" height="216" /></a></p>
<p>Source 1: <a href="http://petewarden.github.com/iPhoneTracker/" target="_blank">http://petewarden.github.com/iPhoneTracker/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2011/04/20/achievement-unlocked-scaring-the-hell-out-of-people/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Shairport &#8211; someone reversed an AirPort Express</title>
		<link>http://www.schrankmonster.de/2011/04/19/shairport-someone-reversed-an-airport-express/</link>
		<comments>http://www.schrankmonster.de/2011/04/19/shairport-someone-reversed-an-airport-express/#comments</comments>
		<pubDate>Tue, 19 Apr 2011 18:11:31 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[hack-the-planet]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Media]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[N3RD]]></category>
		<category><![CDATA[networking]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/?p=7557</guid>
		<description><![CDATA[Low Latency Network Audio was a dream for the past years (see an article of 2005 and 2008) and with AirPlay it&#8217;s finally there. I am using the Apple AirPlay technology for several years now&#8230; after it got implemented into iOS it&#8217;s just fantastic to have the option to have whatever sound source I want [...]]]></description>
			<content:encoded><![CDATA[<p>Low Latency Network Audio was a dream for the past years (see an article of <a href="../2005/05/12/another-nerd-wish-low-latency-network-audio/" target="_blank">2005</a> and <a href="../2008/09/01/i-finally-got-my-low-latency-network-audio-solution/" target="_blank">2008</a>) and with AirPlay it&#8217;s finally there.</p>
<p>I am using the Apple AirPlay technology for several years now&#8230; after it got implemented into iOS it&#8217;s just fantastic to have the option to have whatever sound source I want to playing loud and clear in any room I want to&#8230;</p>
<p>Okay it&#8217;s not quite as sophisticated as the sonos solution regarding the control of multiple music sources in multiple rooms but it get&#8217;s the job done in an apartment.</p>
<p>So back to the topic: Apple integrated the AirPlay technology into their wireless base station &#8220;AirPort Express&#8221;. Basically AirPlay is a piece of software which receives an encrypted audio stream over the network and outputs the stream to the SPDIF or audio jack.</p>
<p><a href="http://www.schrankmonster.de/wp-content/uploads/2011/04/overview_express_20080618.png"><img class="aligncenter size-medium wp-image-7560" title="overview_express_20080618" src="http://www.schrankmonster.de/wp-content/uploads/2011/04/overview_express_20080618-224x300.png" alt="" width="224" height="300" /></a></p>
<p>Back in 2005 there already was an emulator of this protocol called &#8220;Fairport&#8221; but Apple decided to encrypt the AirPlay traffic. This led to the problem that the encryption key was unkown because it&#8217;s baked into the AirPort Express firmware. And this is where the good news start:</p>
<p><em>&#8220;My girlfriend moved house, and her Airport Express no longer made it with her wireless access point. I figured it&#8217;d be easy to find an ApEx emulator &#8211; there are several open source apps out there to play to them. However, I was disappointed to find that Apple used a public-key crypto scheme, and there&#8217;s a private key hiding inside the ApEx. So I took it apart (I still have scars from opening the glued case!), dumped the ROM, and reverse engineered the keys out of it.&#8221;</em></p>
<p>So to keep things short: Someone got an AirPort Express, dumped the firmware, extracted the AirPlay encryption keys and wrote an emulator of the AirPlay protocol which uses the key. Voilá!</p>
<p>ShairPort is available in source code on the site of the guy and obviously it&#8217;s unsure if Apple will react by changing the encryption key in the future. But for the time being it works as advertised:</p>
<p>I took one of my computers and followed the instructions to update perl, install Macports and then run ShairPort. So when ShairPort is run it looks not as appealing as expected:</p>
<p style="text-align: center;"><a href="http://www.schrankmonster.de/wp-content/uploads/2011/04/Bildschirmfoto-2011-04-19-um-19.24.58.png" target="_blank"><img class="aligncenter size-medium wp-image-7562" title="Bildschirmfoto 2011-04-19 um 19.24.58" src="http://www.schrankmonster.de/wp-content/uploads/2011/04/Bildschirmfoto-2011-04-19-um-19.24.58-300x156.png" alt="" width="300" height="156" /></a></p>
<p>Notably  it uses IPv6 to communicate between iTunes and ShairPort&#8230; Oh I almost forgot to show how it looks in iTunes:</p>
<p><a href="http://www.schrankmonster.de/wp-content/uploads/2011/04/Bildschirmfoto-2011-04-19-um-19.25.06.png"><img class="aligncenter size-full wp-image-7563" title="Bildschirmfoto 2011-04-19 um 19.25.06" src="http://www.schrankmonster.de/wp-content/uploads/2011/04/Bildschirmfoto-2011-04-19-um-19.25.06.png" alt="" width="207" height="121" /></a></p>
<p>On another side note: It works on Linux, Windows and Mac OS X <img src='http://www.schrankmonster.de/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Source 1: <a title="Apple AirPlay" href="http://www.apple.com/itunes/airplay/" target="_blank">Apple AirPlay<br />
</a>Source 2: <a title="Sonos" href="http://www.sonos.com" target="_blank">Sonos</a><br />
Source 3: <a title="Apple AirPort Express" href="http://www.apple.com/de/airportexpress/" target="_blank">Apple AirPort Express</a><br />
Source 4: <a title="ShairPort" href="http://mafipulation.org/blagoblig/2011/04/08#shairport" target="_blank">ShairPort</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2011/04/19/shairport-someone-reversed-an-airport-express/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>hacs is getting the first UI elements</title>
		<link>http://www.schrankmonster.de/2011/01/02/hacs-is-getting-the-first-ui-elements/</link>
		<comments>http://www.schrankmonster.de/2011/01/02/hacs-is-getting-the-first-ui-elements/#comments</comments>
		<pubDate>Sun, 02 Jan 2011 00:07:19 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[hack-the-planet]]></category>
		<category><![CDATA[hacs]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2011/01/02/hacs-is-getting-the-first-ui-elements/</guid>
		<description><![CDATA[I’ve worked on my little holiday project for a while now and it’s making great progress. Since logging is working for almost two weeks now I got some data that should be visualized. One main goal of the project is to have&#160; a great UI to browse the sensor data. So almost two weeks into [...]]]></description>
			<content:encoded><![CDATA[<p>I’ve worked on my little holiday project for a while now and it’s making great progress. Since logging is working for almost two weeks now I got some data that should be visualized. One main goal of the project is to have&#160; a great UI to browse the sensor data.</p>
<p>So almost two weeks into the project I’ve started to learn JavaScript <img style="border-bottom-style: none; border-right-style: none; border-top-style: none; border-left-style: none" class="wlEmoticon wlEmoticon-smile" alt="Smiley" src="http://www.schrankmonster.de/wp-content/uploads/2011/01/wlEmoticon-smile.png" />&#160;</p>
<p>The logging server now included an internal http server which serves some pages and RESTful services already. One of those services is the sensor data service which can be asked to output JSON formatted sensor data. If you take that data using jQuery and the flot jQuery plugin you’ll get something like that:</p>
<div style="padding-bottom: 0px; padding-left: 0px; width: 448px; padding-right: 0px; display: block; float: none; margin-left: auto; margin-right: auto; padding-top: 0px" id="scid:5737277B-5D6D-4f48-ABFC-DD9C333F4C5D:cf277b65-43d6-4b72-8242-b0c2c5c5a384" class="wlWriterEditableSmartContent">
<div><object width="448" height="252"><param name="movie" value="http://www.youtube.com/v/RlTQrVmdzmc?hl=en&amp;hd=1"></param><embed src="http://www.youtube.com/v/RlTQrVmdzmc?hl=en&amp;hd=1" type="application/x-shockwave-flash" width="448" height="252"></embed></object></div>
<div style="width:448px;clear:both;font-size:.8em">jQuery and flot based hacs UI</div>
</div>
<p align="center">
<p>Source: <a href="http://github.com/bietiekay/hacs">http://github.com/bietiekay/hacs</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2011/01/02/hacs-is-getting-the-first-ui-elements/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>h.a.c.s. milestone 0&#8211;in need of a backup tool</title>
		<link>http://www.schrankmonster.de/2010/12/21/h-a-c-s-milestone-0in-need-of-a-backup-tool/</link>
		<comments>http://www.schrankmonster.de/2010/12/21/h-a-c-s-milestone-0in-need-of-a-backup-tool/#comments</comments>
		<pubDate>Mon, 20 Dec 2010 23:11:09 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[hack-the-planet]]></category>
		<category><![CDATA[hacs]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2010/12/21/h-a-c-s-milestone-0in-need-of-a-backup-tool/</guid>
		<description><![CDATA[This EzControl XS1 device is a complex thing. And currently I am playing with more than 10 sensors and more than 10 actuators. Since poking around with such a device will most certainly lead to a condition where that configuration might get lost (like a power down for more than 30 minutes). Therefore I was [...]]]></description>
			<content:encoded><![CDATA[<p>This EzControl XS1 device is a complex thing. And currently I am playing with more than 10 sensors and more than 10 actuators. Since poking around with such a device will most certainly lead to a condition where that configuration might get lost (like a power down for more than 30 minutes).</p>
<p align="center"><a href="http://www.schrankmonster.de/wp-content/uploads/2010/12/sensors.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="sensors" border="0" alt="sensors" src="http://www.schrankmonster.de/wp-content/uploads/2010/12/sensors_thumb.png" width="404" height="164" /></a></p>
<p>Therefore I was in need of a backup and restore tool. Because there isn’t one I had to write one myself. Here it is:</p>
<p align="center"><a href="http://www.schrankmonster.de/wp-content/uploads/2010/12/xs1-backup.png" target="_blank"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="xs1-backup" border="0" alt="xs1-backup" src="http://www.schrankmonster.de/wp-content/uploads/2010/12/xs1-backup_thumb.png" width="404" height="112" /></a>    <br />I can haz backup tool</p>
<p>My tool is available as opensource as part of the h.a.c.s. toolkit <a href="https://github.com/bietiekay/hacs/wiki/H.a.c.s.-toolkit" target="_blank">here.</a> Enjoy!</p>
<p>Source 1: <a title="https://github.com/bietiekay/hacs/wiki/H.a.c.s.-toolkit" href="https://github.com/bietiekay/hacs/wiki/H.a.c.s.-toolkit">https://github.com/bietiekay/hacs/wiki/H.a.c.s.-toolkit</a>    <br />Source 2: <a href="http://github.com/bietiekay/hacs/">http://github.com/bietiekay/hacs/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2010/12/21/h-a-c-s-milestone-0in-need-of-a-backup-tool/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>hacs hardware arrived</title>
		<link>http://www.schrankmonster.de/2010/12/15/hacs-hardware-arrived/</link>
		<comments>http://www.schrankmonster.de/2010/12/15/hacs-hardware-arrived/#comments</comments>
		<pubDate>Wed, 15 Dec 2010 09:03:03 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[hack-the-planet]]></category>
		<category><![CDATA[hacs]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2010/12/15/hacs-hardware-arrived/</guid>
		<description><![CDATA[My holiday project is progressing: Today it was hardware delivery day! So this is the hardware which is ready to be used: 1x EzControl XS1 controller 2x Temperature and Humidity sensor 8x Remote Power Switch The EzControl XS1 is easy to use as far as I had the time to give it a try. After [...]]]></description>
			<content:encoded><![CDATA[<p>My holiday project is progressing: Today it was hardware delivery day! </p>
<p>So this is the hardware which is ready to be used:</p>
<ul>
<li>1x EzControl XS1 controller </li>
<li>2x Temperature and Humidity sensor </li>
<li>8x Remote Power Switch </li>
</ul>
<p align="center"><a href="http://www.schrankmonster.de/wp-content/uploads/2010/12/IMG_5408_thumb4.jpg"><img style="background-image: none; border-bottom: 0px; border-left: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="IMG_5408_thumb4" border="0" alt="IMG_5408_thumb4" src="http://www.schrankmonster.de/wp-content/uploads/2010/12/IMG_5408_thumb4_thumb.jpg" width="204" height="271" /></a></p>
<p>The EzControl XS1 is easy to use as far as I had the time to give it a try. After the network setup the XS1 offers a simple web interface and REST service. Built upon that REST service there is also a configuration application and a visualization application available. Those two applications are apparently built using the GWT framework.</p>
<p align="center"><a href="http://www.schrankmonster.de/wp-content/uploads/2010/12/Bildschirmfoto-2010-12-13-um-21.24.02.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="Bildschirmfoto-2010-12-13-um-21.24.0[2]" border="0" alt="Bildschirmfoto-2010-12-13-um-21.24.0[2]" src="http://www.schrankmonster.de/wp-content/uploads/2010/12/Bildschirmfoto-2010-12-13-um-21.24.02_thumb.png" width="404" height="418" /></a></p>
<p align="center"><a href="http://www.schrankmonster.de/wp-content/uploads/2010/12/Bildschirmfoto-2010-12-13-um-21.44.1.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="Bildschirmfoto-2010-12-13-um-21.44.1" border="0" alt="Bildschirmfoto-2010-12-13-um-21.44.1" src="http://www.schrankmonster.de/wp-content/uploads/2010/12/Bildschirmfoto-2010-12-13-um-21.44.1_thumb.png" width="404" height="257" /></a></p>
<p align="left">I poked around a bit with the sensor and actor configuration screens and everything just worked. Those applications are great for the easy tasks. And for everything else hacs is what is going to be the tool of choice (to be written).</p>
<p>Source 1: <a href="http://www.ezcontrol.de">http://www.ezcontrol.de</a>     <br />Source 2: <a href="http://github.com/bietiekay/hacs">http://github.com/bietiekay/hacs</a>     <br />Source 3: <a title="http://code.google.com/intl/de-DE/webtoolkit/overview.html" href="http://code.google.com/intl/de-DE/webtoolkit/overview.html">http://code.google.com/intl/de-DE/webtoolkit/overview.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2010/12/15/hacs-hardware-arrived/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>my little home automation project has a home</title>
		<link>http://www.schrankmonster.de/2010/12/10/my-little-home-automation-project-has-a-home/</link>
		<comments>http://www.schrankmonster.de/2010/12/10/my-little-home-automation-project-has-a-home/#comments</comments>
		<pubDate>Fri, 10 Dec 2010 16:35:46 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[hack-the-planet]]></category>
		<category><![CDATA[hacs]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2010/12/10/my-little-home-automation-project-has-a-home/</guid>
		<description><![CDATA[Hurray! One of those EzControl XS1 plus some sensors and actors is on the way to me. So I can finally start the little holiday project which will be called “HACS” (Home Automation Control Server). The source code and documentation repository is up on GitHub as of now – you can access it here: https://github.com/bietiekay/hacs [...]]]></description>
			<content:encoded><![CDATA[<p>Hurray! One of those EzControl XS1 plus some sensors and actors is on the way to me. So I can finally start the little holiday project which will be called “HACS” (Home Automation Control Server). </p>
<p>The source code and documentation repository is up on GitHub as of now – you can access it here: <a title="https://github.com/bietiekay/hacs" href="https://github.com/bietiekay/hacs">https://github.com/bietiekay/hacs</a></p>
<p>If you are interested in working on that project – drop a comment.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2010/12/10/my-little-home-automation-project-has-a-home/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>winter 2011 hacking project: Home Automation</title>
		<link>http://www.schrankmonster.de/2010/10/03/winter-2011-hacking-project-home-automation/</link>
		<comments>http://www.schrankmonster.de/2010/10/03/winter-2011-hacking-project-home-automation/#comments</comments>
		<pubDate>Sun, 03 Oct 2010 11:39:38 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[hack-the-planet]]></category>
		<category><![CDATA[hacs]]></category>
		<category><![CDATA[networking]]></category>
		<category><![CDATA[rocket-science]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2010/10/03/winter-2011-hacking-project-home-automation/</guid>
		<description><![CDATA[In the last 10+ years I was fiddling with different home automation concepts. Mostly without broad use cases because at that time no one seemed to be interested in having sensors and actors like crazy at home. In fact not that many people seem to care these days. Having more and more hardware and software [...]]]></description>
			<content:encoded><![CDATA[<p>In the last 10+ years I was fiddling with different home automation concepts. Mostly without broad use cases because at that time no one seemed to be interested in having sensors and actors like crazy at home. In fact not that many people seem to care these days.</p>
<p>Having more and more hardware and software around us creates the use cases for a broader audience people like me have for 10+ years. Mainstream is a bitch for nerds <img class="wlEmoticon wlEmoticon-smile" style="border-style: none;" src="http://www.schrankmonster.de/wp-content/uploads/2010/10/wlEmoticon-smile.png" alt="Smiley" /></p>
<p>That said I found a nice plastic box I want to use in a winter project. This plastic box is called “EzControl XS1”. It comes with several visible and “invisible” interfaces.</p>
<p>The visible and obvious ones are: power, 100 mbit ethernet, sd card slot. So it takes some power and does something on the network. The not so obvious and therefore “invisible” interfaces are the most interesting ones: the EzControl XS1 comes with the ability to send and receive on 433 Mhz and 868 Mhz.</p>
<p><a href="http://www.ezcontrol.de" target="_blank"><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="ezcontrol_xs1-200" src="http://www.schrankmonster.de/wp-content/uploads/2010/10/ezcontrol_xs1-200.jpg" border="0" alt="ezcontrol_xs1-200" width="200" height="133" /></a></p>
<p>Yes that are the ranges used by switchable and dimable power sockets, temperature sensor and <a href="http://en.wikipedia.org/wiki/Automatic_meter_reading" target="_blank">AMR</a>. The EzControl XS1 is not that cheap (coming at 189 Euros for the base version and additional 65 Euros per upgrade option). I do not own one yet so it’s the plan to acquire at least one and start of with dimable power sockets and add more sensors and actors on the way</p>
<p>One great feature of the EzControl XS1 is the embedded WebServer with which the users application (the one I want to write) can interact using a HTTP/JSON Protocol. Oh dear: Sensor data and Actor control using JSON. How great is that!</p>
<p>There is some example code available (even a proprietary iPad/iPhone client) but since I want to have some custom features I do not currently see to be available in software I am going to write a set of tools which will get and protocol sensor data and run scripts to controls actors. Oh it’ll be all available as open source (license not yet chosen).</p>
<p>P.S.: If some one from Rose+Herleth is reading this and wants to help – send me a test unit <img class="wlEmoticon wlEmoticon-smile" style="border-style: none;" src="http://www.schrankmonster.de/wp-content/uploads/2010/10/wlEmoticon-smile.png" alt="Smiley" /></p>
<p>Source 1: <a href="http://www.ezcontrol.de">http://www.ezcontrol.de</a> (in german though)<br />
Source 2: <a title="http://en.wikipedia.org/wiki/Automatic_meter_reading" href="http://en.wikipedia.org/wiki/Automatic_meter_reading">http://en.wikipedia.org/wiki/Automatic_meter_reading</a><br />
Source 3: <a title="http://www.ezcontrol.de/content/view/12/31/" href="http://www.ezcontrol.de/content/view/12/31/">http://www.ezcontrol.de/content/view/12/31/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2010/10/03/winter-2011-hacking-project-home-automation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Want. To. Buy. :-)</title>
		<link>http://www.schrankmonster.de/2010/03/07/want-to-buy/</link>
		<comments>http://www.schrankmonster.de/2010/03/07/want-to-buy/#comments</comments>
		<pubDate>Sun, 07 Mar 2010 13:15:47 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[hack-the-planet]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Modding]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2010/03/07/want-to-buy/</guid>
		<description><![CDATA[Oh what a nice n3rd toy this would be. Rumors say it will be available soon for under $30. And for those who right now think: “What the hell is this?” – This is a coffee mug in the shape of a quite expensive canon lens. In fact I already heard of that idea more [...]]]></description>
			<content:encoded><![CDATA[<p>Oh what a nice n3rd toy this would be. Rumors say it will be available soon for under $30. And for those who right now think: “What the hell is this?” – This is a coffee mug in the shape of a quite expensive canon lens. In fact I already heard of that idea more than a year ago and <a href="http://www.schrankmonster.de/2008/09/30/if-it-would-be-produced-i-had-a-christmas-present-for-my-wife/" target="_blank">wrote about it here</a>. At this time there were only hopes that it would be produced. </p>
<p><a href="http://www.schrankmonster.de/wp-content/uploads/2010/03/canonlensmug.jpg" target="_blank"><img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="canonlensmug" border="0" alt="canonlensmug" src="http://www.schrankmonster.de/wp-content/uploads/2010/03/canonlensmug_thumb.jpg" width="270" height="404" /></a> </p>
<div style="padding-bottom: 0px; padding-left: 0px; width: 425px; padding-right: 0px; display: block; float: none; margin-left: auto; margin-right: auto; padding-top: 0px" id="scid:5737277B-5D6D-4f48-ABFC-DD9C333F4C5D:85c89039-b09e-464b-83f9-e480b65bbab9" class="wlWriterEditableSmartContent">
<div><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/3DMPy5glcTY&amp;hl=de_DE&amp;fs=1&amp;&amp;hl=en"></param><embed src="http://www.youtube.com/v/3DMPy5glcTY&amp;hl=de_DE&amp;fs=1&amp;&amp;hl=en" type="application/x-shockwave-flash" width="425" height="355"></embed></object></div>
</div>
<p>&#160;</p>
<p>Source: <a title="http://www.petapixel.com/2010/03/06/canon-lens-mug-purchased-in-canada/" href="http://www.petapixel.com/2010/03/06/canon-lens-mug-purchased-in-canada/">http://www.petapixel.com/2010/03/06/canon-lens-mug-purchased-in-canada/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2010/03/07/want-to-buy/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>developing a command line interface for the sones GraphDB</title>
		<link>http://www.schrankmonster.de/2010/01/14/developing-a-command-line-interface-for-the-sones-graphdb/</link>
		<comments>http://www.schrankmonster.de/2010/01/14/developing-a-command-line-interface-for-the-sones-graphdb/#comments</comments>
		<pubDate>Thu, 14 Jan 2010 17:12:06 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Employer]]></category>
		<category><![CDATA[hack-the-planet]]></category>
		<category><![CDATA[sones]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2010/01/14/developing-a-command-line-interface-for-the-sones-graphdb/</guid>
		<description><![CDATA[As you may know, my team and I are developing a graph database. A graph database is a database which is able to handle such things as the following: social graph So instead of tables with rows and columns, a graph database concentrates on objects and the connections between them and is therefore forming a [...]]]></description>
			<content:encoded><![CDATA[<p>As you may know, my team and I are developing a graph database. A graph database is a database which is able to handle such things as the following:</p>
<p align="center"><a href="http://en.wikipedia.org/wiki/Social_graph" target="_blank"><img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="510px-Sna_large" border="0" alt="510px-Sna_large" src="http://www.schrankmonster.de/wp-content/uploads/2010/01/510pxSna_large.png" width="341" height="400" /></a><a href="http://en.wikipedia.org/wiki/Social_graph" target="_blank">social graph</a></p>
<p>So instead of tables with rows and columns, a graph database concentrates on objects and the connections between them and is therefore forming a graph which can be queried, traversed, whatever-you-might-want-to-do.</p>
<p>Lately more and more companies start realizing that their demand for storing unstructured data is growing. Reflecting on unstructured data, I always think of data which cannot single-handedly be mapped in columns and rows (e.g. tables). Normally complex relations between data are represented in relation-tables only containing this relational information. The complexity to query these data structures is humongous as the table based database needs to ‘calculate’ (JOINs, …) the relations every time they are queried. Even though modern databases cache these calculations the costs in terms of memory and cpu time are huge. </p>
<p>Graph databases more or less try to represent this graph of objects and edges (as the relations are called there) as native as possible. The sones GraphDB we have been working on for the last 5 years does exactly that: It stores and queries a data structure which represents a graph of objects. Our approach is to give the user a simple and easy to learn query language and handle all the object storage and object management tasks in a fully blown object oriented graph database developed from the scratch.</p>
<p>Since not everybody seems to have heard of graph databases, we thought it might be a good idea to lower barriers by providing personalized test instances. Everyone can get one of these without the need to install anything – a working AJAX/Javascript compatible browser will suit all needs. (<a href="http://www.sones.com/partner?p_p_id=2_WAR_LiSi&amp;p_p_lifecycle=0&amp;p_p_state=normal&amp;p_p_mode=view&amp;p_p_col_id=column-2&amp;p_p_col_count=1&amp;_2_WAR_LiSi_struts_action=%2Fnetwork%2Fadd_user&amp;_2_WAR_LiSi_regType=Tester&amp;_2_WAR_LiSi_redirect=/partner" target="_blank">get your instance here.</a>)</p>
<p align="justify">
<p>Of course the user can choose between different ways to access the database test instance (like SOAP and REST) but the one we just released only needs a browser.</p>
<p><a href="http://www.schrankmonster.de/wp-content/uploads/2010/01/standard_cli.png" target="_blank"><img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="standard_cli" border="0" alt="standard_cli" src="http://www.schrankmonster.de/wp-content/uploads/2010/01/standard_cli_thumb.png" width="404" height="173" /></a> </p>
<p>The sones GraphDB WebShell – as we call it – resembles a command line interface. The user can type a query and it is instantly executed on the database server and the results are presented in either a xml, json or text format. </p>
<p><a href="http://www.schrankmonster.de/wp-content/uploads/2010/01/graphdbwebshell.png" target="_blank"><img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="graphdb-webshell" border="0" alt="graphdb-webshell" src="http://www.schrankmonster.de/wp-content/uploads/2010/01/graphdbwebshell_thumb.png" width="404" height="220" /></a> </p>
<p align="justify">Granted – the interested user needs to know about the query language and the possible usage scenarios. Everyone can access a <a href="http://developers.sones.de/wp-content/uploads/2009/11/graphDB-Query-Language-Syntax-Documentation-english.pdf" target="_blank">long</a> and a <a href="http://developers.sones.de/wp-content/uploads/2010/01/sonesGQLcheatsheet_13012010.pdf" target="_blank">short documentation here.</a></p>
<p>Source 1: <a title="http://en.wikipedia.org/wiki/Social_graph" href="http://en.wikipedia.org/wiki/Social_graph">http://en.wikipedia.org/wiki/Social_graph</a>     <br />Source 2: <a href="http://www.sones.com">http://www.sones.com</a>     <br />Source 3: <a href="http://developers.sones.de/wp-content/uploads/2009/11/graphDB-Query-Language-Syntax-Documentation-english.pdf" target="_blank">Long documentation</a>     <br />Source 4: <a href="http://developers.sones.de/wp-content/uploads/2010/01/sonesGQLcheatsheet_13012010.pdf" target="_blank">Short documentation</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2010/01/14/developing-a-command-line-interface-for-the-sones-graphdb/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>So what exactly is Microsoft Research doing?</title>
		<link>http://www.schrankmonster.de/2009/11/11/so-what-exactly-is-microsoft-research-doing/</link>
		<comments>http://www.schrankmonster.de/2009/11/11/so-what-exactly-is-microsoft-research-doing/#comments</comments>
		<pubDate>Wed, 11 Nov 2009 09:23:07 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Employer]]></category>
		<category><![CDATA[graphics]]></category>
		<category><![CDATA[hack-the-planet]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Research]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2009/11/11/so-what-exactly-is-microsoft-research-doing/</guid>
		<description><![CDATA[I am proud to anounce that there’s a video publicly available which shows parts and projects Microsoft Research is working on currently. It’s great to see theses projects, concepts and ideas become publicly available one by one: “Craig Mundie, chief research and strategy officer of Microsoft, presents “Rethinking Computing,” a look a how software and [...]]]></description>
			<content:encoded><![CDATA[<p>I am proud to anounce that there’s a video publicly available which shows parts and projects Microsoft Research is working on currently. It’s great to see theses projects, concepts and ideas become publicly available one by one:</p>
<p>“Craig Mundie, chief research and strategy officer of Microsoft, presents “Rethinking Computing,” a look a how software and information technology can help solve the most pressing global challenges we face today. Part of UW’s Computer Science and Engineering’s Distinguished Lecture Series, Mundie demonstrates a number of current and future-looking technologies that show how computer science is changing scientific exploration and discovery in exciting ways. He discusses the role of new science in solving the global energy crisis, and answer questions from the audience.”</p>
<p><a href="http://www.uwtv.org/programs/displayevent.aspx?rID=30363&amp;fID=6021" target="_blank"><img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="uwtv" border="0" alt="uwtv" src="http://www.schrankmonster.de/wp-content/uploads/2009/11/uwtv.png" width="404" height="280" /></a></p>
<p>Source: <a title="http://www.uwtv.org/programs/displayevent.aspx?rID=30363&amp;fID=6021" href="http://www.uwtv.org/programs/displayevent.aspx?rID=30363&amp;fID=6021">http://www.uwtv.org/programs/displayevent.aspx?rID=30363&amp;fID=6021</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2009/11/11/so-what-exactly-is-microsoft-research-doing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>dasBlog to WordPress migration</title>
		<link>http://www.schrankmonster.de/2009/09/22/dasblog-to-wordpress-migration/</link>
		<comments>http://www.schrankmonster.de/2009/09/22/dasblog-to-wordpress-migration/#comments</comments>
		<pubDate>Tue, 22 Sep 2009 14:07:35 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[hack-the-planet]]></category>
		<category><![CDATA[Modding]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2009/09/22/dasblog-to-wordpress-migration/</guid>
		<description><![CDATA[If you – like me – want to migrate from dasBlog to WordPress by using the great BlogML Export and Import you might want to take this advice: After exporting the BlogML you should replace all “&#38;nbsp;”s in the XML file. If you don’t do that WordPress won’t import anything in the article after the [...]]]></description>
			<content:encoded><![CDATA[<p>If you – like me – want to migrate from dasBlog to WordPress by using the great BlogML Export and Import you might want to take this advice:</p>
<p>After exporting the BlogML you should replace all “&amp;nbsp;”s in the XML file. If you don’t do that WordPress won’t import anything in the article after the “&amp;nbsp;&quot;s.</p>
<p><a href="http://www.schrankmonster.de/wp-content/uploads/2009/09/andnbsp.png" target="_blank"><img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="andnbsp" border="0" alt="andnbsp" src="http://www.schrankmonster.de/wp-content/uploads/2009/09/andnbsp_thumb.png" width="404" height="233" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2009/09/22/dasblog-to-wordpress-migration/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Welcome to the world of tomorrow!</title>
		<link>http://www.schrankmonster.de/2009/09/20/welcome-to-the-world-of-tomorrow/</link>
		<comments>http://www.schrankmonster.de/2009/09/20/welcome-to-the-world-of-tomorrow/#comments</comments>
		<pubDate>Sat, 19 Sep 2009 23:18:22 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Blog-o-Sphere]]></category>
		<category><![CDATA[hack-the-planet]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[private]]></category>
		<category><![CDATA[Reallife]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2009/09/20/welcome-to-the-world-of-tomorrow/</guid>
		<description><![CDATA[So here we are on a new blog engine. It took me the better part of two days to do the Migration of 2,869 posts and 2,732 comments, a lot of pictures and movie files. I will write an article on this but for now only two captures images from the migration: yeah PHP rocks! [...]]]></description>
			<content:encoded><![CDATA[<p>So here we are on a new blog engine. It took me the better part of two days to do the Migration of 2,869 posts and 2,732 comments, a lot of pictures and movie files.</p>
<p>I will write an article on this but for now only two captures images from the migration:</p>
<p align="center"><a href="http://www.schrankmonster.de/wp-content/uploads/2009/09/phpxpath.png" target="_blank"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="php-xpath" border="0" alt="php-xpath" src="http://www.schrankmonster.de/wp-content/uploads/2009/09/phpxpath_thumb.png" width="404" height="148" /></a>     <br />yeah PHP rocks!</p>
<p align="center"><a href="http://www.schrankmonster.de/wp-content/uploads/2009/09/regexmagic.png" target="_blank"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="regex-magic" border="0" alt="regex-magic" src="http://www.schrankmonster.de/wp-content/uploads/2009/09/regexmagic_thumb.png" width="404" height="317" /></a>&#160; <br />had to do some regex action to do the url rewrites</p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2009/09/20/welcome-to-the-world-of-tomorrow/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>In case of low performance: check your systems latency</title>
		<link>http://www.schrankmonster.de/2009/09/08/in-case-of-low-performance-check-your-systems-latency/</link>
		<comments>http://www.schrankmonster.de/2009/09/08/in-case-of-low-performance-check-your-systems-latency/#comments</comments>
		<pubDate>Tue, 08 Sep 2009 12:37:10 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[hack-the-planet]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2009/09/08/InCaseOfLowPerformanceCheckYourSystemsLatency.aspx</guid>
		<description><![CDATA[I ran into some strange problems with a notebook that leaded to sound drop-outs or things like sluggish UI and HDD performance. So I tried almost everything troubleshootig the problem. That worked for some problems but there are occasions when I want to have a more systematic approach to those kinds of hardware / driver [...]]]></description>
			<content:encoded><![CDATA[<p>I ran into some strange problems with a notebook that leaded to sound drop-outs or things like sluggish UI and HDD performance. So I tried almost everything troubleshootig the problem. That worked for some problems but there are occasions when I want to have a more systematic approach to those kinds of hardware / driver related problems.</p>
<p>One tool that can help to find hardware / driver problems is the DPC Latency Checker. This tool measures and displays the latency of your system. All you have to do is watch as the measurements scroll by and remove / disable one device after another from your machine. As soon as the latency turns green again there’s a high probability that the device you removed last has a problem of some kind.</p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/Incaseoflowperformancecheckyoursystemsla_CD85/dpclatency.png" target="_blank"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="dpclatency" border="0" alt="dpclatency" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/Incaseoflowperformancecheckyoursystemsla_CD85/dpclatency_thumb.png" width="400" height="339" /></a> </p>
<p>On my machine everything is in the greens now – after some BIOS and driver updates. If your system has some issues you would see something like that:</p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/Incaseoflowperformancecheckyoursystemsla_CD85/cdrom_2.png" target="_blank"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="cdrom" border="0" alt="cdrom" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/Incaseoflowperformancecheckyoursystemsla_CD85/cdrom_thumb.png" width="404" height="318" /></a>&#160; <br />(courtesy of <a href="http://gnawgnu.blogspot.com/2009/01/dell-latitude-e6400-sound-problem-fixed.html" target="_blank">Gnawgnu’s Realm</a>)</p>
<p>Source 1: <a title="http://www.thesycon.de/deu/latency_check.shtml" href="http://www.thesycon.de/deu/latency_check.shtml">http://www.thesycon.de/deu/latency_check.shtml</a>    <br />Source 2: <a title="http://gnawgnu.blogspot.com/2009/01/dell-latitude-e6400-sound-problem-fixed.html" href="http://gnawgnu.blogspot.com/2009/01/dell-latitude-e6400-sound-problem-fixed.html">http://gnawgnu.blogspot.com/2009/01/dell-latitude-e6400-sound-problem-fixed.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2009/09/08/in-case-of-low-performance-check-your-systems-latency/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>massive parallel computing with FPGAs</title>
		<link>http://www.schrankmonster.de/2009/08/25/massive-parallel-computing-with-fpgas/</link>
		<comments>http://www.schrankmonster.de/2009/08/25/massive-parallel-computing-with-fpgas/#comments</comments>
		<pubDate>Tue, 25 Aug 2009 13:07:04 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[hack-the-planet]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[sones]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2009/08/25/massiveParallelComputingWithFPGAs.aspx</guid>
		<description><![CDATA[Today we had a great meeting with SciEngines. These guys offer a great platform for everything that needs massive parallelism and IO bandwidth scalability. They even brought a small copacobana cluster to our headquater. Source: http://www.sciengines.com]]></description>
			<content:encoded><![CDATA[<p> Today we had a great meeting with SciEngines. These guys offer a great platform for everything that needs massive parallelism and IO bandwidth scalability. They even brought a small <a href="http://www.sciengines.com/productscopacobanarev3.shtml" target="_blank">copacobana</a> cluster to our headquater.</p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/massiveparallelcomputingwithFPGAs_D485/IMG_0045.jpg" target="_blank"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="IMG_0045" border="0" alt="IMG_0045" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/massiveparallelcomputingwithFPGAs_D485/IMG_0045_thumb.jpg" width="404" height="304" /></a></p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/massiveparallelcomputingwithFPGAs_D485/IMG_0044.jpg" target="_blank"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="IMG_0044" border="0" alt="IMG_0044" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/massiveparallelcomputingwithFPGAs_D485/IMG_0044_thumb.jpg" width="404" height="304" /></a> </p>
<p>Source: <a href="http://www.sciengines.com">http://www.sciengines.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2009/08/25/massive-parallel-computing-with-fpgas/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>the .NET Framework sourcecode release and how to unpack it…</title>
		<link>http://www.schrankmonster.de/2009/08/06/the-net-framework-sourcecode-release-and-how-to-unpack-it%e2%80%a6/</link>
		<comments>http://www.schrankmonster.de/2009/08/06/the-net-framework-sourcecode-release-and-how-to-unpack-it%e2%80%a6/#comments</comments>
		<pubDate>Thu, 06 Aug 2009 15:55:34 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[hack-the-planet]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2009/08/06/theNETFrameworkSourcecodeReleaseAndHowToUnpackIt.aspx</guid>
		<description><![CDATA[It’s great to finally have the .NET sourcecode for debugging purposes – inconveniently it’s in a format you might have your difficulties just browsing along. A little tool is here to help! After you installed, let’s say the WCF sourcecode and debug symbols you get a directory structure similar to this: This source.zip.tmp file holds [...]]]></description>
			<content:encoded><![CDATA[<p>It’s great to finally have the .NET sourcecode for debugging purposes – inconveniently it’s in a format you might have your difficulties just browsing along. A little tool is here to help!</p>
<p>After you installed, let’s say the WCF sourcecode and debug symbols you get a directory structure similar to this:</p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/the.NETFrameworksourcecodereleaseandhowt_F9E8/wcfsource.png" target="_blank"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="wcfsource" border="0" alt="wcfsource" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/the.NETFrameworksourcecodereleaseandhowt_F9E8/wcfsource_thumb.png" width="404" height="52" /></a> </p>
<p align="left">This source.zip.tmp file holds the whole sourcecode as one big package. It can’t be unpacked – even one would suggest that by just looking at that .zip ending in the name of the file.</p>
<p align="left">Instead this is a plain-text file of a certain yet simple format. I wrote me a little tool to unpack this file into it’s original files and directories. </p>
<p align="left">You can get the little tool, including sourcecode, here: <a href="http://www.schrankmonster.de/content/binary/UnpackMSSources.zip" target="_blank">UnpackMSSources.zip</a></p>
<p>To start the magic, you would like to go to the command line and start the tool with two parameters. Parameter 1 is the path and filename of the source.zip.tmp file. Parameter 2 is the part of the Path that needs to be cut-off. For the WCF Sources it’s “<em>/DEVDIV/depot/DevDiv/releases/Orcas/SP/ndp/cdf/src/</em>” for example.</p>
<p>The tool will then start to whirl through the file and extract all the files it founds into directories it’s creating along the way. After some seconds you would end with a directory tree like this:</p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/the.NETFrameworksourcecodereleaseandhowt_F9E8/unpacked.png" target="_blank"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="unpacked" border="0" alt="unpacked" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/the.NETFrameworksourcecodereleaseandhowt_F9E8/unpacked_thumb.png" width="181" height="404" /></a> </p>
<p align="left">Have fun!</p>
<p>Source 1: <a title="http://referencesource.microsoft.com/netframework.aspx" href="http://referencesource.microsoft.com/netframework.aspx">http://referencesource.microsoft.com/netframework.aspx</a>    <br />Source 2: <a title="http://www.schrankmonster.de/content/binary/UnpackMSSources.zip" href="http://www.schrankmonster.de/content/binary/UnpackMSSources.zip">http://www.schrankmonster.de/content/binary/UnpackMSSources.zip</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2009/08/06/the-net-framework-sourcecode-release-and-how-to-unpack-it%e2%80%a6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Society for Geek Advancement</title>
		<link>http://www.schrankmonster.de/2009/05/22/society-for-geek-advancement/</link>
		<comments>http://www.schrankmonster.de/2009/05/22/society-for-geek-advancement/#comments</comments>
		<pubDate>Fri, 22 May 2009 08:22:14 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[hack-the-planet]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Research]]></category>
		<category><![CDATA[Riot]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2009/05/22/SocietyForGeekAdvancement.aspx</guid>
		<description><![CDATA[“&#8221;Being a geek means being so interested in something that you don’t care whether or not it’s cool.&#8221; THE SOCIETY FOR GEEK ADVANCEMENT was founded upon the principles that we should all embrace our inner and outer geek and have fun while doing it. As individuals who love learning, innovating and believe in possibility as [...]]]></description>
			<content:encoded><![CDATA[<p><em>“&#8221;Being a geek means being so interested in something that you don’t care whether or not it’s cool.&#8221;</em></p>
<p><em>THE SOCIETY FOR GEEK ADVANCEMENT was founded upon the principles that we should all embrace our inner and outer geek and have fun while doing it. As individuals who love learning, innovating and believe in possibility as well as change, the second step of responsibility is to “be the geek that keeps on giving”. As a member of SGA, we work together as a global community to provide the tools and help others realize their true potential too!”</em></p>
<p align="center">
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:5737277B-5D6D-4f48-ABFC-DD9C333F4C5D:527d3df3-a9da-4c7e-900e-e447e56de554" class="wlWriterEditableSmartContent">
<div id="4bb207c6-3e51-4e1e-9971-dcb21653c666" style="margin: 0px; padding: 0px; display: inline;">
<div><a href="http://www.youtube.com/watch?v=rCq6E6tnQKg&#038;color1=0x3a3a3a&#038;color2=0x999999&#038;hl=en&#038;feature=player_embedded&#038;fs=1" target="_new"><img src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/SocietyforGeekAdvancement_9159/video0c15dfd6b3cd.jpg" style="border-style: none" galleryimg="no" onload="var downlevelDiv = document.getElementById('4bb207c6-3e51-4e1e-9971-dcb21653c666'); downlevelDiv.innerHTML = "
<div><object width=\"425\" height=\"355\"><param name=\"movie\" value=\"http://www.youtube.com/v/rCq6E6tnQKg&#038;color1=0x3a3a3a&#038;color2=0x999999&#038;hl=en&#038;feature=player_embedded&#038;fs=1&#038;hl=en\"><\/param><embed src=\"http://www.youtube.com/v/rCq6E6tnQKg&#038;color1=0x3a3a3a&#038;color2=0x999999&#038;hl=en&#038;feature=player_embedded&#038;fs=1&#038;hl=en\" type=\"application/x-shockwave-flash\" width=\"425\" height=\"355\"><\/embed><\/object><\/div>&#8220;;&#8221; alt=&#8221;"></a></div>
</div>
</div>
<p>Source: <a title="http://geekadvancement.com/" href="http://geekadvancement.com/">http://geekadvancement.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2009/05/22/society-for-geek-advancement/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rickrolled by bitsundso</title>
		<link>http://www.schrankmonster.de/2009/01/19/rickrolled-by-bitsundso/</link>
		<comments>http://www.schrankmonster.de/2009/01/19/rickrolled-by-bitsundso/#comments</comments>
		<pubDate>Mon, 19 Jan 2009 19:38:35 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Blog-o-Sphere]]></category>
		<category><![CDATA[hack-the-planet]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Riot]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2009/01/19/RickrolledByBitsundso.aspx</guid>
		<description><![CDATA[Oh dare you Timo Hetzel!]]></description>
			<content:encoded><![CDATA[<p align="center">Oh dare you Timo Hetzel!</p>
<p align="center"><a href="/content/binary/IMG012456143.JPG" target="_blank"><img title="rickrolled" style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" height="423" alt="rickrolled" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/Rickrolledbybitsundso_1220A/rickrolled_1.png" width="400" border="0" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2009/01/19/rickrolled-by-bitsundso/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>SPAM down 100%</title>
		<link>http://www.schrankmonster.de/2008/11/13/spam-down-100/</link>
		<comments>http://www.schrankmonster.de/2008/11/13/spam-down-100/#comments</comments>
		<pubDate>Thu, 13 Nov 2008 22:04:49 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[hack-the-planet]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Riot]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2008/11/13/SPAMDown100.aspx</guid>
		<description><![CDATA[Obviously the SPAM Provider whose internet access was cut off on wednesday (as reported by the Washington Post) Incoming mails is down from 4226 two days ago to 1663 today&#8230;giving a spam filter total of 0 false negatives (down from 1115 false negatives two days ago). Thank you, whoever you are, for cutting of that [...]]]></description>
			<content:encoded><![CDATA[<p>Obviously the SPAM Provider whose internet access was cut off on wednesday (as reported by the <a href="http://www.washingtonpost.com/wp-dyn/content/story/2008/11/12/ST2008111200662.html" target="_blank">Washington Post</a>)</p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/SPAMdown100_145A2/mail_spam_.png" target="_blank"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="281" alt="mail_spam_" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/SPAMdown100_145A2/mail_spam__thumb.png" width="172" border="0"></a></p>
<p align="left">Incoming mails is down from 4226 two days ago to 1663 today&#8230;giving a spam filter total of 0 false negatives (down from 1115 false negatives two days ago).</p>
<p align="left">Thank you, whoever you are, for cutting of that evil spam providing internet access provider!</p>
<p>Source: <a title="http://www.washingtonpost.com/wp-dyn/content/story/2008/11/12/ST2008111200662.html" href="http://www.washingtonpost.com/wp-dyn/content/story/2008/11/12/ST2008111200662.html">WashingtonPost</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2008/11/13/spam-down-100/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DIY Photo Frame (with a twist)</title>
		<link>http://www.schrankmonster.de/2008/11/11/diy-photo-frame-with-a-twist/</link>
		<comments>http://www.schrankmonster.de/2008/11/11/diy-photo-frame-with-a-twist/#comments</comments>
		<pubDate>Tue, 11 Nov 2008 20:57:09 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[graphics]]></category>
		<category><![CDATA[hack-the-planet]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2008/11/11/DIYPhotoFrameWithATwist.aspx</guid>
		<description><![CDATA[I got these two quite old Windows Mobile Professional phones (with touchscreen and everything) and beside the fact that they are my phones I am using them just to display my calendar entries on my desk. Now I thought it would be a great thing if those two QVGA devices would display personal pictures in [...]]]></description>
			<content:encoded><![CDATA[<p>I got these two quite old Windows Mobile Professional phones (with touchscreen and everything) and beside the fact that they are my phones I am using them just to display my calendar entries on my desk. Now I thought it would be a great thing if those two QVGA devices would display personal pictures in a slideshow.</p>
<p>And it would be even better if they would get their pictures from the internet. And even better if there would be an application that would allow me or my wife to upload/delete pictures from the slideshow playing on all devices.</p>
<p>Thought said, and done. I did a little afterwork project today, taking me approx. 3 hours with everything from scratch.</p>
<p>So I made these parts:</p>
<ol>
<li>a webservice to upload, delete and retrieve the pictures</p>
<p>This really is just a webservice very similar to the one I used in my DropBox application. It&#8217;s hosted on one of my machines and makes the pictures also available to the mobile clients.</li>
<li>an upload tool to upload, delete the pictures comfortably
<p>I took the DropBox Application and customized it &#8211; it now resizes the pictures automatically before uploading and it can display a preview in the file browser.</p>
<p><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/DIYPhotoFramewithatwist_13BFB/photoframe_upload_1.png" target="_blank"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="281" alt="photoframe_upload_1" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/DIYPhotoFramewithatwist_13BFB/photoframe_upload_1_thumb.png" width="357" border="0"></a> </p>
<p><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/DIYPhotoFramewithatwist_13BFB/photoframe_upload_2.png" target="_blank"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="281" alt="photoframe_upload_2" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/DIYPhotoFramewithatwist_13BFB/photoframe_upload_2_thumb.png" width="355" border="0"></a> </li>
<li>a small application running on my phones that displays this pictures using the webservice
<p>This one was made from scratch and consumes the webservice from above. It asks for the next picture URL, downloads this picture and displays it&#8230; and so on.</p>
<p><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/DIYPhotoFramewithatwist_13BFB/photoframe_app_1.png" target="_blank"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="281" alt="photoframe_app_1" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/DIYPhotoFramewithatwist_13BFB/photoframe_app_1_thumb.png" width="212" border="0"></a> <a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/DIYPhotoFramewithatwist_13BFB/photoframe_app_2.png" target="_blank"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="281" alt="photoframe_app_2" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/DIYPhotoFramewithatwist_13BFB/photoframe_app_2_thumb.png" width="213" border="0"></a> </li>
</ol>
<p>Since it&#8217;s already up and running and looking great on my desk I wanted to share it with you. Don&#8217;t expect everything to work out-of-the-box but it&#8217;s a start for everyone who wants to have something like this. Oh &#8211; of course your windows mobile device needs to have internet access&#8230; </p>
<p>So as usual here&#8217;s the sourcecode of the whole package for your pleasure. Use it where ever and in what ever whay you want as long as you&#8217;re crediting.</p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/PhotoFrame.zip">PhotoFrame.zip (639,87 KB)</a></p>
</p>
<p>P.S: There&#8217;s a fun fact I did not know: I accidently double-clicked the windows mobile application on my Vista machine and guess what: It just runs! Yes, manage Windows Mobile Application running natively on Windows Vista:</p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/DIYPhotoFramewithatwist_13BFB/funfact.png" target="_blank"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="277" alt="funfact" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/DIYPhotoFramewithatwist_13BFB/funfact_thumb.png" width="224" border="0"></a> </p>
</p>
<p>Source 1: <a href="http://www.schrankmonster.de/content/binary/PhotoFrame.zip">PhotoFrame.zip (639,87 KB)</a><br />Source 2: <a href="http://www.schrankmonster.de/PermaLink,guid,425bcc40-b026-4fd9-bd9b-02c61286970a.aspx" target="_blank">DropBox</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2008/11/11/diy-photo-frame-with-a-twist/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wie man &#8220;Schlag den Raab&#8221; schaut &#8211; ohne Werbung und ohne herumklicken</title>
		<link>http://www.schrankmonster.de/2008/11/02/wie-man-schlag-den-raab-schaut-ohne-werbung-und-ohne-herumklicken/</link>
		<comments>http://www.schrankmonster.de/2008/11/02/wie-man-schlag-den-raab-schaut-ohne-werbung-und-ohne-herumklicken/#comments</comments>
		<pubDate>Sun, 02 Nov 2008 16:26:51 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[hack-the-planet]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[makes-my-day]]></category>
		<category><![CDATA[TV]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2008/11/02/WieManSchlagDenRaabSchautOhneWerbungUndOhneHerumklicken.aspx</guid>
		<description><![CDATA[Hätte ich einen Fernseher wäre &#8220;Schlag den Raab&#8221; eine der wenigen Sendungen die ich mir glaube ich ab und an anschauen würde. Nun lief diese Sendung zum 13. Mal und ich dachte mir: Schaust du einmal nach ob das nicht im Internet als Stream angeboten wird. Wird es &#8211; und zwar von ProSieben selbst &#8211; [...]]]></description>
			<content:encoded><![CDATA[<p>Hätte ich einen Fernseher wäre &#8220;Schlag den Raab&#8221; eine der wenigen Sendungen die ich mir glaube ich ab und an anschauen würde. Nun lief diese Sendung zum 13. Mal und ich dachte mir: Schaust du einmal nach ob das nicht im Internet als Stream angeboten wird.</p>
<p>Wird es &#8211; und zwar von ProSieben selbst &#8211; als Flash On-Demand &#8220;auf-der-Webseite&#8221; Player. Und hauptsächlich als Notiz für spätere Sendungen an mich selbst hier mal kurz die Anleitung wie man sich die ganzen Einzelvideos von Schlag den Raab auf den heimischen Rechner zieht um sie ohne Werbeunterbrechung und ohne lästiges herumklicken durchaus auchmal auf dem ebenso heimischen Fernseher anschauen kann. Die Qualität reicht dabei so gerade bis kurz nach knapp aber durchaus schaubar.</p>
<p>Also &#8211; für mich und den geneigten Leser:</p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/WiemanSchlagdenRaabschautohneWerbungundo_FB27/schlag-denraab_2.png" target="_blank"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="230" alt="schlag-denraab" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/WiemanSchlagdenRaabschautohneWerbungundo_FB27/schlag-denraab_thumb.png" width="400" border="0"></a> </p>
<p align="left">Wie schon bei vorherigen Folgen der Sendung ist der vordere Teil der URL immer der gleiche, also http://videoplayer.prosieben.de/show_comedy/schlag_den_raab/flv/ &#8211; geändert wird jeweils das Jahr der Sendung &#8211; in diesem Fall 2008, der Monat &#8211; in diesem Fall 11 &#8211; und die Nummer der Sendung &#8211; in diesem Fall die 13. Danach kommt -00-01.flv bis -00-15.flv &#8211; wieviele Einzelteile das sind kann man auf der Webseite abzählen oder einfach probieren bis ein Notfound kommt. Einfach oder?</p>
<p align="left">Das ganze Zeug ist dann mit handelsüblichen Playern abspielbar und die Qualität ist wie schon gesagt nicht so schlecht für ein On-Demand Angebot der kostenlosen Sorte:</p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/WiemanSchlagdenRaabschautohneWerbungundo_FB27/schlagdenraab3.png" target="_blank"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="277" alt="schlagdenraab3" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/WiemanSchlagdenRaabschautohneWerbungundo_FB27/schlagdenraab3_thumb.png" width="270" border="0"></a> </p>
<p align="left">Der Platzverbrauch ist dann entsprechend auch bemerkenswert für ein On-Demand Angebot aber das ist ja nur von Vorteil:</p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/WiemanSchlagdenRaabschautohneWerbungundo_FB27/schlagdenraab2.png" target="_blank"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="277" alt="schlagdenraab2" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/WiemanSchlagdenRaabschautohneWerbungundo_FB27/schlagdenraab2_thumb.png" width="241" border="0"></a></p>
<p align="center">
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2008/11/02/wie-man-schlag-den-raab-schaut-ohne-werbung-und-ohne-herumklicken/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>DIY PMR Gateway</title>
		<link>http://www.schrankmonster.de/2008/10/19/diy-pmr-gateway/</link>
		<comments>http://www.schrankmonster.de/2008/10/19/diy-pmr-gateway/#comments</comments>
		<pubDate>Sun, 19 Oct 2008 20:15:30 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[freies Funknetz]]></category>
		<category><![CDATA[hack-the-planet]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Modding]]></category>
		<category><![CDATA[networking]]></category>
		<category><![CDATA[Radio]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2008/10/19/DIYPMRGateway.aspx</guid>
		<description><![CDATA[In my case it&#8217;s just partly do-it-yourself: Michael and Peter did the cable soldering and I wrote the software that controls the serial interface to the PMR sender/receiver. My gateway is on PMR channel 5 with no CTCSS configured in the Campus area of the TU-Ilmenau. A gateway is only just a PMR radio connected [...]]]></description>
			<content:encoded><![CDATA[<p>In my case it&#8217;s just partly do-it-yourself: Michael and Peter did the cable soldering and I wrote the software that controls the serial interface to the <a href="http://en.wikipedia.org/wiki/PMR446" target="_blank">PMR sender/receiver</a>.</p>
<p>My gateway is on PMR channel 5 with no CTCSS configured in the Campus area of the TU-Ilmenau. A gateway is only just a PMR radio connected to a PC which is logged into a Teamspeak server which is connected to several other gateways (citizen radio / PMR / &#8230;)</p>
<p>So if you talk within the range of my gateway you&#8217;ll be heard in more than 24 areas across germany over PMR and citizen radio.</p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/DIYPMRGateway_1421D/Capture.png" target="_blank"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="313" alt="Capture" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/DIYPMRGateway_1421D/Capture_thumb.png" width="404" border="0"></a> </p>
<p align="left">One toolset which was particularly useful is the VU-Meter tools. You can use them to monitor your input/output ports and tune them for perfect modulation. You can get them <a href="http://www.darkwood.demon.co.uk/PC/meter.html" target="_blank">here</a> and they look like this:</p>
<p align="center"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="147" alt="vumeter" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/DIYPMRGateway_1421D/vumeter_3.png" width="404" border="0"> </p>
<p align="left">Since the cable soldering was one piece of craftsmanship a picture of the radio and the cable:</p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/DIYPMRGateway_1421D/IMG_3316.jpg" target="_blank"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="281" alt="IMG_3316" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/DIYPMRGateway_1421D/IMG_3316_thumb.jpg" width="212" border="0"></a><br />the computer side of the interface</p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/DIYPMRGateway_1421D/IMG_3318.jpg" target="_blank"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="281" alt="IMG_3318" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/DIYPMRGateway_1421D/IMG_3318_thumb.jpg" width="373" border="0"></a>  <br />the radio side of the interface</p>
<p align="left">If you want to connect from outside the range of the PMR you should go to the homepage of <a href="http://www.freiesfunknetz.de/index.html" target="_blank">Freies Funknetz</a> and get all the necessary information there.</p>
<p>Source 1: <a title="http://www.darkwood.demon.co.uk/PC/meter.html" href="http://www.darkwood.demon.co.uk/PC/meter.html">http://www.darkwood.demon.co.uk/PC/meter.html</a><br />Source 2: <a title="http://en.wikipedia.org/wiki/PMR446" href="http://en.wikipedia.org/wiki/PMR446">http://en.wikipedia.org/wiki/PMR446</a><br />Source 3: <a title="http://www.freiesfunknetz.de/index.html" href="http://www.freiesfunknetz.de/index.html">http://www.freiesfunknetz.de/index.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2008/10/19/diy-pmr-gateway/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>When in need of an engine: built it yourself with Legos!</title>
		<link>http://www.schrankmonster.de/2008/10/04/when-in-need-of-an-engine-built-it-yourself-with-legos/</link>
		<comments>http://www.schrankmonster.de/2008/10/04/when-in-need-of-an-engine-built-it-yourself-with-legos/#comments</comments>
		<pubDate>Sat, 04 Oct 2008 19:40:43 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[hack-the-planet]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Modding]]></category>
		<category><![CDATA[Motorsport]]></category>
		<category><![CDATA[Research]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2008/10/04/WhenInNeedOfAnEngineBuiltItYourselfWithLegos.aspx</guid>
		<description><![CDATA[Someone built himself a (actually not working) modell of a V8 &#8211; infact if you click on the related videos in youTube you&#8217;ll find working ones&#8230; I never knew that this would be possible with lego&#8230; Source: http://hackedgadgets.com/2008/09/29/lego-v8-engine/Source 2: http://uk.youtube.com/watch?v=Z8ut5ND3agI]]></description>
			<content:encoded><![CDATA[<p>Someone built himself a (actually not working) modell of a V8 &#8211; infact if you click on the related videos in youTube you&#8217;ll find working ones&#8230; I never knew that this would be possible with lego&#8230;</p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/WheninneedofanenginebuiltityourselfwithL_14CFD/leog-engine%5B1%5D_4.jpg" target="_blank"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="281" alt="leog-engine[1]" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/WheninneedofanenginebuiltityourselfwithL_14CFD/leog-engine%5B1%5D_thumb_1.jpg" width="373" border="0"></a> </p>
<p>Source: <a title="http://hackedgadgets.com/2008/09/29/lego-v8-engine/" href="http://hackedgadgets.com/2008/09/29/lego-v8-engine/">http://hackedgadgets.com/2008/09/29/lego-v8-engine/</a><br />Source 2: <a title="http://uk.youtube.com/watch?v=Z8ut5ND3agI" href="http://uk.youtube.com/watch?v=Z8ut5ND3agI">http://uk.youtube.com/watch?v=Z8ut5ND3agI</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2008/10/04/when-in-need-of-an-engine-built-it-yourself-with-legos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>While&#8230;</title>
		<link>http://www.schrankmonster.de/2008/10/01/while/</link>
		<comments>http://www.schrankmonster.de/2008/10/01/while/#comments</comments>
		<pubDate>Wed, 01 Oct 2008 12:33:56 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[hack-the-planet]]></category>
		<category><![CDATA[quotes]]></category>
		<category><![CDATA[Riot]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2008/10/01/While.aspx</guid>
		<description><![CDATA[&#8220;While we moan about the world turning to slow, many people seem to moan about the world turning to fast.&#8221; (ahzf )]]></description>
			<content:encoded><![CDATA[<p align="center"><em><strong>&#8220;While we moan about the world turning to slow, </strong></em></p>
<p align="center"><em><strong>many people seem to moan about the world turning to fast.&#8221;</strong></em></p>
<p align="center">(ahzf <img src='http://www.schrankmonster.de/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> )</p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2008/10/01/while/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dye your life&#8230;</title>
		<link>http://www.schrankmonster.de/2008/09/28/dye-your-life/</link>
		<comments>http://www.schrankmonster.de/2008/09/28/dye-your-life/#comments</comments>
		<pubDate>Sun, 28 Sep 2008 13:07:12 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[hack-the-planet]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Modding]]></category>
		<category><![CDATA[Reallife]]></category>
		<category><![CDATA[sones]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2008/09/28/DyeYourLife.aspx</guid>
		<description><![CDATA[Some weeks ago I came across those cool color changing LED lamps made by Philips in a hardware store. It&#8217;s a mood light with a remote control &#8211; you can even control up to 6 lamps with one remote&#8230; Oh I really do think that several of these would be great in the new office [...]]]></description>
			<content:encoded><![CDATA[<p align="left">Some weeks ago I came across those cool color changing LED lamps made by Philips in a hardware store. It&#8217;s a mood light with a remote control &#8211; you can even control up to 6 lamps with one remote&#8230; Oh I really do think that several of these would be great in the new office or at home.</p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/Dyeyourlife_EA5E/livingcolors.png" target="_blank"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="281" alt="livingcolors" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/Dyeyourlife_EA5E/livingcolors_thumb.png" width="344" border="0"></a> </p>
<p>Source: <a title="http://www.lighting.philips.com/microsite/living_colors/" href="http://www.lighting.philips.com/microsite/living_colors/">http://www.lighting.philips.com/microsite/living_colors/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2008/09/28/dye-your-life/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Building Earth</title>
		<link>http://www.schrankmonster.de/2008/09/09/building-earth/</link>
		<comments>http://www.schrankmonster.de/2008/09/09/building-earth/#comments</comments>
		<pubDate>Tue, 09 Sep 2008 19:31:39 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[graphics]]></category>
		<category><![CDATA[hack-the-planet]]></category>
		<category><![CDATA[rocket-science]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2008/09/09/BuildingEarth.aspx</guid>
		<description><![CDATA[Steffi and I made our own version of earth some years ago using 3D Studio and NASA Images &#8211; we even made an animation. But this guy does a way better job &#8211; creating a photorealistic earth: &#8220;For some time now, I&#8217;ve been studying how to build Earth in Blender. I&#8217;ve read quite a few [...]]]></description>
			<content:encoded><![CDATA[<p align="left">Steffi and I made our own version of earth some years ago using 3D Studio and NASA Images &#8211; we even made an animation. But this guy does a way better job &#8211; creating a photorealistic earth:</p>
<p align="left"><em>&#8220;For some time now, I&#8217;ve been studying how to build Earth in Blender. I&#8217;ve read quite a few tutorials, studied NASA&#8217;s Blue Marble images, and received critique from other Blender enthusiasts. I now have some satisfactory results, which I&#8217;d be happy to share.</em></p>
<p><em>I&#8217;ve put together a 21-page tutorial which explains how I achieved my Earth renders. I know there are already a lot of Earth tutorials out there &#8211; but none that I found helped me get quite the effect that I wanted. My tutorial combines what I gleaned from all the other tutorials, with what I learned on my own through hours of experimenting. I&#8217;m sure it&#8217;s not perfect &#8211; but I think it will be helpful for anyone interested in the subject.</em>
<p><em>The tutorial focuses on three different models of Earth &#8211; a photographic-style Earth, a Blue-Marble-style Earth, and a night Earth. It demonstrates how to render details such as proper specular shading and ray-traced cloud shadows.&#8221;</em>
<p align="left">There&#8217;s a <a href="http://web.olp.net/wildernesslodge/Earth%20Tutorial.pdf" target="_blank">free pdf tutorial</a> available that shows how to create these 3D renderings with blender.
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/BuildingEarth_14ADE/Earth%20Poster_2.jpg" target="_blank"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="281" alt="Earth Poster" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/BuildingEarth_14ADE/Earth%20Poster_thumb.jpg" width="218" border="0"></a> </p>
<p>Source 1: <a title="http://chamberlinproductions.110mb.com/mappedearth.html" href="http://chamberlinproductions.110mb.com/mappedearth.html">http://chamberlinproductions.110mb.com/mappedearth.html</a><br />Source 2: <a href="http://www.schrankmonster.de/PermaLink,guid,948482c0-b1e0-4291-9a75-7c26923bf99e.aspx" target="_blank">&#8220;what&#8217;s the size of the earth compared to&#8221;</a><br />Source 3: <a title="http://web.olp.net/wildernesslodge/Earth%20Tutorial.pdf" href="http://web.olp.net/wildernesslodge/Earth%20Tutorial.pdf">http://web.olp.net/wildernesslodge/Earth%20Tutorial.pdf</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2008/09/09/building-earth/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I finally got my low latency network audio solution</title>
		<link>http://www.schrankmonster.de/2008/09/01/i-finally-got-my-low-latency-network-audio-solution/</link>
		<comments>http://www.schrankmonster.de/2008/09/01/i-finally-got-my-low-latency-network-audio-solution/#comments</comments>
		<pubDate>Mon, 01 Sep 2008 18:30:45 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[hack-the-planet]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Modding]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[networking]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2008/09/01/IFinallyGotMyLowLatencyNetworkAudioSolution.aspx</guid>
		<description><![CDATA[In May 2005 I wrote about a wish I had for years: &#8220;As usual I&#8217;ve got a very strange wish what nobody else seems to have on this planet. I have several computers of different platforms. And on one of this machines there are speakers attached&#8230;I want to have the possibility to output from any [...]]]></description>
			<content:encoded><![CDATA[<p>In May 2005 I wrote about a wish I had for years:</p>
<p><em>&#8220;As usual I&#8217;ve got a very strange wish what nobody else seems to have on this planet. I have several computers of different platforms. And on one of this machines there are speakers attached&#8230;I want to have the possibility to output from any of the machines to the speakers. And please loss-less and low latency!&#8221;</em></p>
<p>It took more than 3 years to fulfill this particular wish. But now it&#8217;s done. In 2005 I mentioned the Airfoil software that could run on MacOS X and forward sound from almost every application to an AirTunes compatible device. As it turns out Rogue Amoeba did their homework and created a free &#8220;Airfoil Speakers&#8221; application which can be used on Windows and MacOS X. </p>
<p>So the things are simple: Start the speaker application on a machine that is in the same network/subnet as the Airfoil master. The virtual speaker is then displayed on the master machine and you can assign a sound source from that machine to the speaker. Hmm&#8230; Simple Setup sample: One machine is in my kitchen (Windows XP machine) and one machine is on my desk &#8211; an iMac. In the kitchen only the speaker application is started and the iMac instantly &#8220;sees&#8221; the speaker. One click and the sound output of my desk machine is forwarded through the network to the kitchen&#8230; Easy and cool. One can think of any other combination of Speaker/Master application &#8211; even multiple speakers can be powered by one master&#8230;oh joy!</p>
<p>So here is what the master looks like:</p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/Ifinallygotmylowlatencynetworkaudiosolut_13C9A/airfoil_2.png" target="_blank"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="281" alt="airfoil" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/Ifinallygotmylowlatencynetworkaudiosolut_13C9A/airfoil_thumb.png" width="398" border="0"></a> </p>
<p align="left">and this is what it looks like on a client (speaker):</p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/Ifinallygotmylowlatencynetworkaudiosolut_13C9A/airfoil2.jpg" target="_blank"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="189" alt="airfoil2" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/Ifinallygotmylowlatencynetworkaudiosolut_13C9A/airfoil2_thumb.jpg" width="400" border="0"></a> </p>
<p>Source 1: <a title="http://www.schrankmonster.de/PermaLink,guid,23cebd7b-22be-47b3-bf81-c01324f639c8.aspx" href="http://www.schrankmonster.de/PermaLink,guid,23cebd7b-22be-47b3-bf81-c01324f639c8.aspx" target="_blank">nerd wish of 2005</a><br />Source 2: <a title="http://rogueamoeba.com/airfoil/" href="http://rogueamoeba.com/airfoil/">http://rogueamoeba.com/airfoil/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2008/09/01/i-finally-got-my-low-latency-network-audio-solution/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>das FeM Blog fest in Skripte-Hand</title>
		<link>http://www.schrankmonster.de/2008/08/26/das-fem-blog-fest-in-skripte-hand/</link>
		<comments>http://www.schrankmonster.de/2008/08/26/das-fem-blog-fest-in-skripte-hand/#comments</comments>
		<pubDate>Tue, 26 Aug 2008 19:53:40 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[FeM]]></category>
		<category><![CDATA[hack-the-planet]]></category>
		<category><![CDATA[Riot]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2008/08/26/dasFeMBlogFestInSkripteHand.aspx</guid>
		<description><![CDATA[Offenbar spielt da gerade ein von mir nicht zu verantwortendes Skript verrückt &#8211; Schrankmonster wird zur Zeit nämlich 1:1 schamlos kopiert Ich freue mich natürlich darüber und habe direkt mal die Google FeedAds eingeschaltet&#8230; P.S.: Bitte bau noch einer von den Blog Administratoren dass die Umlaute richtig übernommen werden &#8211; so ist das ja alles [...]]]></description>
			<content:encoded><![CDATA[<p>Offenbar spielt da gerade ein von mir nicht zu verantwortendes Skript verrückt &#8211; Schrankmonster wird zur Zeit nämlich 1:1 schamlos kopiert <img src='http://www.schrankmonster.de/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/dasFeMBlogfestinSkripteHand_AC3/femblog2_2.png" target="_blank"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="201" alt="femblog2" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/dasFeMBlogfestinSkripteHand_AC3/femblog2_thumb.png" width="404" border="0"></a> </p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/dasFeMBlogfestinSkripteHand_AC3/femblog_4.png" target="_blank"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="132" alt="femblog" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/dasFeMBlogfestinSkripteHand_AC3/femblog_thumb_1.png" width="404" border="0"></a> </p>
<p align="left">Ich freue mich natürlich darüber und habe direkt mal die Google FeedAds eingeschaltet&#8230;</p>
<p align="left">P.S.: Bitte bau noch einer von den Blog Administratoren dass die Umlaute richtig übernommen werden &#8211; so ist das ja alles nur halb so hübsch.</p>
<p align="left">Source: <a title="http://blog.fem.tu-ilmenau.de/" href="http://blog.fem.tu-ilmenau.de/">http://blog.fem.tu-ilmenau.de/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2008/08/26/das-fem-blog-fest-in-skripte-hand/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Fixing the bad bad mouse acceleration in Mac OS X</title>
		<link>http://www.schrankmonster.de/2008/08/24/fixing-the-bad-bad-mouse-acceleration-in-mac-os-x/</link>
		<comments>http://www.schrankmonster.de/2008/08/24/fixing-the-bad-bad-mouse-acceleration-in-mac-os-x/#comments</comments>
		<pubDate>Sun, 24 Aug 2008 16:07:40 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[hack-the-planet]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2008/08/24/FixingTheBadBadMouseAccelerationInMacOSX.aspx</guid>
		<description><![CDATA[I finally found a fix for the unspeakable mouse acceleration problem I have with MacOS X. It&#8217;s just a fact that Apple seems to have no idea how to do the mouse handling. Some people say it&#8217;s the mouse acceleration curve that apple got wrong: &#8220;As wonderful as Mac OS X is, it has a [...]]]></description>
			<content:encoded><![CDATA[<p>I finally found a fix for the unspeakable mouse acceleration problem I have with MacOS X. It&#8217;s just a fact that Apple seems to have no idea how to do the mouse handling. Some people say it&#8217;s the mouse acceleration curve that apple got wrong:</p>
<p><em>&#8220;As wonderful as Mac OS X is, it has a grave defect that can have an immediate adverse impact on the computer&#8217;s usability: the way it translates mouse motion into pointer movement. For many users, moving the mouse feels unnatural because of the peculiar way that Mac OS X performs that translation. In industry parlance, the translation is called the &#8220;mouse acceleration curve.&#8221; What is a mouse acceleration curve, and how is its implementation problematic under Mac OS X?&#8221;</em></p>
<p>It&#8217;s a problem I can live with but I am not happy. With Panther and Tiger I had a solution called <a href="http://www.schrankmonster.de/PermaLink,guid,8b2ce80e-edb1-4d9e-949b-c4fa78e91714.aspx" target="_blank">MacMiceCommand</a>. But with Leopard this solution stopped working and until I found this:</p>
<p><em>&#8220;This is a GUI version of </em><a href="http://www.knockknock.org.uk/mac/"><em>Richard Bentley&#8217;s MouseFix</em></a><em>. (i)MouseFix is a very simple program that will allow you to regain control of the mouse acceleration in Mac OS X. Both this web page and the program copies large parts from MouseFix because he says: &#8220;feel free to take the code and wrap a nice interface round it. Be nice and make it free for everyone to use though <img src='http://www.schrankmonster.de/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> &#8221;"</em></p>
<p>Source 1: <a href="http://db.tidbits.com/article/8893" target="_blank">mouse acceleration explained</a><br />Source 2: <a title="http://www.lavacat.com/iMouseFix/" href="http://www.lavacat.com/iMouseFix/">http://www.lavacat.com/iMouseFix/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2008/08/24/fixing-the-bad-bad-mouse-acceleration-in-mac-os-x/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Paper Replika: Wall-e, Eve and&#8230;</title>
		<link>http://www.schrankmonster.de/2008/08/18/paper-replika-wall-e-eve-and/</link>
		<comments>http://www.schrankmonster.de/2008/08/18/paper-replika-wall-e-eve-and/#comments</comments>
		<pubDate>Mon, 18 Aug 2008 14:05:58 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[graphics]]></category>
		<category><![CDATA[hack-the-planet]]></category>
		<category><![CDATA[Movies]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2008/08/18/PaperReplikaWalleEveAnd.aspx</guid>
		<description><![CDATA[&#8230;almost everything else. You&#8217;ll have to print it, fold it, glue it&#8230; and then it&#8217;ll eventually become: &#8220;WALL-E Paper Model. WALL -E (Waste Allocation Load Lifter Earth Class) is programmed to clean up the planet, one trash cube at a time. However, after 700 years he&#8217;s developed one little glitch, a personality. He&#8217;s extremly curious, [...]]]></description>
			<content:encoded><![CDATA[<p>&#8230;almost everything else. You&#8217;ll have to print it, fold it, glue it&#8230; and then it&#8217;ll eventually become:</p>
<p><em>&#8220;WALL-E Paper Model. WALL -E (Waste Allocation Load Lifter Earth Class) is programmed to clean up the planet, one trash cube at a time. However, after 700 years he&#8217;s developed one little glitch, a personality. He&#8217;s extremly curious, highly inquisitive and a little lonely.</em></p>
<ul>
<li><em>Solar Powered Regeneration Unit</em></li>
<li><em>Size 33 All Terain Modular Treads</em></li>
<li><em>Twin Hydraulic Arm Shovels</em></li>
<li><em>Digital Audio Recording/Playback Module</em></li>
<li><em>Low Convergence Head Mounted Laser&#8221;</em></li>
</ul>
<p align="center"><a href="http://paper-replika.com/index.php?option=com_content&#038;task=view&#038;id=54&#038;Itemid=30" target="_blank"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="398" alt="walle_9" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/PaperReplikaWalleEveand_FEB3/walle_9_3.jpg" width="400" border="0"></a> </p>
<p>Source: <a title="http://paper-replika.com/index.php?option=com_content&#038;task=view&#038;id=54&#038;Itemid=30" href="http://paper-replika.com/index.php?option=com_content&#038;task=view&#038;id=54&#038;Itemid=30">http://paper-replika.com/index.php?option=com_content&#038;task=view&#038;id=54&#038;Itemid=30</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2008/08/18/paper-replika-wall-e-eve-and/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>When a site redesign isn&#8217;t accepted by your users&#8230;</title>
		<link>http://www.schrankmonster.de/2008/08/13/when-a-site-redesign-isnt-accepted-by-your-users/</link>
		<comments>http://www.schrankmonster.de/2008/08/13/when-a-site-redesign-isnt-accepted-by-your-users/#comments</comments>
		<pubDate>Wed, 13 Aug 2008 21:06:27 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[graphics]]></category>
		<category><![CDATA[hack-the-planet]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Riot]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2008/08/13/WhenASiteRedesignIsntAcceptedByYourUsers.aspx</guid>
		<description><![CDATA[&#8230;they eventually start making their own layout of your site&#8230; And you cannot do anything about it but listening to them! A few days ago a big it-news site in germany relaunched it&#8217;s site with a new fixed-with-all-left layout. And more than 3000 comments by users had one and only thing to say: We don&#8217;t [...]]]></description>
			<content:encoded><![CDATA[<p>&#8230;they eventually start making their own layout of your site&#8230; And you cannot do anything about it but listening to them!</p>
<p>A few days ago a big it-news site in germany relaunched it&#8217;s site with a new fixed-with-all-left layout. And more than 3000 comments by users had one and only thing to say: We don&#8217;t like it. </p>
<p>They disliked it that much that a few sat down and created their own site layouts by using firefox plugins like &#8220;stylish&#8221; &#8211; where you can create your own styles for sites.</p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/Whenasiteredesignisntacceptedbyyouruser_1B7D/beforeafter.png"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="166" alt="beforeafter" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/Whenasiteredesignisntacceptedbyyouruser_1B7D/beforeafter_thumb.png" width="404" border="0"></a> </p>
<p align="left">I always wanted to see what these style-altering plugins can do but I never had the drive to think me into it&#8230; </p>
<p align="left">Source: <a title="http://userstyles.org/styles/9589" href="http://userstyles.org/styles/9589">http://userstyles.org/styles/9589</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2008/08/13/when-a-site-redesign-isnt-accepted-by-your-users/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Munich in 3D &#8230;</title>
		<link>http://www.schrankmonster.de/2008/08/13/munich-in-3d/</link>
		<comments>http://www.schrankmonster.de/2008/08/13/munich-in-3d/#comments</comments>
		<pubDate>Wed, 13 Aug 2008 20:51:48 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[graphics]]></category>
		<category><![CDATA[hack-the-planet]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Research]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2008/08/13/MunichIn3D.aspx</guid>
		<description><![CDATA[OMG! I just realized that the better part of Munich is available in Google Earth in 3D mode &#8211; which means real real 3D buildings like this. I thought that the birds eye view of Virtual Earth is cool &#8211; but this is a different animal.]]></description>
			<content:encoded><![CDATA[<p align="left">OMG! I just realized that the better part of Munich is available in Google Earth in 3D mode &#8211; which means real real 3D buildings like this. I thought that the birds eye view of Virtual Earth is cool &#8211; but this is a different animal.</p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/Munichin3D_C3A/googlearth_2.jpg" target="_blank"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="233" alt="googlearth" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/Munichin3D_C3A/googlearth_thumb.jpg" width="404" border="0"></a> </p>
<p align="center">
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2008/08/13/munich-in-3d/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Indlebe Radio Telescope made by students detects (natural) radio signal</title>
		<link>http://www.schrankmonster.de/2008/08/13/indlebe-radio-telescope-made-by-students-detects-natural-radio-signal/</link>
		<comments>http://www.schrankmonster.de/2008/08/13/indlebe-radio-telescope-made-by-students-detects-natural-radio-signal/#comments</comments>
		<pubDate>Wed, 13 Aug 2008 09:21:16 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[hack-the-planet]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Research]]></category>
		<category><![CDATA[Riot]]></category>
		<category><![CDATA[rocket-science]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2008/08/13/IndlebeRadioTelescopeMadeByStudentsDetectsNaturalRadioSignal.aspx</guid>
		<description><![CDATA[&#8220;Last week, the Indlebe Radio Telescope, situated on the Steve Biko campus of the Durban University of Technology, successfully detected its first radio source.The Indlebe Radio Telescope is a transit instrument that operates at the Hydrogen Line frequency of 1420 MHZ and uses a very sensitive radio receiver to detect extraterrestrial radio signals. Stuart MacPherson, [...]]]></description>
			<content:encoded><![CDATA[<p><em>&#8220;Last week, the Indlebe Radio Telescope, situated on the Steve Biko campus of the Durban University of Technology, successfully detected its first radio source.<br />The Indlebe Radio Telescope is a transit instrument that operates at the Hydrogen Line frequency of 1420 MHZ and uses a very sensitive radio receiver to detect extraterrestrial radio signals. <br />Stuart MacPherson, project leader in Electronic Engineering at the university, said he and his students were amazed when they realised the telescope had picked up a signal. <br />“We had made significant changes to the receiver to increase its sensitivity.  When we went in that morning to check the data, we found that it had detected a source,” he said.&#8221;</em>
<p>It&#8217;s unlikely to be from an unnatural alien source but if you take in account that all the equipment was built by students on the campus of Durban Universit&#8230; that is just astonishing.</p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/IndlebeRadioTelescopemadebystudentsdetec_BBCE/skyeyes_2.jpg" target="_blank"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="256" alt="skyeyes" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/IndlebeRadioTelescopemadebystudentsdetec_BBCE/skyeyes_thumb.jpg" width="404" border="0"></a> </p>
<p>Source 1: <a title="http://www.thirdeyeconcept.com/forums/index.php?page=258" href="http://www.thirdeyeconcept.com/forums/index.php?page=258">http://www.thirdeyeconcept.com/forums/index.php?page=258</a><br />Source 2: <a title="http://indlebe.dut.ac.za/" href="http://indlebe.dut.ac.za/">http://indlebe.dut.ac.za/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2008/08/13/indlebe-radio-telescope-made-by-students-detects-natural-radio-signal/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>getting the iTunes library to move or programmatically access the library without iTunes</title>
		<link>http://www.schrankmonster.de/2008/08/07/getting-the-itunes-library-to-move-or-programmatically-access-the-library-without-itunes/</link>
		<comments>http://www.schrankmonster.de/2008/08/07/getting-the-itunes-library-to-move-or-programmatically-access-the-library-without-itunes/#comments</comments>
		<pubDate>Thu, 07 Aug 2008 13:12:29 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[hack-the-planet]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Talks and Slides]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2008/08/07/gettingTheITunesLibraryToMoveOrProgrammaticallyAccessTheLibraryWithoutITunes.aspx</guid>
		<description><![CDATA[I am using iTunes as my main music player software for about 5 years now. In that time I had to move and restore my growing iTunes library more than 10 times. It can become quite a job to get it done properly so I came across this great howto article to help you and [...]]]></description>
			<content:encoded><![CDATA[<p>I am using iTunes as my main music player software for about 5 years now. In that time I had to move and restore my growing iTunes library more than 10 times. It can become quite a job to get it done properly so I came across <a href="http://paulbeard.org/wordpress/index.php/archives/2008/07/20/itunes-library-fixing-a-broken-one-or-moving-one/" target="_blank">this great howto article</a> to help you and me out in the future:</p>
<p><em>&#8220;I see </em><a href="http://feeds.thestranger.com/%7Er/stranger/lineout/%7E3/330864008/fuck_you_apple_were_not_cattle"><em>some discussion</em></a><em> about fixing busted iTunes libraries, either when moving one on the same computer or migrating to a new one. Here’s what I have found works for me. Bonus: no slow AppleScripts or payments (donations cheerfully accepted and squandered).</em>
<p><em>First, what I have discovered about how iTunes manages music collections. There are two files it uses, one that is binary (ie, machine readable for faster performance on searching, sorting, add/edit/delete operations) and one that has the same information but in a human readable format (for a certain subset of humans who can read XML natively). The XML file is written from the binary file as a backup (check the dates to confirm).&#8221;</em></p>
<p>But that isn&#8217;t were it needs to stop. I had to do some more things with my iTunes library lately &#8211; like extracting all that ratings and exporting them into a new music player software I liked to test. I therefore wrote myself a little tool in C# that does the job of reading in the whole iTunes library and giving you programmatically access to that library. It only needs to have read access to the Mediathek.xml file iTunes stores in it&#8217;s music folder and you from there on can work your way through the bazillions of music tracks you may or may not have in your library. It even does the find-and-replace job a bit easier than the solution mentioned in the article above.</p>
<p>I release the code under the CC-Attribution-NonCommercial-ShareAlike 3.0 license and here is your download:</p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/ReadiTunesMediathek.zip" target="_blank">ReadiTunesMediathek.zip (11,82 KB)</a></p>
<p>This code is a simple example of how to use the XmlTextReader in C# and how to traverse through them. It should be easy to understand and easy to change. I would love to hear from you when and if it helped you.</p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/ReadiTunesMediathek.zip" target="_blank"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="525" alt="xmltextreader" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/gettingtheiTuneslibrarytomoveorprogramma_EFA7/xmltextreader_3.png" width="370" border="0"></a> </p>
<p>Source 1: <a href="http://paulbeard.org/wordpress/index.php/archives/2008/07/20/itunes-library-fixing-a-broken-one-or-moving-one/" target="_blank">iTunes library, fixing a broken one or moving one</a><br />Source 2: <a href="http://www.schrankmonster.de/content/binary/ReadiTunesMediathek.zip" target="_blank">ReadiTunesMediathek.zip (11,82 KB)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2008/08/07/getting-the-itunes-library-to-move-or-programmatically-access-the-library-without-itunes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>your office chair: right out of your race car</title>
		<link>http://www.schrankmonster.de/2008/07/30/your-office-chair-right-out-of-your-race-car/</link>
		<comments>http://www.schrankmonster.de/2008/07/30/your-office-chair-right-out-of-your-race-car/#comments</comments>
		<pubDate>Wed, 30 Jul 2008 15:23:52 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[hack-the-planet]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Modding]]></category>
		<category><![CDATA[Motorsport]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2008/07/30/yourOfficeChairRightOutOfYourRaceCar.aspx</guid>
		<description><![CDATA[If you ever wanted to sit on a real fast office chair&#8230; you probably want to consider buying one of these: built from a Lamborghini Diablo GT chair&#8230; &#8220;Race Chairs brand office furniture is the perfect collection for the performance minded or motorsports obsessed individual. Our offerings are unique conversation pieces that give a subtle [...]]]></description>
			<content:encoded><![CDATA[<p>If you ever wanted to sit on a real fast office chair&#8230; you probably want to consider buying one of these: </p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/yourofficechairrightoutofyourracecar_110EC/rc128-2_2.jpg"><img style="border: 0px none ;" alt="rc128-2" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/yourofficechairrightoutofyourracecar_110EC/rc128-2_thumb.jpg" border="0" height="404" width="304"></a> <br />built from a Lamborghini Diablo GT chair&#8230;</p>
<p><em>&#8220;Race Chairs brand office furniture is the perfect collection for the performance minded or motorsports obsessed individual.  Our offerings are unique conversation pieces that give a subtle yet distinctive high tech atmosphere to any room.</em> </p>
<p><em>Our chairs are made from the authentic high performance seats from exotic racecars such as Ferrari, Maserati, Lamborghini, and Porsche.  From our unique connection to the motorsports world, we are able to acquire a unique and everchanging inventory. Our Carbonfiber desks are an industry first and our accessories collection and one-off motorsports memorabilia pieces truly complete the decor while acting as functional pieces in the room.&#8221;</em> </p>
<p>It&#8217;s not cheap but it has style <img src='http://www.schrankmonster.de/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  </p>
<p>Source: <a title="http://www.racechairs.com/default.asp" href="http://www.racechairs.com/default.asp">http://www.racechairs.com/default.asp</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2008/07/30/your-office-chair-right-out-of-your-race-car/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Version 2 (final) of my Dropbox Tool</title>
		<link>http://www.schrankmonster.de/2008/07/29/version-2-final-of-my-dropbox-tool/</link>
		<comments>http://www.schrankmonster.de/2008/07/29/version-2-final-of-my-dropbox-tool/#comments</comments>
		<pubDate>Tue, 29 Jul 2008 10:07:08 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[hack-the-planet]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[networking]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2008/07/29/Version2FinalOfMyDropboxTool.aspx</guid>
		<description><![CDATA[Some days ago I wrote about a 10 minute hack of a tool I always wanted to have &#8211; now I was using it quite often so I decided to upgrade it a bit &#8211; besides of the usual bugfixing I added these features: unlimited filesize &#8211; if the file is >4 Megabyte it&#8217;ll split [...]]]></description>
			<content:encoded><![CDATA[<p>Some days ago I wrote about a 10 minute hack of a tool I always wanted to have &#8211; now I was using it quite often so I decided to upgrade it a bit &#8211; besides of the usual bugfixing I added these features:</p>
<ul>
<li>unlimited filesize &#8211; if the file is >4 Megabyte it&#8217;ll split into smaller portions and uploaded one by one</li>
<li>Progressbar <img src='http://www.schrankmonster.de/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  When uploading severel hundred Mbytes you just want a progress indicator.</li>
<li>new Icon (curtesy of my wife &#8211; she did not like the old icon&#8230;)</li>
</ul>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/DropBox-v2.zip"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="239" alt="dropboxv2" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/Version2finalofmyDropboxTool_10CE9/dropboxv2_3.png" width="400" border="0"></a> </p>
<p align="center">You can <a href="http://www.schrankmonster.de/content/binary/DropBox-v2.zip">grab the source here</a>.</p>
<p>Source 1: <a href="http://www.schrankmonster.de/content/binary/DropBox-v2.zip">DropBox-v2.zip (92,77 KB)</a><br />Source 2: <a href="http://www.schrankmonster.de/PermaLink,guid,7fb04c31-03a2-40f3-90da-db266cdfe37a.aspx">a selfmade web drop box in 10 minutes</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2008/07/29/version-2-final-of-my-dropbox-tool/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>.NETAsm &#8211; inject native x86 code into your .NET apps</title>
		<link>http://www.schrankmonster.de/2008/07/28/netasm-inject-native-x86-code-into-your-net-apps/</link>
		<comments>http://www.schrankmonster.de/2008/07/28/netasm-inject-native-x86-code-into-your-net-apps/#comments</comments>
		<pubDate>Mon, 28 Jul 2008 09:48:26 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[hack-the-planet]]></category>
		<category><![CDATA[Modding]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2008/07/28/NETAsmInjectNativeX86CodeIntoYourNETApps.aspx</guid>
		<description><![CDATA[It may come in handy some time to have this functionality available. Unfortunatly it does not support 64 Bits &#8211; on which I am mainly developing now &#8211; but it&#8217;s cool: &#8220;NetAsm 1.0 is released. NetAsm provides a hook to the .NET JIT compiler and enables to inject your own native code in replacement of [...]]]></description>
			<content:encoded><![CDATA[<p>It may come in handy some time to have this functionality available. Unfortunatly it does not support 64 Bits &#8211; on which I am mainly developing now &#8211; but it&#8217;s cool:
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/.NETAsminjectnativex86codeintoyo.NETapps_C231/NetAsmLogo_2.jpg"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="104" alt="NetAsmLogo" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/.NETAsminjectnativex86codeintoyo.NETapps_C231/NetAsmLogo_thumb.jpg" width="357" border="0"></a> </p>
<p>&#8220;NetAsm 1.0 is released. NetAsm provides a hook to the .NET JIT compiler and enables to inject your own native code in replacement of the default CLR JIT compilation. With this library, it is possible, at runtime, to inject x86 assembler code in CLR methods with the speed of a pure CLR method call and without the cost of Interop/PInvoke calls.&#8221;</p>
<ul>
<li><em>Runs on <b>x86 32bit Microsoft .NET platform with 2.0+ CLR runtime</b> (x64 may be supported in the future). </em>
<li><em>Provides three different native <b>code injection techniques</b>: Static, DLL, and Dynamic. </em>
<ul>
<li><em><b>Static code injection</b>: The native code is stored in an attribute of the method. </em>
<li><em><b>Dll code injection</b> : this method is similar to the DllImport mechanism but CLR methods are directly bind to the DLL function, without going through the interop layers. </em>
<li><em><b>Dynamic code injection</b>: you can generate native code dynamically with a callback interface that is called by the JIT when compilation of a method is occurring. It means that you can compile a method “on the fly”. You have also access to the IL code of the method being compiled. </em></li>
</ul>
<li><em><b>Supports for debugging</b> static and dynamic code injection. </em>
<li><em><b>Supports for different calling conventions: StdCall, FastCall, ThisCall, Cdecl</b>. Default calling convention is CLRCall. </em>
<li><em>NetAsm can be used inside <b>any .NET language</b>. </em>
<li><em>Very <b>small library</b> <100Ko. </em></li>
</ul>
<p>Source: <a title="http://www.codeplex.com/netasm" href="http://www.codeplex.com/netasm">http://www.codeplex.com/netasm</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2008/07/28/netasm-inject-native-x86-code-into-your-net-apps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>self replicating machines</title>
		<link>http://www.schrankmonster.de/2008/07/26/self-replicating-machines/</link>
		<comments>http://www.schrankmonster.de/2008/07/26/self-replicating-machines/#comments</comments>
		<pubDate>Sat, 26 Jul 2008 04:00:20 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[hack-the-planet]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Reallife]]></category>
		<category><![CDATA[Research]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2008/07/26/selfReplicatingMachines.aspx</guid>
		<description><![CDATA[When I thought of self replicating machines I thought of end-of-time scenarios and a robot armies conquering the world and enslaving the human race&#8230; it&#8217;s not that bad right now but we&#8217;re getting to it&#8230; sort of &#8220;Adrian Bowyer (left) and Vik Olliver (right) with a parent RepRap machine, made on a conventional rapid prototyper, [...]]]></description>
			<content:encoded><![CDATA[<p align="left">When I thought of self replicating machines I thought of end-of-time scenarios and a robot armies conquering the world and enslaving the human race&#8230; it&#8217;s not that bad right now but we&#8217;re getting to it&#8230; sort of <img src='http://www.schrankmonster.de/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p align="center"><a href="http://reprap.org/bin/view/Main/WebHome" target="_blank"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="194" alt="pc-va" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/selfreplicatingmachines_D134/pc-va_3.jpg" width="404" border="0"></a> </p>
<p><em>&#8220;Adrian Bowyer (left) and Vik Olliver (right) with a parent </em><a href="http://reprap.org/bin/view/Main/RepRap"><em>RepRap</em></a><em> machine, made on a conventional rapid prototyper, and the first complete working child </em><a href="http://reprap.org/bin/view/Main/RepRap"><em>RepRap</em></a><em> machine, made by the </em><a href="http://reprap.org/bin/view/Main/RepRap"><em>RepRap</em></a><em> on the left. The child machine made its first successful grandchild part at 14:00 hours UTC on 29 May 2008 at Bath University in the UK, a few minutes after it was assembled.&#8221;</em></p>
<p><em>&#8220;RepRap is short for Replicating Rapid-prototyper. It is the practical self-copying 3D printer shown on the right &#8211; a self-replicating machine. This 3D printer builds the parts up in layers of plastic. This technology already exists, but the cheapest commercial machine would cost you about €30,000. And it isn&#8217;t even designed so that it can make itself. So what the </em><a href="http://reprap.org/bin/view/Main/RepRap"><em>RepRap</em></a><em> team are doing is to develop and <strong>to give away</strong> the designs for a much cheaper machine with the novel capability of being able to self-copy (material costs are about €500). That way it&#8217;s accessible to small communities in the developing world as well as individuals in the developed world. Following the principles of the </em><a href="http://www.fsf.org/"><em>Free Software Movement</em></a><em> we are distributing the </em><a href="http://reprap.org/bin/view/Main/RepRap"><em>RepRap</em></a><em> machine at no cost to everyone under the </em><a href="http://reprap.org/bin/view/Main/RepRapGPLLicence"><em>GNU General Public Licence</em></a><em>. So, if you have a </em><a href="http://reprap.org/bin/view/Main/RepRap"><em>RepRap</em></a><em> machine, you can make another and give it to a friend&#8230; &#8220;</em>
<p>Source: <a title="http://reprap.org/bin/view/Main/WebHome" href="http://reprap.org/bin/view/Main/WebHome">http://reprap.org/bin/view/Main/WebHome</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2008/07/26/self-replicating-machines/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Augmented Reality Game soon available (full source!)</title>
		<link>http://www.schrankmonster.de/2008/07/25/augmented-reality-game-soon-available-full-source/</link>
		<comments>http://www.schrankmonster.de/2008/07/25/augmented-reality-game-soon-available-full-source/#comments</comments>
		<pubDate>Fri, 25 Jul 2008 07:41:39 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Games]]></category>
		<category><![CDATA[graphics]]></category>
		<category><![CDATA[hack-the-planet]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[makes-my-day]]></category>
		<category><![CDATA[Research]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2008/07/25/AugmentedRealityGameSoonAvailableFullSource.aspx</guid>
		<description><![CDATA[You may have heard about Levelhead &#8211; an augmented reality game made by Julian Oliver &#8211; if you did not hear about it? No problem: &#8220;Augmented reality (AR) is a field of computer research which deals with the combination of real-world and computer-generated data. At present, most AR research is concerned with the use of [...]]]></description>
			<content:encoded><![CDATA[<p>You may have heard about Levelhead &#8211; an augmented reality game made by Julian Oliver &#8211; if you did not hear about it? No problem:</p>
<p><em>&#8220;<b>Augmented reality</b> (<b>AR</b>) is a field of </em><a href="http://en.wikipedia.org/wiki/Computer"><em>computer</em></a><em> research which deals with the combination of real-world and computer-generated data. At present, most AR research is concerned with the use of live video imagery which is digitally processed and &#8220;augmented&#8221; by the addition of computer-generated graphics. Advanced research includes the use of motion-tracking data, fiducial marker recognition using machine vision, and the construction of controlled environments containing any number of sensors and actuators.&#8221;</em></p>
<p>So &#8211; Augmented reality mixes the reality and the computer graphics and creates a new reality for you. That&#8217;s a lot of theoretical&#8230;so let&#8217;s talk about Levelhead:</p>
<p>It&#8217;s a game where you have to move plastic cubes with printed-on patterns in front of a camera &#8211; the computer now renders a new world inside of the plastic cubes &#8211; when you move the cube, the world inside the cube moves too&#8230; it looks like this:</p>
<p align="center"><em><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/AugmentedRealityGamesoonavailablefullsou_A7E9/lh_4_med_2.png"><img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="300" alt="lh_4_med" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/AugmentedRealityGamesoonavailablefullsou_A7E9/lh_4_med_thumb.png" width="404" border="0"></a> </em></p>
<p><em>&#8220;levelHead uses a hand-held solid-plastic cube as its only interface. On-screen it appears each face of the cube contains a little room, each of which are logically connected by doors. <br />In one of these rooms is a character. By tilting the cube the player directs this character from room to room in an effort to find the exit. </em></p>
<p><em>Some doors lead nowhere and will send the character back to the room they started in, a trick designed to challenge the player&#8217;s spatial memory. Which doors belong to which rooms? </em></p>
<p><em>There are three cubes (levels) in total, each of which are connected by a single door. Players have the goal of moving the character from room to room, cube to cube in an attempt to find the final exit door of all three cubes. If this door is found the character will appear to leave the cube, walk across the table surface and vanish.. The game then begins again. <br />Someone once said levelHead may have something to do with a story from Borges.. For a description of the conceptual basis of this project, see below. &#8220;</em></p>
<p>If you are not amazed now? You should watch this:</p>
<p>
<div align="center"><embed src="http://www.vimeo.com/moogaloop.swf?clip_id=1320756&#038;server=www.vimeo.com&#038;show_title=1&#038;show_byline=1&#038;show_portrait=0&#038;color=&#038;fullscreen=1" width="400" height="300" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true"></embed><br /><a href="http://www.vimeo.com/1320756?pg=embed&#038;sec=1320756">levelHead v1.0, 3 cube speed-run (spoiler!)</a> from <a href="http://www.vimeo.com/julianoliver?pg=embed&#038;sec=1320756">Julian Oliver</a> on <a href="http://vimeo.com?pg=embed&#038;sec=1320756">Vimeo</a>.</div>
</p>
<p> The thing is &#8211; this cool game and technology will be available at the end of this month as full open-source. I suggest to check Julians site back at the end of the month at last.</p>
<p>Source 1: <a href="http://en.wikipedia.org/wiki/Augmented_reality" target="_blank">Augmented Reality @ Wikipedia</a><br />Source 2: <a href="http://julianoliver.com/levelhead" target="_blank">Levelhead homepage</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2008/07/25/augmented-reality-game-soon-available-full-source/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>what typing 4 words a second sounds like</title>
		<link>http://www.schrankmonster.de/2008/07/24/what-typing-4-words-a-second-sounds-like/</link>
		<comments>http://www.schrankmonster.de/2008/07/24/what-typing-4-words-a-second-sounds-like/#comments</comments>
		<pubDate>Thu, 24 Jul 2008 06:35:07 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[hack-the-planet]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Reallife]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2008/07/24/whatTyping4WordsASecondSoundsLike.aspx</guid>
		<description><![CDATA[Okay &#8211; the ones who are frequently using a keyboard know that they are getting faster and faster as time goes by &#8211; so it&#8217;s normal to type fast but FAST is not enough to compete in the national speed-typing contest in the states: &#8220;Who&#8217;s the fastest typist in the land? If you&#8217;re talking about [...]]]></description>
			<content:encoded><![CDATA[<p>Okay &#8211; the ones who are frequently using a keyboard know that they are getting faster and faster as time goes by &#8211; so it&#8217;s normal to type fast but FAST is not enough to compete in the national speed-typing contest in the states:</p>
<p><em>&#8220;Who&#8217;s the fastest typist in the land? If you&#8217;re talking about the Land of Lincoln, it&#8217;s arguably Melanie Humphrey-Sonntag, who has won the Illinois court reporters speed contest for the past three years. At last year&#8217;s event she transcribed the contest&#8217;s blazing dictation—averaging 245 words a minute—with a 99.193 percent accuracy.<br />That&#8217;s about 4 words a second.&#8221;</em></p>
<p>Source: <a href="http://www.chicagotribune.com/news/specials/broadband/stv-video-trouble-flash,0,5351482.htmlstory" target="_blank">Chicago Tribune speed typing (with video)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2008/07/24/what-typing-4-words-a-second-sounds-like/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How much memory can you put into one giant x64 machine and actually use it?</title>
		<link>http://www.schrankmonster.de/2008/07/22/how-much-memory-can-you-put-into-one-giant-x64-machine-and-actually-use-it/</link>
		<comments>http://www.schrankmonster.de/2008/07/22/how-much-memory-can-you-put-into-one-giant-x64-machine-and-actually-use-it/#comments</comments>
		<pubDate>Tue, 22 Jul 2008 16:36:32 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[hack-the-planet]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Riot]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2008/07/22/HowMuchMemoryCanYouPutIntoOneGiantX64MachineAndActuallyUseIt.aspx</guid>
		<description><![CDATA[The answer is: 2 Terabyte. &#8220;You can see physical memory support licensing differentiation across the server SKUs for all versions of Windows. For example, the 32-bit version of Windows Server 2008 Standard supports only 4GB, while the 32-bit Windows Server 2008 Datacenter supports 64GB. Likewise, the 64-bit Windows Server 2008 Standard supports 32GB and the [...]]]></description>
			<content:encoded><![CDATA[<p>The answer is: 2 Terabyte.</p>
<p><em>&#8220;You can see physical memory support licensing differentiation across the server SKUs for all versions of Windows. For example, the 32-bit version of Windows Server 2008 Standard supports only 4GB, while the 32-bit Windows Server 2008 Datacenter supports 64GB. Likewise, the 64-bit Windows Server 2008 Standard supports 32GB and the 64-bit Windows Server 2008 Datacenter can handle a whopping 2TB. There aren&#8217;t many 2TB systems out there, but the Windows Server Performance Team knows of a couple, including one they had in their lab at one point. Here&#8217;s a screenshot of Task Manager running on that system:&#8221;</em></p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/Howmuchmemorycanyouputintoonegiantx64mac_1256A/image_thumb_1_2.png"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="319" alt="image_thumb_1" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/Howmuchmemorycanyouputintoonegiantx64mac_1256A/image_thumb_1_thumb.png" width="400" border="0"></a> </p>
<p align="left">P.S.: Thx boonkerz.</p>
<p align="left">Source: <a title="http://blogs.technet.com/markrussinovich/archive/2008/07/21/3092070.aspx" href="http://blogs.technet.com/markrussinovich/archive/2008/07/21/3092070.aspx">http://blogs.technet.com/markrussinovich/archive/2008/07/21/3092070.aspx</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2008/07/22/how-much-memory-can-you-put-into-one-giant-x64-machine-and-actually-use-it/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wie die Karten in das Navigationsgerät kommen</title>
		<link>http://www.schrankmonster.de/2008/07/21/wie-die-karten-in-das-navigationsgerat-kommen/</link>
		<comments>http://www.schrankmonster.de/2008/07/21/wie-die-karten-in-das-navigationsgerat-kommen/#comments</comments>
		<pubDate>Mon, 21 Jul 2008 14:20:42 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[graphics]]></category>
		<category><![CDATA[hack-the-planet]]></category>
		<category><![CDATA[Motorsport]]></category>
		<category><![CDATA[Reallife]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2008/07/21/WieDieKartenInDasNavigationsger%c3%a4tKommen.aspx</guid>
		<description><![CDATA[Wer schon immer mal wissen wollte wie die Karten eigentlich erstellt werden die in so ein Navigationssystem den Weg weisen der sollte sich mal folgenden Artikel und höchst interessante Bilder anschauen: &#8220;Navteq fährt mit speziell ausgerüsteten Fahrzeugen rund 7,5 Mio. Kilometer ab, und das Jahr für Jahr. Denn auch wenn auf der Verpackung steht: 7200 [...]]]></description>
			<content:encoded><![CDATA[<p>Wer schon immer mal wissen wollte wie die Karten eigentlich erstellt werden die in so ein Navigationssystem den Weg weisen der sollte sich mal folgenden Artikel und höchst interessante Bilder anschauen:</p>
<p><em>&#8220;Navteq fährt mit speziell ausgerüsteten Fahrzeugen rund 7,5 Mio. Kilometer ab, und das Jahr für Jahr. Denn auch wenn auf der Verpackung steht: 7200 neue Kilometer, dann bedeutet das nicht, dass der “Rest” nicht auch unter die Räder genommen wurde. Und das lohnt sich immer: Hier steht mal ein neues Schild, da ist eine neue Einmündung und dort wurde vielleicht die Straßenführung geändert.&#8221;</em></p>
<p>Source: <a title="http://www.ksmichel.de/?p=289" href="http://www.ksmichel.de/?p=289">http://www.ksmichel.de/?p=289</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2008/07/21/wie-die-karten-in-das-navigationsgerat-kommen/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How to turn an old notebook into a very stylish Arcade / MAME Cocktail Cabinet</title>
		<link>http://www.schrankmonster.de/2008/07/08/how-to-turn-an-old-notebook-into-a-very-stylish-arcade-mame-cocktail-cabinet/</link>
		<comments>http://www.schrankmonster.de/2008/07/08/how-to-turn-an-old-notebook-into-a-very-stylish-arcade-mame-cocktail-cabinet/#comments</comments>
		<pubDate>Tue, 08 Jul 2008 21:19:24 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Games]]></category>
		<category><![CDATA[hack-the-planet]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Modding]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2008/07/08/HowToTurnAnOldNotebookIntoAVeryStylishArcadeMAMECocktailCabinet.aspx</guid>
		<description><![CDATA[You would need: an old yet powerful enough notebook to play MAME games &#8220;MAME is an emulator application designed to recreate the hardware of arcade game systems in software, with the intent of preserving gaming history and preventing vintage games from being lost or forgotten. The name is an acronym for Multiple Arcade Machine Emulator.&#8221; [...]]]></description>
			<content:encoded><![CDATA[<p>You would need:</p>
<ol>
<li>an old yet powerful enough notebook to play MAME games<br /><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/HowtoturnanoldnotebookintoaverystylishAr_A7D/300px-MAME_2.jpg"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="47" alt="300px-MAME" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/HowtoturnanoldnotebookintoaverystylishAr_A7D/300px-MAME_thumb.jpg" width="141" border="0"></a> <br /><em>&#8220;<b>MAME</b> is an </em><a href="http://en.wikipedia.org/wiki/Emulator"><em>emulator</em></a><em> application designed to recreate the </em><a href="http://en.wikipedia.org/wiki/Hardware"><em>hardware</em></a><em> of </em><a href="http://en.wikipedia.org/wiki/Arcade_game"><em>arcade game</em></a><em> systems in </em><a href="http://en.wikipedia.org/wiki/Software"><em>software</em></a><em>, with the intent of preserving gaming history and preventing vintage games from being lost or forgotten. The name is an acronym for Multiple Arcade Machine Emulator.&#8221;</em></li>
<li>an IKEA RAMVIK sideboard</li>
<li>go to <a href="http://mamebook.blogspot.com/" target="_blank">the homepage of the project</a> to get the details how to build it <img src='http://www.schrankmonster.de/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </li>
</ol>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/HowtoturnanoldnotebookintoaverystylishAr_A7D/IMG_0599_2_2.jpg"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="404" alt="IMG_0599_2" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/HowtoturnanoldnotebookintoaverystylishAr_A7D/IMG_0599_2_thumb.jpg" width="304" border="0"></a> </p>
<p>Source 1: <a title="http://en.wikipedia.org/wiki/MAME" href="http://en.wikipedia.org/wiki/MAME">http://en.wikipedia.org/wiki/MAME</a><br />Source 3: <a href="http://www.ikea.com">http://www.ikea.com</a><br />Source 2: <a title="http://mamebook.blogspot.com/" href="http://mamebook.blogspot.com/">http://mamebook.blogspot.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2008/07/08/how-to-turn-an-old-notebook-into-a-very-stylish-arcade-mame-cocktail-cabinet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>If Windows XP updates fail more than one time&#8230;</title>
		<link>http://www.schrankmonster.de/2008/07/06/if-windows-xp-updates-fail-more-than-one-time/</link>
		<comments>http://www.schrankmonster.de/2008/07/06/if-windows-xp-updates-fail-more-than-one-time/#comments</comments>
		<pubDate>Sun, 06 Jul 2008 00:06:22 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[hack-the-planet]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2008/07/06/IfWindowsXPUpdatesFailMoreThanOneTime.aspx</guid>
		<description><![CDATA[&#8230; like on two of my machines &#8211; try this: regsvr32 wuapi.dllregsvr32 wuaueng.dllregsvr32 wuaueng1.dllregsvr32 wucltui.dllregsvr32 wups.dllregsvr32 wups2.dllregsvr32 wuweb.dll - At least on my machine it now installed the updates flawlessly.]]></description>
			<content:encoded><![CDATA[<p>&#8230; like on two of my machines &#8211; try this:</p>
<p><i>regsvr32 wuapi.dll<br />regsvr32 wuaueng.dll<br />regsvr32 wuaueng1.dll<br />regsvr32 wucltui.dll<br />regsvr32 wups.dll<br />regsvr32 wups2.dll<br />regsvr32 wuweb.dll</i></p>
<p>- At least on my machine it now installed the updates flawlessly.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2008/07/06/if-windows-xp-updates-fail-more-than-one-time/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>When you&#8217;re in need of a good whiteboard&#8230; use Wii controllers + homebrew</title>
		<link>http://www.schrankmonster.de/2008/06/08/when-youre-in-need-of-a-good-whiteboard-use-wii-controllers-homebrew/</link>
		<comments>http://www.schrankmonster.de/2008/06/08/when-youre-in-need-of-a-good-whiteboard-use-wii-controllers-homebrew/#comments</comments>
		<pubDate>Sun, 08 Jun 2008 18:57:24 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[hack-the-planet]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Modding]]></category>
		<category><![CDATA[Research]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2008/06/08/WhenYoureInNeedOfAGoodWhiteboardUseWiiControllersHomebrew.aspx</guid>
		<description><![CDATA[Oh yeah. I talked about these kinds of electronic whiteboards for years &#8211; and now it seems that there is a cheap and really useful DIY solution created by Johnny Chung Lee(beside several other really useful and astounding DIY jobs) &#8220;Since the Wiimote can track sources of infrared (IR) light, you can track pens that [...]]]></description>
			<content:encoded><![CDATA[<p>Oh yeah. I talked about these kinds of electronic whiteboards for years &#8211; and now it seems that there is a cheap and really useful DIY solution created by <a href="http://www.cs.cmu.edu/~johnny/projects/wii/" target="_blank">Johnny Chung Lee(beside several other really useful and astounding DIY jobs)</a></p>
<p><em>&#8220;Since the Wiimote can track sources of infrared (IR) light, you can track pens that have an IR led in the tip. By pointing a wiimote at a projection screen or LCD display, you can create very low-cost interactive whiteboards or tablet displays. Since the Wiimote can track upto 4 points, up to 4 pens can be used. It also works great with rear-projected displays.&#8221;</em></p>
<p>So you need:</p>
<ul>
<li>a Wiimote
<li>a selfmade Infrared-LED Pen that marks the trackable point </li>
</ul>
<p>So <a href="http://blog.slash-me.net/archives/268-Wii-Whiteboard.html" target="_blank">namenlos (his blog)</a> did his version of the Wii whiteboard and made a video of it:</p>
<div align="center"><embed pluginspage="http://macromedia.com/go/getflashplayer" src="http://images.video.msn.com/flash/soapbox1_1.swf" width="432" height="364" type="application/x-shockwave-flash" flashvars="c=v&#038;v=5fb4dca1-106f-4991-9fd4-4d3227c4fe7c&#038;ifs=true&#038;fr=msnvideo&#038;mkt=de-DE&#038;brand=" allowscriptaccess="always" allowfullscreen="true" base="http://images.video.msn.com" quality="high"></embed><br /><a title="Wii Whiteboard" href="http://video.msn.com/video.aspx?vid=5fb4dca1-106f-4991-9fd4-4d3227c4fe7c" target="_new">Video: Wii Whiteboard</a> </div>
<p align="center">(due to music the license of this video is <a href="http://creativecommons.org/licenses/by-nc-sa/2.0/de/deed.en" target="_blank">CC-BY-NC-SA</a>)</p>
<p align="left">Really impressive isn&#8217;t it? And you can do so much more with this Wiimote stuff. &#8211; Actually I am planning to get such a Wiimote and a Pen and try it myself.</p>
<p>Source 1: <a title="http://www.cs.cmu.edu/~johnny/projects/wii/" href="http://www.cs.cmu.edu/~johnny/projects/wii/">http://www.cs.cmu.edu/~johnny/projects/wii/</a> <br />Source 2: <a title="http://blog.slash-me.net/archives/268-Wii-Whiteboard.html" href="http://blog.slash-me.net/archives/268-Wii-Whiteboard.html">http://blog.slash-me.net/archives/268-Wii-Whiteboard.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2008/06/08/when-youre-in-need-of-a-good-whiteboard-use-wii-controllers-homebrew/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>german Citizens&#8217; band radio over the internet&#8230;Freies Funknetz!</title>
		<link>http://www.schrankmonster.de/2008/06/02/german-citizens-band-radio-over-the-internet-freies-funknetz/</link>
		<comments>http://www.schrankmonster.de/2008/06/02/german-citizens-band-radio-over-the-internet-freies-funknetz/#comments</comments>
		<pubDate>Mon, 02 Jun 2008 22:37:21 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[freies Funknetz]]></category>
		<category><![CDATA[hack-the-planet]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Modding]]></category>
		<category><![CDATA[Radio]]></category>
		<category><![CDATA[rocket-science]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2008/06/02/germanCitizensBandRadioOverTheInternetFreiesFunknetz.aspx</guid>
		<description><![CDATA[The internet makes things possible some people dreamt of for years. One of these things is the possibility to stream live-voice-chat over the internet. Many people used the citizens&#8217; band radio &#8211; CB radio &#8211; for the last decades: &#8220;Citizens&#8217; Band radio (CB) is, in many countries, a system of short-distance, simplex[1] radio communications between [...]]]></description>
			<content:encoded><![CDATA[<p>The internet makes things possible some people dreamt of for years. One of these things is the possibility to stream live-voice-chat over the internet. Many people used the citizens&#8217; band radio &#8211; CB radio &#8211; for the last decades:</p>
<p><em>&#8220;<b>Citizens&#8217; Band radio</b> (CB) is, in many countries, a system of short-distance, </em><a href="http://en.wikipedia.org/wiki/Simplex_communication"><em>simplex</em></a><sup><a href="http://en.wikipedia.org/wiki/Citizens%27_band_radio#cite_note-0"><em>[1]</em></a></sup><em> radio communications between individuals on a selection of 40 channels within the 27 </em><a href="http://en.wikipedia.org/wiki/Hertz"><em>MHz</em></a><em> (11 meter) band. The CB radio service should not be confused with </em><a href="http://en.wikipedia.org/wiki/Family_Radio_Service"><em>FRS</em></a><em>, </em><a href="http://en.wikipedia.org/wiki/GMRS"><em>GMRS</em></a><em>, </em><a href="http://en.wikipedia.org/wiki/Multi-Use_Radio_Service"><em>MURS</em></a><em>, or </em><a href="http://en.wikipedia.org/wiki/Amateur_radio"><em>amateur (&#8220;ham&#8221;) radio</em></a><em>. Similar personal radio services exist in other countries, with varying requirements for licensing and differing technical standards. In many countries, CB does not require a license and, unlike amateur radio, it may be used for business as well as personal communications.&#8221;</em></p>
<p>For several years now there is a group of people from virtually everywhere in germany who connect their CB radios to the internet &#8211; they link their &#8220;gateways&#8221; together using a software normally used by online gamers called <a href="http://www.goteamspeak.com/" target="_blank">&#8220;TeamSpeak&#8221;</a>. All you have to do to take a look is to read <a href="http://www.ts-windsbach.de/viewpage.php?page_id=44" target="_blank">this short how-to and follow the steps.</a></p>
<p>Here&#8217;s a sneak-peak at the current status of the server:</p>
<p align="center"> <iframe name="tsviewer" allowtransparency="true" src="http://www.tsviewer.com/ts_viewer_pur.php?ID=35528&#038;bg=transparent&#038;type=&#038;type_size=9&#038;type_family=1&#038;info=1&#038;channels=1&#038;users=1&#038;type_s_weight=normal&#038;type_s_style=normal&#038;type_s_variant=normal&#038;type_s_decoration=none&#038;type_s_weight_h=normal&#038;type_s_style_h=normal&#038;type_s_variant_h=normal&#038;type_s_decoration_h=none&#038;type_i_weight=normal&#038;type_i_style=normal&#038;type_i_variant=normal&#038;type_i_decoration=none&#038;type_i_weight_h=normal&#038;type_i_style_h=normal&#038;type_i_variant_h=normal&#038;type_i_decoration_h=none&#038;type_c_weight=normal&#038;type_c_style=normal&#038;type_c_variant=normal&#038;type_c_decoration=none&#038;type_c_weight_h=normal&#038;type_c_style_h=normal&#038;type_c_variant_h=normal&#038;type_c_decoration_h=none&#038;type_u_weight=normal&#038;type_u_style=normal&#038;type_u_variant=normal&#038;type_u_decoration=none&#038;type_u_weight_h=normal&#038;type_u_style_h=normal&#038;type_u_variant_h=normal&#038;type_u_decoration_h=none&#038;skin=tsv_mini&#038;cflags=0&#038;pflags=0" style="" frameborder="0" height="400" scrolling="auto" width="200"></iframe> </p>
<p>There&#8217;s even a livestream available (but sometimes not working):</p>
<p align="center"> <embed name="MediaPlayer" pluginspage="http://www.microsoft.com/Windows/Downloads/Contents/Products/MediaPlayer/" src="http://81.169.165.199:8000" type="application/x-mplayer2" transparentatstart="1" autostart="0" animationatstart="0" showcontrols="true" showaudiocontrols="1" showpositioncontrols="0" autosize="0" showstatusbar="1" displaysize="false" align="baseline" border="0" height="50" width="150"> </p>
</p>
<p>Source 1: <a title="http://www.freiesfunknetz.com/" href="http://www.freiesfunknetz.com/">http://www.freiesfunknetz.com/</a><br />Source 2: <a title="http://www.goteamspeak.com/" href="http://www.goteamspeak.com/">http://www.goteamspeak.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2008/06/02/german-citizens-band-radio-over-the-internet-freies-funknetz/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CHDK &#8211; the alternative firmware for many Canon Digital Cameras</title>
		<link>http://www.schrankmonster.de/2008/04/22/chdk-the-alternative-firmware-for-many-canon-digital-cameras/</link>
		<comments>http://www.schrankmonster.de/2008/04/22/chdk-the-alternative-firmware-for-many-canon-digital-cameras/#comments</comments>
		<pubDate>Tue, 22 Apr 2008 17:55:22 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[graphics]]></category>
		<category><![CDATA[hack-the-planet]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Modding]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2008/04/22/CHDKTheAlternativeFirmwareForManyCanonDigitalCameras.aspx</guid>
		<description><![CDATA[&#8220;CHDK is a firmware enhancement that operates on a number of Canon Cameras. CHDK gets loaded into your camera&#8217;s memory upon bootup (either manually or automatically). It provides additional functionality beyond that currently provided by the native camera firmware. CHDK is not a permanent firmware upgrade: you decide how it is loaded (manually or automatically) [...]]]></description>
			<content:encoded><![CDATA[<p><em>&#8220;CHDK is a firmware enhancement that operates on a number of Canon Cameras. CHDK gets loaded into your camera&#8217;s memory upon bootup (either manually or automatically). It provides additional functionality beyond that currently provided by the native camera firmware. </em></p>
<p><em>CHDK is not a permanent firmware upgrade: you decide how it is loaded (manually or automatically) and you can always easily remove it.&#8221;</em></p>
<p align="center"><b><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="286" alt="chdk" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/CHDKthealternativefirmwareformanyCanonDi_116A1/chdk_1.jpg" width="400" border="0" /> </b></p>
<p><b>Main features:</b></p>
<ul>
<li>Save images in RAW format </li>
<li>Ability to run &#8220;Scripts&#8221; to automate the camera </li>
<li>Live histogram (RGB, blended, luminance and for each RGB channel) </li>
<li>Zebra mode (blinking highlights and shadows to show over/under exposed areas) </li>
<li>An &#8220;always on&#8221; full range Battery indicator </li>
<li>Ability to turn off automatic dark-frame subtraction </li>
<li>a higher compression movie mode, and double the maximum video file size </li>
<li>exposure times as long as 65 seconds </li>
<li>exposure times as little as 1/10,000 of a second </li>
<li>ability to use the USB port for a remote trigger input </li>
</ul>
<p><b>Additional features:</b></p>
<ul>
<li>a depth-of-field (DOF)-calculator </li>
<li>File browser </li>
<li>Text reader </li>
<li>Calendar </li>
<li>Some fun tools and games</li>
</ul>
<p>Source: <a title="http://chdk.wikia.com/wiki/CHDK_in_Brief" href="http://chdk.wikia.com/wiki/CHDK_in_Brief">http://chdk.wikia.com/wiki/CHDK_in_Brief</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2008/04/22/chdk-the-alternative-firmware-for-many-canon-digital-cameras/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>SPAM-Bots can decrypt Captchas&#8230; ups&#8230;</title>
		<link>http://www.schrankmonster.de/2008/04/15/spam-bots-can-decrypt-captchas-ups/</link>
		<comments>http://www.schrankmonster.de/2008/04/15/spam-bots-can-decrypt-captchas-ups/#comments</comments>
		<pubDate>Tue, 15 Apr 2008 21:02:40 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[graphics]]></category>
		<category><![CDATA[hack-the-planet]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Riot]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2008/04/15/SPAMBotsCanDecryptCaptchasUps.aspx</guid>
		<description><![CDATA[If you thought that those fancy Captchas would serve their purpose of SPAM prevention forever you might want to think again. From Wikipedia: &#8220;A CAPTCHA (IPA: /ˈkæptʃə/) is a type of challenge-response test used in computing to determine that the user is not run by a computer. The process involves one computer (a server) asking [...]]]></description>
			<content:encoded><![CDATA[<p>If you thought that those fancy <a href="http://en.wikipedia.org/wiki/CAPTCHA" target="_blank">Captchas</a> would serve their purpose of SPAM prevention forever you might want to think again.</p>
<p>From Wikipedia:</p>
<p><em>&#8220;A CAPTCHA (<small>IPA</small>: </em><a href="http://en.wikipedia.org/wiki/Help:Pronunciation"><em>/ˈkæptʃə/</em></a><em>) is a type of </em><a href="http://en.wikipedia.org/wiki/Challenge-response_authentication"><em>challenge-response</em></a><em> test used in </em><a href="http://en.wikipedia.org/wiki/Computing"><em>computing</em></a><em> to determine that the user is not run by a computer. The process involves one computer (a </em><a href="http://en.wikipedia.org/wiki/Server_%28computing%29"><em>server</em></a><em>) asking a user to complete a simple test which the computer is able to generate and grade. Because other computers are unable to solve the CAPTCHA, any user entering a correct solution is presumed to be human. A common type of CAPTCHA requires that the user type the letters of a distorted image, sometimes with the addition of an obscured sequence of letters or digits that appears on the screen.&#8221;</em></p>
<p align="left">It usually looks something like that:</p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/SPAMBotscandecryptCaptchas...ups_1428C/Captcha_2.jpg"><img style="border: 0px none ;" alt="Captcha" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/SPAMBotscandecryptCaptchas...ups_1428C/Captcha_thumb.jpg" border="0" height="70" width="244"></a> </p>
<p>Now the news:</p>
<p><em>&#8220;Websense Security Labs ThreatSeeker™ technology has discovered that spammers in their recent tactics have drawn their attention towards traditional and infamous Hotmail, aka Live Hotmail services after the streamlined Live Mail Anti-CAPTCHA operations. Spammers have managed to create automated bots that are capable of not only signing up and creating random Hotmail accounts, but also use these accounts for spamming purposes from a proper Live Hotmail service.&#8221;</em></p>
<p align="center"><a href="http://securitylabs.websense.com/content/Blogs/3063.aspx#" target="_blank"><img style="border: 0px none ;" alt="hotmailcatpcha-1.7[1]" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/SPAMBotscandecryptCaptchas...ups_1428C/hotmailcatpcha-1.7%5B1%5D_5.png" border="0" height="244" width="243"></a> </p>
<p>Source 1: <a title="http://securitylabs.websense.com/content/Blogs/3063.aspx#" href="http://securitylabs.websense.com/content/Blogs/3063.aspx#">http://securitylabs.websense.com/content/Blogs/3063.aspx#</a>    <br />Source 2: <a title="http://en.wikipedia.org/wiki/CAPTCHA" href="http://en.wikipedia.org/wiki/CAPTCHA">http://en.wikipedia.org/wiki/CAPTCHA</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2008/04/15/spam-bots-can-decrypt-captchas-ups/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Dr. Pepper supply refilled</title>
		<link>http://www.schrankmonster.de/2008/03/06/dr-pepper-supply-refilled/</link>
		<comments>http://www.schrankmonster.de/2008/03/06/dr-pepper-supply-refilled/#comments</comments>
		<pubDate>Thu, 06 Mar 2008 11:50:07 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[hack-the-planet]]></category>
		<category><![CDATA[Reallife]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2008/03/06/DrPepperSupplyRefilled.aspx</guid>
		<description><![CDATA[Hurray! The next Dr. Pepper delivery arrived this morning from our friends at Lifestylefood. Great stuff and the delivery was just in time. 48 cans &#8230; that&#8217;ll take us&#8230; uhh&#8230; 2-3 weeks&#8230; probably less :-/]]></description>
			<content:encoded><![CDATA[<p>Hurray! The next Dr. Pepper delivery arrived this morning from our friends at <a href="www.lifestylefood.net" target="_blank">Lifestylefood</a>. Great stuff and the delivery was just in time. 48 cans &#8230; that&#8217;ll take us&#8230; uhh&#8230; 2-3 weeks&#8230; probably less :-/</p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/Dr.Peppersupplyrefilled_B314/IMG_0300.jpg" target="_blank"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="484" alt="IMG_0300" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/Dr.Peppersupplyrefilled_B314/IMG_0300_thumb.jpg" width="364" border="0" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2008/03/06/dr-pepper-supply-refilled/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Best Boss</title>
		<link>http://www.schrankmonster.de/2008/02/26/best-boss/</link>
		<comments>http://www.schrankmonster.de/2008/02/26/best-boss/#comments</comments>
		<pubDate>Tue, 26 Feb 2008 11:57:02 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[hack-the-planet]]></category>
		<category><![CDATA[makes-my-day]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2008/02/26/BestBoss.aspx</guid>
		<description><![CDATA[This morning I stumbled into the refurbished offices at Microsoft Research Cambridge heading for a week full of code work: Obviously it seems as our boss over here really takes care of us. Yeah, and of course you get all the unhealthy things real coders do need to stay night after night awake.&#160; Happy coding! [...]]]></description>
			<content:encoded><![CDATA[<p>This morning I stumbled into the refurbished offices at Microsoft Research Cambridge heading for a week full of code work: Obviously it seems as our boss over here really takes care of us.</p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/1ef1141d7b1b_A659/IMG_0084_2.jpg"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="244" alt="IMG_0084" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/1ef1141d7b1b_A659/IMG_0084_thumb.jpg" width="324" border="0" /></a> </p>
<p>Yeah, and of course you get all the unhealthy things real coders do need to stay night after night awake.&#160; </p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/1ef1141d7b1b_A659/IMG_0085_2.jpg"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="431" alt="IMG_0085" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/1ef1141d7b1b_A659/IMG_0085_thumb.jpg" width="324" border="0" /></a> </p>
<p>Happy coding!</p>
<p align="right"><a href="http://blog.aheil.de/2008/02/26/BestBoss.aspx" target="_blank">(Crosspost from blog.aheil.de)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2008/02/26/best-boss/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

