<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet href="/blog/templates/default/atom.css" type="text/css" ?>

<feed 
   xmlns="http://www.w3.org/2005/Atom"
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:admin="http://webns.net/mvcb/"
   xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
   xmlns:wfw="http://wellformedweb.org/CommentAPI/">
    <link href="http://www.strompost.ch/blog/feeds/atom.xml" rel="self" title="blog@strompost" type="application/atom+xml" />
    <link href="http://www.strompost.ch/blog/"                        rel="alternate"    title="blog@strompost" type="text/html" />
    <link href="http://www.strompost.ch/blog/rss.php?version=2.0"     rel="alternate"    title="blog@strompost" type="application/rss+xml" />
    <title type="html">blog@strompost</title>
    <subtitle type="html">life, the universe and everything</subtitle>
    <icon>http://www.strompost.ch/blog/templates/default/img/s9y_banner_small.png</icon>
    <id>http://www.strompost.ch/blog/</id>
    <updated>2010-01-29T23:36:34Z</updated>
    <generator uri="http://www.s9y.org/" version="1.3.1">Serendipity 1.3.1 - http://www.s9y.org/</generator>
    <dc:language>en</dc:language>

    <entry>
        <link href="http://www.strompost.ch/blog/archives/37-TimeMachine-Disk-switch-in-Snow-Leopard.html" rel="alternate" title="TimeMachine Disk switch in Snow Leopard" />
        <author>
            <name>Adrian</name>
                    </author>
    
        <published>2010-01-29T23:36:34Z</published>
        <updated>2010-01-29T23:36:34Z</updated>
        <wfw:comment>http://www.strompost.ch/blog/wfwcomment.php?cid=37</wfw:comment>
    
        <slash:comments>0</slash:comments>
        <wfw:commentRss>http://www.strompost.ch/blog/rss.php?version=atom1.0&amp;type=comments&amp;cid=37</wfw:commentRss>
    
            <category scheme="http://www.strompost.ch/blog/categories/1-nix-zeug" label="*nix zeug" term="*nix zeug" />
    
        <id>http://www.strompost.ch/blog/archives/37-guid.html</id>
        <title type="html">TimeMachine Disk switch in Snow Leopard</title>
        <content type="xhtml" xml:base="http://www.strompost.ch/blog/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                Da ich sowohl im BÃ¼ro als auch zu Hause eine Backup-Harddisk fÃ¼r TimeMachine Backups habe, wollte ich eine einfache (sprich automatische) LÃ¶sung um zwischen den beiden Harddisks umzuschalten. Chregu hat vor einiger Zeit bereits eine <a href="http://www.strompost.ch/blog/exit.php?url_id=67&amp;entry_id=37"  onmouseover="window.status='http://blog.liip.ch/archive/2009/01/20/automatically-switching-between-different-time-machine-disks.html';return true;" onmouseout="window.status='';return true;" title="TimeMachine disks automatisch umschalten">LÃ¶sung</a> fÃ¼r das Problem gefunden. Allerdings hat diese LÃ¶sung unter Snow Leopard bei mir nicht funktioniert. Der Hauptunterschied scheint zu sein, dass neben dem BackupAlias nun auch noch die DestinationVolumeUUID gesetzt werden muss.<br />
