<?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>marius &#187; Fun</title>
	<atom:link href="http://devilx.net/category/fun/feed/" rel="self" type="application/rss+xml" />
	<link>http://devilx.net</link>
	<description></description>
	<lastBuildDate>Mon, 14 May 2012 21:25:02 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Automagic Promo-Code Redeemer.</title>
		<link>http://devilx.net/2010/12/23/automagic-promo-code-redeemer/</link>
		<comments>http://devilx.net/2010/12/23/automagic-promo-code-redeemer/#comments</comments>
		<pubDate>Wed, 22 Dec 2010 23:34:18 +0000</pubDate>
		<dc:creator>Marius</dc:creator>
				<category><![CDATA[Fun]]></category>
		<category><![CDATA[Mac and stuff ...]]></category>
		<category><![CDATA[New & Cool]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[World Wide Web]]></category>
		<category><![CDATA[AppleScript]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[Hacking]]></category>
		<category><![CDATA[iTunes]]></category>
		<category><![CDATA[Promo]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://www.devilx.net/?p=1174</guid>
		<description><![CDATA[Okay, so first of all, let me just describe you with a screenshot of a recent Twitter conversation what this post is about: I thought, it might be a cool idea to actually proof that something like that should be &#8230; <a href="http://devilx.net/2010/12/23/automagic-promo-code-redeemer/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Okay, so first of all, let me just describe you with a screenshot of a recent Twitter conversation what this post is about:<br />
<a href="http://www.devilx.net/wp-content/uploads/2010/12/Screen-shot-2010-12-23-at-12.19.50-AM.png"><img class="alignnone size-full wp-image-1175" title="Screen shot 2010-12-23 at 12.19.50 AM" src="http://www.devilx.net/wp-content/uploads/2010/12/Screen-shot-2010-12-23-at-12.19.50-AM.png" alt="" width="280" height="280" /></a></p>
<p>I thought, it might be a cool idea to actually proof that something like that should be possible within a few lines of code. No C code, no Objective-C, even more simple: AppleScript (and a little bit of Bash scripting).</p>
<p>However, so I just took about an hour and a half and wrote down this little bad boy:</p>
<pre>
global used_codes
global code_used

on run
	set used_codes to {}
end run

on idle
	set promocodes to paragraphs of (do shell script "/opt/local/bin/wget --quiet -O - http://twitter.com/statuses/user_timeline/166916511.rss | while read sentence; do for word in $sentence; do echo $word | grep '^[A-Z0-9]\\{12\\}' | sed 's/\\(.\\{12\\}\\).*/\\1/'; done; done | sort | uniq")
	repeat with promocode in promocodes
		set code_used to false
		repeat with used_code in used_codes
			if promocode = used_code then
				set code_used to true
			end if
		end repeat
		if code_used = false then
			tell application "iTunes"
				launch
				activate
				open location "itmss://phobos.apple.com/WebObjects/MZFinance.woa/wa/freeProductCodeWizard?code=" &#038; promocode
				copy promocode to the end of used_codes
				set used_codes to used_codes &#038; promocode
			end tell
		end if
	end repeat
	return 30
end idle
</pre>
<p>Simply hack it into your AppleScript editor and save it as &#8220;Application&#8221; with the &#8220;Stay Open&#8221; option clicked. Now after double-clicking the file that has just been created the script starts fetching a Twitter RSS-feed (in this case @verbsapp&#8217;s, heh) every 30 seconds, grabs all iTunes promo-codes it can find and automagically redeems them in the iTunes store. If the could is still valid &#8211; lucky you. If not, better luck next time! In any case each code will be added to a temporary &#8220;black list&#8221; so it won&#8217;t be redeemed again.</p>
<p>Feel free to customize and use this script! GNU GPL v2 and stuff. Enjoy. <img src='http://devilx.net/wp-content/plugins/smilies-themer/Riceballs/smile.png' alt=':)' class='wp-smiley' /> </p>
<p><strong>//update: I&#8217;ve just adapted the script a bit more to include promo codes with more than 12 characters length. Besides, I&#8217;ve applied John&#8217;s &#8220;patch&#8221; to it &#8211; thanks for that one John! <img src='http://devilx.net/wp-content/plugins/smilies-themer/Riceballs/smile.png' alt=':)' class='wp-smiley' /> </strong></p>
<pre>
global used_codes
global code_used

on run
	set used_codes to {}
end run

on idle
	set promocodes to paragraphs of (do shell script "for word in `/usr/bin/lwp-download 'http://twitter.com/statuses/user_timeline/166916511.rss' -`; do echo $word | grep '^[A-Z0-9]\\{12,16\\}' | sed 's/\\(.\\{12,16\\}\\).*/\\1/'; done | sort | uniq")
	repeat with promocode in promocodes
		set code_used to "false"
		repeat with used_code in used_codes
			if promocode as string is used_code as string then
				set code_used to "true"
			end if
		end repeat
		if code_used is "false" then
			tell application "iTunes"
				display dialog "Found a new code: " &#038; promocode &#038; " - use it now?"
				launch
				activate
				copy promocode to the end of used_codes
				set used_codes to used_codes &#038; promocode
				open location "itmss://phobos.apple.com/WebObjects/MZFinance.woa/wa/freeProductCodeWizard?code=" &#038; promocode
			end tell
		end if
	end repeat
	return 30
end idle
</pre>
]]></content:encoded>
			<wfw:commentRss>http://devilx.net/2010/12/23/automagic-promo-code-redeemer/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Protecting the Beauty through Ugliness</title>
		<link>http://devilx.net/2010/02/13/protecting-the-beauty-through-ugliness/</link>
		<comments>http://devilx.net/2010/02/13/protecting-the-beauty-through-ugliness/#comments</comments>
		<pubDate>Sat, 13 Feb 2010 18:23:14 +0000</pubDate>
		<dc:creator>Marius</dc:creator>
				<category><![CDATA[Fun]]></category>
		<category><![CDATA[Life itself]]></category>
		<category><![CDATA[Lifestyle]]></category>
		<category><![CDATA[Mac and stuff ...]]></category>
		<category><![CDATA[Accessory]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Beautiful]]></category>
		<category><![CDATA[Blackberry]]></category>
		<category><![CDATA[Bosch]]></category>
		<category><![CDATA[Case]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Motorola]]></category>
		<category><![CDATA[N900]]></category>
		<category><![CDATA[Nokia]]></category>
		<category><![CDATA[Palm]]></category>
		<category><![CDATA[Pixi]]></category>
		<category><![CDATA[Pre]]></category>
		<category><![CDATA[Protect]]></category>
		<category><![CDATA[Silicon]]></category>
		<category><![CDATA[Skit]]></category>
		<category><![CDATA[Sleeve]]></category>
		<category><![CDATA[The Matrix]]></category>
		<category><![CDATA[Ugly]]></category>

		<guid isPermaLink="false">http://www.devilx.net/?p=1130</guid>
		<description><![CDATA[Let&#8217;s think back to the days where the cellular phones just became more and more popular. Surely most of you remember phones like the Motorola StarTAC or the Nokia 8110 (from the Movie &#8220;The Matrix&#8221;). When trip down memory lane, &#8230; <a href="http://devilx.net/2010/02/13/protecting-the-beauty-through-ugliness/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Let&#8217;s think back to the days where the cellular phones just became more and more popular. Surely most of you remember phones like the Motorola StarTAC or the Nokia 8110 (from the Movie &#8220;The Matrix&#8221;). When trip down memory lane, when such mobile phones were quite as expensive and according to that also quite as valuable as modern &#8220;Smartphones&#8221;, where have the accessories like for example silicon sleeves for those phones been back then? Kind of a gap in the memory, huh? Well, no, they just haven&#8217;t been there. Or at least, not at such a mass as they&#8217;re available today. But how come?</p>
<p>Fast forward to today and the Smartphones we&#8217;re using in our everyday life &#8211; Blackberries, Pres and Pixies, iPhones and N900s. What&#8217;s the biggest part in that whole cellular phone market that changed since the mid/end 90s? Of course, it&#8217;s the phone&#8217;s technology and the features they provide nowadays. But what&#8217;s more important, the whole accessories-ecosystem around those phones actually changed. Today, you see people buying additional battery-packs for their Blackberries, since the phones are already that &#8220;Smart&#8221; that you&#8217;d actually need a constant power-source to make them last for more than a couple of hours of heavy usage. When people buy a mobile phone, they also typically throw some on-the-go charger into the bucket. And maybe also some docking-station for the desk, or even equipment for attaching it to their car&#8217;s windshields.</p>
<p>Now the whole accessory-ecosystem goes that far, that people even buy overpriced socks or pieces of silicon formed as protection-sleeve for their Smartphones. Especially within the iPhone user-groups you can see such protection-cases being very popular. But let us look from another perspective at especially those accessories.</p>
<p>When someone buys an iPhone, of course, he&#8217;s interested in the phone&#8217;s features and probably likes the way the phone integrates with the rest of his personal infrastructure, like laptops, computers/Macs, etc. But of course, only a few people really go for the features-pack only. Probably 90% of the iPhone customers look forward to have a phone that&#8217;s so exclusive and so beautiful that you&#8217;d hardly like to take it out of the showcase. And exactly at that point, all third-party manufacturers of iPhone accessories come in handy. So, people go and get their iPhones, take them out of the packing and lock them right into some ugly silicon, acrylic, plastic or whatever kind of case to protect their beauty against scratches, dirt and other natural enemies of the glossy piano paint. Sure, I mean, they paid and ass full of money for a brick that blinds you by its glint, so why should these people not try the best to protect it the best they can?</p>
<p>Well, sure they can do that &#8211; but where&#8217;s the point? I think I can talk for everyone that has ever searched for an iPhone case when I say that 99% of them are ugly as hell and not worth the package they&#8217;re shipped in. So, why do people then actually buy an iPhone for its cool look, when they &#8220;protect&#8221; it most of the time with such a case where the phone&#8217;s actual look does not matter anymore? For what? So they can slide it out when they&#8217;re feeling lucky and show it to everybody for one blink of an eye and then pack it back into its sleeve?</p>
<p>Of course, you can&#8217;t blame the people for that. I mean, why can&#8217;t accessory-manufacturers produce electro-magnetic protection shields that build an own atmosphere around the iPhone that does not allow anything else to come through than the owner&#8217;s washed hands to touch the touchscreen? I mean come on, that&#8217;s what people are waiting for! F*ck invisibleSHIELD, f*ck the pseudo translucent plastic shields that doesn&#8217;t absorb hits that could cause the iPhone&#8217;s screen to break into million small pieces. The people want cases that doesn&#8217;t even allow the iPhone to fall down the stairs or into water!</p>
<p>Yeah, right. Now I can definitely remember those days when I got my first Bosch 509 and protected it with one of the dozen plastic-sleeves against the cruel reality.</p>
<p>Think different, people.</p>
]]></content:encoded>
			<wfw:commentRss>http://devilx.net/2010/02/13/protecting-the-beauty-through-ugliness/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tumblr</title>
		<link>http://devilx.net/2009/11/24/tumblr/</link>
		<comments>http://devilx.net/2009/11/24/tumblr/#comments</comments>
		<pubDate>Tue, 24 Nov 2009 19:45:53 +0000</pubDate>
		<dc:creator>Marius</dc:creator>
				<category><![CDATA[Fun]]></category>
		<category><![CDATA[Life itself]]></category>
		<category><![CDATA[This Site]]></category>
		<category><![CDATA[World Wide Web]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[devilx]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Hype]]></category>
		<category><![CDATA[Hysterie]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[mariusmm]]></category>
		<category><![CDATA[Porn]]></category>
		<category><![CDATA[Tumblr]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[Victim]]></category>
		<category><![CDATA[Vimeo]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[YouTube]]></category>
		<category><![CDATA[YQL]]></category>

		<guid isPermaLink="false">http://www.devilx.net/?p=1122</guid>
		<description><![CDATA[So, I&#8217;ve just became a victim of the general web-2.0-hysterie by creating myself a so-named &#8220;Tumblr&#8221;-account. Tumblr seems to be kind of a mash-up between one&#8217;s blogs, twitter-, youtube-, facebook-, vimeo- and whatever else accounts &#8211; of course with addition &#8230; <a href="http://devilx.net/2009/11/24/tumblr/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>So, I&#8217;ve just became a victim of the general web-2.0-hysterie by creating myself a so-named &#8220;Tumblr&#8221;-account. Tumblr seems to be kind of a mash-up between one&#8217;s blogs, twitter-, youtube-, facebook-, vimeo- and whatever else accounts &#8211; of course with addition of an obligatory but surprisingly cost-free application for the imperial mobile-telephone for showing-off coolness and life-style (a.k.a. &#8220;iPhone&#8221;).</p>
<p>However, I could philosophize even more about the pros and cons of this themeable-web-interface-for-<a title="YQL" href="http://developer.yahoo.com/yql/" target="_blank">YQL</a> but I&#8217;m actually not that much into it to do so. The reason for registering was mainly for the hype&#8217;s sake and besides, I actually planned to reserve my everywhere used nickname &#8220;devilx&#8221; &#8211; unfortunately it was already taken by an as-it-seems porn addicted guy. <img src='http://devilx.net/wp-content/plugins/smilies-themer/Riceballs/sad.png' alt=':-(' class='wp-smiley' /> <br />
If this guy should coincidentally follow my blog and read this: I would be very thankful, if you could pass me that subdomain name, so I can make use of it for more than just an empty page named &#8220;Default&#8221; and following porn. Thank you!</p>
<p>Oh well, enough for today. Read (someday) more on <a title="Marius" href="http://mariusmm.tumblr.com/" target="_self">http://mariusmm.tumblr.com/</a>. Enjoy! <img src='http://devilx.net/wp-content/plugins/smilies-themer/Riceballs/smile.png' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://devilx.net/2009/11/24/tumblr/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hacked iWebKit a Bit&#8230;</title>
		<link>http://devilx.net/2009/09/08/hacked-iwebkit-a-bit/</link>
		<comments>http://devilx.net/2009/09/08/hacked-iwebkit-a-bit/#comments</comments>
		<pubDate>Tue, 08 Sep 2009 19:31:28 +0000</pubDate>
		<dc:creator>Marius</dc:creator>
				<category><![CDATA[Art & Design]]></category>
		<category><![CDATA[Fun]]></category>
		<category><![CDATA[Mac and stuff ...]]></category>
		<category><![CDATA[New & Cool]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[World Wide Web]]></category>
		<category><![CDATA[Cool]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[Hacking]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[iWebKit]]></category>
		<category><![CDATA[Likable]]></category>
		<category><![CDATA[New]]></category>
		<category><![CDATA[Patch]]></category>
		<category><![CDATA[Safari]]></category>
		<category><![CDATA[Sexy]]></category>
		<category><![CDATA[Style]]></category>
		<category><![CDATA[Webkit]]></category>

		<guid isPermaLink="false">http://www.devilx.net/?p=1002</guid>
		<description><![CDATA[Today, I received a mail from Christian, regarding the iPhone WordPress Theme I&#8217;ve published some time ago. I played around with my theme and wanted to use the sliding-effects that iWebKit still contained on that version I&#8217;ve used then ago. &#8230; <a href="http://devilx.net/2009/09/08/hacked-iwebkit-a-bit/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Today, I received a mail from <a title="Christian Albert Mueller" href="http://www.christian-albert-mueller.com/" target="_blank">Christian</a>, regarding the <a title="Wordpress iPhone Theme" href="http://www.devilx.net/2009/04/06/wordpress-iphone-theme/" target="_self">iPhone WordPress Theme</a> I&#8217;ve published some time ago. I played around with my theme and wanted to use the sliding-effects that iWebKit still contained on that version I&#8217;ve used then ago. As it seems, Christoph seems to had it removed from the sources, as far as I remember he was having some kind of trouble with the sliding-transition.</p>
<p>However, I&#8217;ve decided to take a quick look at the current iWebKit version and patch the framework to have the sliding-animations working again, even on the latest version. Now, that it seems to be working here and also it seems to be working for Christian, maybe others can also benefit from this.</p>
<p>If you would like to use the sliding-animations (no warranty! :-)) on your iWebKit-based design, just download the Framework package attached to this post and apply it to your iWebKit installation. It should be working pretty much out of the box.</p>
<p>Feel free to report bugs if you should find any regarding the sliding. Enjoy! <img src='http://devilx.net/wp-content/plugins/smilies-themer/Riceballs/smile.png' alt=':-)' class='wp-smiley' /> </p>
<p><strong><a href="http://www.devilx.net/wp-content/uploads/2009/09/iWebKit_4.6.2_Framework-likability-patch.zip">Download iWebKit_4.6.2_Framework-likability-patch</a></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://devilx.net/2009/09/08/hacked-iwebkit-a-bit/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Sticker Style Bluebird</title>
		<link>http://devilx.net/2009/05/27/sticker-style-bluebird/</link>
		<comments>http://devilx.net/2009/05/27/sticker-style-bluebird/#comments</comments>
		<pubDate>Wed, 27 May 2009 18:49:55 +0000</pubDate>
		<dc:creator>Marius</dc:creator>
				<category><![CDATA[Art & Design]]></category>
		<category><![CDATA[Fun]]></category>
		<category><![CDATA[Mac and stuff ...]]></category>
		<category><![CDATA[New & Cool]]></category>
		<category><![CDATA[World Wide Web]]></category>
		<category><![CDATA[Art]]></category>
		<category><![CDATA[Bluebird]]></category>
		<category><![CDATA[Cool]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[DIN Medium]]></category>
		<category><![CDATA[New]]></category>
		<category><![CDATA[Style]]></category>
		<category><![CDATA[Theme]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://www.devilx.net/?p=907</guid>
		<description><![CDATA[And yet again, a new theme for the Bluebird Twitter-Client. This time I didn&#8217;t just modify an existing one &#8211; I took two themes and mashed them up, heh. I took the Bubbling Citrus Bluebird Theme by Sarah Tan and Laurent &#8230; <a href="http://devilx.net/2009/05/27/sticker-style-bluebird/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<div id="attachment_908" class="wp-caption alignleft" style="width: 160px"><a href="http://www.devilx.net/wp-content/uploads/2009/05/sticker-style-bluebird.png"><img class="size-thumbnail wp-image-908" title="sticker-style-bluebird" src="http://www.devilx.net/wp-content/uploads/2009/05/sticker-style-bluebird-150x150.png" alt="Sicker Style Bluebird Theme" width="150" height="150" /></a><p class="wp-caption-text">Sicker Style Bluebird Theme</p></div>
<p>And yet again, a new theme for the Bluebird Twitter-Client. This time I didn&#8217;t just modify an existing one &#8211; I took two themes and mashed them up, heh. I took the Bubbling Citrus Bluebird Theme by Sarah Tan and <a title="Laurent Baumann" href="http://lbaumann.com/">Laurent Baumann</a> and took the <a title="Sticker Style" href="http://www.adiumxtras.com/index.php?a=xtras&amp;xtra_id=6058">Adium Message-Style &#8220;Sticker Style&#8221;</a> by <a title="bobjr" href="http://bobjr.deviantart.com/">&#8220;bobjr&#8221;</a> and threw both in a mixer, heh. <img src='http://devilx.net/wp-content/plugins/smilies-themer/Riceballs/smile.png' alt=':-)' class='wp-smiley' /> </p>
<p>This is one of my first tries to create a bubble-style Bluebird theme. The theme as you can see it on the screenshots uses the DIN Medium font, which is a commercial font. The font is not included in this theme, but it uses alternatives as a replacement, if the font can&#8217;t be found on the system.</p>
<p>However, I hope you like the theme. Enjoy!</p>
<p><a href="http://www.devilx.net/wp-content/uploads/2009/05/stickerstylebbtheme.zip">Download stickerstyle.bbtheme</a></p>
]]></content:encoded>
			<wfw:commentRss>http://devilx.net/2009/05/27/sticker-style-bluebird/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ein Sack!</title>
		<link>http://devilx.net/2009/05/17/ein-sack/</link>
		<comments>http://devilx.net/2009/05/17/ein-sack/#comments</comments>
		<pubDate>Sun, 17 May 2009 09:25:00 +0000</pubDate>
		<dc:creator>Marius</dc:creator>
				<category><![CDATA[Fun]]></category>
		<category><![CDATA[World Wide Web]]></category>
		<category><![CDATA[Funny]]></category>
		<category><![CDATA[Info]]></category>
		<category><![CDATA[Traffic]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.devilx.net/?p=887</guid>
		<description><![CDATA[Lately on the SWR3 Traffic-Info: (&#8220;Attention on the A81 Heilbronn in direction to Stuttgart, between Ilsfeld and Mundelsheim lies a sack!&#8221;)]]></description>
			<content:encoded><![CDATA[<p>Lately on the SWR3 Traffic-Info:</p>
<p><span id="more-887"></span></p>
<div id="attachment_888" class="wp-caption alignnone" style="width: 310px"><a href="http://www.devilx.net/wp-content/uploads/2009/05/sack.png"><img class="size-medium wp-image-888" title="Ein Sack!" src="http://www.devilx.net/wp-content/uploads/2009/05/sack-300x190.png" alt="Ein Sack!" width="300" height="190" /></a><p class="wp-caption-text">Ein Sack!</p></div>
<p>(<em>&#8220;Attention on the A81 Heilbronn in direction to Stuttgart, between Ilsfeld and Mundelsheim lies a sack!&#8221;</em>)</p>
]]></content:encoded>
			<wfw:commentRss>http://devilx.net/2009/05/17/ein-sack/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Apple Tax</title>
		<link>http://devilx.net/2009/04/15/the-apple-tax/</link>
		<comments>http://devilx.net/2009/04/15/the-apple-tax/#comments</comments>
		<pubDate>Wed, 15 Apr 2009 17:57:38 +0000</pubDate>
		<dc:creator>Marius</dc:creator>
				<category><![CDATA[Books & Texts]]></category>
		<category><![CDATA[Fun]]></category>
		<category><![CDATA[Life itself]]></category>
		<category><![CDATA[Lifestyle]]></category>
		<category><![CDATA[Mac and stuff ...]]></category>
		<category><![CDATA[World Wide Web]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Document]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[iMac]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[iPod]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[MacBook]]></category>
		<category><![CDATA[MacPro]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Price]]></category>
		<category><![CDATA[Report]]></category>
		<category><![CDATA[Touch]]></category>

		<guid isPermaLink="false">http://www.devilx.net/?p=826</guid>
		<description><![CDATA[As some of you might read, the Endpoint Technologies Associates just published a report regarding Apple&#8217;s Pricing model compared to regular PCs, all sponsored by Microsoft. I&#8217;ve just printed out (oh yes, I really wanted to enjoy that one) the report &#8230; <a href="http://devilx.net/2009/04/15/the-apple-tax/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>As some of you might read, the <em>Endpoint Technologies Associates</em> just <a title="Fruux" href="http://fruux.com/" target="_blank">published a report </a>regarding Apple&#8217;s Pricing model compared to regular PCs, all sponsored by Microsoft. I&#8217;ve just printed out (oh yes, I really wanted to enjoy that one) the report and read it. And read it again. But somehow, I don&#8217;t feel pretty satisfied and convinced about buying PCs rather than choosing Apple hardware. Let me clarify what I mean.</p>
<p>First of all, I really like the report. Really. I think it&#8217;s great that companies take the different pricing models serious and concentrate on judge them. Even if the whole report is sponsored by Microsoft, I still think it&#8217;s good. Don&#8217;t get me wrong, I don&#8217;t believe that any Apple-Fanboy might convert back to PCs after reading this white-paper. Still, I think (and hope) that some low-brow end users which might be pondering switching form their PC infrastructure to Macs might think twice.</p>
<p>I&#8217;m not saying this because I dislike Macs or because I&#8217;m getting paid by Microsoft for writing such lines. I&#8217;m just one of those Apple users, who use Macs because he loves the way everything is integrated and works out and because it gives him full-blown power over the whole system, since it&#8217;s &#8220;just a BSD&#8221; what runs under its hood &#8211; but I also think, that the iStuff is pretty over-priced for no other reason than maybe coolness, as already mentioned in the report.</p>
<p>The point which disappoints me is, that the report did not mention the <em>stuff that matters</em> &#8211; <strong>really</strong> matters. Instead, to me the whole document looks more like a Blog-entry, packed into a PDF and containing some <em>cool</em> spreadsheets and graphs. The comparisons within the report are just silly for an more experienced user. I don&#8217;t want to disassemble the whole document now, but I would like to take a specific part (page 9) as example for the reason I think this document is amateurish.</p>
<p>On page 9, the authors visualized the scenario they&#8217;ve described within two comparison-tables, one containing the costs for a PC and the other the costs a Mac would bring with it. The first thing I thought was: How come they include the costs for iLife Upgrade, Mac Office, Quicken and other software on the Mac table, while the PC table totally lacks of these packages? Does either the Dell or the HP, which were used as example devices bring such packages with them? I don&#8217;t believe so. Besides, what&#8217;s with the MobileMe entry? I mean, what for did they include this entry? They haven&#8217;t mentioned that any of the family-members would buy an iPhone or iPod Touch which would need to be synchronized over-the-air. And for Mac-2-Mac synchronizations there are very nice alternatives, starting from a low-level rsync up to <a title="Fruux" href="http://fruux.com/" target="_blank">Fruux</a>, which by the way doesn&#8217;t exist that way for Windows.</p>
<p>Another point I don&#8217;t get regards the desktop-devices (HP/MacPro). Why did they choose a MacPro (a device for professional use, e.g. by music-, video- or graphic-artists) over an iMac &#8211; which would be way less expensive and also already include a 24&#8243; TFT display, so the available panel could be used as secondary head on the iMac <strong>or</strong> on the MacBook. And why would they want to upgrade their MacPro/iMac with a ATI Radeon HD 4870 in the third year? For the kid to be able to play his ego-shooters? Oh well, guess what, these games probably won&#8217;t be available on the Mac, what kinda makes the whole upgrading thing useless. But how about spending the $260/$350 on an Xbox360 or a Playstation 3, what would be best for gaming and stuff anyway?</p>
<p>In the end, looked from a more experienced view, this report is nice for stopping unexperienced user to throw the rest of their money into Apple&#8217;s throat and maybe make Apple lower their prices someday, but actually the arguments mentioned within the report are ridiculous. I&#8217;m just waiting for the next &#8220;<em>Hi, I&#8217;m a PC &#8211; and I&#8217;m a Mac</em>&#8220;-commercial.</p>
]]></content:encoded>
			<wfw:commentRss>http://devilx.net/2009/04/15/the-apple-tax/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Grml&#8230;</title>
		<link>http://devilx.net/2009/03/06/grml/</link>
		<comments>http://devilx.net/2009/03/06/grml/#comments</comments>
		<pubDate>Fri, 06 Mar 2009 03:47:13 +0000</pubDate>
		<dc:creator>Marius</dc:creator>
				<category><![CDATA[Fun]]></category>
		<category><![CDATA[Hot Gear]]></category>
		<category><![CDATA[Life itself]]></category>
		<category><![CDATA[Lifestyle]]></category>
		<category><![CDATA[Mac and stuff ...]]></category>
		<category><![CDATA[New & Cool]]></category>
		<category><![CDATA[Aluminium]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Cool]]></category>
		<category><![CDATA[Hot]]></category>
		<category><![CDATA[MacBook]]></category>
		<category><![CDATA[New]]></category>
		<category><![CDATA[Sexy]]></category>
		<category><![CDATA[Unibody]]></category>

		<guid isPermaLink="false">http://www.devilx.net/?p=800</guid>
		<description><![CDATA[&#8230; @andi. One day, I will send you such pictures.]]></description>
			<content:encoded><![CDATA[<div id="attachment_801" class="wp-caption alignnone" style="width: 310px"><a href="http://www.devilx.net/wp-content/uploads/2009/03/mb01.png"><img class="size-medium wp-image-801" title="mb01" src="http://www.devilx.net/wp-content/uploads/2009/03/mb01-300x164.png" alt="mb01" width="300" height="164" /></a><p class="wp-caption-text">I...</p></div>
<div id="attachment_802" class="wp-caption alignnone" style="width: 310px"><a href="http://www.devilx.net/wp-content/uploads/2009/03/mb02.png"><img class="size-medium wp-image-802" title="mb02" src="http://www.devilx.net/wp-content/uploads/2009/03/mb02-300x164.png" alt="mb02" width="300" height="164" /></a><p class="wp-caption-text">... hate...</p></div>
<div id="attachment_803" class="wp-caption alignnone" style="width: 310px"><a href="http://www.devilx.net/wp-content/uploads/2009/03/mb03.png"><img class="size-medium wp-image-803" title="mb03" src="http://www.devilx.net/wp-content/uploads/2009/03/mb03-300x164.png" alt="mb03" width="300" height="164" /></a><p class="wp-caption-text">... you...</p></div>
<p>&#8230; @<a title="widmr.com" href="http://www.widmr.com">andi</a>. <img src='http://devilx.net/wp-content/plugins/smilies-themer/Riceballs/tongue.png' alt=':-P' class='wp-smiley' /> <br />
One day, I will send you such pictures. <img src='http://devilx.net/wp-content/plugins/smilies-themer/Riceballs/wink.png' alt=';-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://devilx.net/2009/03/06/grml/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Finger Weg!</title>
		<link>http://devilx.net/2009/03/04/finger-weg/</link>
		<comments>http://devilx.net/2009/03/04/finger-weg/#comments</comments>
		<pubDate>Wed, 04 Mar 2009 08:02:30 +0000</pubDate>
		<dc:creator>Marius</dc:creator>
				<category><![CDATA[Fun]]></category>
		<category><![CDATA[Life itself]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Wireless]]></category>

		<guid isPermaLink="false">http://www.devilx.net/?p=789</guid>
		<description><![CDATA[Just seen when I started my Mac without having my Access Point turned on, heh.]]></description>
			<content:encoded><![CDATA[<div id="attachment_790" class="wp-caption alignnone" style="width: 310px"><a href="http://www.devilx.net/wp-content/uploads/2009/03/fingerweg.png"><img class="size-medium wp-image-790" title="fingerweg" src="http://www.devilx.net/wp-content/uploads/2009/03/fingerweg-300x217.png" alt="Finger Weg!" width="300" height="217" /></a><p class="wp-caption-text">Finger Weg!</p></div>
<p>Just seen when I started my Mac without having my Access Point turned on, heh.</p>
]]></content:encoded>
			<wfw:commentRss>http://devilx.net/2009/03/04/finger-weg/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I am Mr. Smith goes to Washington</title>
		<link>http://devilx.net/2009/03/03/i-am-mr-smith-goes-to-washington/</link>
		<comments>http://devilx.net/2009/03/03/i-am-mr-smith-goes-to-washington/#comments</comments>
		<pubDate>Tue, 03 Mar 2009 12:33:10 +0000</pubDate>
		<dc:creator>Marius</dc:creator>
				<category><![CDATA[Fun]]></category>
		<category><![CDATA[Life itself]]></category>
		<category><![CDATA[Movies & Series]]></category>
		<category><![CDATA[World Wide Web]]></category>
		<category><![CDATA[Movies]]></category>
		<category><![CDATA[Mr. Smith goes to Washington]]></category>
		<category><![CDATA[Quiz]]></category>
		<category><![CDATA[Test]]></category>

		<guid isPermaLink="false">http://www.devilx.net/?p=786</guid>
		<description><![CDATA[What Classic Movie Are You? personality tests by similarminds.com]]></description>
			<content:encoded><![CDATA[<div><img src="http://images.similarminds.com/movie/1.jpg" alt="" /><br />
<a href="http://similarminds.com/othertests.html">What Classic Movie Are You?</a><br />
<span style="font-size: xx-small;"><a href="http://similarminds.com">personality tests by similarminds.com</a></span></div>
]]></content:encoded>
			<wfw:commentRss>http://devilx.net/2009/03/03/i-am-mr-smith-goes-to-washington/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Trying to reap Apples from Unreachable high Trees</title>
		<link>http://devilx.net/2009/02/18/trying-to-reap-apples-from-unreachable-high-trees/</link>
		<comments>http://devilx.net/2009/02/18/trying-to-reap-apples-from-unreachable-high-trees/#comments</comments>
		<pubDate>Wed, 18 Feb 2009 21:59:41 +0000</pubDate>
		<dc:creator>Marius</dc:creator>
				<category><![CDATA[Fun]]></category>
		<category><![CDATA[Life itself]]></category>
		<category><![CDATA[Mac and stuff ...]]></category>
		<category><![CDATA[World Wide Web]]></category>
		<category><![CDATA[Amazon]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Dell]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[Funny]]></category>
		<category><![CDATA[iTunes]]></category>
		<category><![CDATA[Michael Dell]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[Steve Jobs]]></category>
		<category><![CDATA[Store]]></category>
		<category><![CDATA[US]]></category>

		<guid isPermaLink="false">http://www.devilx.net/?p=775</guid>
		<description><![CDATA[Ho ho ho, Santa brought something to you. Well&#8230; not really, but Dell just opened up their Dell Download Store, providing a one-click-buy concept for software, games and music. This pretty much surprised me, pretty much because of the music store. Why &#8230; <a href="http://devilx.net/2009/02/18/trying-to-reap-apples-from-unreachable-high-trees/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.devilx.net/wp-content/uploads/2009/02/reaching-apple.png"><img class="alignright size-full wp-image-776" title="reaching-apple" src="http://www.devilx.net/wp-content/uploads/2009/02/reaching-apple.png" alt="reaching-apple" width="177" height="320" /></a>Ho ho ho, Santa brought something to you. Well&#8230; not really, but Dell just opened up their Dell Download Store, providing a one-click-buy concept for software, games and music. This pretty much surprised me, pretty much because of the music store. Why would Dell try to compete against the US&#8217; number one provider for music &#8211; the iTunes Store? Well.. let&#8217;s think back&#8230;</p>
<p>On October the 6th, 1997, Dell&#8217;s CEO Michael Dell was asked, what he would do, if he owned the financially stricken Apple Inc. and he answered:</p>
<blockquote><p>What would I do? I&#8217;d shut it down and give the money back to the shareholders. <a title="Dell: Apple should close shop" href="http://news.cnet.com/Dell-Apple-should-close-shop/2100-1001_3-203937.html" target="_blank">[link]</a></p></blockquote>
<p>A few years later, Mr. Jobs then wrote the following e-mail message to his employees:</p>
<blockquote><p>Team, it turned out that Michael Dell wasn&#8217;t perfect at predicting the future. Based on today&#8217;s stock market close, Apple is worth more than Dell. Stocks go up and down, and things may be different tomorrow, but I thought it was worth a moment of reflection today. Steve. <a title="Michael Dell Should Eat His Words" href="http://www.nytimes.com/2006/01/16/technology/16apple.html?_r=1" target="_blank">[link]</a></p></blockquote>
<p>So as we can see, there has always been differences between Dell and Apple, what &#8211; in my opinion &#8211; lead to the competitive behavior Dell presents use with their store.</p>
<p>Not that I would regret Dell to be successful with their try, I just don&#8217;t believe it. In my opinion, Dell just tried to get into a market that&#8217;s ruled by some of the biggest companies world-wide (e.g. Amazon), which are very hard to top. But okay, we will see.</p>
<p>Btw: It&#8217;s funny, that I cannot access Dell&#8217;s Music Store. The reason: <em>Dell Music Download Store is currently only available for French, English and German Customers.</em> I&#8217;m really wondering of how they decide, what kind of customer I am&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://devilx.net/2009/02/18/trying-to-reap-apples-from-unreachable-high-trees/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What to do with old Business Cards?</title>
		<link>http://devilx.net/2009/02/16/what-to-do-with-old-business-cards/</link>
		<comments>http://devilx.net/2009/02/16/what-to-do-with-old-business-cards/#comments</comments>
		<pubDate>Sun, 15 Feb 2009 23:06:12 +0000</pubDate>
		<dc:creator>Marius</dc:creator>
				<category><![CDATA[Art & Design]]></category>
		<category><![CDATA[Fun]]></category>
		<category><![CDATA[Hot Gear]]></category>
		<category><![CDATA[Life itself]]></category>
		<category><![CDATA[Lifestyle]]></category>
		<category><![CDATA[Mac and stuff ...]]></category>
		<category><![CDATA[New & Cool]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Business Card]]></category>
		<category><![CDATA[Device]]></category>
		<category><![CDATA[Flip Clock]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[iPod]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Stand]]></category>
		<category><![CDATA[Stereo]]></category>
		<category><![CDATA[Touch]]></category>

		<guid isPermaLink="false">http://www.devilx.net/?p=768</guid>
		<description><![CDATA[This evening I saw the bunch of old business cards I still have from my former employer lying on my table, and I was wondering whether to throw the majority away or what else I could do with them. I &#8230; <a href="http://devilx.net/2009/02/16/what-to-do-with-old-business-cards/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<div class="wp-caption alignleft" style="width: 154px"><a href="http://picasaweb.google.com/0x0090/MyCoolSelfMadeIPodStand#5303132581389560626"><img title="iPod Stand" src="http://lh3.ggpht.com/_oEtlJV6neHY/SZiC_E6GazI/AAAAAAAACIo/LWNDn42637I/s144/Image015.jpg" alt="iPod Stand" width="144" height="108" /></a><p class="wp-caption-text">iPod Stand</p></div>
<p>This evening I saw the bunch of old business cards I still have from my former employer lying on my table, and I was wondering whether to throw the majority away or what else I could do with them. I still have over fifty of these tiny little pieces of carton here and just experimented a bit&#8230; and well, <a title="My Cool, Self-Made iPod Stand" href="http://picasaweb.google.com/0x0090/MyCoolSelfMadeIPodStand#" target="_self">this is</a> what I came out with. <img src='http://devilx.net/wp-content/plugins/smilies-themer/Riceballs/smile.png' alt=':-)' class='wp-smiley' /> </p>
<p>I was searching for quite a long time to get some kind of stand for my iPod, since I&#8217;m already using it as alarm clock and would also love to have it running the <a title="Flip Clock" href="http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=291430689&amp;mt=8" target="_blank">&#8220;Flip Clock&#8221; App</a> on my bedside table at night. Of course, there are stands for the iPhone and the iPod, but I&#8217;m not crazy spending over twenty bucks on a dumb stand. A piece of wood or aluminum, whose only purpose is to hold a device. Not connect it to another device (e.g. your Mac or your stereo) &#8211; just to hold it. </p>
<p>However, maybe you like the idea and try it out yourself sometime. <img src='http://devilx.net/wp-content/plugins/smilies-themer/Riceballs/smile.png' alt=':-)' class='wp-smiley' /> </p>
<p>Enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://devilx.net/2009/02/16/what-to-do-with-old-business-cards/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What the&#8230; ?</title>
		<link>http://devilx.net/2009/01/23/what-the/</link>
		<comments>http://devilx.net/2009/01/23/what-the/#comments</comments>
		<pubDate>Fri, 23 Jan 2009 22:01:04 +0000</pubDate>
		<dc:creator>Marius</dc:creator>
				<category><![CDATA[Fun]]></category>
		<category><![CDATA[Life itself]]></category>
		<category><![CDATA[Linux and stuff ...]]></category>
		<category><![CDATA[autofs]]></category>
		<category><![CDATA[Bootscreen]]></category>
		<category><![CDATA[Laptop]]></category>
		<category><![CDATA[openSuSE]]></category>
		<category><![CDATA[Patch]]></category>
		<category><![CDATA[Penguin]]></category>
		<category><![CDATA[Winter]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://www.devilx.net/?p=752</guid>
		<description><![CDATA[Description: Some days ago, I arrived at work, booted my laptop and suddenly there was no more greenish boot-screen/-menu. Instead, there was some winter scenery with two walking penguins. I didn&#8217;t reconfigure anything the day before, the only thing I &#8230; <a href="http://devilx.net/2009/01/23/what-the/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<div id="attachment_753" class="wp-caption alignnone" style="width: 310px"><a href="http://www.devilx.net/wp-content/uploads/2009/01/image000.jpg"><img class="size-medium wp-image-753" title="OpenSuSE 11.1 Winter Boot-Screen?" src="http://www.devilx.net/wp-content/uploads/2009/01/image000-300x225.jpg" alt="OpenSuSE 11.1 Winter Boot-Screen?" width="300" height="225" /></a><p class="wp-caption-text">OpenSuSE 11.1 Winter Boot-Screen?</p></div>
<p><small><strong>Description:</strong> Some days ago, I arrived at work, booted my laptop and suddenly there was no more greenish boot-screen/-menu. Instead, there was some winter scenery with two walking penguins. I didn&#8217;t reconfigure anything the day before, the only thing I did, was installing an &#8220;autofs&#8221; patch which (as the description told me) should have fixed some serious bug. However, I still don&#8217;t understand what happened there, maybe just some easter-egg? But, it&#8217;s not eastern yet. However, after the next reboot, the boot-menu changed back to its regular appearance. Maybe just some of my colleagues was playing me a joke&#8230; hm.</small></p>
]]></content:encoded>
			<wfw:commentRss>http://devilx.net/2009/01/23/what-the/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Lesson #38: What&#8217;s an OEM-Product?</title>
		<link>http://devilx.net/2009/01/11/lesson-38-whats-an-oem-product/</link>
		<comments>http://devilx.net/2009/01/11/lesson-38-whats-an-oem-product/#comments</comments>
		<pubDate>Sun, 11 Jan 2009 17:36:14 +0000</pubDate>
		<dc:creator>Marius</dc:creator>
				<category><![CDATA[Eat & Drink]]></category>
		<category><![CDATA[Fun]]></category>
		<category><![CDATA[Life itself]]></category>
		<category><![CDATA[Funny]]></category>
		<category><![CDATA[OEM]]></category>
		<category><![CDATA[Product]]></category>
		<category><![CDATA[Snickers]]></category>

		<guid isPermaLink="false">http://www.devilx.net/?p=737</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<div id="attachment_738" class="wp-caption alignnone" style="width: 310px"></p>
<div style="text-align: auto;"><a href="http://www.devilx.net/wp-content/uploads/2009/01/image001.jpg"><img class="size-medium wp-image-738" title="Snickers OEM" src="http://www.devilx.net/wp-content/uploads/2009/01/image001-300x225.jpg" alt="That's an OEM-Product." width="300" height="225" /></a></div>
<p> </p>
<p><p class="wp-caption-text">That&#39;s an OEM-Product.</p></div>
]]></content:encoded>
			<wfw:commentRss>http://devilx.net/2009/01/11/lesson-38-whats-an-oem-product/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iBoobs</title>
		<link>http://devilx.net/2008/12/26/iboobs/</link>
		<comments>http://devilx.net/2008/12/26/iboobs/#comments</comments>
		<pubDate>Fri, 26 Dec 2008 19:50:03 +0000</pubDate>
		<dc:creator>Marius</dc:creator>
				<category><![CDATA[Fun]]></category>
		<category><![CDATA[Hot Gear]]></category>
		<category><![CDATA[Mac and stuff ...]]></category>
		<category><![CDATA[New & Cool]]></category>
		<category><![CDATA[World Wide Web]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Application]]></category>
		<category><![CDATA[iBoobs]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[iPod]]></category>
		<category><![CDATA[Touch]]></category>
		<category><![CDATA[YouTube]]></category>

		<guid isPermaLink="false">http://www.devilx.net/?p=713</guid>
		<description><![CDATA[Where the fsck can I get this application?]]></description>
			<content:encoded><![CDATA[<p><object width="380" height="307" data="http://www.youtube.com/v/fgaF0zQAVk0&amp;hl=en&amp;fs=1" type="application/x-shockwave-flash"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/fgaF0zQAVk0&amp;hl=en&amp;fs=1" /><param name="allowfullscreen" value="true" /></object></p>
<p>Where the fsck can I get this application? <img src='http://devilx.net/wp-content/plugins/smilies-themer/Riceballs/laughing.png' alt=':-D' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://devilx.net/2008/12/26/iboobs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Spontaneous Trip to Munich</title>
		<link>http://devilx.net/2008/12/07/spontaneous-trip-to-munich/</link>
		<comments>http://devilx.net/2008/12/07/spontaneous-trip-to-munich/#comments</comments>
		<pubDate>Sun, 07 Dec 2008 13:02:10 +0000</pubDate>
		<dc:creator>Marius</dc:creator>
				<category><![CDATA[Automobiles]]></category>
		<category><![CDATA[Fun]]></category>
		<category><![CDATA[Games]]></category>
		<category><![CDATA[Life itself]]></category>
		<category><![CDATA[Lifestyle]]></category>
		<category><![CDATA[Mac and stuff ...]]></category>
		<category><![CDATA[New & Cool]]></category>
		<category><![CDATA[Nightlife]]></category>
		<category><![CDATA[320d]]></category>
		<category><![CDATA[Aluminium]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Augsburg]]></category>
		<category><![CDATA[Beautiful]]></category>
		<category><![CDATA[Beemer]]></category>
		<category><![CDATA[BMW]]></category>
		<category><![CDATA[City]]></category>
		<category><![CDATA[Expensive]]></category>
		<category><![CDATA[Gasoline]]></category>
		<category><![CDATA[Girl]]></category>
		<category><![CDATA[Hanover]]></category>
		<category><![CDATA[iPod]]></category>
		<category><![CDATA[Living]]></category>
		<category><![CDATA[MacBook]]></category>
		<category><![CDATA[Munich]]></category>
		<category><![CDATA[Rain]]></category>
		<category><![CDATA[Rollercoaster Tycoon 3]]></category>
		<category><![CDATA[RosenstraÃŸe]]></category>
		<category><![CDATA[Smell]]></category>
		<category><![CDATA[Snapshots]]></category>
		<category><![CDATA[Snow]]></category>
		<category><![CDATA[Spontaneous]]></category>
		<category><![CDATA[St. Nicholas]]></category>
		<category><![CDATA[Store]]></category>
		<category><![CDATA[Stuttgart]]></category>
		<category><![CDATA[Touch]]></category>
		<category><![CDATA[Ulm]]></category>

		<guid isPermaLink="false">http://www.devilx.net/?p=658</guid>
		<description><![CDATA[Apple. Andi had a brand-new BMW 3-Series over the weekend and yesterday I asked him if he&#8217;d like to take me to the local supermarket, since I needed to buy some things for preparing the St. Nicholas present for my &#8230; <a href="http://devilx.net/2008/12/07/spontaneous-trip-to-munich/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a title="widmr(c)" href="http://www.widmr.com/" target="_blank"></a></p>
<p><a title="widmr(c)" href="http://www.widmr.com/" target="_blank"> </a></p>
<div class="mceTemp"><a title="widmr(c)" href="http://www.widmr.com/" target="_blank"></a>
<dl id="attachment_659" class="wp-caption alignleft" style="width: 160px;"><a title="widmr(c)" href="http://www.widmr.com/" target="_blank"></a>
<dt class="wp-caption-dt"><a href="http://www.devilx.net/wp-content/uploads/2008/12/fresh-apple.jpg"><img class="size-thumbnail wp-image-659" title="Apple" src="http://www.devilx.net/wp-content/uploads/2008/12/fresh-apple-150x150.jpg" alt="Apple." width="150" height="150" /></a></dt>
<dd class="wp-caption-dd">Apple.</dd>
</dl>
</div>
<p><a title="widmr" href="http://www.widmr.com">Andi</a> had a brand-new <a title="BMW 320d" href="http://www.bmw.co.za/products/automobiles/products/diesel/images/320d.jpg" target="_blank">BMW 3-Series</a> over the weekend and yesterday I asked him if he&#8217;d like to take me to the local supermarket, since I needed to buy some things for preparing the St. Nicholas present for my girl, which by the way comes back today from Hanover. And since my car still smells extremely of gasoline, we just went there with his Beemer. Anyway, when we arrived in front of my apartment we were thinking about what to do on yesterday&#8217;s evening and while we were talking I mentioned that Apple opened their fist Store here in Germany, in Munich. So&#8230; we just decided to spontaneously visit it. <img src='http://devilx.net/wp-content/plugins/smilies-themer/Riceballs/smile.png' alt=':-)' class='wp-smiley' /> </p>
<p>The way to MUC was pretty crappy, in between Ulm and Augsburg there were showers of rain and even snow. But at around quarter past seven we arrived near the RosenstraÃŸe, where the Apple Store is located. The store itself looks very cool &#8211; just like Apple Stores always do, heh. Unfortunately, it was extremely crowded, what made it impossible to freely walk through the &#8220;halls of glory&#8221; and enjoy the new Apple products. I then saw the new MacBooks for the first time in &#8220;real life&#8221; &#8211; they are even sexier than I thought, heh. I really adore the new aluminium-with-black-gloss-design.</p>
<p>I was actually thinking of buying maybe my first game for the Mac or at least a pocket for the iPod Touch I&#8217;ll hopefully receive by tomorrow &#8211; but the prices kept me from doing that. I know, it&#8217;s Apple, but meh? I mean, â‚¬55 for a game (Rollercoaster Tycoon 3) that&#8217;s over four years old?!? Or nearly fourty bucks for an iPod Touch case? I guess Apple knew, why they opened up their first Shop in Munich, heh. <img src='http://devilx.net/wp-content/plugins/smilies-themer/Riceballs/wink.png' alt=';-)' class='wp-smiley' /> </p>
<p>However, I also took some snapshot of the trip and the shop itself, just take a view at <a title="Apple Store Munich" href="http://picasaweb.google.com/0x0090/AppleStoreMunich" target="_self">my Picasa WebAlbum</a>. It was pretty and Munich is a very beautiful and nice city &#8211; compared to Stuttgart. I think I would really enjoy living there&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://devilx.net/2008/12/07/spontaneous-trip-to-munich/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Errr&#8230; hm?</title>
		<link>http://devilx.net/2008/12/06/errr-hm/</link>
		<comments>http://devilx.net/2008/12/06/errr-hm/#comments</comments>
		<pubDate>Sat, 06 Dec 2008 12:18:59 +0000</pubDate>
		<dc:creator>Marius</dc:creator>
				<category><![CDATA[Fun]]></category>
		<category><![CDATA[Crap]]></category>
		<category><![CDATA[Error]]></category>
		<category><![CDATA[Setup]]></category>
		<category><![CDATA[Trust]]></category>
		<category><![CDATA[WB-1200p]]></category>
		<category><![CDATA[Webcam]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.devilx.net/?p=654</guid>
		<description><![CDATA[Well&#8230; sure. Of course. I know.]]></description>
			<content:encoded><![CDATA[<div id="attachment_656" class="wp-caption alignnone" style="width: 160px"><a href="http://www.devilx.net/wp-content/uploads/2008/12/trust.jpg"><img class="size-thumbnail wp-image-656" title="Trust WB-1200p Setup" src="http://www.devilx.net/wp-content/uploads/2008/12/trust-150x150.jpg" alt="Trust WB-1200p Setup" width="150" height="150" /></a><p class="wp-caption-text">Trust WB-1200p Setup</p></div>
<p>Well&#8230; sure. Of course. I know.</p>
]]></content:encoded>
			<wfw:commentRss>http://devilx.net/2008/12/06/errr-hm/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Twitter maintenance</title>
		<link>http://devilx.net/2008/11/24/twitter-maintenance/</link>
		<comments>http://devilx.net/2008/11/24/twitter-maintenance/#comments</comments>
		<pubDate>Mon, 24 Nov 2008 17:24:59 +0000</pubDate>
		<dc:creator>Marius</dc:creator>
				<category><![CDATA[Fun]]></category>
		<category><![CDATA[World Wide Web]]></category>
		<category><![CDATA[Cool]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[Maintenance]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://www.devilx.net/?p=634</guid>
		<description><![CDATA[Seen some days ago on twitter.com]]></description>
			<content:encoded><![CDATA[<div id="attachment_637" class="wp-caption alignnone" style="width: 160px"><a href="http://www.devilx.net/wp-content/uploads/2008/11/twitter1.png"><img class="size-thumbnail wp-image-637" title="Twitter maintenance" src="http://www.devilx.net/wp-content/uploads/2008/11/twitter1-150x150.png" alt="Twitter database maintenance" width="150" height="150" /></a><p class="wp-caption-text">Twitter database maintenance</p></div>
<p>Seen some days ago on twitter.com <img src='http://devilx.net/wp-content/plugins/smilies-themer/Riceballs/smile.png' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://devilx.net/2008/11/24/twitter-maintenance/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu copying iTunes?</title>
		<link>http://devilx.net/2008/11/23/ubuntu-copying-itunes/</link>
		<comments>http://devilx.net/2008/11/23/ubuntu-copying-itunes/#comments</comments>
		<pubDate>Sun, 23 Nov 2008 19:49:29 +0000</pubDate>
		<dc:creator>Marius</dc:creator>
				<category><![CDATA[Art & Design]]></category>
		<category><![CDATA[Fun]]></category>
		<category><![CDATA[Linux and stuff ...]]></category>
		<category><![CDATA[Mac and stuff ...]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Copy]]></category>
		<category><![CDATA[Imitate]]></category>
		<category><![CDATA[iTunes]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[OpenSource]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.devilx.net/?p=626</guid>
		<description><![CDATA[Hm&#8230; I can recognize some similarities there. (and yes, installed Ubuntu 8.10 on VMware Fusion. Now I&#8217;m just building the VMware Tools for the Guest.)]]></description>
			<content:encoded><![CDATA[<p>Hm&#8230;</p>
<p><img class="alignnone" title="Ubuntu copying iTunes?" src="/~devilx/blog/itunesubuntu.png" alt="" width="360" height="180" /></p>
<p>I can recognize some similarities there. <img src='http://devilx.net/wp-content/plugins/smilies-themer/Riceballs/wink.png' alt=';-)' class='wp-smiley' /> </p>
<p><small>(and yes, installed Ubuntu 8.10 on VMware Fusion. Now I&#8217;m just building the VMware Tools for the Guest.)</small></p>
]]></content:encoded>
			<wfw:commentRss>http://devilx.net/2008/11/23/ubuntu-copying-itunes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Even? Windows? Even?</title>
		<link>http://devilx.net/2008/11/23/even-windows-even/</link>
		<comments>http://devilx.net/2008/11/23/even-windows-even/#comments</comments>
		<pubDate>Sun, 23 Nov 2008 18:12:20 +0000</pubDate>
		<dc:creator>Marius</dc:creator>
				<category><![CDATA[Fun]]></category>
		<category><![CDATA[Mac and stuff ...]]></category>
		<category><![CDATA[World Wide Web]]></category>
		<category><![CDATA[Demo]]></category>
		<category><![CDATA[Fusion]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Parallels]]></category>
		<category><![CDATA[Pondering]]></category>
		<category><![CDATA[System]]></category>
		<category><![CDATA[VirtualBox]]></category>
		<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[VMware]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.devilx.net/?p=622</guid>
		<description><![CDATA[I was just browsing VMware&#8217;s Fusion site and thought of its banner. Shouldn&#8217;t it be called &#8220;Even Windows is better on the Mac&#8221;? Hm&#8230; anyway. Pondering whether to try out the demo for my Mac or not. I would not &#8230; <a href="http://devilx.net/2008/11/23/even-windows-even/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><img class="alignright" title="VMware Fusion" src="/~devilx/blog/fusion.png" alt="" width="300" height="102" />I was just browsing VMware&#8217;s Fusion site and thought of its banner. Shouldn&#8217;t it be called <em>&#8220;Even Windows is better on the Mac&#8221;</em>? Hm&#8230; anyway. Pondering whether to try out the demo for my Mac or not. I would not like to have any VMware corpses lying around in my system if I would decide not to buy the full version. As it seems, many people <em>*beckon to gicmo*</em> prefer to use Parallels instead of VMware for desktop virtualizations. I only know a few folks that use or have been using Fusion. And I know like nobody, who ever even tried to use VirtualBox on a Mac. So&#8230; hm.</p>
<p><strong>UPDATE:</strong> I just talked to <a title="Christian Kellner - Braindump" href="http://www.xatom.net/" target="_blank">gicmo</a>, since he has Parallels installed on his Mac, and asked him to give me the ouput of <em>ps aux | grep -i parall</em>, so that I can compare it to my <em>ps aux | grep -i vm</em> (yepp, I&#8217;ve just installed the Fusion Demo) output&#8230; and well.. I guess I can call it equal. Each of these two products has some daemons running in background, even if the application itself isn&#8217;t or even hasn&#8217;t been running since the Mac started up. For me, both of them solve the actual problem I have: Virtualizing other operating systems (Linux, Win, UNIX, etc.) on my Mac. Now I need to figure out, what the details are, that make one product look better than the other. I guess I&#8217;ll need to search for some comparison of &#8220;<em>Parallels vs. VMware Fusion</em>&#8220;, using the recent versions of both. Maybe I&#8217;ll find something.</p>
]]></content:encoded>
			<wfw:commentRss>http://devilx.net/2008/11/23/even-windows-even/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ideas at work&#8230;</title>
		<link>http://devilx.net/2008/11/03/ideas-at-work/</link>
		<comments>http://devilx.net/2008/11/03/ideas-at-work/#comments</comments>
		<pubDate>Mon, 03 Nov 2008 17:20:17 +0000</pubDate>
		<dc:creator>Marius</dc:creator>
				<category><![CDATA[Fun]]></category>
		<category><![CDATA[Life itself]]></category>
		<category><![CDATA[Domino]]></category>
		<category><![CDATA[German]]></category>
		<category><![CDATA[Lotus]]></category>
		<category><![CDATA[Notes]]></category>
		<category><![CDATA[Warning]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://www.devilx.net/?p=596</guid>
		<description><![CDATA[Me and some colleagues came up with some funny idea at work these days&#8230;]]></description>
			<content:encoded><![CDATA[<p>Me and some colleagues came up with some funny idea at work these days&#8230;</p>
<div class="wp-caption alignnone" style="width: 330px"><a href="http://devilx.net/~devilx/blog/Image096.jpg"><img class=" " title="Warning." src="/~devilx/blog/Image096.jpg" alt="Warning." width="320" height="240" /></a><p class="wp-caption-text">Warning.</p></div>
]]></content:encoded>
			<wfw:commentRss>http://devilx.net/2008/11/03/ideas-at-work/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>First Snow this Year&#8230;</title>
		<link>http://devilx.net/2008/10/31/first-snow-this-year/</link>
		<comments>http://devilx.net/2008/10/31/first-snow-this-year/#comments</comments>
		<pubDate>Fri, 31 Oct 2008 00:34:46 +0000</pubDate>
		<dc:creator>Marius</dc:creator>
				<category><![CDATA[Automobiles]]></category>
		<category><![CDATA[Fun]]></category>
		<category><![CDATA[Hot Gear]]></category>
		<category><![CDATA[Life itself]]></category>
		<category><![CDATA[Lifestyle]]></category>
		<category><![CDATA[Mac and stuff ...]]></category>
		<category><![CDATA[New & Cool]]></category>
		<category><![CDATA[This Site]]></category>
		<category><![CDATA[World Wide Web]]></category>
		<category><![CDATA[Aluminium]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[Car]]></category>
		<category><![CDATA[Chaos]]></category>
		<category><![CDATA[Germany]]></category>
		<category><![CDATA[Girl]]></category>
		<category><![CDATA[iPod]]></category>
		<category><![CDATA[Keynote]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[MacBook]]></category>
		<category><![CDATA[Morning]]></category>
		<category><![CDATA[Snow]]></category>
		<category><![CDATA[Strato]]></category>
		<category><![CDATA[Today]]></category>
		<category><![CDATA[Tomorrow]]></category>
		<category><![CDATA[Touch]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[Upgrade]]></category>
		<category><![CDATA[Webspace]]></category>
		<category><![CDATA[Wrong]]></category>

		<guid isPermaLink="false">http://www.devilx.net/?p=585</guid>
		<description><![CDATA[  When I got this morning, I&#8217;ve been pretty shocked when my precious girl happily screamed &#8220;SNOW!!!&#8221; through the apartment. First I actually did not believe her and though she would just want to fool me, but after taking a look &#8230; <a href="http://devilx.net/2008/10/31/first-snow-this-year/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p> </p>
<div class="wp-caption alignleft" style="width: 250px"><img title="First Snow this Year" src="/~devilx/blog/firstsnow.jpg" alt="The first Snow, this morning." width="240" height="180" /><p class="wp-caption-text">The first Snow, this morning.</p></div>
<p>When I got this morning, I&#8217;ve been pretty shocked when my precious girl happily screamed &#8220;<em><strong>SNOW!!!</strong></em>&#8221; through the apartment. First I actually did not believe her and though she would just want to fool me, but after taking a look out of the window (yepp, I don&#8217;t do that <em>right after</em> I wake up, &#8230;) I saw it myself: This morning the first snow for this year just fell and accordingly to that the traffic was chaotic and dangerous. I&#8217;ve seen three accidents on the highway while driving <strong>slowly</strong> to work and really had to pay attention to not involve myself into a fourth one. I guess I really need to buy snow-tires this year.</p>
<p>I was really surprised of the snow, especially with the past few years in mind. In this region of Germany we didn&#8217;t had snow until the middle of Januar in the last two years, so I assumed that it&#8217;ll be the same this year &#8211; which is why I didn&#8217;t organize myself some snow-tires till yet. I&#8217;m really afraid of tomorrow being even snowier than today. <img src='http://devilx.net/wp-content/plugins/smilies-themer/Riceballs/ermm.png' alt=':-/' class='wp-smiley' /> </p>
<p>Anyway, what else happened in the last few days/weeks(/months?). I haven&#8217;t been blogging anymore, since I&#8217;ve ordered an upgrade of my webspace at Strato (on the 10th of October) and they told me to backup everything I have uploaded on my account. This request made me think &#8220;<em>Hm, let&#8217;s not write anything anymore, let&#8217;s not change content, in a few they the upgrade will be done and I&#8217;ll be able to blog again.</em>&#8220;&#8230; <a title="MadTV - Apple iRack" href="http://www.youtube.com/watch?v=rw2nkoGLhrE" target="_blank">WRONG</a>!* They didn&#8217;t seem to be doing anything till now. And besides, they didn&#8217;t even answered the mails I wrote, in which I asked for some status info about the upgrade. I&#8217;m kinda disappointed of the Strato support on this, because actually I had the support center as a pretty good and reliable contact point in mind. <img src='http://devilx.net/wp-content/plugins/smilies-themer/Riceballs/ermm.png' alt=':-/' class='wp-smiley' /> Eh, I&#8217;ll just wait and see what happens. At least they didn&#8217;t charge me for anything &#8211; yet.</p>
<p>What else is new&#8230; well. Today my salary arrived, so I ordered a new iPod Touch. But I think this is not worth mentioning, since everyone has an iPod Touch today. Lately I&#8217;ve seen the Apple Keynote for October and I really fell in love with these new aluminum (A-LU-MI-NI-UM, dear AE-speakers, not &#8220;<em>aluminum</em>&#8221; <img src='http://devilx.net/wp-content/plugins/smilies-themer/Riceballs/wink.png' alt=';-)' class='wp-smiley' /> ) MacBooks Apple presented. I think it would be a great gadget for the Norway trip <a title="Twitter / mpain" href="http://twitter.com/mpain" target="_blank">mpain</a> and I&#8217;m planning for next year.</p>
<p>However, so far. I think I&#8217;ll start up blogging again, until I&#8217;ll receive at least some info from Strato.</p>
<p><small>* Thanks again to Michael for this link! It&#8217;s amazing funny.</small></p>
]]></content:encoded>
			<wfw:commentRss>http://devilx.net/2008/10/31/first-snow-this-year/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Re-Found some old Fortunes&#8230;</title>
		<link>http://devilx.net/2008/09/14/re-found-some-old-fortunes/</link>
		<comments>http://devilx.net/2008/09/14/re-found-some-old-fortunes/#comments</comments>
		<pubDate>Sun, 14 Sep 2008 17:09:34 +0000</pubDate>
		<dc:creator>Marius</dc:creator>
				<category><![CDATA[Fun]]></category>
		<category><![CDATA[Linux and stuff ...]]></category>
		<category><![CDATA[World Wide Web]]></category>
		<category><![CDATA[Cool]]></category>
		<category><![CDATA[gDesklets]]></category>
		<category><![CDATA[IRC]]></category>
		<category><![CDATA[Quotes]]></category>

		<guid isPermaLink="false">http://www.devilx.net/?p=531</guid>
		<description><![CDATA[Heh, look what I&#8217;ve just re-found. And the according .dat for fortunes also exists&#8230;.]]></description>
			<content:encoded><![CDATA[<p>Heh, look <a title="#gdesklets Quotes" href="http://devilx.net/~devilx/blog/bin/gdesklets" target="_self">what I&#8217;ve just re-found</a>. And the <a title=".dat file needed for fortunes" href="http://devilx.net/~devilx/blog/bin/gdesklets.dat" target="_self">according .dat</a> for <em>fortunes</em> also exists&#8230;. <img src='http://devilx.net/wp-content/plugins/smilies-themer/Riceballs/smile.png' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://devilx.net/2008/09/14/re-found-some-old-fortunes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WMA/MP3/CD-Receiver with Front AUX-Input</title>
		<link>http://devilx.net/2008/09/07/wmamp3cd-receiver-with-front-aux-input/</link>
		<comments>http://devilx.net/2008/09/07/wmamp3cd-receiver-with-front-aux-input/#comments</comments>
		<pubDate>Sun, 07 Sep 2008 21:34:31 +0000</pubDate>
		<dc:creator>Marius</dc:creator>
				<category><![CDATA[Automobiles]]></category>
		<category><![CDATA[Fun]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[World Wide Web]]></category>
		<category><![CDATA[AUX]]></category>
		<category><![CDATA[Car]]></category>
		<category><![CDATA[CD]]></category>
		<category><![CDATA[Entertainment]]></category>
		<category><![CDATA[HiFi]]></category>
		<category><![CDATA[Kenwood]]></category>
		<category><![CDATA[MP3]]></category>
		<category><![CDATA[Stereo]]></category>

		<guid isPermaLink="false">http://www.devilx.net/?p=525</guid>
		<description><![CDATA[I was just looking for my hifi head unit&#8217;s manual and was very surprised when I read the title on Kenwood&#8217;s website: http://www.kenwood.de/products/car/receivers/cd/KDC-W4034A/details/ It says &#8220;WMA/MP3/CD-Receiver with Front AUX-Input&#8221;. First of all, I personally never saw such an AUX-Input on &#8230; <a href="http://devilx.net/2008/09/07/wmamp3cd-receiver-with-front-aux-input/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I was just looking for my hifi head unit&#8217;s manual and was very surprised when I read the title on Kenwood&#8217;s website: http://www.kenwood.de/products/car/receivers/cd/KDC-W4034A/details/</p>
<p>It says &#8220;WMA/MP3/CD-Receiver with Front AUX-Input&#8221;. First of all, I personally never saw such an AUX-Input on my head unit, especially not on its front. And second, some lines later at the bottom (at &#8220;Ausstattungsmerkmale Audio&#8221;) they say: &#8220;AUX-Eingang	Nein&#8221; (no AUX-Input).</p>
<p>Hm&#8230; funny.</p>
]]></content:encoded>
			<wfw:commentRss>http://devilx.net/2008/09/07/wmamp3cd-receiver-with-front-aux-input/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

