<?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>C.Hermann's work blog</title>
    <link>http://algo.informatik.uni-freiburg.de/~hermann/blog/</link>
    <description>Alles über meine Arbeit</description>
    <dc:language>en</dc:language>
    <generator>Serendipity 1.4.1 - http://www.s9y.org/</generator>
    <pubDate>Mon, 25 Jun 2007 10:42:32 GMT</pubDate>

    <image>
        <url>http://algo.informatik.uni-freiburg.de/~hermann/blog/templates/default/img/s9y_banner_small.png</url>
        <title>RSS: C.Hermann's work blog - Alles über meine Arbeit</title>
        <link>http://algo.informatik.uni-freiburg.de/~hermann/blog/</link>
        <width>100</width>
        <height>21</height>
    </image>

<item>
    <title>Enabling the pen in Acrobat 6 via Keyboard Shortcut</title>
    <link>http://algo.informatik.uni-freiburg.de/~hermann/blog/archives/22-Enabling-the-pen-in-Acrobat-6-via-Keyboard-Shortcut.html</link>
            <category>Stuff</category>
    
    <comments>http://algo.informatik.uni-freiburg.de/~hermann/blog/archives/22-Enabling-the-pen-in-Acrobat-6-via-Keyboard-Shortcut.html#comments</comments>
    <wfw:comment>http://algo.informatik.uni-freiburg.de/~hermann/blog/wfwcomment.php?cid=22</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://algo.informatik.uni-freiburg.de/~hermann/blog/rss.php?version=2.0&amp;type=comments&amp;cid=22</wfw:commentRss>
    

    <author>nospam@example.com (Christoph Hermann)</author>
    <content:encoded>
    In Acrobat 6 you first have to enable the Tools keyboard shortcuts (see picture).&lt;br /&gt;
&lt;a class=&#039;serendipity_image_link&#039; href=&#039;http://algo.informatik.uni-freiburg.de/~hermann/blog/uploads/stuff/acrobat-options.JPG&#039; rel=&#039;lightbox&#039; title=&#039;Acrobat Options&#039;&gt;&lt;img width=&#039;150&#039; height=&#039;113&#039; style=&quot;float: left; border: 0px; padding-left: 5px; padding-right: 5px;&quot; src=&quot;http://algo.informatik.uni-freiburg.de/~hermann/blog/uploads/stuff/acrobat-options.serendipityThumb.JPG&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
then you can press Ctrl+l to go to fullscreen mode, then press n to enable the pen tool. 
    </content:encoded>

    <pubDate>Mon, 25 Jun 2007 12:42:32 +0200</pubDate>
    <guid isPermaLink="false">http://algo.informatik.uni-freiburg.de/~hermann/blog/archives/22-guid.html</guid>
    <category>acrobat</category>
<category>pdf</category>
<category>pen</category>
<category>pen tool</category>
<category>presentation</category>
<category>stuff</category>

</item>
<item>
    <title>Opentype Fonts with Latex using xetex</title>
    <link>http://algo.informatik.uni-freiburg.de/~hermann/blog/archives/21-Opentype-Fonts-with-Latex-using-xetex.html</link>
            <category>Stuff</category>
    
    <comments>http://algo.informatik.uni-freiburg.de/~hermann/blog/archives/21-Opentype-Fonts-with-Latex-using-xetex.html#comments</comments>
    <wfw:comment>http://algo.informatik.uni-freiburg.de/~hermann/blog/wfwcomment.php?cid=21</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://algo.informatik.uni-freiburg.de/~hermann/blog/rss.php?version=2.0&amp;type=comments&amp;cid=21</wfw:commentRss>
    

    <author>nospam@example.com (Christoph Hermann)</author>
    <content:encoded>
    With &lt;a href=&quot;http://scripts.sil.org/xetex&quot;  title=&quot;xetex&quot;&gt;xetex&lt;/a&gt; you can easily use Opentype fonts in latex. There is no need for any conversion or anything, xetex can use any of the fonts you installed on your system (works fine unter linux) even if its opentype fonts that are not postscript, but truetype flavored.