Da ich zudem nicht zwei Shell-Skripte fÃ¼r dieselbe Aufgabe wollte, habe ich das alles in ein Skript gepackt:<br />
<br />
tmdiskswitch.sh<br />
<div class="bash geshi" style="text-align: left"><br /><span style="color: #666666; font-style: italic;">#!/bin/sh</span><br /><br /><span style="color: #666666; font-style: italic;"># home backup</span><br /><span style="color: #007800;">DISK_HOME_ALIAS</span>=<span style="color: #ff0000;">'&lt;00000000 .... 0000&gt;'</span><br /><span style="color: #007800;">DISK_HOME_UUID</span>=<span style="color: #ff0000;">'&quot;DE5435B1-...&quot;'</span><br /><span style="color: #666666; font-style: italic;"># work backup</span><br /><span style="color: #007800;">DISK_WORK_ALIAS</span>=<span style="color: #ff0000;">'&lt;00000000 .... 0000&gt;'</span><br /><span style="color: #007800;">DISK_WORK_UUID</span>=<span style="color: #ff0000;">'&quot;B1405E27-...&quot;'</span><br /><br /><span style="color: #000000; font-weight: bold;">if</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span> <span style="color: #660033;">-z</span> <span style="color: #ff0000;">&quot;$1&quot;</span> <span style="color: #7a0874; font-weight: bold;">&#93;</span><br /><span style="color: #000000; font-weight: bold;">then</span><br />&#160; &#160; <span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;usage: $0 &lt;environmnet&gt;&quot;</span><br />&#160; &#160; <span style="color: #7a0874; font-weight: bold;">exit</span> <span style="color: #000000;">1</span><br /><span style="color: #000000; font-weight: bold;">fi</span><br /><br /><span style="color: #000000; font-weight: bold;">case</span> $<span style="color: #000000;">1</span> <span style="color: #000000; font-weight: bold;">in</span><br />&#160; &#160; home<span style="color: #7a0874; font-weight: bold;">&#41;</span><br />&#160; &#160; <span style="color: #007800;">DISKALIAS</span>=<span style="color: #007800;">$DISK_HOME_ALIAS</span><br />&#160; &#160; <span style="color: #007800;">DISKUUID</span>=<span style="color: #007800;">$DISK_HOME_UUID</span><br />&#160; &#160; <span style="color: #000000; font-weight: bold;">;;</span><br /><br />&#160; &#160; work<span style="color: #7a0874; font-weight: bold;">&#41;</span><br />&#160; &#160; <span style="color: #007800;">DISKALIAS</span>=<span style="color: #007800;">$DISK_WORK_ALIAS</span><br />&#160; &#160; <span style="color: #007800;">DISKUUID</span>=<span style="color: #007800;">$DISK_WORK_UUID</span><br />&#160; &#160; <span style="color: #000000; font-weight: bold;">;;</span><br /><br />&#160; &#160; <span style="color: #000000; font-weight: bold;">*</span><span style="color: #7a0874; font-weight: bold;">&#41;</span><br />&#160; &#160; <span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;unknown environment!&quot;</span><br />&#160; &#160; <span style="color: #7a0874; font-weight: bold;">exit</span> <span style="color: #000000;">1</span><br />&#160; &#160; <span style="color: #000000; font-weight: bold;">;;</span><br /><span style="color: #000000; font-weight: bold;">esac</span><br /><br />defaults <span style="color: #c20cb9; font-weight: bold;">write</span> <span style="color: #000000; font-weight: bold;">/</span>Library<span style="color: #000000; font-weight: bold;">/</span>Preferences<span style="color: #000000; font-weight: bold;">/</span>com.apple.TimeMachine BackupAlias <span style="color: #ff0000;">&quot;<span style="color: #007800;">$DISKALIAS</span>&quot;</span><br />defaults <span style="color: #c20cb9; font-weight: bold;">write</span> <span style="color: #000000; font-weight: bold;">/</span>Library<span style="color: #000000; font-weight: bold;">/</span>Preferences<span style="color: #000000; font-weight: bold;">/</span>com.apple.TimeMachine DestinationVolumeUUID <span style="color: #007800;">$DISKUUID</span><br /><br />&#160;</div><br />
<br />
Vorgehen:<br />
Um BackupAlias und DestinationVolumeUUID herauszufinden muss man die jeweilige HD als Backup-HD in TimeMachine definieren. Danach die folgenden Befehle im Terminal ausfÃ¼hren:<br />
<br />
<div class="bash geshi" style="text-align: left"><br />defaults <span style="color: #c20cb9; font-weight: bold;">read</span> <span style="color: #000000; font-weight: bold;">/</span>Library<span style="color: #000000; font-weight: bold;">/</span>Preferences<span style="color: #000000; font-weight: bold;">/</span>com.apple.TimeMachine BackupAlias<br />defaults <span style="color: #c20cb9; font-weight: bold;">read</span> <span style="color: #000000; font-weight: bold;">/</span>Library<span style="color: #000000; font-weight: bold;">/</span>Preferences<span style="color: #000000; font-weight: bold;">/</span>com.apple.TimeMachine DestinationVolumeUUID<br />&#160;</div><br />
<br />
Die Ausgabe des ersten Befehls muss im obenstehenden Skript eingetragen werden (alles zwischen den einfachen AnfÃ¼hrungszeichen muss ersetzt werden mit der Ausgabe):<br />
<div class="bash geshi" style="text-align: left"><br /><span style="color: #007800;">DISK_HOME_ALIAS</span>=<span style="color: #ff0000;">'&lt;00000000 .... 0000&gt;'</span><br />&#160;</div><br />
<br />
bzw. <br />
<div class="bash geshi" style="text-align: left"><br /><span style="color: #007800;">DISK_WORK_ALIAS</span>=<span style="color: #ff0000;">'&lt;00000000 .... 0000&gt;'</span><br />&#160;</div><br />
<br />
FÃ¼r den zweiten Befehl (alles zwischen den doppelten AnfÃ¼hrungszeichen muss mit der Ausgabe ersetzt werden):<br />
<div class="bash geshi" style="text-align: left"><br /><span style="color: #007800;">DISK_HOME_UUID</span>=<span style="color: #ff0000;">'&quot;DE5435B1-...&quot;'</span><br />&#160;</div><br />
<br />
bzw.<br />
<br />
<div class="bash geshi" style="text-align: left"><br /><span style="color: #007800;">DISK_WORK_UUID</span>=<span style="color: #ff0000;">'&quot;B1405E27-...&quot;'</span><br />&#160;</div><br />
<br />
Das Skript kann in den Ordner 'bin' im Home-Verzeichnis abgelegt werden. Das Skript sollte zudem noch ausfÃ¼hrbar gemacht werden:<br />
<br />
<div class="bash geshi" style="text-align: left"><br /><span style="color: #c20cb9; font-weight: bold;">chmod</span> u+x bin<span style="color: #000000; font-weight: bold;">/</span>tmdiskswitch.sh<br />&#160;</div><br />
<br />
Danach muss man in <a href="http://www.strompost.ch/blog/exit.php?url_id=68&amp;entry_id=37"  onmouseover="window.status='http://www.symonds.id.au/marcopolo/';return true;" onmouseout="window.status='';return true;" title="MarcoPolo">MarcoPolo</a> nur noch die entsprechenden Aktionen konfigurieren.<br />
FÃ¼r das Backup zu Hause:<br />
<!-- s9ymdb:29 --><img class="serendipity_image_center" width="479" height="184" style="border: 0px; padding-left: 5px; padding-right: 5px;" src="http://www.strompost.ch/blog/uploads/MarcoPolo_setting1.png" alt="" /><br />
<br />
FÃ¼r das Backup im BÃ¼ro:<br />
<!-- s9ymdb:30 --><img class="serendipity_image_center" width="472" height="187" style="border: 0px; padding-left: 5px; padding-right: 5px;" src="http://www.strompost.ch/blog/uploads/MarcoPolo_setting2.png" alt="" /><br />
<br />
Danach wechselt MarcoPolo automatisch je nach Umgebung die Backup-HD.<br />
<br />
Hinweis:<br />
Ich Ã¼bernehme keinerlei Verantwortung fÃ¼r SchÃ¤den die durch die Verwendung dieses Skriptes entstehen. Die Verwendung geschieht auf eigene Gefahr. 
            </div>
        </content>
        
    </entry>
    <entry>
        <link href="http://www.strompost.ch/blog/archives/36-Fileserver-mit-FreeBSD-und-ZFS.html" rel="alternate" title="Fileserver mit FreeBSD und ZFS" />
        <author>
            <name>Adrian</name>
                    </author>
    
        <published>2009-12-06T22:00:00Z</published>
        <updated>2009-12-06T22:00:00Z</updated>
        <wfw:comment>http://www.strompost.ch/blog/wfwcomment.php?cid=36</wfw:comment>
    
        <slash:comments>0</slash:comments>
        <wfw:commentRss>http://www.strompost.ch/blog/rss.php?version=atom1.0&amp;type=comments&amp;cid=36</wfw:commentRss>
    
            <category scheme="http://www.strompost.ch/blog/categories/1-nix-zeug" label="*nix zeug" term="*nix zeug" />
            <category scheme="http://www.strompost.ch/blog/categories/12-development" label="development" term="development" />
    
        <id>http://www.strompost.ch/blog/archives/36-guid.html</id>
        <title type="html">Fileserver mit FreeBSD und ZFS</title>
        <content type="xhtml" xml:base="http://www.strompost.ch/blog/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                Hardware:<br />
