<?xml version="1.0" encoding="utf-8" ?>

<rss version="2.0" 
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:admin="http://webns.net/mvcb/"
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
   xmlns:wfw="http://wellformedweb.org/CommentAPI/"
   xmlns:content="http://purl.org/rss/1.0/modules/content/"
   >
<channel>
    <title>blog@strompost</title>
    <link>http://www.strompost.ch/blog/</link>
    <description>life, the universe and everything</description>
    <dc:language>en</dc:language>
    <generator>Serendipity 1.3.1 - http://www.s9y.org/</generator>
    <pubDate>Fri, 29 Jan 2010 23:36:34 GMT</pubDate>

    <image>
        <url>http://www.strompost.ch/blog/templates/default/img/s9y_banner_small.png</url>
        <title>RSS: blog@strompost - life, the universe and everything</title>
        <link>http://www.strompost.ch/blog/</link>
        <width>100</width>
        <height>21</height>
    </image>

<item>
    <title>TimeMachine Disk switch in Snow Leopard</title>
    <link>http://www.strompost.ch/blog/archives/37-TimeMachine-Disk-switch-in-Snow-Leopard.html</link>
            <category>*nix zeug</category>
    
    <comments>http://www.strompost.ch/blog/archives/37-TimeMachine-Disk-switch-in-Snow-Leopard.html#comments</comments>
    <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=2.0&amp;type=comments&amp;cid=37</wfw:commentRss>
    

    <author>nospam@example.com (Adrian)</author>
    <content:encoded>
    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 &lt;a href=&quot;http://www.strompost.ch/blog/exit.php?url_id=67&amp;amp;entry_id=37&quot;  onmouseover=&quot;window.status=&#039;http://blog.liip.ch/archive/2009/01/20/automatically-switching-between-different-time-machine-disks.html&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot; title=&quot;TimeMachine disks automatisch umschalten&quot;&gt;LÃ¶sung&lt;/a&gt; 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.&lt;br /&gt;
