<?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/"
   xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule">
<channel>
    <title>fail2fail</title>
    <link>http://www.fail2fail.com/</link>
    <description>perfectionism or disability?</description>
    <dc:language>en</dc:language>
    <generator>Serendipity 1.4.1 - http://www.s9y.org/</generator>
    
    

<item>
    <title>Cronjob und relative includes in PHP</title>
    <link>http://www.fail2fail.com/archives/29-Cronjob-und-relative-includes-in-PHP.html</link>
            <category>Software</category>
    
    <comments>http://www.fail2fail.com/archives/29-Cronjob-und-relative-includes-in-PHP.html#comments</comments>
    <wfw:comment>http://www.fail2fail.com/wfwcomment.php?cid=29</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.fail2fail.com/rss.php?version=2.0&amp;type=comments&amp;cid=29</wfw:commentRss>
    

    <author>nospam@example.com (Juri Hamburg)</author>
    <content:encoded>
    For the logs - heute aus Not kurz überlegt, wie man ein PHP-Skript eigentlich über cron laufen lässt, wenn das PHP-Skript Includes mit relativen Pfaden aufweist. Das Problem ist, dass crons Arbeitsverzeichnis nicht dem Verzeichnis des Skripts entspricht und die relativen Pfade somit auf Falsches verweisen.&lt;br /&gt;
&lt;br /&gt;
Über Bash-Skript den Job zu wrappen wäre auch nicht das Wahre. Ein nahezu universeller PHP-Ein-Zeiler vor den Includes hat es getan:&lt;pre&gt;&lt;div class=&quot;php geshi&quot; style=&quot;text-align: left;&quot;&gt;#!/usr/bin/php&lt;br /&gt;&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;&amp;lt;?&lt;/span&gt;&lt;br /&gt;&lt;a href=&quot;http://www.php.net/chdir&quot;&gt;&lt;span style=&quot;color: #990000;&quot;&gt;chdir&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot;color: #009900;&quot;&gt;&amp;#40;&lt;/span&gt;&lt;a href=&quot;http://www.php.net/dirname&quot;&gt;&lt;span style=&quot;color: #990000;&quot;&gt;dirname&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot;color: #009900;&quot;&gt;&amp;#40;&lt;/span&gt;&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;__FILE__&lt;/span&gt;&lt;span style=&quot;color: #009900;&quot;&gt;&amp;#41;&lt;/span&gt;&lt;span style=&quot;color: #009900;&quot;&gt;&amp;#41;&lt;/span&gt;&lt;span style=&quot;color: #339933;&quot;&gt;;&lt;/span&gt; &lt;span style=&quot;color: #666666; font-style: italic;&quot;&gt;// &amp;lt;-- &lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: #b1b100;&quot;&gt;include_once&lt;/span&gt;&lt;span style=&quot;color: #009900;&quot;&gt;&amp;#40;&lt;/span&gt;&lt;span style=&quot;color: #0000ff;&quot;&gt;&amp;quot;../../relative.php&amp;quot;&lt;/span&gt;&lt;span style=&quot;color: #009900;&quot;&gt;&amp;#41;&lt;/span&gt;&lt;span style=&quot;color: #339933;&quot;&gt;;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: #666666; font-style: italic;&quot;&gt;// ...&lt;/span&gt;&lt;br /&gt;&lt;a href=&quot;http://www.php.net/exit&quot;&gt;&lt;span style=&quot;color: #990000;&quot;&gt;exit&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot;color: #009900;&quot;&gt;&amp;#40;&lt;/span&gt;&lt;span style=&quot;color: #cc66cc;&quot;&gt;0&lt;/span&gt;&lt;span style=&quot;color: #009900;&quot;&gt;&amp;#41;&lt;/span&gt;&lt;span style=&quot;color: #339933;&quot;&gt;;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;?&amp;gt;&lt;/span&gt;&lt;/div&gt;&lt;/pre&gt;&lt;br /&gt;
Natürlich wäre in der &lt;tt&gt;crontab&lt;/tt&gt; auch etwas wie &lt;pre&gt;&lt;div class=&quot;cron geshi&quot; style=&quot;text-align: left;&quot;&gt;1 */30 * * * * user cd /pfad/zum/skript; php-skript.php&lt;/div&gt;&lt;/pre&gt; möglich, allerdings in anacrons &lt;tt&gt;cron.{hourly|daily|weekly|monthly}&lt;/tt&gt;, in den man bequemerweise nur einen symbolischen Link zum Skript anlegt, ist so eine Anweisung nicht machbar. &lt;br /&gt;
&lt;br /&gt;
Anmerkung: die Verwendung von &lt;tt&gt;chdir()&lt;/tt&gt; Funktion kann problematisch werden, wenn &quot;safe mode&quot; gesetzt ist. Die Verwendung von &quot;safe mode&quot; ist aber seit PHP 5.3 sowieso als veraltet markiert. 
    </content:encoded>

    <pubDate>Tue, 27 Jul 2010 20:11:24 +0200</pubDate>
    <guid isPermaLink="false">http://www.fail2fail.com/archives/29-guid.html</guid>
    <category>cron</category>