<ul><br />
<li>Intel D945GCLF2</li><br />
<li>2 x Samsung HM320JI 320GB 2.5" HDD</li><br />
</ul><br />
Installation von der FreeBSD 8.0 DVD<br />
Ressourcen:<br />
[1] <a href="http://www.strompost.ch/blog/exit.php?url_id=65&amp;entry_id=36"  onmouseover="window.status='http://www.chruetertee.ch/blog/archive/2009/07/29/freebsd-nur-auf-zfs-installieren.html';return true;" onmouseout="window.status='';return true;" title="FreeBSD nur auf ZFS installieren">http://www.chruetertee.ch/blog/archive/2009/07/29/freebsd-nur-auf-zfs-installieren.html</a><br />
[2] <a href="http://www.strompost.ch/blog/exit.php?url_id=66&amp;entry_id=36"  onmouseover="window.status='http://rhyous.com/2009/12/01/how-to-install-freebsd-8-0-using-only-zfs-partitions/';return true;" onmouseout="window.status='';return true;" title="How to install FreeBSD 8.0 using only zfs partitions">http://rhyous.com/2009/12/01/how-to-install-freebsd-8-0-using-only-zfs-partitions/</a><br />
<br />
Ein erster Versuch nach der Anleitung von [1] schlug leider fehl. Nach eingehender Nachforschung bin ich auf den Hinweis gestossen, dass das BIOS auf dem verwendeten Motherboard offenbar nicht von Festplatten mit GPT booten kann. Im zweiten Anlauf hab ich daher eine MBR-Partitionstabelle verwendet. <br /><a href="http://www.strompost.ch/blog/archives/36-Fileserver-mit-FreeBSD-und-ZFS.html#extended">Continue reading "Fileserver mit FreeBSD und ZFS"</a>
            </div>
        </content>
        
    </entry>
    <entry>
        <link href="http://www.strompost.ch/blog/archives/35-Verdict-from-the-Sorting-Hat.html" rel="alternate" title="Verdict from the Sorting Hat" />
        <author>
            <name>Adrian</name>
                    </author>
    
        <published>2009-10-07T19:03:00Z</published>
        <updated>2009-10-09T00:22:35Z</updated>
        <wfw:comment>http://www.strompost.ch/blog/wfwcomment.php?cid=35</wfw:comment>
    
        <slash:comments>1</slash:comments>
        <wfw:commentRss>http://www.strompost.ch/blog/rss.php?version=atom1.0&amp;type=comments&amp;cid=35</wfw:commentRss>
    
            <category scheme="http://www.strompost.ch/blog/categories/11-internet" label="internet" term="internet" />
            <category scheme="http://www.strompost.ch/blog/categories/8-kurioses-und-unglaubliches" label="kurioses und unglaubliches" term="kurioses und unglaubliches" />
            <category scheme="http://www.strompost.ch/blog/categories/2-vermischtes" label="vermischtes" term="vermischtes" />
    
        <id>http://www.strompost.ch/blog/archives/35-guid.html</id>
        <title type="html">Verdict from the Sorting Hat</title>
        <content type="xhtml" xml:base="http://www.strompost.ch/blog/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                <p style="font-size:8pt;"><a href="http://www.strompost.ch/blog/exit.php?url_id=64&amp;entry_id=35" title="http://www.thealmightyguru.com/Reviews/HarryPotter/Docs/Quiz-House.html"  onmouseover="window.status='http://www.thealmightyguru.com/Reviews/HarryPotter/Docs/Quiz-House.html';return true;" onmouseout="window.status='';return true;"><img src="http://www.thealmightyguru.com/Reviews/HarryPotter/Docs/Quizzes/HP-Ravenclaw.jpg" style="border:none; width:256px; height106px;" title="Ravenclaw"></a><br /><a href="http://www.strompost.ch/blog/exit.php?url_id=64&amp;entry_id=35" title="http://www.thealmightyguru.com/Reviews/HarryPotter/Docs/Quiz-House.html"  onmouseover="window.status='http://www.thealmightyguru.com/Reviews/HarryPotter/Docs/Quiz-House.html';return true;" onmouseout="window.status='';return true;">Which Hogwarts house will you be sorted into?</a></p> 
            </div>
        </content>
        
    </entry>
    <entry>
        <link href="http://www.strompost.ch/blog/archives/34-Liip-for-Master-of-Swiss-Web!.html" rel="alternate" title="Liip for &quot;Master of Swiss Web&quot;!" />
        <author>
            <name>Adrian</name>
                    </author>
    
        <published>2009-03-07T18:04:00Z</published>
        <updated>2009-03-07T20:39:03Z</updated>
        <wfw:comment>http://www.strompost.ch/blog/wfwcomment.php?cid=34</wfw:comment>
    
        <slash:comments>0</slash:comments>
        <wfw:commentRss>http://www.strompost.ch/blog/rss.php?version=atom1.0&amp;type=comments&amp;cid=34</wfw:commentRss>
    
            <category scheme="http://www.strompost.ch/blog/categories/11-internet" label="internet" term="internet" />
    
        <id>http://www.strompost.ch/blog/archives/34-guid.html</id>
        <title type="html">Liip for &quot;Master of Swiss Web&quot;!</title>
        <content type="xhtml" xml:base="http://www.strompost.ch/blog/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                <a href="http://www.strompost.ch/blog/exit.php?url_id=59&amp;entry_id=34"  onmouseover="window.status='http://vote.liip.ch';return true;" onmouseout="window.status='';return true;" title="liip ag">Liip</a> ist mit <a href="http://www.strompost.ch/blog/exit.php?url_id=54&amp;entry_id=34"  onmouseover="window.status='http://liip.to/gottago';return true;" onmouseout="window.status='';return true;" title="gottago">Gottago</a> (im iTunes Store <a href="http://www.strompost.ch/blog/exit.php?url_id=62&amp;entry_id=34"  onmouseover="window.status='http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=285851523&amp;mt=8';return true;" onmouseout="window.status='';return true;" title="Gottago aka Transport im iTunes Store">'Transport'</a>) fÃ¼r den "Master of Swiss Web 2009" (<a href="http://www.strompost.ch/blog/exit.php?url_id=56&amp;entry_id=34"  onmouseover="window.status='http://www.bestofswissweb.ch';return true;" onmouseout="window.status='';return true;" title="Best of Swiss Web">Best of Swiss Web</a>) nominiert. Deshalb sofort <a href="http://www.strompost.ch/blog/exit.php?url_id=57&amp;entry_id=34"  onmouseover="window.status='http://www.netzwoche.ch/BestOfSwissWeb/2009/BestOfSwissWebVote.aspx';return true;" onmouseout="window.status='';return true;" title="Vote for Best of Swiss Web">hingehen</a> und fÃ¼r Gottago stimmen! Um abstimmen zu kÃ¶nnen, muss man Abonnent/in des Netzwochetickers sein. Einfach <a href="http://www.strompost.ch/blog/exit.php?url_id=58&amp;entry_id=34"  onmouseover="window.status='http://netzwoche.ch/User/RegisterUser.aspx';return true;" onmouseout="window.status='';return true;" title="Netzticker Registrierung">registrieren</a> und abstimmen. Sollte Liip gewinnen, dann gibt's natÃ¼rliche eine Siegesfeier, zu der alle Supporter herzlich eingeladen sind <img src="http://www.strompost.ch/blog/templates/default/img/emoticons/smile.png" alt=":-)" style="display: inline; vertical-align: bottom;" class="emoticon" /><br />