Da ich zudem nicht zwei Shell-Skripte fÃ¼r dieselbe Aufgabe wollte, habe ich das alles in ein Skript gepackt:&lt;br /&gt;
&lt;br /&gt;
tmdiskswitch.sh&lt;br /&gt;
&lt;div class=&quot;bash geshi&quot; style=&quot;text-align: left&quot;&gt;&lt;br /&gt;&lt;span style=&quot;color: #666666; font-style: italic;&quot;&gt;#!/bin/sh&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color: #666666; font-style: italic;&quot;&gt;# home backup&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: #007800;&quot;&gt;DISK_HOME_ALIAS&lt;/span&gt;=&lt;span style=&quot;color: #ff0000;&quot;&gt;&#039;&amp;lt;00000000 .... 0000&amp;gt;&#039;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: #007800;&quot;&gt;DISK_HOME_UUID&lt;/span&gt;=&lt;span style=&quot;color: #ff0000;&quot;&gt;&#039;&amp;quot;DE5435B1-...&amp;quot;&#039;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: #666666; font-style: italic;&quot;&gt;# work backup&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: #007800;&quot;&gt;DISK_WORK_ALIAS&lt;/span&gt;=&lt;span style=&quot;color: #ff0000;&quot;&gt;&#039;&amp;lt;00000000 .... 0000&amp;gt;&#039;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: #007800;&quot;&gt;DISK_WORK_UUID&lt;/span&gt;=&lt;span style=&quot;color: #ff0000;&quot;&gt;&#039;&amp;quot;B1405E27-...&amp;quot;&#039;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;if&lt;/span&gt; &lt;span style=&quot;color: #7a0874; font-weight: bold;&quot;&gt;&amp;#91;&lt;/span&gt; &lt;span style=&quot;color: #660033;&quot;&gt;-z&lt;/span&gt; &lt;span style=&quot;color: #ff0000;&quot;&gt;&amp;quot;$1&amp;quot;&lt;/span&gt; &lt;span style=&quot;color: #7a0874; font-weight: bold;&quot;&gt;&amp;#93;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;then&lt;/span&gt;&lt;br /&gt;&amp;#160; &amp;#160; &lt;span style=&quot;color: #7a0874; font-weight: bold;&quot;&gt;echo&lt;/span&gt; &lt;span style=&quot;color: #ff0000;&quot;&gt;&amp;quot;usage: $0 &amp;lt;environmnet&amp;gt;&amp;quot;&lt;/span&gt;&lt;br /&gt;&amp;#160; &amp;#160; &lt;span style=&quot;color: #7a0874; font-weight: bold;&quot;&gt;exit&lt;/span&gt; &lt;span style=&quot;color: #000000;&quot;&gt;1&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;fi&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;case&lt;/span&gt; $&lt;span style=&quot;color: #000000;&quot;&gt;1&lt;/span&gt; &lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;in&lt;/span&gt;&lt;br /&gt;&amp;#160; &amp;#160; home&lt;span style=&quot;color: #7a0874; font-weight: bold;&quot;&gt;&amp;#41;&lt;/span&gt;&lt;br /&gt;&amp;#160; &amp;#160; &lt;span style=&quot;color: #007800;&quot;&gt;DISKALIAS&lt;/span&gt;=&lt;span style=&quot;color: #007800;&quot;&gt;$DISK_HOME_ALIAS&lt;/span&gt;&lt;br /&gt;&amp;#160; &amp;#160; &lt;span style=&quot;color: #007800;&quot;&gt;DISKUUID&lt;/span&gt;=&lt;span style=&quot;color: #007800;&quot;&gt;$DISK_HOME_UUID&lt;/span&gt;&lt;br /&gt;&amp;#160; &amp;#160; &lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;;;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&amp;#160; &amp;#160; work&lt;span style=&quot;color: #7a0874; font-weight: bold;&quot;&gt;&amp;#41;&lt;/span&gt;&lt;br /&gt;&amp;#160; &amp;#160; &lt;span style=&quot;color: #007800;&quot;&gt;DISKALIAS&lt;/span&gt;=&lt;span style=&quot;color: #007800;&quot;&gt;$DISK_WORK_ALIAS&lt;/span&gt;&lt;br /&gt;&amp;#160; &amp;#160; &lt;span style=&quot;color: #007800;&quot;&gt;DISKUUID&lt;/span&gt;=&lt;span style=&quot;color: #007800;&quot;&gt;$DISK_WORK_UUID&lt;/span&gt;&lt;br /&gt;&amp;#160; &amp;#160; &lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;;;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&amp;#160; &amp;#160; &lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;*&lt;/span&gt;&lt;span style=&quot;color: #7a0874; font-weight: bold;&quot;&gt;&amp;#41;&lt;/span&gt;&lt;br /&gt;&amp;#160; &amp;#160; &lt;span style=&quot;color: #7a0874; font-weight: bold;&quot;&gt;echo&lt;/span&gt; &lt;span style=&quot;color: #ff0000;&quot;&gt;&amp;quot;unknown environment!&amp;quot;&lt;/span&gt;&lt;br /&gt;&amp;#160; &amp;#160; &lt;span style=&quot;color: #7a0874; font-weight: bold;&quot;&gt;exit&lt;/span&gt; &lt;span style=&quot;color: #000000;&quot;&gt;1&lt;/span&gt;&lt;br /&gt;&amp;#160; &amp;#160; &lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;;;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;esac&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;defaults &lt;span style=&quot;color: #c20cb9; font-weight: bold;&quot;&gt;write&lt;/span&gt; &lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;Library&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;Preferences&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;com.apple.TimeMachine BackupAlias &lt;span style=&quot;color: #ff0000;&quot;&gt;&amp;quot;&lt;span style=&quot;color: #007800;&quot;&gt;$DISKALIAS&lt;/span&gt;&amp;quot;&lt;/span&gt;&lt;br /&gt;defaults &lt;span style=&quot;color: #c20cb9; font-weight: bold;&quot;&gt;write&lt;/span&gt; &lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;Library&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;Preferences&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;com.apple.TimeMachine DestinationVolumeUUID &lt;span style=&quot;color: #007800;&quot;&gt;$DISKUUID&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&amp;#160;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
Vorgehen:&lt;br /&gt;
Um BackupAlias und DestinationVolumeUUID herauszufinden muss man die jeweilige HD als Backup-HD in TimeMachine definieren. Danach die folgenden Befehle im Terminal ausfÃ¼hren:&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;bash geshi&quot; style=&quot;text-align: left&quot;&gt;&lt;br /&gt;defaults &lt;span style=&quot;color: #c20cb9; font-weight: bold;&quot;&gt;read&lt;/span&gt; &lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;Library&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;Preferences&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;com.apple.TimeMachine BackupAlias&lt;br /&gt;defaults &lt;span style=&quot;color: #c20cb9; font-weight: bold;&quot;&gt;read&lt;/span&gt; &lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;Library&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;Preferences&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;com.apple.TimeMachine DestinationVolumeUUID&lt;br /&gt;&amp;#160;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
Die Ausgabe des ersten Befehls muss im obenstehenden Skript eingetragen werden (alles zwischen den einfachen AnfÃ¼hrungszeichen muss ersetzt werden mit der Ausgabe):&lt;br /&gt;
&lt;div class=&quot;bash geshi&quot; style=&quot;text-align: left&quot;&gt;&lt;br /&gt;&lt;span style=&quot;color: #007800;&quot;&gt;DISK_HOME_ALIAS&lt;/span&gt;=&lt;span style=&quot;color: #ff0000;&quot;&gt;&#039;&amp;lt;00000000 .... 0000&amp;gt;&#039;&lt;/span&gt;&lt;br /&gt;&amp;#160;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
bzw. &lt;br /&gt;
&lt;div class=&quot;bash geshi&quot; style=&quot;text-align: left&quot;&gt;&lt;br /&gt;&lt;span style=&quot;color: #007800;&quot;&gt;DISK_WORK_ALIAS&lt;/span&gt;=&lt;span style=&quot;color: #ff0000;&quot;&gt;&#039;&amp;lt;00000000 .... 0000&amp;gt;&#039;&lt;/span&gt;&lt;br /&gt;&amp;#160;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
FÃ¼r den zweiten Befehl (alles zwischen den doppelten AnfÃ¼hrungszeichen muss mit der Ausgabe ersetzt werden):&lt;br /&gt;
&lt;div class=&quot;bash geshi&quot; style=&quot;text-align: left&quot;&gt;&lt;br /&gt;&lt;span style=&quot;color: #007800;&quot;&gt;DISK_HOME_UUID&lt;/span&gt;=&lt;span style=&quot;color: #ff0000;&quot;&gt;&#039;&amp;quot;DE5435B1-...&amp;quot;&#039;&lt;/span&gt;&lt;br /&gt;&amp;#160;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
bzw.&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;bash geshi&quot; style=&quot;text-align: left&quot;&gt;&lt;br /&gt;&lt;span style=&quot;color: #007800;&quot;&gt;DISK_WORK_UUID&lt;/span&gt;=&lt;span style=&quot;color: #ff0000;&quot;&gt;&#039;&amp;quot;B1405E27-...&amp;quot;&#039;&lt;/span&gt;&lt;br /&gt;&amp;#160;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
Das Skript kann in den Ordner &#039;bin&#039; im Home-Verzeichnis abgelegt werden. Das Skript sollte zudem noch ausfÃ¼hrbar gemacht werden:&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;bash geshi&quot; style=&quot;text-align: left&quot;&gt;&lt;br /&gt;&lt;span style=&quot;color: #c20cb9; font-weight: bold;&quot;&gt;chmod&lt;/span&gt; u+x bin&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;tmdiskswitch.sh&lt;br /&gt;&amp;#160;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
Danach muss man in &lt;a href=&quot;http://www.strompost.ch/blog/exit.php?url_id=68&amp;amp;entry_id=37&quot;  onmouseover=&quot;window.status=&#039;http://www.symonds.id.au/marcopolo/&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot; title=&quot;MarcoPolo&quot;&gt;MarcoPolo&lt;/a&gt; nur noch die entsprechenden Aktionen konfigurieren.&lt;br /&gt;
FÃ¼r das Backup zu Hause:&lt;br /&gt;
&lt;!-- s9ymdb:29 --&gt;&lt;img class=&quot;serendipity_image_center&quot; width=&quot;479&quot; height=&quot;184&quot; style=&quot;border: 0px; padding-left: 5px; padding-right: 5px;&quot; src=&quot;http://www.strompost.ch/blog/uploads/MarcoPolo_setting1.png&quot; alt=&quot;&quot; /&gt;&lt;br /&gt;
&lt;br /&gt;
FÃ¼r das Backup im BÃ¼ro:&lt;br /&gt;
&lt;!-- s9ymdb:30 --&gt;&lt;img class=&quot;serendipity_image_center&quot; width=&quot;472&quot; height=&quot;187&quot; style=&quot;border: 0px; padding-left: 5px; padding-right: 5px;&quot; src=&quot;http://www.strompost.ch/blog/uploads/MarcoPolo_setting2.png&quot; alt=&quot;&quot; /&gt;&lt;br /&gt;
&lt;br /&gt;
Danach wechselt MarcoPolo automatisch je nach Umgebung die Backup-HD.&lt;br /&gt;
&lt;br /&gt;
Hinweis:&lt;br /&gt;
Ich Ã¼bernehme keinerlei Verantwortung fÃ¼r SchÃ¤den die durch die Verwendung dieses Skriptes entstehen. Die Verwendung geschieht auf eigene Gefahr. 
    </content:encoded>

    <pubDate>Sat, 30 Jan 2010 00:36:34 +0100</pubDate>
    <guid isPermaLink="false">http://www.strompost.ch/blog/archives/37-guid.html</guid>
    
