<?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>Edin Kadribašić - Computing</title>
    <link>http://edin.dk/</link>
    <description>Rants, mostly...</description>
    <dc:language>en</dc:language>
    <generator>Serendipity 1.1.2 - http://www.s9y.org/</generator>
    <managingEditor>edink@php.net</managingEditor>
<webMaster>edink@php.net</webMaster>
<ttl>300</ttl>
<pubDate>Sun, 06 May 2007 10:27:48 GMT</pubDate>

    <image>
        <url>http://edin.dk/templates/default/img/s9y_banner_small.png</url>
        <title>RSS: Edin Kadribašić - Computing - Rants, mostly...</title>
        <link>http://edin.dk/</link>
        <width>100</width>
        <height>21</height>
    </image>

<item>
    <title>More N95 Gadgets</title>
    <link>http://edin.dk/archives/39-More-N95-Gadgets.html</link>
            <category>Computing</category>
    
    <comments>http://edin.dk/archives/39-More-N95-Gadgets.html#comments</comments>
    <wfw:comment>http://edin.dk/wfwcomment.php?cid=39</wfw:comment>

    <slash:comments>3</slash:comments>
    <wfw:commentRss>http://edin.dk/rss.php?version=2.0&amp;type=comments&amp;cid=39</wfw:commentRss>
    

    <author>nospam@example.com (Edin Kadribašić)</author>
    <content:encoded>
    &lt;a href=&quot;http://www.flickr.com/photos/edink/485242241/&quot; title=&quot;Photo Sharing&quot;&gt;&lt;img src=&quot;http://farm1.static.flickr.com/230/485242241_b604f5a112_m.jpg&quot; width=&quot;240&quot; height=&quot;85&quot; alt=&quot;Leo Laporte&#039;s Jaiku profile on N95&quot; style=&quot;float: left; margin-top: 5px; margin-right: 30px;&quot; /&gt;&lt;/a&gt;It came through the mail today and its being added as the latest gadget in my collection. It&#039;s a Nokia SU-8W wireless keyboard. Much more detailed review can be found &lt;a href=&quot;http://darlamack.blogs.com/darlamack/2005/03/nokia_wireless_.html&quot;&gt;here&lt;/a&gt;. 
    </content:encoded>

    <pubDate>Sat, 05 May 2007 19:39:47 +0200</pubDate>
    <guid isPermaLink="false">http://edin.dk/archives/39-guid.html</guid>
    <category>nokia n95 wireless keyboard</category>

</item>
<item>
    <title>Serendipity on Lighty</title>
    <link>http://edin.dk/archives/34-Serendipity-on-Lighty.html</link>
            <category>Computing</category>
            <category>PHP</category>
    
    <comments>http://edin.dk/archives/34-Serendipity-on-Lighty.html#comments</comments>
    <wfw:comment>http://edin.dk/wfwcomment.php?cid=34</wfw:comment>

    <slash:comments>3</slash:comments>
    <wfw:commentRss>http://edin.dk/rss.php?version=2.0&amp;type=comments&amp;cid=34</wfw:commentRss>
    

    <author>nospam@example.com (Edin Kadribašić)</author>
    <content:encoded>
    I have been moving some of my sites around and the turn came to my blog. Since I have decided to try &lt;a href=&quot;http://www.lighttpd.net/&quot;&gt;lighttpd&lt;/a&gt; on my new server I was wondering how easy would it be to setup &lt;a href=&quot;http://www.s9y.org/&quot;&gt;Serendipity&lt;/a&gt; on it.&lt;br /&gt;