<br />
Mehr Infos unter <a href="http://www.strompost.ch/blog/exit.php?url_id=59&amp;entry_id=34"  onmouseover="window.status='http://vote.liip.ch';return true;" onmouseout="window.status='';return true;" title="vote for liip">vote.liip.ch</a><br />
<br />
 
            </div>
        </content>
        
    </entry>
    <entry>
        <link href="http://www.strompost.ch/blog/archives/32-Google-Suche-nun-kostenpflichtig.html" rel="alternate" title="Google-Suche nun kostenpflichtig?" />
        <author>
            <name>Adrian</name>
                    </author>
    
        <published>2009-01-31T15:45:00Z</published>
        <updated>2009-01-31T15:45:00Z</updated>
        <wfw:comment>http://www.strompost.ch/blog/wfwcomment.php?cid=32</wfw:comment>
    
        <slash:comments>0</slash:comments>
        <wfw:commentRss>http://www.strompost.ch/blog/rss.php?version=atom1.0&amp;type=comments&amp;cid=32</wfw:commentRss>
    
            <category scheme="http://www.strompost.ch/blog/categories/11-internet" label="internet" term="internet" />
    
        <id>http://www.strompost.ch/blog/archives/32-guid.html</id>
        <title type="html">Google-Suche nun kostenpflichtig?</title>
        <content type="xhtml" xml:base="http://www.strompost.ch/blog/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                Eine ganz unverfÃ¤ngliche Google-Suche:<br />