Unter Gentoo Linux you just install &lt;em&gt;app-text/xetex&lt;/em&gt; (additionally to tetex) and thats it!
&lt;blockquote&gt;&lt;pre&gt;% Load fontspec package to easily use fonts
\usepackage{fontspec}
% set fonts
\fontspec[BoldFont={Textra LT Com}, BoldFeatures={Weight=1.4}]{Textra LT Com}
\setromanfont{Textra LT Com}
%\setsansfont{Textra LT Com}
%\setmonofont{Textra LT Com}
&lt;/pre&gt;&lt;/blockquote&gt;
Inserting this makes the default font &quot;Textra LT Com&quot; (you can find out this name with &lt;em&gt;fc-list&lt;/em&gt;).
Then you can run xelatex (i.e. &quot;xelatex myfile&quot; if your tex file is called myfile.tex) on the File and it will result in a pdf nicely formatted using your font.

&lt;strong&gt;[Update 2007-06-21]:&lt;/strong&gt;
If you upgraded freetype to Version &gt;2.1.10-r3 (media-libs/freetype-2.1.10-r3) this might break the opentype/xetex support. So just downgrade to 2.1.10-r3 and everything should be fine again.
&lt;blockquote&gt;&lt;pre&gt;emerge -av =media-libs/freetype-2.1.10-r3&lt;/pre&gt;&lt;/blockquote&gt;

&lt;strong&gt;[Update 2007-07-23]:&lt;/strong&gt;
Make sure you also mask freetype packages &gt; this Version, else the next upgrade will break it again &lt;img src=&quot;http://algo.informatik.uni-freiburg.de/~hermann/blog/templates/default/img/emoticons/wink.png&quot; alt=&quot;;-)&quot; style=&quot;display: inline; vertical-align: bottom;&quot; class=&quot;emoticon&quot; /&gt;
&lt;blockquote&gt;&lt;pre&gt;grep freetype /etc/portage/package.mask
&gt;media-libs/freetype-2.1.10-r3&lt;/pre&gt;&lt;/blockquote&gt; 
    </content:encoded>

    <pubDate>Thu, 21 Jun 2007 18:51:00 +0200</pubDate>
    <guid isPermaLink="false">http://algo.informatik.uni-freiburg.de/~hermann/blog/archives/21-guid.html</guid>
    <category>latex</category>
<category>opentype font</category>
<category>opentype truetype</category>
<category>stuff</category>
<category>xetex</category>

</item>
<item>
    <title>&quot;Installing&quot; Lecturnity under Linux</title>
    <link>http://algo.informatik.uni-freiburg.de/~hermann/blog/archives/20-Installing-Lecturnity-under-Linux.html</link>
            <category>Students</category>
            <category>Stuff</category>
    
    <comments>http://algo.informatik.uni-freiburg.de/~hermann/blog/archives/20-Installing-Lecturnity-under-Linux.html#comments</comments>
    <wfw:comment>http://algo.informatik.uni-freiburg.de/~hermann/blog/wfwcomment.php?cid=20</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://algo.informatik.uni-freiburg.de/~hermann/blog/rss.php?version=2.0&amp;type=comments&amp;cid=20</wfw:commentRss>
    

    <author>nospam@example.com (Christoph Hermann)</author>
    <content:encoded>
    First, one has to &lt;a href=&quot;http://132.230.139.59/dl/dl.php?op=CPJ170p6&quot;&gt;download the Lecturnity Jar File&lt;/a&gt;.
Then, i wrote this small shell-script (i called it &quot;lecturnity-player&quot;) to start the lecturnity player with parameters:
&lt;blockquote&gt;&lt;pre&gt;#!/bin/sh

JAR=&quot;player170p6.jar&quot;

# check Java Home and set it if not available (Gentoo-Version)
if [ -z &quot;$JAVA_HOME&quot; -o &quot;$JAVA_HOME&quot; = &quot;&quot; ]
then
        JAVA_HOME=`java-config --jre-home`
fi

$JAVA_HOME/bin/java -jar /opt/lecturnity/$JAR $@
&lt;/pre&gt;&lt;/blockquote&gt;
If $JAVA_HOME is already set on your system (echo $JAVA_HOME) you don&#039;t need the JAVA_HOME-Check.

chmod the File executable: chmod u+x lecturnity-player

Then you can play lecturnity Files with &lt;em&gt;lecturnity-player /path/to/file.lpd&lt;/em&gt;.
One Remark: It is not possible to player the Video Versions under Linux (at least it does not work here, it simply plays them without Video).
Using this with Firefox: Click on a link to a Lecturnity File and choose lecturnity-player in the &quot;run with&quot; Dialog. Then Lecturnity Files will automatically play when you click on a link (takes some time to start the player). 
    </content:encoded>

    <pubDate>Mon, 02 Apr 2007 08:47:57 +0200</pubDate>
    <guid isPermaLink="false">http://algo.informatik.uni-freiburg.de/~hermann/blog/archives/20-guid.html</guid>
    <category>ad-staff</category>