</item>
<item>
    <title>Fileserver mit FreeBSD und ZFS</title>
    <link>http://www.strompost.ch/blog/archives/36-Fileserver-mit-FreeBSD-und-ZFS.html</link>
            <category>*nix zeug</category>
            <category>development</category>
    
    <comments>http://www.strompost.ch/blog/archives/36-Fileserver-mit-FreeBSD-und-ZFS.html#comments</comments>
    <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=2.0&amp;type=comments&amp;cid=36</wfw:commentRss>
    

    <author>nospam@example.com (Adrian)</author>
    <content:encoded>
    Hardware:&lt;br /&gt;
&lt;ul&gt;&lt;br /&gt;
&lt;li&gt;Intel D945GCLF2&lt;/li&gt;&lt;br /&gt;
&lt;li&gt;2 x Samsung HM320JI 320GB 2.5&quot; HDD&lt;/li&gt;&lt;br /&gt;
&lt;/ul&gt;&lt;br /&gt;
Installation von der FreeBSD 8.0 DVD&lt;br /&gt;
Ressourcen:&lt;br /&gt;
[1] &lt;a href=&quot;http://www.strompost.ch/blog/exit.php?url_id=65&amp;amp;entry_id=36&quot;  onmouseover=&quot;window.status=&#039;http://www.chruetertee.ch/blog/archive/2009/07/29/freebsd-nur-auf-zfs-installieren.html&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot; title=&quot;FreeBSD nur auf ZFS installieren&quot;&gt;http://www.chruetertee.ch/blog/archive/2009/07/29/freebsd-nur-auf-zfs-installieren.html&lt;/a&gt;&lt;br /&gt;
[2] &lt;a href=&quot;http://www.strompost.ch/blog/exit.php?url_id=66&amp;amp;entry_id=36&quot;  onmouseover=&quot;window.status=&#039;http://rhyous.com/2009/12/01/how-to-install-freebsd-8-0-using-only-zfs-partitions/&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot; title=&quot;How to install FreeBSD 8.0 using only zfs partitions&quot;&gt;http://rhyous.com/2009/12/01/how-to-install-freebsd-8-0-using-only-zfs-partitions/&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
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. &lt;br /&gt;&lt;a href=&quot;http://www.strompost.ch/blog/archives/36-Fileserver-mit-FreeBSD-und-ZFS.html#extended&quot;&gt;Continue reading &quot;Fileserver mit FreeBSD und ZFS&quot;&lt;/a&gt;
    </content:encoded>

    <pubDate>Sun, 06 Dec 2009 23:00:00 +0100</pubDate>
    <guid isPermaLink="false">http://www.strompost.ch/blog/archives/36-guid.html</guid>
    