<!-- s9ymdb:27 --><img class="serendipity_image_center" width="649" height="492" style="border: 0px; padding-left: 5px; padding-right: 5px;" src="http://www.strompost.ch/blog/uploads/google1.png" alt="" /><br />
<br />
Ein Klick auf das erste Suchresultat ergab erst mal eine Warnung von Google: "Diese Seite kann ihren Computer beschÃ¤digen" WTF??<br />
<br />
Bei einem weiteren Versuch kam dann nur noch folgende Meldung:<br />
<!-- s9ymdb:28 --><img class="serendipity_image_center" width="1090" height="267" style="border: 0px; padding-left: 5px; padding-right: 5px;" src="http://www.strompost.ch/blog/uploads/google2.png" alt="" /><br />
<br />
Ist die Wirtschaftskrise nun bei Google angelangt? Sind Suchresultate nun kostenpflichtig? Einen Paypal-Link konnte ich allerdings nicht finden.<br />
<br />
Vermutlich war aber bloss ein Google-Mitarbeiter etwas Ã¼bereifrig. Unterdessen funktioniert jedenfalls alles wieder normal.<br />
Der Link <a href="http://www.strompost.ch/blog/exit.php?url_id=52&amp;entry_id=32"  onmouseover="window.status='http://www.google.ch/interstitial?url=http://www.unicef.ch/';return true;" onmouseout="window.status='';return true;" title="google">http://www.google.ch/interstitial?url=http://www.unicef.ch/</a> gibt jedoch immer noch ein 'Forbidden'. Google kocht da offenbar an einer Malware-Protection. 
            </div>
        </content>
        
    </entry>
    <entry>
        <link href="http://www.strompost.ch/blog/archives/31-upgrade-oder-downgrade.html" rel="alternate" title="upgrade oder downgrade?" />
        <author>
            <name>Adrian</name>
                    </author>
    
        <published>2008-10-31T22:32:17Z</published>
        <updated>2008-11-01T02:04:04Z</updated>
        <wfw:comment>http://www.strompost.ch/blog/wfwcomment.php?cid=31</wfw:comment>
    
        <slash:comments>1</slash:comments>
        <wfw:commentRss>http://www.strompost.ch/blog/rss.php?version=atom1.0&amp;type=comments&amp;cid=31</wfw:commentRss>
    
            <category scheme="http://www.strompost.ch/blog/categories/8-kurioses-und-unglaubliches" label="kurioses und unglaubliches" term="kurioses und unglaubliches" />
            <category scheme="http://www.strompost.ch/blog/categories/2-vermischtes" label="vermischtes" term="vermischtes" />
    
        <id>http://www.strompost.ch/blog/archives/31-guid.html</id>
        <title type="html">upgrade oder downgrade?</title>
        <content type="xhtml" xml:base="http://www.strompost.ch/blog/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                <!-- s9ymdb:26 --><img class="serendipity_image_center" width="640" height="480" style="border: 0px; padding-left: 5px; padding-right: 5px;" src="http://www.strompost.ch/blog/uploads/DSC00462.JPG" alt="" /> 
            </div>
        </content>
        
    </entry>
    <entry>
        <link href="http://www.strompost.ch/blog/archives/30-SBB-Erfolgsmeldung.html" rel="alternate" title="SBB-Erfolgsmeldung" />
        <author>
            <name>Adrian</name>
                    </author>
    
        <published>2008-10-29T20:49:38Z</published>
        <updated>2008-10-30T08:19:25Z</updated>
        <wfw:comment>http://www.strompost.ch/blog/wfwcomment.php?cid=30</wfw:comment>
    
        <slash:comments>1</slash:comments>
        <wfw:commentRss>http://www.strompost.ch/blog/rss.php?version=atom1.0&amp;type=comments&amp;cid=30</wfw:commentRss>
    
            <category scheme="http://www.strompost.ch/blog/categories/8-kurioses-und-unglaubliches" label="kurioses und unglaubliches" term="kurioses und unglaubliches" />
            <category scheme="http://www.strompost.ch/blog/categories/2-vermischtes" label="vermischtes" term="vermischtes" />
    
        <id>http://www.strompost.ch/blog/archives/30-guid.html</id>
        <title type="html">SBB-Erfolgsmeldung</title>
        <content type="xhtml" xml:base="http://www.strompost.ch/blog/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                <blockquote>*dingdong* Liebe FahrgÃ¤ste, wir kommen pÃ¼nktlich in Bern an.</blockquote><br />