<category>php</category>
<category>software</category>
<creativeCommons:license>http://creativecommons.org/licenses/by/3.0/</creativeCommons:license>
</item>
<item>
    <title>Vim: Auflösen von Klammern in Präprozessor-Anweisungen scheitert</title>
    <link>http://www.fail2fail.com/archives/27-Vim-Aufloesen-von-Klammern-in-Praeprozessor-Anweisungen-scheitert.html</link>
            <category>Linux</category>
            <category>Software</category>
    
    <comments>http://www.fail2fail.com/archives/27-Vim-Aufloesen-von-Klammern-in-Praeprozessor-Anweisungen-scheitert.html#comments</comments>
    <wfw:comment>http://www.fail2fail.com/wfwcomment.php?cid=27</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.fail2fail.com/rss.php?version=2.0&amp;type=comments&amp;cid=27</wfw:commentRss>
    

    <author>nospam@example.com (Juri Hamburg)</author>
    <content:encoded>
    Ich musste heute bedauerlicherweise feststellen, dass Vims Syntax-Folding sowie die Klammernauflösung (und damit Funktionen von &lt;tt&gt;&quot;%&quot;&lt;/tt&gt;, &lt;tt&gt;&quot;]}&quot;&lt;/tt&gt;, etc.) unter Verwendung von bedingten Präprozessor-Anweisungen in C-Code gnadenlos versagen. Gerade wo der Code etwas unübersichtlicher wird, lässt Vim einen etwas im Stich, was die Navigation angeht. Hier ein einfacher Beispiel-Snippet, mit dem man das Problem reproduzieren kann:&lt;pre&gt;&lt;div class=&quot;c geshi&quot; style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;color: #b1b100;&quot;&gt;for&lt;/span&gt; &lt;span style=&quot;color: #009900;&quot;&gt;&amp;#40;&lt;/span&gt;i&lt;span style=&quot;color: #339933;&quot;&gt;=&lt;/span&gt;&lt;span style=&quot;color: #0000dd;&quot;&gt;0&lt;/span&gt;&lt;span style=&quot;color: #339933;&quot;&gt;;&lt;/span&gt; i&lt;span style=&quot;color: #339933;&quot;&gt;&amp;lt;&lt;/span&gt;somevar&lt;span style=&quot;color: #339933;&quot;&gt;;&lt;/span&gt; i&lt;span style=&quot;color: #339933;&quot;&gt;++&lt;/span&gt;&lt;span style=&quot;color: #009900;&quot;&gt;&amp;#41;&lt;/span&gt; &lt;span style=&quot;color: #009900;&quot;&gt;&amp;#123;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: #339933;&quot;&gt;#ifdef SOME_PARAM&lt;/span&gt;&lt;br /&gt;&amp;#160; &amp;#160; &amp;#160; &lt;span style=&quot;color: #b1b100;&quot;&gt;for&lt;/span&gt; &lt;span style=&quot;color: #009900;&quot;&gt;&amp;#40;&lt;/span&gt;k&lt;span style=&quot;color: #339933;&quot;&gt;=&lt;/span&gt;&lt;span style=&quot;color: #0000dd;&quot;&gt;1&lt;/span&gt;&lt;span style=&quot;color: #339933;&quot;&gt;;&lt;/span&gt; k&lt;span style=&quot;color: #339933;&quot;&gt;&amp;lt;&lt;/span&gt;limit_one&lt;span style=&quot;color: #339933;&quot;&gt;;&lt;/span&gt; k&lt;span style=&quot;color: #339933;&quot;&gt;++&lt;/span&gt;&lt;span style=&quot;color: #009900;&quot;&gt;&amp;#41;&lt;/span&gt; &lt;span style=&quot;color: #009900;&quot;&gt;&amp;#123;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: #339933;&quot;&gt;#else&lt;/span&gt;&lt;br /&gt;&amp;#160; &amp;#160; &amp;#160; &lt;span style=&quot;color: #b1b100;&quot;&gt;for&lt;/span&gt; &lt;span style=&quot;color: #009900;&quot;&gt;&amp;#40;&lt;/span&gt;k&lt;span style=&quot;color: #339933;&quot;&gt;=&lt;/span&gt;&lt;span style=&quot;color: #0000dd;&quot;&gt;1&lt;/span&gt;&lt;span style=&quot;color: #339933;&quot;&gt;;&lt;/span&gt; k&lt;span style=&quot;color: #339933;&quot;&gt;&amp;lt;&lt;/span&gt;limit_else&lt;span style=&quot;color: #339933;&quot;&gt;;&lt;/span&gt; k&lt;span style=&quot;color: #339933;&quot;&gt;++&lt;/span&gt;&lt;span style=&quot;color: #009900;&quot;&gt;&amp;#41;&lt;/span&gt; &lt;span style=&quot;color: #009900;&quot;&gt;&amp;#123;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: #339933;&quot;&gt;#endif&lt;/span&gt;&lt;br /&gt;&amp;#160; &amp;#160; &amp;#160; &lt;span style=&quot;color: #666666; font-style: italic;&quot;&gt;//do something&lt;/span&gt;&lt;br /&gt;&amp;#160; &amp;#160; &amp;#160; &lt;span style=&quot;color: #009900;&quot;&gt;&amp;#125;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: #009900;&quot;&gt;&amp;#125;&lt;/span&gt;&lt;/div&gt;&lt;/pre&gt;In diesem Fall &quot;weiß&quot; Vim nicht, dass nur eine öffnende Klammer aus dem  &lt;tt&gt;#ifdef-#else&lt;/tt&gt;-Block von Bedeutung ist und macht stures Auflösen nach dem Schema &quot;auf eine öffnende Klammer gibt es eine schließende&quot; weiter.&lt;br /&gt;