</item>
<item>
    <title>Verdict from the Sorting Hat</title>
    <link>http://www.strompost.ch/blog/archives/35-Verdict-from-the-Sorting-Hat.html</link>
            <category>internet</category>
            <category>kurioses und unglaubliches</category>
            <category>vermischtes</category>
    
    <comments>http://www.strompost.ch/blog/archives/35-Verdict-from-the-Sorting-Hat.html#comments</comments>
    <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=2.0&amp;type=comments&amp;cid=35</wfw:commentRss>
    

    <author>nospam@example.com (Adrian)</author>
    <content:encoded>
    &lt;p style=&quot;font-size:8pt;&quot;&gt;&lt;a href=&quot;http://www.strompost.ch/blog/exit.php?url_id=64&amp;amp;entry_id=35&quot; title=&quot;http://www.thealmightyguru.com/Reviews/HarryPotter/Docs/Quiz-House.html&quot;  onmouseover=&quot;window.status=&#039;http://www.thealmightyguru.com/Reviews/HarryPotter/Docs/Quiz-House.html&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;&lt;img src=&quot;http://www.thealmightyguru.com/Reviews/HarryPotter/Docs/Quizzes/HP-Ravenclaw.jpg&quot; style=&quot;border:none; width:256px; height106px;&quot; title=&quot;Ravenclaw&quot;&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href=&quot;http://www.strompost.ch/blog/exit.php?url_id=64&amp;amp;entry_id=35&quot; title=&quot;http://www.thealmightyguru.com/Reviews/HarryPotter/Docs/Quiz-House.html&quot;  onmouseover=&quot;window.status=&#039;http://www.thealmightyguru.com/Reviews/HarryPotter/Docs/Quiz-House.html&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;Which Hogwarts house will you be sorted into?&lt;/a&gt;&lt;/p&gt; 
    </content:encoded>

    <pubDate>Wed, 07 Oct 2009 21:03:00 +0200</pubDate>
    <guid isPermaLink="false">http://www.strompost.ch/blog/archives/35-guid.html</guid>
    