<br />
Die SBB ist offenbar schon mit wenig zufrieden. Fairerweise muss man allerdings sagen, dass das auf der Strecke Bern-Fribourg tatsÃ¤chlich schon an ein Wunder grenzt ... 
            </div>
        </content>
        
    </entry>
    <entry>
        <link href="http://www.strompost.ch/blog/archives/29-Colorpicker-in-OS-X.html" rel="alternate" title="Colorpicker in OS X" />
        <author>
            <name>Adrian</name>
                    </author>
    
        <published>2008-06-20T14:42:08Z</published>
        <updated>2008-06-22T10:48:32Z</updated>
        <wfw:comment>http://www.strompost.ch/blog/wfwcomment.php?cid=29</wfw:comment>
    
        <slash:comments>1</slash:comments>
        <wfw:commentRss>http://www.strompost.ch/blog/rss.php?version=atom1.0&amp;type=comments&amp;cid=29</wfw:commentRss>
    
            <category scheme="http://www.strompost.ch/blog/categories/12-development" label="development" term="development" />
            <category scheme="http://www.strompost.ch/blog/categories/11-internet" label="internet" term="internet" />
    
        <id>http://www.strompost.ch/blog/archives/29-guid.html</id>
        <title type="html">Colorpicker in OS X</title>
        <content type="xhtml" xml:base="http://www.strompost.ch/blog/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                Nachdem das <a href="http://www.strompost.ch/blog/exit.php?url_id=50&amp;entry_id=29"  onmouseover="window.status='http://www.iosart.com/firefox/colorzilla/';return true;" onmouseout="window.status='';return true;" title="ColorZilla">ColorZilla</a> Add-on nach dem Update auf <a href="http://www.strompost.ch/blog/exit.php?url_id=51&amp;entry_id=29"  onmouseover="window.status='http://www.getfirefox.com';return true;" onmouseout="window.status='';return true;" title="get firefox">Firefox 3</a> (vorläufig) nicht mehr funktioniert hat, bin ich auf der Suche nach einem Ersatz auf das OSX-eigene Tool 'DigitalColor Farbmesser' (in Applications->Utilities) gestossen. Ganz praktisch, wenn man schnell den HEX-Wert einer Farbe braucht.  
            </div>
        </content>
        
    </entry>
    <entry>
        <link href="http://www.strompost.ch/blog/archives/28-oranger-gehts-nicht-mehr-....html" rel="alternate" title="oranger geht's nicht mehr ..." />
        <author>
            <name>Adrian</name>
                    </author>
    
        <published>2008-06-09T18:02:00Z</published>
        <updated>2008-06-09T18:02:00Z</updated>
        <wfw:comment>http://www.strompost.ch/blog/wfwcomment.php?cid=28</wfw:comment>
    
        <slash:comments>0</slash:comments>
        <wfw:commentRss>http://www.strompost.ch/blog/rss.php?version=atom1.0&amp;type=comments&amp;cid=28</wfw:commentRss>
    
            <category scheme="http://www.strompost.ch/blog/categories/6-dinge,-die-die-welt-nicht-braucht" label="dinge, die die welt nicht braucht" term="dinge, die die welt nicht braucht" />
            <category scheme="http://www.strompost.ch/blog/categories/2-vermischtes" label="vermischtes" term="vermischtes" />
    
        <id>http://www.strompost.ch/blog/archives/28-guid.html</id>
        <title type="html">oranger geht's nicht mehr ...</title>
        <content type="xhtml" xml:base="http://www.strompost.ch/blog/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                <!-- s9ymdb:25 --><img class="serendipity_image_center" width="640" height="480" style="border: 0px; padding-left: 5px; padding-right: 5px;" src="http://www.strompost.ch/blog/uploads/DSC00429.JPG" alt="" /> 
            </div>
        </content>
        
    </entry>
    <entry>
        <link href="http://www.strompost.ch/blog/archives/27-noch-mehr-orange-....html" rel="alternate" title="noch mehr orange ..." />
        <author>
            <name>Adrian</name>
                    </author>
    
        <published>2008-06-09T15:51:21Z</published>
        <updated>2008-06-09T15:51:21Z</updated>
        <wfw:comment>http://www.strompost.ch/blog/wfwcomment.php?cid=27</wfw:comment>
    
        <slash:comments>0</slash:comments>
        <wfw:commentRss>http://www.strompost.ch/blog/rss.php?version=atom1.0&amp;type=comments&amp;cid=27</wfw:commentRss>
    
            <category scheme="http://www.strompost.ch/blog/categories/6-dinge,-die-die-welt-nicht-braucht" label="dinge, die die welt nicht braucht" term="dinge, die die welt nicht braucht" />
            <category scheme="http://www.strompost.ch/blog/categories/2-vermischtes" label="vermischtes" term="vermischtes" />
    
        <id>http://www.strompost.ch/blog/archives/27-guid.html</id>
        <title type="html">noch mehr orange ...</title>
        <content type="xhtml" xml:base="http://www.strompost.ch/blog/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                <!-- s9ymdb:24 --><img class="serendipity_image_center" width="640" height="480" style="border: 0px; padding-left: 5px; padding-right: 5px;" src="http://www.strompost.ch/blog/uploads/DSC00428.JPG" alt="" /><br />