Einen fertigen Workaround habe ich bisher nicht gefunden - schade...&lt;br /&gt; 
    </content:encoded>

    <pubDate>Thu, 13 May 2010 18:14:44 +0200</pubDate>
    <guid isPermaLink="false">http://www.fail2fail.com/archives/27-guid.html</guid>
    <category>linux</category>
<category>software</category>
<category>vim</category>
<creativeCommons:license>http://creativecommons.org/licenses/by/3.0/</creativeCommons:license>
</item>
<item>
    <title>1. Mai und schlechtes Wetter</title>
    <link>http://www.fail2fail.com/archives/26-1.-Mai-und-schlechtes-Wetter.html</link>
            <category>Misc</category>
    
    <comments>http://www.fail2fail.com/archives/26-1.-Mai-und-schlechtes-Wetter.html#comments</comments>
    <wfw:comment>http://www.fail2fail.com/wfwcomment.php?cid=26</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.fail2fail.com/rss.php?version=2.0&amp;type=comments&amp;cid=26</wfw:commentRss>
    

    <author>nospam@example.com (Juri Hamburg)</author>
    <content:encoded>
    Feiertag an dem alles geschlossen und draußen zu nass ist resultiert im häuslichen Abendvertrieb - heute Gehversuche in Gimp.&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;serendipity_imageComment_center&quot; style=&quot;width: 500px&quot;&gt;&lt;div class=&quot;serendipity_imageComment_img&quot;&gt;&lt;a class=&#039;serendipity_image_link&#039; href=&#039;http://www.fail2fail.com/uploads/misc/burnout2.png&#039;&gt;&lt;!-- s9ymdb:50 --&gt;&lt;img class=&quot;serendipity_image_center&quot; width=&quot;500&quot; src=&quot;http://www.fail2fail.com/serendipity_admin_image_selector.php?serendipity[image]=50&amp;serendipity[disposition]=inline&amp;serendipity[step]=showItem&amp;serendipity[resizeWidth]=500&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class=&quot;serendipity_imageComment_txt&quot;&gt;Burnout&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;
