<?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>nAnL - hacken, kracken, kacken &#187; fun</title>
	<atom:link href="http://nanl.de/blog/category/fun/feed/" rel="self" type="application/rss+xml" />
	<link>http://nanl.de/blog</link>
	<description></description>
	<lastBuildDate>Fri, 16 Dec 2011 16:59:48 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>comments, twitter&#8230;</title>
		<link>http://nanl.de/blog/2010/09/comments-twitter/</link>
		<comments>http://nanl.de/blog/2010/09/comments-twitter/#comments</comments>
		<pubDate>Thu, 16 Sep 2010 10:14:24 +0000</pubDate>
		<dc:creator>mirko</dc:creator>
				<category><![CDATA[Bali (Indonesia)]]></category>
		<category><![CDATA[Brussels (Belgium)]]></category>
		<category><![CDATA[Dalian (china)]]></category>
		<category><![CDATA[embedded systems]]></category>
		<category><![CDATA[English articles]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[German articles]]></category>
		<category><![CDATA[misc]]></category>
		<category><![CDATA[My life]]></category>
		<category><![CDATA[Openmoko]]></category>
		<category><![CDATA[OpenWrt]]></category>
		<category><![CDATA[qi-hardware]]></category>
		<category><![CDATA[Taipei (Taiwan)]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[Trips]]></category>
		<category><![CDATA[Windows Mobile]]></category>

		<guid isPermaLink="false">http://nanl.de/blog/?p=467</guid>
		<description><![CDATA[I recognized just a few hours ago, there were comments written, which needed to be approved&#8230; Did so now and tried to respond to them &#8211; sorry for the delay and thanks a lot for your input/contributions! As most people reading my blog do know already anyway and I no longer feel ashamed of using [...]]]></description>
			<content:encoded><![CDATA[<p>I recognized just a few hours ago, there were comments written, which needed to be approved&#8230;</p>
<p>Did so now and tried to respond to them &#8211; sorry for the delay and thanks a lot for your input/contributions!</p>
<p>As most people reading my blog do know already anyway and I no longer feel ashamed of using it&#8230;</p>
<p>My twitter username: <strong>foobarbablub</strong> &#8211; respectively the twitter page: <a href="http://twitter.com/foobarblablub">http://twitter.com/foobarblablub</a></p>
<p>Polluting the twitter cloud with statements / impressions I don&#8217;t think they&#8217;re worth a whole blog post&#8230; most tweets are <strong>not</strong> related to technical / computer stuff by the way &#8211; used language is mostly English&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://nanl.de/blog/2010/09/comments-twitter/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>PHP &#8211; fooled me once again&#8230;</title>
		<link>http://nanl.de/blog/2010/01/php-fooled-me-once-again/</link>
		<comments>http://nanl.de/blog/2010/01/php-fooled-me-once-again/#comments</comments>
		<pubDate>Fri, 08 Jan 2010 18:22:40 +0000</pubDate>
		<dc:creator>mirko</dc:creator>
				<category><![CDATA[English articles]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[misc]]></category>
		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://nanl.de/blog/?p=291</guid>
		<description><![CDATA[I was asked to take a look at several free and opensource software web-projects which are capable for so called &#8220;ISP configuration management&#8221;, managing web-, mail-, database-servers, etc. &#8211; handling clients, resellers and admins and having specialized frontends for them&#8230; Anyway&#8230; I trigerred a weird bug in one of the projects where I got into [...]]]></description>
			<content:encoded><![CDATA[<p>I was asked to take a look at several free and opensource software web-projects which are capable for so called &#8220;ISP configuration management&#8221;, managing web-, mail-, database-servers, etc. &#8211; handling clients, resellers and admins and having specialized frontends for them&#8230;</p>
<p>Anyway&#8230; I trigerred a weird bug in one of the projects where I got into an if-condition where I shouldn&#8217;t get into&#8230; which not just caused a weird behaviour of the application but was also a big security hole in this special case.</p>
<p>The code was something like that (simplified and not tested):</p>
<p><code><br />
get_sql($value) {<br />
&nbsp;&nbsp; if ($ret = mysql_query ("SELECT * FROM `table` WHERE foo='%s'"),<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; mysql_real_escape_string($value))<br />
&nbsp;&nbsp; {<br />
&nbsp;&nbsp;&nbsp;&nbsp; return $ret;<br />
&nbsp;&nbsp; }<br />
&nbsp;&nbsp; else<br />
&nbsp;&nbsp; {<br />
&nbsp;&nbsp;&nbsp;&nbsp; return false;<br />
&nbsp;&nbsp; }<br />
}<br />
<br />
$result = get_sql($foo);<br />
if (count($result) &gt; 0) {<br />
&nbsp;&nbsp; // privileged area...<br />
}<br />
</code><br />
Ugly code &#8211; anyway&#8230; how it was expected to behave by the author?<br />
1) function <code>get_sql()</code> gets executed and therefore a sql-query<br />
2) <code>get_sql()</code> returns an array of results<br />
3) the number of results is checked via <code>count($result)</code> and when the result-array is greater than <code>0</code> jump into the if-block</p>
<p>Okay, so far so good&#8230;</p>
<p>However &#8211; I finally found out the SQL-query in <code>get_sql()</code> fails because of a typo.<br />
No error was thrown in the above code &#8211; so what&#8217;s happening?<br />
1) function <code>get_sql()</code> gets executed and therefore a sql-query<br />
2) <code>get_sql()</code> returns the boolean <code>false</code>, because the sql-query failed<br />
3) <code>count($result)</code>, evaluated <code>count(false)</code> is called</p>
<p>As the software just did behave different and didn&#8217;t throw an error an intermediate result is:</p>
<p><code>count()</code> applied on a boolean is <strong>valid</strong> !</p>
<p>So what&#8217;s <code>count(false)</code> going to return?</p>
<p><strong>1</strong>! &#8211; the integer <strong>one</strong>!</p>
<p><code>count(false)</code> is <strong>1</strong> and in PHP therefore <strong>true</strong>!</p>
<p>Proof:<br />
<code><br />
$ php<br />
&lt;? echo count(false); ?&gt;<br />
1<br />
$<br />
</code></p>
<p>Even better: this behaviour is kind of &#8220;documented&#8221; within an example at <a href="http://php.net/manual/en/function.count.php">http://php.net/manual/en/function.count.php</a> without any comment.</p>
<p>Okay, now guess:<br />
What&#8217;s <code>count(true)</code> returning? And this is <strong>not</strong> documented!</p>
<p><strong>1</strong>! &#8211; the integer <strong>one</strong>!</p>
<p>PHP &#8211; dine in hell&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://nanl.de/blog/2010/01/php-fooled-me-once-again/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>some updates of what&#8217;s going on :)</title>
		<link>http://nanl.de/blog/2009/05/some-updates-of-whats-going-on/</link>
		<comments>http://nanl.de/blog/2009/05/some-updates-of-whats-going-on/#comments</comments>
		<pubDate>Sat, 02 May 2009 09:31:36 +0000</pubDate>
		<dc:creator>mirko</dc:creator>
				<category><![CDATA[embedded systems]]></category>
		<category><![CDATA[English articles]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[OpenWrt]]></category>
		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://nanl.de/blog/?p=102</guid>
		<description><![CDATA[Besides the ongoing work related to the Openmoko Freerunner &#60;-&#62; OpenWrt integration, I decided to focus on multimedia application ports for OpenWrt. The Xbox Multimedia Center (xbmc -&#62; http://www.xbmc.org), which I&#8217;m using (and lovin&#8217;) for several years on my Xbox now, was starting getting ported to Linux quite some time ago. The port looks really [...]]]></description>
			<content:encoded><![CDATA[<p>Besides the ongoing work related to the Openmoko Freerunner &lt;-&gt; OpenWrt integration, I decided to focus on multimedia application ports for OpenWrt.</p>
<p>The Xbox Multimedia Center (xbmc -&gt; http://www.xbmc.org), which I&#8217;m using (and lovin&#8217;) for several years on my Xbox now, was starting getting ported to Linux quite some time ago.<br />
The port looks really promising, so I decided to start get it working within OpenWrt.</p>
<p>I already started porting some basic needed dependencies, including &lt;(lib)boost&gt; (http://www.boost.org), a apparently widely used c++ library set.<br />
Because this project &#8211; ehrm &#8211; really resists all normal tries getting cross-compiled and staged (it does use an alternative to make  called &lt;bjam&gt;  which is better because of&#8230; &#8211; I really have no clue), I took a look how the OpenEmbedded-project got it done &#8211; and it helped! &#8211; technically as well as morally.</p>
<p>Besides giving me some hints how to workaround some of their (really weird) stuff, I &#8220;discovered&#8221; a comment in the middle of the file (http://cgit.openembedded.net/cgit.cgi?url=openembedded/tree/recipes/boost/boost.inc) which I like to quote:</p>
<p>[..]<br />
80	# Oh yippee, a new build system, it&#8217;s sooo cooool I could eat my own<br />
81	# foot. inlining=on lets the compiler choose, I think. At least this<br />
82	# stuff is documented&#8230;<br />
83	# NOTE: if you leave on then in a debug build the build sys<br />
84	# objcopy will be invoked, and that won&#8217;t work. Building debug apparently<br />
85	# requires hacking gcc-tools.jam<br />
86	#<br />
87	# Sometimes I wake up screaming. Famous figures are gathered in the nightmare,<br />
88	# Steve Bourne, Larry Wall, the whole of the ANSI C committee. They&#8217;re just<br />
89	# standing there, waiting, but the truely terrifying thing is what they carry<br />
90	# in their hands. At first sight each seems to bear the same thing, but it is<br />
91	# not so for the forms in their grasp are ever so slightly different one from<br />
92	# the other. Each is twisted in some grotesque way from the other to make each<br />
93	# an unspeakable perversion impossible to perceive without the onset of madness.<br />
94	# True insanity awaits anyone who perceives all of these horrors together.<br />
95	#<br />
96	# Quotation marks, there might be an easier way to do this, but I can&#8217;t find<br />
97	# it. The problem is that the user.hpp configuration file must receive a<br />
98	# pre-processor macro defined as the appropriate string &#8211; complete with &#8220;&#8216;s<br />
99	# around it. (&lt;&gt; is a possibility here but the danger to that is that the<br />
100	# failure case interprets the &lt; and &gt; as shell redirections, creating<br />
101	# random files in the source tree.)<br />
[..]</p>
<p>Reading this really made my day <img src='http://nanl.de/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Anyway &#8211; boost is ported and working on OpenWrt now, but that&#8217;s only the head of the list of dependencies for getting xbmc compiled and running -<br />
any help here &#8211; packaging requirements for xbmc for OpenWrt &#8211; is highly appreciated!</p>
]]></content:encoded>
			<wfw:commentRss>http://nanl.de/blog/2009/05/some-updates-of-whats-going-on/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>nerds &#8216;r cookin&#8217;&#8230;</title>
		<link>http://nanl.de/blog/2009/02/nerds-r-cookin/</link>
		<comments>http://nanl.de/blog/2009/02/nerds-r-cookin/#comments</comments>
		<pubDate>Sun, 08 Feb 2009 13:52:24 +0000</pubDate>
		<dc:creator>mirko</dc:creator>
				<category><![CDATA[Brussels (Belgium)]]></category>
		<category><![CDATA[English articles]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[My life]]></category>

		<guid isPermaLink="false">http://nanl.de/blog/?p=80</guid>
		<description><![CDATA[Still at fosdem, still hearing really good talks and still meeting nice people. So right now just a little insight (how we&#8217;re surviving) :]]></description>
			<content:encoded><![CDATA[<p>Still at fosdem, still hearing really good talks and still meeting nice people.</p>
<p>So right now just a little insight (how we&#8217;re surviving) <img src='http://nanl.de/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  :</p>
<p><a href="http://nanl.de/pics/noodles.jpg"><img class="alignleft" title="noodles a la Brussels" src="http://nanl.de/pics/noodles.jpg" alt="" width="366" height="562" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://nanl.de/blog/2009/02/nerds-r-cookin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lang ists her…</title>
		<link>http://nanl.de/blog/2007/04/lang-ists-her/</link>
		<comments>http://nanl.de/blog/2007/04/lang-ists-her/#comments</comments>
		<pubDate>Sun, 22 Apr 2007 21:56:43 +0000</pubDate>
		<dc:creator>mirko</dc:creator>
				<category><![CDATA[fun]]></category>
		<category><![CDATA[German articles]]></category>

		<guid isPermaLink="false">http://nanl.de/blog_new/2007/04/22/lang-ists-her/</guid>
		<description><![CDATA[&#8230;seid dem letzte Post. Doch das wird nachgeholt. Es haben sich mehrere Projekte angesammelt, welche ich in den nächsten Tagen vorstellen werde. Derzeit bin ich im Pseudo-Abi-Stress &#8211; Anlass für diesen Post gab mir folgende SMS von o2 (ja, ich habe nun einen Vertrag &#8211; nein, nicht auf meinen Namen und nein, nicht auf den [...]]]></description>
			<content:encoded><![CDATA[<p>&#8230;seid dem letzte Post.</p>
<p>Doch das wird nachgeholt. Es haben sich mehrere Projekte angesammelt, welche ich in den nächsten Tagen vorstellen werde.</p>
<p>Derzeit bin ich im Pseudo-Abi-Stress &#8211; Anlass für diesen Post gab mir folgende SMS von o2 (ja, ich habe nun einen Vertrag &#8211; nein, nicht auf meinen Namen und nein, nicht auf den Namen von Eltern oder anderen Verwandten <img src='http://nanl.de/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> ):</p>
<p>&#8220;Sie haben das o2 Communication Center seit dem 1.1.1900 nicht mehr benutzt und der E-Mail Empfang wurde deaktiviert. Wenn Sie das o2 Communication Center bis zum 28.9.1900 nicht weiter nutzen wird Ihr Konto automatisch gelöscht.</p>
<p>Sind Sie mit dem Produkt nicht zufrieden oder haben Sie Verbesserungsvorschläge? Wir freuen uns auf Ihr Feedback unter http://www.o2online.de/goto/mc-feedback.&#8221;</p>
<p>1900 &#8211; JAWOLL!</p>
]]></content:encoded>
			<wfw:commentRss>http://nanl.de/blog/2007/04/lang-ists-her/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Probesitzen</title>
		<link>http://nanl.de/blog/2006/10/probesitzen/</link>
		<comments>http://nanl.de/blog/2006/10/probesitzen/#comments</comments>
		<pubDate>Mon, 02 Oct 2006 22:49:45 +0000</pubDate>
		<dc:creator>mirko</dc:creator>
				<category><![CDATA[fun]]></category>
		<category><![CDATA[German articles]]></category>

		<guid isPermaLink="false">http://nanl.de/blog/html/probesitzen.html</guid>
		<description><![CDATA[Dieses Bild soll einen Nachtrag zu einem derzeit nicht nicht vorhanden Beitrag über die IFA darstellen: Langsam gehen die zu weit&#8230;]]></description>
			<content:encoded><![CDATA[<p>Dieses Bild soll einen Nachtrag zu einem derzeit nicht nicht vorhanden Beitrag über die IFA darstellen:</p>
<p><a href="http://nanl.de/nanl/bildchen/probesitzen.jpg" title="Probesitzen"><img src="http://nanl.de/nanl/bildchen/probesitzen.jpg" alt="Probesitzen" title="Probesitzen" height="378" width="242" /></a></p>
<p>Langsam gehen die zu weit&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://nanl.de/blog/2006/10/probesitzen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>o2 &#8211; geht’s noch ?! (3)</title>
		<link>http://nanl.de/blog/2006/08/o2-gehts-noch-3/</link>
		<comments>http://nanl.de/blog/2006/08/o2-gehts-noch-3/#comments</comments>
		<pubDate>Thu, 31 Aug 2006 15:50:33 +0000</pubDate>
		<dc:creator>mirko</dc:creator>
				<category><![CDATA[fun]]></category>
		<category><![CDATA[German articles]]></category>
		<category><![CDATA[My life]]></category>

		<guid isPermaLink="false">http://nanl.de/blog/html/o2-gehts-noch-3.html</guid>
		<description><![CDATA[Das mit dem Platzhalter unten war &#8216;ne doofe Idee. Habe es nun endlich geschafft den Brief online zu stellen &#8211; hier ist er: http://www.nanl.de/briefe/o2-2.pdf Das war nur noch ein Trotzbrief quasi, da ich es ziemlich beschissen finde was die da abziehen. Habe heute die Antwort erhalten &#8211; ein weiteres Mal: ohne Worte: &#8220;Sehr geehrter Herr [...]]]></description>
			<content:encoded><![CDATA[<p>Das mit dem Platzhalter unten war &#8216;ne doofe Idee.</p>
<p>Habe es nun endlich geschafft den Brief online zu stellen &#8211; hier ist er:</p>
<p><a href="http://www.nanl.de/briefe/o2-2.pdf" target="_blank">http://www.nanl.de/briefe/o2-2.pdf</a></p>
<p>Das war nur noch ein Trotzbrief quasi, da ich es ziemlich beschissen finde was die da abziehen.</p>
<p>Habe heute die Antwort erhalten &#8211; ein weiteres Mal: ohne Worte:</p>
<p>&#8220;Sehr geehrter Herr Vogt,</p>
<p>vielen Dank für Ihr Schreiben.</p>
<p>Wir haben Ihren Eintrag geprüft und sind zum Ergebnis gekommen, dass wir ihn nicht annehmen. Hierzu sind wir im Rahmen der Vertragsfreiheit berechtigt.</p>
<p>Wir bitten um Ihr Verständnis.</p>
<p>Mit freundlichen Grüßen</p>
<p>Ihr Team von o2 Germany&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://nanl.de/blog/2006/08/o2-gehts-noch-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Musterung</title>
		<link>http://nanl.de/blog/2006/08/musterung/</link>
		<comments>http://nanl.de/blog/2006/08/musterung/#comments</comments>
		<pubDate>Thu, 31 Aug 2006 06:46:46 +0000</pubDate>
		<dc:creator>mirko</dc:creator>
				<category><![CDATA[fun]]></category>
		<category><![CDATA[German articles]]></category>
		<category><![CDATA[My life]]></category>

		<guid isPermaLink="false">http://nanl.de/blog/html/musterung.html</guid>
		<description><![CDATA[Es ist jetzt 8:48. Um 10:00 Uhr soll ich in der Oberspreestr. zur Musterung erscheinen. Wünscht mir Glück &#8212;- Bin wieder zurück &#8211; das Tageziel ist erreicht: T5 !!!! Ausführlicher Report findet in ca. 2 Wochen statt &#8211; dann werden die über mich gespeicherten Daten bei denen (laut denen) vernichtet.]]></description>
			<content:encoded><![CDATA[<p>Es ist jetzt 8:48.</p>
<p>Um 10:00 Uhr soll ich in der Oberspreestr. zur Musterung erscheinen.</p>
<p>Wünscht mir Glück <img src='http://nanl.de/blog/wp-includes/images/smilies/icon_neutral.gif' alt=':|' class='wp-smiley' /> </p>
<p>&#8212;-</p>
<p>Bin wieder zurück &#8211; das Tageziel ist erreicht: T5 !!!!</p>
<p>Ausführlicher Report findet in ca. 2 Wochen statt &#8211; dann werden die über mich gespeicherten Daten bei denen (laut denen) vernichtet.</p>
]]></content:encoded>
			<wfw:commentRss>http://nanl.de/blog/2006/08/musterung/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Beschwerdebrief an Kaba</title>
		<link>http://nanl.de/blog/2006/08/beschwerdebrief-an-kaba/</link>
		<comments>http://nanl.de/blog/2006/08/beschwerdebrief-an-kaba/#comments</comments>
		<pubDate>Sat, 05 Aug 2006 00:12:15 +0000</pubDate>
		<dc:creator>mirko</dc:creator>
				<category><![CDATA[fun]]></category>
		<category><![CDATA[German articles]]></category>

		<guid isPermaLink="false">http://nanl.de/blog/html/beschwerdebrief-an-kaba.html</guid>
		<description><![CDATA[Mich hat mal wieder meine kreative Ader gepackt, als ich bei einem sehr guten Freund zum Frühstück eine Kaba-Milchpulver-Packung auf dem Tisch fand und mir den Comic auf der Rückseite ansah&#8230; Sehr geehrtes Kaba-Team, Ich habe bereits Dutzende von Kaba-Produkten erworben, jedoch keines verhalf mir bisher in den auf der Rückseite jedes Kaba-Produktes beschriebenen Kaba-Strudel [...]]]></description>
			<content:encoded><![CDATA[<p>Mich hat mal wieder meine kreative Ader gepackt, als ich bei einem sehr guten Freund zum Frühstück eine Kaba-Milchpulver-Packung auf dem Tisch fand und mir den Comic auf der Rückseite ansah&#8230;</p>
<p>Sehr geehrtes Kaba-Team,<br />
Ich habe bereits Dutzende von Kaba-Produkten erworben, jedoch keines verhalf mir bisher<br />
in den auf der Rückseite jedes Kaba-Produktes beschriebenen Kaba-Strudel zu gelangen. Ich<br />
habe sämtliche Geschmacksrichtungen durchprobiert und auch schon versucht das gesamte<br />
Pulver einer Packung so zu essen. Danach wurde mir zwar schwindlig und schlecht, jedoch<br />
sehe ich hier wenig Parallelen zum auf den Produkten beschriebenen Strudel.<br />
Ich bin verzweifelt und weiß wirklich nicht mehr weiter.<br />
Ich bitte um eine schnellstmögliche Rückmeldung.<br />
Mit freundlichen Grüßen<br />
Mirko Vogt</p>
<p>Mal gucken was zurück kommt</p>
]]></content:encoded>
			<wfw:commentRss>http://nanl.de/blog/2006/08/beschwerdebrief-an-kaba/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>o2 &#8211; geht’s noch ?! (2)</title>
		<link>http://nanl.de/blog/2006/07/o2-gehts-noch-2/</link>
		<comments>http://nanl.de/blog/2006/07/o2-gehts-noch-2/#comments</comments>
		<pubDate>Thu, 20 Jul 2006 15:56:41 +0000</pubDate>
		<dc:creator>mirko</dc:creator>
				<category><![CDATA[fun]]></category>
		<category><![CDATA[German articles]]></category>
		<category><![CDATA[My life]]></category>

		<guid isPermaLink="false">http://nanl.de/blog/html/o2-gehts-noch-2.html</guid>
		<description><![CDATA[Ich habe soeben einen Brief im Briefkasten gefunden &#8211; die Absenderadresse war o2. Ohne weitere Worte der Brief hier zitiert: &#8220;Sehr geehrter Herr Vogt, vielen Dank für Ihr Schreiben. Wir haben Ihre Daten eingehend geprüft und müssen Ihnen leider mitteilen, dass wir gemäß unserer internen Geschäftskriterien Ihrem Auftrag leider nicht entsprechen können. Bedauerlicherweise konnten wir [...]]]></description>
			<content:encoded><![CDATA[<p>Ich habe soeben einen Brief im Briefkasten gefunden &#8211; die Absenderadresse war o2.</p>
<p>Ohne weitere Worte der Brief hier zitiert:</p>
<p>&#8220;Sehr geehrter Herr Vogt,</p>
<p>vielen Dank für Ihr Schreiben.</p>
<p>Wir haben Ihre Daten eingehend geprüft und müssen Ihnen leider mitteilen, dass wir gemäß unserer internen Geschäftskriterien Ihrem Auftrag leider nicht entsprechen können.</p>
<p>Bedauerlicherweise konnten wir uns nicht anders entscheiden. Bitten haben Sie hierfür Verständnis.</p>
<p>Mit freundlichen Grüßen</p>
<p>Ihr Team von o2 Germany&#8221;</p>
<p>ernüchternd</p>
]]></content:encoded>
			<wfw:commentRss>http://nanl.de/blog/2006/07/o2-gehts-noch-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

