<?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>Wilmer's stuff - Linux</title>
    <link>http://wilmer.gaast.net/blog/</link>
    <description>So today I...</description>
    <dc:language>en</dc:language>
    <admin:errorReportsTo rdf:resource="mailto:" />
    <generator>Serendipity 1.1 - http://www.s9y.org/</generator>
    <pubDate>Sat, 13 Oct 2007 10:27:18 GMT</pubDate>

    <image>
        <url>http://wilmer.gaast.net/blog/templates/default/img/s9y_banner_small.png</url>
        <title>RSS: Wilmer's stuff - Linux - So today I...</title>
        <link>http://wilmer.gaast.net/blog/</link>
        <width>100</width>
        <height>21</height>
    </image>

<item>
    <title>rxvt-unicode and ISO 14755 mode</title>
    <link>http://wilmer.gaast.net/blog/archives/36-rxvt-unicode-and-ISO-14755-mode.html</link>
            <category>Linux</category>
    
    <comments>http://wilmer.gaast.net/blog/archives/36-rxvt-unicode-and-ISO-14755-mode.html#comments</comments>
    <wfw:comment>http://wilmer.gaast.net/blog/wfwcomment.php?cid=36</wfw:comment>

    <slash:comments>3</slash:comments>
    <wfw:commentRss>http://wilmer.gaast.net/blog/rss.php?version=2.0&amp;type=comments&amp;cid=36</wfw:commentRss>
    

    <author>blog@wilmer.gaast.net (Wilmer van der Gaast)</author>
    <content:encoded>
    Now that my (and pretty much every other) machine uses UTF-8 by default, I was pretty much forced to ditch rxvt in favour of rxvt-unicode. Unfortunately the rxvt-unicode authors think attaching some keycap picture insert mode to the Ctrl-Shift key combination (which is easy to hit by accident) would be HANDY. Even handier, it can only be disabled at compile time.&lt;br /&gt;
&lt;br /&gt;
Thanks for nothing guys, I really hope there&#039;s at least one person on this planet who agrees that this is handy ... I&#039;m afraid most people who accidentally hit Ctrl-Shift every few minutes don&#039;t agree.&lt;br /&gt;
&lt;br /&gt;
So, behold:&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;bb-code-title&quot;&gt;CODE:&lt;/div&gt;&lt;div class=&quot;bb-code&quot;&gt;wilmer@ruby&amp;#58;~/bin$&amp;#160;cat&amp;#160;fix-rxvt.sh&amp;#160;&lt;br /&gt;
#!/bin/sh&amp;#160;-ex&lt;br /&gt;
cd&amp;#160;`mktemp&amp;#160;-d&amp;#160;/tmp/rxvt.XXXXXX`&lt;br /&gt;
apt-get&amp;#160;source&amp;#160;rxvt-unicode&lt;br /&gt;
sudo&amp;#160;apt-get&amp;#160;build-dep&amp;#160;rxvt-unicode&lt;br /&gt;
cd&amp;#160;rxvt-unicode-&amp;#42;/&lt;br /&gt;
perl&amp;#160;-pi&amp;#160;-e&amp;#160;&#039;s/--enable-iso14755/--disable-iso14755/g&#039;&amp;#160;debian/rules&lt;br /&gt;
dch&amp;#160;-n&amp;#160;&#039;ISO&amp;#160;14755/Keycap&amp;#160;mode&amp;#160;SUCKS!!!&#039;&lt;br /&gt;
fakeroot&amp;#160;debian/rules&amp;#160;binary&lt;br /&gt;
sudo&amp;#160;dpkg&amp;#160;-i&amp;#160;../rxvt-unicode-lite&amp;#42;deb&lt;/div&gt;&lt;br /&gt;
For all you Debian+rxvt-unicode users out there waiting for &lt;a href=&quot;http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=393847&quot;  class=&quot;bb-url&quot;&gt;this bug&lt;/a&gt; to be fixed... :-)&lt;br /&gt;
&lt;br /&gt;
[edit]Added dch command to make sure apt-get doesn&#039;t reinstall the original package every time.[/edit]  
    </content:encoded>

    <pubDate>Thu, 11 Oct 2007 10:22:08 +0200</pubDate>
    <guid isPermaLink="false">http://wilmer.gaast.net/blog/archives/36-guid.html</guid>
    