<category>lecturnity</category>
<category>linux</category>
<category>students</category>
<category>stuff</category>

</item>
<item>
    <title>Bird of prey visiting Building 51</title>
    <link>http://algo.informatik.uni-freiburg.de/~hermann/blog/archives/19-Bird-of-prey-visiting-Building-51.html</link>
            <category>Stuff</category>
    
    <comments>http://algo.informatik.uni-freiburg.de/~hermann/blog/archives/19-Bird-of-prey-visiting-Building-51.html#comments</comments>
    <wfw:comment>http://algo.informatik.uni-freiburg.de/~hermann/blog/wfwcomment.php?cid=19</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://algo.informatik.uni-freiburg.de/~hermann/blog/rss.php?version=2.0&amp;type=comments&amp;cid=19</wfw:commentRss>
    

    <author>nospam@example.com (Christoph Hermann)</author>
    <content:encoded>
    &lt;a class=&#039;serendipity_image_link&#039; href=&#039;http://algo.informatik.uni-freiburg.de/~hermann/blog/uploads/stuff/10070_2639_cut_750.jpg&#039; rel=&#039;lightbox&#039;&gt;&lt;img width=&#039;100&#039; height=&#039;150&#039; style=&quot;float: left; border: 0px; padding-left: 5px; padding-right: 5px;&quot; src=&quot;http://algo.informatik.uni-freiburg.de/~hermann/blog/uploads/stuff/10070_2639_cut_750.serendipityThumb.jpg&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
Today we had a visit by a bird of prey (Greifvogel; &lt;em&gt;Turmfalke&lt;/em&gt; (in german) also known as &lt;em&gt;Falco tinnunculus&lt;/em&gt;). He seemed to be very young and shy. Thats why i first took a picture through the windows (good idea) because when i tried to open the window very silently he flew away &lt;img src=&quot;http://algo.informatik.uni-freiburg.de/~hermann/blog/templates/default/img/emoticons/sad.png&quot; alt=&quot;:-(&quot; style=&quot;display: inline; vertical-align: bottom;&quot; class=&quot;emoticon&quot; /&gt;. Anyway at least i got one picture &lt;img src=&quot;http://algo.informatik.uni-freiburg.de/~hermann/blog/templates/default/img/emoticons/wink.png&quot; alt=&quot;;-)&quot; style=&quot;display: inline; vertical-align: bottom;&quot; class=&quot;emoticon&quot; /&gt; 
    </content:encoded>

    <pubDate>Wed, 28 Feb 2007 17:12:47 +0100</pubDate>
    <guid isPermaLink="false">http://algo.informatik.uni-freiburg.de/~hermann/blog/archives/19-guid.html</guid>
    <category>bird</category>
<category>fotos</category>
<category>fun</category>
<category>raptor</category>
<category>stuff</category>

</item>
<item>
    <title>Khaireels Joke of the Day</title>
    <link>http://algo.informatik.uni-freiburg.de/~hermann/blog/archives/18-Khaireels-Joke-of-the-Day.html</link>
            <category>Khaireels Jokes</category>
    
    <comments>http://algo.informatik.uni-freiburg.de/~hermann/blog/archives/18-Khaireels-Joke-of-the-Day.html#comments</comments>
    <wfw:comment>http://algo.informatik.uni-freiburg.de/~hermann/blog/wfwcomment.php?cid=18</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://algo.informatik.uni-freiburg.de/~hermann/blog/rss.php?version=2.0&amp;type=comments&amp;cid=18</wfw:commentRss>
    

    <author>nospam@example.com (Christoph Hermann)</author>
    <content:encoded>
    &lt;blockquote&gt;&lt;pre&gt;K: I threw the butter out of the window. Do you know why?
C: hm?
K: Because i wanted to see the butter fly.&lt;/pre&gt;&lt;/blockquote&gt; 
    </content:encoded>

    <pubDate>Wed, 14 Feb 2007 13:16:03 +0100</pubDate>
    <guid isPermaLink="false">http://algo.informatik.uni-freiburg.de/~hermann/blog/archives/18-guid.html</guid>
    <category>ad-staff</category>
