<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
   <channel>
      <title>damians personal blog</title>
      <link>http://www.level0.ch/mt/</link>
      <description></description>
      <language>de</language>
      <copyright>Copyright 2010</copyright>
      <lastBuildDate>Tue, 25 May 2010 23:46:19 +0100</lastBuildDate>
      <generator>http://www.sixapart.com/movabletype/?v=4.0</generator>
      <docs>http://blogs.law.harvard.edu/tech/rss</docs> 

      
      <item>
         <title>Zügeln für Geeks</title>
         <description><![CDATA[<div style="color:#ddd; width:180px; float:right; margin-left:10px;" ><img alt="bananenschachteln " src="/mt/img/schachteln.jpg" width="180px"/></div>

<ul>
<li><code>cd /usr/damian</code> <br/>gehe nach Hause</li>
<li><code>ls -alR</code> <br/>schaue nach, was du alles besitzt (auch in den Schubladen und Schränken)</li>
<li><code>ls -alR | grep "  2005 " | rm</code> <br/>schmeisse zu alte Sachen weg</li>
<li><code>tar -cf * banana.tar</code> <br/>packe alles in Bananenschachteln</li>
<li><code>mv banana.tar /dev/usb1/</code> <br/>verschiebe die Bananenschachteln in ein Vehikel</li>
<li><code>mkdir /usr/newdamian | cd /usr/newdamian </code> <br/> kreiere ein neues Heim und fahre dorthin</li>
<li><code>tar -xpf /dev/usb1/banana.tar</code> <br/>packe die Bananenschachteln im neuen Heim aus</li>
<li><code>shutdown -k now</code> <br/>schmeisse alle anderen hinaus und hol dir ein Bier</li>
</ul>
]]></description>
         <link>http://www.level0.ch/mt/2010/05/zugeln_fur_geeks.html</link>
         <guid>http://www.level0.ch/mt/2010/05/zugeln_fur_geeks.html</guid>
         <category></category>
         <pubDate>Tue, 25 May 2010 23:46:19 +0100</pubDate>
      </item>
      
      <item>
         <title>File in use and resource fork</title>
         <description><![CDATA[<p>I had to remove a complicated file from an external hard drive. When I tried to delete it via Finder / Trash, it said, unable to remove, <em>file in use</em>. Nevertheless it was possible to unmount the volume without errors, which means none of the current processes actually used that file.</p>

<p>No big deal I thought, let's just force delete it. And use the superuser command just in case it's an access rights problem:</p>

<pre><code>$ sudo rm -f /Volumes/sams186/App.dmg
</code></pre>

<p>But this time it did not help: unable to remove. So I found that the resource fork could prevent files from being deleted. The resource fork is a file system structure which allows the system to store additional information to a file that does not belong to the file itself, but isn't a file system attribute either.</p>

<p>Open parenthesis:<br/>
File system attributes are properties of a file such as file name, block address, file size, etc. The number of file system attributes available and the constraints who apply vary from one file system format to another, which means <em>HFS+</em> does not store exactly the same information as <em>FAT32</em> or <em>EXT3</em>.</p>

<p>In the long listing of a directory, the existence of a resource fork is indicated with an <code>@</code> after the access rights:</p>

<pre><code>$ ls -al /Volumes/sams186/
-rw-r--r--@   1 damian  damian  224395264 16 Nov  2006 App.dmg
</code></pre>

<p>To show more information about the resource forks in the folder listing, use the <code>@</code> parameter:</p>

<pre><code>$ ls -al@ /Volumes/sams186/
-rw-r--r--@   1 damian  damian  224395264 16 Nov  2006 App.dmg
    com.apple.FinderInfo           32
</code></pre>

<p>To display the content of a resource fork:</p>

<pre><code>$ xattr -l /Volumes/sams186/App.dmg
</code></pre>

<p>And finally, to delete a part of a resource fork:</p>

<pre><code>$ xattr -d "com.apple.FinderInfo" /Volumes/sams186/App.dmg
</code></pre>

<p>Having removed that <code>FinderInfo</code> resource fork, the file could be removed without any problems.</p>
]]></description>
         <link>http://www.level0.ch/mt/2009/12/file_in_use_and_resource_fork.html</link>
         <guid>http://www.level0.ch/mt/2009/12/file_in_use_and_resource_fork.html</guid>
         <category>mac os x</category>
         <pubDate>Tue, 01 Dec 2009 14:04:01 +0100</pubDate>
      </item>
      
      <item>
         <title>Aperture force thumbnails</title>
         <description><![CDATA[<div style="color:#ddd; width:250px; float:right; margin-left:10px;" ><img alt="aperture menu " src="/mt/img/aperture_menu.png" width="250px"/></div>

<p>After the <a href="/mt/2009/11/aperture_library_residing_on_a.html">aforementioned <em>library hack</em></a> I couldn't see any thumbnails from about 30-45 images, and some had the even the wrong thumbnail instead. (This might be due to an error in importing from the flash card, as some images ended up having the same file name.)</p>

<p>Even the right-click menu entries "Delete Preview" and forced "Generate Preview" wouldn't help. The correct image appeared on double click or entering fullscreen mode, but the preview won't change. I was always looking for an option in the mouse menu, I guess I'm working too much with windows at work -- the option I sought was placed in the "Images" menu and is called - surprise - "Generate Thumbnails".</p>

<p>This did solve the problem with the missing thumbs, but not with the wrong thumbs. Immediately after generating a new thumb from the image it helped. But somehow it seemed to me, generating new thumbs only postponed the problem. And I could observe files having a different original name mix up thumbs repeatedly, it was the same image that got the same wrong thumbs.</p>

<p>So what I tried to do</p>

<ul>
<li>Generate Preview on all images</li>
<li>Generate Thumbnails on all images</li>
<li>Delete .approject/AP.Thumbnails and other AP.* files</li>
</ul>

<p>but nothing helped. Until I found that <a href="http://discussions.apple.com/message.jspa?messageID=4147355#4147355">thread in the apple forum</a>, where the user "firstlaunch" suggests to rebuild the database. His advice is to hold <code>[Alt][Cmd]</code> at startup, and then rebuild. In my case, a simple "Consistency Check" did do the trick.</p>

<p>Compare the screenshot below:</p>

<div style="text-align:center"><img alt="aperture boot dialogue" src="/mt/img/aperture_rebuild.png" width="480px"/></div>
]]></description>
         <link>http://www.level0.ch/mt/2009/11/aperture_force_thumbnails.html</link>
         <guid>http://www.level0.ch/mt/2009/11/aperture_force_thumbnails.html</guid>
         <category>photo</category>
         <pubDate>Tue, 24 Nov 2009 06:32:13 +0100</pubDate>
      </item>
      
      <item>
         <title>Aperture library residing on an external drive</title>
         <description><![CDATA[<div style="color:#ddd; width:203px; float:left; margin-right:10px;" ><img alt="aperture library icon" src="/mt/img/aperture_library.png" width="203px"/><br> &copy; Apple Computers<br><br></div>

<p>The other day I had to collect the pictures of <a href="http://www.friscenes.ch">FriScènes</a>, a local theater festival. I freed up some 20 GB on my internal hard drive, and collected about as much data of raw photos in Aperture. After the festival I created a backup of the files on my external hard drive, and copied the aperture library also to the external drive (kind of unnecessary, but you never know).</p>

<p>Some days later I needed to access the photos of the festival. But Aperture (v2.1.4) won't let me set the Library path to the external drive, and I couldn't copy it back on the internal either due to lack of free space.</p>

<p>So after some fiddling in the terminal I found a way to leave the photo files on the external drive and access them anyways with Aperture:</p>

<ol>
<li>copy the .aplibrary folder and all the files in it to your internal harddrive <em>except</em> the .approject files</li>
<li>create a symlink on your internal drive pointing to your external drive</li>
</ol>

<p>In my case, the commands where the following:</p>

<pre><code> cd /Users/damian/Pictures/
 cp -rv /Volumes/wd590/Aperture\ Library\ FriScenes.aplibrary .
</code></pre>

<p>(which I interrupted with <code>CTRL-C</code> when I saw it copied actual image files) </p>

<pre><code> cd Aperture\ Library\ FriScenes.aplibrary
 rm -r *.approject
 ln -s /Volumes/wd590/Aperture\ Library\ FriScenes.aplibrary/*.approject .
</code></pre>

<p>This works fine, though the slower performance of the USB drive causes the thumbnails to appear one after another (instead of appearing instantly when running from the interal drive.)</p>
]]></description>
         <link>http://www.level0.ch/mt/2009/11/aperture_library_residing_on_a.html</link>
         <guid>http://www.level0.ch/mt/2009/11/aperture_library_residing_on_a.html</guid>
         <category>photo</category>
         <pubDate>Sun, 15 Nov 2009 23:05:56 +0100</pubDate>
      </item>
      
      <item>
         <title>What has happened to extratasty.com?</title>
         <description><![CDATA[<div style="text-align:center"><a href="http://www.extratasty.com"><img alt="extratasty website screenshot" src="/imgred/http://www.blogcdn.com/socialsoftware.weblogsinc.com/media/2006/02/extratasty_web.jpg" width="425px"/></a></div>

<p>There used to be a <a href="http://www.extratasty.com">really cool drinks &amp; booze recipe website</a> - today I found the url being redirected to the <a href="http://www.threadless.com">threadless t-shirt community</a>, which is not really the kind of advice I was looking for. After a bit of <a href="http://ajaxian.com/archives/extra-tasty-alcohol-ajax">nosing around</a> I found the  <a href="http://www.skinnycorp.com/">skinnyCorp</a> being responsible for both of those websites, and it's probably just an error in the domain name resolution. </p>

<p>However it started me thinking about the websites I use regularly (<a href="http://www.imdb.com">IMDB</a>, <a href="http://www.mac-essentials.de">MacEssentials</a>) or I have entered data which has not been saved anywhere else (<a href="http://www.facebook.com">Facebook</a>, <a href="http://www.criticker.com">criticker.com</a>). What if they stopped working today? The decline of web2.0-bubble, the end of the world as <del>we know</del> the people being born after 1990 know...</p>

<p>Let's hope it will continue like it was for the past few years!</p>
]]></description>
         <link>http://www.level0.ch/mt/2009/11/what_has_happened_to_extratast.html</link>
         <guid>http://www.level0.ch/mt/2009/11/what_has_happened_to_extratast.html</guid>
         <category>web world</category>
         <pubDate>Sun, 08 Nov 2009 20:58:52 +0100</pubDate>
      </item>
      
      <item>
         <title>Office 2007 fonts on Mac</title>
         <description><![CDATA[<div style="float:right; margin:0px 0px 10px 10px; text-align:center"><img alt="office 2007 logo" src="/imgred/http://zakarpattya.net.ua/images/zakarpattya20090416121853.jpg" width="120px"/></div>

<p>Microsoft Windows Vista and Microsoft Office 2007 install a new set of fonts - Constantia, Corbel, Calibri, Cambria, Candara, Consolas. Office 2007 users often use them without knowing they might not be installed on other computers, resulting in strange behaviour and changed document layout.</p>

<p><strong>How can you see you don't have them?</strong></p>

<p>If these two lines look the same to you, then you <em>don't</em> have them:</p>

<ul>
<li><span style="font-family:Calibri,Courier New;">The quick brown fox jumps over a lazy dog.</span></li>
<li><span style="font-family:Courier New;">The quick brown fox jumps over a lazy dog.</span></li>
</ul>

<p><strong>How can you get them?</strong></p>

<p>Here is the official way how to download them for free anyway:</p>

<p>Go to the Microsoft Download Center and search for <a href="http://www.microsoft.com/downloads/en/results.aspx?freetext=open+xml+converter">open xml converter</a>. Look for the latest version of the <a href="http://www.microsoft.com/downloads/details.aspx?displaylang=en&amp;FamilyID=edb6cd8f-832c-4123-8982-ac0c601ea0a7">Open XML File Format Converter for Mac</a> (44 MB). </p>

<p>The inofficial way, for all of you who don't want to pollute your system with Micro$oft software, <a href="http://duckload.com/download/130871/all_fonts.zip">get only the fonts</a> (6 MB). <!-- dexlextex/130871/3PoaMPkjm --></p>

<p>For all the PC users, go to the Download Center and search for <a href="http://www.microsoft.com/downloads/en/results.aspx?pocId=&amp;freetext=Compatibility%202007">compatibility 2007</a> and then download the latest <a href="http://www.microsoft.com/downloads/details.aspx?displaylang=en&amp;FamilyID=75bf0831-2f4d-48ce-a0b3-0d6586f9039b">Compatibility Pack</a>. If you don't need it and just want to use the fonts, you can uninstall the software, and the fonts will stay on your system.</p>

<p><img alt="vista fonts overview" img src="/imgred/http://www.quickonlinetips.com/archives/wp-content/uploads/vista-fonts.gif" width="350px"/></p>

<p>Oh, and by the way, the real official way to get those fonts is to buy <a href="http://www.ascendercorp.com/catalog/microsoft/clear-type-font-collection/">The Complete Font Collection</a> - all 25 fonts for only $299, let alone if you buy them one by one only $35 each!</p>
]]></description>
         <link>http://www.level0.ch/mt/2009/07/office_2007_fonts.html</link>
         <guid>http://www.level0.ch/mt/2009/07/office_2007_fonts.html</guid>
         <category>unsorted</category>
         <pubDate>Sat, 04 Jul 2009 09:12:56 +0100</pubDate>
      </item>
      
      <item>
         <title>Forgotten Flowers</title>
         <description><![CDATA[<script type="text/javascript" src="/gallery/prototype.js"></script>

<script type="text/javascript" src="/gallery/scriptaculous.js?load=effects"></script>

<script type="text/javascript" src="/gallery/effects.js"></script>

<script type="text/javascript" src="/gallery/lightbox.js"></script>

<p><link rel="stylesheet" href="/gallery/_lightbox.css" type="text/css" media="screen"></p>

<div style="text-align:center;">
<a href="/gallery/pflanzen/09-03-30 _MG_3201.jpg" rel="lightbox[gallery]" title="09-03-30 _MG_3201"><img src="/gallery/pflanzen/_09-03-30 _MG_3201.jpg"></a> 
 <br/>
<a href="/gallery/pflanzen/09-03-30 _MG_3206.jpg" rel="lightbox[gallery]" title="09-03-30 _MG_3206"><img src="/gallery/pflanzen/_09-03-30 _MG_3206.jpg"></a> 
 <br/>
<a href="/gallery/pflanzen/09-03-30 _MG_3203.jpg" rel="lightbox[gallery]" title="09-03-30 _MG_3203"><img src="/gallery/pflanzen/_09-03-30 _MG_3203.jpg"></a>
</div>

<p>...still better than broken ones. Hope you get the idea though, it's never as beautiful as reality. And there is no scent on the web, either!</p>
]]></description>
         <link>http://www.level0.ch/mt/2009/03/forgotten-flowers.html</link>
         <guid>http://www.level0.ch/mt/2009/03/forgotten-flowers.html</guid>
         <category>herzvoll</category>
         <pubDate>Mon, 30 Mar 2009 23:41:29 +0100</pubDate>
      </item>
      
      <item>
         <title>NTFS on Mac</title>
         <description><![CDATA[<p>The problem why Windows on a Mac was a pain in the ass is roughly the following:</p>

<ul>
<li>If you use Bootcamp &amp; an NTFS partition, you won't be able to access your Windows data from OS X</li>
<li>If you use Bootcamp &amp; an Fat32 partition, you could access your data, but the installation will abort with an hardware abstraction layer (hal.dll) error (also see this german <a href="http://blog.lobustho.de/?p=125">blog</a>)</li>
<li>If you delete the 200mb partition, you can get over the HAL-error, but you're not able to remove the Win partition with the Bootcamp assistent anymore.</li>
</ul>

<p><img src="http://macfuse.googlecode.com/svn/trunk/core/packaging/images/MacFUSE_Banner.png" width="100%"/></p>

<p>That was the dilemma... lose the flexibility to remove the Win partition easily, or don't be able to access your data. Until google published Mac FUSE which stands for <em>F</em>ile-system in <em>USE</em>r space. If you have some knowledge about the architecture of an operating system: this is a driver (running in kernel mode) allowing to use file system implementations in user mode, as the name suggests. But the really interesting feature is its implementation of a Linux file system API, making Linux file system adaptations ready to use on a mac. Amongst other [rethorical pause] NTFS!</p>

<p>Which solves us the problem described above. First install <a href="http://code.google.com/p/macfuse/">MacFUSE</a>, and then the <a href="http://macntfs-3g.blogspot.com/">NTFS 3G driver</a> and enjoy hasselfree Windows!</p>
]]></description>
         <link>http://www.level0.ch/mt/2009/03/ntfs_on_mac.html</link>
         <guid>http://www.level0.ch/mt/2009/03/ntfs_on_mac.html</guid>
         <category>mac os x</category>
         <pubDate>Tue, 24 Mar 2009 07:27:47 +0100</pubDate>
      </item>
      
      <item>
         <title>Recovering from Browser Crash</title>
         <description><![CDATA[<div style="color:#ddd; height:70px; width:71px; float:left; margin-right:10px; background-image:url(http://www.mozilla-europe.org/img/tignish/firefox/download-background.png); background-position:-189px 0px;">&nbsp;</div>

<p>This might apply for any website where you enter text and preview it afterwards. I experienced a browser crash when writing the preceding blog entry. And as if a browser crash wasn't annoying enogh, I discovered I didn't save my blog entry when it was finished. Instead I previewed it and headed off doing other stuff, which ended in killing browser.</p>

<p>Sure, as a golden rule, always copy your text before you submit any form, since any website is suspect to lose your content. But I was young and foolish and didn't do that, and even the built-in autosave mechanism of Movable Type didn't save anything helpful.</p>

<p>But my luck was, I did <em>preview</em> it. The fact of previewing it made it possible to find it in the browsers' cache. I opened the terminal and entered the following:</p>

<pre><code>grep &lt;keyword&gt; -r ~/Library/Caches/Firefox/
</code></pre>

<p>whereas <code>&lt;keyword&gt;</code> is to be substituted with a word that is for sure in your text but not very common. The same could be applied to Safari, which cache is accessible under <code>~/Library/Caches/Safari/</code>. The output of the grep command is the filename followed by the line in which the keyword was found. If you found the right file, you can view the contents of the file with the command <code>cat &lt;path/to/file&gt;</code>.</p>
]]></description>
         <link>http://www.level0.ch/mt/2009/03/recovering_from_browser_crash_1.html</link>
         <guid>http://www.level0.ch/mt/2009/03/recovering_from_browser_crash_1.html</guid>
         <category>mac os x</category>
         <pubDate>Mon, 23 Mar 2009 00:25:47 +0100</pubDate>
      </item>
      
      <item>
         <title>back with blogging</title>
         <description><![CDATA[<p>It's been some time since my last blog entry. First for everybody checking once in a while, sorry for the silence. There have been several factors hindering me from blogging.</p>

<div style="background-color:#000; width:200px; float:right; margin:0px 0px 10px 10px; padding: 10px; text-align:center"><img alt="movable type logo" src="/imgred/http://www.movabletype.com/images/logo_mt.gif" width="191px"/></div>

<p><strong>First</strong> and probably most important, <a href="http://www.movabletype.com/">Movabletype</a> hindered me from logging into my admin interface. How that? Since about v3.2, MT has an automatic update system. The cool side is, updating has gotten a lot more easier since. After the user authentication, a script runs automatically, and if everthing works fine, you'll see your new MT version seconds later. </p>

<p><em>IF</em> everthing works fine.</p>

<p>If not, you're just locked out of your blogging software. Which happened to me in fall 08. The update script terminated with the message "Could not create table mt_comments [...] table already exists". In retrospective, it was fairly easy to debug. I used phpMyAdmin to access the database (always backup, whatever you do). There I found the table <code>mt_comments</code> showed as <em>in use</em>. A drop table did the magic, with<strike>outß</strike> deleting the current comments. The next login attempt completed the update without problems.</p>

<p><strong>Second</strong> I joined the networking platform <a href="http://www.facebook.com">Facebook</a> and used it as a fast-food-alternative to blogging. The feature of publishing a status is perfect for me, if I want to update my surroundings of what I'm doing or how I feel. I think it is even better than blogging, since most people don't know anything about blogs, not to speak of RSS. However, for technical information it is not very apropriate.</p>

<p>And <strong>third</strong> last but not least, since about six months ago I made acquaintance of a wunderful girl who happens to become my girlfriend. And since then I love to spend every minute off with my girl, which did not really help to invest time in blogging.</p>

<p>So... now I have repaired the admin interface. I will continue to use this blog for more geek stuff, not only computer stuff but also photography, travelling or topics alike. Enjoy!</p>
]]></description>
         <link>http://www.level0.ch/mt/2009/03/back_with_blogging.html</link>
         <guid>http://www.level0.ch/mt/2009/03/back_with_blogging.html</guid>
         <category>unsorted</category>
         <pubDate>Sun, 22 Mar 2009 20:11:31 +0100</pubDate>
      </item>
      
      <item>
         <title>Der letzte iPhone-ikaner</title>
         <description><![CDATA[<p>Der Tag beginnt nicht gut. </p>

<p><strong>7:35</strong> Uhr, <a href="http://www.mac-essentials.de/index.php/mac/article/19807/">mac-essentials.de</a> zitiert Focus: <br />
<em>10 Tage nach dem Launch des neuen iPhones ist es in sämtlichen US-Apple Stores ausverkauft: nur in Kalifornien, New York, Honolulu und New Hampshire soll es laut AppleInsider einzelne Exemplare geben. Auch europaweit gibt es keine iPhones mehr [...]</em></p>

<p>Auf <a href="http://www.couleur3.ch/fr/rsr.html?siteSect=100">Couleur3</a> berichten sie dasselbe - nirgendwo keine iPhones mehr. </p>

<p>Doch um 10:35 Uhr bekomme ich eine Nachricht auf die Combox, weil ich im Büro einen sehr schlechten Empfang habe:</p>

<!-- begin embedded QuickTime file... -->
        <!-- begin video window... -->
        <OBJECT classid='clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B' width="320"
        height="20" codebase='http://www.apple.com/qtactivex/qtplugin.cab'>
        <param name='src' value="http://level0.ch/fileserv/iphone_imhof.m4a">
        <param name='autoplay' value="false">
        <param name='controller' value="true">
        <param name='loop' value="false">
        <EMBED src="http://level0.ch/fileserv/iphone_imhof.m4a" width="320" height="20" autoplay="false" 
        controller="true" loop="false" pluginspage='http://www.apple.com/quicktime/download/'>
        </EMBED>
        </OBJECT>
        <!-- ...end embedded QuickTime file -->

<p>Ich glaube, ich habe für <a href="http://maps.google.com/maps?f=d&amp;hl=de&amp;geocode=&amp;saddr=Ch.+de+Beaulieu+8,+1752+Villars-sur-Gl%C3%A2ne&amp;daddr=Hauptstrasse+20,+3186+D%C3%BCdingen&amp;sll=37.0625,-95.677068&amp;sspn=43.934478,84.814453&amp;ie=UTF8&amp;t=h&amp;z=13">den Weg</a> weniger als 10 Minuten gebraucht, und etwa sämtliche Verkehrsregeln gebrochen, die man auf der Strecke nur brechen konnte! Auf dem Weg habe ich mir immer gedacht "das kann nicht sein, die verarschen dich!" Aber als ich im Shop wartete und zusah, wie einer Kundin vor mir das iPhone verkauft wurde, fasste ich wieder Mut. Zu recht - die iPhones hatten sie am Samstag in einer Express-Lieferung erhalten, hatten am Samstag aber keine Zeit gehabt, die Anrufe zu tätigen. </p>

<p>Fazit: 1x iPhone 16GB weiss, als bestehender Swisscom-Kunde (basic liberty) mit Aboverlängerung für 24 Monate kostet 419.-, wenn man eine gute Verkäuferin hat, die erst den falschen Preis sagt, nur noch 369.-. </p>

<div style="color:#ddd; width:250px; float:right; margin:0px 0px 10px 10px; text-align:center"><img alt="amores perros in quicktime" src="/mt/img/damian+iphone.jpg" width="250px"/></div>

<p>Meine ersten Eindrücke: </p>

<ul>
<li>Die Bedienung ist genau so sexy, wie ich sie erwartet habe. Ich habe mich danach sogar dabei ertappt, wie ich mit OS X à la iPhone umgehen wollte...</li>
<li>Noch vorhandene SMS werden wie üblich ohne Hinweis beim Wechsel der SIM-Karte gelöscht. </li>
<li>Notizzettel alias Stickies werden nicht synchronisiert - halloo?! Ich glaub die Entwickler haben gepennt!</li>
<li>Die fehlende Zwischenablage macht sich im Normalfall nicht bemerkbar, weil fast alles notwendige eingebaut ist. Es sei denn, man will bei einem Kontakt Vorname und Nachname vertauschen.</li>
<li>Einige Kontakte werden mysteriöserweise nicht synchronisiert - keine Fehlermeldung, keine Benachrichtigung.</li>
<li>Kein synchronisieren über WLAN, sondern nur USB2 (Kabel).</li>
<li>Das surfen ist toll, da hat Apple nicht zuviel versprochen. Coverflow ist auch super, und Karte mit GPS funzt genial.</li>
<li>Mail lädt auch von Spam immer die Volldarstellung. Als default müsste immer nur eine Textansicht gezeigt werden, und die Bilder erst auf Knopfdruck. Aber mit <a href="http://www.apple.com/de/mobileme/">MobileMe</a> müsste das Problem nicht mehr so schlimm sein, da man Spam via den Computer aussortieren kann, und die Änderungen sich dann auf's Natel replizieren.</li>
</ul>
]]></description>
         <link>http://www.level0.ch/mt/2008/07/der-letzte-iphone-ikaner.html</link>
         <guid>http://www.level0.ch/mt/2008/07/der-letzte-iphone-ikaner.html</guid>
         <category>apple</category>
         <pubDate>Mon, 21 Jul 2008 22:05:06 +0100</pubDate>
      </item>
      
      <item>
         <title>&quot;Isolation...</title>
         <description><![CDATA[<p>... is not good for me, <br />
Isolation - I dont want to sit on a lemon tree. <br />
Im driving around in my car, <br />
Im driving too fast, Im driving too far." <em>*sing</em>* <br />
 - - (Fools Garden, Lemon Tree)</p>

<p>She is just too good to be true. <br />
So cheerful, yet so wise. <br />
So beautiful, yet so ... taken. <br />
 - - (me)</p>

<p>"I'm <strike>leaving</strike> <em>seeing</em> you for the last time baby... <br />
<em>hmm hm hm hm</em> ... loving but you don't love me." <em>*sing</em>* <br />
 - - (Duffy, Warwick Avenue)</p>

<p>"Up, and awaay!" <br />
 - - (Bill Watterson, Calvin &amp; Hobbes)</p>
]]></description>
         <link>http://www.level0.ch/mt/2008/07/isolation.html</link>
         <guid>http://www.level0.ch/mt/2008/07/isolation.html</guid>
         <category>herzvoll</category>
         <pubDate>Wed, 16 Jul 2008 02:44:45 +0100</pubDate>
      </item>
      
      <item>
         <title>Good bye Natel</title>
         <description><![CDATA[<p>Good by my beloved cellphone! May the fleas of thousands of mangy dogs infect the rectum of the thief and may his arms shorten so he won't be able to scratch!</p>

<p>Also ab jetzt bis zum <a href="http://www.swisscom.ch/iphone/">11.Juli</a> keine SMS'en mehr schicken, denn ich bin seit gestern Nacht per Natel nicht mehr zu erreichen. Und wenn ich euch einen guten Tipp geben darf: Lasst euer Natel nicht im Zug offen liegen, wenn ihr schlaft...</p>

<p>Et encore pour les francophones: Je ne serais plus atteignable sur mon portable à partir de tout de suite, comme il a été volée hier dans le train. Forsément je ne le serais plus jusqu'à l'arrivée du nouveau iPhone. Petit conseil: soyez vigilant quand vous dormez en train!</p>
]]></description>
         <link>http://www.level0.ch/mt/2008/06/good_bye_natel.html</link>
         <guid>http://www.level0.ch/mt/2008/06/good_bye_natel.html</guid>
         <category>life outside computers</category>
         <pubDate>Wed, 18 Jun 2008 16:22:58 +0100</pubDate>
      </item>
      
      <item>
         <title>Pseudokosomopolitik</title>
         <description><![CDATA[<p>Eines meiner Lieblingszitate, frisch ausgegraben:</p>

<div style="background:#000096;color:#fff;padding:10px"> 
Die Unterwanderung der deutschen Sprache durch Email und Konsorten ist mehr als nur ein pseudokosmopolitisches Imponiergefasel ahnungsloser Zeitgeistjogger!
</div>

<p>von <a href="http://de.wikipedia.org/wiki/Walter_Krämer_%28Ökonom%29">Walter Krämer</a></p>

<p>Nun, der Vollständigkeit halber muss ich den zweiten Teil auch noch anfügen, obwohl der bei weitem nicht mehr so witzig ist: <br />
Es ist der Massenselbstmord einer Wörter- und Regelgemeinschaft namens deutsche Sprache.</p>
]]></description>
         <link>http://www.level0.ch/mt/2008/06/pseudokosomopolitik.html</link>
         <guid>http://www.level0.ch/mt/2008/06/pseudokosomopolitik.html</guid>
         <category>unsorted</category>
         <pubDate>Wed, 11 Jun 2008 00:21:12 +0100</pubDate>
      </item>
      
      <item>
         <title>Quicktime &amp; Subtitles: get Perian!</title>
         <description><![CDATA[<div style="color:#ddd; width:128px; float:left; margin-right:10px"><a href="http://perian.org"><img alt="Perian icon" src="/mt/img/Perian_icon.png" width="128px"/></a>&copy; Perian Project</div>

<p>What I was not aware of... I installed <a href="http://perian.org">Perian</a> some time ago, and it sat in my System Preferences, quietly doing its job. So, all of the behaviour described in the <a href="/mt/2008/05/quicktime-subtitles.html">previous post</a> apply only if you have Perian installed. Thanx to <a href="http://caillou.ch/">caillou</a> for the hint.</p>

<p>Nevertheless MicroDVD (<code>.sub</code>) formatted subtitles will not work in Quicktime even if it's QT on Perian.</p>

<p>Perian is a great tool every Mac user should install. It doesn't change the way Quicktime looks, behaves, no warnings, no hassle with updates, completely transparent. But it allows you to watch a number of formats which are not supported by QT out of the box. </p>

<p>Summary: no troubles, only benefits - <a href="http://perian.org/#download">get it!</a></p>
]]></description>
         <link>http://www.level0.ch/mt/2008/05/quicktime_subtitles_get_perian.html</link>
         <guid>http://www.level0.ch/mt/2008/05/quicktime_subtitles_get_perian.html</guid>
         <category>mac os x</category>
         <pubDate>Mon, 26 May 2008 22:48:06 +0100</pubDate>
      </item>
      
   </channel>
</rss>