&lt;div class=&quot;serendipity_imageComment_center&quot; style=&quot;width: 500px&quot;&gt;&lt;div class=&quot;serendipity_imageComment_img&quot;&gt;&lt;a class=&#039;serendipity_image_link&#039; href=&#039;http://www.fail2fail.com/uploads/misc/kitty.png&#039;&gt;&lt;!-- s9ymdb:51 --&gt;&lt;img class=&quot;serendipity_image_center&quot; width=&quot;500&quot; src=&quot;http://www.fail2fail.com/serendipity_admin_image_selector.php?serendipity[image]=53&amp;serendipity[disposition]=inline&amp;serendipity[step]=showItem&amp;serendipity[resizeWidth]=500&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class=&quot;serendipity_imageComment_txt&quot;&gt;Flying Kitty&lt;/div&gt;&lt;/div&gt; 
    </content:encoded>

    <pubDate>Sun, 02 May 2010 01:30:00 +0200</pubDate>
    <guid isPermaLink="false">http://www.fail2fail.com/archives/26-guid.html</guid>
    <creativeCommons:license>http://creativecommons.org/licenses/by/3.0/</creativeCommons:license>
</item>
<item>
    <title>Mehrere Benutzer auf einer Soundkarte mit ALSA</title>
    <link>http://www.fail2fail.com/archives/22-Mehrere-Benutzer-auf-einer-Soundkarte-mit-ALSA.html</link>
            <category>Linux</category>
    
    <comments>http://www.fail2fail.com/archives/22-Mehrere-Benutzer-auf-einer-Soundkarte-mit-ALSA.html#comments</comments>
    <wfw:comment>http://www.fail2fail.com/wfwcomment.php?cid=22</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.fail2fail.com/rss.php?version=2.0&amp;type=comments&amp;cid=22</wfw:commentRss>
    

    <author>nospam@example.com (Juri Hamburg)</author>
    <content:encoded>
    In einigen Fällen laufen gleichzeitig mehrere Xsessions mit verschiedenen Benutzern. Oft ist das Problem bei Umgebungen ohne Soundserver wie Pulseaudio oder ESD, dass ein Benutzer das Ausgabegerät blockiert und andere somit ohne Audio-Wiedergabe zurecht kommen müssen. Auch falls ein Musik-Daemon wie MPD über eigenen Benutzer läuft, kann es mit dem Xsession-Benutzer eine Schlacht ganz nach &quot;wer zuerst kommt, mahlt zuerst&quot; um das Gerät geben.&lt;br /&gt;
