<?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>blog.der-link.de - Programmierung</title>
    <link>http://blog.der-link.de/</link>
    <description>Take it or leave it</description>
    <dc:language>de</dc:language>
    <generator>Serendipity 1.3.1 - http://www.s9y.org/</generator>
    
    <image>
        <url>http://blog.der-link.de/templates/default/img/s9y_banner_small.png</url>
        <title>RSS: blog.der-link.de - Programmierung - Take it or leave it</title>
        <link>http://blog.der-link.de/</link>
        <width>100</width>
        <height>21</height>
    </image>

<item>
    <title>Wordpress Archive - need Help</title>
    <link>http://blog.der-link.de/archives/1652-Wordpress-Archive-need-Help.html</link>
            <category>Blog</category>
            <category>Programmierung</category>
    
    <comments>http://blog.der-link.de/archives/1652-Wordpress-Archive-need-Help.html#comments</comments>
    <wfw:comment>http://blog.der-link.de/wfwcomment.php?cid=1652</wfw:comment>

    <slash:comments>8</slash:comments>
    <wfw:commentRss>http://blog.der-link.de/rss.php?version=2.0&amp;type=comments&amp;cid=1652</wfw:commentRss>
    

    <author>nospam@example.com (SteBu)</author>
    <content:encoded>
    Wieso Wordpress, das Blog hier läuft mit mit &lt;a href=&quot;http://www.s9y.org/&quot;&gt;s9y&lt;/a&gt; wird sich der Leser fragen. Ganz simpel. Ich habe &lt;a href=&quot;http://flash.plasticthinking.org/&quot;&gt;Flash Gamez&lt;/a&gt; am letzten Wochenende von Blogger.com auf WP umgestellt. Jetzt ahe ich aber ein Problem.&lt;br /&gt;