<category>jokes</category>
<category>khaireels jokes</category>
<category>stuff</category>

</item>
<item>
    <title>Khaireels Joke of the Day</title>
    <link>http://algo.informatik.uni-freiburg.de/~hermann/blog/archives/17-Khaireels-Joke-of-the-Day.html</link>
            <category>Khaireels Jokes</category>
    
    <comments>http://algo.informatik.uni-freiburg.de/~hermann/blog/archives/17-Khaireels-Joke-of-the-Day.html#comments</comments>
    <wfw:comment>http://algo.informatik.uni-freiburg.de/~hermann/blog/wfwcomment.php?cid=17</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://algo.informatik.uni-freiburg.de/~hermann/blog/rss.php?version=2.0&amp;type=comments&amp;cid=17</wfw:commentRss>
    

    <author>nospam@example.com (Christoph Hermann)</author>
    <content:encoded>
    &lt;blockquote&gt;&lt;pre&gt;K: You always sleep longer than all of us. Do you know why?
C: No?
K: You are taller than all of us.&lt;/pre&gt;&lt;/blockquote&gt; 
    </content:encoded>

    <pubDate>Tue, 13 Feb 2007 18:00:00 +0100</pubDate>
    <guid isPermaLink="false">http://algo.informatik.uni-freiburg.de/~hermann/blog/archives/17-guid.html</guid>
    <category>ad-staff</category>
<category>jokes</category>
<category>khaireels jokes</category>
<category>stuff</category>

</item>
<item>
    <title>Firmware Upgrade des Kopierers</title>
    <link>http://algo.informatik.uni-freiburg.de/~hermann/blog/archives/16-Firmware-Upgrade-des-Kopierers.html</link>
            <category>Stuff</category>
    
    <comments>http://algo.informatik.uni-freiburg.de/~hermann/blog/archives/16-Firmware-Upgrade-des-Kopierers.html#comments</comments>
    <wfw:comment>http://algo.informatik.uni-freiburg.de/~hermann/blog/wfwcomment.php?cid=16</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://algo.informatik.uni-freiburg.de/~hermann/blog/rss.php?version=2.0&amp;type=comments&amp;cid=16</wfw:commentRss>
    

    <author>nospam@example.com (Christoph Hermann)</author>
    <content:encoded>
    Mir scheint die Firmware unseres Kopierers wurde geupgraded. Anstatt&lt;blockquote&gt;&lt;p&gt;&lt;em&gt;Schlüsselzähler einstecken&lt;/em&gt;&lt;/p&gt;&lt;/blockquote&gt;&lt;br /&gt;
berichtet er jetzt&lt;blockquote&gt;&lt;p&gt;&lt;em&gt;Benutzercode eingeben&lt;/em&gt;.&lt;/p&gt;&lt;/blockquote&gt;&lt;br /&gt;
Ich hoffe jedenfalls, dass sich damit auch das &quot;Tonerrest entfernen&quot;-Problem gelöst hat, das eigentlich &quot;Papierstau entfernen&quot;-Problem heissen müsste.&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;[Update 2007-02-07 15:26]&lt;/strong&gt;&lt;br /&gt;
&lt;br /&gt;
Wie ich gerade erfahren habe kriegen wir morgen einen ganz neuen Kopierer, weil unserer schon wieder streikt. 
    </content:encoded>

    <pubDate>Tue, 06 Feb 2007 17:54:12 +0100</pubDate>
    <guid isPermaLink="false">http://algo.informatik.uni-freiburg.de/~hermann/blog/archives/16-guid.html</guid>
    <category>administration</category>
<category>kopierer</category>
<category>stuff</category>