</item>
<item>
    <title>Liip for &quot;Master of Swiss Web&quot;!</title>
    <link>http://www.strompost.ch/blog/archives/34-Liip-for-Master-of-Swiss-Web!.html</link>
            <category>internet</category>
    
    <comments>http://www.strompost.ch/blog/archives/34-Liip-for-Master-of-Swiss-Web!.html#comments</comments>
    <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=2.0&amp;type=comments&amp;cid=34</wfw:commentRss>
    

    <author>nospam@example.com (Adrian)</author>
    <content:encoded>
    &lt;a href=&quot;http://www.strompost.ch/blog/exit.php?url_id=59&amp;amp;entry_id=34&quot;  onmouseover=&quot;window.status=&#039;http://vote.liip.ch&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot; title=&quot;liip ag&quot;&gt;Liip&lt;/a&gt; ist mit &lt;a href=&quot;http://www.strompost.ch/blog/exit.php?url_id=54&amp;amp;entry_id=34&quot;  onmouseover=&quot;window.status=&#039;http://liip.to/gottago&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot; title=&quot;gottago&quot;&gt;Gottago&lt;/a&gt; (im iTunes Store &lt;a href=&quot;http://www.strompost.ch/blog/exit.php?url_id=62&amp;amp;entry_id=34&quot;  onmouseover=&quot;window.status=&#039;http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=285851523&amp;amp;mt=8&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot; title=&quot;Gottago aka Transport im iTunes Store&quot;&gt;&#039;Transport&#039;&lt;/a&gt;) fÃ¼r den &quot;Master of Swiss Web 2009&quot; (&lt;a href=&quot;http://www.strompost.ch/blog/exit.php?url_id=56&amp;amp;entry_id=34&quot;  onmouseover=&quot;window.status=&#039;http://www.bestofswissweb.ch&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot; title=&quot;Best of Swiss Web&quot;&gt;Best of Swiss Web&lt;/a&gt;) nominiert. Deshalb sofort &lt;a href=&quot;http://www.strompost.ch/blog/exit.php?url_id=57&amp;amp;entry_id=34&quot;  onmouseover=&quot;window.status=&#039;http://www.netzwoche.ch/BestOfSwissWeb/2009/BestOfSwissWebVote.aspx&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot; title=&quot;Vote for Best of Swiss Web&quot;&gt;hingehen&lt;/a&gt; und fÃ¼r Gottago stimmen! Um abstimmen zu kÃ¶nnen, muss man Abonnent/in des Netzwochetickers sein. Einfach &lt;a href=&quot;http://www.strompost.ch/blog/exit.php?url_id=58&amp;amp;entry_id=34&quot;  onmouseover=&quot;window.status=&#039;http://netzwoche.ch/User/RegisterUser.aspx&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot; title=&quot;Netzticker Registrierung&quot;&gt;registrieren&lt;/a&gt; und abstimmen. Sollte Liip gewinnen, dann gibt&#039;s natÃ¼rliche eine Siegesfeier, zu der alle Supporter herzlich eingeladen sind &lt;img src=&quot;http://www.strompost.ch/blog/templates/default/img/emoticons/smile.png&quot; alt=&quot;:-)&quot; style=&quot;display: inline; vertical-align: bottom;&quot; class=&quot;emoticon&quot; /&gt;&lt;br /&gt;
&lt;br /&gt;
Mehr Infos unter &lt;a href=&quot;http://www.strompost.ch/blog/exit.php?url_id=59&amp;amp;entry_id=34&quot;  onmouseover=&quot;window.status=&#039;http://vote.liip.ch&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot; title=&quot;vote for liip&quot;&gt;vote.liip.ch&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
 
    </content:encoded>

    <pubDate>Sat, 07 Mar 2009 19:04:00 +0100</pubDate>
    <guid isPermaLink="false">http://www.strompost.ch/blog/archives/34-guid.html</guid>
    
</item>
<item>
    <title>Google-Suche nun kostenpflichtig?</title>
    <link>http://www.strompost.ch/blog/archives/32-Google-Suche-nun-kostenpflichtig.html</link>
            <category>internet</category>
    
    <comments>http://www.strompost.ch/blog/archives/32-Google-Suche-nun-kostenpflichtig.html#comments</comments>
    <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=2.0&amp;type=comments&amp;cid=32</wfw:commentRss>
    

    <author>nospam@example.com (Adrian)</author>
    <content:encoded>
    Eine ganz unverfÃ¤ngliche Google-Suche:&lt;br /&gt;