Die bestehenden Seiten, also das was blogger als stat. html generiert hat, liegen in einer Ordnerstruktur vom Format http://flash.plasticthinking.org&lt;strong&gt;/2008/07/spielname.html&lt;/strong&gt; ab und sollen auch erhalten bleiben. Wordpress legt Archive von folgendem Format an http://flash.plasticthinking.org&lt;strong&gt;/2008/07/&lt;/strong&gt;. Das führt dazu, das im Ordner &lt;strong&gt;2008/07/&lt;/strong&gt; eine Index-Datei gesucht wird, die es aber nicht gibt, wohl aber besagtes Directory.&lt;br /&gt;
&lt;br /&gt;
Jetzt zu meiner Idee, wofür ich jedoch keine Lösung gefunden habe. Kann man WP(Version 2.6) auf irgendeine Art dazu bringen, die Jahreszahl bei Archiven zweistellig zu erzeugen? Dann könnten die alten Archive(die als Files abliegen) neben dem WP-Archiv(was ja nur über mod_rewrite existiert)  parallel bestehen? &lt;br /&gt;
Selbst wp_get_archives(&#039;type=weekly&#039;) erzeugt erstmal eine Jahreszahl(4-stellig). Und die Archive als Kategorie anzulegen kommt nicht in Frage.&lt;br /&gt;
&lt;br /&gt;
Wo sind die WP-Profis? &lt;img src=&quot;http://blog.der-link.de/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>Fri, 01 Aug 2008 08:47:35 +0200</pubDate>
    <guid isPermaLink="false">http://blog.der-link.de/archives/1652-guid.html</guid>
    <category>archive</category>
<category>wordpress</category>
<creativeCommons:license>http://creativecommons.org/licenses/by/3.0/deed.de</creativeCommons:license>
</item>
<item>
    <title>Bug oder Feature</title>
    <link>http://blog.der-link.de/archives/1601-Bug-oder-Feature.html</link>
            <category>Programmierung</category>
    
    <comments>http://blog.der-link.de/archives/1601-Bug-oder-Feature.html#comments</comments>
    <wfw:comment>http://blog.der-link.de/wfwcomment.php?cid=1601</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://blog.der-link.de/rss.php?version=2.0&amp;type=comments&amp;cid=1601</wfw:commentRss>
    

    <author>nospam@example.com (SteBu)</author>
    <content:encoded>
    Bisher war ich der Meinung, dass die Javascript-Funktion &lt;em&gt;alert()&lt;/em&gt; keine Argumente braucht.&lt;br /&gt;
Braucht sie auch nicht. Aber, im Zusammenspiel mit &lt;a href=&quot;http://script.aculo.us/&quot; &gt;script.aculo.us&lt;/a&gt; hat sich das verändert. Oder haben die die Funktion überschrieben?&lt;br /&gt;
Zu Test- und Debuggingzwecken nutze ich gerne alert() um zu sehen, dass am Programmablauf alles stimmig ist.&lt;br /&gt;
&lt;br /&gt;
Aber, scheinbar muß man um die Ecke denken. Denn folgendes klappt :&lt;br /&gt;
&lt;code&gt;function ns_blind(div,img)&lt;br /&gt;
{	&lt;br /&gt;
	new Effect.BlindUp(div, {afterFinish: &lt;br /&gt;
		function() {&lt;b style=&quot;color:black;&quot;&gt;alert(&#039;Test&#039;)&lt;/b&gt;}});&lt;br /&gt;
}&lt;/code&gt;jedoch klappt nicht:&lt;br /&gt;
&lt;code&gt;function ns_blind(div,img)&lt;br /&gt;
{	&lt;br /&gt;
	new Effect.BlindUp(div, {afterFinish: &lt;br /&gt;
		function() {&lt;b style=&quot;color:black;&quot;&gt;alert()&lt;/b&gt;}});&lt;br /&gt;
}&lt;/code&gt;Der Firefox sagt in der Console&lt;br /&gt;
&lt;em&gt;Fehler: uncaught exception: [Exception... &quot;Not enough arguments&quot;  nsresult: &quot;0x80570001 (NS_ERROR_XPC_NOT_ENOUGH_ARGS)&quot;  location: &quot;JS frame :: Pfad zur Datei&quot;  data: no]&lt;/em&gt;&lt;br /&gt;
&lt;br /&gt;
??? Jemand ne Idee an was es liegen mag?&lt;br /&gt;
  
    </content:encoded>

    <pubDate>Sun, 24 Feb 2008 18:19:44 +0100</pubDate>
    <guid isPermaLink="false">http://blog.der-link.de/archives/1601-guid.html</guid>
    <category>frameworks</category>
<category>javascript</category>
<category>scriptaculous</category>
<creativeCommons:license>http://creativecommons.org/licenses/by/3.0/deed.de</creativeCommons:license>
</item>
<item>
    <title>Code für die Tonne</title>
    <link>http://blog.der-link.de/archives/1600-Code-fuer-die-Tonne.html</link>
            <category>Programmierung</category>
    
    <comments>http://blog.der-link.de/archives/1600-Code-fuer-die-Tonne.html#comments</comments>
    <wfw:comment>http://blog.der-link.de/wfwcomment.php?cid=1600</wfw:comment>

    <slash:comments>4</slash:comments>
    <wfw:commentRss>http://blog.der-link.de/rss.php?version=2.0&amp;type=comments&amp;cid=1600</wfw:commentRss>
    

    <author>nospam@example.com (SteBu)</author>
    <content:encoded>
    Gut, wenn ich mir meine ersten Anfänge des Programmierens so ansehe, schaudert es mich auch. Aber so eine Gülle wie ich heute in einem Forum gefunden habe, hätte ich nie produziert.&lt;br /&gt;
Ein User des Forums suchte Hilfe, weil seine Anwendung nicht richtig lief bzw. Fehler verursachte. Nach der Aufforderung doch mal betreffenden Quelltext zu posten, tat er das auch.(Hätte er mal lieber gelassen).&lt;br /&gt;
Folgende Zeile war darin enthalten:&lt;br /&gt;
&lt;code&gt;&lt;br /&gt;
&amp;lt;?php&lt;br /&gt;
echo &#039;&amp;lt;script language=&quot;Javascript&quot;&amp;gt; document.write(\&#039;&amp;lt;h1&amp;gt;Überschrift&amp;lt;/h1&amp;gt;\&#039;);&amp;lt;/script&amp;gt;&#039;;&lt;br /&gt;
?&amp;gt;&lt;br /&gt;
&lt;/code&gt;&lt;br /&gt;
Ohne Worte  
    </content:encoded>

    <pubDate>Sat, 23 Feb 2008 11:06:42 +0100</pubDate>
    <guid isPermaLink="false">http://blog.der-link.de/archives/1600-guid.html</guid>
    <category>coding</category>
<creativeCommons:license>http://creativecommons.org/licenses/by/3.0/deed.de</creativeCommons:license>
</item>
<item>
    <title>Ich geh dann mal</title>
    <link>http://blog.der-link.de/archives/1581-Ich-geh-dann-mal.html</link>
            <category>Programmierung</category>
    
    <comments>http://blog.der-link.de/archives/1581-Ich-geh-dann-mal.html#comments</comments>
    <wfw:comment>http://blog.der-link.de/wfwcomment.php?cid=1581</wfw:comment>

    <slash:comments>1</slash:comments>
    <wfw:commentRss>http://blog.der-link.de/rss.php?version=2.0&amp;type=comments&amp;cid=1581</wfw:commentRss>
    

    <author>nospam@example.com (SteBu)</author>
    <content:encoded>
    So oder fast so meinte heute einer meiner MySQL-Server zu mir, als ich via Commandline einen MySQL-Dump einlesen wollte (&lt;i&gt;mysql -u root -p &lt; script.sql)&lt;/i&gt;.&lt;br /&gt;
&lt;blockquote&gt;MySQL server has gone away&lt;/blockquote&gt; &lt;br /&gt;
Ich habe bis jetzt nicht gefunden, was den Fehler verursachte. Das Script (&lt;i&gt;use DB, drop table if exists, create table, lock table write, insert into&lt;/i&gt;)  sollte nur ~70.000 Datensätze einfügen, nachdem es eine Tabelle angelgt hatte.&lt;br /&gt;
Obwohl die my.ini gut aussah, gelang es erst, als ich die INSERTS in 10.000er-Häppchen aufteilte.&lt;br /&gt;
&lt;br /&gt;
Achja, das ganze unter Win2k3-Server. Hat da draußen jemand eine Idee. Der Server ist nicht sonderlich gut bestückt(1GB RAM), hatte aber zu dem Zeitpunkt kaum was zu tun.&lt;br /&gt;
  
    </content:encoded>

    <pubDate>Mon, 07 Jan 2008 21:02:46 +0100</pubDate>
    <guid isPermaLink="false">http://blog.der-link.de/archives/1581-guid.html</guid>
    <category>big dump</category>
<category>insert</category>
<category>mysql</category>
<creativeCommons:license>http://creativecommons.org/licenses/by/3.0/deed.de</creativeCommons:license>
</item>
<item>
    <title>Arbeitsplatzsicherung</title>
    <link>http://blog.der-link.de/archives/1568-Arbeitsplatzsicherung.html</link>
            <category>Programmierung</category>
    
    <comments>http://blog.der-link.de/archives/1568-Arbeitsplatzsicherung.html#comments</comments>
    <wfw:comment>http://blog.der-link.de/wfwcomment.php?cid=1568</wfw:comment>

    <slash:comments>2</slash:comments>
    <wfw:commentRss>http://blog.der-link.de/rss.php?version=2.0&amp;type=comments&amp;cid=1568</wfw:commentRss>
    

    <author>nospam@example.com (SteBu)</author>
    <content:encoded>
    oder &quot;wie schreibe ich unwartbaren Code?&quot;.&lt;br /&gt;
Wenn Programmcode nur noch von einem selbst zu lesen bzw. zu warten ist, kann es die eigene Position im Unternehmen schon festigen.&lt;br /&gt;
&lt;br /&gt;
Ein Schönes Beispiel aus dem &lt;a href=&quot;http://freeworld.thc.org/root/phun/unmaintain.html&quot; &gt;Tutorial&lt;/a&gt; ist folgendes:&lt;br /&gt;
&lt;blockquote&gt;Make sure that every method does a little bit more (or less) than its name suggests. As a simple example, a method named isValid(x)  should as a side effect convert x to binary and store the result in a database.&lt;/blockquote&gt;&lt;br /&gt;
&lt;br /&gt;
[via: &lt;a href=&quot;http://www.contentschmiede.de/archiv/2007/11/17/das_howto_zu_unwartbarem_programmcode/&quot;&gt;ContentSchmiede&lt;/a&gt;]  
    </content:encoded>

    <pubDate>Wed, 21 Nov 2007 11:48:10 +0100</pubDate>
    <guid isPermaLink="false">http://blog.der-link.de/archives/1568-guid.html</guid>
    <category>code</category>
<category>programmierung</category>
<category>wartbarkeit</category>
<creativeCommons:license>http://creativecommons.org/licenses/by/3.0/deed.de</creativeCommons:license>
</item>
<item>
    <title>Prototip</title>
    <link>http://blog.der-link.de/archives/1544-Prototip.html</link>
            <category>Programmierung</category>
            <category>WWW</category>
    
    <comments>http://blog.der-link.de/archives/1544-Prototip.html#comments</comments>
    <wfw:comment>http://blog.der-link.de/wfwcomment.php?cid=1544</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://blog.der-link.de/rss.php?version=2.0&amp;type=comments&amp;cid=1544</wfw:commentRss>
    

    <author>nospam@example.com (SteBu)</author>
    <content:encoded>
    &lt;a href=&quot;http://www.nickstakenburg.com/projects/prototip/&quot;&gt;Prototip&lt;/a&gt; ist eine Javascriptbibliothek für Tooltips, welche auf die beiden Bibliotheken &lt;a href=&quot;http://script.aculo.us/&quot;&gt;scriptaculous&lt;/a&gt; und &lt;a href=&quot;http://www.prototypejs.org/&quot;&gt;prototype&lt;/a&gt; aufsetzt.&lt;br /&gt;
Mit ihr kann man schnell und einfach diverse Varianten von Tooltips erzeugen, welche auf allen Browsern laufen. Ein Vorteil gegenüber reinen CSS-Tooltips, sind die Effekte von scriptaculous.&lt;br /&gt;
Etwas schlecht dokumentiert ist die Bibliothek schon, aber für alle die wissen, was die Dollar-Funktion von Prototype erreicht, ist ein einfach.&lt;br /&gt;
&lt;br /&gt;
Aber Achtung, die in der Version &lt;em&gt;1.7.1 beta 3&lt;/em&gt; des Frameworks scriptaculous mitgelieferte Version von Prototype reicht nicht. Es &lt;strong&gt;muß&lt;/strong&gt; die Version &lt;em&gt;&lt;a href=&quot;http://www.prototypejs.org/download&quot;&gt;1.5.1.1&lt;/a&gt;&lt;/em&gt;(19.06.2007) von Prototype sein. Diese Erkenntnis hat mich heute etwas Zeit gekostet.  
    </content:encoded>

    <pubDate>Tue, 28 Aug 2007 19:54:27 +0200</pubDate>
    <guid isPermaLink="false">http://blog.der-link.de/archives/1544-guid.html</guid>
    <category>frameworks</category>
<category>javascript</category>
<category>prototip</category>
<category>prototype</category>
<creativeCommons:license>http://creativecommons.org/licenses/by/3.0/deed.de</creativeCommons:license>
</item>
<item>
    <title>Bug oder Feature? (Update)</title>
    <link>http://blog.der-link.de/archives/1516-Bug-oder-Feature-Update.html</link>
            <category>Programmierung</category>
            <category>WWW</category>
    
    <comments>http://blog.der-link.de/archives/1516-Bug-oder-Feature-Update.html#comments</comments>
    <wfw:comment>http://blog.der-link.de/wfwcomment.php?cid=1516</wfw:comment>

    <slash:comments>1</slash:comments>
    <wfw:commentRss>http://blog.der-link.de/rss.php?version=2.0&amp;type=comments&amp;cid=1516</wfw:commentRss>
    

    <author>nospam@example.com (SteBu)</author>
    <content:encoded>
    Ich denke, es ist ein &lt;b&gt;riesen Bug&lt;/b&gt; den &lt;a href=&quot;http://verwandt.de&quot; &gt;verwandt.de&lt;/a&gt; da hat.&lt;br /&gt;
Aber der Reihe nach. Ich lese bei &lt;a href=&quot;http://www.basicthinking.de/blog/2007/06/13/verwandtde/&quot; &gt;Robert&lt;/a&gt; in den Kommentaren, das sich Uwe K. dort angemeldet hat. Uwe hat auch gleich einen Link hinterlassen. Ich klicke also rauf, um mir die Plattform mal anzusehen. &lt;br /&gt;
Hatte ich vorher noch nicht. Ich bin also auch nicht dort angemeldet.&lt;br /&gt;
&lt;br /&gt;
Was sehe ich oben rechts als erstes? Da steht doch wirklich &quot;&lt;em&gt;AUSLOGGEN&lt;/em&gt;&quot;. Häh, ich bin gar nicht eingeloggt???&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;a href=&quot;http://de.sevenload.com/bilder/gCA7Rtk/Bug-auf-verwandt-de&quot;&gt;&lt;img src=&quot;http://de.sevenload.com/im/gCA7Rtk/450x341&quot; border=&quot;0&quot; width=&quot;450&quot; height=&quot;341&quot; alt=&quot;&#039;Bug auf verwandt.de&#039; von SteBu&quot; /&gt;&lt;/a&gt;&lt;/div&gt;(klicken für großes Bild)&lt;br /&gt;
&lt;br /&gt;
Also mal geschaut was so geht. Alles! Profil ändern - kein Problem. &lt;br /&gt;
&lt;br /&gt;
Jungs unternehmt was.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Update(11:30 Uhr)&lt;/b&gt;: Parallel zu diesem Blogeintrag hatte ich die Betreiber der Seite per Mail kontaktiert. Verwandt.de ist zur Zeit Offline. Klaus, einer der Betreiber bedankte sich für den Hinweis.   
    </content:encoded>

    <pubDate>Wed, 13 Jun 2007 09:11:35 +0200</pubDate>
    <guid isPermaLink="false">http://blog.der-link.de/archives/1516-guid.html</guid>
    <category>sicherheitslücke</category>
<category>web2.0</category>
<creativeCommons:license>http://creativecommons.org/licenses/by/3.0/deed.de</creativeCommons:license>
</item>
<item>
    <title>PEAR::MDB2, komischer Fehler</title>
    <link>http://blog.der-link.de/archives/1514-PEARMDB2,-komischer-Fehler.html</link>
            <category>Programmierung</category>
    
    <comments>http://blog.der-link.de/archives/1514-PEARMDB2,-komischer-Fehler.html#comments</comments>
    <wfw:comment>http://blog.der-link.de/wfwcomment.php?cid=1514</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://blog.der-link.de/rss.php?version=2.0&amp;type=comments&amp;cid=1514</wfw:commentRss>
    

    <author>nospam@example.com (SteBu)</author>
    <content:encoded>
    Seit Samstag setze ich MBD2 aus dem PEAR-Verzeichnis ein. &lt;a href=&quot;http://pear.php.net/package/MDB2&quot; &gt;MDB2&lt;/a&gt; ersetzt das alte Packet &lt;a href=&quot;http://pear.php.net/package/DB&quot; &gt;DB&lt;/a&gt;. &lt;br /&gt;
Insgesamt ist das eine saubere Arbeit(Doku lesen ist Pflicht).&lt;br /&gt;
&lt;br /&gt;
Was mir nur etwas aufgestoßen ist, und was mich auch Zeit kostete, ist folgendes Phänomen. Nach dem Erzeugen eines Objektes &quot;$mdb2&quot; und dem Aufruf einer Metode dieses Objektes kam &quot;&lt;em&gt;Call to undefined function ....... &lt;/em&gt;&quot;.&lt;br /&gt;
Im ersten Moment denkt man an einen Schreibfehler beim Funktionsnamen. Ne, wars nicht. OK, evtl. stimmen die Include-Pfade nicht. Ne, wars auch nicht.&lt;br /&gt;
&lt;br /&gt;
Diese, doch irreführende, Meldung kommt, wenn das mdb2-Objekt nicht erzeugt werden kann. In meinem Fall wars ein Bindestrich im Datenbanknamen. &lt;br /&gt;
Beheben kann man das Problem(bei MSSQl) mit &quot;[]&quot;. Also wenn &quot;&lt;em&gt;datenbank-name&lt;/em&gt;&quot; nicht will, hilft ein &quot;&lt;em&gt;[datenbank-name]&lt;/em&gt;&quot;  
    </content:encoded>

    <pubDate>Mon, 11 Jun 2007 20:56:36 +0200</pubDate>
    <guid isPermaLink="false">http://blog.der-link.de/archives/1514-guid.html</guid>
    <category>fehler</category>
<category>pear mssql</category>
<category>php</category>
<creativeCommons:license>http://creativecommons.org/licenses/by/3.0/deed.de</creativeCommons:license>
</item>
<item>
    <title>Halbherzig</title>
    <link>http://blog.der-link.de/archives/1428-Halbherzig.html</link>
            <category>Programmierung</category>
    
    <comments>http://blog.der-link.de/archives/1428-Halbherzig.html#comments</comments>
    <wfw:comment>http://blog.der-link.de/wfwcomment.php?cid=1428</wfw:comment>

    <slash:comments>7</slash:comments>
    <wfw:commentRss>http://blog.der-link.de/rss.php?version=2.0&amp;type=comments&amp;cid=1428</wfw:commentRss>
    

    <author>nospam@example.com (SteBu)</author>
    <content:encoded>
    Ist schon komisch, wennn nur die Hälfte der Anweisungen in einer .htaccess befolgt werden und dann auch nichts im Errorlog auftaucht.  
    </content:encoded>

    <pubDate>Thu, 22 Feb 2007 15:22:18 +0100</pubDate>
    <guid isPermaLink="false">http://blog.der-link.de/archives/1428-guid.html</guid>
    <category>apache</category>
<category>htaccess</category>
<creativeCommons:license>http://creativecommons.org/licenses/by/3.0/deed.de</creativeCommons:license>
</item>
<item>
    <title>Decoding CAPTCHA using PHP</title>
    <link>http://blog.der-link.de/archives/1415-Decoding-CAPTCHA-using-PHP.html</link>
            <category>Programmierung</category>
    
    <comments>http://blog.der-link.de/archives/1415-Decoding-CAPTCHA-using-PHP.html#comments</comments>
    <wfw:comment>http://blog.der-link.de/wfwcomment.php?cid=1415</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://blog.der-link.de/rss.php?version=2.0&amp;type=comments&amp;cid=1415</wfw:commentRss>
    

    <author>nospam@example.com (SteBu)</author>
    <content:encoded>
    Das Captchas schon lange nicht mehr als sicher gelten, war mir seit dem &lt;a href=&quot;http://blog.der-link.de/archives/659-PWNtcha-captcha-decoder.html&quot; &gt;PWNtcha-captcha decoder&lt;/a&gt; schon klar. Das jetzt aber schon mittels PHP und der gdlib die Teile genackt werden können, sollte einem zu denken geben.&lt;br /&gt;
Beispiele &lt;a href=&quot;http://captcha.megaleecher.net/&quot; &gt;hier&lt;/a&gt;(inkl. src) und &lt;a href=&quot;http://www.elancetalk.com/decaptcha.php&quot; &gt;hier&lt;/a&gt;  
    </content:encoded>

    <pubDate>Mon, 12 Feb 2007 12:10:43 +0100</pubDate>
    <guid isPermaLink="false">http://blog.der-link.de/archives/1415-guid.html</guid>
    <category>captcha</category>
<category>decoder</category>
<category>php</category>
<creativeCommons:license>http://creativecommons.org/licenses/by/3.0/deed.de</creativeCommons:license>
</item>
<item>
    <title>Ein Negativbeispiel</title>
    <link>http://blog.der-link.de/archives/1410-Ein-Negativbeispiel.html</link>
            <category>Programmierung</category>
            <category>WWW</category>
    
    <comments>http://blog.der-link.de/archives/1410-Ein-Negativbeispiel.html#comments</comments>
    <wfw:comment>http://blog.der-link.de/wfwcomment.php?cid=1410</wfw:comment>

    <slash:comments>7</slash:comments>
    <wfw:commentRss>http://blog.der-link.de/rss.php?version=2.0&amp;type=comments&amp;cid=1410</wfw:commentRss>
    

    <author>nospam@example.com (SteBu)</author>
    <content:encoded>
    Das es nicht immer leicht ist, eine Webseite zu machen, die auf allen Browsern 100%ig identisch ist, weiß ich aus eigener Erfahrung. Aber, das ein Shop gleich unbenutzbar wird, wenn man mit dem Firefox kommt, ist schon mehr als traurig. &lt;br /&gt;
Das traurige Beispiel liefert uns heute, der Mediadownloadshop von Walmart.&lt;br /&gt;
http://mediadownloads.walmart.com/mmce/jsp/storeHome.jsp&lt;br /&gt;
&lt;br /&gt;
[via: &lt;a href=&quot;http://digg.com&quot; &gt;Digg&lt;/a&gt;]  
    </content:encoded>

    <pubDate>Wed, 07 Feb 2007 09:22:38 +0100</pubDate>
    <guid isPermaLink="false">http://blog.der-link.de/archives/1410-guid.html</guid>
    <category>müll</category>
<category>webdesign</category>
<creativeCommons:license>http://creativecommons.org/licenses/by/3.0/deed.de</creativeCommons:license>
</item>
<item>
    <title>Timeline der Programmiersprachen</title>
    <link>http://blog.der-link.de/archives/1388-Timeline-der-Programmiersprachen.html</link>
            <category>Programmierung</category>
            <category>WWW</category>
    
    <comments>http://blog.der-link.de/archives/1388-Timeline-der-Programmiersprachen.html#comments</comments>
    <wfw:comment>http://blog.der-link.de/wfwcomment.php?cid=1388</wfw:comment>

    <slash:comments>4</slash:comments>
    <wfw:commentRss>http://blog.der-link.de/rss.php?version=2.0&amp;type=comments&amp;cid=1388</wfw:commentRss>
    

    <author>nospam@example.com (SteBu)</author>
    <content:encoded>
    Von Fortran(1954) über Modula3(1988) bis Java6(2006). &lt;a href=&quot;http://www.levenez.com/lang/history.html&quot; &gt;Welche Sprache hat sich wann und vor allem, aus &lt;strong&gt;welcher&lt;/strong&gt; entwickelt.&lt;/a&gt;   
    </content:encoded>

    <pubDate>Thu, 25 Jan 2007 20:05:04 +0100</pubDate>
    <guid isPermaLink="false">http://blog.der-link.de/archives/1388-guid.html</guid>
    <category>programmiersprachen</category>
<category>timeline</category>
<creativeCommons:license>http://creativecommons.org/licenses/by/3.0/deed.de</creativeCommons:license>
</item>
<item>
    <title>Ruby eBook, kostenlos</title>
    <link>http://blog.der-link.de/archives/1350-Ruby-eBook,-kostenlos.html</link>
            <category>Programmierung</category>
            <category>WWW</category>
    
    <comments>http://blog.der-link.de/archives/1350-Ruby-eBook,-kostenlos.html#comments</comments>
    <wfw:comment>http://blog.der-link.de/wfwcomment.php?cid=1350</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://blog.der-link.de/rss.php?version=2.0&amp;type=comments&amp;cid=1350</wfw:commentRss>
    

    <author>nospam@example.com (SteBu)</author>
    <content:encoded>
    Das Buch &quot;Mr. Neighborly&#039;s Humble Little Ruby Book&quot; gibt es als &lt;a href=&quot;http://www.humblelittlerubybook.com/book/html/index.html&quot; &gt;HTML-Version&lt;/a&gt; oder als PDF zum &lt;a href=&quot;http://www.humblelittlerubybook.com/book/hlrb.pdf&quot; &gt;Download&lt;/a&gt;(2,3MB, 147 Seiten).  
    </content:encoded>

    <pubDate>Thu, 04 Jan 2007 11:17:33 +0100</pubDate>
    <guid isPermaLink="false">http://blog.der-link.de/archives/1350-guid.html</guid>
    <creativeCommons:license>http://creativecommons.org/licenses/by/3.0/deed.de</creativeCommons:license>
</item>
<item>
    <title>Kein Bock mehr auf security@php.net</title>
    <link>http://blog.der-link.de/archives/1319-Kein-Bock-mehr-auf-securityphp.net.html</link>
            <category>Programmierung</category>
            <category>WWW</category>
    
    <comments>http://blog.der-link.de/archives/1319-Kein-Bock-mehr-auf-securityphp.net.html#comments</comments>
    <wfw:comment>http://blog.der-link.de/wfwcomment.php?cid=1319</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://blog.der-link.de/rss.php?version=2.0&amp;type=comments&amp;cid=1319</wfw:commentRss>
    

    <author>nospam@example.com (SteBu)</author>
    <content:encoded>
    &lt;a href=&quot;http://blog.php-security.org/archives/61-Retired-from-securityphp.net.html&quot; &gt;Stefan Esser&lt;/a&gt;(&lt;a href=&quot;http://www.hardened-php.net/&quot; &gt;Hardened-PHP Project&lt;/a&gt;) zieht sich aus dem PHP Security Response Team zurück. &lt;br /&gt;
Grund ist wohl die lanngsame Reaktionszeit beim Schließen von Sicherheitslücken.  
    </content:encoded>

    <pubDate>Tue, 12 Dec 2006 09:05:43 +0100</pubDate>
    <guid isPermaLink="false">http://blog.der-link.de/archives/1319-guid.html</guid>
    <category>hardened-php</category>
<category>security@php.net</category>
<creativeCommons:license>http://creativecommons.org/licenses/by/3.0/deed.de</creativeCommons:license>
</item>
<item>
    <title>Programmiersprachen im Vergleich</title>
    <link>http://blog.der-link.de/archives/1309-Programmiersprachen-im-Vergleich.html</link>
            <category>Fun</category>
            <category>Programmierung</category>
    
    <comments>http://blog.der-link.de/archives/1309-Programmiersprachen-im-Vergleich.html#comments</comments>
    <wfw:comment>http://blog.der-link.de/wfwcomment.php?cid=1309</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://blog.der-link.de/rss.php?version=2.0&amp;type=comments&amp;cid=1309</wfw:commentRss>
    

    <author>nospam@example.com (SteBu)</author>
    <content:encoded>
    Diesmal, &quot;&lt;a href=&quot;http://just-humour.blogspot.com/2006/11/programming-languages-are-like-women-by.html&quot; &gt;Wenn Programmiersprachen Frauen wären&lt;/a&gt;&quot;(leider nur in englisch).&lt;br /&gt;
Visual Basic hat mir am besten gefallen&lt;blockquote&gt;The little bitch from next door.&lt;/blockquote&gt;  
    </content:encoded>

    <pubDate>Tue, 05 Dec 2006 15:24:43 +0100</pubDate>
    <guid isPermaLink="false">http://blog.der-link.de/archives/1309-guid.html</guid>
    <category>frauen</category>
<category>programmiersprachen</category>
<category>vergleich</category>
<creativeCommons:license>http://creativecommons.org/licenses/by/3.0/deed.de</creativeCommons:license>
</item>

</channel>
</rss>