<?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; N3RD</title>
	<atom:link href="http://www.schrankmonster.de/category/n3rd/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>Boogie Board</title>
		<link>http://www.schrankmonster.de/2011/09/15/boogie-board/</link>
		<comments>http://www.schrankmonster.de/2011/09/15/boogie-board/#comments</comments>
		<pubDate>Thu, 15 Sep 2011 16:45:23 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Drawing]]></category>
		<category><![CDATA[Hardware]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2011/09/15/boogie-board/</guid>
		<description><![CDATA[Two weeks ago I had read an article about a “replacement for papernotes” product called “Boogie Board”. The company behind the product claims to replace paper with the bold slogan of “say goodby to paper”. Well what is it? Basically it’s a liquid crystal display without the logic to adress specific pixels. So think of [...]]]></description>
			<content:encoded><![CDATA[<p>Two weeks ago I had read an article about a “replacement for papernotes” product called “Boogie Board”. The company behind the product claims to replace paper with the bold slogan of “say goodby to paper”.</p>
<p>Well what is it? Basically it’s a liquid crystal display without the logic to adress specific pixels. So think of it like taking the liquid crystal part and leaving out all the transistors and logic to actually display something. Then add a pen or even your finger nail and you can “write” on that display – what’s happening is that obviously the crystals get pushed aside and the background of the “display” shines through – this background is white so when you write on the boogie board everything is white on black…</p>
<p><a href="http://www.schrankmonster.de/wp-content/uploads/2011/09/MG_9156.jpg" target="_blank"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px; padding-top: 0px" title="_MG_9156" border="0" alt="_MG_9156" src="http://www.schrankmonster.de/wp-content/uploads/2011/09/MG_9156_thumb.jpg" width="404" height="270" /></a></p>
<p align="center"><a href="http://www.schrankmonster.de/wp-content/uploads/2011/09/MG_9160.jpg" 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="_MG_9160" border="0" alt="_MG_9160" src="http://www.schrankmonster.de/wp-content/uploads/2011/09/MG_9160_thumb.jpg" width="404" height="270" /></a></p>
<p align="center"><a href="http://www.schrankmonster.de/wp-content/uploads/2011/09/MG_9162.jpg" 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="_MG_9162" border="0" alt="_MG_9162" src="http://www.schrankmonster.de/wp-content/uploads/2011/09/MG_9162_thumb.jpg" width="404" height="270" /></a></p>
<p align="left">The only button on the tablet is named “erase” – and that’s what the button does: the whole display flashes two times, one white, and then black and everything is back to where we started. You cannot save. You just press erase and start over. It’s truly a replacement for post-it-notes…</p>
<p align="left">Of course there’s a battery inside, and it’s said to hold for tens of thousands of erases. You cannot change the battery when it’s empty, but on the other hand this gadget is less than 30 Euros and it does look like you can break it up and try your best to exchange the battery yourself. Since the battery isn’t needed to display anything I don’t think I will run out of juice just yet.</p>
<p align="left">Source: <a title="http://www.improvelectronics.com" href="http://www.improvelectronics.com">http://www.improvelectronics.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2011/09/15/boogie-board/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>der letzte Flug des Space Shuttle Endeavour</title>
		<link>http://www.schrankmonster.de/2011/04/24/der-letzte-flug-des-space-shuttle-endeavour/</link>
		<comments>http://www.schrankmonster.de/2011/04/24/der-letzte-flug-des-space-shuttle-endeavour/#comments</comments>
		<pubDate>Sun, 24 Apr 2011 18:07:44 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Media]]></category>
		<category><![CDATA[N3RD]]></category>
		<category><![CDATA[rocket-science]]></category>
		<category><![CDATA[TV]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/?p=7600</guid>
		<description><![CDATA[Am kommenden Freitag soll das Space Shuttle Endeavour zum letzen Mal und ein Space Shuttle zum vorletzten Mal abheben. Da will man dabei sein Ich habe glücklicherweise gerade die Herren (und Damen?) von SpaceLiveCast entdeckt. Offenbar machen die schon eine ganze Weile Livestreams zu den verschiedenen Raumfahrt-Events. P.S.: Wenn ich einen Wunsch frei hätte, wäre [...]]]></description>
			<content:encoded><![CDATA[<p>Am kommenden Freitag soll das Space Shuttle Endeavour zum letzen Mal und ein Space Shuttle zum vorletzten Mal abheben. Da will man dabei sein <img src='http://www.schrankmonster.de/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Ich habe glücklicherweise gerade die Herren (und Damen?) von SpaceLiveCast entdeckt. Offenbar machen die schon eine ganze Weile Livestreams zu den verschiedenen Raumfahrt-Events.</p>
<p style="text-align: center;"><a href="http://spacelivecast.de" target="_blank"><img class="aligncenter size-medium wp-image-7601" title="Bildschirmfoto 2011-04-24 um 20.47.04" src="http://www.schrankmonster.de/wp-content/uploads/2011/04/Bildschirmfoto-2011-04-24-um-20.47.04-300x105.png" alt="" width="300" height="105" /></a></p>
<p>P.S.: Wenn ich einen Wunsch frei hätte, wäre das, dass die Seite einen Video Podcast Feed anbietet&#8230;.(wird Hilfe benötigt?)</p>
<p>Source 1: <a href="http://spacelivecast.de/" target="_blank">http://spacelivecast.de/</a><br />
Source 2: <a href="http://www.raumfahrer.net" target="_blank">http://www.raumfahrer.net</a><br />
Source 3: <a href="http://spacelivecast.de/2011/04/29-04-ab-1900-uhr-sts-134-letzter-endeavour-flug/" target="_blank">http://spacelivecast.de/2011/04/29-04-ab-1900-uhr-sts-134-letzter-endeavour-flug/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2011/04/24/der-letzte-flug-des-space-shuttle-endeavour/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>configuring the nano editor to my needs&#8230;</title>
		<link>http://www.schrankmonster.de/2011/04/24/configuring-the-nano-editor-to-my-needs/</link>
		<comments>http://www.schrankmonster.de/2011/04/24/configuring-the-nano-editor-to-my-needs/#comments</comments>
		<pubDate>Sun, 24 Apr 2011 16:52:46 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Modding]]></category>
		<category><![CDATA[N3RD]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/?p=7594</guid>
		<description><![CDATA[Configuring your favourite Editor on OSX (or Linux, or anywhere else) is important &#8211; since nano is my editor of choice I wanted to use it&#8217;s syntax highlighting capabilities. Easy as pie as it turned out: I started with a .nanorc file from this guy and modified it to recognize some of my frequent file-types [...]]]></description>
			<content:encoded><![CDATA[<p>Configuring your favourite Editor on OSX (or Linux, or anywhere else) is important &#8211; since nano is my editor of choice I wanted to use it&#8217;s syntax highlighting capabilities. Easy as pie as it turned out:</p>
<p>I started with a .nanorc file from this guy and modified it to recognize some of my frequent file-types (like .cs files).</p>
<p style="text-align: center;"><a href="http://www.schrankmonster.de/wp-content/uploads/2011/04/Bildschirmfoto-2011-04-23-um-22.20.46.png" target="_blank"><img class="aligncenter size-medium wp-image-7596" title="Bildschirmfoto 2011-04-23 um 22.20.46" src="http://www.schrankmonster.de/wp-content/uploads/2011/04/Bildschirmfoto-2011-04-23-um-22.20.46-300x191.png" alt="" width="300" height="191" /></a></p>
<p>You can download my <a href="http://www.schrankmonster.de/wp-content/uploads/2011/04/nanorc.tar.gz">nanorc.tar</a> &#8211; just extract it and put it into your user home directory.</p>
<p>Source 1: <a href="http://talk.maemo.org/showthread.php?t=68421" target="_blank">http://talk.maemo.org/showthread.php?t=68421</a><br />
Source 2: <a href="http://www.nano-editor.org/dist/v2.2/nano.html#Nanorc-Files" target="_blank">http://www.nano-editor.org/dist/v2.2/nano.html#Nanorc-Files</a><br />
Source 3: <a href="http://www.schrankmonster.de/wp-content/uploads/2011/04/nanorc.tar.gz">nanorc.tar</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2011/04/24/configuring-the-nano-editor-to-my-needs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Photosynth now mobile&#8230;</title>
		<link>http://www.schrankmonster.de/2011/04/21/photosynth-now-mobile/</link>
		<comments>http://www.schrankmonster.de/2011/04/21/photosynth-now-mobile/#comments</comments>
		<pubDate>Thu, 21 Apr 2011 11:00:17 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Media]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[N3RD]]></category>
		<category><![CDATA[Panorama]]></category>
		<category><![CDATA[Research]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[travelling]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/?p=7578</guid>
		<description><![CDATA[It&#8217;s been some months years since the once Microsoft Research Project got public and Microsoft started offering it&#8217;s great Photosynth service to the public. I&#8217;ve been using the Microsoft panoramic and Photosynth tools for years now and I tend to say that they are the best tools one can get to create fast, easy and [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been some <del>months</del> years since the once Microsoft Research Project got public and Microsoft started offering it&#8217;s great Photosynth service to the public.</p>
<p>I&#8217;ve been using the Microsoft panoramic and Photosynth tools for years now and I tend to say that they are the best tools one can get to create fast, easy and high-quality panoramic images.</p>
<p style="text-align: left;">There is <a href="http://www.photosynth.net" target="_blank">photosynth.net </a>to store all those panoramic pictures like this one from 2008:</p>
<p style="text-align: center;">
<p>The photosynth technology itself contains several other interesting technologies like SeaDragon which allows high quality image zooming on current internet connection speeds.</p>
<p>This awesome technology is as of now available on the iPhone (3GS and upwards) and it&#8217;s better than all the other panoramic tools I&#8217;ve used on a phone.</p>
<p style="text-align: center;">
<div id="attachment_7582" class="wp-caption aligncenter" style="width: 210px"><img class="size-medium wp-image-7582 " title="Foto" src="http://www.schrankmonster.de/wp-content/uploads/2011/04/Foto-200x300.png" alt="" width="200" height="300" /><p class="wp-caption-text">the process of taking the images</p></div>
<div id="attachment_7583" class="wp-caption aligncenter" style="width: 210px"><img class="size-medium wp-image-7583 " title="Foto 1.." src="http://www.schrankmonster.de/wp-content/uploads/2011/04/Foto-1..-200x300.png" alt="" width="200" height="300" /><p class="wp-caption-text">after the pictures are taken additional stitching is needed</p></div>
<div id="attachment_7584" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.schrankmonster.de/wp-content/uploads/2011/04/Foto.jpg" target="_blank"><img class="size-medium wp-image-7584 " title="Foto" src="http://www.schrankmonster.de/wp-content/uploads/2011/04/Foto-300x261.jpg" alt="" width="300" height="261" /></a><p class="wp-caption-text">after the stitching completed a fairly impressive panoramic images is the result</p></div>
<p>Source 1: <a href="http://www.schrankmonster.de/?s=photosynth" target="_blank">Photosynth articles from the past</a><br />
Source 2: <a href="http://en.wikipedia.org/wiki/Photosynth" target="_blank">Photosynth in Wikipedia</a><br />
Source 3: <a href="http://itunes.apple.com/de/app/photosynth/id430065256?mt=8" target="_blank">Photosynth on iPhone App Store</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2011/04/21/photosynth-now-mobile/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>das außer-Haus Backup</title>
		<link>http://www.schrankmonster.de/2011/04/20/das-auser-haus-backup/</link>
		<comments>http://www.schrankmonster.de/2011/04/20/das-auser-haus-backup/#comments</comments>
		<pubDate>Wed, 20 Apr 2011 08:14:00 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[networking]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/?p=7566</guid>
		<description><![CDATA[Irgendwie werden es auch privat immer immer mehr Daten &#8211; mit immer zunehmender Geschwindigkeit&#8230; Alle paar Jahre tausche ich bei uns im Haushalt die Festplatten/Speicherlösung komplett aus &#8211; was zwar immer wieder mal eine Investitions bedeutet, gleichzeitig aber auch dafür sorgt dass Daten nicht irgendwelchen ungünstigen mechanischen, chemischen oder magnetischen Effekten zum Opfer fallen&#8230; Ja [...]]]></description>
			<content:encoded><![CDATA[<p>Irgendwie werden es auch privat immer immer mehr Daten &#8211; mit immer zunehmender Geschwindigkeit&#8230; Alle paar Jahre tausche ich bei uns im Haushalt die Festplatten/Speicherlösung komplett aus &#8211; was zwar immer wieder mal eine Investitions bedeutet, gleichzeitig aber auch dafür sorgt dass Daten nicht irgendwelchen ungünstigen mechanischen, chemischen oder magnetischen Effekten zum Opfer fallen&#8230; Ja so etwa alle zwei Jahre wird alles einmal umkopiert&#8230; Das dauerte beim letzten Mal zwar gut eine Woche, aber naja so ist das eben&#8230;</p>
<p>Aus vielerlei Grund haben wir auch für einen Haushalt recht viel Bedarf an Speicherplatz &#8211; teilweise wohl auch weil meine Frau Photographin ist &#8211; aber ich als &#8220;werf-nix-weg&#8221;-Typ werd da auch einen guten Anteil dran haben&#8230;</p>
<p>Herr über alle unsere Festplatten (kein Witz, die Rechner bei uns haben ihre Festplatten eigentlich nur um booten zu können) ist seit jeher ein einzelner Rechner welcher ebenso alle paar Jahre komplett ausgetauscht wird. Dieser Rechner verwaltet im Moment zwischen 12-15 Festplatten verschiedener Größe &#8211; Hauptarbeit wird zur Zeit durch drei separate (gewachsene) RAID-5 Volumes erledigt&#8230;</p>
<p style="text-align: center;"><a href="http://www.schrankmonster.de/wp-content/uploads/2011/04/Bildschirmfoto-2011-04-19-um-20.23.51.png" target="_blank"><img class="aligncenter size-medium wp-image-7570" title="Bildschirmfoto 2011-04-19 um 20.23.51" src="http://www.schrankmonster.de/wp-content/uploads/2011/04/Bildschirmfoto-2011-04-19-um-20.23.51-300x175.png" alt="" width="300" height="175" /></a></p>
<p>Nebenbei: Nein ich kann/will da kein RAID-6 fahren ohne entweder Linux zu verwenden (was aus verschiedenen Gründen nicht geht) oder einen Hardware-Controller zu verwenden, was nach einschlägigen Erfahrungen querbeet durch alle möglichen Hardware RAID Controller ausfällt.</p>
<p>Dem ganzen <a href="http://www.schrankmonster.de/content/binary/promise_zurueck_2.jpg" target="_blank">Festplattenstapel</a> liegt dann ein Standard-PC mit Windows Server 2008 zugrunde &#8211; zum einen weil ich so eine Lizenz noch herumliegen hatte und zum anderen weil ich in über 10 Jahren File-Server Erfahrungen sammeln noch nie auch nur ein Byte unter Windows verloren habe. Zusätzlich habe ich einen riesigen Haufen Software welche Windows-only ist ud sozusagen ständig laufen muss um Sinn zu machen (Mail-Server Puffer, Newsserver Mirror, Musik und Video Streaming Server, Medienbibliothek, Videorekorder,&#8230;</p>
<p>Diese drei großen RAID Volumes schnappt sich dann Truecrypt und ver- und entschlüsselt zuverlässig vor sich hin &#8211; im Endeffekt gibt es kein Byte Daten im Haushalt welches nicht verschlüsselt wäre. Gut für uns.</p>
<p>So ein RAID verhindert nun ja aber nicht dass dennoch oben genannte ungünstige Effekte eintreten und man mal eine oder mehrere Defekte zu beklagen hat. Im Normalfall tauscht man die defekte Festplatte, resynct das RAID und alles funktioniert weiter ohne dass man Daten verloren hätte. Allerdings ist das ja kein Backup. Das ist nur eine erste Absicherung gegen mögliche Defekte.</p>
<p>Getreu folgendem kurzen Musikstück:</p>
<p><a href="http://www.speichergurke.de/files/anaNAS_-_mein_RAID_ersetzt_kein_Backup.mp3">RAID ist kein Backup</a></p>
<p>&#8230; ist ein RAID eben kein Backup. Backups erledigt bei mir eine Sammlung von Scripten welche jeweils in festen Abständen Vollbackups und Differenz-Backups erstellt. Da kommt dann ein Haufen 1 Gbyte großer Dateien raus welche dann anschliessend per RSync in mühevoller (und dank funktionierendem QoS unbemerkt) Arbeit außer Haus geschafft werden. Die Komplett-Backups dauern aufgrund der großen Menge einfach ewig lang und lassen sich recht einfach dadurch beschleunigen dass man sozusagen das Backup physisch auf einer externen Festplatte zum Server trägt&#8230;die Differenz-Backups sind dann meist immer recht flott durchgelaufen. Speicherplatz im Internet wird ja auch immer billiger und so haben wir auch immer ein gutes Off-Site Backup unserer Daten&#8230;</p>
<p>Für Windows gibt es neben den üblichen Cygwin Ports von rsync auch eine gute GUI Version namens DeltaCopy. Das Ding kopiert zuverlässig und auch wenn mal der DSL Router rebootet oder hängt nimmt er selbständig die Kopierarbeit wieder auf sobald Netz wieder verfügbar ist.</p>
<p style="text-align: center;"><a href="http://www.schrankmonster.de/wp-content/uploads/2011/04/Bildschirmfoto-2011-04-19-um-21.40.15.png" target="_blank"><img class="aligncenter size-medium wp-image-7571" title="Bildschirmfoto 2011-04-19 um 21.40.15" src="http://www.schrankmonster.de/wp-content/uploads/2011/04/Bildschirmfoto-2011-04-19-um-21.40.15-300x234.png" alt="" width="300" height="234" /></a></p>
<p>Damit DeltaCopy seine Daten irgendwo abladen kann wird auf der Gegenstelle natürlich ein rsync Server vorrausgesetzt. Die Konfiguration eines solchen ist nicht sonderlich kompliziert &#8211; im Grunde muss man nur rsync installieren und die rsyncd.conf Datei anpassen. Zusätzlich dazu muss man eine Konfigurationsdatei anlegen in welchem nach dem Schema &#8220;Benutzername:Passwort&#8221; entsprechend die Nutzeraccounts angegeben werden &#8211; das wars eigentlich schon. <a href="http://de.wikipedia.org/wiki/Rsync" target="_blank">Rsync</a> ist sehr robust und vor allem auch gut für geringere Bandbreiten geeignet. Wenn sich an einer Datei nur wenige Bytes geändert haben müssen auch nur die geänderten Bytes übertragen werden.</p>
<p style="text-align: center;"><a href="http://www.schrankmonster.de/wp-content/uploads/2011/04/Bildschirmfoto-2011-04-19-um-21.52.55.png" target="_blank"><img class="aligncenter size-medium wp-image-7575" title="Bildschirmfoto 2011-04-19 um 21.52.55" src="http://www.schrankmonster.de/wp-content/uploads/2011/04/Bildschirmfoto-2011-04-19-um-21.52.55-300x166.png" alt="" width="300" height="166" /></a></p>
<p>Source 1: <a href="http://www.speichergurke.de" target="_blank">http://www.speichergurke.de</a><br />
Source 2: <a href="http://www.aboutmyip.com/AboutMyXApp/DeltaCopy.jsp" target="_blank">http://www.aboutmyip.com/AboutMyXApp/DeltaCopy.jsp</a><br />
Source 3: <a href="http://de.wikipedia.org/wiki/Rsync" target="_blank">http://de.wikipedia.org/wiki/Rsync</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2011/04/20/das-auser-haus-backup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://www.speichergurke.de/files/anaNAS_-_mein_RAID_ersetzt_kein_Backup.mp3" length="324843" type="audio/mpeg" />
		</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>modifying OS X terminal to make it more useable&#8230;</title>
		<link>http://www.schrankmonster.de/2011/03/28/modifying-os-x-terminal-to-make-it-more-useable/</link>
		<comments>http://www.schrankmonster.de/2011/03/28/modifying-os-x-terminal-to-make-it-more-useable/#comments</comments>
		<pubDate>Mon, 28 Mar 2011 10:20:25 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/?p=7553</guid>
		<description><![CDATA[Using OS X for the daily work is getting easier every day. And most of the time I am doing work using the Terminal.app. So there are some configuration changes necessary to make it even more useable&#8230; Edit /etc/bashrc and add some alias and color definitions alias ll=&#8221;ls -hfG&#8221; alias la=&#8221;ls -ahfG&#8221; export LSCOLORS=fxfxcxdxbxegedabagacad custom [...]]]></description>
			<content:encoded><![CDATA[<p>Using OS X for the daily work is getting easier every day. And most of the time I am doing work using the Terminal.app.</p>
<p style="text-align: center;">So there are some configuration changes necessary to make it even more useable&#8230;<a href="http://www.schrankmonster.de/wp-content/uploads/2011/03/Bildschirmfoto-2011-03-28-um-11.59.39.png" target="_blank"><img class="aligncenter size-medium wp-image-7555" title="Bildschirmfoto 2011-03-28 um 11.59.39" src="http://www.schrankmonster.de/wp-content/uploads/2011/03/Bildschirmfoto-2011-03-28-um-11.59.39-300x166.png" alt="" width="300" height="166" /></a></p>
<ol>
<li>Edit /etc/bashrc and add some alias and color definitions
<ol>
<li>alias ll=&#8221;ls -hfG&#8221;</li>
<li>alias la=&#8221;ls -ahfG&#8221;</li>
<li>export LSCOLORS=fxfxcxdxbxegedabagacad</li>
</ol>
</li>
<li>custom color schemes can be defined using the <a href="http://geoff.greer.fm/lscolors/" target="_blank">lscolors tool</a></li>
<li>install screen (using <a href="http://www.macports.org/" target="_blank">MacPorts</a> for example) and setup a ~/.screenrc
<ol>
<li><a href="http://www.schrankmonster.de/wp-content/uploads/2011/03/ScreenRC.tar.gz" target="_blank">Download a sample .screenrc</a></li>
</ol>
</li>
</ol>
<p>Source 1: <a href="http://geoff.greer.fm/lscolors/" target="_blank">http://geoff.greer.fm/lscolors/</a><br />
Source 2: <a href="http://www.macports.org/" target="_blank">http://www.macports.org/</a><br />
Source 3: <a href="http://www.schrankmonster.de/wp-content/uploads/2011/03/ScreenRC.tar.gz">ScreenRC.tar</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2011/03/28/modifying-os-x-terminal-to-make-it-more-useable/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>great SIP Softphone for Linux and Windows</title>
		<link>http://www.schrankmonster.de/2010/12/01/great-sip-softphone-for-linux-and-windows/</link>
		<comments>http://www.schrankmonster.de/2010/12/01/great-sip-softphone-for-linux-and-windows/#comments</comments>
		<pubDate>Wed, 01 Dec 2010 10:23:38 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2010/12/01/great-sip-softphone-for-linux-and-windows/</guid>
		<description><![CDATA[Thank goodness I can uninstall X-Lite! At sones we are using a SIP based telephony solution. And therefore some times a SIP softphone application is needed along with the obligatory hardware SIP telephones. Till today the only half-working software I knew for that task was X-Lite. But a colleague told me today that there is [...]]]></description>
			<content:encoded><![CDATA[<p>Thank goodness I can uninstall X-Lite! At sones we are using a SIP based telephony solution. And therefore some times a SIP softphone application is needed along with the obligatory hardware SIP telephones. Till today the only half-working software I knew for that task was X-Lite. But a colleague told me today that there is a better software which not even looks better but also works better than X-Lite.</p>
<p>It’s called “Ekiga” and it’s a GTK based open source application which can run on Windows and Linux. It looks clean and therefore nice and works great.</p>
<p>A special tip from me: Abort the Welcome Wizard because the only thing it does is registering you with ekigas’ own services.</p>
<p align="center"><a href="http://ekiga.org/" target="_blank"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="Capture" border="0" alt="Capture" src="http://www.schrankmonster.de/wp-content/uploads/2010/12/Capture.png" width="264" height="504" /></a></p>
<p>Source: <a title="http://ekiga.org/" href="http://ekiga.org/">http://ekiga.org/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2010/12/01/great-sip-softphone-for-linux-and-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FFN-Switcher auf GitHub umgezogen</title>
		<link>http://www.schrankmonster.de/2010/10/27/ffn-switcher-auf-github-umgezogen/</link>
		<comments>http://www.schrankmonster.de/2010/10/27/ffn-switcher-auf-github-umgezogen/#comments</comments>
		<pubDate>Wed, 27 Oct 2010 15:22:00 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[freies Funknetz]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2010/10/27/ffn-switcher-auf-github-umgezogen/</guid>
		<description><![CDATA[Es ist ja nun schonwieder einige Zeit her dass ich etwas über meine CB-Funk Software namens “FFN-Switcher” geschrieben habe. Nun ist es immerhin mal wieder soweit dass ich zeit gefunden habe mich mit einigen Bugfixes zu beschäftigen. Gleichzeitig habe ich den Sourcecode von meinem privaten Subversion Repository auf den öffentlich zugänglichen GitHub Dienst hochgeladen. Dort [...]]]></description>
			<content:encoded><![CDATA[<p>Es ist ja nun schonwieder einige Zeit her dass ich etwas über meine CB-Funk Software namens “FFN-Switcher” geschrieben habe. Nun ist es immerhin mal wieder soweit dass ich zeit gefunden habe mich mit einigen Bugfixes zu beschäftigen.</p>
<p>Gleichzeitig habe ich den Sourcecode von meinem privaten Subversion Repository auf den öffentlich zugänglichen <a href="http://github.com/bietiekay/ffn-switcher/" target="_blank">GitHub Dienst hochgeladen</a>. Dort kann der Sourcecode und was noch viel wichtiger ist: die Bug- und Wunschliste abgerufen und editiert werden.</p>
<p>&#160;</p>
<p align="center"><a href="http://www.schrankmonster.de/wp-content/uploads/2010/10/github-ffnswitcher.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="github-ffnswitcher" border="0" alt="github-ffnswitcher" src="http://www.schrankmonster.de/wp-content/uploads/2010/10/github-ffnswitcher_thumb.png" width="404" height="360" /></a></p>
<p align="center"><a href="http://github.com/bietiekay/ffn-switcher/">http://github.com/bietiekay/ffn-switcher/</a>&#160;</p>
<p>Natürlich gab es in der Zwischenzeit auch einige Bugfixes. Sodass mittlerweile Version 111 online steht und über die automatische Updatefunktion abgerufen werden kann.</p>
<p>Source: <a href="http://github.com/bietiekay/ffn-switcher/">http://github.com/bietiekay/ffn-switcher/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2010/10/27/ffn-switcher-auf-github-umgezogen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mono 2.8 released!</title>
		<link>http://www.schrankmonster.de/2010/10/07/mono-2-8-released/</link>
		<comments>http://www.schrankmonster.de/2010/10/07/mono-2-8-released/#comments</comments>
		<pubDate>Thu, 07 Oct 2010 18:12:01 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[sones]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2010/10/07/mono-2-8-released/</guid>
		<description><![CDATA[Hurray! Finally the 2.8 version of Mono – the platform independent open source .NET framework is available as of today. I finally don’t have to recompile the trunk every now and then to get my bits running The Major Highlights according to the release notes are: C# 4.0 Defaults to the 4.0 profile. New Garbage [...]]]></description>
			<content:encoded><![CDATA[<p>Hurray! Finally the 2.8 version of Mono – the platform independent open source .NET framework is available as of today. I finally don’t have to recompile the trunk every now and then to get my bits running <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/2010/10/wlEmoticon-smile1.png" /></p>
<p>The Major Highlights according to the release notes are:</p>
<ul>
<li><a href="http://www.mono-project.com/CSharp">C# 4.0</a></li>
<li>Defaults to the 4.0 profile. </li>
<li>New Garbage Collection engine </li>
<li>New Frameworks:
<ul>
<li>Parallel Framework </li>
<li>System.XAML </li>
</ul>
</li>
<li>Threadpool exception behavior has changed to match .NET 2.0
<ul>
<li>potentially a breaking change for a lot of Mono-only software </li>
<li>See information below in the &quot;Runtime&quot; section. </li>
</ul>
</li>
<li>New Microsoft open sourced frameworks bundled:
<ul>
<li>System.Dynamic </li>
<li>Managed Extensibility Framework </li>
<li>ASP.NET MVC 2 </li>
<li>System.Data.Services.Client (OData client framework) </li>
</ul>
</li>
<li>Performance
<ul>
<li>Large performance improvements </li>
<li>LLVM support has graduated to stable
<ul>
<li>Use mono-llvm command to run your server loads with the LLVM backend </li>
</ul>
</li>
</ul>
</li>
<li>Preview of the <a href="http://www.mono-project.com/Generational_GC">Generational Garbage Collector</a></li>
<li>Version 2.0 of the <a href="http://www.mono-project.com/Embedding_Mono#Updates_for_Mono_version_2.8.2B">embedding API</a></li>
<li>WCF Routing </li>
<li>.NET 4.0&#8242;s CodeContracts </li>
<li>Removed the 1.1 profile and various deprecated libraries. </li>
<li>OpenBSD support integrated </li>
<li>ASP.NET 4.0 </li>
<li>Mono no longer depends on GLIB </li>
</ul>
<p>Oh – they even linked my <a href="http://developers.sones.de/2010/09/09/benchmarking-the-sones-graphdb-on-mono-sgen-and-net/" target="_blank">benchmark article</a>.</p>
<p>Source: <a title="http://www.mono-project.com/Release_Notes_Mono_2.8" href="http://www.mono-project.com/Release_Notes_Mono_2.8">http://www.mono-project.com/Release_Notes_Mono_2.8</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2010/10/07/mono-2-8-released/feed/</wfw:commentRss>
		<slash:comments>0</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>Windows Live Writer 2011 is available&#8230;</title>
		<link>http://www.schrankmonster.de/2010/10/03/windows-live-writer-2011-is-available/</link>
		<comments>http://www.schrankmonster.de/2010/10/03/windows-live-writer-2011-is-available/#comments</comments>
		<pubDate>Sun, 03 Oct 2010 11:01:32 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Blog-o-Sphere]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2010/10/03/windows-live-writer-2011-is-available/</guid>
		<description><![CDATA[I am a huge fan of the Windows Live Writer. It’s been some years now since Microsoft made this free tool available to bloggers who want to blog on Windows. And in a bold move Microsoft announced the other week that they will be moving all Windows Live Spaces weblogs (a free weblog hosting service) [...]]]></description>
			<content:encoded><![CDATA[<p>I am a huge fan of the Windows Live Writer. It’s been some years now since Microsoft made this free tool available to bloggers who want to blog on Windows. And in a bold move Microsoft <a href="http://wordpress.visitmix.com/" target="_blank">announced the other week that they will be moving all Windows Live Spaces weblogs (a free weblog hosting service) to WordPress.</a> </p>
<p>In an accompanying step they just released the 2011 version of the Windows Live Writer. Actually I think it’s a shame that there is no comparable tool on Mac OS X &#8230; which is quite unusual since those types of tools in that quality are more common on the apple platform.</p>
<p>The new Window Live Writer 2011 comes with the Ribbon UI already known from Office 2007 and 2010 (and 2011 now).</p>
<p align="center"><a href="http://www.schrankmonster.de/wp-content/uploads/2010/10/wlw2011.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="wlw2011" border="0" alt="wlw2011" src="http://www.schrankmonster.de/wp-content/uploads/2010/10/wlw2011_thumb.png" width="404" height="207" /></a></p>
<p>Source 1: <a title="http://wordpress.visitmix.com/" href="http://wordpress.visitmix.com/">http://wordpress.visitmix.com/</a>    <br />Source 2: <a href="http://explore.live.com/windows-live-essentials">http://explore.live.com/windows-live-essentials</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2010/10/03/windows-live-writer-2011-is-available/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>visualize your source control</title>
		<link>http://www.schrankmonster.de/2010/10/02/visualize-your-source-control/</link>
		<comments>http://www.schrankmonster.de/2010/10/02/visualize-your-source-control/#comments</comments>
		<pubDate>Sat, 02 Oct 2010 08:49:43 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[graphics]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2010/10/02/visualize-your-source-control/</guid>
		<description><![CDATA[There’s a great tool available to create impressive visualizations of source code repositories: “Software projects are displayed by Gource as an animated tree with the root directory of the project at its centre. Directories appear as branches with files as leaves. Developers can be seen working on the tree at the times they contributed to [...]]]></description>
			<content:encoded><![CDATA[<p>There’s a great tool available to create impressive visualizations of source code repositories:</p>
<p><em>“Software projects are displayed by Gource as an animated tree with the root directory of the project at its centre. Directories appear as branches with files as leaves. Developers can be seen working on the tree at the times they contributed to the project. </em></p>
<p><em>Currently there is first party support for <strong>Git</strong>, <strong>Mercurial</strong> and <strong>Bazaar</strong>, and third party (using additional steps) for </em><a href="http://code.google.com/p/gource/wiki/CVS"><em>CVS</em></a><em> and </em><a href="http://code.google.com/p/gource/wiki/SVN"><em>SVN</em></a><em>. “</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:75aa0481-1b05-4946-b6b1-acbc29121822" class="wlWriterEditableSmartContent">
<div><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/NjUuAuBcoqs?fs=1&amp;hl=de_DE&amp;hl=en"></param><embed src="http://www.youtube.com/v/NjUuAuBcoqs?fs=1&amp;hl=de_DE&amp;hl=en" type="application/x-shockwave-flash" width="425" height="355"></embed></object></div>
</div>
<p>&#160;</p>
<p>Source: <a title="http://code.google.com/p/gource/" href="http://code.google.com/p/gource/">http://code.google.com/p/gource/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2010/10/02/visualize-your-source-control/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>draw concept maps the easy way</title>
		<link>http://www.schrankmonster.de/2010/09/21/draw-concept-maps-the-easy-way/</link>
		<comments>http://www.schrankmonster.de/2010/09/21/draw-concept-maps-the-easy-way/#comments</comments>
		<pubDate>Tue, 21 Sep 2010 13:33:41 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2010/09/21/draw-concept-maps-the-easy-way/</guid>
		<description><![CDATA[I often have to draw concept diagrams and until now I had to use MindMap tools and tools like Visio. And up until now it wasn’t that much fun… but first things first, what’s a Concept Map? “A concept map is a diagram showing the relationships among concepts. They are graphical tools for organizing and [...]]]></description>
			<content:encoded><![CDATA[<p>I often have to draw concept diagrams and until now I had to use MindMap tools and tools like Visio. And up until now it wasn’t that much fun… but first things first, what’s a Concept Map?</p>
<p><em>“A <b>concept map</b> is a </em><em>diagram</em><em> showing the relationships among </em><em>concepts</em><em>. They are graphical tools for organizing and representing </em><em>knowledge</em><em>.</em></p>
<p><em>Concepts, usually represented as boxes or circles, are connected with labeled arrows in a downward-branching hierarchical structure. The relationship between concepts can be articulated in linking phrases such as &quot;gives rise to&quot;, &quot;results in&quot;, &quot;is required by,&quot; or &quot;contributes to&quot;.</em><em>”</em></p>
<p>For example a concept map might looks like this:</p>
<p align="center"><a href="http://www.schrankmonster.de/wp-content/uploads/2010/09/conceptmapsample.png" target="_blank"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="conceptmapsample" border="0" alt="conceptmapsample" src="http://www.schrankmonster.de/wp-content/uploads/2010/09/conceptmapsample_thumb.png" width="400" height="281" /></a> </p>
<p>So I found a tool called “IHMC CmapTools” – a great package of software available for Windows, Mac OS X and Linux. And this tool makes it so much easier to create impressive and expressive concept maps. It’s freeware and can be used even for commercial purposes.</p>
<p align="center"><a href="http://cmap.ihmc.us/" target="_blank"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="cmaptools" border="0" alt="cmaptools" src="http://www.schrankmonster.de/wp-content/uploads/2010/09/cmaptools.png" width="400" height="302" /></a> </p>
<p>Source: <a title="http://cmap.ihmc.us/" href="http://cmap.ihmc.us/">http://cmap.ihmc.us/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2010/09/21/draw-concept-maps-the-easy-way/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>style your Visual Studio</title>
		<link>http://www.schrankmonster.de/2010/09/21/style-your-visual-studio/</link>
		<comments>http://www.schrankmonster.de/2010/09/21/style-your-visual-studio/#comments</comments>
		<pubDate>Tue, 21 Sep 2010 13:07:37 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Modding]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2010/09/21/style-your-visual-studio/</guid>
		<description><![CDATA[It’s been some time since I’ve written about a Visual Studio Color Theme Generator. And obviously since then a lot happened in the world of customization tools. The website studiostyles.info is there to help the day with a lot of previewable Visual Studio styles. Even better: all styles can be exported for Visual Studio 2005, [...]]]></description>
			<content:encoded><![CDATA[<p>It’s been some time since I’ve written about a <a href="http://www.schrankmonster.de/2008/08/10/visual-studio-color-theme-generator/" target="_blank">Visual Studio Color Theme Generator</a>. And obviously since then a lot happened in the world of customization tools.</p>
<p>The website <a href="http://studiostyles.info/" target="_blank">studiostyles.info</a> is there to help the day with a lot of previewable Visual Studio styles. Even better: all styles can be exported for Visual Studio 2005, 2008 and 2010.</p>
<p align="center"><a href="http://studiostyles.info" target="_blank"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="studiostyles" border="0" alt="studiostyles" src="http://www.schrankmonster.de/wp-content/uploads/2010/09/studiostyles.png" width="400" height="298" /></a></p>
<p>For Visual Studio 2010 you get a .vssettings file which can be imported into Visual Studio using the Tools-&gt;Import&#160; and Export Settings… menu item.</p>
<p align="center"><a href="http://www.schrankmonster.de/wp-content/uploads/2010/09/importstyle.png" target="_blank"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="importstyle" border="0" alt="importstyle" src="http://www.schrankmonster.de/wp-content/uploads/2010/09/importstyle_thumb.png" width="400" height="358" /></a> </p>
<p align="center"><a href="http://www.schrankmonster.de/wp-content/uploads/2010/09/codeeditorstyle.png" target="_blank"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="codeeditorstyle" border="0" alt="codeeditorstyle" src="http://www.schrankmonster.de/wp-content/uploads/2010/09/codeeditorstyle_thumb.png" width="400" height="349" /></a> </p>
<p>For Visual Studio 2010 there are additional color styling options available. Microsoft offers a plugin for Visual Studio 2010 called <a href="http://visualstudiogallery.msdn.microsoft.com/en-us/20cd93a2-c435-4d00-a797-499f16402378" target="_blank">Visual Studio Color Theme Editor</a>. Using this tool everything else can be color customized. So you can have something like that:</p>
<p align="center"><a href="http://www.schrankmonster.de/wp-content/uploads/2010/09/vs2010colortheme.png" target="_blank"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="vs2010colortheme" border="0" alt="vs2010colortheme" src="http://www.schrankmonster.de/wp-content/uploads/2010/09/vs2010colortheme_thumb.png" width="400" height="287" /></a> </p>
<p>Source 1: <a title="http://www.schrankmonster.de/2008/08/10/visual-studio-color-theme-generator/" href="http://www.schrankmonster.de/2008/08/10/visual-studio-color-theme-generator/">http://www.schrankmonster.de/2008/08/10/visual-studio-color-theme-generator/</a>    <br />Source 2: <a title="http://studiostyles.info/" href="http://studiostyles.info/">http://studiostyles.info/</a>    <br />Source 3: <a href="http://visualstudiogallery.msdn.microsoft.com/en-us/20cd93a2-c435-4d00-a797-499f16402378" target="_blank">Visual Studio Color Theme Editor</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2010/09/21/style-your-visual-studio/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>If you need a hard disk image done fast</title>
		<link>http://www.schrankmonster.de/2010/07/12/if-you-need-a-hard-disk-image-done-fast/</link>
		<comments>http://www.schrankmonster.de/2010/07/12/if-you-need-a-hard-disk-image-done-fast/#comments</comments>
		<pubDate>Mon, 12 Jul 2010 11:06:37 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2010/07/12/if-you-need-a-hard-disk-image-done-fast/</guid>
		<description><![CDATA[If you want to create a (mountable, bootable) image of your local hard disk just use that small and cool tool Disk4vhd &#160; Source: http://technet.microsoft.com/en-us/sysinternals/ee656415.aspx]]></description>
			<content:encoded><![CDATA[<p>If you want to create a (mountable, bootable) image of your local hard disk just use that small and cool tool Disk4vhd</p>
<p><a href="http://technet.microsoft.com/en-us/sysinternals/ee656415.aspx" 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" class="wlDisabledImage" title="ee656415.Disk2vhd_1-5(en-us,MSDN.10)" border="0" alt="ee656415.Disk2vhd_1-5(en-us,MSDN.10)" src="http://www.schrankmonster.de/wp-content/uploads/2010/07/ee656415.Disk2vhd_15enusMSDN.10.jpg" width="244" height="196" /></a></p>
<p>&#160;</p>
<p>Source: <a title="http://technet.microsoft.com/en-us/sysinternals/ee656415.aspx" href="http://technet.microsoft.com/en-us/sysinternals/ee656415.aspx">http://technet.microsoft.com/en-us/sysinternals/ee656415.aspx</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2010/07/12/if-you-need-a-hard-disk-image-done-fast/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To strip those TFS Source Control references from Visual Studio Solutions</title>
		<link>http://www.schrankmonster.de/2010/04/22/how-to-strip-those-tfs-source-control-references-from-visual-studio-solutions-2/</link>
		<comments>http://www.schrankmonster.de/2010/04/22/how-to-strip-those-tfs-source-control-references-from-visual-studio-solutions-2/#comments</comments>
		<pubDate>Thu, 22 Apr 2010 12:55:53 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Employer]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[sones]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2010/04/22/how-to-strip-those-tfs-source-control-references-from-visual-studio-solutions-2/</guid>
		<description><![CDATA[Every once in a while you download some code and fire up your Visual Studio and find out that this particular solution was once associated to a team foundation server you don’t know or have a login to. Like when you download source code from CodePlex and you get this “Please type in your username+password [...]]]></description>
			<content:encoded><![CDATA[<p>Every once in a while you download some code and fire up your Visual Studio and find out that this particular solution was once associated to a team foundation server you don’t know or have a login to. Like when you download source code from CodePlex and you get this <em>“Please type in your username+password for this CodePlex Team Foundation Server”</em>.</p>
<p>Or maybe you’re working on your companies team foundation server and you want to put some code out in the public. You surely want to get rid of these Team Foundation Server bindings.</p>
<p>There’s a fairly complicated way in Visual Studio to do this but since I was able to produce unforseen side effects I do not recommend it. </p>
<p>So what I did was looking into those files a Visual Studio Solution and Project consists of. And I found that there are really just a few files that hold those association information. As you can see in the picture below there are several files side by side to the .sln and .csproj files – like that .vssscc and .vspscc file. Even inside the .csproj and .sln file there are hints that lead to the team foundation server – so obviously besides removing some files a tool would have to edit some files to remove the tfs association.</p>
<p align="center"><a href="http://www.schrankmonster.de/wp-content/uploads/2010/04/stripfiles.png" target="_blank"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="strip-files" border="0" alt="strip-files" src="http://www.schrankmonster.de/wp-content/uploads/2010/04/stripfiles_thumb.png" width="404" height="325" /></a> </p>
<p>So I wrote such a tool and I am going release it’s source code just beneath this article. Have fun with it. It compiles with Visual Studio and even Mono Xbuild – actually I wrote it with Monodevelop on Linux <img src='http://www.schrankmonster.de/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  Multi-platform galore! Who would have thought of that in the founding days of the .NET platform?</p>
<p align="center"><a href="http://www.schrankmonster.de/wp-content/uploads/2010/04/BildschirmfotoStripTeamFoundationServerInformationMain.csMonoDevelop.png" target="_blank"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="Bildschirmfoto-StripTeamFoundationServerInformation - Main.cs - MonoDevelop" border="0" alt="Bildschirmfoto-StripTeamFoundationServerInformation - Main.cs - MonoDevelop" src="http://www.schrankmonster.de/wp-content/uploads/2010/04/BildschirmfotoStripTeamFoundationServerInformationMain.csMonoDevelop_thumb.png" width="404" height="277" /></a> </p>
<p>So this is easy – this small tool runs on command line and takes one parameter. This parameter is the path to a folder you want to traverse and remove all team foundation server associations in. So normally I take a check-out folder and run the tool on that folder and all its subfolders to remove all associations.</p>
<p>So if you want to have this cool tool you just have to click here: <a href="http://www.schrankmonster.de/wp-content/uploads/2010/04/StripTeamFoundationServerInformation.zip">Sourcecode Download</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2010/04/22/how-to-strip-those-tfs-source-control-references-from-visual-studio-solutions-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I am a space ship captain. Not.</title>
		<link>http://www.schrankmonster.de/2010/04/22/i-am-a-space-ship-captain-not/</link>
		<comments>http://www.schrankmonster.de/2010/04/22/i-am-a-space-ship-captain-not/#comments</comments>
		<pubDate>Thu, 22 Apr 2010 12:35:45 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Mobile]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2010/04/22/i-am-a-space-ship-captain-not/</guid>
		<description><![CDATA[So finally after years and years of hope and nerdy ideas I am able to hold a tablet device in my own hands and it’s not only as good as Picards tablet was back in that great “Star Trek: Next Generation” series, it’s better. Of course I had to import that particular iPad from the [...]]]></description>
			<content:encoded><![CDATA[<p>So finally after years and years of hope and nerdy ideas I am able to hold a tablet device in my own hands and it’s not only as good as Picards tablet was back in that great “Star Trek: Next Generation” series, it’s better.</p>
<p align="center"><a href="http://www.schrankmonster.de/wp-content/uploads/2010/04/IMG_0964.jpg" target="_blank"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="IMG_0964" border="0" alt="IMG_0964" src="http://www.schrankmonster.de/wp-content/uploads/2010/04/IMG_0964_thumb.jpg" width="304" height="404" /></a> </p>
<p>Of course I had to import that particular iPad from the U.S. (thanks Alex!) – actually it was the first time I imported something that expensive. Beside some fun with the shipping company everything went fine. Since Apple just announced to delay the launch of the iPad in Europe for a month it’s nice to have a gadget just a few weeks after it was available in the U.S.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2010/04/22/i-am-a-space-ship-captain-not/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using Windows Deployment Services (WDS) to install Linux over Network (PXE)</title>
		<link>http://www.schrankmonster.de/2010/03/10/using-windows-deployment-services-wds-to-install-linux-over-network-pxe/</link>
		<comments>http://www.schrankmonster.de/2010/03/10/using-windows-deployment-services-wds-to-install-linux-over-network-pxe/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 12:50:32 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[networking]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2010/03/10/using-windows-deployment-services-wds-to-install-linux-over-network-pxe/</guid>
		<description><![CDATA[Developing software is hard work – especially when you target several operating systems. One task that you have to perform quite often would be to deploy a new installation of an operating system as fast as possible on a test machine. Doing this with Windows is easy – you can use the Windows Deployment Services [...]]]></description>
			<content:encoded><![CDATA[<p>Developing software is hard work – especially when you target several operating systems. One task that you have to perform quite often would be to deploy a new installation of an operating system as fast as possible on a test machine. </p>
<p>Doing this with Windows is easy – you can use the Windows Deployment Services to bootstrap Windows onto almost every machine which can boot over ethernet using <a href="http://en.wikipedia.org/wiki/Preboot_Execution_Environment" target="_blank">PXE</a>. Everything needed to make WDS work on a Windows Boot-Image is located on that image. Since it’s that easy I won’t dive into more detail here. </p>
<p>What I want to show in greater detail is how you can use WDS to deploy even Linux over your network.</p>
<p><strong>Step 1: Get </strong><a href="http://syslinux.zytor.com/wiki/index.php/PXELINUX" target="_blank"><strong>PXELINUX</strong></a></p>
<p>What’s needed to boot Linux over a network is a dedicated PXE Boot Loader. This one is called PXELINUX and can be <a href="http://syslinux.zytor.com/wiki/index.php/PXELINUX" target="_blank">downloaded here.</a></p>
<p><em>“PXELINUX is a SYSLINUX derivative, for booting Linux off a network server, using a network ROM conforming to the Intel PXE (Pre-Execution Environment) specification.”</em></p>
<p>On the homepage of PXELINUX is also a short tutorial which files you need and where to copy them.</p>
<p><strong>Step 2: Setup WDS with PXELINUX</strong></p>
<p>I suppose you got your WDS Installation up and running and you are able to deploy Windows. If that’s the case you can go to your WDS Server Management Tool and right-click on the server name – in my case “fileserver.sones”. If you select “Properties” in the context menu you would see the properties windows like in the screenshot below:</p>
<p><a href="http://www.schrankmonster.de/wp-content/uploads/2010/03/wds_pxelinux.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="wds_pxelinux" border="0" alt="wds_pxelinux" src="http://www.schrankmonster.de/wp-content/uploads/2010/03/wds_pxelinux_thumb.png" width="391" height="404" /></a> </p>
<p>You have to change the Boot-Loader from the standard Windows BootMgr to the newly downloaded PXELINUX bootloader. Since this bootloader comes with it’s own set of config files you can edit this config file to allow booting into Windows.</p>
<p><strong>Step 3: Edit PXELINUX configuration file</strong><a href="http://www.schrankmonster.de/wp-content/uploads/2010/03/wdspxelinux2.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="wds-pxelinux-2" border="0" alt="wds-pxelinux-2" src="http://www.schrankmonster.de/wp-content/uploads/2010/03/wdspxelinux2_thumb.png" width="404" height="276" /></a>&#160;</p>
<p>The first entry I made into the boot menu of the PXELINUX boot loader is the “Install Windows…” entry. Since the first thing the users will see after booting is the PXELINUX loader menu they need to be able to continue to their Windows Installation. Since this Windows Installation cannot be handled by the PXELINUX loader you have to define a boot menu entry which looks a lot like this:</p>
<blockquote><p><em>LABEL wds       <br />MENU LABEL Install Windows&#8230;        <br />KERNEL pxeboot.0</em></p>
</blockquote>
<p>To add OpenSuSE to the menu you would add an entry looking like this:</p>
<blockquote><p><em>LABEL opensuse       <br />MENU LABEL Install OpenSuSE 11.x        <br />kernel /Linux/opensuse/linux        <br />append initrd=/Linux/opensuse/initrd splash=silent showopts</em></p>
</blockquote>
<p>The paths given in the above entry should be altered according to the paths you’re using in your installation. I took the /Linux/opensuse/ files from the network install dvd images of OpenSuSE.</p>
<p><a href="http://www.schrankmonster.de/wp-content/uploads/2010/03/wdspxelinux3.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="wds-pxelinux-3" border="0" alt="wds-pxelinux-3" src="http://www.schrankmonster.de/wp-content/uploads/2010/03/wdspxelinux3_thumb.png" width="404" height="263" /></a> </p>
<p>That’s basically everything there is about the installation of Linux (Debian works accordingly) over PXE and WDS.</p>
<p>And finally this is what it should look like if everything worked great:</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:c2092d33-9e12-472c-9b5d-c3701b1eb8d7" class="wlWriterEditableSmartContent">
<div><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/PipxCH4T1N8&amp;hl=en"></param><embed src="http://www.youtube.com/v/PipxCH4T1N8&amp;hl=en" type="application/x-shockwave-flash" width="425" height="355"></embed></object></div>
</div>
<p>&#160;</p>
<p>Source 1: <a title="http://en.wikipedia.org/wiki/Preboot_Execution_Environment" href="http://en.wikipedia.org/wiki/Preboot_Execution_Environment">http://en.wikipedia.org/wiki/Preboot_Execution_Environment</a>    <br />Source 2: <a title="http://syslinux.zytor.com/wiki/index.php/PXELINUX" href="http://syslinux.zytor.com/wiki/index.php/PXELINUX">http://syslinux.zytor.com/wiki/index.php/PXELINUX</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2010/03/10/using-windows-deployment-services-wds-to-install-linux-over-network-pxe/feed/</wfw:commentRss>
		<slash:comments>10</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>137 years of Popular Science is available now</title>
		<link>http://www.schrankmonster.de/2010/03/07/137-years-of-popular-science-is-available-now/</link>
		<comments>http://www.schrankmonster.de/2010/03/07/137-years-of-popular-science-is-available-now/#comments</comments>
		<pubDate>Sun, 07 Mar 2010 13:04:33 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[books]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[makes-my-day]]></category>
		<category><![CDATA[Research]]></category>
		<category><![CDATA[rocket-science]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2010/03/07/137-years-of-popular-science-is-available-now/</guid>
		<description><![CDATA[That’s great news for everyone interested in science and history. As it turns out Google and PopSci just made their entire 137-year archive available online… good times! “We&#8217;ve partnered with Google to offer our entire 137-year archive for free browsing. Each issue appears just as it did at its original time of publication, complete with [...]]]></description>
			<content:encoded><![CDATA[<p>That’s great news for everyone interested in science and history. As it turns out Google and PopSci just made their entire 137-year archive available online… good times!</p>
<p>“We&#8217;ve partnered with Google to offer our entire 137-year archive for free browsing. Each issue appears just as it did at its original time of publication, complete with period advertisements. It&#8217;s an amazing resource that beautifully encapsulates our ongoing fascination with the future, and science and technology&#8217;s incredible potential to improve our lives. We hope you enjoy it as much as we do.”</p>
<p><a href="http://www.popsci.com/archives" 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="137years" border="0" alt="137years" src="http://www.schrankmonster.de/wp-content/uploads/2010/03/137years.png" width="382" height="404" /></a> </p>
<p>Source: <a title="http://www.popsci.com/archives" href="http://www.popsci.com/archives">http://www.popsci.com/archives</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2010/03/07/137-years-of-popular-science-is-available-now/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Developing on a Microsoft Surface Table</title>
		<link>http://www.schrankmonster.de/2010/02/20/developing-on-a-microsoft-surface-table/</link>
		<comments>http://www.schrankmonster.de/2010/02/20/developing-on-a-microsoft-surface-table/#comments</comments>
		<pubDate>Sat, 20 Feb 2010 19:40:55 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Employer]]></category>
		<category><![CDATA[graphics]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[sones]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2010/02/20/developing-on-a-microsoft-surface-table/</guid>
		<description><![CDATA[At sones I am involved in a project that works with a piece of hardware I wanted to work with for about 3 years now: the Microsoft Surface Table. I was able to play with some tables every now and then but I never had a “business case” which contained a Surface. Now that case [...]]]></description>
			<content:encoded><![CDATA[<p>At sones I am involved in a project that works with a piece of hardware I wanted to work with for about 3 years now: the Microsoft Surface Table.</p>
<p>I was able to play with some tables every now and then but I never had a “business case” which contained a Surface. Now that case just came to us: sones is at the CeBIT fair this year – we were invited by <a href="http://www.microsoft.de">Microsoft Germany</a> to join them and present our cool technology along with theirs.</p>
<p>Since we already had a graph visualisation tool the idea was to bring that tool to Surface and use the platform specific touch controls and gestures.</p>
<p align="center"><a href="http://www.schrankmonster.de/wp-content/uploads/2010/02/surface_visualgraph.png" target="_blank"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="surface_visualgraph" border="0" alt="surface_visualgraph" src="http://www.schrankmonster.de/wp-content/uploads/2010/02/surface_visualgraph_thumb.png" width="404" height="228" /></a>    <br />the VisualGraph application that gave the initial idea</p>
<p>The good news was that it’s easier than thought to develop an application for Surface and all parties are highly committed to the project. The bad news is that we were short on time right from the start: less than 10 days from concept to live presentation isn’t the definition of “comfortable time schedule”. And since we’re currently in the process of development it’s a continueing race.</p>
<p>Thankfully Microsoft is committed to a degree they even made it possible to have two great Surface and WPF ninjas who enable is to get up to speed with the project (thanks to Frank Fischer, Andrea Kohlbauer-Hug, Rainer Nasch and Denis Bauer, you guys rock!).</p>
<p align="center"><a href="http://www.schrankmonster.de/wp-content/uploads/2010/02/surface_simulator.png" target="_blank"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="surface_simulator" border="0" alt="surface_simulator" src="http://www.schrankmonster.de/wp-content/uploads/2010/02/surface_simulator_thumb.png" width="387" height="244" /></a>    <br />a Surface simulator</p>
<p>I was able to convice <a href="http://www.uid.com">UID</a> to jump in and contribute their designing and user interface knowledge to our little project (thanks to Franz Koller and Cristian Acevedo).</p>
<p>During the process of development I made some pictures which will be used here and there promoting the demonstration. To give you an idea of the progress we made here’s a before and after picture:</p>
<p align="center"><a href="http://www.schrankmonster.de/wp-content/uploads/2010/02/Surface_Finger2.png" target="_blank"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Surface_Finger2" border="0" alt="Surface_Finger2" src="http://www.schrankmonster.de/wp-content/uploads/2010/02/Surface_Finger2_thumb.png" width="404" height="244" /></a>    <br />We started with a simple port of VisualGraph to the surface table…</p>
<p align="center"><a href="http://www.schrankmonster.de/wp-content/uploads/2010/02/Surface_Finger.png" target="_blank"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Surface_Finger" border="0" alt="Surface_Finger" src="http://www.schrankmonster.de/wp-content/uploads/2010/02/Surface_Finger_thumb.png" width="400" height="244" /></a>    <br />…and had something better working and looking at the end of that day.</p>
<p>I think everyone did a great job so far and will continue to do so – a lot work to be done till CeBIT! <img src='http://www.schrankmonster.de/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Source 1: <a href="http://www.sones.com">http://www.sones.com</a>    <br />Source 2: <a href="http://www.microsoft.de">http://www.microsoft.de</a>    <br />Source 3: <a title="http://www.uid.com/" href="http://www.uid.com/">http://www.uid.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2010/02/20/developing-on-a-microsoft-surface-table/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>expect podcasts from sones :-)</title>
		<link>http://www.schrankmonster.de/2010/01/20/expect-podcasts-from-sones/</link>
		<comments>http://www.schrankmonster.de/2010/01/20/expect-podcasts-from-sones/#comments</comments>
		<pubDate>Wed, 20 Jan 2010 12:39:29 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[sones]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2010/01/20/expect-podcasts-from-sones/</guid>
		<description><![CDATA[Since sones will be at some community events, conferences and trade shows this year we thought it might be a good idea to have some hardware to document these events. Since we wanted to have video and we did not want to cope with the rather complex subject of DSLRs we bought a full-hd-camcorder. Panasonic [...]]]></description>
			<content:encoded><![CDATA[<p>Since sones will be at some community events, conferences and trade shows this year we thought it might be a good idea to have some hardware to document these events.</p>
<p>Since we wanted to have video and we did not want to cope with the rather complex subject of DSLRs we bought a full-hd-camcorder.</p>
<p align="center"><a href="http://www.schrankmonster.de/wp-content/uploads/2010/01/IMG_4669.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="IMG_4669" border="0" alt="IMG_4669" src="http://www.schrankmonster.de/wp-content/uploads/2010/01/IMG_4669_thumb.jpg" width="404" height="304" /></a> Panasonic HDC-SD300</p>
<p align="center"><a href="http://www.schrankmonster.de/wp-content/uploads/2010/01/IMG_4672.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="IMG_4672" border="0" alt="IMG_4672" src="http://www.schrankmonster.de/wp-content/uploads/2010/01/IMG_4672_thumb.jpg" width="404" height="304" /></a>Touchscreen… hard to find anything without a Touchscreen these days. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2010/01/20/expect-podcasts-from-sones/feed/</wfw:commentRss>
		<slash:comments>0</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>Turning Linux ISO Images into bootable USB sticks</title>
		<link>http://www.schrankmonster.de/2010/01/08/turning-linux-iso-images-into-bootable-usb-sticks/</link>
		<comments>http://www.schrankmonster.de/2010/01/08/turning-linux-iso-images-into-bootable-usb-sticks/#comments</comments>
		<pubDate>Fri, 08 Jan 2010 15:31:21 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Modding]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2010/01/08/turning-linux-iso-images-into-bootable-usb-sticks/</guid>
		<description><![CDATA[Today was Linux-Distribution-ISO-Install-Day. And it turned out that the only existing external DVD drive was fubar. So what to do? We had a spare USB stick and it turns out that you can quite easily convert that USB stick into a bootable Linux-Distribution-Install-USB-Stick. Awesome! Just download the tool called “UNetbootin”, start it and you can [...]]]></description>
			<content:encoded><![CDATA[<p>Today was Linux-Distribution-ISO-Install-Day. And it turned out that the only existing external DVD drive was fubar.</p>
<p>So what to do? We had a spare USB stick and it turns out that you can quite easily convert that USB stick into a bootable Linux-Distribution-Install-USB-Stick. Awesome!</p>
<p>Just download the tool called “UNetbootin”, start it and you can turn virtually any ISO Distribution Image into an USB Stick that boots and installs that ISO:</p>
<p align="center">&#160;<a href="http://www.schrankmonster.de/wp-content/uploads/2010/01/screenshot.jpg" target="_blank"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="screenshot" border="0" alt="screenshot" src="http://www.schrankmonster.de/wp-content/uploads/2010/01/screenshot_thumb.jpg" width="542" height="397" /></a> </p>
<p>Source: <a title="http://unetbootin.sourceforge.net/" href="http://unetbootin.sourceforge.net/">http://unetbootin.sourceforge.net/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2010/01/08/turning-linux-iso-images-into-bootable-usb-sticks/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Windows 7 GOD Mode</title>
		<link>http://www.schrankmonster.de/2010/01/04/windows-7-god-mode/</link>
		<comments>http://www.schrankmonster.de/2010/01/04/windows-7-god-mode/#comments</comments>
		<pubDate>Mon, 04 Jan 2010 08:40:57 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[makes-my-day]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2010/01/04/windows-7-god-mode/</guid>
		<description><![CDATA[Create a new folder, rename it to: GodMode.{ED7BA470-8E54-465E-825C-99712043E01C} After hitting &#60;return&#62; the folder will be a shortcut to the Windows 7 Administration GOD Mode. Enjoy. (Thanks Damir) Source: http://tomicic.de/2010/01/03/Windows7GodMode.aspx]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.schrankmonster.de/wp-content/uploads/2010/01/godmode.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="godmode" border="0" alt="godmode" src="http://www.schrankmonster.de/wp-content/uploads/2010/01/godmode_thumb.jpg" width="288" height="296" /></a> Create a new folder, rename it to:</p>
<p align="center"><strong>GodMode.{ED7BA470-8E54-465E-825C-99712043E01C}</strong></p>
<p>After hitting &lt;return&gt; the folder will be a shortcut to the Windows 7 Administration GOD Mode. Enjoy. (Thanks Damir)</p>
<p>Source: <a title="http://tomicic.de/2010/01/03/Windows7GodMode.aspx" href="http://tomicic.de/2010/01/03/Windows7GodMode.aspx">http://tomicic.de/2010/01/03/Windows7GodMode.aspx</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2010/01/04/windows-7-god-mode/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to shut off Outlook 2007 Security Questions</title>
		<link>http://www.schrankmonster.de/2009/12/18/how-to-shut-off-outlook-2007-security-questions/</link>
		<comments>http://www.schrankmonster.de/2009/12/18/how-to-shut-off-outlook-2007-security-questions/#comments</comments>
		<pubDate>Fri, 18 Dec 2009 13:50:50 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2009/12/18/how-to-shut-off-outlook-2007-security-questions/</guid>
		<description><![CDATA[I had the task to make my Outlook Task List appear on my iPhone. As everyone knows Apple did not do anything about todo lists or tasks on their phone… well there’s an app for that: Most of the task applications on the iPhone use Toodledos services to sync task lists with the desktop. To [...]]]></description>
			<content:encoded><![CDATA[<p>I had the task to make my Outlook Task List appear on my iPhone. As everyone knows Apple did not do anything about todo lists or tasks on their phone… well there’s an app for that: Most of the task applications on the iPhone use Toodledos services to sync task lists with the desktop.</p>
<p>To sync the Toodledo service with the desktop you need another tool. This tool uses your Toodledo account and your locally running Outlook to sync between both. So this little desktop sync tool needs access to the Outlook data: This means you will maybe be bugged by Outlook that some program wants to have access to the data. You can allow it for a number of minutes but not forever. </p>
<p>Okay one solution would be to install appropriate antivirus tools to suit the operating systems security needs. Because this wasn’t a solution in my case I needed something more sophisticated to solve the problem.</p>
<p>Now that’s the point where “Advanced Security for Outlook” from MapiLab comes into play. This Outlook Plugin extends Outlooks Security Dialog and adds things like “always allow”:</p>
<p><a href="http://www.mapilab.com/download/" 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="security_outlook2" border="0" alt="security_outlook2" src="http://www.schrankmonster.de/wp-content/uploads/2009/12/security_outlook2.png" width="369" height="404" /></a> </p>
<p>&#160;</p>
<p>Source 1: <a title="http://www.toodledo.com/" href="http://www.toodledo.com/">http://www.toodledo.com/</a>    <br />Source 2: <a title="http://www.mapilab.com/download/" href="http://www.mapilab.com/download/">http://www.mapilab.com/download/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2009/12/18/how-to-shut-off-outlook-2007-security-questions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>that&#8217;s a seriously huge display</title>
		<link>http://www.schrankmonster.de/2009/12/01/thats-a-seriously-huge-display/</link>
		<comments>http://www.schrankmonster.de/2009/12/01/thats-a-seriously-huge-display/#comments</comments>
		<pubDate>Tue, 01 Dec 2009 06:15:15 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[rumors]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2009/12/01/thats-a-seriously-huge-display/</guid>
		<description><![CDATA[While setting up a new machine I got this message: 45056 x 19207 pixel… not that bad…]]></description>
			<content:encoded><![CDATA[<p>While setting up a new machine I got this message:</p>
<p><a href="http://www.schrankmonster.de/wp-content/uploads/2009/12/hugedisplay.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="hugedisplay" border="0" alt="hugedisplay" src="http://www.schrankmonster.de/wp-content/uploads/2009/12/hugedisplay_thumb.png" width="404" height="123" /></a></p>
<p align="center">45056 x 19207 pixel… not that bad… </p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2009/12/01/thats-a-seriously-huge-display/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>One step closer to digital nirvana&#8230;</title>
		<link>http://www.schrankmonster.de/2009/11/23/one-step-closer-to-digital-nirvana/</link>
		<comments>http://www.schrankmonster.de/2009/11/23/one-step-closer-to-digital-nirvana/#comments</comments>
		<pubDate>Mon, 23 Nov 2009 06:33:45 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Movies]]></category>
		<category><![CDATA[networking]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[TV]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/?p=7311</guid>
		<description><![CDATA[Thanks to a podcast I found a great software for my iPhone and iPod touch. It&#8217;s a small tool which does cost less than 3 Euro and it&#8217;s served by a server tool which runs on Windows and Mac OS X. It&#8217;s called Air Video and it&#8217;s frikin&#8217; awesome! &#8482; What you do is you [...]]]></description>
			<content:encoded><![CDATA[<p>Thanks to a podcast I found a great software for my iPhone and iPod touch. It&#8217;s a small tool which does cost less than 3 Euro and it&#8217;s served by a server tool which runs on Windows and Mac OS X.</p>
<p>It&#8217;s called Air Video and it&#8217;s frikin&#8217; awesome! &#8482;</p>
<p>What you do is you install the server software and point it to all your directories / drives that might contain video material. You then take your iPhone and install the client app. If you configured the server to be available over the internet you can now connect from anywhere you want using a pass-pin (which is generated) and a password (which is set by you). And by &#8220;from anywhere&#8221; they mean &#8220;anywhere&#8221;. WLAN or 3g didn&#8217;t make any difference in my test. You start the client, point to a video file and most of the time you are asked if you a) want to directly play is (if the file is ipod-compatible) or b) if you want to live-convert it and play it (when the file isn&#8217;t compatible and needs to be re-encoded live for you) or c) if you want to add the file to a conversion queue which will off-line convert the video for you.</p>
<p>In terms of &#8220;finding your video&#8221; it does look like this:</p>
<p><a href="http://www.schrankmonster.de/wp-content/uploads/2009/11/IMG_0387.PNG"><img class="aligncenter size-full wp-image-7312" title="Air Video" src="http://www.schrankmonster.de/wp-content/uploads/2009/11/IMG_0387.PNG" alt="Air Video" width="320" height="480" /></a></p>
<p>Simple, eh? Taping a video will bring up this screen:</p>
<p><a href="http://www.schrankmonster.de/wp-content/uploads/2009/11/IMG_0388.PNG"><img class="aligncenter size-full wp-image-7313" title="IMG_0388" src="http://www.schrankmonster.de/wp-content/uploads/2009/11/IMG_0388.PNG" alt="IMG_0388" width="320" height="480" /></a></p>
<p>As I said &#8211; Play directoy, Play with Live Conversion and Offline-Conversion-Queue&#8230;</p>
<p>It did work with EVERY Video I tried. When I tried Full-HD Movies my serving PC wasn&#8217;t able to handle the load but everyhing in SD worked great which is perfect for me.</p>
<p><a href="http://www.schrankmonster.de/wp-content/uploads/2009/11/onwindows.png"><img class="aligncenter size-medium wp-image-7314" title="onwindows" src="http://www.schrankmonster.de/wp-content/uploads/2009/11/onwindows-300x237.png" alt="onwindows" width="300" height="237" /></a></p>
<p>Therefore I can highly recommend this tool &#8211; it really does work better than anything I&#8217;ve seen before.</p>
<p>Source: <a href="http://www.inmethod.com/air-video/index.html" target="_blank">http://www.inmethod.com/air-video/index.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2009/11/23/one-step-closer-to-digital-nirvana/feed/</wfw:commentRss>
		<slash:comments>0</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>How to unleash the &#8220;Virtual WiFi&#8221; feature in Windows 7 in C#</title>
		<link>http://www.schrankmonster.de/2009/11/11/how-to-unleash-the-virtual-wifi-feature-in-windows-7-in-c/</link>
		<comments>http://www.schrankmonster.de/2009/11/11/how-to-unleash-the-virtual-wifi-feature-in-windows-7-in-c/#comments</comments>
		<pubDate>Wed, 11 Nov 2009 09:09:59 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[networking]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2009/11/11/how-to-unleash-the-virtual-wifi-feature-in-windows-7-in-c/</guid>
		<description><![CDATA[Great stuff ahead – this is just the thing I would want to write if it’s not been written already. This tool is free and open source and it’s the perfect workaround for those usual cases when you want to download a podcast in your holiday and your apple branded device tells you “You can [...]]]></description>
			<content:encoded><![CDATA[<p>Great stuff ahead – this is just the thing I would want to write if it’s not been written already. This tool is free and open source and it’s the perfect workaround for those usual cases when you want to download a podcast in your holiday and your apple branded device tells you “You can only download files up to 10 Megabyte over 3G connections” – You take your notebook, log into 3G, create a WiFi Hotspot with this tool and off you go. </p>
<p><em>“Over the last week some of you may have heard about Connectify. It’s an app that unleashes the “Virtual WiFi” and Wireless Hosted Network features of Windows 7 to turn a PC into a Wireless Access Point or Hot Spot. Well, I looked into what it would take to build such an app, and it really wasn’t that difficult since Windows 7 has all the API’s built in to do it. After some time of looking things up and referencing the “Wireless Hosted Network” C++ sample within the WIndows 7 SDK, I now have a nice working version of the application to release. I’m calling this project “Virtual Router” since it essentially allows you to host a software based wireless router from your laptop or other PC with a Wifi card. Oh, and did I mention that this is FREE and OPEN SOURCE!”</em></p>
<p><a href="http://virtualrouter.codeplex.com/" 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="VirtualRouterScreensshot" border="0" alt="VirtualRouterScreensshot" src="http://www.schrankmonster.de/wp-content/uploads/2009/11/VirtualRouterScreensshot.png" width="404" height="284" /></a> </p>
<p><em>“The Wireless Network create/shared with Virtual Router uses WPA2 Encryption, and there is not way to turn off that encryption. This is actually a feature of the Wireless Hosted Network API&#8217;s built into Windows 7 and 2008 R2 to ensure the best security possible.     <br />You can give your &quot;virtual&quot; wireless network any name you want, and also set the password to anything. Just make sure the password is at least 8 characters.”</em></p>
<p>Source: <a title="http://virtualrouter.codeplex.com/" href="http://virtualrouter.codeplex.com/">http://virtualrouter.codeplex.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2009/11/11/how-to-unleash-the-virtual-wifi-feature-in-windows-7-in-c/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Finally Aero Glas!</title>
		<link>http://www.schrankmonster.de/2009/10/29/finally-aero-glas/</link>
		<comments>http://www.schrankmonster.de/2009/10/29/finally-aero-glas/#comments</comments>
		<pubDate>Thu, 29 Oct 2009 13:34:39 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/?p=7274</guid>
		<description><![CDATA[Hurray for VMWare! &#8211; I am using their products for years now &#8211; both private and on my job. It&#8217;s a blast to work with the Workstation and Fusion. Now they brought a major update to version 7 for VMWare Workstation and version 3 for VMWare Fusion. I upgraded my VMWare Fusion installation and finally [...]]]></description>
			<content:encoded><![CDATA[<p>Hurray for VMWare! &#8211; I am using their products for years now &#8211; both private and on my job. It&#8217;s a blast to work with the Workstation and Fusion. Now they brought a major update to version 7 for VMWare Workstation and version 3 for VMWare Fusion. I upgraded my VMWare Fusion installation and finally the one feature that I missed the most on my Windows Vista and 7 virtual machines is available now: Aero Glas!</p>
<p><a href="http://www.schrankmonster.de/wp-content/uploads/2009/10/aeroglas.png"><img class="aligncenter size-medium wp-image-7275" title="aeroglas" src="http://www.schrankmonster.de/wp-content/uploads/2009/10/aeroglas-300x238.png" alt="aeroglas" width="300" height="238" /></a>Oh&#8230; and it&#8217;s faster too <img src='http://www.schrankmonster.de/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Source: <a href="http://www.vmware.com/de/products/fusion/index.html">http://www.vmware.com/de/products/fusion/index.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2009/10/29/finally-aero-glas/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Forza Motorsport 3 arrived!</title>
		<link>http://www.schrankmonster.de/2009/10/24/forza-motorsport-3-arrived/</link>
		<comments>http://www.schrankmonster.de/2009/10/24/forza-motorsport-3-arrived/#comments</comments>
		<pubDate>Fri, 23 Oct 2009 22:01:54 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[graphics]]></category>
		<category><![CDATA[Motorsport]]></category>
		<category><![CDATA[Panorama]]></category>
		<category><![CDATA[Xbox 360]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2009/10/24/forza-motorsport-3-arrived/</guid>
		<description><![CDATA[After a very very long wait finally Forza 3 arrived! The first panoramic view of a 1-series BMW in Forza 3: Finally a game where I can drive that car! Source: http://www.forzaclans.com]]></description>
			<content:encoded><![CDATA[<p>After a very very long wait finally Forza 3 arrived! The first panoramic view of a 1-series BMW in Forza 3:</p>
<p align="center"><a href="http://www.schrankmonster.de/wp-content/uploads/2009/10/forza_stitch.jpg" target="_blank"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="forza_stitch" border="0" alt="forza_stitch" src="http://www.schrankmonster.de/wp-content/uploads/2009/10/forza_stitch_thumb.jpg" width="404" height="80" /></a> </p>
<p>Finally a game where I can drive that car!</p>
<p>Source: <a href="http://www.forzaclans.com">http://www.forzaclans.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2009/10/24/forza-motorsport-3-arrived/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>what would you do with 1 million frames per second?</title>
		<link>http://www.schrankmonster.de/2009/10/09/what-would-you-do-with-1-million-frames-per-second/</link>
		<comments>http://www.schrankmonster.de/2009/10/09/what-would-you-do-with-1-million-frames-per-second/#comments</comments>
		<pubDate>Fri, 09 Oct 2009 21:15:28 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[graphics]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Movies]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/?p=7258</guid>
		<description><![CDATA[This is just beautiful:]]></description>
			<content:encoded><![CDATA[<p>This is just beautiful:</p>
<p style="text-align: center;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="src" value="http://www.youtube.com/v/QfDoQwIAaXg&amp;hl=de&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/QfDoQwIAaXg&amp;hl=de&amp;fs=1&amp;" allowfullscreen="true"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2009/10/09/what-would-you-do-with-1-million-frames-per-second/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>and another Dell laptop just died&#8230;</title>
		<link>http://www.schrankmonster.de/2009/10/02/and-another-dell-laptop-just-died/</link>
		<comments>http://www.schrankmonster.de/2009/10/02/and-another-dell-laptop-just-died/#comments</comments>
		<pubDate>Fri, 02 Oct 2009 13:04:00 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Employer]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Reallife]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2009/10/02/and-another-dell-laptop-just-died/</guid>
		<description><![CDATA[this time a XPS M1330 blue-screened and only shows colored lines if you restart it: If only the hardware would be as great as their service is!]]></description>
			<content:encoded><![CDATA[<p>this time a XPS M1330 blue-screened and only shows colored lines if you restart it:</p>
<p><a href="http://www.schrankmonster.de/wp-content/uploads/2009/10/Foto.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="Foto" border="0" alt="Foto" src="http://www.schrankmonster.de/wp-content/uploads/2009/10/Foto_thumb.jpg" width="404" height="304" /></a></p>
<p>If only the hardware would be as great as their service is!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2009/10/02/and-another-dell-laptop-just-died/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Musik zum Piratenpartei-Wahlkampf 2009</title>
		<link>http://www.schrankmonster.de/2009/10/02/musik-zum-piratenpartei-wahlkampf-2009/</link>
		<comments>http://www.schrankmonster.de/2009/10/02/musik-zum-piratenpartei-wahlkampf-2009/#comments</comments>
		<pubDate>Fri, 02 Oct 2009 09:57:23 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[networking]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2009/10/02/musik-zum-piratenpartei-wahlkampf-2009/</guid>
		<description><![CDATA[“Und ein weiterer Schritt im Free! Music! Contest wurde getan: Der Sampler steht nun zum Download zur Verfügung! Da die Rückfrage kam: Natürlich sind alle Stücke unter Creative Commons lizenziert. Fast vier Stunden Musik waren eingereicht worden und am Ende stand eines fest: Mit einer einzelnen CD wären wir nicht in der Lage gewesen, die [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.schrankmonster.de/wp-content/uploads/2009/10/cover.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="cover" border="0" alt="cover" src="http://www.schrankmonster.de/wp-content/uploads/2009/10/cover_thumb.jpg" width="397" height="404" /></a> </p>
<p><em>“Und ein weiterer Schritt im Free! Music! Contest wurde getan: Der Sampler steht nun zum Download zur Verfügung! Da die Rückfrage kam: Natürlich sind alle Stücke unter Creative Commons lizenziert.</em></p>
<p><em>Fast vier Stunden Musik waren eingereicht worden und am Ende stand eines fest: Mit einer einzelnen CD wären wir nicht in der Lage gewesen, die Qualität der Einsendungen entsprechend zu würdigen. Also verzichten wir auf ungefähr 70% des Gewinns und haben dafür 100% mehr feinste freie Musik. <img src='http://www.schrankmonster.de/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> ”</em></p>
<p align="center"><a href="http://www.schrankmonster.de/wp-content/uploads/2009/10/Capture.png" target="_blank"><em><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="Capture" border="0" alt="Capture" src="http://www.schrankmonster.de/wp-content/uploads/2009/10/Capture_thumb.png" width="400" height="344" /></em></a> Track-Listing</p>
<p>Source: <a href="http://musik.klarmachen-zum-aendern.de/">musik.klarmachen-zum-aendern.de</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2009/10/02/musik-zum-piratenpartei-wahlkampf-2009/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>LUA is not only for WoW</title>
		<link>http://www.schrankmonster.de/2009/10/02/lua-is-not-only-for-wow/</link>
		<comments>http://www.schrankmonster.de/2009/10/02/lua-is-not-only-for-wow/#comments</comments>
		<pubDate>Fri, 02 Oct 2009 09:29:15 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Mobile]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2009/10/02/lua-is-not-only-for-wow/</guid>
		<description><![CDATA[It’s also suitable for anyone who wants to develop iPhone Applications. “I started investigating how I might wire up — and then write native iPhone apps from — a scripting language. Lua was on my radar already. It’s compact, expressive, fast enough, and was designed to be embedded. Took only about 20 minutes to get [...]]]></description>
			<content:encoded><![CDATA[<p>It’s also suitable for anyone who wants to develop iPhone Applications.</p>
<p><a href="http://www.schrankmonster.de/wp-content/uploads/2009/10/hellolua.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="hello-lua" border="0" alt="hello-lua" src="http://www.schrankmonster.de/wp-content/uploads/2009/10/hellolua_thumb.png" width="248" height="200" /></a></p>
<p><em>“I started investigating how I might wire up — and then write native iPhone apps from — a scripting language. Lua was on my radar already. It’s compact, expressive, fast enough, and was designed to be embedded. Took only about 20 minutes to get the Lua interpreter running on the iPhone. The real work was to bridge Lua and all the Objective-C/CocoaTouch classes. The bridge had to work in two directions: it would need to be able to create CocoaTouch objects and also be able to respond to callbacks as part of the familiar delegate/protocol model.” </em></p>
<p>Source: <a title="http://www.mobileorchard.com/announcing-iphone-wax-native-uikit-iphone-apps-written-in-lua/" href="http://www.mobileorchard.com/announcing-iphone-wax-native-uikit-iphone-apps-written-in-lua/">Announcing iPhone WAX</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2009/10/02/lua-is-not-only-for-wow/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>a Visual Studio documentary</title>
		<link>http://www.schrankmonster.de/2009/10/02/a-visual-studio-documentary/</link>
		<comments>http://www.schrankmonster.de/2009/10/02/a-visual-studio-documentary/#comments</comments>
		<pubDate>Fri, 02 Oct 2009 09:22:30 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2009/10/02/a-visual-studio-documentary/</guid>
		<description><![CDATA[There’s a great Visual Studio documentary on CH9. Highly recommended to anyone who wants to see what happened from the start till now. “Welcome to the first installment of the Visual Studio Documentary.This is an hour long documentary that is split into two parts, roughly a half hour each. Welcome to part one, where we [...]]]></description>
			<content:encoded><![CDATA[<p>There’s a great Visual Studio documentary on CH9. Highly recommended to anyone who wants to see what happened from the start till now.</p>
<p><em>“Welcome to the first installment of the Visual Studio Documentary.This is an hour long documentary that is split into two parts, roughly a half hour each. Welcome to part one, where we take you back to the days of MS-DOS and Alan Cooper who originally sold Visual Basic to Bill Gates back in 1988.&#160; Next week we will feature </em><a href="http://channel9.msdn.com/shows/VisualStudioDocumentary/The-Visual-Studio-Documentary-Part-Two/"><em>Part Two </em></a><em>but for those that would like to watch it sooner, here is </em><a href="http://channel9.msdn.com/shows/VisualStudioDocumentary/The-Visual-Studio-Documentary-Part-Two/"><em>Part Two</em></a><em>. In addition, each week we will post a longer and more in-depth stand alone interview from the interviewees that were featured in the documentary.”</em></p>
<p>Source 1: <a href="http://channel9.msdn.com/shows/VisualStudioDocumentary/The-Visual-Studio-Documentary-Part-One/" target="_blank">Part I</a>    <br />Source 2: <a href="http://channel9.msdn.com/shows/VisualStudioDocumentary/The-Visual-Studio-Documentary-Part-Two/" target="_blank">Part II</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2009/10/02/a-visual-studio-documentary/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>want some more expresso?</title>
		<link>http://www.schrankmonster.de/2009/09/23/want-some-more-expresso/</link>
		<comments>http://www.schrankmonster.de/2009/09/23/want-some-more-expresso/#comments</comments>
		<pubDate>Wed, 23 Sep 2009 08:15:36 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Research]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2009/09/23/want-some-more-expresso/</guid>
		<description><![CDATA[Almost three years ago I wrote about this nice little Regular Expression Tool which provides not only a RegEx-Builder but also a clean and nice interface to test and play. It was a CodeProject sample project in that time and as it turns out it became a full blown version 3! Obviously the user interface [...]]]></description>
			<content:encoded><![CDATA[<p>Almost three years ago I wrote about this nice little Regular Expression Tool which provides not only a RegEx-Builder but also a clean and nice interface to test and play.</p>
<p>It was a CodeProject sample project in that time and as it turns out it became a full blown version 3!</p>
<p>Obviously the user interface was revamped completely:</p>
<p><a href="http://www.schrankmonster.de/wp-content/uploads/2009/09/expresso3.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="expresso3" border="0" alt="expresso3" src="http://www.schrankmonster.de/wp-content/uploads/2009/09/expresso3_thumb.png" width="400" height="249" /></a> So you now not only get the Testing and playing but also a Regular Expression Library, a cool How-To, a more useable design mode and you can even output your final regular expressions to C#, VB.NET or managed C++!</p>
<p>Great stuff! Even better is the fact that it does not come at any costs. Despite the fact that there’s a registration you can just get your free license on their website.</p>
<p>Source 1: <a title="http://www.ultrapico.com/Expresso.htm" href="http://www.ultrapico.com/Expresso.htm">http://www.ultrapico.com/Expresso.htm</a>     <br />Source 2: <a href="http://www.schrankmonster.de/2006/06/21/want-some-espresso/" target="_blank">want some espresso?</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2009/09/23/want-some-more-expresso/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>a new version of Notepad++ is available.</title>
		<link>http://www.schrankmonster.de/2009/09/22/a-new-version-of-notepad-is-available/</link>
		<comments>http://www.schrankmonster.de/2009/09/22/a-new-version-of-notepad-is-available/#comments</comments>
		<pubDate>Tue, 22 Sep 2009 13:48:53 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2009/09/22/a-new-version-of-notepad-is-available/</guid>
		<description><![CDATA[Great stuff this week: Notepad++ was released in&#160; a new version 5.5. Nice new features all around: Source 1: http://notepad-plus.sourceforge.net/uk/site.htm]]></description>
			<content:encoded><![CDATA[<p>Great stuff this week: Notepad++ was released in&#160; a new version 5.5. Nice new features all around:</p>
<p><a href="http://www.schrankmonster.de/wp-content/uploads/2009/09/notepadplusplus.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="notepadplusplus" border="0" alt="notepadplusplus" src="http://www.schrankmonster.de/wp-content/uploads/2009/09/notepadplusplus_thumb.png" width="404" height="279" /></a> </p>
<p>Source 1: <a title="http://notepad-plus.sourceforge.net/uk/site.htm" href="http://notepad-plus.sourceforge.net/uk/site.htm">http://notepad-plus.sourceforge.net/uk/site.htm</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2009/09/22/a-new-version-of-notepad-is-available/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to sell a car</title>
		<link>http://www.schrankmonster.de/2009/09/22/how-to-sell-a-car/</link>
		<comments>http://www.schrankmonster.de/2009/09/22/how-to-sell-a-car/#comments</comments>
		<pubDate>Tue, 22 Sep 2009 10:42:11 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Motorsport]]></category>
		<category><![CDATA[Reallife]]></category>
		<category><![CDATA[sones]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2009/09/22/how-to-sell-a-car/</guid>
		<description><![CDATA[Mission accomplished. I successfully talked a co-worker, who needed to buy a new car, into buying a gadget-packed BMW 1 series. He calls it his “cluster on 4 wheels” – because obviously there is some processing “horse-power” in this machine May he always have a safe ride! Source 1: http://blog.ahzf.de/index.php/2009/09/21/mein-cluster-hat-vier-rader/]]></description>
			<content:encoded><![CDATA[<p>Mission accomplished. I successfully talked a co-worker, who needed to buy a new car, into buying a gadget-packed BMW 1 series. </p>
<p>He calls it his “cluster on 4 wheels” – because obviously there is some processing “horse-power” in this machine <img src='http://www.schrankmonster.de/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p><a href="http://blog.ahzf.de/index.php/2009/09/21/mein-cluster-hat-vier-rader/" 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="img_7539s" border="0" alt="img_7539s" src="http://www.schrankmonster.de/wp-content/uploads/2009/09/img_7539s.jpg" width="404" height="237" /></a></p>
<p>May he always have a safe ride! </p>
<p>Source 1: <a title="http://blog.ahzf.de/index.php/2009/09/21/mein-cluster-hat-vier-rader/" href="http://blog.ahzf.de/index.php/2009/09/21/mein-cluster-hat-vier-rader/">http://blog.ahzf.de/index.php/2009/09/21/mein-cluster-hat-vier-rader/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2009/09/22/how-to-sell-a-car/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>this new Windows Resource Monitor&#8230;</title>
		<link>http://www.schrankmonster.de/2009/09/22/this-new-windows-resource-monitor/</link>
		<comments>http://www.schrankmonster.de/2009/09/22/this-new-windows-resource-monitor/#comments</comments>
		<pubDate>Tue, 22 Sep 2009 10:06:15 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2009/09/22/this-new-windows-resource-monitor/</guid>
		<description><![CDATA[…is just great! A cool tool to find bottlenecks and the cause why your machine is just slow right now.]]></description>
			<content:encoded><![CDATA[<p>…is just great! A cool tool to find bottlenecks and the cause why your machine is just slow right now.</p>
<p><a href="http://www.schrankmonster.de/wp-content/uploads/2009/09/love_monitor.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="love_monitor" border="0" alt="love_monitor" src="http://www.schrankmonster.de/wp-content/uploads/2009/09/love_monitor_thumb.png" width="404" height="208" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2009/09/22/this-new-windows-resource-monitor/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>APC PowerChute Business Edition and VMware Server&#8230;</title>
		<link>http://www.schrankmonster.de/2009/09/22/apc-powerchute-business-edition-and-vmware-server/</link>
		<comments>http://www.schrankmonster.de/2009/09/22/apc-powerchute-business-edition-and-vmware-server/#comments</comments>
		<pubDate>Tue, 22 Sep 2009 10:01:35 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2009/09/22/apc-powerchute-business-edition-and-vmware-server/</guid>
		<description><![CDATA[I’ve run into several problems while trying to install the current 8.1 version of the APC PowerChute Business Edition. Basically I get this error message when I am trying to install it: So you can simply not install this version of PowerChute on this machine – OR you could go here and follow the link [...]]]></description>
			<content:encoded><![CDATA[<p>I’ve run into several problems while trying to install the current 8.1 version of the APC PowerChute Business Edition. </p>
<p>Basically I get this error message when I am trying to install it:</p>
<p><a href="http://www.schrankmonster.de/wp-content/uploads/2009/09/powerchutenovmware1.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="powerchute-novmware" border="0" alt="powerchute-novmware" src="http://www.schrankmonster.de/wp-content/uploads/2009/09/powerchutenovmware_thumb1.png" width="404" height="174" /></a></p>
<p>So you can simply not install this version of PowerChute on this machine – OR you could go <a href="http://dermeph.wordpress.com/2009/04/15/apc-powerchute-business-edition-and-vmware/" target="_blank">here and follow the link</a> to the Download of the 8.0 version of the software. This will start the setup with this screen:</p>
<p><a href="http://www.schrankmonster.de/wp-content/uploads/2009/09/powerchutenovmware21.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="powerchute-novmware2" border="0" alt="powerchute-novmware2" src="http://www.schrankmonster.de/wp-content/uploads/2009/09/powerchutenovmware2_thumb1.png" width="404" height="297" /></a> </p>
<p>Great! Just get the “old” version and use it. </p>
<p>Source 1: <a href="http://dermeph.wordpress.com/2009/04/15/apc-powerchute-business-edition-and-vmware/" target="_blank">APC PowerChute and VMWare</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2009/09/22/apc-powerchute-business-edition-and-vmware-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