<br />
Der Ton dazu: "ORANJE, ORANJE, ORANJE ... etc."  
            </div>
        </content>
        
    </entry>
    <entry>
        <link href="http://www.strompost.ch/blog/archives/26-Bern-ist-orange.html" rel="alternate" title="Bern ist orange" />
        <author>
            <name>Adrian</name>
                    </author>
    
        <published>2008-06-09T13:53:22Z</published>
        <updated>2008-06-09T13:53:22Z</updated>
        <wfw:comment>http://www.strompost.ch/blog/wfwcomment.php?cid=26</wfw:comment>
    
        <slash:comments>0</slash:comments>
        <wfw:commentRss>http://www.strompost.ch/blog/rss.php?version=atom1.0&amp;type=comments&amp;cid=26</wfw:commentRss>
    
            <category scheme="http://www.strompost.ch/blog/categories/6-dinge,-die-die-welt-nicht-braucht" label="dinge, die die welt nicht braucht" term="dinge, die die welt nicht braucht" />
            <category scheme="http://www.strompost.ch/blog/categories/2-vermischtes" label="vermischtes" term="vermischtes" />
    
        <id>http://www.strompost.ch/blog/archives/26-guid.html</id>
        <title type="html">Bern ist orange</title>
        <content type="xhtml" xml:base="http://www.strompost.ch/blog/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                <!-- s9ymdb:23 --><img class="serendipity_image_center" width="640" height="480" style="border: 0px; padding-left: 5px; padding-right: 5px;" src="http://www.strompost.ch/blog/uploads/DSC00427.JPG" alt="" /><br />