</item>
<item>
    <title>Intel X.org driver, PAL TV-Out, colours please!</title>
    <link>http://wilmer.gaast.net/blog/archives/33-Intel-X.org-driver,-PAL-TV-Out,-colours-please!.html</link>
            <category>Linux</category>
    
    <comments>http://wilmer.gaast.net/blog/archives/33-Intel-X.org-driver,-PAL-TV-Out,-colours-please!.html#comments</comments>
    <wfw:comment>http://wilmer.gaast.net/blog/wfwcomment.php?cid=33</wfw:comment>

    <slash:comments>2</slash:comments>
    <wfw:commentRss>http://wilmer.gaast.net/blog/rss.php?version=2.0&amp;type=comments&amp;cid=33</wfw:commentRss>
    

    <author>blog@wilmer.gaast.net (Wilmer van der Gaast)</author>
    <content:encoded>
    Got a little bit confused by &lt;a href=&quot;https://bugs.freedesktop.org/show_bug.cgi?id=2782&quot;  class=&quot;bb-url&quot;&gt;this bug report&lt;/a&gt; while trying to get the TV-out on my mainboard working properly. As any European TV, mine wants PAL signals, not NTSC. The bug report gave me the impression that there should be separate PAL/NTSC mode definitions. But in the current driver, this isn&#039;t the case anymore.&lt;br /&gt;
&lt;br /&gt;
Instead, they now use RandR properties to maintain this setting. And RandR, at least for properties, seems to be read-only .... soooo, how does it work then???&lt;br /&gt;
&lt;br /&gt;
Well, try something like this:&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;bb-code-title&quot;&gt;CODE:&lt;/div&gt;&lt;div class=&quot;bb-code&quot;&gt;Section&amp;#160;&quot;Monitor&quot;&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;Identifier&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&quot;TV&quot;&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;Option&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&quot;TV&amp;#160;Format&quot;&amp;#160;&quot;PAL&quot;&lt;br /&gt;
EndSection&lt;/div&gt;&lt;br /&gt;
Took me a whole weekend to find this, but at least it works now, in full colour! This didn&#039;t seem to be very well-documented to me, so I hope this post will help. If it doesn&#039;t work for you, maybe your TV doesn&#039;t understand S-Video. There&#039;s a very simple &lt;a href=&quot;http://www.camp0s.com/pc_related/svideo/svideo.php&quot;  class=&quot;bb-url&quot;&gt;hack&lt;/a&gt; to solve that issue too. All you need is two wires, no need to solder anything. :-)  
    </content:encoded>

    <pubDate>Sat, 29 Sep 2007 14:55:52 +0200</pubDate>
    <guid isPermaLink="false">http://wilmer.gaast.net/blog/archives/33-guid.html</guid>
    
</item>
<item>
    <title>Dear Intel,</title>
    <link>http://wilmer.gaast.net/blog/archives/32-Dear-Intel,.html</link>
            <category>Linux</category>
    
    <comments>http://wilmer.gaast.net/blog/archives/32-Dear-Intel,.html#comments</comments>
    <wfw:comment>http://wilmer.gaast.net/blog/wfwcomment.php?cid=32</wfw:comment>

    <slash:comments>3</slash:comments>
    <wfw:commentRss>http://wilmer.gaast.net/blog/rss.php?version=2.0&amp;type=comments&amp;cid=32</wfw:commentRss>
    

    <author>blog@wilmer.gaast.net (Wilmer van der Gaast)</author>
    <content:encoded>
    Thanks for making Linux drivers for the on-board graphics stuff on my mainboard. Next year, could you please not publish them as a .... &lt;a href=&quot;http://downloadcenter.intel.com/download.aspx?url=/13824/eng/IEGD_7_0_GOLD_1004.exe&amp;DwnldId=13824&amp;ProductID=2159&amp;lang=eng&quot;  class=&quot;bb-url&quot;&gt;.EXE file???&lt;/a&gt;  
    </content:encoded>

    <pubDate>Sat, 01 Sep 2007 23:17:36 +0200</pubDate>
    <guid isPermaLink="false">http://wilmer.gaast.net/blog/archives/32-guid.html</guid>
    