&lt;br /&gt;
Well the basic install went pretty smoothly, but I wanted, of course, to use &quot;friendly&quot; URLs. For that Serendipity supplies .htaccess file with Apache mod_rewrite rules. With a little bit of effort it was possible for me to convert those into rewrite rules that lighttpd would understand:&lt;br /&gt;
&lt;br /&gt;
&lt;div style=&quot;text-size: -1pt; background: #eeeeee; line-height: 100%; color: #111111; border: solid 1px #aaaaaa; padding: 5px&quot;&gt;&lt;code&gt;# Serendipidy rewrites&lt;br /&gt;
  url.rewrite-once = (&lt;br /&gt;
        &quot;(archives/([0-9]+)-[0-9a-zA-Z\._!;,\+\-]+\.html)&quot; =&gt; &quot;index.php?/$1&quot;,&lt;br /&gt;
        &quot;(authors/([0-9]+)-[0-9a-zA-Z\._!;,\+\-]+)&quot; =&gt; &quot;index.php?/$1&quot;,&lt;br /&gt;
        &quot;(feeds/categories/([0-9;]+)-[0-9a-zA-Z\._!;,\+\-]+\.rss)&quot; =&gt; &quot;index.php?/$1&quot;,&lt;br /&gt;
        &quot;(feeds/authors/([0-9]+)-[0-9a-zA-Z\._!;,\+\-]+\.rss)&quot; =&gt; &quot;index.php?/$1&quot;,&lt;br /&gt;
        &quot;(categories/([0-9;]+)-[0-9a-zA-Z\._!;,\+\-]+)&quot; =&gt; &quot;index.php?/$1&quot;,&lt;br /&gt;
        &quot;archives/([/A-Za-z0-9-]+)\.html&quot; =&gt; &quot;index.php?url=/archives/$1.html&quot;,&lt;br /&gt;
        &quot;([0-9]+)[&lt;u&gt;\-][0-9a-zA-Z&lt;/u&gt;\-]*\.html&quot; =&gt; &quot;index.php?url=$1-article.html&quot;,&lt;br /&gt;
        &quot;feeds/(.*)&quot; =&gt; &quot;index.php?url=/feeds/$1&quot;,&lt;br /&gt;
        &quot;unsubscribe/(.*)/([0-9]+)&quot; =&gt; &quot;index.php?url=/unsubscribe/$1/$2&quot;,&lt;br /&gt;
        &quot;approve/(.*)/(.*)/([0-9]+)&quot; =&gt; &quot;index.php?url=approve/$1/$2/$3&quot;,&lt;br /&gt;
        &quot;delete/(.*)/(.*)/([0-9]+)&quot; =&gt; &quot;index.php?url=delete/$1/$2/$3&quot;,&lt;br /&gt;
        &quot;(admin|entries)/(.+)?&quot; =&gt; &quot;index.php?url=$1/$2&quot;,&lt;br /&gt;
        &quot;admin$&quot; =&gt; &quot;index.php?url=/admin&quot;,&lt;br /&gt;
        &quot;archive/?&quot; =&gt; &quot;index.php?url=/archive&quot;,&lt;br /&gt;
        &quot;(index|atom[0-9]*|rss|b2rss|b2rdf).(rss|rdf|rss2|xml)&quot; =&gt; &quot;rss.php?file=$1&amp;ext=$2&quot;,&lt;br /&gt;
        &quot;(plugin|plugin)/(.*)&quot; =&gt; &quot;index.php?url=$1/$2&quot;,&lt;br /&gt;
        &quot;search/(.*)&quot; =&gt; &quot;index.php?url=/search/$1&quot;,&lt;br /&gt;
        &quot;(serendipity\.css|serendipity_admin\.css)&quot; =&gt; &quot;index.php?url=/$1&quot;,&lt;br /&gt;
        &quot;index\.(html?|php.+)&quot; =&gt; &quot;index.php?url=index.html&quot;,&lt;br /&gt;
        &quot;htmlarea/(.*)&quot; =&gt; &quot;htmlarea/$1&quot;,&lt;br /&gt;
        &quot;(.*\.html?)&quot; =&gt; &quot;index.php?url=/$1&quot;&lt;br /&gt;
  )&lt;br /&gt;
&lt;/code&gt;&lt;/div&gt;&lt;br /&gt;
We only need to prevent some files from being sent to the user:&lt;br /&gt;
&lt;br /&gt;
&lt;div style=&quot;text-size: -1pt; background: #eeeeee; line-height: 100%; color: #111111; border: solid 1px #aaaaaa; padding: 5px&quot;&gt;&lt;code&gt;url.access-deny = ( &quot;.tpl.php&quot;, &quot;.tpl&quot;, &quot;.sql&quot;, &quot;.inc.php&quot;)&lt;/code&gt;&lt;/div&gt;&lt;br /&gt;
I guess the future will show how many security holes I have opened playing with these regexs &lt;img src=&quot;http://edin.dk/templates/default/img/emoticons/smile.png&quot; alt=&quot;:-)&quot; style=&quot;display: inline; vertical-align: bottom;&quot; class=&quot;emoticon&quot; /&gt; 
    </content:encoded>

    <pubDate>Thu, 19 Apr 2007 23:45:32 +0200</pubDate>
    <guid isPermaLink="false">http://edin.dk/archives/34-guid.html</guid>
    <category>serendipity lighttpd</category>

</item>
<item>
    <title>Don't buy 3ware SATA RAID cards</title>
    <link>http://edin.dk/archives/6-Dont-buy-3ware-SATA-RAID-cards.html</link>
            <category>Computing</category>
    
    <comments>http://edin.dk/archives/6-Dont-buy-3ware-SATA-RAID-cards.html#comments</comments>
    <wfw:comment>http://edin.dk/wfwcomment.php?cid=6</wfw:comment>

    <slash:comments>9</slash:comments>
    <wfw:commentRss>http://edin.dk/rss.php?version=2.0&amp;type=comments&amp;cid=6</wfw:commentRss>
    

    <author>nospam@example.com (Edin Kadribašić)</author>
    <content:encoded>
    &lt;img width=&#039;240&#039; height=&#039;180&#039;  src=&quot;http://edin.dk/uploads/3ware.jpg&quot; title=&quot;3ware controller, photo by Zack Williams&quot; style=&quot;float: left; border: 0px; padding: 5px;&quot; /&gt;They suck. If you have stumbled on this rant via some search engine let me tell you, there is no fix for its performance problems. Junk the card or try to lear to live with it.&lt;br /&gt;
&lt;br /&gt;
I was unfortunate not to do proper research when I ordered &lt;a href=&quot;http://www.3ware.com/&quot;  title=&quot;3ware&quot;&gt;3ware &lt;/a&gt; 8506-4LP card last year. I had nothing but trouble since. It takes forever to initialize so if you want say RAID-10 over 4 250 GB disk it would take about half a day. To be fair you can still work with the array, but the performance is going to suffer. I guess I was spoiled by 1 hour array rebuild with IBM ServRaid SCSI RAID controllers.&lt;br /&gt;
&lt;br /&gt;
The worst thing about 3ware cards is catastrophic write perfomance. I could not get the card to write more than 6 MB/s. To add insult to injury just copying files from one dir to another would take the system load to 2. Many people have reported similar issues, its all over the web. 3ware people seem to blame everyone else but their poor design. 
    </content:encoded>

    <pubDate>Fri, 07 Jul 2006 00:06:45 +0200</pubDate>
    <guid isPermaLink="false">http://edin.dk/archives/6-guid.html</guid>
    
</item>

</channel>
</rss>