noch drei Wochen ... 
            </div>
        </content>
        
    </entry>
    <entry>
        <link href="http://www.strompost.ch/blog/archives/25-Frbt-sich-....html" rel="alternate" title="Früh übt sich ..." />
        <author>
            <name>Adrian</name>
                    </author>
    
        <published>2008-05-13T10:04:11Z</published>
        <updated>2008-05-13T10:04:11Z</updated>
        <wfw:comment>http://www.strompost.ch/blog/wfwcomment.php?cid=25</wfw:comment>
    
        <slash:comments>0</slash:comments>
        <wfw:commentRss>http://www.strompost.ch/blog/rss.php?version=atom1.0&amp;type=comments&amp;cid=25</wfw:commentRss>
    
            <category scheme="http://www.strompost.ch/blog/categories/4-Familie" label="Familie" term="Familie" />
    
        <id>http://www.strompost.ch/blog/archives/25-guid.html</id>
        <title type="html">Früh übt sich ...</title>
        <content type="xhtml" xml:base="http://www.strompost.ch/blog/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                <div class="serendipity_imageComment_left" style="width: 640px"><div class="serendipity_imageComment_img"><!-- s9ymdb:22 --><img class="serendipity_image_left" width="640" height="480"  src="http://www.strompost.ch/blog/uploads/DSC00422.JPG" alt="" /></div><div class="serendipity_imageComment_txt">... wer ein Meister werden will</div></div> 
            </div>
        </content>
        
    </entry>
    <entry>
        <link href="http://www.strompost.ch/blog/archives/24-Der-Himmel-Bern.html" rel="alternate" title="Der Himmel über Bern" />
        <author>
            <name>Adrian</name>
                    </author>
    
        <published>2008-04-27T09:47:59Z</published>
        <updated>2008-04-27T09:47:59Z</updated>
        <wfw:comment>http://www.strompost.ch/blog/wfwcomment.php?cid=24</wfw:comment>
    
        <slash:comments>0</slash:comments>
        <wfw:commentRss>http://www.strompost.ch/blog/rss.php?version=atom1.0&amp;type=comments&amp;cid=24</wfw:commentRss>
    
            <category scheme="http://www.strompost.ch/blog/categories/2-vermischtes" label="vermischtes" term="vermischtes" />
    
        <id>http://www.strompost.ch/blog/archives/24-guid.html</id>
        <title type="html">Der Himmel über Bern</title>
        <content type="xhtml" xml:base="http://www.strompost.ch/blog/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                <img width='486' height='365' border='0' hspace='5' src='http://www.strompost.ch/blog/uploads/dsc00411_crop.jpg' alt='' /> 
            </div>
        </content>
        
    </entry>
    <entry>
        <link href="http://www.strompost.ch/blog/archives/23-cablecom-support.html" rel="alternate" title="cablecom support" />
        <author>
            <name>Adrian</name>
                    </author>
    
        <published>2008-04-25T20:15:07Z</published>
        <updated>2008-04-25T20:15:07Z</updated>
        <wfw:comment>http://www.strompost.ch/blog/wfwcomment.php?cid=23</wfw:comment>
    
        <slash:comments>0</slash:comments>
        <wfw:commentRss>http://www.strompost.ch/blog/rss.php?version=atom1.0&amp;type=comments&amp;cid=23</wfw:commentRss>
    
            <category scheme="http://www.strompost.ch/blog/categories/10-cablecom" label="cablecom" term="cablecom" />
            <category scheme="http://www.strompost.ch/blog/categories/11-internet" label="internet" term="internet" />
    
        <id>http://www.strompost.ch/blog/archives/23-guid.html</id>
        <title type="html">cablecom support</title>
        <content type="xhtml" xml:base="http://www.strompost.ch/blog/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                Die Cablecom ist ein beliebtes bashing-Opfer, aber irgendwie ist das ja auch nicht unverschuldet.<br />
<br />
Ich hatte heute wieder mal das Vergnügen (?), mich mit einem Cablecom-Supporter rumzuschlagen.<br />
Das Problem:<br />
Ein Cablecom-Modem das ein bis zweimal pro Tag die Verbindung verliert (das Ready-Lämpchen erlischt, das Modem hat also keine Verbindung mehr zur Cablecom).<br />
<br />
 <br /><a href="http://www.strompost.ch/blog/archives/23-cablecom-support.html#extended">Continue reading "cablecom support"</a>
            </div>
        </content>
        
    </entry>
    <entry>
        <link href="http://www.strompost.ch/blog/archives/22-Queen-of-the-day.html" rel="alternate" title="Queen of the day" />
        <author>
            <name>Adrian</name>
                    </author>
    
        <published>2008-01-06T19:23:41Z</published>
        <updated>2008-01-06T22:22:58Z</updated>
        <wfw:comment>http://www.strompost.ch/blog/wfwcomment.php?cid=22</wfw:comment>
    
        <slash:comments>2</slash:comments>
        <wfw:commentRss>http://www.strompost.ch/blog/rss.php?version=atom1.0&amp;type=comments&amp;cid=22</wfw:commentRss>
    
            <category scheme="http://www.strompost.ch/blog/categories/4-Familie" label="Familie" term="Familie" />
    
        <id>http://www.strompost.ch/blog/archives/22-guid.html</id>
        <title type="html">Queen of the day</title>
        <content type="xhtml" xml:base="http://www.strompost.ch/blog/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                <img width='400' height='533' border='0' hspace='5' src='http://www.strompost.ch/blog/uploads/IMG_4344.jpg' alt='Queen' /><br /><br /> 
            </div>
        </content>
        
    </entry>

</feed>