</item>
<item>
    <title>I hate trees!</title>
    <link>http://wilmer.gaast.net/blog/archives/25-I-hate-trees!.html</link>
            <category>BitlBee</category>
            <category>Linux</category>
            <category>Mountain View</category>
            <category>Work</category>
    
    <comments>http://wilmer.gaast.net/blog/archives/25-I-hate-trees!.html#comments</comments>
    <wfw:comment>http://wilmer.gaast.net/blog/wfwcomment.php?cid=25</wfw:comment>

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

    <author>blog@wilmer.gaast.net (Wilmer van der Gaast)</author>
    <content:encoded>
    There are two things in nature here that I don&#039;t like. The ever-strong wind that slows me down when I cycle to work ... and trees! I bought this radio-controlled airplane yesterday and went to the park to try it out. The flight went very well thanks to some help from ... well, the wind. The result?&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://fotos.gaast.net/stuff/20070506_i_hate_trees.jpeg&quot;  class=&quot;bb-url&quot;&gt;&lt;img src=&quot;http://fotos.gaast.net/stuff/20070506s_i_hate_trees.jpeg&quot; alt=&quot;http://fotos.gaast.net/stuff/20070506s_i_hate_trees.jpeg&quot; class=&quot;bb-image&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
(Try to find it on the big picture, it&#039;s not too easy. :-))&lt;br /&gt;
&lt;br /&gt;
Something I really do like here is World Market, though. They actually sell this candy we call &quot;drop&quot; in .nl, and it tastes pretty good:&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://fotos.gaast.net/stuff/20070505_candies.jpeg&quot;  class=&quot;bb-url&quot;&gt;&lt;img src=&quot;http://fotos.gaast.net/stuff/20070505s_candies.jpeg&quot; alt=&quot;http://fotos.gaast.net/stuff/20070505s_candies.jpeg&quot; class=&quot;bb-image&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
I just wonder why the German pack says &quot;katjes&quot; instead of &quot;kätzes&quot; or something like that. And there are fishes inside, not cats. They&#039;re pretty tasty though, so I don&#039;t care.&lt;br /&gt;
&lt;br /&gt;
Work is still going well, my main mission for during my stay here is done. I got two more weeks here before I have to go back to Dublin, so that&#039;s well in time. It&#039;ll be nice to be back in Europe, at last...&lt;br /&gt;
&lt;br /&gt;
In other news, worked on BitlBee a bit more again in the last few weeks. Worked on the API a bit, so the next time someone says porting Gaim modules to BitlBee is easy, please don&#039;t listen. It&#039;s a lie. ;-) And there&#039;s basic support for Jabber chatrooms now! Just for the non-anonymous ones, unfortunately. (And the majority of Jabber rooms I know of are anonymous.) Will work on that support later, unfortunately it&#039;ll be very complicated and hackish.&lt;br /&gt;
&lt;br /&gt;
And this weekend, besides &quot;dropjes&quot;, I&#039;m enjoying eye candy from Beryl on Ubunty Feisty. Wobbly windows and all the other stuff. Hey, I wanted some of my OS X eye candy back, okay? ;-)  
    </content:encoded>

    <pubDate>Sun, 06 May 2007 23:57:03 +0200</pubDate>
    <guid isPermaLink="false">http://wilmer.gaast.net/blog/archives/25-guid.html</guid>
    
</item>
<item>
    <title>Oh yes, blog!</title>
    <link>http://wilmer.gaast.net/blog/archives/4-Oh-yes,-blog!.html</link>
            <category>Dublin</category>
            <category>Linux</category>
    
    <comments>http://wilmer.gaast.net/blog/archives/4-Oh-yes,-blog!.html#comments</comments>
    <wfw:comment>http://wilmer.gaast.net/blog/wfwcomment.php?cid=4</wfw:comment>

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

    <author>blog@wilmer.gaast.net (Wilmer van der Gaast)</author>
    <content:encoded>
    Just back from a short trip to Belgrade, and now I&#039;m in the last days of my current job. As I could expect, time is running out, and there&#039;s always more to do than I thought, also thanks to having some &quot;bad luck&quot; with the only server with only one hard drive (yes, I know RAID != backup) and broken backup software. Suddenly it turns out that debugfs is not quite the best data recovery tool after all. ;-)&lt;br /&gt;
&lt;br /&gt;
Meanwhile preparations for Dublin started. Looks like I&#039;ll go there on the 17th of January already to spend the rest of that week on an introduction tour through the city and another day for looking at some houses that might be good for me.&lt;br /&gt;
&lt;br /&gt;
Meanwhile I didn&#039;t have too much time for hacking. The new BitlBee Jabber module isn&#039;t completely finished yet, I&#039;m afraid. Would be nice to find some time for it soon...&lt;br /&gt;
&lt;br /&gt;
Oh yes, and the following quote is making me a bit nervous: &quot;All systems administrators have their horror stories. For me, it was setting up a HP Color Bubblejet under Linux using ghostscript before linuxprinting.org was alive.  Well that was a piece of cake compared to what I am about to describe in this document.&quot;&lt;br /&gt;
&lt;br /&gt;
I know how terrible the Linux printing hell is, so maybe I should go for Maildir after all... ;-) Oh yes, I found that quote in the Cyrus README.Debian, the original source is: &quot;Hosting email for virtual domains using Postfix and Cyrus&quot; (Haim Dimermanas, 2001-08-01)&lt;br /&gt;
 
    </content:encoded>

    <pubDate>Wed, 22 Nov 2006 21:54:47 +0100</pubDate>
    <guid isPermaLink="false">http://wilmer.gaast.net/blog/archives/4-guid.html</guid>
    
