<?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>http://klumpp.net/blog/</title>
    <link>http://www.klumpp.net/blog/</link>
    <description>Was gesagt werden muss: </description>
    <dc:language>de</dc:language>
    <admin:errorReportsTo rdf:resource="mailto:" />
    <generator>Serendipity 1.5.1 - http://www.s9y.org/</generator>
    <pubDate>Tue, 15 Dec 2009 22:38:50 GMT</pubDate>

    <image>
        <url>http://www.klumpp.net/blog/templates/default/img/s9y_banner_small.png</url>
        <title>RSS: http://klumpp.net/blog/ - Was gesagt werden muss: </title>
        <link>http://www.klumpp.net/blog/</link>
        <width>100</width>
        <height>21</height>
    </image>

<item>
    <title>Fix für Eclipse unter Gentoo Linux: Wie man &quot;Unsupported major.minor version 49.0&quot; loswird</title>
    <link>http://www.klumpp.net/blog/archives/104-Fix-fuer-Eclipse-unter-Gentoo-Linux-Wie-man-Unsupported-major.minor-version-49.0-loswird.html</link>
            <category>Technologie</category>
    
    <comments>http://www.klumpp.net/blog/archives/104-Fix-fuer-Eclipse-unter-Gentoo-Linux-Wie-man-Unsupported-major.minor-version-49.0-loswird.html#comments</comments>
    <wfw:comment>http://www.klumpp.net/blog/wfwcomment.php?cid=104</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.klumpp.net/blog/rss.php?version=2.0&amp;type=comments&amp;cid=104</wfw:commentRss>
    

    <author>nick@klumpp.net (Nikolaus Klumpp)</author>
    <content:encoded>
    &lt;p&gt;Eclipse&lt;sup&gt;&lt;a href=&quot;http://de.wikipedia.org/wiki/Eclipse_%28IDE%29&quot; onclick=&quot;window.open(this.href, &#039;_blank&#039;); return false;&quot;&gt;1&lt;/a&gt;&lt;/sup&gt; ist eine mächtige Entwicklungsplattform. Sie wurde ursprünglich für Java gebaut, ist aber aufgrund ihrer Plugintechnologie inzwischen weit darüber hinaus einsetzbar.&lt;/p&gt;

&lt;p&gt;Neulich hatte ich das Problem, dass Eclipse auf meinem Gentoosystem nicht starten wollte.&lt;/p&gt;

&lt;p&gt;So sah das aus:&lt;/p&gt;


&lt;pre&gt;&lt;code&gt;nick@shenron ~ $ eclipse-3.4
Exception in thread &amp;quot;main&amp;quot; java.lang.UnsupportedClassVersionError: org/eclipse/equinox/launcher/Main (Unsupported major.minor version 49.0)
        at java.lang.ClassLoader.defineClass0(Native Method)
        at java.lang.ClassLoader.defineClass(ClassLoader.java:539)
[..]&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Da ging es noch weiter, aber den Rest sparen wir uns.&lt;/p&gt;

&lt;p&gt;Woran lag&#039;s? &quot;Unsupported major.minor version 49.0&quot; weißt darauf hin - irgendwas stimmt nicht mit dem installierten Java.&lt;/p&gt;

&lt;p&gt;Mal nachgesehen:&lt;/p&gt;


&lt;pre&gt;&lt;code&gt;nick@shenron ~ $ java -version                                                                                                                                                                                  
java version &amp;quot;1.4.2-03&amp;quot;                                                                                                                                                                                                                      
Java(TM) 2 Runtime Environment, Standard Edition (build Blackdown-1.4.2-03)                                                                                                                                                                  
Java HotSpot(TM) Client VM (build Blackdown-1.4.2-03, mixed mode)       &lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;In der Tat. Neulich beim letzten Merge war mir aber aufgefallen: Ich hatte natürlich auch Suns Java-Implementierung auf dem System. Parallel zum veralteten Blackdown&lt;sup&gt;&lt;a href=&quot;http://de.wikipedia.org/wiki/Blackdown&quot; onclick=&quot;window.open(this.href, &#039;_blank&#039;); return false;&quot;&gt;2&lt;/a&gt;&lt;/sup&gt;; die Frage war nur, wie komm&#039; ich dran?&lt;/p&gt;