</item>
<item>
    <title>Disputation of Tobias Lauer</title>
    <link>http://algo.informatik.uni-freiburg.de/~hermann/blog/archives/15-Disputation-of-Tobias-Lauer.html</link>
            <category>AD-Staff</category>
            <category>Fotos</category>
    
    <comments>http://algo.informatik.uni-freiburg.de/~hermann/blog/archives/15-Disputation-of-Tobias-Lauer.html#comments</comments>
    <wfw:comment>http://algo.informatik.uni-freiburg.de/~hermann/blog/wfwcomment.php?cid=15</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://algo.informatik.uni-freiburg.de/~hermann/blog/rss.php?version=2.0&amp;type=comments&amp;cid=15</wfw:commentRss>
    

    <author>nospam@example.com (Christoph Hermann)</author>
    <content:encoded>
    &lt;a class=&#039;serendipity_image_link&#039; href=&#039;http://algo.informatik.uni-freiburg.de/~hermann/blog/uploads/stuff/10070_2628_750.jpg&#039; rel=&#039;lightbox&#039;&gt;&lt;img width=&#039;100&#039; height=&#039;150&#039; style=&quot;float: left; border: 0px; padding-left: 5px; padding-right: 5px;&quot; src=&quot;http://algo.informatik.uni-freiburg.de/~hermann/blog/uploads/stuff/10070_2628_750.serendipityThumb.jpg&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;On 29th of January Tobias held his Disputation about his Thesis &quot;Potentials and Limitations of Visual Methods for the Exploration of &lt;br /&gt;
Complex Data Structures&quot;. The talk was very interesting and although Tobias was very nervous at the beginning he made it (in my opinion) very good.&lt;br /&gt;
I took some &lt;a href=&quot;http://ad.informatik.uni-freiburg.de/gallery/main.php?g2_itemId=1893&quot;&gt;pictures&lt;/a&gt; of the &quot;Event&quot; which you can see at the &lt;a href=&quot;http://ad.informatik.uni-freiburg.de/gallery/main.php?g2_itemId=1893&quot;&gt;AD Gallery&lt;/a&gt;. 
    </content:encoded>

    <pubDate>Tue, 30 Jan 2007 15:27:19 +0100</pubDate>
    <guid isPermaLink="false">http://algo.informatik.uni-freiburg.de/~hermann/blog/archives/15-guid.html</guid>
    <category>ad-staff</category>
<category>disputation</category>
<category>dissertation</category>
<category>fotos</category>
<category>tobias lauer</category>

</item>
<item>
    <title>The Authors List</title>
    <link>http://algo.informatik.uni-freiburg.de/~hermann/blog/archives/14-The-Authors-List.html</link>
            <category>Stuff</category>
    
    <comments>http://algo.informatik.uni-freiburg.de/~hermann/blog/archives/14-The-Authors-List.html#comments</comments>
    <wfw:comment>http://algo.informatik.uni-freiburg.de/~hermann/blog/wfwcomment.php?cid=14</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://algo.informatik.uni-freiburg.de/~hermann/blog/rss.php?version=2.0&amp;type=comments&amp;cid=14</wfw:commentRss>
    

    <author>nospam@example.com (Christoph Hermann)</author>
    <content:encoded>
    &lt;a class=&#039;serendipity_image_link&#039; href=&#039;http://algo.informatik.uni-freiburg.de/~hermann/blog/uploads/stuff/author-list_phd031305s.gif&#039; rel=&#039;lightbox&#039;&gt;&lt;img width=&#039;150&#039; height=&#039;65&#039; style=&quot;float: left; border: 0px; padding-left: 5px; padding-right: 5px;&quot; src=&quot;http://algo.informatik.uni-freiburg.de/~hermann/blog/uploads/stuff/author-list_phd031305s.serendipityThumb.gif&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
This is how the authors List on Papers is ordered. You can verify this easily through &lt;a href=&quot;http://scholar.google.com&quot;&gt;Google Scholar&lt;/a&gt;.&lt;br /&gt;
Thanks to &lt;a href=&quot;http://www.phdcomics.com&quot;&gt;phdcomic.com&lt;/a&gt;. 
    </content:encoded>

    <pubDate>Mon, 29 Jan 2007 11:06:00 +0100</pubDate>
    <guid isPermaLink="false">http://algo.informatik.uni-freiburg.de/~hermann/blog/archives/14-guid.html</guid>
    <category>phdcomics.com</category>
<category>stuff</category>