</item>
<item>
    <title>.deb files are ar archives, but ...</title>
    <link>http://wilmer.gaast.net/blog/archives/3-.deb-files-are-ar-archives,-but-....html</link>
            <category>Linux</category>
    
    <comments>http://wilmer.gaast.net/blog/archives/3-.deb-files-are-ar-archives,-but-....html#comments</comments>
    <wfw:comment>http://wilmer.gaast.net/blog/wfwcomment.php?cid=3</wfw:comment>

    <slash:comments>4294967295</slash:comments>
    <wfw:commentRss>http://wilmer.gaast.net/blog/rss.php?version=2.0&amp;type=comments&amp;cid=3</wfw:commentRss>
    

    <author>blog@wilmer.gaast.net (Wilmer van der Gaast)</author>
    <content:encoded>
    Just to express my frustration of the day a bit. I want the left column to be higher than the right one here. ;-)&lt;br /&gt;
&lt;br /&gt;
From time to time you hear people boasting that they can use standard tools to handle .deb archives. &quot;ar x blablah_0.123-4_z80.deb&quot; and you get two standard tar.gz files to play with. That&#039;s indeed convenient, more convenient than rpm2cpio.&lt;br /&gt;
&lt;br /&gt;
However, just try, on a Linux system, to convert those two tarballs (and the debian-binary file, of course) back to a .deb. &quot;ar cr blablah_0.123-4.1_z80.deb debian-binary control.tar.gz data.tar.gz&quot; will do, right? Try to install it using dpkg... Yes, it works! But then, try to put it in your apt repository!&lt;br /&gt;
&lt;br /&gt;
{{ pool/main:&lt;br /&gt;
E: This is not a valid DEB archive, missing &#039;debian-binary&#039; member&lt;br /&gt;
E: Errors apply to file &#039;iso/pool/main/b/base-installer/base-installer_1.42ubuntu12_amd64.udeb&#039;}}&lt;br /&gt;
&lt;br /&gt;
Turns out that there are multiple ar formats and that Debian uses a very simple format and doesn&#039;t (fully) support the ar files produced by GNU ar. It&#039;s quite confusing that dpkg does support these files while apt does not. Some consistency (or at least packaging a version of ar that is compatible with apt) would be nice, guys.&lt;br /&gt;
&lt;br /&gt;
Anyway, to not be too negative in this post: debian-installer is pretty cool, once you understand the internals a little bit. I just spent a couple of days now on customizing an USB stick installation image, and I think I understand the system at least for a few percents by now. ;-) Have to find the limits of what can be done with preseeding files now. Having fun!&lt;br /&gt;
&lt;br /&gt;
... What ... if anyone reads this? Dunno. :-P&lt;br /&gt;
&lt;br /&gt;
(See also: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=161593)  
    </content:encoded>

    <pubDate>Mon, 06 Nov 2006 22:39:22 +0100</pubDate>
    <guid isPermaLink="false">http://wilmer.gaast.net/blog/archives/3-guid.html</guid>
    
</item>

</channel>
</rss>