&lt;br /&gt;
Eine mögliche 3-Schritte-Lösung für ALSA setzt auf der Benutzung des dmix-Plugins auf: &lt;br /&gt;&lt;a href=&quot;http://www.fail2fail.com/archives/22-Mehrere-Benutzer-auf-einer-Soundkarte-mit-ALSA.html#extended&quot;&gt;Continue reading &quot;Mehrere Benutzer auf einer Soundkarte mit ALSA&quot;&lt;/a&gt;
    </content:encoded>

    <pubDate>Wed, 27 Jan 2010 21:19:34 +0100</pubDate>
    <guid isPermaLink="false">http://www.fail2fail.com/archives/22-guid.html</guid>
    <category>alsa</category>
<category>archlinux</category>
<category>linux</category>
<creativeCommons:license>http://creativecommons.org/licenses/by/3.0/</creativeCommons:license>
</item>
<item>
    <title>1. April Scherzmeldungen 2010</title>
    <link>http://www.fail2fail.com/archives/25-1.-April-Scherzmeldungen-2010.html</link>
            <category>Misc</category>
    
    <comments>http://www.fail2fail.com/archives/25-1.-April-Scherzmeldungen-2010.html#comments</comments>
    <wfw:comment>http://www.fail2fail.com/wfwcomment.php?cid=25</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.fail2fail.com/rss.php?version=2.0&amp;type=comments&amp;cid=25</wfw:commentRss>
    

    <author>nospam@example.com (Juri Hamburg)</author>
    <content:encoded>
    Zum ersten April erlauben sich viele Online-Portale Scherzmeldungen. Hier ist eine Sammlung solcher Meldungen, auf die ich gestoßen bin:&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;&lt;a href=&quot;http://www.tagesschau.de/ausland/internetabschaltung100.html&quot;&gt;ARD - Internetabschaltung für einen Tag wegen Umstellung auf IPv6&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://ikhaya.ubuntuusers.de/2010/04/01/ein-k-fuer-ubuntu-und-mono-als-standard/&quot;&gt;Ubuntuusers Ikhaya - KDE als Standard in Ubuntu&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://www.pro-linux.de/NB3/news/1/15493/pro-linux-ab-mitte-april-auch-am-kiosk.html&quot;&gt;pro-linux.de nun auch in Druckversion&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://www.hr-online.de/website/radio/hr3/index.jsp?rubrik=2748&amp;key=standard_document_38915687&quot;&gt;HR - Porto für E-Mails - gegen Spam&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt; 
    </content:encoded>

    <pubDate>Thu, 01 Apr 2010 09:17:47 +0200</pubDate>
    <guid isPermaLink="false">http://www.fail2fail.com/archives/25-guid.html</guid>
    <category>fun</category>
<category>misc</category>
<creativeCommons:license>http://creativecommons.org/licenses/by/3.0/</creativeCommons:license>
</item>
<item>
    <title>Synchron mit Linux und Windows Mobile</title>
    <link>http://www.fail2fail.com/archives/24-Synchron-mit-Linux-und-Windows-Mobile.html</link>
            <category>Software</category>
    
    <comments>http://www.fail2fail.com/archives/24-Synchron-mit-Linux-und-Windows-Mobile.html#comments</comments>
    <wfw:comment>http://www.fail2fail.com/wfwcomment.php?cid=24</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.fail2fail.com/rss.php?version=2.0&amp;type=comments&amp;cid=24</wfw:commentRss>
    

    <author>nospam@example.com (Juri Hamburg)</author>
    <content:encoded>
    &lt;!-- s9ymdb:49 --&gt;&lt;img class=&quot;serendipity_image_right&quot; width=&quot;64&quot; height=&quot;68&quot; style=&quot;float: right; border: 0px; padding-left: 5px; padding-right: 5px;&quot; src=&quot;http://www.fail2fail.com/serendipity_admin_image_selector.php?serendipity[image]=49&amp;serendipity[disposition]=inline&amp;serendipity[step]=showItem&amp;serendipity[resizeHeight]=68&amp;serendipity[resizeWidth]=64&quot; alt=&quot;funambol_logo&quot; /&gt;Pünktlich zu Ostern fand ich endlich eine praktikable Lösung für das Synchronisieren meiner Kontakte, Aufgaben und Termine zwischen meinen Linux-Rechnern und Windows Mobile 6 Gerät (HTC Artemis). Und das, ohne meine Termine den Datenkraken anzuvertrauen. Die (Er)Lösung hat einen Namen: &lt;strong&gt;Funambol&lt;/strong&gt;. Funambol bietet Clients für&lt;br /&gt;
