<?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; Internet</title>
	<atom:link href="http://www.schrankmonster.de/category/media/internet/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>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>type to win</title>
		<link>http://www.schrankmonster.de/2011/04/23/type-to-win/</link>
		<comments>http://www.schrankmonster.de/2011/04/23/type-to-win/#comments</comments>
		<pubDate>Sat, 23 Apr 2011 07:19:15 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Games]]></category>
		<category><![CDATA[Internet]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/?p=7589</guid>
		<description><![CDATA[In the dusk of Flash it&#8217;s nice to see that HTML 5 and JavaScript are here to bring small and fun games to our browsers. &#8220;Z-Type was specifically created for Mozilla’s Game On. I immediately wanted to participate in the competition when I first heard of it, but the deadline seemed so far away that [...]]]></description>
			<content:encoded><![CDATA[<p>In the dusk of Flash it&#8217;s nice to see that HTML 5 and JavaScript are here to bring small and fun games to our browsers.</p>
<p>&#8220;Z-Type was specifically  created for Mozilla’s Game On. I immediately wanted to participate in  the competition when I first heard of it, but the deadline seemed so far  away that I didn’t bother to begin working on a game back then. Fast  forward to this tweet announcing that the deadline was only one week away – it took me by  surprise. I still hadn’t even began working on anything. The thought of  just submitting my earlier game Biolab Disaster crossed my mind but was  immediately dismissed again.&#8221;</p>
<p style="text-align: center;"><a href="http://www.phoboslab.org/ztype/" target="_blank"><img class="aligncenter size-medium wp-image-7590" title="Bildschirmfoto 2011-04-22 um 22.38.34" src="http://www.schrankmonster.de/wp-content/uploads/2011/04/Bildschirmfoto-2011-04-22-um-22.38.34-265x300.png" alt="" width="265" height="300" /></a></p>
<p>Great sound, great graphics and in the higher levels quite difficult.</p>
<p>Source 1: <a href="http://www.phoboslab.org/ztype/" target="_blank">http://www.phoboslab.org/ztype/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2011/04/23/type-to-win/feed/</wfw:commentRss>
		<slash:comments>0</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>Sintel:</title>
		<link>http://www.schrankmonster.de/2010/10/03/sintel/</link>
		<comments>http://www.schrankmonster.de/2010/10/03/sintel/#comments</comments>
		<pubDate>Sun, 03 Oct 2010 11:10:31 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[graphics]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Movies]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2010/10/03/sintel/</guid>
		<description><![CDATA[After the last Open Movie Project “Bug Buck Bunny” – Sintel is the next short movie available for free download. Get it here. “Sintel” is an independently produced short film, initiated by the Blender Foundation as a means to further improve and validate the free/open source 3D creation suite Blender. With initial funding provided by [...]]]></description>
			<content:encoded><![CDATA[<p><em>After the last Open Movie Project “Bug Buck Bunny” – Sintel is the next short movie available for free download. <a href="http://www.sintel.org/wp-content/content/download.html" target="_blank">Get it here.</a></em></p>
<p><em>“Sintel” is an independently produced short film, initiated by the Blender Foundation as a means to further improve and validate the free/open source 3D creation suite Blender. With initial funding provided by 1000s of donations via the internet community, it has again proven to be a viable development model for both open 3D technology as for independent animation film.     <br />This 15 minute film has been realized in the studio of the Amsterdam Blender Institute, by an international team of artists and developers. In addition to that, several crucial technical and creative targets have been realized online, by developers and artists and teams all over the world.</em></p>
<p><em>“Sintel” commenced in May 2009, with producer Ton Roosendaal establishing a core team consisting of Colin Levy (director), David Revoy (concept art), Martin Lodewijk (story) and Jan Morgenstern (composer). In August script writer Esther Wouda was approached as a consultant, which resulted in her taking the responsibility for the entire screenplay. Esther then worked in close cooperation with Colin, David and Ton to deliver the final script early November. Meanwhile, Colin and David realized the first storyboards.</em></p>
<p><em>Based on a public call for artists – with over 150 respondents – the Durian artist team got established in July 2009. They first met in a pre-production week in Amsterdam in August, and all decided to join the project per October 1st. With the final movie budget still unknown, the target then still was to finish the film within 7 months, with a team of 6 artists and 2 developers. At that time the team still had the hopes to be able to realize the script in a 6-8 minute film.</em></p>
<p><em>In november, the Netherlands Film Fund approved on a substantial subsidy for Sintel, enough to extend the project to 10 months, with possible 1 or 2 extra artist seats in the final months. It was also by this time that breakdowns and animatic edits showed that the script had to be revised to become more compact, with a story structure using a flashback.</em></p>
<p><em>In the months after, Colin’s work on the Director’s Layout – 3D animatic shots – and final designs on the grand finale gradually made the movie longer, from 9 minutes in november, to almost 12 in May. Proper story telling, to absorb an audience with convincing characters and action just takes time!</em></p>
<p><em>With the highly anticipated extra funding from the Amsterdam Cinegrid – also funding a 4k resolution version – Ton finally could extend the team with 5 artists and a developer in March 2010. With 14 people the film then was completed for a first screening on July 18th in cinema Studio K in Amsterdam.     <br />Three artists then stayed in Amsterdam working on final shot edits, lighting design, compositing, and on the impressive 2 minute film credits. The movie ended up with a total duration of 14m:48s, 888 seconds!</em></p>
<p><em>Watch it now:</em></p>
<div style="padding-bottom: 0px; padding-left: 0px; width: 560px; padding-right: 0px; display: block; float: none; margin-left: auto; margin-right: auto; padding-top: 0px" id="scid:5737277B-5D6D-4f48-ABFC-DD9C333F4C5D:04d6ecaf-0f8f-4493-beaa-a3c9cf3c0a65" class="wlWriterEditableSmartContent">
<div><object width="560" height="340"><param name="movie" value="http://www.youtube.com/v/eRsGyueVLvQ?hl=en&amp;hd=1"></param><embed src="http://www.youtube.com/v/eRsGyueVLvQ?hl=en&amp;hd=1" type="application/x-shockwave-flash" width="560" height="340"></embed></object></div>
<div style="width:560px;clear:both;font-size:.8em">Sintel</div>
</div>
<p>Source 1: <a href="http://orange.blender.org/" target="_blank">Elephants Dream</a>    <br />Source 2: <a href="http://www.schrankmonster.de/2008/05/30/the-next-creative-commons-rendermovie-is-available-big-buck-bunny/" target="_blank">Big Buck Bunny</a>&#160; <br />Source 3: <a href="http://sintel.org/" target="_blank">Sintel</a>    <br />Source 3: <a href="http://www.sintel.org/wp-content/content/download.html" target="_blank">Sintel Download</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2010/10/03/sintel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Still 9 days to go till SXSW 2010</title>
		<link>http://www.schrankmonster.de/2010/03/07/still-9-days-to-go-till-sxsw-2010/</link>
		<comments>http://www.schrankmonster.de/2010/03/07/still-9-days-to-go-till-sxsw-2010/#comments</comments>
		<pubDate>Sun, 07 Mar 2010 13:23:41 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[music-of-the-day]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2010/03/07/still-9-days-to-go-till-sxsw-2010/</guid>
		<description><![CDATA[Since there are still 9 days to go till SXSW 2010 it’s a pleasure to give out a link to the completely unofficial torrents which old all mp3 files of almost all songs which are to be presented at this years SXSW: “The SXSW® Music and Media Conference showcases hundreds of musical acts from around [...]]]></description>
			<content:encoded><![CDATA[<p>Since there are still 9 days to go till SXSW 2010 it’s a pleasure to give out a link to the completely unofficial torrents which old all mp3 files of almost all songs which are to be presented at this years SXSW:</p>
<p><em>“The SXSW® Music and Media Conference showcases hundreds of musical acts from around the globe on over eighty stages in downtown Austin. By day, conference registrants do business in the SXSW® Trade Show in the Austin Convention Center and partake of a full agenda of informative, provocative panel discussions featuring hundreds of speakers of international stature.”</em></p>
<p align="center"><a href="http://sites.google.com/site/sxswtorrent/2010" 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="sxsw" border="0" alt="sxsw" src="http://www.schrankmonster.de/wp-content/uploads/2010/03/sxsw.png" width="404" height="123" /></a>&#160;</p>
<p>Source 1: <a title="http://www.sxsw.com/music" href="http://www.sxsw.com/music">http://www.sxsw.com/music</a>    <br />Source 2: <a title="http://sites.google.com/site/sxswtorrent/2010" href="http://sites.google.com/site/sxswtorrent/2010">http://sites.google.com/site/sxswtorrent/2010</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2010/03/07/still-9-days-to-go-till-sxsw-2010/feed/</wfw:commentRss>
		<slash:comments>0</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>Nine Inch Nails &#8211; another version of the truth &#8211; fan blu-ray release</title>
		<link>http://www.schrankmonster.de/2009/12/26/nine-inch-nails-another-version-of-the-truth-fan-blu-ray-release/</link>
		<comments>http://www.schrankmonster.de/2009/12/26/nine-inch-nails-another-version-of-the-truth-fan-blu-ray-release/#comments</comments>
		<pubDate>Sat, 26 Dec 2009 12:11:45 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Movies]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[music-of-the-day]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2009/12/26/nine-inch-nails-another-version-of-the-truth-fan-blu-ray-release/</guid>
		<description><![CDATA[“12 months, a core team of dozens (with a network of thousands) spanning 3 continents, 4 languages, 5 specialist teams, countless sleepless nights&#8230; It&#8217;s finally here. Filmed in Sacramento, Portland, and Victoria by the Nine Inch Nails team, edited and produced by their fans, The Gift is a stunning work in 1080p High Definition video [...]]]></description>
			<content:encoded><![CDATA[<p align="center"><em>“12 months,     <br />a core team of dozens (with a network of thousands)      <br />spanning 3 continents,      <br />4 languages,      <br />5 specialist teams,      <br />countless sleepless nights&#8230;</em></p>
<p align="center"><em>It&#8217;s finally here.</em></p>
<p align="center"><em>Filmed in Sacramento, Portland, and Victoria by the Nine Inch Nails team, edited and produced by their fans, The Gift is a stunning work in 1080p High Definition video with 5.1 Surround Sound, multi-language subtitles, and artistically-driven ethics.”</em></p>
<p>You’re reading it right: the final production is ready to be downloaded. I am downloading it right now. </p>
<p><a href="http://thisoneisonus.org" 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="Capture" border="0" alt="Capture" src="http://www.schrankmonster.de/wp-content/uploads/2009/12/Capture.jpg" width="394" height="404" /></a> </p>
<p>It’s a complete Nine Inch Nails live concert in full-hd. Free for all / Not for sale. Get it while it’s hot!</p>
<p>Source: <a title="http://thisoneisonus.org" href="http://thisoneisonus.org">http://thisoneisonus.org</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2009/12/26/nine-inch-nails-another-version-of-the-truth-fan-blu-ray-release/feed/</wfw:commentRss>
		<slash:comments>2</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>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>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>maybe I should…</title>
		<link>http://www.schrankmonster.de/2009/09/18/maybe-i-should%e2%80%a6/</link>
		<comments>http://www.schrankmonster.de/2009/09/18/maybe-i-should%e2%80%a6/#comments</comments>
		<pubDate>Fri, 18 Sep 2009 13:11:11 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Blog-o-Sphere]]></category>
		<category><![CDATA[Employer]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2009/09/18/maybeIShould.aspx</guid>
		<description><![CDATA[…switch this website to another weblog software in the future. The dasBlog development isn’t exactly what I would call fast-paced. It even seems that there was no movement at all for the last year at all regarding new features. I took a short look at a current WordPress installation we did for our Developer Website [...]]]></description>
			<content:encoded><![CDATA[<p>…switch this website to another weblog software in the future. The dasBlog development isn’t exactly what I would call fast-paced. It even seems that there was no movement at all for the last year at all regarding new features.</p>
<p>I took a short look at a current WordPress installation we did for our <a href="http://developers.sones.de" target="_blank">Developer Website</a> at sones – and I have to admit that feature-wise this WordPress is way beyond anything I could achieve in dasBlog anytime soon.</p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/maybeIshould_D570/sonesdev.png" target="_blank"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="sonesdev" border="0" alt="sonesdev" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/maybeIshould_D570/sonesdev_thumb.png" width="404" height="226" /></a>&#160;</p>
<p>Additionally the fact that the skin of this site seems to be broken (especially for older browsers) I would have to do a skin-redesign – turns out that this is way easier in WordPress than it is in dasBlog.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2009/09/18/maybe-i-should%e2%80%a6/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>making things up…</title>
		<link>http://www.schrankmonster.de/2009/08/28/making-things-up%e2%80%a6/</link>
		<comments>http://www.schrankmonster.de/2009/08/28/making-things-up%e2%80%a6/#comments</comments>
		<pubDate>Fri, 28 Aug 2009 10:38:31 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Riot]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2009/08/28/makingThingsUp.aspx</guid>
		<description><![CDATA[While trying out the new Mozilla Weave I came across the nice interface the guys built into their sync service. Funny messages included. &#160; Source: http://labs.mozilla.com/weave/]]></description>
			<content:encoded><![CDATA[<p>While trying out the new <a href="http://labs.mozilla.com/weave/" target="_blank">Mozilla Weave</a> I came across the nice interface the guys built into their sync service. Funny messages included.</p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/makingthingsup_B1AB/tehcloud_2.png" target="_blank"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="tehcloud" border="0" alt="tehcloud" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/makingthingsup_B1AB/tehcloud_thumb.png" width="404" height="205" /></a>&#160;</p>
<p>Source: <a title="http://labs.mozilla.com/weave/" href="http://labs.mozilla.com/weave/">http://labs.mozilla.com/weave/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2009/08/28/making-things-up%e2%80%a6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>That’s what I call customer support</title>
		<link>http://www.schrankmonster.de/2009/08/12/that%e2%80%99s-what-i-call-customer-support/</link>
		<comments>http://www.schrankmonster.de/2009/08/12/that%e2%80%99s-what-i-call-customer-support/#comments</comments>
		<pubDate>Wed, 12 Aug 2009 19:55:59 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[makes-my-day]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2009/08/12/ThatsWhatICallCustomerSupport.aspx</guid>
		<description><![CDATA[One of our two DSL lines in the office is provided by QSC. So far the decision to go with QSC was one of the best since I deal with Internet providers. These guys at QSC are just brilliant. Great support, great service, great pricing! They even sent me a notice that there will be [...]]]></description>
			<content:encoded><![CDATA[<p>One of our two DSL lines in the office is provided by QSC. So far the decision to go with QSC was one of the best since I deal with Internet providers. These guys at QSC are just brilliant. Great support, great service, great pricing!</p>
<p>They even sent me a notice that there will be a planned maintenance downtime in more than a week. They do the maintenance on a saturday morning. When it’s unlikely that anyone will miss the uplink. (Since we got two, we won’t actually miss it… it’s just slower)</p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/ThatswhatIcallcustomersupport_13224/qscroxx.png" target="_blank"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="qscroxx" border="0" alt="qscroxx" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/ThatswhatIcallcustomersupport_13224/qscroxx_thumb.png" width="404" height="268" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2009/08/12/that%e2%80%99s-what-i-call-customer-support/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Plain-Text Username Password Authentification with WCF</title>
		<link>http://www.schrankmonster.de/2009/07/21/plain-text-username-password-authentification-with-wcf/</link>
		<comments>http://www.schrankmonster.de/2009/07/21/plain-text-username-password-authentification-with-wcf/#comments</comments>
		<pubDate>Tue, 21 Jul 2009 11:58:58 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[networking]]></category>
		<category><![CDATA[sones]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2009/07/21/PlainTextUsernamePasswordAuthentificationWithWCF.aspx</guid>
		<description><![CDATA[If you got it, it’s easy. If you’re starting from scratch it ain’t as easy. We were in need of such a Username+Password Authentification so I started googling around. I found several articles but had to mash it all together in a trial-and-error session. Now that I am enlightened I want to share my knowledge: [...]]]></description>
			<content:encoded><![CDATA[<p>If you got it, it’s easy. If you’re starting from scratch it ain’t as easy. We were in need of such a Username+Password Authentification so I started googling around.</p>
<p>I found several articles but had to mash it all together in a trial-and-error session. Now that I am enlightened I want to share my knowledge:</p>
<p>Step 1: Implement an UserNamePasswordValidator class and override the Validate method.</p>
</p>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:57F11A72-B0E5-49c7-9094-E3A15BD5B5E6:06ece4dc-abff-482e-a05b-85c120b26869" class="wlWriterEditableSmartContent">
<pre style="background-color:White;overflow: auto;"><span style="color: #0000FF;">using</span><span style="color: #000000;"> System;
</span><span style="color: #0000FF;">using</span><span style="color: #000000;"> System.Collections.Generic;
</span><span style="color: #0000FF;">using</span><span style="color: #000000;"> System.Linq;
</span><span style="color: #0000FF;">using</span><span style="color: #000000;"> System.Text;
</span><span style="color: #0000FF;">using</span><span style="color: #000000;"> System.IdentityModel.Tokens;
</span><span style="color: #0000FF;">using</span><span style="color: #000000;"> System.IdentityModel.Selectors;

</span><span style="color: #0000FF;">namespace</span><span style="color: #000000;"> sones.Pandora.Database.Hosting
{
    </span><span style="color: #0000FF;">public</span><span style="color: #000000;"> </span><span style="color: #0000FF;">class</span><span style="color: #000000;"> UserNamePasswordAuthentification: UserNamePasswordValidator
    {

        </span><span style="color: #0000FF;">public</span><span style="color: #000000;"> </span><span style="color: #0000FF;">override</span><span style="color: #000000;"> </span><span style="color: #0000FF;">void</span><span style="color: #000000;"> Validate(</span><span style="color: #0000FF;">string</span><span style="color: #000000;"> userName, </span><span style="color: #0000FF;">string</span><span style="color: #000000;"> password)
        {
            </span><span style="color: #0000FF;">if</span><span style="color: #000000;"> ((userName </span><span style="color: #000000;">!=</span><span style="color: #000000;"> </span><span style="color: #800000;">"</span><span style="color: #800000;">Username</span><span style="color: #800000;">"</span><span style="color: #000000;">) </span><span style="color: #000000;">||</span><span style="color: #000000;"> (password </span><span style="color: #000000;">!=</span><span style="color: #000000;"> </span><span style="color: #800000;">"</span><span style="color: #800000;">Password</span><span style="color: #800000;">"</span><span style="color: #000000;">))
            {
                </span><span style="color: #0000FF;">throw</span><span style="color: #000000;"> </span><span style="color: #0000FF;">new</span><span style="color: #000000;"> SecurityTokenException(</span><span style="color: #800000;">"</span><span style="color: #800000;">Validation Failed!</span><span style="color: #800000;">"</span><span style="color: #000000;">);
            }
        }
    }
}
</span></pre>
<p><!-- Code inserted with Steve Dunn's Windows Live Writer Code Formatter Plugin.  http://dunnhq.com --></div>
</p>
<p>Step 2: Edit the App.config file to enable the previously implemented UsernamePasswordValidator.</p>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:57F11A72-B0E5-49c7-9094-E3A15BD5B5E6:6f4fb716-21f7-42e2-aaf6-eeed3f8c02f0" class="wlWriterEditableSmartContent">
<pre style="background-color:White;overflow: auto;"><span style="color: #000000;">    </span><span style="color: #0000FF;"><</span><span style="color: #800000;">bindings</span><span style="color: #0000FF;">></span><span style="color: #000000;">
      </span><span style="color: #0000FF;"><</span><span style="color: #800000;">basicHttpBinding</span><span style="color: #0000FF;">></span><span style="color: #000000;">
        </span><span style="color: #0000FF;"><</span><span style="color: #800000;">binding </span><span style="color: #FF0000;">name</span><span style="color: #0000FF;">="CustomAuthentication"</span><span style="color: #0000FF;">></span><span style="color: #000000;">
          </span><span style="color: #0000FF;"><</span><span style="color: #800000;">security </span><span style="color: #FF0000;">mode</span><span style="color: #0000FF;">="TransportCredentialOnly"</span><span style="color: #0000FF;">></span><span style="color: #000000;">
            </span><span style="color: #0000FF;"><</span><span style="color: #800000;">transport </span><span style="color: #FF0000;">clientCredentialType</span><span style="color: #0000FF;">="Basic"</span><span style="color: #FF0000;"> proxyCredentialType</span><span style="color: #0000FF;">="Basic"</span><span style="color: #0000FF;">/></span><span style="color: #000000;">
          </span><span style="color: #0000FF;"></</span><span style="color: #800000;">security</span><span style="color: #0000FF;">></span><span style="color: #000000;">
        </span><span style="color: #0000FF;"></</span><span style="color: #800000;">binding</span><span style="color: #0000FF;">></span><span style="color: #000000;">
      </span><span style="color: #0000FF;"></</span><span style="color: #800000;">basicHttpBinding</span><span style="color: #0000FF;">></span><span style="color: #000000;">
    </span><span style="color: #0000FF;"></</span><span style="color: #800000;">bindings</span><span style="color: #0000FF;">></span><span style="color: #000000;">
    </span><span style="color: #0000FF;"><</span><span style="color: #800000;">behaviors</span><span style="color: #0000FF;">></span><span style="color: #000000;">
      </span><span style="color: #0000FF;"><</span><span style="color: #800000;">serviceBehaviors</span><span style="color: #0000FF;">></span><span style="color: #000000;">
        </span><span style="color: #0000FF;"><</span><span style="color: #800000;">behavior </span><span style="color: #FF0000;">name</span><span style="color: #0000FF;">="SecurityBehavior"</span><span style="color: #0000FF;">></span><span style="color: #000000;">
          </span><span style="color: #0000FF;"><</span><span style="color: #800000;">serviceCredentials</span><span style="color: #0000FF;">></span><span style="color: #000000;">
            </span><span style="color: #0000FF;"><</span><span style="color: #800000;">userNameAuthentication
            </span><span style="color: #FF0000;">userNamePasswordValidationMode</span><span style="color: #0000FF;">="Custom"</span><span style="color: #FF0000;">
            customUserNamePasswordValidatorType</span><span style="color: #0000FF;">="sones.Pandora.Database.Hosting.UserNamePasswordAuthentification, PandoraDB_WebServiceHost_UsernamePasswordAuth"</span><span style="color: #0000FF;">/></span><span style="color: #000000;">
          </span><span style="color: #0000FF;"></</span><span style="color: #800000;">serviceCredentials</span><span style="color: #0000FF;">></span><span style="color: #000000;">
        </span><span style="color: #0000FF;"></</span><span style="color: #800000;">behavior</span><span style="color: #0000FF;">></span><span style="color: #000000;">
      </span><span style="color: #0000FF;"></</span><span style="color: #800000;">serviceBehaviors</span><span style="color: #0000FF;">></span><span style="color: #000000;">
    </span><span style="color: #0000FF;"></</span><span style="color: #800000;">behaviors</span><span style="color: #0000FF;">></span><span style="color: #000000;">
    </span><span style="color: #0000FF;"><</span><span style="color: #800000;">services</span><span style="color: #0000FF;">></span><span style="color: #000000;">
      </span><span style="color: #0000FF;"><</span><span style="color: #800000;">service </span><span style="color: #FF0000;">behaviorConfiguration</span><span style="color: #0000FF;">="SecurityBehavior"</span><span style="color: #FF0000;"> name</span><span style="color: #0000FF;">="sones.Pandora.Database.Hosting.PandoraDatabaseHost"</span><span style="color: #0000FF;">></span><span style="color: #000000;">
        </span><span style="color: #0000FF;"><</span><span style="color: #800000;">endpoint </span><span style="color: #FF0000;">address</span><span style="color: #0000FF;">=""</span><span style="color: #FF0000;"> binding</span><span style="color: #0000FF;">="basicHttpBinding"</span><span style="color: #FF0000;"> bindingConfiguration</span><span style="color: #0000FF;">="CustomAuthentication"</span><span style="color: #FF0000;">
          name</span><span style="color: #0000FF;">="ep1"</span><span style="color: #FF0000;"> contract</span><span style="color: #0000FF;">="sones.Pandora.Database.Hosting.IPandoraDatabaseHost"</span><span style="color: #FF0000;"> </span><span style="color: #0000FF;">/></span><span style="color: #000000;">
      </span><span style="color: #0000FF;"></</span><span style="color: #800000;">service</span><span style="color: #0000FF;">></span><span style="color: #000000;">
    </span><span style="color: #0000FF;"></</span><span style="color: #800000;">services</span><span style="color: #0000FF;">></span></pre>
<p><!-- Code inserted with Steve Dunn's Windows Live Writer Code Formatter Plugin.  http://dunnhq.com --></div>
<p>In this example the ServiceHost will use no server SSL certificate and therefor allow normal http access instead of just using https ssl. You can configure that behavior with the <span style="color: #0000ff"><</span><span style="color: #800000">security </span><span style="color: #ff0000">mode</span><span style="color: #0000ff">=&#8221;TransportCredentialOnly&#8221;</span><span style="color: #0000ff">> <font color="#000000">line. Just change there and define an apropriate certificate and you’re good to go with https / ssl.</font></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2009/07/21/plain-text-username-password-authentification-with-wcf/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>farewell popfly</title>
		<link>http://www.schrankmonster.de/2009/07/17/farewell-popfly/</link>
		<comments>http://www.schrankmonster.de/2009/07/17/farewell-popfly/#comments</comments>
		<pubDate>Fri, 17 Jul 2009 08:32:42 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Games]]></category>
		<category><![CDATA[graphics]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2009/07/17/farewellPopfly.aspx</guid>
		<description><![CDATA[I’ve seen the launch of PopFly two years ago. And now I am going to see the landing “Unfortunately, on August 24, 2009 the Popfly service will be discontinued and all sites, references, and resources will be taken down. At that time, your access to your Popfly account, including any games and mashups that you [...]]]></description>
			<content:encoded><![CDATA[<p>I’ve seen the launch of PopFly two years ago. And now I am going to see the landing <img src='http://www.schrankmonster.de/wp-includes/images/smilies/icon_sad.gif' alt=':-(' class='wp-smiley' /> </p>
<p align="center"><a href="http://www.popfly.com/" target="_blank"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="popfly" border="0" alt="popfly" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/farewellpopfly_93C9/popfly_1.png" width="404" height="319" /></a> </p>
<p><em>“Unfortunately, on August 24, 2009 the Popfly service will be discontinued and all sites, references, and resources will be taken down. At that time, your access to your Popfly account, including any games and mashups that you have created, will be discontinued.”</em></p>
<p>Now somebody please tell the world that the code of popfly will be released in some way so that other people can learn and work with it. That would be great. Oh if we just wouldn’t have that many lawyers on this planet.</p>
<p>Source 1: <a title="http://popflyteam.spaces.live.com/blog/cns!51018025071FD37F!336.entry" href="http://popflyteam.spaces.live.com/blog/cns!51018025071FD37F!336.entry">http://popflyteam.spaces.live.com/blog/cns!51018025071FD37F!336.entry</a>    <br />Source 2: <a title="http://www.popfly.com/" href="http://www.popfly.com/">http://www.popfly.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2009/07/17/farewell-popfly/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Copy-Wave</title>
		<link>http://www.schrankmonster.de/2009/06/09/google-copy-wave/</link>
		<comments>http://www.schrankmonster.de/2009/06/09/google-copy-wave/#comments</comments>
		<pubDate>Tue, 09 Jun 2009 09:06:54 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Research]]></category>
		<category><![CDATA[Riot]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2009/06/09/GoogleCopyWave.aspx</guid>
		<description><![CDATA[Oh dear. Another hyped protocol/platform from Google… oh wait. It’s not from Google. It&#8217; all started in Xerox PARC… There are several papers that describe what Google now claims to have developed… left: Xerox PARC Paper; right: Google Wave Conclusion: Go and read old Papers. As it turns out almost all newly hyped things have [...]]]></description>
			<content:encoded><![CDATA[<p>Oh dear. Another hyped protocol/platform from Google… oh wait. It’s not from Google. It&#8217; all started in Xerox PARC…</p>
<p>There are several papers that describe what Google now claims to have developed…</p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/GoogleCopyWave_9B38/copywave.png" target="_blank"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="copywave" border="0" alt="copywave" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/GoogleCopyWave_9B38/copywave_thumb.png" width="404" height="209" /></a>     <br />left: Xerox PARC Paper; right: Google Wave</p>
<p>Conclusion: Go and read old Papers. As it turns out almost all newly hyped things have been described in papers from years ago.</p>
<p>Source 1: <a title="http://www.waveprotocol.org/whitepapers/operational-transform" href="http://www.waveprotocol.org/whitepapers/operational-transform">http://www.waveprotocol.org/whitepapers/operational-transform</a>    <br />Source 2: <a title="http://doi.acm.org/10.1145/215585.215706" href="http://doi.acm.org/10.1145/215585.215706">http://doi.acm.org/10.1145/215585.215706</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2009/06/09/google-copy-wave/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>small and reliable SFTP server for Windows</title>
		<link>http://www.schrankmonster.de/2009/05/24/small-and-reliable-sftp-server-for-windows/</link>
		<comments>http://www.schrankmonster.de/2009/05/24/small-and-reliable-sftp-server-for-windows/#comments</comments>
		<pubDate>Sun, 24 May 2009 21:48:52 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2009/05/24/smallAndReliableSFTPServerForWindows.aspx</guid>
		<description><![CDATA[I had to transfer some data the last days and I wanted to do it fast, encrypted and using only one tcp port. SFTP is one of those protocols that come in handy in these cases. Since the machine that would host the SFTP service is a Windows machine I reached out to find a [...]]]></description>
			<content:encoded><![CDATA[<p>I had to transfer some data the last days and I wanted to do it fast, encrypted and using only one tcp port. SFTP is one of those protocols that come in handy in these cases.</p>
<p>Since the machine that would host the SFTP service is a Windows machine I reached out to find a free, reliable and easy to install and use SFTP Server.</p>
<p align="center"><a href="http://www.coreftp.com/server/" target="_blank"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="289" alt="Bild 1" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/smallandreliableSFTPserverforWindows_AE8/Bild%201_3.png" width="404" border="0"></a> </p>
<p align="left">I found Core FTP mini-sftp-server. It&#8217;s a small download of just one .exe file. When you start it up it&#8217;ll show the dialog above. You can configure username, password, port and path. Click &#8220;Start&#8221; and off you go. Works as advertised.</p>
<p>Source: <a title="http://www.coreftp.com/server/" href="http://www.coreftp.com/server/">http://www.coreftp.com/server/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2009/05/24/small-and-reliable-sftp-server-for-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Society for Geek Advancement</title>
		<link>http://www.schrankmonster.de/2009/05/22/society-for-geek-advancement/</link>
		<comments>http://www.schrankmonster.de/2009/05/22/society-for-geek-advancement/#comments</comments>
		<pubDate>Fri, 22 May 2009 08:22:14 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[hack-the-planet]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Research]]></category>
		<category><![CDATA[Riot]]></category>

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

		<guid isPermaLink="false">http://www.schrankmonster.de/2009/04/01/GoLittleMailserverGo.aspx</guid>
		<description><![CDATA[Since we moved into a new apartment in the last 3 weeks I had no stable internet connection &#8211; neither had my private Mailserver. As of today everything is in place &#8211; the mail- and fileserver is up and running and connected to the internet again. So I had a server which buffered all the [...]]]></description>
			<content:encoded><![CDATA[<p>Since we moved into a new apartment in the last 3 weeks I had no stable internet connection &#8211; neither had my private Mailserver.</p>
<p>As of today everything is in place &#8211; the mail- and fileserver is up and running and connected to the internet again. So I had a server which buffered all the mail that came in during that time. That sums up to:</p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/GolittleMailservergo_131CE/Bild%203_2.png" target="_blank"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="89" alt="Bild 3" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/GolittleMailservergo_131CE/Bild%203_thumb.png" width="346" border="0"></a></p>
<p>63.671 Mails in about 18 days. Hussah!</p>
<p align="center"> <a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/GolittleMailservergo_131CE/Bild%201_2.png" target="_blank"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="153" alt="Bild 1" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/GolittleMailservergo_131CE/Bild%201_thumb.png" width="404" border="0"></a> </p>
<p align="center">Go little Mailserver, go!!!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2009/04/01/go-little-mailserver-go/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Never gonna give you up, Never gonna…</title>
		<link>http://www.schrankmonster.de/2009/03/03/never-gonna-give-you-up-never-gonna%e2%80%a6/</link>
		<comments>http://www.schrankmonster.de/2009/03/03/never-gonna-give-you-up-never-gonna%e2%80%a6/#comments</comments>
		<pubDate>Tue, 03 Mar 2009 17:53:42 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Blog-o-Sphere]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Movies]]></category>
		<category><![CDATA[TV]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2009/03/03/NeverGonnaGiveYouUpNeverGonna.aspx</guid>
		<description><![CDATA[Die Bits-und-so Adventskalender DVD kam an! Hurray! Und nicht nur die war in der Packung:]]></description>
			<content:encoded><![CDATA[<p> Die Bits-und-so Adventskalender DVD kam an! Hurray! Und nicht nur die war in der Packung:</p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/NevergonnagiveyouupNevergonna_109AD/IMG_4217222_2.png" target="_blank"><img title="IMG_4217222" style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" height="271" alt="IMG_4217222" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/NevergonnagiveyouupNevergonna_109AD/IMG_4217222_thumb.png" width="404" border="0" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2009/03/03/never-gonna-give-you-up-never-gonna%e2%80%a6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>finally faster internet</title>
		<link>http://www.schrankmonster.de/2009/02/19/finally-faster-internet/</link>
		<comments>http://www.schrankmonster.de/2009/02/19/finally-faster-internet/#comments</comments>
		<pubDate>Thu, 19 Feb 2009 19:43:25 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Employer]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[networking]]></category>
		<category><![CDATA[sones]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2009/02/19/finallyFasterInternet.aspx</guid>
		<description><![CDATA[QSC just delivered a second DSL line to our office – now even faster – 16 Mbits downstream should be enough for now. Since the german telecom could not deliver more than 3 Mbit/s we had to ask QSC for their service… overall a very good customer experience so far. If you order a DSL [...]]]></description>
			<content:encoded><![CDATA[<p>QSC just delivered a second DSL line to our office – now even faster – 16 Mbits downstream should be enough for now. Since the german telecom could not deliver more than 3 Mbit/s we had to ask QSC for their service… overall a very good customer experience so far.</p>
<p>If you order a DSL line in germany from a reseller like QSC it means that a technical guy from the german telecom is sent to your place and he is doing the last mile connect – in our case the guy thought it would be enough to drop the TAE socket inside the wall… means we have to get another company to do the cabling afterwards… well.</p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/finallyfasterinternet_12361/006.jpg" target="_blank"><img title="006" style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" height="304" alt="006" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/finallyfasterinternet_12361/006_thumb.jpg" width="404" border="0" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2009/02/19/finally-faster-internet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>clicking to fast</title>
		<link>http://www.schrankmonster.de/2009/02/11/clicking-to-fast/</link>
		<comments>http://www.schrankmonster.de/2009/02/11/clicking-to-fast/#comments</comments>
		<pubDate>Wed, 11 Feb 2009 21:34:25 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Mobile]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2009/02/11/clickingToFast.aspx</guid>
		<description><![CDATA[gnaaaaa 100 requests per hour…]]></description>
			<content:encoded><![CDATA[<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/clickingtofast_13D67/IMG_0001.png" target="_blank"><img title="IMG_0001" style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" height="484" alt="IMG_0001" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/clickingtofast_13D67/IMG_0001_thumb.png" width="324" border="0" /></a></p>
<p align="center">gnaaaaa 100 requests per hour…</p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2009/02/11/clicking-to-fast/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>how OS X is going to make everyone stupid</title>
		<link>http://www.schrankmonster.de/2009/01/30/how-os-x-is-going-to-make-everyone-stupid/</link>
		<comments>http://www.schrankmonster.de/2009/01/30/how-os-x-is-going-to-make-everyone-stupid/#comments</comments>
		<pubDate>Fri, 30 Jan 2009 19:26:58 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Riot]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2009/01/30/howOSXIsGoingToMakeEveryoneStupid.aspx</guid>
		<description><![CDATA[Okay – the title of this article is a bit, well… too much. It’s not going to make everyone stupid. What OS X is doing: It creates stereotypes. Like this one: Everyone with a Mac seems to automagically think he or she is a design-web-hip-artist of some sort. There are great artists that do great [...]]]></description>
			<content:encoded><![CDATA[<p>Okay – the title of this article is a bit, well… too much. It’s not going to make everyone stupid. What OS X is doing: It creates stereotypes. Like this one: Everyone with a Mac seems to automagically think he or she is a design-web-hip-artist of some sort. </p>
<p>There are great artists that do great things with a Mac – don’t get me wrong. As a matter of fact many great artist have switched and stayed on the white-sometimes-black (for an extra charge) side of the apple. </p>
<p>What I want to say is that: Making “doing things” look simple doesn’t always cut it. Of course you can get it done in seconds on a Mac – but “the real stuff” takes as long and as much of knowledge as on every other platform. You just have to know things – that you’re not told. Things that are hidden from you for the sake of usability. Things every nerdy-Macintosh-Fanboy just knows and which every other normal guy does not know.</p>
<p>The cause I am writing about this is a site of a very very great band called “Amplifico”. I visited their site and found that they are offering their EP for free download. I clicked on the link. Nothing happened. Maybe you can guess why nothing happened:</p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/howOSXisgoingtomakeeveryonestupid_11F6B/amplifico_2.png" target="_blank"><img title="amplifico" style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" height="325" alt="amplifico" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/howOSXisgoingtomakeeveryonestupid_11F6B/amplifico_thumb.png" width="404" border="0" /></a></p>
<p align="left">It can look as simple as it does on a Mac to make a website. But in fact it isn’t. Thank god for OS X! It’s wonders of usability and the feel every application has are the things I really like about it. I don’t like about it that so many things think they are something they are not just by using it. I don’t like that so many misinterpretations of the User Interface are possible – giving people the sense of “having everything in control” when they actually don’t.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2009/01/30/how-os-x-is-going-to-make-everyone-stupid/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Rickrolled by bitsundso</title>
		<link>http://www.schrankmonster.de/2009/01/19/rickrolled-by-bitsundso/</link>
		<comments>http://www.schrankmonster.de/2009/01/19/rickrolled-by-bitsundso/#comments</comments>
		<pubDate>Mon, 19 Jan 2009 19:38:35 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Blog-o-Sphere]]></category>
		<category><![CDATA[hack-the-planet]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Riot]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2009/01/19/RickrolledByBitsundso.aspx</guid>
		<description><![CDATA[Oh dare you Timo Hetzel!]]></description>
			<content:encoded><![CDATA[<p align="center">Oh dare you Timo Hetzel!</p>
<p align="center"><a href="/content/binary/IMG012456143.JPG" target="_blank"><img title="rickrolled" style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" height="423" alt="rickrolled" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/Rickrolledbybitsundso_1220A/rickrolled_1.png" width="400" border="0" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2009/01/19/rickrolled-by-bitsundso/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>das gute Gefühl guter Unterhaltung</title>
		<link>http://www.schrankmonster.de/2009/01/17/das-gute-gefuhl-guter-unterhaltung/</link>
		<comments>http://www.schrankmonster.de/2009/01/17/das-gute-gefuhl-guter-unterhaltung/#comments</comments>
		<pubDate>Sat, 17 Jan 2009 19:11:09 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Games]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Radio]]></category>
		<category><![CDATA[Riot]]></category>
		<category><![CDATA[rumors]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2009/01/17/dasGuteGef%c3%bchlGuterUnterhaltung.aspx</guid>
		<description><![CDATA[Auf dem täglichen Weg ins Büro und von dort wieder nach Hause höre ich die verschiedensten Podcasts. Ein Stammpodcast seit nahezu der ersten Stunde ist Bitsundso und die verschiedenen Ableger davon: Games und so, Videogames und so, usw. Und da Herr Hetzel und Crew seit wenigen Tagen hochoffiziell die Möglichkeit anbieten sie finanziell direkt zu [...]]]></description>
			<content:encoded><![CDATA[<p>Auf dem täglichen Weg ins Büro und von dort wieder nach Hause höre ich die verschiedensten Podcasts. Ein Stammpodcast seit nahezu der ersten Stunde ist Bitsundso und die verschiedenen Ableger davon: Games und so, Videogames und so, usw.</p>
<p>Und da Herr Hetzel und Crew seit wenigen Tagen hochoffiziell die Möglichkeit anbieten sie finanziell direkt zu unterstützen und dafür sogar noch zusätzlichen Nutzen (neben dem guten Gefühl) zu erhalten habe ich mir sozusagen direkt dieses famose Bits und so Plus Abo gegönnt.</p>
<p align="center"><a href="http://www.bitsundso.de/plus/" target="_blank"><img title="bitsundso-plus-slide.001" style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" height="304" alt="bitsundso-plus-slide.001" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/dasguteGefhlguterUnterhaltung_11B9B/bitsundso-plus-slide.001_3.jpg" width="404" border="0" /></a></p>
<p align="left">Auf das da reichlich wunderbare Unterhaltung (wie in den letzten Jahren schon) kommen möge. Kaufe Bits und so Plus und werde glücklich!</p>
<p align="left">Source: <a title="http://www.bitsundso.de/plus/" href="http://www.bitsundso.de/plus/">http://www.bitsundso.de/plus/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2009/01/17/das-gute-gefuhl-guter-unterhaltung/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>free dr pepper</title>
		<link>http://www.schrankmonster.de/2008/11/23/free-dr-pepper/</link>
		<comments>http://www.schrankmonster.de/2008/11/23/free-dr-pepper/#comments</comments>
		<pubDate>Sun, 23 Nov 2008 22:45:58 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[makes-my-day]]></category>
		<category><![CDATA[Riot]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2008/11/23/freeDrPepper.aspx</guid>
		<description><![CDATA[I am not a fan of Guns&#8217;n'Roses &#8211; but this deal is a steal: Dr Pepper betted that the band won&#8217;t get their new album released in 2008. If they would release it in 2008 every US citizen would get a free serve of Dr Pepper. get yours! Source: http://www.drpepper.com/freeDrPepper/]]></description>
			<content:encoded><![CDATA[<p>I am not a fan of Guns&#8217;n'Roses &#8211; but this deal is a steal: Dr Pepper betted that the band won&#8217;t get their new album released in 2008. If they would release it in 2008 every US citizen would get a free serve of Dr Pepper.</p>
<p align="center"><a href="http://www.drpepper.com/freeDrPepper/" target="_blank"><img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="304" alt="freepepper" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/freedrpepper_14E45/freepepper_1.png" width="379" border="0"></a> </p>
<p align="center">get yours!</p>
<p>Source: <a title="http://www.drpepper.com/freeDrPepper/" href="http://www.drpepper.com/freeDrPepper/">http://www.drpepper.com/freeDrPepper/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2008/11/23/free-dr-pepper/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SPAM down 100%</title>
		<link>http://www.schrankmonster.de/2008/11/13/spam-down-100/</link>
		<comments>http://www.schrankmonster.de/2008/11/13/spam-down-100/#comments</comments>
		<pubDate>Thu, 13 Nov 2008 22:04:49 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[hack-the-planet]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Riot]]></category>

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

		<guid isPermaLink="false">http://www.schrankmonster.de/2008/11/03/BruceSchneierAccuratelyPredictsTheRandom.aspx</guid>
		<description><![CDATA[This is just hilarious! Like we all like to fool around with Chuck Norris it&#8217;s time to do the same with the security guru Bruce Schneier: Source: http://geekz.co.uk/schneierfacts]]></description>
			<content:encoded><![CDATA[<p>This is just hilarious! Like we all like to fool around with Chuck Norris it&#8217;s time to do the same with the security guru Bruce Schneier:</p>
<p align="center"><a href="http://geekz.co.uk/schneierfacts" target="_blank"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="215" alt="schneier" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/BruceSchneieraccuratelypredictstherando_139E1/schneier_1.png" width="400" border="0"></a> </p>
<p>Source: <a title="http://geekz.co.uk/schneierfacts" href="http://geekz.co.uk/schneierfacts">http://geekz.co.uk/schneierfacts</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2008/11/03/bruce-schneier-accurately-predicts-the-random/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wie man &#8220;Schlag den Raab&#8221; schaut &#8211; ohne Werbung und ohne herumklicken</title>
		<link>http://www.schrankmonster.de/2008/11/02/wie-man-schlag-den-raab-schaut-ohne-werbung-und-ohne-herumklicken/</link>
		<comments>http://www.schrankmonster.de/2008/11/02/wie-man-schlag-den-raab-schaut-ohne-werbung-und-ohne-herumklicken/#comments</comments>
		<pubDate>Sun, 02 Nov 2008 16:26:51 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[hack-the-planet]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[makes-my-day]]></category>
		<category><![CDATA[TV]]></category>

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

		<guid isPermaLink="false">http://www.schrankmonster.de/2008/10/24/elasticWindows.aspx</guid>
		<description><![CDATA[Amazon has done it&#8217;s thing and you can now order Windows based machinery based on EC2. That&#8217;s great news for us since we&#8217;re definitly planning to make our software also available on EC2. &#8220;Amazon EC2 running Microsoft Windows Server® 2003 is a fast and dependable environment for deploying applications using the Microsoft Web Platform, including [...]]]></description>
			<content:encoded><![CDATA[<p>Amazon has done it&#8217;s thing and you can now order Windows based machinery based on EC2. That&#8217;s great news for us since we&#8217;re definitly planning to make our software also available on EC2.</p>
<p>&#8220;Amazon EC2 running Microsoft Windows Server® 2003 is a fast and dependable environment for deploying applications using the Microsoft Web Platform, including ASP.NET, ASP.NET AJAX, Silverlight™, and Internet Information Server (IIS). Amazon EC2 enables you to run any compatible Windows-based solution on AWS’ high-performance, reliable, cost-effective, cloud computing platform. Common Windows use cases include website and web-service hosting, high-performance computing (HPC) and data processing, media transcoding, distributed testing, ASP.NET application hosting, and any other application requiring Windows software. Amazon EC2 also now supports the SQL Server® Express and SQL Server Standard databases, and makes those offerings available to customers on an hourly basis.&#8221;</p>
</p>
<p>Source: <a title="http://aws.amazon.com/windows/" href="http://aws.amazon.com/windows/">http://aws.amazon.com/windows/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2008/10/24/elastic-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to fix a &#8220;Maximum length exceeded&#8221; error message in ASP.NET</title>
		<link>http://www.schrankmonster.de/2008/10/08/how-to-fix-a-maximum-length-exceeded-error-message-in-asp-net/</link>
		<comments>http://www.schrankmonster.de/2008/10/08/how-to-fix-a-maximum-length-exceeded-error-message-in-asp-net/#comments</comments>
		<pubDate>Wed, 08 Oct 2008 17:43:15 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Riot]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2008/10/08/HowToFixAMaximumLengthExceededErrorMessageInASPNET.aspx</guid>
		<description><![CDATA[Since I had to fix it for more than hundred times before &#8211; here is once and for all the solution: Add to the httpRuntime section of the web.config file of your ASP.NET application or webservice: and you&#8217;re done.]]></description>
			<content:encoded><![CDATA[<p>Since I had to fix it for more than hundred times before &#8211; here is once and for all the solution:</p>
<p>Add to the httpRuntime section of the web.config file of your ASP.NET application or webservice:</p>
<p><strong><em><httpRuntime maxRequestLength="100000" enable="true" /></em></strong></p>
<p>and you&#8217;re done.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2008/10/08/how-to-fix-a-maximum-length-exceeded-error-message-in-asp-net/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Charlotte Roche wieder im TV</title>
		<link>http://www.schrankmonster.de/2008/09/29/charlotte-roche-wieder-im-tv/</link>
		<comments>http://www.schrankmonster.de/2008/09/29/charlotte-roche-wieder-im-tv/#comments</comments>
		<pubDate>Mon, 29 Sep 2008 19:29:22 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Charlotte Roche]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[TV]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2008/09/29/CharlotteRocheWiederImTV.aspx</guid>
		<description><![CDATA[Diesmal ist 3sat eine zeitweilige Heimat für Charlotte Roche. In der dort ab 1. Oktober startenden Reihe &#8220;Charlotte Roche unter&#8230;&#8221; wird sie Müllmänner, Bestatter, Altenpfleger in ihrem Alltag besuchen: &#8220;Dabei probt Charlotte Roche nach eigenen Angaben den &#8220;charmanten Aufeinanderprall“. Ohne Drehbuch, ohne Absprachen, ganz spontan lässt sie sich auf Berufswelten und Menschen ein. &#8220;Ich versuche [...]]]></description>
			<content:encoded><![CDATA[<p>Diesmal ist 3sat eine zeitweilige Heimat für Charlotte Roche. In der dort ab 1. Oktober startenden Reihe &#8220;Charlotte Roche unter&#8230;&#8221; wird sie Müllmänner, Bestatter, Altenpfleger in ihrem Alltag besuchen:</p>
<p><em>&#8220;Dabei probt Charlotte Roche nach eigenen Angaben den &#8220;charmanten Aufeinanderprall“. Ohne Drehbuch, ohne Absprachen, ganz spontan lässt sie sich auf Berufswelten und Menschen ein. &#8220;Ich versuche nicht, irgendeine verborgene Wahrheit ans Licht zu zerren. Es geht darum, was wir gemeinsam erleben.“ Und der Zuschauer lernt mit.&#8221;</em></p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/CharlotteRochewiederimTV_14A56/charlotteunterbestatter.png" target="_blank"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="272" alt="charlotteunterbestatter" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/CharlotteRochewiederimTV_14A56/charlotteunterbestatter_thumb.png" width="404" border="0"></a> </p>
<p align="left">Dankenswerterweise gibt es die kompletter Serie schon im Internet zu schauen &#8211; hochinteressante Sache das und meiner Meinung nach seit langem das beste Projekt von Charlotte.</p>
<p>P.S.: vielen Dank an <a href="http://www.zwobotsgeist.de/" target="_blank">Martin von Zwobotgeist</a> für den Hinweis.</p>
<p>Source: <a href="http://www.3sat.de/3sat.php?http://www.3sat.de/specials/125973/index.html" target="_blank">3sat</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2008/09/29/charlotte-roche-wieder-im-tv/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Auf der Suche nach einem CMS&#8230;</title>
		<link>http://www.schrankmonster.de/2008/09/28/auf-der-suche-nach-einem-cms/</link>
		<comments>http://www.schrankmonster.de/2008/09/28/auf-der-suche-nach-einem-cms/#comments</comments>
		<pubDate>Sun, 28 Sep 2008 12:09:49 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Employer]]></category>
		<category><![CDATA[graphics]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[sones]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2008/09/28/AufDerSucheNachEinemCMS.aspx</guid>
		<description><![CDATA[In unserer kleinen Firma sind wir zur Zeit auch auf der Suche nach einem brauchbaren Content Management System und da kommt natürlich so ein Artikel wie gerufen: Eine Übersicht über einige der großen CMSe. Im moment favorisiert der Verantwortliche für die Webseite das Typo3 &#8211; das hab ich dann auch mal per VM zur Verfügung [...]]]></description>
			<content:encoded><![CDATA[<p>In unserer <a href="http://www.sones.de" target="_blank">kleinen Firma</a> sind wir zur Zeit auch auf der Suche nach einem brauchbaren Content Management System und da kommt natürlich so ein Artikel wie gerufen: Eine Übersicht über einige der großen CMSe. Im moment favorisiert der Verantwortliche für die Webseite das Typo3 &#8211;  das hab ich dann auch mal per VM zur Verfügung gestellt &#8211; aber wirklich überzeugt hat es zumindest mich nicht &#8211; nungut, ich muss damit ja auch nicht klar kommen.</p>
<p><em>&#8220;Wenigstens bin ich nicht der einzige! Und neu ist meine Problematik auch nicht: Bereits Anfang 2004 war der große </em><a href="http://www.mezzoblue.com/archives/2004/01/09/wanted_cms/"><em>Dave Shea auf der Suche nach einem geeigneten CMS</em></a><em>, das seine (wirklich nicht besonders exotischen) Forderungen erfüllt. So ähnlich fühle ich mich auch gerade, jedoch fast 5 Jahre später. Und wie es scheint, hat sich gar nicht soviel verändert <img src='http://www.schrankmonster.de/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> &#8221;</em></p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/AufderSuchenacheinemCMS_DCBC/typo3.png" target="_blank"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="281" alt="typo3" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/AufderSuchenacheinemCMS_DCBC/typo3_thumb.png" width="347" border="0"></a> </p>
<p>Source: <a title="http://praegnanz.de/weblog/subjektiver-cms-einkaufsfuehrer" href="http://praegnanz.de/weblog/subjektiver-cms-einkaufsfuehrer">http://praegnanz.de/weblog/subjektiver-cms-einkaufsfuehrer</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2008/09/28/auf-der-suche-nach-einem-cms/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>free graph paper generator&#8230;</title>
		<link>http://www.schrankmonster.de/2008/09/05/free-graph-paper-generator/</link>
		<comments>http://www.schrankmonster.de/2008/09/05/free-graph-paper-generator/#comments</comments>
		<pubDate>Fri, 05 Sep 2008 09:59:07 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Drawing]]></category>
		<category><![CDATA[graphics]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Reallife]]></category>
		<category><![CDATA[Research]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2008/09/05/freeGraphPaperGenerator.aspx</guid>
		<description><![CDATA[&#8230;if you do have a decent printer and if you haven&#8217;t got any graph paper &#8211; you could print it yourself. thx to Kristian. Source: http://www.incompetech.com/graphpaper/plain/]]></description>
			<content:encoded><![CDATA[<p>&#8230;if you do have a decent printer and if you haven&#8217;t got any graph paper &#8211; you could print it yourself.</p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/freegraphpapergenerator_D6A7/graphpaper.png" target="_blank"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="227" alt="graphpaper" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/freegraphpapergenerator_D6A7/graphpaper_thumb.png" width="404" border="0"></a> </p>
<p align="left">thx to <a href="http://blog.koehntopp.de/archives/2216-Schulanfang.html" target="_blank">Kristian.</a></p>
<p align="left">Source: <a title="http://www.incompetech.com/graphpaper/plain/" href="http://www.incompetech.com/graphpaper/plain/">http://www.incompetech.com/graphpaper/plain/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2008/09/05/free-graph-paper-generator/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>you don&#8217;t understand what&#8217;s been said: download subtitles!</title>
		<link>http://www.schrankmonster.de/2008/09/03/you-dont-understand-whats-been-said-download-subtitles/</link>
		<comments>http://www.schrankmonster.de/2008/09/03/you-dont-understand-whats-been-said-download-subtitles/#comments</comments>
		<pubDate>Wed, 03 Sep 2008 19:35:40 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[TV]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2008/09/03/youDontUnderstandWhatsBeenSaidDownloadSubtitles.aspx</guid>
		<description><![CDATA[If you are frequently watching foreign language TV Shows you might be interested in subtitles for your TV shows: &#8220;Here you can find subtitles for the most popular TV Shows and TV series. Subtitles are available in multiple languages. All subtitles here are packed with WinZip, you must unpack to use it. To watch DivX/XviD [...]]]></description>
			<content:encoded><![CDATA[<p>If you are frequently watching foreign language TV Shows you might be interested in subtitles for your TV shows:</p>
<p><em>&#8220;Here you can find subtitles for the most popular TV Shows and TV series. Subtitles are available in multiple languages. All subtitles here are packed with WinZip, you must unpack to use it. To watch DivX/XviD movies with subtitles you first need to install a DirectShow filter for Windows Media Player which is called DirectVobSub.&#8221;</em></p>
<p align="center"><a href="http://www.tvsubtitles.net/" target="_blank"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="281" alt="subtitles" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/youdontunderstandwhatsbeensaiddownloadsu_14BD2/subtitles_1.jpg" width="227" border="0"></a></p>
</p>
<p>Source: <a title="http://www.tvsubtitles.net/" href="http://www.tvsubtitles.net/">http://www.tvsubtitles.net/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2008/09/03/you-dont-understand-whats-been-said-download-subtitles/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I finally got my low latency network audio solution</title>
		<link>http://www.schrankmonster.de/2008/09/01/i-finally-got-my-low-latency-network-audio-solution/</link>
		<comments>http://www.schrankmonster.de/2008/09/01/i-finally-got-my-low-latency-network-audio-solution/#comments</comments>
		<pubDate>Mon, 01 Sep 2008 18:30:45 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[hack-the-planet]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Modding]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[networking]]></category>
		<category><![CDATA[Software]]></category>

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

		<guid isPermaLink="false">http://www.schrankmonster.de/2008/08/31/freeEBookGalorePython.aspx</guid>
		<description><![CDATA[There are more than 10 free eBooks available about Python: &#8230; like &#8220;Dive into Python&#8221;: &#8220;This is a fantastic book that is also available in print. It covers everything, from installing Python and the language’s syntax, right up to web services and unit testing. This is a good book to learn from, but it’s also [...]]]></description>
			<content:encoded><![CDATA[<p>There are more than 10 free eBooks available about <a href="http://en.wikipedia.org/wiki/Python_(programming_language)" target="_blank">Python</a>:</p>
<p align="center"><a href="http://en.wikipedia.org/wiki/Image:Python_logo.svg"><img height="72" alt="" src="http://upload.wikimedia.org/wikipedia/en/thumb/0/06/Python_logo.svg/300px-Python_logo.svg.png" width="300" border="0"></a></p>
<p>&#8230; like &#8220;Dive into Python&#8221;:</p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/freeeBookgalorePython_F552/1590593561.01._SS500_SCLZZZZZZZ_V1110519742__2.jpg" target="_blank"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="277" alt="1590593561.01._SS500_SCLZZZZZZZ_V1110519742_" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/freeeBookgalorePython_F552/1590593561.01._SS500_SCLZZZZZZZ_V1110519742__thumb.jpg" width="277" border="0"></a> </p>
<p><em>&#8220;This is a fantastic book that is also </em><a href="http://www.amazon.com/gp/redirect.html?ie=UTF8&#038;location=http%3A%2F%2Fwww.amazon.co.uk%2FDive-Into-Python-Mark-Pilgrim%2Fdp%2F1590593561%3Fie%3DUTF8%26s%3Dbooks%26qid%3D1219497763%26sr%3D8-1&#038;tag=coderholic-20&#038;linkCode=ur2&#038;camp=1789&#038;creative=9325"><em>available in print</em></a><em><img height="1" alt="" src="http://www.assoc-amazon.com/e/ir?t=coderholic-20&#038;l=ur2&#038;o=1" width="1" border="0">. It covers everything, from installing Python and the language’s syntax, right up to web services and unit testing. This is a good book to learn from, but it’s also excellent to use a reference. I frequently find myself visiting the site! If you only read one book on this list make it this one.&#8221;</em></p>
<p>other eBooks:</p>
<p align="center"><a href="http://www.pythonware.com/library/tkinter/introduction/index.htm" target="_blank">An Introduction to Tkinter</a><br /><a title="How to think like a Computer Scientist" href="http://openbookproject.net//thinkCSpy/">How to think like a Computer Scientist</a><br /><a title="The Standard Python Library" href="http://effbot.org/librarybook/">The Standard Python Library</a><br /><a title="Invent Your Own Computer Games with Python" href="http://pythonbook.coffeeghost.net/book1/index.html">Invent Your Own Computer Games with Python</a><br /><a title="The Django Book" href="http://www.djangobook.com/en/1.0/">The Django Book</a><br /><a title="The Pylons Book" href="http://pylonsbook.com/">The Pylons Book</a><br /><a title="Data Structures and Algorithms with Object-Oriented Design Patterns in Python" href="http://www.brpreiss.com/books/opus7/html/">Data Structures and Algorithms with Object-Oriented Design Patterns in Python</a><br /><a title="Building Skills in Python" href="http://homepage.mac.com/s_lott/books/python/pythonbook-2.5.html">Building Skills in Python</a><br /><a title="Building Skills in OO Design" href="http://homepage.mac.com/s_lott/books/oodesign.html">Building Skills in OO Design</a></p>
</p>
<p>Source 1: <a title="Dive into Python" href="http://www.diveintopython.org/">Dive into Python</a><br />Source 2: <a title="An Introduction to Tkinter" href="http://www.pythonware.com/library/tkinter/introduction/index.htm">An Introduction to Tkinter</a><br />Source 3: <a title="How to think like a Computer Scientist" href="http://openbookproject.net//thinkCSpy/">How to think like a Computer Scientist</a><br />Source 4: <a title="The Standard Python Library" href="http://effbot.org/librarybook/">The Standard Python Library</a><br />Source 5: <a title="Invent Your Own Computer Games with Python" href="http://pythonbook.coffeeghost.net/book1/index.html">Invent Your Own Computer Games with Python</a><br />Source 6: <a title="The Django Book" href="http://www.djangobook.com/en/1.0/">The Django Book</a><br />Source 7: <a title="The Pylons Book" href="http://pylonsbook.com/">The Pylons Book</a><br />Source 8: <a title="Data Structures and Algorithms with Object-Oriented Design Patterns in Python" href="http://www.brpreiss.com/books/opus7/html/">Data Structures and Algorithms with Object-Oriented Design Patterns in Python</a><br />Source 9: <a title="Building Skills in Python" href="http://homepage.mac.com/s_lott/books/python/pythonbook-2.5.html">Building Skills in Python</a><br />Source 10: <a title="Building Skills in OO Design" href="http://homepage.mac.com/s_lott/books/oodesign.html">Building Skills in OO Design</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2008/08/31/free-ebook-galore-python/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>free eBook: Data Structures and Algorithms</title>
		<link>http://www.schrankmonster.de/2008/08/29/free-ebook-data-structures-and-algorithms/</link>
		<comments>http://www.schrankmonster.de/2008/08/29/free-ebook-data-structures-and-algorithms/#comments</comments>
		<pubDate>Fri, 29 Aug 2008 13:36:23 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[books]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Talks and Slides]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2008/08/29/freeEBookDataStructuresAndAlgorithms.aspx</guid>
		<description><![CDATA[&#8220;This book written by Granville Barnett and Luca Del Tongo is part of an effort to provide all developers with a core understanding of algorithms that operate on various common, and uncommon data structures. Data Structures and Algorithms: Annotated Reference with Examples is completely free!&#8221; The first draft is available now &#8211; and it&#8217;s 97 [...]]]></description>
			<content:encoded><![CDATA[<p><em>&#8220;This book written by </em><a href="http://msmvps.com/blogs/gbarnett/"><em>Granville Barnett</em></a><em> and </em><a href="http://blogs.ugidotnet.org/wetblog/Default.aspx"><em>Luca Del Tongo</em></a><em> is part of an effort to provide all developers with a core understanding of algorithms that operate on various common, and uncommon data structures. </em>
<p><em>Data Structures and Algorithms: Annotated Reference with Examples is completely free!&#8221;</em>
<p>The first draft is available now &#8211; and it&#8217;s 97 pages.
<p align="center"><a href="http://dotnetslackers.com/projects/Data-Structures-And-Algorithms/" target="_blank"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="404" alt="dsa" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/freeeBookDataStructuresandAlgorithms_F79A/dsa_3.png" width="285" border="0"></a> </p>
<p>Source: <a title="http://dotnetslackers.com/projects/Data-Structures-And-Algorithms/" href="http://dotnetslackers.com/projects/Data-Structures-And-Algorithms/">http://dotnetslackers.com/projects/Data-Structures-And-Algorithms/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2008/08/29/free-ebook-data-structures-and-algorithms/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>turn new pictures into old ones&#8230;the Bakumatsu picture generator</title>
		<link>http://www.schrankmonster.de/2008/08/27/turn-new-pictures-into-old-ones-the-bakumatsu-picture-generator/</link>
		<comments>http://www.schrankmonster.de/2008/08/27/turn-new-pictures-into-old-ones-the-bakumatsu-picture-generator/#comments</comments>
		<pubDate>Wed, 27 Aug 2008 12:10:09 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[graphics]]></category>
		<category><![CDATA[Internet]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2008/08/27/turnNewPicturesIntoOldOnestheBakumatsuPictureGenerator.aspx</guid>
		<description><![CDATA[&#8220;Bakumatsu were the final years of the Edo period in Japan. It was a turning point in Japanese history as it was the end of the period of isolation in Japan. The feudal way of governing was coming to an end, and the start of the Meiji government, which would later take Japan to the [...]]]></description>
			<content:encoded><![CDATA[<p><em>&#8220;Bakumatsu were the final years of the Edo period in Japan. It was a turning point in Japanese history as it was the end of the period of isolation in Japan. The feudal way of governing was coming to an end, and the start of the Meiji government, which would later take Japan to the world power status.&#8221;</em></p>
<p>This is a very cool picture effect free to use which turns this:</p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/turnnewpict.theBakumatsupicturegenerator_129C4/original.jpg"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="300" alt="original" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/turnnewpict.theBakumatsupicturegenerator_129C4/original_thumb.jpg" width="404" border="0"></a> </p>
<p align="center">into this:</p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/turnnewpict.theBakumatsupicturegenerator_129C4/stvhzvzz-20080825040823_2.jpg"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="304" alt="stvhzvzz-20080825040823" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/turnnewpict.theBakumatsupicturegenerator_129C4/stvhzvzz-20080825040823_thumb.jpg" width="404" border="0"></a> </p>
<p>Source: <a title="http://labs.wanokoto.jp/olds" href="http://labs.wanokoto.jp/olds">http://labs.wanokoto.jp/olds</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2008/08/27/turn-new-pictures-into-old-ones-the-bakumatsu-picture-generator/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Rechte-Kleinstaaterei</title>
		<link>http://www.schrankmonster.de/2008/08/26/rechte-kleinstaaterei/</link>
		<comments>http://www.schrankmonster.de/2008/08/26/rechte-kleinstaaterei/#comments</comments>
		<pubDate>Tue, 26 Aug 2008 19:21:21 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Reallife]]></category>
		<category><![CDATA[Riot]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2008/08/26/RechteKleinstaaterei.aspx</guid>
		<description><![CDATA[Da surfe ich hier und da mal herum &#8211; schaue mir ein paar Internetseiten über Bamberg an und da werde ich Zeuge einer ganz seltsamen Darbietung. Bislang wusste ich dass Verbreitungsrechte im Internet auf Länder vergeben werden können &#8211; also dass man beispielsweise einen Webseiten Inhalt oder Livestream nur innerhalb der USA abrufen kann. Nun [...]]]></description>
			<content:encoded><![CDATA[<p>Da surfe ich hier und da mal herum &#8211; schaue mir ein paar Internetseiten über Bamberg an und da werde ich Zeuge einer ganz seltsamen Darbietung. </p>
<p>Bislang wusste ich dass Verbreitungsrechte im Internet auf Länder vergeben werden können &#8211; also dass man beispielsweise einen Webseiten Inhalt oder Livestream nur innerhalb der USA abrufen kann. </p>
<p>Nun scheint diese Art der Gängelung auch innerhalb von einzelnen Staaten Mode zu werden. Offenbar kann man in Deutschland nämlich die Rechte nur für ein bestimmtes Bundesland erwerben&#8230; Leute Leute wo wird das noch hinführen?</p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/RechteKleinstaaterei_42C/bamberg2_2.jpg" target="_blank"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="395" alt="bamberg2" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/RechteKleinstaaterei_42C/bamberg2_thumb.jpg" width="404" border="0"></a> </p>
<p align="left">Source: <a title="http://www.bamberg-guide.de/bamberg/magazin/artikel.php?id=20080809201222" href="http://www.bamberg-guide.de/bamberg/magazin/artikel.php?id=20080809201222">http://www.bamberg-guide.de/bamberg/magazin/artikel.php?id=20080809201222</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2008/08/26/rechte-kleinstaaterei/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Photosynth is open for the public</title>
		<link>http://www.schrankmonster.de/2008/08/21/photosynth-is-open-for-the-public/</link>
		<comments>http://www.schrankmonster.de/2008/08/21/photosynth-is-open-for-the-public/#comments</comments>
		<pubDate>Thu, 21 Aug 2008 09:05:43 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Employer]]></category>
		<category><![CDATA[graphics]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Research]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2008/08/21/PhotosynthIsOpenForThePublic.aspx</guid>
		<description><![CDATA[Believe it or not &#8211; it&#8217;s been 2 years since I first wrote about Photosynth technology. Today Microsoft made it available to the public. It&#8217;s not a tool (yet) &#8211; like I wanted &#8211; right now but it&#8217;s built into this website &#8211; so you have to upload your pictures, they are processed and then [...]]]></description>
			<content:encoded><![CDATA[<p>Believe it or not &#8211; it&#8217;s been <a href="http://www.schrankmonster.de/PermaLink,guid,fdc3d1fb-4966-418b-83ea-1e0c12aae833.aspx" target="_blank">2 years since I first wrote about Photosynth technology.</a> Today Microsoft made it available to the public. It&#8217;s not a tool (yet) &#8211; like I wanted &#8211; right now but it&#8217;s built into this website &#8211; so you have to upload your pictures, they are processed and then you can browse on this website&#8230; well it&#8217;s a start for a really great technology.</p>
<p><em>&#8220;We’re pleased to announce the first full release of Photosynth, available now at </em><a href="http://photosynth.com/"><em>photosynth.com</em></a><em>.  Photosynth takes a collection of regular photographs and reconstructs the scene or object in a 3-D environment.  For those of you who have seen </em><a href="http://www.ted.com/index.php/talks/blaise_aguera_y_arcas_demos_photosynth.html"><em>the videos</em></a><em> or tried our tech preview, you could experience synths that we made in the lab and get a feel for what Photosynth is and how it works.  But now, for the first time ever you can create synths from your own pictures and share them with your friends.  </em><a href="http://photosynth.net/explore.aspx"><em>Explore great synths</em></a><em> from others or </em><a href="http://photosynth.net/learn.aspx"><em>create a few of your own</em></a><em>.&#8221;</em></p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/Photosynthisopenforthepublic_BDD3/halo3photosynth.jpg"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="283" alt="halo3photosynth" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/Photosynthisopenforthepublic_BDD3/halo3photosynth_thumb.jpg" width="404" border="0"></a> </p>
<p align="left">It&#8217;s not going to work on anything different than Windows. So stick to the movies if you&#8217;re on anything else. But as far as I know it&#8217;ll run o</p>
<p>Source 1: <a title="http://photosynth.net/Default.aspx" href="http://photosynth.net/Default.aspx">http://photosynth.net/Default.aspx</a><br />Source 2: <a title="http://www.schrankmonster.de/PermaLink,guid,fdc3d1fb-4966-418b-83ea-1e0c12aae833.aspx" href="http://www.schrankmonster.de/PermaLink,guid,fdc3d1fb-4966-418b-83ea-1e0c12aae833.aspx">http://www.schrankmonster.de/PermaLink,guid,fdc3d1fb-4966-418b-83ea-1e0c12aae833.aspx</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2008/08/21/photosynth-is-open-for-the-public/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>how to push an INN NNTP newsserver dump to a new newsserver&#8230;</title>
		<link>http://www.schrankmonster.de/2008/08/18/how-to-push-an-inn-nntp-newsserver-dump-to-a-new-newsserver/</link>
		<comments>http://www.schrankmonster.de/2008/08/18/how-to-push-an-inn-nntp-newsserver-dump-to-a-new-newsserver/#comments</comments>
		<pubDate>Mon, 18 Aug 2008 20:32:25 +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/2008/08/18/howToPushAnINNNNTPNewsserverDumpToANewNewsserver.aspx</guid>
		<description><![CDATA[I happen to have this ginormous archive from a local newsserver &#8211; more than 14 gigabytes of text and more than 8 years of history. Now this archive is a dump from the INN NNTP server that was previously used. It&#8217;s one folder per newsgroup and one file per article. So I now want to [...]]]></description>
			<content:encoded><![CDATA[<p>I happen to have this ginormous archive from a local newsserver &#8211; more than 14 gigabytes of text and more than 8 years of history. Now this archive is a dump from the INN NNTP server that was previously used. It&#8217;s one folder per newsgroup and one file per article.</p>
<p>So I now want to integrate that archive into my own new newsserver &#8211; so what I am going to do is: Writing a small client application that can push all the articles from the folders to the new newsserver via nntp procotol.</p>
<p>Since the NNTP protocol is trivial to code and to explain I won&#8217;t reimplement it once again &#8211; instead I am going to use <a href="http://www.developerfusion.co.uk/show/4472/1/" target="_blank">Randy Charles Morins nice article about accessing NNTP servers with C#</a>:</p>
<p><em>&#8220;NNTP is an older fading protocol in the Internet protocol family. The protocol is used to retrieve news from news server, a.k.a. NetNews servers. The protocol works by posting messages into various forums, a.k.a. newsgroups. Then other end-users can read the recent posts in the forums. There also exist protocols for distributing NetNews contents amongst various NetNews servers, allowing thousands of servers to share news and forums. The most popular news server is of course Microsoft&#8217;s [</em><a href="nntp://news.microsoft.com"><em>nntp://news.microsoft.com</em></a><em>]. More often than not, you can launch your NetNews client by typing the nntp URL in your browser&#8217;s address bar.&#8221;</em></p>
<p>I just made a quick-n-dirty addition of NNTP USER/PASS Authentification because my new server needs a username/password authentification. (NNTP Authentification is specified in <a href="http://www.rfc-archive.org/getrfc.php?rfc=4643" target="_blank">RFC 4643</a>)</p>
<p>The tool is easy to use since it&#8217;s command line and only takes simple parameters:</p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/howtopushanINNNNTPnewsserverdumptoanewn_13B14/pushtonntp_2.jpg"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="146" alt="pushtonntp" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/howtopushanINNNNTPnewsserverdumptoanewn_13B14/pushtonntp_thumb.jpg" width="400" border="0"></a> </p>
<p align="center">Grab the source and compiled binary here: <a href="http://www.schrankmonster.de/content/binary/PushToNNTP.zip">PushToNNTP.zip (32,82 KB)</a></p>
<p align="left">I release all of this under cc-by-nc-sa license.</p>
<p>Source 1: <a title="http://www.developerfusion.co.uk/show/4472/1/" href="http://www.developerfusion.co.uk/show/4472/1/">http://www.developerfusion.co.uk/show/4472/1/</a><br />Source 2: <a title="http://www.rfc-archive.org/getrfc.php?rfc=4643" href="http://www.rfc-archive.org/getrfc.php?rfc=4643">http://www.rfc-archive.org/getrfc.php?rfc=4643</a><br />Source 3: <a href="http://www.schrankmonster.de/content/binary/PushToNNTP.zip">PushToNNTP.zip (32,82 KB)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2008/08/18/how-to-push-an-inn-nntp-newsserver-dump-to-a-new-newsserver/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>When a site redesign isn&#8217;t accepted by your users&#8230;</title>
		<link>http://www.schrankmonster.de/2008/08/13/when-a-site-redesign-isnt-accepted-by-your-users/</link>
		<comments>http://www.schrankmonster.de/2008/08/13/when-a-site-redesign-isnt-accepted-by-your-users/#comments</comments>
		<pubDate>Wed, 13 Aug 2008 21:06:27 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[graphics]]></category>
		<category><![CDATA[hack-the-planet]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Riot]]></category>

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

		<guid isPermaLink="false">http://www.schrankmonster.de/2008/08/13/MunichIn3D.aspx</guid>
		<description><![CDATA[OMG! I just realized that the better part of Munich is available in Google Earth in 3D mode &#8211; which means real real 3D buildings like this. I thought that the birds eye view of Virtual Earth is cool &#8211; but this is a different animal.]]></description>
			<content:encoded><![CDATA[<p align="left">OMG! I just realized that the better part of Munich is available in Google Earth in 3D mode &#8211; which means real real 3D buildings like this. I thought that the birds eye view of Virtual Earth is cool &#8211; but this is a different animal.</p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/Munichin3D_C3A/googlearth_2.jpg" target="_blank"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="233" alt="googlearth" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/Munichin3D_C3A/googlearth_thumb.jpg" width="404" border="0"></a> </p>
<p align="center">
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2008/08/13/munich-in-3d/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>read the MSDN Forums with a cool client interface</title>
		<link>http://www.schrankmonster.de/2008/08/12/read-the-msdn-forums-with-a-cool-client-interface/</link>
		<comments>http://www.schrankmonster.de/2008/08/12/read-the-msdn-forums-with-a-cool-client-interface/#comments</comments>
		<pubDate>Tue, 12 Aug 2008 16:58:41 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2008/08/12/readTheMSDNForumsWithACoolClientInterface.aspx</guid>
		<description><![CDATA[I often read in the MSDN Forums but I will read more often because now there&#8217;s a client application available: &#8220;After many months of hard work we are proud to announce the availability of our first CTP of the Microsoft Forums Client. Much of the work for this CTP is in foundational code that will [...]]]></description>
			<content:encoded><![CDATA[<p>I often read in the MSDN Forums but I will read more often because now there&#8217;s a client application available:
<p><em>&#8220;After many months of hard work we are proud to announce the availability of our first CTP of the Microsoft Forums Client. Much of the work for this CTP is in foundational code that will let us build the rest of the application, but we hope that this first preview will let you see what direction we&#8217;re heading in, and also give you a chance to give us feedback!<br />Things that work in this CTP:</em>
<ul>
<li><em>Getting the list of available forums </em>
<li><em>Subscribing to forums you&#8217;re interested in </em>
<li><em>Manually (by right click menu) synchronizing the Question and General Discussion threads in a forum </em>
<li><em>Reading posts that have been synchronized </em>
<li><em>Hierarchical (threaded) view of conversations&#8221;</em></li>
</ul>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/readtheMSDNForumswithacoolclientinterfac_12703/CTP%20Main%20Screen_2.png" target="_blank"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="235" alt="CTP Main Screen" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/readtheMSDNForumswithacoolclientinterfac_12703/CTP%20Main%20Screen_thumb.png" width="404" border="0"></a> </p>
<p>Source: <a title="http://www.codeplex.com/msdnforumsclient" href="http://www.codeplex.com/msdnforumsclient">http://www.codeplex.com/msdnforumsclient</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2008/08/12/read-the-msdn-forums-with-a-cool-client-interface/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>a concept map of everything &#8220;distributed systems&#8221;</title>
		<link>http://www.schrankmonster.de/2008/08/11/a-concept-map-of-everything-distributed-systems/</link>
		<comments>http://www.schrankmonster.de/2008/08/11/a-concept-map-of-everything-distributed-systems/#comments</comments>
		<pubDate>Mon, 11 Aug 2008 09:27:59 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Drawing]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[networking]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2008/08/11/aConceptMapOfEverythingDistributedSystems.aspx</guid>
		<description><![CDATA[Apparently someone had some time to kill: &#8220;The other day I had this idea, what if I were to take all the concepts I write, speak, and consult about and turn them into a concept map. That might help me explain how things like messaging, unit of work, and exception management work together and why. [...]]]></description>
			<content:encoded><![CDATA[<p>Apparently someone had some time to kill:</p>
<p><em>&#8220;The other day I had this idea, what if I were to take all the concepts I write, speak, and consult about and turn them into a </em><a href="http://en.wikipedia.org/wiki/Concept_map"><em>concept map</em></a><em>. That might help me explain how things like messaging, unit of work, and exception management work together and why. It also shouldn’t be too much work. Or so I thought.</em></p>
<p><em>I started out with a blank piece of paper, and this is what happened:&#8221;</em>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/aconceptmapofeverythingdistributedsystem_BDCF/concept-map_2.jpg" target="_blank"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="295" alt="concept-map" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/aconceptmapofeverythingdistributedsystem_BDCF/concept-map_thumb.jpg" width="404" border="0"></a> </p>
<p>Source: <a title="http://www.udidahan.com/2008/08/04/distributed-systems-concept-map/" href="http://www.udidahan.com/2008/08/04/distributed-systems-concept-map/">http://www.udidahan.com/2008/08/04/distributed-systems-concept-map/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2008/08/11/a-concept-map-of-everything-distributed-systems/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Olympic livestream</title>
		<link>http://www.schrankmonster.de/2008/08/11/olympic-livestream/</link>
		<comments>http://www.schrankmonster.de/2008/08/11/olympic-livestream/#comments</comments>
		<pubDate>Mon, 11 Aug 2008 08:31:20 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[TV]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2008/08/11/OlympicLivestream.aspx</guid>
		<description><![CDATA[German public tv is doing almost 24h livestreams of the olympic games&#8230; encoder.olympia.geo1_ola_vh.mov (,76 KB)encoder.olympia.geo2_ola_vh.mov (,77 KB)encoder.olympia.geo3_ola_vh.mov (,77 KB)]]></description>
			<content:encoded><![CDATA[<p>German public tv is doing almost 24h livestreams of the olympic games&#8230;</p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/Olympiclivestream_B01C/olympiclivestream_2.png" target="_blank"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="282" alt="olympiclivestream" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/Olympiclivestream_B01C/olympiclivestream_thumb.png" width="400" border="0"></a> </p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/encoder.olympia.geo1_ola_vh.mov">encoder.olympia.geo1_ola_vh.mov (,76 KB)</a><br /><a href="http://www.schrankmonster.de/content/binary/encoder.olympia.geo2_ola_vh.mov">encoder.olympia.geo2_ola_vh.mov (,77 KB)</a><br /><a href="http://www.schrankmonster.de/content/binary/encoder.olympia.geo3_ola_vh.mov">encoder.olympia.geo3_ola_vh.mov (,77 KB)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2008/08/11/olympic-livestream/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>bootie &#8211; bootleg mashup music</title>
		<link>http://www.schrankmonster.de/2008/07/30/bootie-bootleg-mashup-music/</link>
		<comments>http://www.schrankmonster.de/2008/07/30/bootie-bootleg-mashup-music/#comments</comments>
		<pubDate>Wed, 30 Jul 2008 10:13:31 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[music-of-the-day]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2008/07/30/bootieBootlegMashupMusic.aspx</guid>
		<description><![CDATA[What is a mashup? Wikipedia: &#8220;A mashup or bootleg[1] is a song or composition created from the combination of the music from one song with the a cappella from another (also mash up and mash-up). These songs may be considered part of the European bastard pop musical genre. &#8220;A mash-up is a song created out [...]]]></description>
			<content:encoded><![CDATA[<p>What is a mashup? <a href="http://en.wikipedia.org/wiki/Mashup_(music)" target="_blank">Wikipedia</a>:</p>
<p><em>&#8220;A <b>mashup</b> or <b>bootleg</b><sup><a href="http://en.wikipedia.org/wiki/Mashup_%28music%29#cite_note-0">[1]</a></sup> is a song or composition created from the combination of the music from one song with the </em><a href="http://en.wikipedia.org/wiki/A_cappella"><em>a cappella</em></a><em> from another (also <b>mash up</b> and <b>mash-up</b>). These songs may be considered part of the European <b>bastard pop</b> </em><a href="http://en.wikipedia.org/wiki/Musical_genre"><em>musical genre</em></a><em>. &#8220;A mash-up is a song created out of pieces of two or more songs, usually by overlaying the vocal track of one song seamlessly over the music track of another&#8230; Mash-ups are incredible fun and a fascinating way to reexperience some of your favorite tunes.&#8221;"</em></p>
<p>And there is this website &#8211; offering over 200 tracks and extras around the mashup theme &#8211; even best-of-samplers are available:</p>
<p align="center"><a href="http://www.bootieusa.com/" target="_blank"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="204" alt="BestOfBootie" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/bootiebootlegmashupmusic_C80E/BestOfBootie_3.jpg" width="204" border="0"></a> <a href="http://www.bootieusa.com/" target="_blank"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="204" alt="BestOfBootie2006_CD" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/bootiebootlegmashupmusic_C80E/BestOfBootie2006_CD_3.jpg" width="204" border="0"></a> </p>
<p align="center"><a href="http://www.bootieusa.com/" target="_blank"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="204" alt="BestOfBootie2007_CD" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/bootiebootlegmashupmusic_C80E/BestOfBootie2007_CD_3.jpg" width="204" border="0"></a> </p>
<p>Source 1: <a title="http://en.wikipedia.org/wiki/Mashup_(music)" href="http://en.wikipedia.org/wiki/Mashup_(music)">http://en.wikipedia.org/wiki/Mashup_(music)</a><br />Source 2: <a title="http://www.bootieusa.com/" href="http://www.bootieusa.com/">http://www.bootieusa.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2008/07/30/bootie-bootleg-mashup-music/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Version 2 (final) of my Dropbox Tool</title>
		<link>http://www.schrankmonster.de/2008/07/29/version-2-final-of-my-dropbox-tool/</link>
		<comments>http://www.schrankmonster.de/2008/07/29/version-2-final-of-my-dropbox-tool/#comments</comments>
		<pubDate>Tue, 29 Jul 2008 10:07:08 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[hack-the-planet]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[networking]]></category>

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