&lt;!-- s9ymdb:27 --&gt;&lt;img class=&quot;serendipity_image_center&quot; width=&quot;649&quot; height=&quot;492&quot; style=&quot;border: 0px; padding-left: 5px; padding-right: 5px;&quot; src=&quot;http://www.strompost.ch/blog/uploads/google1.png&quot; alt=&quot;&quot; /&gt;&lt;br /&gt;
&lt;br /&gt;
Ein Klick auf das erste Suchresultat ergab erst mal eine Warnung von Google: &quot;Diese Seite kann ihren Computer beschÃ¤digen&quot; WTF??&lt;br /&gt;
&lt;br /&gt;
Bei einem weiteren Versuch kam dann nur noch folgende Meldung:&lt;br /&gt;
&lt;!-- s9ymdb:28 --&gt;&lt;img class=&quot;serendipity_image_center&quot; width=&quot;1090&quot; height=&quot;267&quot; style=&quot;border: 0px; padding-left: 5px; padding-right: 5px;&quot; src=&quot;http://www.strompost.ch/blog/uploads/google2.png&quot; alt=&quot;&quot; /&gt;&lt;br /&gt;
&lt;br /&gt;
Ist die Wirtschaftskrise nun bei Google angelangt? Sind Suchresultate nun kostenpflichtig? Einen Paypal-Link konnte ich allerdings nicht finden.&lt;br /&gt;
&lt;br /&gt;
Vermutlich war aber bloss ein Google-Mitarbeiter etwas Ã¼bereifrig. Unterdessen funktioniert jedenfalls alles wieder normal.&lt;br /&gt;
Der Link &lt;a href=&quot;http://www.strompost.ch/blog/exit.php?url_id=52&amp;amp;entry_id=32&quot;  onmouseover=&quot;window.status=&#039;http://www.google.ch/interstitial?url=http://www.unicef.ch/&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot; title=&quot;google&quot;&gt;http://www.google.ch/interstitial?url=http://www.unicef.ch/&lt;/a&gt; gibt jedoch immer noch ein &#039;Forbidden&#039;. Google kocht da offenbar an einer Malware-Protection. 
    </content:encoded>

    <pubDate>Sat, 31 Jan 2009 16:45:00 +0100</pubDate>
    <guid isPermaLink="false">http://www.strompost.ch/blog/archives/32-guid.html</guid>
    
</item>
<item>
    <title>upgrade oder downgrade?</title>
    <link>http://www.strompost.ch/blog/archives/31-upgrade-oder-downgrade.html</link>
            <category>kurioses und unglaubliches</category>
            <category>vermischtes</category>
    
    <comments>http://www.strompost.ch/blog/archives/31-upgrade-oder-downgrade.html#comments</comments>
    <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=2.0&amp;type=comments&amp;cid=31</wfw:commentRss>
    

    <author>nospam@example.com (Adrian)</author>
    <content:encoded>
    &lt;!-- s9ymdb:26 --&gt;&lt;img class=&quot;serendipity_image_center&quot; width=&quot;640&quot; height=&quot;480&quot; style=&quot;border: 0px; padding-left: 5px; padding-right: 5px;&quot; src=&quot;http://www.strompost.ch/blog/uploads/DSC00462.JPG&quot; alt=&quot;&quot; /&gt; 
    </content:encoded>

    <pubDate>Fri, 31 Oct 2008 23:32:17 +0100</pubDate>
    <guid isPermaLink="false">http://www.strompost.ch/blog/archives/31-guid.html</guid>
    
</item>
<item>
    <title>SBB-Erfolgsmeldung</title>
    <link>http://www.strompost.ch/blog/archives/30-SBB-Erfolgsmeldung.html</link>
            <category>kurioses und unglaubliches</category>
            <category>vermischtes</category>
    
    <comments>http://www.strompost.ch/blog/archives/30-SBB-Erfolgsmeldung.html#comments</comments>
    <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=2.0&amp;type=comments&amp;cid=30</wfw:commentRss>
    

    <author>nospam@example.com (Adrian)</author>
    <content:encoded>
    &lt;blockquote&gt;*dingdong* Liebe FahrgÃ¤ste, wir kommen pÃ¼nktlich in Bern an.&lt;/blockquote&gt;&lt;br /&gt;
&lt;br /&gt;
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 ... 
    </content:encoded>

    <pubDate>Wed, 29 Oct 2008 21:49:38 +0100</pubDate>
    <guid isPermaLink="false">http://www.strompost.ch/blog/archives/30-guid.html</guid>
    