&lt;strong&gt;Desktop-Applikationen&lt;/strong&gt; wie Outlook, Thunderbird (mit Lightning Extension), Evolution, iPod&lt;br /&gt;
&lt;strong&gt;Mobile Geräte&lt;/strong&gt;, darunter Windows Mobile, Symbian, Blackberry und iPhone.&lt;br /&gt;
Eine Synchronisation zu Gmail, Yahoo und etlichen Groupware-Servern wird ebenfalls unterstützt.&lt;br /&gt;
&lt;br /&gt;
Neben den Clients gibt es auch eine Serverinstanz (als Bündel samt nötigen JRE, Hypersonic DB, etc.) zum Download, die man auf einem beliebigen Rechner installieren kann. Auch Installation auf einem entfernten Server ist möglich. &lt;br /&gt;
&lt;br /&gt;
&lt;h3&gt;Funambol Server (stand 8.0.2) auf Linux einrichten im Schnelldurchlauf:&lt;/h3&gt;&lt;br /&gt;
Funambol Server von der &lt;a href=&quot;https://www.forge.funambol.org/download/#server&quot;&gt;Download-Seite&lt;/a&gt; runterladen.&lt;br /&gt;
&lt;br /&gt;
Server Installieren mit: &lt;div class=&quot;bash geshi&quot; style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;color: #c20cb9; font-weight: bold;&quot;&gt;sh&lt;/span&gt; funambol-version.bin&lt;/div&gt; (Lizenzbestimmungen lesen, Pfad auswählen)&lt;br /&gt;
&lt;br /&gt;
Empfehlenswert - Rechte anpassen, so dass man den Server nicht als root laufen lassen muss.&lt;br /&gt;
&lt;br /&gt;
Wenn nicht über Dialog der Installation bereits geschehen, Server starten: &lt;div class=&quot;bash geshi&quot; style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;color: #c20cb9; font-weight: bold;&quot;&gt;sh&lt;/span&gt; &lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;pfad&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;zu&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;Funambol&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;bin&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;funambol start&lt;/div&gt;&lt;br /&gt;
Admin-Oberfläche starten: &lt;div class=&quot;bash geshi&quot; style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;color: #c20cb9; font-weight: bold;&quot;&gt;sh&lt;/span&gt; &lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;pfad&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;zu&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;Funambol&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;admin&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;bin&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;funamboladmin&lt;/div&gt;&lt;br /&gt;
Wenn entfernter Server, sollte man zuvor mit &quot;ssh -X&quot; einloggen um X an ssh-client weiterzuleiten. Auch möglich wäre Funambol lokal zu installieren und das Admin-Tool auf die Instanz des entfernten Servers zugreifen lassen (habe ich persönlich nicht getestet).&lt;br /&gt;
&lt;br /&gt;
Im Admin-Tool einloggen mit Initialzugangsdaten &lt;strong&gt;admin:sa&lt;/strong&gt;.&lt;br /&gt;
&lt;br /&gt;
Admin-Passwort ändern und neuen (Synchronisations-)Benutzer anlegen.&lt;br /&gt;
&lt;br /&gt;
Bei Unklarheiten evtl. doch die &lt;a href=&quot;http://download.forge.objectweb.org/sync4j/funambol-installation-and-administration-guide.pdf&quot;&gt;Server-Dokumentation heranziehen&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;h3&gt;(Meine) Clients Einrichten&lt;/h3&gt;&lt;br /&gt;
Auf alle Linux-Rechner Thunderbird mit Addon &lt;a href=&quot;https://addons.mozilla.org/de/thunderbird/addon/2313&quot;&gt;Lightning&lt;/a&gt; installieren. Für Thunderbird 3 gab es von Funambol noch keinen Stable Release des Mozilla Plugins, dennoch bin ich nach kurzem Stöbern auf einen &lt;a href=&quot;https://mozilla-plugin.forge.funambol.org/servlets/ProjectDocumentList?expandFolder=49&amp;folderID=0&quot;&gt;Entwicklungs-Snapshot&lt;/a&gt; gestoßen, der nun bei mir ohne Probleme läuft.&lt;br /&gt;
&lt;br /&gt;
Für Windows Mobile nahm ich den &lt;a href=&quot;http://download.forge.objectweb.org/sync4j/funambol-pocketpc-sync-client-8.0.4.cab&quot;&gt;funambol-pocketpc-sync-client-8.0.4.cab Installer&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
In allen Clients muss das Synchronisationskonto konfiguriert werden mit den Daten des auf dem Funambol-Server erzeugten Benutzers und außerdem muss der Serverpfad standardmäßig eingestellt werden auf: &lt;pre&gt;http://ip.oder.domain:8080/funambol/ds&lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;
Defaultmäßig war unter Windows Mobile die Synchronisation von Aufgaben ausgeschaltet - evtl. anpassen. Fertig!&lt;br /&gt;
&lt;br /&gt;
&lt;h3&gt;Kein Erfolg auf Debian 64 Bit&lt;/h3&gt;&lt;br /&gt;
Ich hatte &lt;strike&gt;etwas Zeit&lt;/strike&gt; zwei Tage damit verbracht Funambol 8.0.2 (stable) und 8.5 (snapshot, 64bit-version) auf einer 64-Bit-Debian-Installation zum Laufen zu bekommen, leider ohne Erfolg. Auch mit JRE 1.5 und 1.6 aus der Debian-Repository (mit und ohne ia32-sun-java6-bin) startete Funambol zwar, hängte sich aber auf (oder die JVM) und ließ sich nicht mehr mittels &quot;funambol stop&quot; stoppen. Erst mit SIGTERM terminierte der Prozess. &lt;br /&gt;
Auf dem Archlinux war die Installation in 10 Minuten erledigt - da habe ich aber gestaunt. &lt;img src=&quot;http://www.fail2fail.com/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;
Frohe Ostern!&lt;br /&gt;
&lt;div class=&#039;s9y_typeset s9y_typeset_center&#039; style=&#039;text-align: center; margin: 0px auto 0px auto&#039;&gt;&lt;!-- s9ymdb:44 --&gt;&lt;img class=&quot;serendipity_image_center&quot; width=&quot;300&quot; height=&quot;344&quot; style=&quot;border: 0px; padding-left: 5px; padding-right: 5px;&quot; src=&quot;http://www.fail2fail.com/serendipity_admin_image_selector.php?serendipity[image]=44&amp;serendipity[disposition]=inline&amp;serendipity[step]=showItem&amp;serendipity[resizeHeight]=344&amp;serendipity[resizeWidth]=300&quot; alt=&quot;&quot; /&gt;&lt;br /&gt;
&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt; 
    </content:encoded>

    <pubDate>Tue, 30 Mar 2010 22:31:16 +0200</pubDate>
    <guid isPermaLink="false">http://www.fail2fail.com/archives/24-guid.html</guid>
    <category>funambol</category>