</item>
<item>
    <title>Thesis Title</title>
    <link>http://algo.informatik.uni-freiburg.de/~hermann/blog/archives/13-Thesis-Title.html</link>
            <category>Students</category>
            <category>Stuff</category>
    
    <comments>http://algo.informatik.uni-freiburg.de/~hermann/blog/archives/13-Thesis-Title.html#comments</comments>
    <wfw:comment>http://algo.informatik.uni-freiburg.de/~hermann/blog/wfwcomment.php?cid=13</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://algo.informatik.uni-freiburg.de/~hermann/blog/rss.php?version=2.0&amp;type=comments&amp;cid=13</wfw:commentRss>
    

    <author>nospam@example.com (Christoph Hermann)</author>
    <content:encoded>
    &lt;a rel=&quot;lightbox&quot; class=&#039;serendipity_image_link&#039; href=&#039;http://algo.informatik.uni-freiburg.de/~hermann/blog/uploads/students/thesis-title_phd053106s.gif&#039;&gt;&lt;img width=&#039;150&#039; height=&#039;65&#039; style=&quot;float: left; border: 0px; padding-left: 5px; padding-right: 5px;&quot; src=&quot;http://algo.informatik.uni-freiburg.de/~hermann/blog/uploads/students/thesis-title_phd053106s.serendipityThumb.gif&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;I just discovered a nice little Comic on &lt;a href=&quot;http://www.phdcomics.com&quot;&gt;phdcomics.com&lt;/a&gt; which gives you hints on what name your thesis shall have. 
    </content:encoded>

    <pubDate>Wed, 17 Jan 2007 16:24:26 +0100</pubDate>
    <guid isPermaLink="false">http://algo.informatik.uni-freiburg.de/~hermann/blog/archives/13-guid.html</guid>
    <category>phdcomics.com</category>
<category>students</category>
<category>stuff</category>

</item>
<item>
    <title>One of the most stupid E-Mails i ever received</title>
    <link>http://algo.informatik.uni-freiburg.de/~hermann/blog/archives/12-One-of-the-most-stupid-E-Mails-i-ever-received.html</link>
            <category>Fun Mails</category>
    
    <comments>http://algo.informatik.uni-freiburg.de/~hermann/blog/archives/12-One-of-the-most-stupid-E-Mails-i-ever-received.html#comments</comments>
    <wfw:comment>http://algo.informatik.uni-freiburg.de/~hermann/blog/wfwcomment.php?cid=12</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://algo.informatik.uni-freiburg.de/~hermann/blog/rss.php?version=2.0&amp;type=comments&amp;cid=12</wfw:commentRss>
    

    <author>nospam@example.com (Christoph Hermann)</author>
    <content:encoded>
    &lt;blockquote&gt;&lt;pre&gt;Guten Tag,
wir wollen ein &quot;Ping Pong Spiel&quot; mit Javascript herstellen. Aber wir haben ein Problem und kommen nicht weiter. Dann kamen wir auf die Idee an die Universität für Informatik in Rostock zu schreiben und um Hilfe zu bitten.&lt;/pre&gt;&lt;/blockquote&gt;
&lt;br /&gt;
Okay, University of Rostock... very interesting.&lt;br /&gt;&lt;br /&gt; &lt;br /&gt;&lt;a href=&quot;http://algo.informatik.uni-freiburg.de/~hermann/blog/archives/12-One-of-the-most-stupid-E-Mails-i-ever-received.html#extended&quot;&gt;Continue reading &quot;One of the most stupid E-Mails i ever received&quot;&lt;/a&gt;
    </content:encoded>

    <pubDate>Thu, 04 Jan 2007 10:03:44 +0100</pubDate>
    <guid isPermaLink="false">http://algo.informatik.uni-freiburg.de/~hermann/blog/archives/12-guid.html</guid>
    <category>fun mails</category>

</item>
<item>
    <title>Trip to Europapark</title>
    <link>http://algo.informatik.uni-freiburg.de/~hermann/blog/archives/11-Trip-to-Europapark.html</link>
            <category>Fotos</category>
    
    <comments>http://algo.informatik.uni-freiburg.de/~hermann/blog/archives/11-Trip-to-Europapark.html#comments</comments>
    <wfw:comment>http://algo.informatik.uni-freiburg.de/~hermann/blog/wfwcomment.php?cid=11</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://algo.informatik.uni-freiburg.de/~hermann/blog/rss.php?version=2.0&amp;type=comments&amp;cid=11</wfw:commentRss>
    

    <author>nospam@example.com (Christoph Hermann)</author>
    <content:encoded>
    &lt;a class=&#039;serendipity_image_link&#039; href=&#039;http://ad.informatik.uni-freiburg.de/gallery/main.php?g2_itemId=1157&#039;&gt;&lt;img width=&#039;150&#039; height=&#039;100&#039; style=&quot;float: left; border: 0px; padding-left: 5px; padding-right: 5px;&quot; src=&quot;http://algo.informatik.uni-freiburg.de/~hermann/blog/uploads/221_2122.serendipityThumb.jpg&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;Today i uploaded the &lt;a href=&#039;http://ad.informatik.uni-freiburg.de/gallery/main.php?g2_itemId=1157&#039;&gt;pictures from our trip to the Europapark&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