&lt;p&gt;In solchen Fällen nie verkehrt: Ein Blick ins &lt;em&gt;eselect&lt;/em&gt; (app-admin/eselect).&lt;/p&gt;


&lt;pre&gt;&lt;code&gt;nick@shenron ~ $ eselect help
Usage: eselect &amp;lt;global options&amp;gt; &amp;lt;module name&amp;gt; &amp;lt;module options&amp;gt;

Global options:
  --brief                   Make output shorter
  --no-color,--no-colour    Disable coloured output

Built-in modules:
  help                      Display a help message
  usage                     Display a usage message
  version                   Display version information

Extra modules:
  bashcomp                  Manage contributed bash-completion scripts
  binutils                  Manage installed versions of sys-devel/binutils
  [..]
  java-vm                   Manage the Java system and user VM
  [..]&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Üblicherweise beherrscht so ein Eselect-Modul den Dreiklang &lt;em&gt;show&lt;/em&gt;, &lt;em&gt;list&lt;/em&gt;, &lt;em&gt;set&lt;/em&gt;.&lt;/p&gt;

&lt;p&gt;Also der Reihe nach:&lt;/p&gt;


&lt;pre&gt;&lt;code&gt;nick@shenron ~ $ eselect java-vm show
Current system-vm
  blackdown-jdk-1.4.2
Current user-vm
  blackdown-jdk-1.4.2&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Das änderte ich mit:&lt;/p&gt;


&lt;pre&gt;&lt;code&gt;nick@shenron ~ $ eselect java-vm set
!!! Error: Usage [user|system] [vm]
exiting&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Gut. Da fehlte erstmal noch was. Zum einen musste ich noch aussuchen, ob ich die Änderung für den User oder das System durchführen wollte, und zum anderen wollte &lt;em&gt;eselect&lt;/em&gt; noch die Nummer der Java-Implementierung haben (&quot;vm&quot;). An die kommt man mit list:&lt;/p&gt;


&lt;pre&gt;&lt;code&gt;nick@shenron ~ $ eselect java-vm list
Available Java Virtual Machines:
  [1]   blackdown-jdk-1.4.2  system-vm
  [2]   sun-jdk-1.5
  [3]   sun-jdk-1.6&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Also, nochmal:&lt;/p&gt;


&lt;pre&gt;&lt;code&gt;nick@shenron ~ $ eselect java-vm set user 3&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Alles ging gut, denn das System meldete sich gleich mit dem Kommandoprompt wieder - &lt;em&gt;no news are good news&lt;/em&gt;.&lt;/p&gt;

&lt;p&gt;Und tatsächlich: Eclipse startete nun ohne zu murren. Darauf einen Kaffee.&lt;/p&gt;

 
    </content:encoded>

    <pubDate>Tue, 15 Dec 2009 22:12:38 +0100</pubDate>
    <guid isPermaLink="false">http://www.klumpp.net/blog/archives/104-guid.html</guid>
    
