<?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>christian leberfinger&#039;s blog</title>
	<atom:link href="http://blog.christianleberfinger.de/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://blog.christianleberfinger.de</link>
	<description>damit ich auch mitreden kann.</description>
	<lastBuildDate>Mon, 30 Aug 2010 21:24:57 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>PHP remote debugging in Eclipse PDT</title>
		<link>http://blog.christianleberfinger.de/?p=254</link>
		<comments>http://blog.christianleberfinger.de/?p=254#comments</comments>
		<pubDate>Mon, 30 Aug 2010 20:49:32 +0000</pubDate>
		<dc:creator>christian</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.christianleberfinger.de/?p=254</guid>
		<description><![CDATA[in order to start remote debugging your php scripts right from your development server, you&#8217;ll need the Zend debugger for your server&#8217;s platform from here: http://www.zend.com/en/products/studio/downloads Chose the right ZendDebugger shared library for your PHP version (e.g. 5_2_x_comp/ZendDebugger.so) and copy it to your server &#8211; most likely where your other PHP extensions reside (in my [...]]]></description>
			<content:encoded><![CDATA[<p>in order to start remote debugging your php scripts right from your development server, you&#8217;ll need the Zend debugger for your server&#8217;s platform from here:<br />
<a href=" http://downloads.zend.com/pdt/server-debugger/"></p>
<p>http://www.zend.com/en/products/studio/downloads</a></p>
<p>Chose the right ZendDebugger shared library for your PHP version (e.g. 5_2_x_comp/ZendDebugger.so) and copy it to your server &#8211; most likely where your other PHP extensions reside (in my case a turnkey LAMP stack &#8212;&gt; directory /usr/lib/php5/20060613+lfs)</p>
<p>Now add a little information to the end of your php.ini. Make sure, you use the right php.ini file (if you&#8217;re unsure: consult phpinfo() under the key &#8220;Loaded Configuration File&#8221;)</p>
<pre>zend_extension = "/usr/lib/php5/20060613+lfs/ZendDebugger.so"
zend_debugger.allow_hosts = 192.168.43.1
zend_debugger.expose_remotely=always
zend_debugger.passive_mode_timeout=600</pre>
<p>Of course adjust the first to lines accordingly. Allowed host is the IP address of the PC that&#8217;s running your Eclipse IDE. For more information on these directives, consult <a href="http://files-source.zend.com/help/Zend-Server-Community-Edition/zend_debugger_-_configuration_directives.htm">TFM</a> <img src='http://blog.christianleberfinger.de/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /><br />
Just a small notice on &#8216;allowed_hosts&#8217;: You can define full netmasks here, such as <span style="color: #000080;">192.168.0.0/16</span> &#8211; that means every IP in 192.168.*.*  &#8211; perfect for home DHCP or teamwork.</p>
<p>If your installation work was succesful, you&#8217;ll see a new paragraph in phpinfo() output that refers to as &#8220;Zend Debugger&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.christianleberfinger.de/?feed=rss2&amp;p=254</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>nokia pc suite &#8211; force a full sync</title>
		<link>http://blog.christianleberfinger.de/?p=243</link>
		<comments>http://blog.christianleberfinger.de/?p=243#comments</comments>
		<pubDate>Mon, 12 Jul 2010 11:32:40 +0000</pubDate>
		<dc:creator>christian</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.christianleberfinger.de/?p=243</guid>
		<description><![CDATA[simply delete the cached data stored in a folder like: C:\Users\YOUR_USERNAME\AppData\Roaming\Nokia\PCSync\SynchData\]]></description>
			<content:encoded><![CDATA[<p>simply delete the cached data stored in a folder like:<br />
C:\Users\YOUR_USERNAME\AppData\Roaming\Nokia\PCSync\SynchData\</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.christianleberfinger.de/?feed=rss2&amp;p=243</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>recover data notes</title>
		<link>http://blog.christianleberfinger.de/?p=239</link>
		<comments>http://blog.christianleberfinger.de/?p=239#comments</comments>
		<pubDate>Mon, 05 Jul 2010 23:41:47 +0000</pubDate>
		<dc:creator>christian</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.christianleberfinger.de/?p=239</guid>
		<description><![CDATA[recovering data from an sdcard is possible with oss: create an image of your drive using dd: dd if=/dev/disk1 of=/path/to/my/image.img get foremost at http://foremost.sourceforge.net/ then extract and make it you can specify a type, e.g. MOV ./foremost -t mov -i /path/to/my/image.img -o /path/to/my/recovered/files]]></description>
			<content:encoded><![CDATA[<p>recovering data from an sdcard is possible with oss:</p>
<p>create an image of your drive using dd:</p>
<blockquote><p>dd if=/dev/disk1 of=/path/to/my/image.img</p></blockquote>
<p>get foremost at<br />
<a href="http://foremost.sourceforge.net/">http://foremost.sourceforge.net/</a><br />
then extract and make it</p>
<p>you can specify a type, e.g. MOV</p>
<blockquote><p>./foremost -t mov -i /path/to/my/image.img -o /path/to/my/recovered/files</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://blog.christianleberfinger.de/?feed=rss2&amp;p=239</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>turnkey linux</title>
		<link>http://blog.christianleberfinger.de/?p=227</link>
		<comments>http://blog.christianleberfinger.de/?p=227#comments</comments>
		<pubDate>Sat, 26 Jun 2010 12:35:48 +0000</pubDate>
		<dc:creator>christian</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.christianleberfinger.de/?p=227</guid>
		<description><![CDATA[turnkey linux is a nice and small virtual appliance that comes as jeos (just enough operating system). it offers several ways to access it after it&#8217;s running: shell in browser (http, port 12320) webmin interface (http, port 12321) ssh unfortunately the vmware tools didn&#8217;t work. so i reinstalled them: mount vmware tools in vmware player [...]]]></description>
			<content:encoded><![CDATA[<p>turnkey linux is a nice and small virtual appliance that comes as jeos (just enough operating system).</p>
<p>it offers several ways to access it after it&#8217;s running:</p>
<ul>
<li>shell in browser (http, port 12320)</li>
<li>webmin interface (http, port 12321)</li>
<li>ssh</li>
</ul>
<p>unfortunately the vmware tools didn&#8217;t work. so i reinstalled them:</p>
<p>mount vmware tools in vmware player</p>
<p>mount cdrom</p>
<blockquote><p>sudo mkdir /media/cdrom<br />
sudo mount /dev/scd0 /media/cdrom</p></blockquote>
<p>unpack and install vmware tools</p>
<blockquote><p>cd /tmp<br />
tar xvzf /media/cdrom/VM*.gz<br />
cd vmware-tools-distrib<br />
sudo ./vmware-install.pl</p></blockquote>
<p>install vmware tools</p>
<blockquote><p>sudo apt-get install build-essential<br />
sudo apt-get install linux-headers-`uname -r`</p></blockquote>
<p>configure vmware tools</p>
<blockquote><p>/usr/bin/vmware-config-tools.pl</p></blockquote>
<p>show virtual disk mount points</p>
<blockquote><p>vmware-toolbox-cmd disk list</p></blockquote>
<p>zero out empty spaces<br />
(creates a huge file that takes all the free space on your harddisk and writes zero&#8217;s in it.<br />
thus it should be better compressable.</p>
<blockquote><p>cat /dev/zero &gt; zero.dat ; sync ; sleep 1 ; sync ; rm -f zero.dat</p></blockquote>
<p>shrink disk /</p>
<blockquote><p>vmware-toolbox-cmd disk shrink /</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://blog.christianleberfinger.de/?feed=rss2&amp;p=227</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>grep find blabla</title>
		<link>http://blog.christianleberfinger.de/?p=225</link>
		<comments>http://blog.christianleberfinger.de/?p=225#comments</comments>
		<pubDate>Mon, 26 Apr 2010 13:53:31 +0000</pubDate>
		<dc:creator>christian</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.christianleberfinger.de/?p=225</guid>
		<description><![CDATA[grep -Iri]]></description>
			<content:encoded><![CDATA[<p>grep -Iri <needle> </path/to/haystack>
]]></content:encoded>
			<wfw:commentRss>http://blog.christianleberfinger.de/?feed=rss2&amp;p=225</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The age of features is dead; Welcome to the age of User Experience.</title>
		<link>http://blog.christianleberfinger.de/?p=221</link>
		<comments>http://blog.christianleberfinger.de/?p=221#comments</comments>
		<pubDate>Thu, 01 Apr 2010 22:07:57 +0000</pubDate>
		<dc:creator>christian</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.christianleberfinger.de/?p=221</guid>
		<description><![CDATA[The age of features is dead; Welcome to the age of User Experience. This is the tagline of Aral Balkan&#8217;s blog with useful posts like that]]></description>
			<content:encoded><![CDATA[<p>The age of features is dead; Welcome to the age of User Experience.<br />
This is the tagline of Aral Balkan&#8217;s blog with useful posts like <a href="http://aralbalkan.com/687">that</a> </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.christianleberfinger.de/?feed=rss2&amp;p=221</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Converting E-Mail from Outlook to *</title>
		<link>http://blog.christianleberfinger.de/?p=217</link>
		<comments>http://blog.christianleberfinger.de/?p=217#comments</comments>
		<pubDate>Mon, 25 Jan 2010 01:36:31 +0000</pubDate>
		<dc:creator>christian</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.christianleberfinger.de/?p=217</guid>
		<description><![CDATA[After I converted from Windows last year I still avoided to convert my old emails. Well &#8211; this weekend the time has come. After a long hard road of try and error I came to the following conclusion: 1) Setup a new Virtual Machine with Windows XP (includes Outlook Express) 2) Install Microsoft Outlook Trial [...]]]></description>
			<content:encoded><![CDATA[<p>After I converted from Windows last year I still avoided to convert my old emails. Well &#8211; this weekend the time has come. After a long hard road of try and error I came to the following conclusion:</p>
<p>1) Setup a new Virtual Machine with Windows XP (includes Outlook Express)<br />
2) Install Microsoft Outlook Trial in this VM<br />
3) Install Thunderbird in this VM</p>
<p>4) Open your PST files in your Outlook trial version and copy all the mails to the main PST.<br />
5) Open Outlook Express and select &#8220;import mails from Outlook&#8221;<br />
6) Open Thunderbird and select &#8220;import mails from Outlook Express&#8221;</p>
<p>7) Transfer Thunderbird&#8217;s MBOX files to Thunderbird on your Mac.<br />
On PC the Local Folders can be found in a path like this: C:\Documents and Settings\Administrator\Anwendungsdaten\Thunderbird\Profiles\********.default\Mail\Local Folders<br />
On Mac it&#8217;s found in a dir like ~/Library/Thunderbird/Profiles/********.default/Mail/Local Folders</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.christianleberfinger.de/?feed=rss2&amp;p=217</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cross Golf Saisonabschluss</title>
		<link>http://blog.christianleberfinger.de/?p=214</link>
		<comments>http://blog.christianleberfinger.de/?p=214#comments</comments>
		<pubDate>Wed, 30 Dec 2009 00:19:32 +0000</pubDate>
		<dc:creator>christian</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.christianleberfinger.de/?p=214</guid>
		<description><![CDATA[Auch im Dezember konnte die hartgesottene Anhängerschaft des Kiesgruben-Golf nicht davon abgebracht werden, den Saisonabschluss mit einer gepflegten Runde bei nur knapp über Null Grad ausklingen zu lassen&#8230;]]></description>
			<content:encoded><![CDATA[<p>Auch im Dezember konnte die hartgesottene Anhängerschaft des Kiesgruben-Golf nicht davon abgebracht werden, den Saisonabschluss mit einer gepflegten Runde bei nur knapp über Null Grad ausklingen zu lassen&#8230;<br />

<div class="ngg-galleryoverview" id="ngg-gallery-2-214">


	
	<!-- Thumbnails -->
		
	<div id="ngg-image-34" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://blog.christianleberfinger.de/wp-content/gallery/crossgolf-122009/20091227_IMG_1686_gallery.jpg" title=" " class="shutterset_" >
								<img title="20091227_IMG_1686_gallery" alt="20091227_IMG_1686_gallery" src="http://blog.christianleberfinger.de/wp-content/gallery/crossgolf-122009/thumbs/thumbs_20091227_IMG_1686_gallery.jpg" width="100" height="100" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-35" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://blog.christianleberfinger.de/wp-content/gallery/crossgolf-122009/20091227_IMG_1689_gallery.jpg" title=" " class="shutterset_" >
								<img title="20091227_IMG_1689_gallery" alt="20091227_IMG_1689_gallery" src="http://blog.christianleberfinger.de/wp-content/gallery/crossgolf-122009/thumbs/thumbs_20091227_IMG_1689_gallery.jpg" width="100" height="100" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-36" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://blog.christianleberfinger.de/wp-content/gallery/crossgolf-122009/20091227_IMG_1691_gallery.jpg" title=" " class="shutterset_" >
								<img title="20091227_IMG_1691_gallery" alt="20091227_IMG_1691_gallery" src="http://blog.christianleberfinger.de/wp-content/gallery/crossgolf-122009/thumbs/thumbs_20091227_IMG_1691_gallery.jpg" width="100" height="100" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-37" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://blog.christianleberfinger.de/wp-content/gallery/crossgolf-122009/20091227_IMG_1692_gallery.jpg" title=" " class="shutterset_" >
								<img title="20091227_IMG_1692_gallery" alt="20091227_IMG_1692_gallery" src="http://blog.christianleberfinger.de/wp-content/gallery/crossgolf-122009/thumbs/thumbs_20091227_IMG_1692_gallery.jpg" width="100" height="100" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-38" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://blog.christianleberfinger.de/wp-content/gallery/crossgolf-122009/20091227_IMG_1695_gallery.jpg" title=" " class="shutterset_" >
								<img title="20091227_IMG_1695_gallery" alt="20091227_IMG_1695_gallery" src="http://blog.christianleberfinger.de/wp-content/gallery/crossgolf-122009/thumbs/thumbs_20091227_IMG_1695_gallery.jpg" width="100" height="100" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-39" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://blog.christianleberfinger.de/wp-content/gallery/crossgolf-122009/20091227_IMG_1696_gallery.jpg" title=" " class="shutterset_" >
								<img title="20091227_IMG_1696_gallery" alt="20091227_IMG_1696_gallery" src="http://blog.christianleberfinger.de/wp-content/gallery/crossgolf-122009/thumbs/thumbs_20091227_IMG_1696_gallery.jpg" width="100" height="100" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-40" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://blog.christianleberfinger.de/wp-content/gallery/crossgolf-122009/20091227_IMG_1697_gallery.jpg" title=" " class="shutterset_" >
								<img title="20091227_IMG_1697_gallery" alt="20091227_IMG_1697_gallery" src="http://blog.christianleberfinger.de/wp-content/gallery/crossgolf-122009/thumbs/thumbs_20091227_IMG_1697_gallery.jpg" width="100" height="100" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-41" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://blog.christianleberfinger.de/wp-content/gallery/crossgolf-122009/20091227_IMG_1699_gallery.jpg" title=" " class="shutterset_" >
								<img title="20091227_IMG_1699_gallery" alt="20091227_IMG_1699_gallery" src="http://blog.christianleberfinger.de/wp-content/gallery/crossgolf-122009/thumbs/thumbs_20091227_IMG_1699_gallery.jpg" width="100" height="100" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-42" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://blog.christianleberfinger.de/wp-content/gallery/crossgolf-122009/20091227_IMG_1700_gallery.jpg" title=" " class="shutterset_" >
								<img title="20091227_IMG_1700_gallery" alt="20091227_IMG_1700_gallery" src="http://blog.christianleberfinger.de/wp-content/gallery/crossgolf-122009/thumbs/thumbs_20091227_IMG_1700_gallery.jpg" width="100" height="100" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-43" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://blog.christianleberfinger.de/wp-content/gallery/crossgolf-122009/20091227_IMG_1706_gallery.jpg" title=" " class="shutterset_" >
								<img title="20091227_IMG_1706_gallery" alt="20091227_IMG_1706_gallery" src="http://blog.christianleberfinger.de/wp-content/gallery/crossgolf-122009/thumbs/thumbs_20091227_IMG_1706_gallery.jpg" width="100" height="100" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-44" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://blog.christianleberfinger.de/wp-content/gallery/crossgolf-122009/20091227_IMG_1707_gallery.jpg" title=" " class="shutterset_" >
								<img title="20091227_IMG_1707_gallery" alt="20091227_IMG_1707_gallery" src="http://blog.christianleberfinger.de/wp-content/gallery/crossgolf-122009/thumbs/thumbs_20091227_IMG_1707_gallery.jpg" width="100" height="100" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-45" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://blog.christianleberfinger.de/wp-content/gallery/crossgolf-122009/20091227_IMG_1710_gallery.jpg" title=" " class="shutterset_" >
								<img title="20091227_IMG_1710_gallery" alt="20091227_IMG_1710_gallery" src="http://blog.christianleberfinger.de/wp-content/gallery/crossgolf-122009/thumbs/thumbs_20091227_IMG_1710_gallery.jpg" width="100" height="100" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-46" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://blog.christianleberfinger.de/wp-content/gallery/crossgolf-122009/20091227_IMG_1717_gallery.jpg" title=" " class="shutterset_" >
								<img title="20091227_IMG_1717_gallery" alt="20091227_IMG_1717_gallery" src="http://blog.christianleberfinger.de/wp-content/gallery/crossgolf-122009/thumbs/thumbs_20091227_IMG_1717_gallery.jpg" width="100" height="100" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-47" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://blog.christianleberfinger.de/wp-content/gallery/crossgolf-122009/20091227_IMG_1719_gallery.jpg" title=" " class="shutterset_" >
								<img title="20091227_IMG_1719_gallery" alt="20091227_IMG_1719_gallery" src="http://blog.christianleberfinger.de/wp-content/gallery/crossgolf-122009/thumbs/thumbs_20091227_IMG_1719_gallery.jpg" width="100" height="100" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-48" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://blog.christianleberfinger.de/wp-content/gallery/crossgolf-122009/20091227_IMG_1720_gallery.jpg" title=" " class="shutterset_" >
								<img title="20091227_IMG_1720_gallery" alt="20091227_IMG_1720_gallery" src="http://blog.christianleberfinger.de/wp-content/gallery/crossgolf-122009/thumbs/thumbs_20091227_IMG_1720_gallery.jpg" width="100" height="100" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-49" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://blog.christianleberfinger.de/wp-content/gallery/crossgolf-122009/20091227_IMG_1722_gallery.jpg" title=" " class="shutterset_" >
								<img title="20091227_IMG_1722_gallery" alt="20091227_IMG_1722_gallery" src="http://blog.christianleberfinger.de/wp-content/gallery/crossgolf-122009/thumbs/thumbs_20091227_IMG_1722_gallery.jpg" width="100" height="100" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-50" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://blog.christianleberfinger.de/wp-content/gallery/crossgolf-122009/20091227_IMG_1726_gallery.jpg" title=" " class="shutterset_" >
								<img title="20091227_IMG_1726_gallery" alt="20091227_IMG_1726_gallery" src="http://blog.christianleberfinger.de/wp-content/gallery/crossgolf-122009/thumbs/thumbs_20091227_IMG_1726_gallery.jpg" width="100" height="100" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-51" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://blog.christianleberfinger.de/wp-content/gallery/crossgolf-122009/20091227_IMG_1729_gallery.jpg" title=" " class="shutterset_" >
								<img title="20091227_IMG_1729_gallery" alt="20091227_IMG_1729_gallery" src="http://blog.christianleberfinger.de/wp-content/gallery/crossgolf-122009/thumbs/thumbs_20091227_IMG_1729_gallery.jpg" width="100" height="100" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-52" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://blog.christianleberfinger.de/wp-content/gallery/crossgolf-122009/20091227_IMG_1736_gallery.jpg" title=" " class="shutterset_" >
								<img title="20091227_IMG_1736_gallery" alt="20091227_IMG_1736_gallery" src="http://blog.christianleberfinger.de/wp-content/gallery/crossgolf-122009/thumbs/thumbs_20091227_IMG_1736_gallery.jpg" width="100" height="100" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-53" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://blog.christianleberfinger.de/wp-content/gallery/crossgolf-122009/20091227_IMG_1738_gallery.jpg" title=" " class="shutterset_" >
								<img title="20091227_IMG_1738_gallery" alt="20091227_IMG_1738_gallery" src="http://blog.christianleberfinger.de/wp-content/gallery/crossgolf-122009/thumbs/thumbs_20091227_IMG_1738_gallery.jpg" width="100" height="100" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-54" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://blog.christianleberfinger.de/wp-content/gallery/crossgolf-122009/20091227_IMG_1745_gallery.jpg" title=" " class="shutterset_" >
								<img title="20091227_IMG_1745_gallery" alt="20091227_IMG_1745_gallery" src="http://blog.christianleberfinger.de/wp-content/gallery/crossgolf-122009/thumbs/thumbs_20091227_IMG_1745_gallery.jpg" width="100" height="100" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-55" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://blog.christianleberfinger.de/wp-content/gallery/crossgolf-122009/20091227_IMG_1746_gallery.jpg" title=" " class="shutterset_" >
								<img title="20091227_IMG_1746_gallery" alt="20091227_IMG_1746_gallery" src="http://blog.christianleberfinger.de/wp-content/gallery/crossgolf-122009/thumbs/thumbs_20091227_IMG_1746_gallery.jpg" width="100" height="100" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-56" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://blog.christianleberfinger.de/wp-content/gallery/crossgolf-122009/20091227_IMG_1748_gallery.jpg" title=" " class="shutterset_" >
								<img title="20091227_IMG_1748_gallery" alt="20091227_IMG_1748_gallery" src="http://blog.christianleberfinger.de/wp-content/gallery/crossgolf-122009/thumbs/thumbs_20091227_IMG_1748_gallery.jpg" width="100" height="100" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-57" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://blog.christianleberfinger.de/wp-content/gallery/crossgolf-122009/20091227_IMG_1754_gallery.jpg" title=" " class="shutterset_" >
								<img title="20091227_IMG_1754_gallery" alt="20091227_IMG_1754_gallery" src="http://blog.christianleberfinger.de/wp-content/gallery/crossgolf-122009/thumbs/thumbs_20091227_IMG_1754_gallery.jpg" width="100" height="100" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-58" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://blog.christianleberfinger.de/wp-content/gallery/crossgolf-122009/20091227_IMG_1758_gallery.jpg" title=" " class="shutterset_" >
								<img title="20091227_IMG_1758_gallery" alt="20091227_IMG_1758_gallery" src="http://blog.christianleberfinger.de/wp-content/gallery/crossgolf-122009/thumbs/thumbs_20091227_IMG_1758_gallery.jpg" width="100" height="100" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-59" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://blog.christianleberfinger.de/wp-content/gallery/crossgolf-122009/20091227_IMG_1766_gallery.jpg" title=" " class="shutterset_" >
								<img title="20091227_IMG_1766_gallery" alt="20091227_IMG_1766_gallery" src="http://blog.christianleberfinger.de/wp-content/gallery/crossgolf-122009/thumbs/thumbs_20091227_IMG_1766_gallery.jpg" width="100" height="100" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class="ngg-clear">&nbsp;</div> 	
</div>

</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.christianleberfinger.de/?feed=rss2&amp;p=214</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>chinesisch für bayern</title>
		<link>http://blog.christianleberfinger.de/?p=212</link>
		<comments>http://blog.christianleberfinger.de/?p=212#comments</comments>
		<pubDate>Sat, 26 Dec 2009 12:49:52 +0000</pubDate>
		<dc:creator>christian</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.christianleberfinger.de/?p=212</guid>
		<description><![CDATA[heid scheint d&#8217;sunn so schee &#8211; i kunn kaum schaun]]></description>
			<content:encoded><![CDATA[<p>heid scheint d&#8217;sunn so schee &#8211; i kunn kaum schaun</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.christianleberfinger.de/?feed=rss2&amp;p=212</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Der neue Audi A8</title>
		<link>http://blog.christianleberfinger.de/?p=197</link>
		<comments>http://blog.christianleberfinger.de/?p=197#comments</comments>
		<pubDate>Sat, 05 Dec 2009 18:22:30 +0000</pubDate>
		<dc:creator>christian</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.christianleberfinger.de/?p=197</guid>
		<description><![CDATA[Endlich ist es soweit: Der neue Audi A8 wurde in Miami der Öffentlichkeit vorgestellt. Hier ein paar Resonanzen: Allgemeine Artikel: heise.de Audi MMI Touch: wall street journal gizmodo.de gizmodo.com carbuyersnotebook.com autospies.com audi.de]]></description>
			<content:encoded><![CDATA[<p>Endlich ist es soweit: Der neue Audi A8 wurde in Miami der Öffentlichkeit vorgestellt. Hier ein paar Resonanzen:</p>
<h3>Allgemeine Artikel:</h3>
<p><a href="http://www.heise.de/autos/artikel/Leichter-Luxus-Audi-stellt-den-neuen-A8-vor-873052.html">heise.de</a></p>
<h3>Audi MMI Touch:</h3>
<p><a href="http://online.wsj.com/article/SB10001424052748704561004575013152608105546.html">wall street journal</a><br />
<a href="http://www.gizmodo.de/2009/12/02/audi-mmi-touch-system-lasst-sich-gern-anfassen.html">gizmodo.de</a><br />
<a href=" http://gizmodo.com/5416342/audi-new-mmi-touch-input-system-makes-perfect-sense">gizmodo.com</a><br />
<a href="http://www.carbuyersnotebook.com/audis-mmi-touch-input-gives-huge-control-on-the-fly/">carbuyersnotebook.com</a><br />
<a href="http://www.autospies.com/news/2011-Audi-A8-MMI-Touch-Changing-The-Way-We-Use-Navigation-Systems-50086/">autospies.com</a><br />
<a href="http://www.audi.de/de/brand/de/neuwagen/a8/a8/ausstattung/multi_media_interface/mmi_touch.html">audi.de</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.christianleberfinger.de/?feed=rss2&amp;p=197</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