I took some pictures while riding some of the rollercoasters, please forgive that they are quite out of focus some time &lt;img src=&quot;http://algo.informatik.uni-freiburg.de/~hermann/blog/templates/default/img/emoticons/wink.png&quot; alt=&quot;;-)&quot; style=&quot;display: inline; vertical-align: bottom;&quot; class=&quot;emoticon&quot; /&gt;&lt;br /&gt;
&lt;br /&gt;
First rollercoaster we took was the &lt;a href=&quot;http://www.europapark.de/index.php?ctemplate=parktemplate_&amp;amp;id=126&amp;amp;cid=32&amp;amp;lang=de&quot;&gt;Silver Star&lt;/a&gt; which is the biggest Rollercoaster in Europe. It has a height of 73m, a maximum speed of 130 km/h and enormous centrifugal forces up to 4g. Even Karen took the ride &lt;img src=&quot;http://algo.informatik.uni-freiburg.de/~hermann/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;
After this, we took one Rollercoaster after the other (the interesting ones). At midday we had lunch in some resturant and just after this we took the VINDJAMMER in Scandinavia.&lt;br /&gt;
&lt;br /&gt;
It was very fun, especially &lt;a href=&quot;http://ad.informatik.uni-freiburg.de/gallery/main.php?g2_itemId=1421&quot;&gt;Karens&#039; and Leandros&#039; performance&lt;/a&gt; in the evening. The participants were judged by the noise the audience made after the song, so I tried to whistle as loud as I could, but unfortunately it wasn&#039;t loud enough, so they didn&#039;t win the contest &lt;img src=&quot;http://algo.informatik.uni-freiburg.de/~hermann/blog/templates/default/img/emoticons/sad.png&quot; alt=&quot;:-(&quot; style=&quot;display: inline; vertical-align: bottom;&quot; class=&quot;emoticon&quot; /&gt; 
    </content:encoded>

    <pubDate>Wed, 30 Aug 2006 20:46:00 +0200</pubDate>
    <guid isPermaLink="false">http://algo.informatik.uni-freiburg.de/~hermann/blog/archives/11-guid.html</guid>
    <category>fotos</category>

</item>
<item>
    <title>Sommercampus 2006: PHP</title>
    <link>http://algo.informatik.uni-freiburg.de/~hermann/blog/archives/10-Sommercampus-2006-PHP.html</link>
            <category>Study</category>
    
    <comments>http://algo.informatik.uni-freiburg.de/~hermann/blog/archives/10-Sommercampus-2006-PHP.html#comments</comments>
    <wfw:comment>http://algo.informatik.uni-freiburg.de/~hermann/blog/wfwcomment.php?cid=10</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://algo.informatik.uni-freiburg.de/~hermann/blog/rss.php?version=2.0&amp;type=comments&amp;cid=10</wfw:commentRss>
    

    <author>nospam@example.com (Christoph Hermann)</author>
    <content:encoded>
    I just updated the Information about the Sommercampus 2006 and uploaded the Slides and the Script of the PHP Course Dominik Benz and me gave together.&lt;br /&gt;
Here you can find more Information (Slides etc.) on the Course: &lt;a href=&quot;pages/sommercampus2006.html&quot;  title=&quot;PHP Courses&quot;&gt;PHP Courses (Sommercampus 2006)&lt;/a&gt;&lt;br /&gt;
Please also evaluate our Course on the Sommercampus Webpage: &lt;a href=&quot;http://sommercampus2006.informatik.uni-freiburg.de/Evaluation&quot;  title=&quot;Evaluation&quot;&gt;Evaluation of the Sommercampus&lt;/a&gt; 
    </content:encoded>

    <pubDate>Tue, 22 Aug 2006 14:43:59 +0200</pubDate>
    <guid isPermaLink="false">http://algo.informatik.uni-freiburg.de/~hermann/blog/archives/10-guid.html</guid>
    <category>Study</category>