<category>htc</category>
<category>linux</category>
<category>mobile</category>
<category>software</category>
<category>synchronisation</category>
<category>windows</category>
<creativeCommons:license>http://creativecommons.org/licenses/by/3.0/</creativeCommons:license>
</item>
<item>
    <title>Video der Woche (KW26/2009)</title>
    <link>http://www.fail2fail.com/archives/9-Video-der-Woche-KW262009.html</link>
            <category>Politics</category>
    
    <comments>http://www.fail2fail.com/archives/9-Video-der-Woche-KW262009.html#comments</comments>
    <wfw:comment>http://www.fail2fail.com/wfwcomment.php?cid=9</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.fail2fail.com/rss.php?version=2.0&amp;type=comments&amp;cid=9</wfw:commentRss>
    

    <author>nospam@example.com (Juri Hamburg)</author>
    <content:encoded>
    Habe mich mal entschieden in unregelmäßigen Intervallen (jedoch nicht kleiner als eine Woche) ausgewählte Videos zu &quot;Mein Video der Woche&quot; zu krönen. Evtl. wird es in der Zukunft auch mehrere &quot;gekrönte&quot; Videos zusammen in einem Beitrag geben.&lt;br /&gt;
&lt;br /&gt;
Mein erstes Video der Woche ist ein Vortrag von Jürgen Elsässer vom &quot;&lt;a href=&quot;http://alles-schallundrauch.blogspot.com/&quot; title=&quot;Alles Schall und Rauch&quot;&gt;Alles Schall und Rauch&lt;/a&gt;&quot;-Treffen April 2009.&lt;br /&gt;
Er erklärt nämlich in einer Nicht-VWLer-Sprache, für jedermann zugänglich, die Gründe von Wirtschaftskrise aus der globalen Sicht. Sehr gut finde ich, dass Herr Elsässer die Wirtschaft nicht als etwas atomares, von der Welt abgetrenntes betrachtet, sondern in seinem Vortrag auch die politische Kulisse mit in den Vordergrund bringt.&lt;br /&gt;
&lt;br /&gt;
Hedgefonds-Heuschrecken, Irak- und Afganistankriege (auch der SU), Georgiens Präsident Michael Saakaschwili, JFK (eigentlich ist sogar ein plausibles Attentat-Motiv im Video offensichtlich), Offshore Banking, Derivate bzw. virtuelles Geld - auf all dies und mehr wird eingegangen um klar zu machen, was eigentlich alles nicht funktioniert und nicht funktionieren kann. Wie unsere Regierung an dem Krisen-Management scheitert und noch ein tieferes Wirtschaftsloch für Deutschland/Europa/Welt gräbt.&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&#039;s9y_typeset s9y_typeset_center&#039; style=&#039;text-align: center; margin: 0px auto 0px auto&#039;&gt;&lt;object width=&quot;480&quot; height=&quot;295&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;http://www.youtube.com/v/R7N421-KeJU&amp;hl=de_DE&amp;fs=1&amp;&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowFullScreen&quot; value=&quot;true&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowscriptaccess&quot; value=&quot;always&quot;&gt;&lt;/param&gt;&lt;embed src=&quot;http://www.youtube.com/v/R7N421-KeJU&amp;hl=de_DE&amp;fs=1&amp;&quot; type=&quot;application/x-shockwave-flash&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;true&quot; width=&quot;480&quot; height=&quot;295&quot;&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
Es ist mir bewusst, dass man in so einem kurzen Vortrag nicht auf alle Feinheiten der globalen Politik und Wirtschaft eingehen kann. Ich finde, dieser Vortrag stellt Umrisse heutiger Weltwirtschaftssituation und noch bevorstehender Folgen sehr gelungen dar. Auf jeden Fall wäre es eine gut angelegte Mittagspause (außer, wenn man gleich depressiv wird).&lt;br /&gt;
&lt;br /&gt; 
    </content:encoded>

    <pubDate>Sat, 27 Jun 2009 21:07:00 +0200</pubDate>
    <guid isPermaLink="false">http://www.fail2fail.com/archives/9-guid.html</guid>
    <category>politics</category>
<creativeCommons:license>http://creativecommons.org/licenses/by/3.0/</creativeCommons:license>
</item>

</channel>
</rss>