</item>
<item>
    <title>Colorpicker in OS X</title>
    <link>http://www.strompost.ch/blog/archives/29-Colorpicker-in-OS-X.html</link>
            <category>development</category>
            <category>internet</category>
    
    <comments>http://www.strompost.ch/blog/archives/29-Colorpicker-in-OS-X.html#comments</comments>
    <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=2.0&amp;type=comments&amp;cid=29</wfw:commentRss>
    

    <author>nospam@example.com (Adrian)</author>
    <content:encoded>
    Nachdem das &lt;a href=&quot;http://www.strompost.ch/blog/exit.php?url_id=50&amp;amp;entry_id=29&quot;  onmouseover=&quot;window.status=&#039;http://www.iosart.com/firefox/colorzilla/&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot; title=&quot;ColorZilla&quot;&gt;ColorZilla&lt;/a&gt; Add-on nach dem Update auf &lt;a href=&quot;http://www.strompost.ch/blog/exit.php?url_id=51&amp;amp;entry_id=29&quot;  onmouseover=&quot;window.status=&#039;http://www.getfirefox.com&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot; title=&quot;get firefox&quot;&gt;Firefox 3&lt;/a&gt; (vorläufig) nicht mehr funktioniert hat, bin ich auf der Suche nach einem Ersatz auf das OSX-eigene Tool &#039;DigitalColor Farbmesser&#039; (in Applications-&gt;Utilities) gestossen. Ganz praktisch, wenn man schnell den HEX-Wert einer Farbe braucht.  
    </content:encoded>

    <pubDate>Fri, 20 Jun 2008 16:42:08 +0200</pubDate>
    <guid isPermaLink="false">http://www.strompost.ch/blog/archives/29-guid.html</guid>
    
</item>
<item>
    <title>oranger geht's nicht mehr ...</title>
    <link>http://www.strompost.ch/blog/archives/28-oranger-gehts-nicht-mehr-....html</link>
            <category>dinge, die die welt nicht braucht</category>
            <category>vermischtes</category>
    
    <comments>http://www.strompost.ch/blog/archives/28-oranger-gehts-nicht-mehr-....html#comments</comments>
    <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=2.0&amp;type=comments&amp;cid=28</wfw:commentRss>
    

    <author>nospam@example.com (Adrian)</author>
    <content:encoded>
    &lt;!-- s9ymdb:25 --&gt;&lt;img class=&quot;serendipity_image_center&quot; width=&quot;640&quot; height=&quot;480&quot; style=&quot;border: 0px; padding-left: 5px; padding-right: 5px;&quot; src=&quot;http://www.strompost.ch/blog/uploads/DSC00429.JPG&quot; alt=&quot;&quot; /&gt; 
    </content:encoded>

    <pubDate>Mon, 09 Jun 2008 20:02:00 +0200</pubDate>
    <guid isPermaLink="false">http://www.strompost.ch/blog/archives/28-guid.html</guid>
    
</item>
<item>
    <title>noch mehr orange ...</title>
    <link>http://www.strompost.ch/blog/archives/27-noch-mehr-orange-....html</link>
            <category>dinge, die die welt nicht braucht</category>
            <category>vermischtes</category>
    
    <comments>http://www.strompost.ch/blog/archives/27-noch-mehr-orange-....html#comments</comments>
    <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=2.0&amp;type=comments&amp;cid=27</wfw:commentRss>
    

    <author>nospam@example.com (Adrian)</author>
    <content:encoded>
    &lt;!-- s9ymdb:24 --&gt;&lt;img class=&quot;serendipity_image_center&quot; width=&quot;640&quot; height=&quot;480&quot; style=&quot;border: 0px; padding-left: 5px; padding-right: 5px;&quot; src=&quot;http://www.strompost.ch/blog/uploads/DSC00428.JPG&quot; alt=&quot;&quot; /&gt;&lt;br /&gt;
&lt;br /&gt;
Der Ton dazu: &quot;ORANJE, ORANJE, ORANJE ... etc.&quot;  
    </content:encoded>

    <pubDate>Mon, 09 Jun 2008 17:51:21 +0200</pubDate>
    <guid isPermaLink="false">http://www.strompost.ch/blog/archives/27-guid.html</guid>
    
</item>
<item>
    <title>Bern ist orange</title>
    <link>http://www.strompost.ch/blog/archives/26-Bern-ist-orange.html</link>
            <category>dinge, die die welt nicht braucht</category>
            <category>vermischtes</category>
    
    <comments>http://www.strompost.ch/blog/archives/26-Bern-ist-orange.html#comments</comments>
    <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=2.0&amp;type=comments&amp;cid=26</wfw:commentRss>
    

    <author>nospam@example.com (Adrian)</author>
    <content:encoded>
    &lt;!-- s9ymdb:23 --&gt;&lt;img class=&quot;serendipity_image_center&quot; width=&quot;640&quot; height=&quot;480&quot; style=&quot;border: 0px; padding-left: 5px; padding-right: 5px;&quot; src=&quot;http://www.strompost.ch/blog/uploads/DSC00427.JPG&quot; alt=&quot;&quot; /&gt;&lt;br /&gt;
noch drei Wochen ... 
    </content:encoded>

    <pubDate>Mon, 09 Jun 2008 15:53:22 +0200</pubDate>
    <guid isPermaLink="false">http://www.strompost.ch/blog/archives/26-guid.html</guid>
    