</item>
<item>
    <title>New eLectures-Search Engine</title>
    <link>http://algo.informatik.uni-freiburg.de/~hermann/blog/archives/9-New-eLectures-Search-Engine.html</link>
            <category>Administration</category>
    
    <comments>http://algo.informatik.uni-freiburg.de/~hermann/blog/archives/9-New-eLectures-Search-Engine.html#comments</comments>
    <wfw:comment>http://algo.informatik.uni-freiburg.de/~hermann/blog/wfwcomment.php?cid=9</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://algo.informatik.uni-freiburg.de/~hermann/blog/rss.php?version=2.0&amp;type=comments&amp;cid=9</wfw:commentRss>
    

    <author>nospam@example.com (Christoph Hermann)</author>
    <content:encoded>
    &lt;img width=&#039;273&#039; height=&#039;60&#039; style=&quot;float: left; border: 0px; padding-left: 5px; padding-right: 5px;&quot; src=&quot;http://algo.informatik.uni-freiburg.de/~hermann/blog/uploads/adm/electures/speechrec_example.gif&quot; alt=&quot;&quot; /&gt;With the help of &lt;a href=&quot;http://externspeicher.7kant.org&quot;&gt;Niklas&lt;/a&gt; i just installed the new eLectures search engine.&lt;br /&gt;
It does not only index the Slides and the lecturnity Documents, but also the speech of the Lecturers.&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
See: &lt;a href=&quot;http://electures.informatik.uni-freiburg.de/search/&quot;  title=&quot;eLectures search engine&quot;&gt;eLectures-Search&lt;/a&gt; 
    </content:encoded>

    <pubDate>Wed, 02 Aug 2006 13:29:47 +0200</pubDate>
    <guid isPermaLink="false">http://algo.informatik.uni-freiburg.de/~hermann/blog/archives/9-guid.html</guid>
    <category>Administration</category>

</item>
<item>
    <title>DirectoryIndexing and Limiting Access on the Servers</title>
    <link>http://algo.informatik.uni-freiburg.de/~hermann/blog/archives/8-DirectoryIndexing-and-Limiting-Access-on-the-Servers.html</link>
            <category>Administration</category>
    
    <comments>http://algo.informatik.uni-freiburg.de/~hermann/blog/archives/8-DirectoryIndexing-and-Limiting-Access-on-the-Servers.html#comments</comments>
    <wfw:comment>http://algo.informatik.uni-freiburg.de/~hermann/blog/wfwcomment.php?cid=8</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://algo.informatik.uni-freiburg.de/~hermann/blog/rss.php?version=2.0&amp;type=comments&amp;cid=8</wfw:commentRss>
    

    <author>nospam@example.com (Christoph Hermann)</author>
    <content:encoded>
    The Option Indexes is disabled by default in the Servers Configuration.
You can enable the Indexes Option for the Virtualhost portal.informatik/download.informatik by using a .htaccess File in your Directory with the following content:&lt;br /&gt;
&lt;blockquote&gt;&lt;pre&gt;Options Indexes&lt;/pre&gt;&lt;/blockquote&gt;&lt;br /&gt;
&lt;br /&gt;
Limiting Access to the IP-range of the FAW or requiring user authentication is done the same way (this should be enabled in all Virtualhosts):&lt;br /&gt;
&lt;blockquote&gt;&lt;pre&gt;# Zugriff nur aus dem Uni-Netz erlauben
Order allow,deny
Allow from 132.230
Allow from 10.122.182
Allow from 10.122.182

# Zugriff durch Benutzername erlauben
AuthType Basic
AuthName &quot;Titel der bei der Authentifizierung erscheint&quot;
AuthUserFile /opt/local/apache/conf/users
require user someusername

# Beide Zugriffsmoeglichkeiten erlauben
Satisfy Any&lt;/pre&gt;&lt;/blockquote&gt;
&lt;br /&gt;
You can look at the example File in /scratch/lectures/Template/.htaccess.example&lt;br /&gt;
The File /opt/local/apache/conf/users is writable only by users of the group elec-adm. So if you need to add a user to this user-file, contact &lt;a href=&quot;mailto:electures@informatik.uni-freiburg.de&quot;&gt;electures@informatik&lt;/a&gt; to have it inserted.&lt;br /&gt; 
    </content:encoded>

    <pubDate>Mon, 31 Jul 2006 16:18:39 +0200</pubDate>
    <guid isPermaLink="false">http://algo.informatik.uni-freiburg.de/~hermann/blog/archives/8-guid.html</guid>
    <category>administration</category>

</item>

</channel>
</rss>