</item>
<item>
    <title>Ludwigshafen, Samstag, 4. Juli: Tag der offenen Tür der TWL AG</title>
    <link>http://www.klumpp.net/blog/archives/101-Ludwigshafen,-Samstag,-4.-Juli-Tag-der-offenen-Tuer-der-TWL-AG.html</link>
            <category>Energie</category>
            <category>Technologie</category>
    
    <comments>http://www.klumpp.net/blog/archives/101-Ludwigshafen,-Samstag,-4.-Juli-Tag-der-offenen-Tuer-der-TWL-AG.html#comments</comments>
    <wfw:comment>http://www.klumpp.net/blog/wfwcomment.php?cid=101</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.klumpp.net/blog/rss.php?version=2.0&amp;type=comments&amp;cid=101</wfw:commentRss>
    

    <author>nick@klumpp.net (Nikolaus Klumpp)</author>
    <content:encoded>
    &lt;p&gt;Wer sich für Energiewirtschaft interessiert und zufällig am Samstag, den 4. Juli, in Südwestdeutschland unterwegs ist: Die Technischen Werke Ludwigshafen (TWL, &lt;a href=&quot;http://www.twl.de&quot; onclick=&quot;window.open(this.href, &#039;_blank&#039;); return false;&quot;&gt;http://www.twl.de&lt;/a&gt;) laden zum Tag der offenen Tür, 11-17 Uhr. Industriestraße 3. Das ist der Hauptsitz des Unternehmens und zugleich ein Kraftwerksstandort.&lt;/p&gt;

&lt;p&gt;Ich finde, an den kombiniert kaufmännisch-technischen Standorten der Energiewirtschaft herrscht immer ein ganz besonderes Flair - so auch unzweifelhaft dort.&lt;/p&gt;

 
    </content:encoded>

    <pubDate>Sat, 20 Jun 2009 17:08:03 +0200</pubDate>
    <guid isPermaLink="false">http://www.klumpp.net/blog/archives/101-guid.html</guid>
    
</item>
<item>
    <title>Kleine Erinnerung zur momentanen Finanz- und Wirtschaftskrise</title>
    <link>http://www.klumpp.net/blog/archives/99-Kleine-Erinnerung-zur-momentanen-Finanz-und-Wirtschaftskrise.html</link>
            <category>Gesellschaft</category>
            <category>Ökonomie</category>
    
    <comments>http://www.klumpp.net/blog/archives/99-Kleine-Erinnerung-zur-momentanen-Finanz-und-Wirtschaftskrise.html#comments</comments>
    <wfw:comment>http://www.klumpp.net/blog/wfwcomment.php?cid=99</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.klumpp.net/blog/rss.php?version=2.0&amp;type=comments&amp;cid=99</wfw:commentRss>
    

    <author>nick@klumpp.net (Nikolaus Klumpp)</author>
    <content:encoded>
    &quot;Gewinn ist so notwendig wie die Luft zum Atmen, aber es wäre schlimm, wenn wir nur wirtschaften würden, um Gewinne zu machen, wie es schlimm wäre, wenn wir nur leben würden, um zu atmen.&quot;&lt;p&gt;&lt;em&gt;- Hermann Josef Abs (1901-1994), u.a. langjähriger Sprecher des Vorstands der Deutschen Bank.&lt;/em&gt;&lt;/p&gt;

 
    </content:encoded>

    <pubDate>Sat, 13 Jun 2009 22:29:42 +0200</pubDate>
    <guid isPermaLink="false">http://www.klumpp.net/blog/archives/99-guid.html</guid>
    
</item>
<item>
    <title>Etwas wissen...</title>
    <link>http://www.klumpp.net/blog/archives/98-Etwas-wissen....html</link>
            <category>Gesellschaft</category>
            <category>Ökonomie</category>
    
    <comments>http://www.klumpp.net/blog/archives/98-Etwas-wissen....html#comments</comments>
    <wfw:comment>http://www.klumpp.net/blog/wfwcomment.php?cid=98</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.klumpp.net/blog/rss.php?version=2.0&amp;type=comments&amp;cid=98</wfw:commentRss>
    

    <author>paul@klumpp.net (Paul D. Klumpp)</author>
    <content:encoded>
    &lt;p&gt;Jemand, der viel weiß, will viel wissen. Er ist nicht nur zum ausgefragt werden da.&lt;/p&gt;

 
    </content:encoded>

    <pubDate>Sat, 06 Jun 2009 13:53:13 +0200</pubDate>
    <guid isPermaLink="false">http://www.klumpp.net/blog/archives/98-guid.html</guid>
    
</item>
<item>
    <title>Gentoo und Zim, das Desktop-Wiki: Hinweis zum Update auf Version 0.27</title>
    <link>http://www.klumpp.net/blog/archives/95-Gentoo-und-Zim,-das-Desktop-Wiki-Hinweis-zum-Update-auf-Version-0.27.html</link>
            <category>Technologie</category>
    
    <comments>http://www.klumpp.net/blog/archives/95-Gentoo-und-Zim,-das-Desktop-Wiki-Hinweis-zum-Update-auf-Version-0.27.html#comments</comments>
    <wfw:comment>http://www.klumpp.net/blog/wfwcomment.php?cid=95</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.klumpp.net/blog/rss.php?version=2.0&amp;type=comments&amp;cid=95</wfw:commentRss>
    

    <author>nick@klumpp.net (Nikolaus Klumpp)</author>
    <content:encoded>
    &lt;p&gt;Mein Desktopwiki der Wahl ist Zim (&lt;a href=&quot;http://www.zim-wiki.org&quot; onclick=&quot;window.open(this.href, &#039;_blank&#039;); return false;&quot;&gt;http://www.zim-wiki.org&lt;/a&gt;), eine schlanke, schnörkellose und quelloffene Umsetzung der Wiki-Idee. Zim wurde in Perl mit Hilfe von GTK2 implementiert, ist plattformübergreifend und unentgeltlich.&lt;/p&gt;

&lt;p&gt;Wer die Linux-Distribution &lt;em&gt;Gentoo&lt;/em&gt; einsetzt, darf sich freuen: Die Software befindet sich im Portage-Tree, und kann so ohne große Umstände installiert und bei Bedarf wieder entfernt werden.&lt;/p&gt;

&lt;p&gt;Wer unter Gentoo von einer früheren Version auf die momentan im Tree verfügbare 0.27 aktualisiert (Mitte Februar erschien allerdings bereits 0.28), der sei auf folgendes Problem hingewiesen: &lt;a href=&quot;http://bugs.gentoo.org/249803&quot; onclick=&quot;window.open(this.href, &#039;_blank&#039;); return false;&quot;&gt;http://bugs.gentoo.org/249803&lt;/a&gt;&lt;/p&gt;

 
    </content:encoded>

    <pubDate>Sat, 14 Mar 2009 13:55:16 +0100</pubDate>
    <guid isPermaLink="false">http://www.klumpp.net/blog/archives/95-guid.html</guid>
    
</item>
<item>
    <title>FAIL: Musikalbum gekauft, kaputte CD bekommen.</title>
    <link>http://www.klumpp.net/blog/archives/93-FAIL-Musikalbum-gekauft,-kaputte-CD-bekommen..html</link>
            <category>Gesellschaft</category>
            <category>Ökonomie</category>
    
    <comments>http://www.klumpp.net/blog/archives/93-FAIL-Musikalbum-gekauft,-kaputte-CD-bekommen..html#comments</comments>
    <wfw:comment>http://www.klumpp.net/blog/wfwcomment.php?cid=93</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.klumpp.net/blog/rss.php?version=2.0&amp;type=comments&amp;cid=93</wfw:commentRss>
    

    <author>nick@klumpp.net (Nikolaus Klumpp)</author>
    <content:encoded>
    &lt;p&gt;.. und das, obwohl ich wie immer vor dem Kauf auf den Datenträger gesehen habe, ob der auch wirklich kratzerfrei ist.&lt;/p&gt;

&lt;p&gt;Was hatte ich denn übersehen? Ganz genau: Den Kopierschutz.&lt;/p&gt;

Das Teil hat also einen Kopierschutz.. und funktioniert somit nicht im DVD-Kombilaufwerk meines Laptops. &lt;p&gt;Nicht weiter schlimm, würden die Jungs von der Musikindustrie sagen, spiels doch damit ab, wofür&#039;s gedacht war: Mit einem Audio-CD-Player.&lt;/p&gt;

&lt;p&gt;Sorry. Hab&#039; ich nicht. Dafür habe ich aber einen MP3-Player. Der ist unterwegs ein klein wenig handlicher als so ein CD-Player. Irgendwie. Finde ich.&lt;/p&gt;

&lt;p&gt;Und nun? Zurückgeben kann ich die CD ja nicht. Offene Verpackung und so.&lt;/p&gt;

&lt;p&gt;Vielleicht betätige ich mich künstlerisch. Genau! Ich lass die zusammen mit den ollen AOL-CDs zu einem hübschen Mobile wieder auferstehen. Oder so. Alternativvorschläge werden gerne aufgenommen.&lt;/p&gt;

 
    </content:encoded>

    <pubDate>Sat, 28 Feb 2009 22:49:52 +0100</pubDate>
    <guid isPermaLink="false">http://www.klumpp.net/blog/archives/93-guid.html</guid>
    
</item>
<item>
    <title>How to de-uglificate Firefox and other GTK applications on Gentoo</title>
    <link>http://www.klumpp.net/blog/archives/90-How-to-de-uglificate-Firefox-and-other-GTK-applications-on-Gentoo.html</link>
            <category>Technologie</category>
    
    <comments>http://www.klumpp.net/blog/archives/90-How-to-de-uglificate-Firefox-and-other-GTK-applications-on-Gentoo.html#comments</comments>
    <wfw:comment>http://www.klumpp.net/blog/wfwcomment.php?cid=90</wfw:comment>

    <slash:comments>1</slash:comments>
    <wfw:commentRss>http://www.klumpp.net/blog/rss.php?version=2.0&amp;type=comments&amp;cid=90</wfw:commentRss>
    

    <author>paul@klumpp.net (Paul D. Klumpp)</author>
    <content:encoded>
    &lt;p&gt;If you use KDE or any other nice and nifty desktop you are used to good looking menus and widgets. But once you installed Mozilla Firefox things may look like a silly and ugly GTK application. So ... how to get out of this?&lt;/p&gt;

&lt;p&gt;In Gentoo, things are easy. As root do:&lt;/p&gt;


&lt;ul&gt;
    &lt;li&gt;&lt;tt&gt;# emerge -av gtk-engines-qtcurve gtk-chtheme``&lt;/tt&gt;&lt;/li&gt;
    &lt;li&gt;Confirm the emerge with yes if it&#039;s alright with you :)&lt;/li&gt;
&lt;/ul&gt;

You now have the QtCurve theme for GTK and the theme switcher for GTK installed. &lt;p&gt;Lets switch the GTK part of our desktop to the new theme:&lt;/p&gt;


&lt;ul&gt;
    &lt;li&gt;Open up a shell while inside your graphical desktop. &lt;strong&gt;Note:&lt;/strong&gt; In the shell, don&#039;t be root or you will be changing the GTK theme for the root user. Be the user for who you want to change the theme. :) Most likely, yourself!&lt;/li&gt;
    &lt;li&gt;&lt;tt&gt;$ gtk-chtheme&lt;/tt&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;A window should appear where you can chose QTCurve as a theme.&lt;/p&gt;


&lt;ul&gt;
    &lt;li&gt;Select QtCurve and press OK.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Start up Firefox again and be happy with the nice outfit the buttons now have.&lt;/p&gt;

&lt;p&gt;Paul&lt;/p&gt;

 
    </content:encoded>

    <pubDate>Thu, 15 Jan 2009 00:53:11 +0100</pubDate>
    <guid isPermaLink="false">http://www.klumpp.net/blog/archives/90-guid.html</guid>
    
</item>
<item>
    <title>JSpell Evolution Spellchecker with Confluence 2.10</title>
    <link>http://www.klumpp.net/blog/archives/87-JSpell-Evolution-Spellchecker-with-Confluence-2.10.html</link>
            <category>Technologie</category>
    
    <comments>http://www.klumpp.net/blog/archives/87-JSpell-Evolution-Spellchecker-with-Confluence-2.10.html#comments</comments>
    <wfw:comment>http://www.klumpp.net/blog/wfwcomment.php?cid=87</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.klumpp.net/blog/rss.php?version=2.0&amp;type=comments&amp;cid=87</wfw:commentRss>
    

    <author>paul@klumpp.net (Paul D. Klumpp)</author>
    <content:encoded>
    I have been trying to integrate the &quot;JSpell Evolution&quot; AJAX Spellchecker with the wiki software Confluence (Version 2.10) this morning. And, finally, it works. &lt;a class=&#039;serendipity_image_link&#039; href=&#039;http://www.klumpp.net/blog/uploads/Wiki-Bilder/jspell-conf210.png&#039; onclick=&quot;F1 = window.open(&#039;/blog/uploads/Wiki-Bilder/jspell-conf210.png&#039;,&#039;Zoom&#039;,&#039;height=410,width=1080,top=202.5,left=107.5,toolbar=no,menubar=no,location=no,resize=1,resizable=1,scrollbars=yes&#039;); return false;&quot;&gt;&lt;!-- s9ymdb:7 --&gt;&lt;img class=&quot;serendipity_image_right&quot; width=&quot;150&quot; height=&quot;56&quot; style=&quot;float: right; border: 0px; padding-left: 5px; padding-right: 5px;&quot; src=&quot;http://www.klumpp.net/blog/uploads/Wiki-Bilder/jspell-conf210.serendipityThumb.png&quot; alt=&quot;&quot;  /&gt;&lt;/a&gt;&lt;p&gt;With a little help (&lt;a href=&quot;http://techtime.co.nz/display/TECHTIME/2008/12/15/Integrating+JSpell+into+Confluence+2.9.2&quot; onclick=&quot;window.open(this.href, &#039;_blank&#039;); return false;&quot;&gt;http://techtime.co.nz/display/TECHTIME/2008/12/15/Integrating+JSpell+into+Confluence+2.9.2&lt;/a&gt;) my braincells began working.&lt;/p&gt;

&lt;p&gt;Similarily to the above resource, I made up another step by step procedure for you folks..&lt;/p&gt;

 &lt;br /&gt;&lt;a href=&quot;http://www.klumpp.net/blog/archives/87-JSpell-Evolution-Spellchecker-with-Confluence-2.10.html#extended&quot;&gt;&quot;JSpell Evolution Spellchecker with Confluence 2.10&quot; vollständig lesen&lt;/a&gt;
    </content:encoded>

    <pubDate>Thu, 08 Jan 2009 13:23:07 +0100</pubDate>
    <guid isPermaLink="false">http://www.klumpp.net/blog/archives/87-guid.html</guid>
    
</item>
<item>
    <title>Kommt gut ins neue Jahr!</title>
    <link>http://www.klumpp.net/blog/archives/86-Kommt-gut-ins-neue-Jahr!.html</link>
    
    <comments>http://www.klumpp.net/blog/archives/86-Kommt-gut-ins-neue-Jahr!.html#comments</comments>
    <wfw:comment>http://www.klumpp.net/blog/wfwcomment.php?cid=86</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.klumpp.net/blog/rss.php?version=2.0&amp;type=comments&amp;cid=86</wfw:commentRss>
    

    <author>nick@klumpp.net (Nikolaus Klumpp)</author>
    <content:encoded>
    &lt;p&gt;Feiert schön und lasst es krachen! :-)&lt;/p&gt;

 
    </content:encoded>

    <pubDate>Tue, 30 Dec 2008 22:28:07 +0100</pubDate>
    <guid isPermaLink="false">http://www.klumpp.net/blog/archives/86-guid.html</guid>
    
</item>
<item>
    <title>Frohe Weihnachten!</title>
    <link>http://www.klumpp.net/blog/archives/85-Frohe-Weihnachten!.html</link>
    
    <comments>http://www.klumpp.net/blog/archives/85-Frohe-Weihnachten!.html#comments</comments>
    <wfw:comment>http://www.klumpp.net/blog/wfwcomment.php?cid=85</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.klumpp.net/blog/rss.php?version=2.0&amp;type=comments&amp;cid=85</wfw:commentRss>
    

    <author>nick@klumpp.net (Nikolaus Klumpp)</author>
    <content:encoded>
    Wir wünschen Euch allen ein paar ruhige Festtage! &lt;p&gt;Genießt die Zeit, wenn auch der Schnee wohl noch auf sich warten lässt.&lt;/p&gt;

 
    </content:encoded>

    <pubDate>Wed, 24 Dec 2008 08:34:36 +0100</pubDate>
    <guid isPermaLink="false">http://www.klumpp.net/blog/archives/85-guid.html</guid>
    
</item>
<item>
    <title>&quot;Oh, eine Sache noch..&quot;</title>
    <link>http://www.klumpp.net/blog/archives/84-Oh,-eine-Sache-noch...html</link>
            <category>Szene</category>
            <category>Technologie</category>
    
    <comments>http://www.klumpp.net/blog/archives/84-Oh,-eine-Sache-noch...html#comments</comments>
    <wfw:comment>http://www.klumpp.net/blog/wfwcomment.php?cid=84</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.klumpp.net/blog/rss.php?version=2.0&amp;type=comments&amp;cid=84</wfw:commentRss>
    

    <author>nick@klumpp.net (Nikolaus Klumpp)</author>
    <content:encoded>
    &lt;p&gt;Ok, ich bin tatsächlich nicht Steve Jobs. Trotzdem stelle ich an dieser Stelle was Interessantes vor: &lt;a href=&quot;http://www.b4r.org&quot; onclick=&quot;window.open(this.href, &#039;_blank&#039;); return false;&quot;&gt;http://www.b4r.org&lt;/a&gt;. Gewissermaßen ein kleines Soziales Netzwerk, ähnlich wie die allseits beliebten Netzwerke von Holtzbrinck oder Fox. Der wesentliche Unterschied: Läuft hier auf dem Server - mit Hilfe freier Software.&lt;/p&gt;

&lt;p&gt;Die Engine hierfür heißt &quot;elgg&quot;, ist an sich recht unkompliziert, relativ annehmbar kodiert und unter der GPL-2 verfügbar. Hab&#039; ein paar Kleinigkeiten dran gespengelt, schon vor ein paar Wochen. Hatte mich damit zur Fingerübung beschäftigt.&lt;/p&gt;

&lt;p&gt;&quot;There&#039;s just one catch..&quot;: Ich kann mich in den nächsten Wochen nicht &lt;em&gt;aktiv&lt;/em&gt; um b4r.org kümmern, das Ding könnte also implodieren oder gar einen Riss im Raum-Zeit-Kontinuum verursachen. Wer dennoch Lust drauf hat, kann sich ruhig mal anmelden und umsehen.&lt;/p&gt;

&lt;p&gt;Viel Spaß!&lt;/p&gt;

 
    </content:encoded>

    <pubDate>Mon, 26 May 2008 22:41:20 +0200</pubDate>
    <guid isPermaLink="false">http://www.klumpp.net/blog/archives/84-guid.html</guid>
    
</item>
<item>
    <title>Tabellen aus OpenOffice nach LyX / TeX / LaTeX exportieren</title>
    <link>http://www.klumpp.net/blog/archives/83-Tabellen-aus-OpenOffice-nach-LyX-TeX-LaTeX-exportieren.html</link>
            <category>Technologie</category>
    
    <comments>http://www.klumpp.net/blog/archives/83-Tabellen-aus-OpenOffice-nach-LyX-TeX-LaTeX-exportieren.html#comments</comments>
    <wfw:comment>http://www.klumpp.net/blog/wfwcomment.php?cid=83</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.klumpp.net/blog/rss.php?version=2.0&amp;type=comments&amp;cid=83</wfw:commentRss>
    

    <author>nick@klumpp.net (Nikolaus Klumpp)</author>
    <content:encoded>
    LyX (&lt;a href=&quot;http://www.lyx.org/&quot; onclick=&quot;window.open(this.href, &#039;_blank&#039;); return false;&quot;&gt;http://www.lyx.org/&lt;/a&gt;) ist schon eine knorke Sache: Die Mächtigkeit von TeX gepaart mit leichtgängiger Präsentation, vereint unter einer angenehmen Oberfläche. Genau jene aber versagt, wenn es um Tabellen geht - nichtmal so sehr bei der &lt;em&gt;Bearbeitung&lt;/em&gt; von Tabellen, sondern beim &lt;em&gt;Import&lt;/em&gt;: Aus Tabellenkalkulationen, wie z.B. OpenOffice Calc. Nun ist es aber so, dass man bei wissenschaftlichen Arbeiten die eine oder andere Kleinigkeit zu berechnen hat, und es doch ein wenig mühsam ist, die mitunter zahlreichen Ergebnisse aus der Tabellenkalkulation quasi per Hand Stück für Stück in eine LyX-Tabelle zu übertragen.&lt;p&gt;Eine pragmatische Abhilfe schafft hier das Makro &quot;calc2latex&quot; (&lt;a href=&quot;http://calc2latex.sourceforge.net/&quot; onclick=&quot;window.open(this.href, &#039;_blank&#039;); return false;&quot;&gt;http://calc2latex.sourceforge.net/&lt;/a&gt;) von Shohei Abe. Es ist zwar offiziell nur bis OpenOffice 2.0 getestet, tut aber auch ganz gut unter Version 2.4.&lt;/p&gt;

 
    </content:encoded>

    <pubDate>Mon, 26 May 2008 02:20:01 +0200</pubDate>
    <guid isPermaLink="false">http://www.klumpp.net/blog/archives/83-guid.html</guid>
    
</item>
<item>
    <title>31,50 USD</title>
    <link>http://www.klumpp.net/blog/archives/82-31,50-USD.html</link>
            <category>Energie</category>
            <category>Gesellschaft</category>
            <category>Ökonomie</category>
    
    <comments>http://www.klumpp.net/blog/archives/82-31,50-USD.html#comments</comments>
    <wfw:comment>http://www.klumpp.net/blog/wfwcomment.php?cid=82</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.klumpp.net/blog/rss.php?version=2.0&amp;type=comments&amp;cid=82</wfw:commentRss>
    

    <author>nick@klumpp.net (Nikolaus Klumpp)</author>
    <content:encoded>
    &lt;p&gt;Soviel verlangt ScienceDirect für das PDF eines wissenschaftlichen Artikels, der unter Umständen interessant für meine momentane Arbeit wäre.&lt;/p&gt;

&lt;p&gt;Schon krass: Öffentlich geförderte Wissenschaft hinter einer Mauer von Geld versteckt.&lt;/p&gt;

&lt;p&gt;Falls mich der Artikel in den nächsten Tagen noch immer interessieren sollte, werde ich mal sehen, ob ich nicht über eine der Bibliotheksdatenbanken der Uni oder Hs drankomme.&lt;/p&gt;

 
    </content:encoded>

    <pubDate>Fri, 23 May 2008 00:36:33 +0200</pubDate>
    <guid isPermaLink="false">http://www.klumpp.net/blog/archives/82-guid.html</guid>
    
</item>
<item>
    <title>Der EU-Energiekommissar bloggt!</title>
    <link>http://www.klumpp.net/blog/archives/81-Der-EU-Energiekommissar-bloggt!.html</link>
            <category>Energie</category>
            <category>Gesellschaft</category>
            <category>Ökonomie</category>
    
    <comments>http://www.klumpp.net/blog/archives/81-Der-EU-Energiekommissar-bloggt!.html#comments</comments>
    <wfw:comment>http://www.klumpp.net/blog/wfwcomment.php?cid=81</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.klumpp.net/blog/rss.php?version=2.0&amp;type=comments&amp;cid=81</wfw:commentRss>
    

    <author>nick@klumpp.net (Nikolaus Klumpp)</author>
    <content:encoded>
    .. Das aber nimmt nicht wirklich Wunder, wenn man bedenkt, dass Andris Piebalgs (&lt;a href=&quot;http://de.wikipedia.org/wiki/Andris_Piebalgs&quot; onclick=&quot;window.open(this.href, &#039;_blank&#039;); return false;&quot;&gt;http://de.wikipedia.org/wiki/Andris_Piebalgs&lt;/a&gt;) aus Lettland stammt. Das Baltikum gilt ja gemeinhin als Vorreiter im Bereich des &quot;eGovernment&quot; -- was genau auch immer man sich darunter vorzustellen hat. &lt;p&gt;Hier in diesem Fall den einen oder anderen Einblick in die Gedanken- und Politikwelt eines der wichtigsten Kommissionsmitglieder: &lt;a href=&quot;http://blogs.ec.europa.eu/piebalgs/&quot; onclick=&quot;window.open(this.href, &#039;_blank&#039;); return false;&quot;&gt;http://blogs.ec.europa.eu/piebalgs/&lt;/a&gt;&lt;/p&gt;

 
    </content:encoded>

    <pubDate>Thu, 15 May 2008 18:30:07 +0200</pubDate>
    <guid isPermaLink="false">http://www.klumpp.net/blog/archives/81-guid.html</guid>
    
</item>
<item>
    <title>Neues von Herrn K. (II)</title>
    <link>http://www.klumpp.net/blog/archives/80-Neues-von-Herrn-K.-II.html</link>
            <category>Gesellschaft</category>
            <category>Ökonomie</category>
    
    <comments>http://www.klumpp.net/blog/archives/80-Neues-von-Herrn-K.-II.html#comments</comments>
    <wfw:comment>http://www.klumpp.net/blog/wfwcomment.php?cid=80</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.klumpp.net/blog/rss.php?version=2.0&amp;type=comments&amp;cid=80</wfw:commentRss>
    

    <author>nick@klumpp.net (Nikolaus Klumpp)</author>
    <content:encoded>
    &lt;p&gt;Eines Sonntagnachmittags marschierte Herr K. durch eine Ausstellung moderner Kunst. Wissen Sie, sagte er zu seiner Begleitung, ich denke, viele dieser Künstler erhalten ihren Ruhm alleine durch das, was der Betrachter wohl in ihre Werke hereinzuinterpretieren vermag.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;(Ursprünglich entstanden im Sommer letzten Jahres.)&lt;/em&gt;&lt;/p&gt;

 
    </content:encoded>

    <pubDate>Mon, 10 Mar 2008 19:45:00 +0100</pubDate>
    <guid isPermaLink="false">http://www.klumpp.net/blog/archives/80-guid.html</guid>
    
</item>

</channel>
</rss>