</item>
<item>
    <title>Früh übt sich ...</title>
    <link>http://www.strompost.ch/blog/archives/25-Frbt-sich-....html</link>
            <category>Familie</category>
    
    <comments>http://www.strompost.ch/blog/archives/25-Frbt-sich-....html#comments</comments>
    <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=2.0&amp;type=comments&amp;cid=25</wfw:commentRss>
    

    <author>nospam@example.com (Adrian)</author>
    <content:encoded>
    &lt;div class=&quot;serendipity_imageComment_left&quot; style=&quot;width: 640px&quot;&gt;&lt;div class=&quot;serendipity_imageComment_img&quot;&gt;&lt;!-- s9ymdb:22 --&gt;&lt;img class=&quot;serendipity_image_left&quot; width=&quot;640&quot; height=&quot;480&quot;  src=&quot;http://www.strompost.ch/blog/uploads/DSC00422.JPG&quot; alt=&quot;&quot; /&gt;&lt;/div&gt;&lt;div class=&quot;serendipity_imageComment_txt&quot;&gt;... wer ein Meister werden will&lt;/div&gt;&lt;/div&gt; 
    </content:encoded>

    <pubDate>Tue, 13 May 2008 12:04:11 +0200</pubDate>
    <guid isPermaLink="false">http://www.strompost.ch/blog/archives/25-guid.html</guid>
    
</item>
<item>
    <title>Der Himmel über Bern</title>
    <link>http://www.strompost.ch/blog/archives/24-Der-Himmel-Bern.html</link>
            <category>vermischtes</category>
    
    <comments>http://www.strompost.ch/blog/archives/24-Der-Himmel-Bern.html#comments</comments>
    <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=2.0&amp;type=comments&amp;cid=24</wfw:commentRss>
    

    <author>nospam@example.com (Adrian)</author>
    <content:encoded>
    &lt;img width=&#039;486&#039; height=&#039;365&#039; border=&#039;0&#039; hspace=&#039;5&#039; src=&#039;http://www.strompost.ch/blog/uploads/dsc00411_crop.jpg&#039; alt=&#039;&#039; /&gt; 
    </content:encoded>

    <pubDate>Sun, 27 Apr 2008 11:47:59 +0200</pubDate>
    <guid isPermaLink="false">http://www.strompost.ch/blog/archives/24-guid.html</guid>
    
</item>
<item>
    <title>cablecom support</title>
    <link>http://www.strompost.ch/blog/archives/23-cablecom-support.html</link>
            <category>cablecom</category>
            <category>internet</category>
    
    <comments>http://www.strompost.ch/blog/archives/23-cablecom-support.html#comments</comments>
    <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=2.0&amp;type=comments&amp;cid=23</wfw:commentRss>
    

    <author>nospam@example.com (Adrian)</author>
    <content:encoded>
    Die Cablecom ist ein beliebtes bashing-Opfer, aber irgendwie ist das ja auch nicht unverschuldet.&lt;br /&gt;
&lt;br /&gt;
Ich hatte heute wieder mal das Vergnügen (?), mich mit einem Cablecom-Supporter rumzuschlagen.&lt;br /&gt;
Das Problem:&lt;br /&gt;
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).&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;&lt;a href=&quot;http://www.strompost.ch/blog/archives/23-cablecom-support.html#extended&quot;&gt;Continue reading &quot;cablecom support&quot;&lt;/a&gt;
    </content:encoded>

    <pubDate>Fri, 25 Apr 2008 22:15:07 +0200</pubDate>
    <guid isPermaLink="false">http://www.strompost.ch/blog/archives/23-guid.html</guid>
    
</item>
<item>
    <title>Queen of the day</title>
    <link>http://www.strompost.ch/blog/archives/22-Queen-of-the-day.html</link>
            <category>Familie</category>
    
    <comments>http://www.strompost.ch/blog/archives/22-Queen-of-the-day.html#comments</comments>
    <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=2.0&amp;type=comments&amp;cid=22</wfw:commentRss>
    

    <author>nospam@example.com (Adrian)</author>
    <content:encoded>
    &lt;img width=&#039;400&#039; height=&#039;533&#039; border=&#039;0&#039; hspace=&#039;5&#039; src=&#039;http://www.strompost.ch/blog/uploads/IMG_4344.jpg&#039; alt=&#039;Queen&#039; /&gt;&lt;br /&gt;&lt;br /&gt; 
    </content:encoded>

    <pubDate>Sun, 06 Jan 2008 20:23:41 +0100</pubDate>
    <guid isPermaLink="false">http://www.strompost.ch/blog/archives/22-guid.html</guid>
    
</item>

</channel>
</rss>
