<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE rss [<!ENTITY % HTMLlat1 PUBLIC "-//W3C//ENTITIES Latin 1 for XHTML//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml-lat1.ent">]>
<rss version="2.0" xml:base="http://www.energyhq.es.eu.org">
<channel>
 <title>Miguel&#039;s weblog - *BSD, cats and more</title>
 <link>http://www.energyhq.es.eu.org</link>
 <description></description>
 <language>en</language>
<item>
 <title>The Emperor has won (Apple goes Intel)</title>
 <link>http://www.energyhq.es.eu.org/node/20</link>
 <description>&lt;p&gt;The official press release from the horse&#039;s mouth is &lt;a href=&quot;http://www.apple.com/pr/library/2005/jun/06intel.html&quot;&gt;here&lt;/a&gt;. I have to say that this is very very sad news. Of all the architectures out there Apple, for some unkown reason, has decided to go with the worst cpu ever designed. The &lt;a href=&quot;http://www.apple.com/g5processor/&quot;&gt;G5&lt;/a&gt; processor is low power consuming, very well designed, 64bit CPU. And now they switch to a horribly boated, power hungry, register starved piece of junk. Why? Why in the world is this happening? The only reason IA-32 is still alive is because there&#039;s so much closed source software out there that wasting transistors on compatibility with a brain dead ISA is justified. If we lived in a world were free software was the norm, only a recompile would be needed, and the joke that is known as Pentium4 would have never been created. AMD&#039;s AMD64 patch surely looks nice, but I&#039;d love to see a version that only did 64bit, not 32/16 legacy support. But do you know what&#039;s funny here? Microsoft&#039;s Xbox 360 uses PPC processors, so does the PS3. The republic has lost and the new Intel Empire has begun. Goodbye OS X. Hopefully &lt;a href=&quot;http://www.netbsd.org&quot;&gt;NetBSD&lt;/a&gt; will keep running on the PPC based Mac hardware for years.&lt;/p&gt;
&lt;p&gt;[Edit] How are they going to avoid the &lt;a href=&quot;http://en.wikipedia.org/wiki/Osborne_effect&quot;&gt;Osborne effect&lt;/a&gt;? Who&#039;s going to buy a G5 now that planned obsolescence for the PPC systems has been announced? OTOH, this might lower the price of G4s quite a bit.&lt;/p&gt;
</description>
 <category domain="http://www.energyhq.es.eu.org/taxonomy/term/6">Rants</category>
 <pubDate>Mon,  6 Jun 2005 23:05:05 +0200</pubDate>
</item>
<item>
 <title>What Star Wars Character Are You?</title>
 <link>http://www.energyhq.es.eu.org/node/18</link>
 <description>&lt;p&gt;On the topic of Star Wars...&lt;/p&gt;
&lt;p&gt;Take the quiz: &lt;a href=&quot;http://www.zenhex.com/quiz.php?id=2824&quot;&gt;&quot;What Star Wars Character Are You?&quot;&lt;/a&gt;&lt;br /&gt;
&lt;img src=&quot;http://img1.zenhex.com/quiz1/2824/res2.jpg&quot; alt=&quot;Anakin&quot;&gt;&lt;/img&gt;&lt;br /&gt;
&lt;b&gt;Anakin Skywalker&lt;/b&gt;&lt;br /&gt;
Watch out for your temper...it could get you into trouble the way it did Anakin.  You have enormous potential to be a great Jedi, but stress has made the dark side seem that much more inviting...&lt;/p&gt;
</description>
 <category domain="http://www.energyhq.es.eu.org/taxonomy/term/8">Meme</category>
 <category domain="http://www.energyhq.es.eu.org/taxonomy/term/3">Movies</category>
 <pubDate>Sun,  5 Jun 2005 15:22:57 +0200</pubDate>
</item>
<item>
 <title>Sith Lords, SCMs and more...</title>
 <link>http://www.energyhq.es.eu.org/node/17</link>
 <description>&lt;p&gt;Okay, first things first. I know some people are waiting for e-mail from me. I&#039;ll catch up ASAP. So no, I&#039;ve not forgotten about you :)&lt;/p&gt;
&lt;p&gt;The upgrade to &lt;a href=&quot;http://www.openbsd.org/37.html&quot;&gt;OpenBSD 3.7&lt;/a&gt; was pretty smooth and was the reason for last weekend&#039;s outage, in case you were wondering. Well, it&#039;s OpenBSD so little, if any, surprises are expected. Some of the new functionality is pretty nice, and so is the use of gcc 3.x instead of the aging 2.95 series. I &lt;em&gt;pgdump&lt;/em&gt;&#039;ed all the database information before the update just in case but, in the end, it wasn&#039;t needed, and quite soon I had the server back on track, modulo a minor problem with &lt;a href=&quot;http://www.postfix.org&quot;&gt;postfix&lt;/a&gt;, which required some tweaking in the config files for the transition from the 2.0 series to 2.2 to work correctly. Another reason why I was looking forward to upgrading to 3.7 is that &lt;a href=&quot;http://subversion.tigris.org/&quot;&gt;SVN&lt;/a&gt; is now in the ports collection. I really wanted to give svn another try, and this time I can say that it&#039;s gotten good enough to replace &lt;a href=&quot;http://www.perforce.com&quot;&gt;p4&lt;/a&gt;. The first step was converting the p4 repo to svn. I tried using the &lt;em&gt;dest::svk&lt;/em&gt; option in &lt;a href=&quot;http://www.cpan.org/modules/by-module/LWP/AUTRIJUS/VCP-autrijus-snapshot-0.9-20050110.readme&quot;&gt;VCP&lt;/a&gt; but it segfaulted, so I converted the repo to CVS and then used the &lt;a href=&quot;http://cvs2svn.tigris.org/&quot;&gt;cvs2svn&lt;/a&gt; conversion tool. Worked like a charm. In case you&#039;re interested, this is what did it for me...&lt;/p&gt;
&lt;p&gt;&lt;code&gt;&lt;br /&gt;
#!/bin/sh&lt;br /&gt;
for module in `p4 have | awk -F/ &#039;{print $4}&#039;|sort -u`&lt;br /&gt;
do vcp &quot;p4:(scienide)@perforce:1666://depot/&quot;$module&quot;/...&quot; &quot;cvs:/pub/devel/cvs:&quot;$module&lt;br /&gt;
done&lt;br /&gt;
cd /pub/devel/cvs &amp;amp;&amp;amp; find . -name CVSROOT -exec rm -rf {} \;&lt;br /&gt;
cvs2svn --dump-only --dumpfile=/pub/tmp/cvsdump /pub/devel/cvs&lt;br /&gt;
ssh mindfields svnadmin load /storage3/devel/svn &amp;lt; /pub/tmp/cvsdump&lt;br /&gt;
svn checkout svn+ssh://mindfields.energyhq.es.eu.org/storage3/devel/svn/trunk svn&lt;br /&gt;
&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;Pretty straightforward, right? So, things I like in svn and I things I like in p4:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;P4 enforces permissions on files, so a quick ls will tell me what file(s) I&#039;m currently working on.&lt;/li&gt;
&lt;li&gt;svn version numbers are repository wide, which has an interesting side effect. Let&#039;s see an example:&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;code&gt;&lt;br /&gt;
flynn@scienide% svn --verbose log -r 216&lt;br /&gt;
------------------------------------------------------------------------&lt;br /&gt;
r216 | flynn | 2005-05-30 13:07:08 +0200 (Mon, 30 May 2005) | 1 line&lt;br /&gt;
Changed paths:&lt;br /&gt;
   M /trunk/gtk-send-pr/gtk-send-pr.h&lt;br /&gt;
   M /trunk/gtk-send-pr/gtk_ui.c&lt;br /&gt;
   M /trunk/gtk-send-pr/main.c&lt;br /&gt;
&lt;/code&gt;&lt;br /&gt;
&lt;code&gt;&lt;br /&gt;
Use a linked list for files&lt;br /&gt;
------------------------------------------------------------------------&lt;br /&gt;
flynn@scienide% grep Id gtk-send-pr.h gtk_ui.c main.c&lt;br /&gt;
gtk-send-pr.h:  $Id: gtk-send-pr.h 216 2005-05-30 11:07:08Z flynn $&lt;br /&gt;
gtk_ui.c:  $Id: gtk_ui.c 216 2005-05-30 11:07:08Z flynn $&lt;br /&gt;
main.c:  $Id: main.c 216 2005-05-30 11:07:08Z flynn $&lt;br /&gt;
&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;Note how those 3 files have the same revision and how svn log tells me what I did in change &lt;em&gt;216&lt;/em&gt; and which files it affected.&lt;/p&gt;
&lt;p&gt;My main concern about svn was its speed, or the lack of. This seems to have been addressed in the recent releases and, coupled with the &lt;em&gt;FSFS&lt;/em&gt; backend, makes a formidable SCM. So what I&#039;m doing now is keep developing on the p4 repo and then copy and commit those same changes to the svn one. Once I feel confident enough with svn newer development will take place on the svn repo. I have to figure out a way to run a chrooted svnweb system, although &lt;a href=&quot;http://www.edgewall.com/trac/&quot;&gt;Trac&lt;/a&gt; looks even more interesting (thanks wac for pointing it out), and probably worth giving a go.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;http://www.energyhq.es.eu.org/images/sw3.gif&quot; alt=&quot;Star Wars Episode III&quot; style=&quot;float:left; margin: 10px;&quot;&gt;&lt;/img&gt;And now, let&#039;s talk a bit about &lt;a href=&quot;http://www.imdb.com/title/tt0121766/&quot;&gt;Star Wars: Episode III - Revenge of the Sith&lt;/a&gt;. I know a lot has been said about it, so if you&#039;ve had enough already you might skip the rest of the entry. I&#039;ll try not to spoil the movie for those who have not seen it yet. And on that topic, if you plan to watch it later when it comes out on DVD, this is a definitely movie worth watching on the big screen, even if you&#039;re not that big a Star Wars fan. After having read some posts on &lt;a href=&quot;http://slashdot.org&quot;&gt;/.&lt;/a&gt; and &lt;a href=&quot;http://www.imdb.com&quot;&gt;IMDB&lt;/a&gt; I get the impression that some people think Star Wars is sci-fi. I don&#039;t think that&#039;s the case, at all. In my opinion, Star Wars is just fantasy set on space.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.imdb.com/title/tt0062622/&quot;&gt;2001: A Space Odyssey&lt;/a&gt; is sci-fi, Star Wars is not. Another thing I find funny is how some people bash the movie&#039;s cheesy love scenes and acting, somehow forgetting that the acting in IV, V and VI wasn&#039;t that great either. I&#039;ve recently watched the old trilogy and, while Alec Guiness&#039; work was pretty good, I wouldn&#039;t say Mark Hamill&#039;s performance was Oscar material. Not that it matters! Because Star Wars was never about that. Star Wars is about (back then) cutting edge effects, battle scenes and a very interesting story. I found &lt;a href=&quot;http://www.imdb.com/title/tt0120915/&quot;&gt;The Phantom Menace&lt;/a&gt; to be way worse than the old trilogy, and &lt;a href=&quot;http://www.imdb.com/title/tt0121765/&quot;&gt;Attack of the Clones&lt;/a&gt; to be almost on par and, to be honest, my expectations for &lt;a href=&quot;http://www.imdb.com/title/tt0121766/&quot;&gt;Revenge of the Sith&lt;/a&gt; were pretty high, and I&#039;m glad to say that George Lucas has met my expectations.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.ilm.com&quot;&gt;ILM&lt;/a&gt; have reached perfection. I&#039;ve been follwing their work since &lt;a href=&quot;http://www.imdb.com/title/tt0090357&quot;&gt;Young Sherlock Holmes&lt;/a&gt; and, milestone after milestone, these people have set the gold standard of what can be achieved with CGI. In EP3 the rendering is perfect, plain and simple. No flaws, no bad textures or lights, no easily spotted fake-looking characters. The attention paid to detail is incredible. My only complain is that the floors on the Jedi Temple look like they were made of plastic, but that&#039;s it. Water, fire, clouds, stone, metal. You name it, the ILM people have perfected it. What can be said about the score. Simply amazing. Very very moving music, like always. Some songs really got stuck in my head. Excellent soundtrack. As for the rest, yes the love scenes are cheesy (it&#039;s a Lucas film) and the dialogue is not so good but, as I&#039;ve said before, who cares? The battle scenes are grandiose, and so are the lightsaber duels. And Vader&#039;s transformation, wow. There are a lot of references to the other movies, but I&#039;ll leave that as an exercise to the reader.&lt;/p&gt;
&lt;p&gt;I realize how easy it is to get passionate about Star Wars. This movie gives you a completely different perspective of Darth Vader, Palpatine and the Jedi Order. I felt so bad for Anakin, what he went through and what his motives were. You can never watch the classic trilogy with the same eyes again after EP3. Vader had been the epitome of evil for so long, and now I feel sorry for him. He&#039;s just a poor kid who tried to save the ones he loved and was deceived and manipulated by that Emperor guy. The way the Jedi handled the issue, specially Obi-Wan, was a bit disappointing. I&#039;d venture to say that they were as guilty as others of the fall of the republic. I&#039;ve read just the first chapter of the novel and it goes into much more detail (not surprising) and makes a very nice read after having watched the movie. Of course, these words are coming from a Star Wars fan, so my comments are pretty biased. If you know what to expect EP3 is, in yours truly opinion, on par with &lt;a href=&quot;http://www.imdb.com/title/tt0080684/&quot;&gt;The Empire Strikes Back&lt;/a&gt;, my personal favourite. Both are dark, sad and very moving films.&lt;/p&gt;
&lt;p&gt;On a different note, did Hollywood run out of ideas once more? We saw trailers for remakes of &lt;em&gt;The Pink Panther&lt;/em&gt; (with Beyoncé Knowles, WTF?), &lt;em&gt;The War of the Worlds&lt;/em&gt; and &lt;em&gt;Guess Who&#039;s Coming to Dinner&lt;/em&gt;. I wonder when they&#039;ll star making remakes of remakes :)&lt;/p&gt;
&lt;p&gt;Oh, and for those of you looking forward to watching a sci-fi movie, I&#039;ve been suggested &lt;a href=&quot;http://www.imdb.com/title/tt0379786&quot;&gt;Serenity&lt;/a&gt;. The trailer surely looks promising. We&#039;ll see. And now, back to answering e-mail :)&lt;/p&gt;
</description>
 <category domain="http://www.energyhq.es.eu.org/taxonomy/term/2">Free Software</category>
 <category domain="http://www.energyhq.es.eu.org/taxonomy/term/3">Movies</category>
 <category domain="http://www.energyhq.es.eu.org/taxonomy/term/1">Music</category>
 <pubDate>Sun,  5 Jun 2005 16:32:22 +0200</pubDate>
</item>
<item>
 <title>In a nutshell</title>
 <link>http://www.energyhq.es.eu.org/node/16</link>
 <description>&lt;p&gt;I guess it&#039;s time for one of those &lt;em&gt;&quot;In a nutshell&quot;&lt;/em&gt; posts.&lt;/p&gt;
&lt;p&gt;Buffy Boy&#039;s loss affected me way more than I could have expected. After all, we were never formally introduced, but it was always nice to see Buffy Boy&#039;s new pics and learn about his latest adventures. My guess is that it reminded me of Iris and how we had to put her to sleep too and was it the most painful moment in my life. It took me a solid 4 months before I could even consider owning a cat again, but I have to say I&#039;m very glad I did and have been very happy with Athene since then. And I suspect certain furball that goes by the name of a famous musketeer will enjoy a very happy life from now on.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.bsdcan.org/2005/&quot;&gt;BSDCan&lt;/a&gt; is now over, and some very interesting stuff came out of it, including yet another &lt;a href=&quot;http://marc.theaimsgroup.com/?l=openbsd-misc&amp;amp;m=111619770429208&amp;amp;w=2&quot;&gt;flame&lt;/a&gt; between FreeBSD developer Poul-Henning Kamp and the OpenBSD guys. The questions: Who leaked the post? (It was sent to a closed mailing list, my guess is that it was Hsu, but you never know) and, more important: Why the heck is this behaviour tolerated? This has been going on for years now and, according to Greg Lehey: &lt;cite&gt;&quot;phk is not speaking for freebsd&quot;&lt;/cite&gt;. Well, good to know. That doesn&#039;t explain why he (and 2 or 3 other people) are allowed to do that.&lt;/p&gt;
&lt;p&gt;I&#039;ve been doing some work on my audio editor. I have some pretty good ideas that I want to test before moving into the interface code. Oh, and I&#039;ve been listening almost non-stop to Metallica&#039;s &lt;a href=&quot;http://www.metal-reviews.com/lmn/met-live.htm&quot;&gt;Live Shit Binge and Purge&lt;/a&gt; live set. Awesome stuff. Which reminds me, I have to give my acoustic guitar another chance. It&#039;s been years since I last played it.&lt;/p&gt;
&lt;p&gt;This week is pretty interesting because on the 19th two big events will take place: &lt;a href=&quot;http://www.imdb.com/title/tt0121766/&quot;&gt;Star Wars: Episode III - Revenge of the Sith&lt;/a&gt; opens world wide and &lt;a href=&quot;http://www.openbsd.org/37.html&quot;&gt;OpenBSD 3.7&lt;/a&gt; is officially out. I personally can&#039;t wait :)&lt;/p&gt;
</description>
 <category domain="http://www.energyhq.es.eu.org/taxonomy/term/2">Free Software</category>
 <category domain="http://www.energyhq.es.eu.org/taxonomy/term/1">Music</category>
 <category domain="http://www.energyhq.es.eu.org/taxonomy/term/5">Nutshell</category>
 <pubDate>Tue, 17 May 2005 23:50:28 +0200</pubDate>
</item>
<item>
 <title>Thursday</title>
 <link>http://www.energyhq.es.eu.org/node/15</link>
 <description>&lt;p&gt;Considering that the weather is getting hotter by the day and I&#039;d rather not do a trip to the vet every 3 weeks to get food I ordered a 4Kg bag last week, in the hope that it will last until the end of the summer. I&#039;m not going to plug any brand here, but let&#039;s say it has so far worked very well (the little girl lost 400 grams) and I&#039;ll stick to it as long as the vet is okay with it. As soon as I&#039;ve arrived home Athene has started looking at the new bag with interest and given her approval. On the topic of cats, when I think about it Iris and Athene happen to be some of the nicest persons I&#039;ve ever met. Honest, loyal, caring and knowing that the key to happiness lies in being able to enjoy those little things life offers. If only certain beings from other species could learn such a simple concept.&lt;/p&gt;
&lt;p&gt;On a not so happy note, the BBC is reporting that &lt;a href=&quot;http://news.bbc.co.uk/1/hi/business/4515101.stm&quot;&gt;IBM will cut 13,000 jobs worldwide&lt;/a&gt;. If this is what the new world economy is about, well, it plain sucks. We&#039;re not talking about a random bozo who fooled the suits into giving him VC for a crazy project, it&#039;s IBM fer Christ&#039;s sake. Anyway, good luck to those people. This incident just reminded me why I dislike corporate culture so much.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://arstechnica.com&quot;&gt;Ars Technica&lt;/a&gt; is running a pretty interesting article called &lt;a href=&quot;http://arstechnica.com/articles/paedia/gui.ars/1&quot;&gt;A History of the GUI&lt;/a&gt;. I was already familiar with the work done by Xerox in the &#039;70s, but it&#039;s amazing nonetheless. They created the first laserprinter in 1973. It&#039;s a shame so many people have been brainwashed into thinking Bill Gates &amp;amp; Co actually came up with anything original. It was also nice to see a screenshot of my beloved Amiga Workbench 1.3 after so many years :)&lt;/p&gt;
&lt;p&gt;Plans for the weekend include getting a lot of sleep and trying to come up with a real solution to migrate the old blog. Some of the hacks I&#039;ve seen out there are pretty awful, to be honest. I&#039;ll do some more research before I get my hands dirty on perl hacking. Yes, perl :)&lt;/p&gt;
</description>
 <category domain="http://www.energyhq.es.eu.org/taxonomy/term/9">Cats</category>
 <category domain="http://www.energyhq.es.eu.org/taxonomy/term/5">Nutshell</category>
 <pubDate>Thu,  5 May 2005 22:59:20 +0200</pubDate>
</item>
<item>
 <title>After the Sunset</title>
 <link>http://www.energyhq.es.eu.org/node/14</link>
 <description>&lt;p&gt;&lt;img src=&quot;http://www.energyhq.es.eu.org/images/sunset.jpg&quot; style=&quot;float:left; margin: 10px;&quot; alt=&quot;After the Sunset&quot;&gt;&lt;/img&gt;It&#039;s not a secret that I love heist movies, so I had to watch &lt;a href=&quot;http://www.imdb.com/title/tt0367479&quot;&gt;After the Sunset&lt;/a&gt;. For what it&#039;s worth, this is not the first time &lt;a href=&quot;http://www.imdb.com/name/nm0000112/&quot;&gt;Pierce Brosnan&lt;/a&gt; plays the role of a thief. He already did that in &lt;a href=&quot;http://www.imdb.com/title/tt0155267/&quot;&gt;The Thomas Crown Affair&lt;/a&gt;. The movie itself is pretty enjoyable, although I found Woody Harrelson&#039;s character a bit annoying at times, but perhaps that was the intention. Salma Hayek was a bit too 1 dimensional. I&#039;d rather have had less boobs and more character development. How did Max and Lola meet? How long have they been in business? How was the first Napoleon Diamond stolen? There are some pretty funny moments, while others are a bit obnoxious, but all things considered I enjoyed the movie a lot. Some songs from the soundtrack are pretty catchy, I have too take a look at them. And the sets are simply fantastic, makes you want to be there. Something I&#039;ve always liked about these movies is how the empathy with the thief is built as we get to know him and the police is always the bad guy, which is kind of ironic because the former is the one breaking the law, albeit in a very sophisticated and, why not, romantic kind of way. My fave heist movie is still &lt;a href=&quot;http://www.imdb.com/title/tt0240772/&quot;&gt;Ocean&#039;s Eleven&lt;/a&gt;, but I&#039;m sure I&#039;ll get this one on DVD once it comes out here.&lt;/p&gt;
</description>
 <category domain="http://www.energyhq.es.eu.org/taxonomy/term/3">Movies</category>
 <pubDate>Sun,  5 Jun 2005 12:30:50 +0200</pubDate>
</item>
<item>
 <title>In a Nutshell</title>
 <link>http://www.energyhq.es.eu.org/node/13</link>
 <description>&lt;p&gt;I&#039;ve been thinking about the &lt;em&gt;Some Kind of Monster&lt;/em&gt; documentary I mentioned earlier, specially that scene when Hetfield says &lt;em&gt;&quot;I&#039;m in a shit mood&quot;&lt;/em&gt;, and that&#039;s how I&#039;ve felt for most of the day, mainly thanks for another headache. I know the weather is to blame this. It&#039;s already too hot to get anything done without the help of the air conditioning system. Man, do I hate the Summer-like time. I&#039;m more of a Winter person.&lt;/p&gt;
&lt;p&gt;Fortunately I&#039;m managing to get some work done during this 4-day mini-holidays. And today I wanted to do some more &lt;em&gt;drupalization&lt;/em&gt;, namely the &lt;a href=&quot;http://www.energyhq.es.eu.org/bsd.html&quot;&gt;BSD&lt;/a&gt; and &lt;a href=&quot;http://www.energyhq.es.eu.org/gtk-send-pr.html&quot;&gt;GTK+ Send PR&lt;/a&gt; sections and, speaking of the devil, a new version of the latter with some small enhancements.&lt;/p&gt;
&lt;p&gt;This time the release is dedicated to one of my favourite rascals, Buffy Boy, who has recently spent some time in a Hospital but is already home...&lt;/p&gt;
&lt;p&gt;flynn@scienide% gtk-send-pr -v&lt;br /&gt;
gtk-send-pr 0.4.6 &quot;Buffy Boy&quot;&lt;br /&gt;
Copyright (c) 2003, 2004, 2005 Miguel Mendez . All rights reserved.&lt;/p&gt;
&lt;p&gt;As for the rest of the day I&#039;m going to listen to some music and then watch a movie which I&#039;ll write about tomorrow.&lt;/p&gt;
</description>
 <category domain="http://www.energyhq.es.eu.org/taxonomy/term/9">Cats</category>
 <category domain="http://www.energyhq.es.eu.org/taxonomy/term/2">Free Software</category>
 <category domain="http://www.energyhq.es.eu.org/taxonomy/term/5">Nutshell</category>
 <pubDate>Mon,  2 May 2005 21:23:20 +0200</pubDate>
</item>
<item>
 <title>Some Kind of Monster</title>
 <link>http://www.energyhq.es.eu.org/node/10</link>
 <description>&lt;p&gt;&lt;img src=&quot;http://www.energyhq.es.eu.org/images/monster.jpg&quot; alt=&quot;Some kind of monster&quot; style=&quot;float:left; margin: 10px;&quot;&gt;&lt;/img&gt;I remember the first time I listened to &lt;a href=&quot;http://www.metallica.com/&quot;&gt;Metallica&lt;/a&gt;. It was in 1991, and the song was &lt;em&gt;&quot;The Four Horsemen&quot;&lt;/em&gt;. It&#039;s been a while since then, but I still listen to those albums. As some of you know, I love music, most genres except rap and hip hop, so heavy metal/thrash metal is not an exception. There are some moments when you want to relax with some classical or pop, and there are moments when you need something more powerful and energy filled, and does Metallica fill that niche. I never really got into &lt;em&gt;Load&lt;/em&gt; and &lt;em&gt;Reload&lt;/em&gt;, and those two plus the S&amp;amp;M album are the only records missing in my collection. When I heard they were working on a new album I had some mixed feelings. My opinion about St. Anger? It&#039;s damn good. Sure it&#039;s not like their old work, but it&#039;s good material, I like it. Some people find the distorted snare sound annoying, I love it.&lt;/p&gt;
&lt;p&gt;I was curious about &lt;a href=&quot;http://www.imdb.com/title/tt0387412&quot;&gt;Some Kind of Monster&lt;/a&gt;, the documentary that supposedly sheds some light about Metallica&#039;s past and future, so I gave it a go. Hetfield going into rehab and the ego problems weren&#039;t that surprising, but that scene with Dave Mustaine surely was. I had always considered Dave to be a tough guy. Watching him break into tears was really something I wasn&#039;t expecting.I understand his feelings, but come on, it&#039;s not like &lt;a href=&quot;http://www.megadeth.com/&quot;&gt;Megadeth&lt;/a&gt; was a flop. I have 4 of their records and they rule in their own style. I recently listened to their &lt;em&gt;The system has failed&lt;/em&gt; and it still has the same Megadeth sound, which I like. Yes, &lt;em&gt;Back in the day&lt;/em&gt; has that Iron Maiden-esque sound, but the rest sounds like &lt;em&gt;Countdown to Extinction&lt;/em&gt;. We could play the &lt;em&gt;what if&lt;/em&gt; game all day long, but the fact is that Dave&#039;s departure from Metallica gave us some great albums from the successful Megadeth guys. I hope he&#039;ll get over it, it&#039;s been more than 20 years already, after all.&lt;/p&gt;
&lt;p&gt;The other interesting topic is Lars. The guy made an ass of himself with the Napster thing a few years ago, but the part where he is selling his art collection and making several million dollars in the process finally convinced me that he has little, if any, resemblance of what he once was. The irony of this is in Garage, Inc&#039;s booklet, let me quote page 4 for a second:&lt;/p&gt;
&lt;p&gt;&lt;em&gt;&quot;When Lars first came to the States, he had all these singles with devils and pentagrams and rough-looking guys with leather jackers on the covers: Motörhead, Diamond Head, Witchfynde, Sweet Savage, Tygers of Pang Tang. I would stay over at his place for days at a time, &lt;strong&gt;making tapes of his records&lt;/strong&gt; and sleeping on the carpet.&quot;&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;Can you taste the irony? Lars seems to be more worried about his art collection and arguing with others than about making good music, that&#039;s the perception I have after watching him in the documentary. And maybe that was the reason why Jason Newsted left. Rob Trujillo looks pretty impressive, though, so perhaps the change was for the better after all.&lt;/p&gt;
&lt;p&gt;I admire the guys for the work they&#039;ve done over the years. In my opinion, &lt;em&gt;Ride the Lightning&lt;/em&gt; is their best work and one of the greatest metal albums ever made. You know it&#039;s some good music when you can listen to it 20 years after it was recorded and still enjoy it like the first day. &lt;/p&gt;
&lt;p&gt;On a final note I found it funny to see the use of Pro Tools (it was Pro Tools, right?) for the mastering and recording of St. Anger. I had this mental image of the group jamming and recording the stuff almost live. Definitely a documentary worth watching if you like the group.&lt;/p&gt;
</description>
 <category domain="http://www.energyhq.es.eu.org/taxonomy/term/3">Movies</category>
 <category domain="http://www.energyhq.es.eu.org/taxonomy/term/1">Music</category>
 <pubDate>Sun,  5 Jun 2005 12:31:35 +0200</pubDate>
</item>
<item>
 <title>Summertime and the mysterious football team</title>
 <link>http://www.energyhq.es.eu.org/node/9</link>
 <description>&lt;p&gt;It seems that we&#039;re getting ready for a hot summer. I&#039;ve turned the Air Conditioner on today for the first time this year in the hope that the room temperature will allow me to get some decent sleep, unlike yesterday and the day before. Athene has been trying to hunt a couple of flies, without much success though, while I was busy doing some ports work. I was a bit too tired to do anything more demanding, so some stuff will have to wait until the weeked.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://osnews.com&quot;&gt;OSNews&lt;/a&gt; is running a story about a very interesting &lt;a href=&quot;http://www.hacknot.info/hacknot/action/showEntry?eid=74&quot;&gt;article&lt;/a&gt; on the topic of SWT and Swing. I don&#039;t do much java programming, and don&#039;t really like the platform, but I&#039;ve found that to be quite refreshing, as it shows the other side of the coin of the SWT vs Swing debate.&lt;/p&gt;
&lt;p&gt;And in other news, something that I hope you&#039;ll find amazing (found &lt;a href=&quot;http://www.infres.enst.fr/~bellot/delires/illusions/equipe.html&quot;&gt;here&lt;/a&gt;):&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;http://www.energyhq.es.eu.org/images/equipe.gif&quot; alt=&quot;Equipe&quot;&gt;&lt;/img&gt;&lt;/p&gt;
&lt;p&gt;Can you tell me how many football (soccer for those of you on the other side of the pond) players are there? :)&lt;/p&gt;
</description>
 <category domain="http://www.energyhq.es.eu.org/taxonomy/term/2">Free Software</category>
 <category domain="http://www.energyhq.es.eu.org/taxonomy/term/10">Misc</category>
 <pubDate>Sun,  5 Jun 2005 12:32:29 +0200</pubDate>
</item>
<item>
 <title>Monday</title>
 <link>http://www.energyhq.es.eu.org/node/8</link>
 <description>&lt;p&gt;Well, not much to report from here. I was supposed to have written a little story about Windows users, but that will have to wait until tomorrow, as I&#039;ve spent the better part of the evening updating the &lt;a href=&quot;http://adonthell.linuxgames.com/&quot;&gt;Adonthell&lt;/a&gt; port and setting up a -CURRENT box to test gcc 4.0 builds, as mentioned &lt;a href=&quot;http://lists.freebsd.org/pipermail/freebsd-current/2005-April/049192.html&quot;&gt;here&lt;/a&gt;.  The nice weather is probably to blame for Athene&#039;s will to play. Not that she&#039;s not usually a very active cat, but she&#039;s been running and playing with her toys for most of the evening. Now it&#039;s time to take a nap, of course. Which reminds me: Welcome home Buffy Boy. A happy ending that it&#039;s surely welcomed and also means some friends will get some needed rest too. As I&#039;ve said before, once you&#039;ve spent some time with those little furballs you can&#039;t imagine life without them. I&#039;ve also started &lt;em&gt;drupalizing&lt;/em&gt; the whole site, the &lt;a href=&quot;http://www.energyhq.es.eu.org/energyhq-faq.html&quot;&gt;FAQ&lt;/a&gt; is done and the rest will follow very soon.&lt;/p&gt;
</description>
 <category domain="http://www.energyhq.es.eu.org/taxonomy/term/2">Free Software</category>
 <category domain="http://www.energyhq.es.eu.org/taxonomy/term/5">Nutshell</category>
 <pubDate>Mon, 25 Apr 2005 23:19:26 +0200</pubDate>
</item>
<item>
 <title>Weekend</title>
 <link>http://www.energyhq.es.eu.org/node/6</link>
 <description>&lt;p&gt;&lt;img src=&quot;http://www.energyhq.es.eu.org/images/lemony.jpg&quot; alt=&quot;Movie poster&quot; style=&quot;float:left; margin: 10px;&quot;&gt;&lt;/img&gt;&lt;a href=&quot;http://www.imdb.com/title/tt0339291/&quot;&gt;Lemony Snicket&#039;s A Series of Unfortunate Events&lt;/a&gt; featuring Jim Carrey, Emily Browning, Liam Aiken and more is a movie that had been on my &lt;em&gt;have to watch&lt;/em&gt; list for a while, and I&#039;m glad I finally did. Some of the sets are fantastic, specially Aunt Josephine&#039;s house. I haven&#039;t read the books, so I wasn&#039;t sure about what to expect, but I&#039;d say that, as a movie, it&#039;s pretty good. Over the years Jim Carrey has gone from someone I could barely tolerate, remember his &lt;a href=&quot;http://www.imdb.com/title/tt0109040/&quot;&gt;Ace Ventura&lt;/a&gt; days, to an actor whose work I look forward to watching, specially since &lt;a href=&quot;http://www.imdb.com/title/tt0120382/&quot;&gt;The Truman Show&lt;/a&gt;. The kids&#039; acting was very good IMHO, but the sets are the real show. The colours, the textures, almost Tim Burton-esque. Excellent in that aspect. Lemony Snicket&#039;s voice sounded familiar, and I later checked on &lt;a href=&quot;http://www.imdb.com&quot;&gt;IMDB&lt;/a&gt; that it was indeed Jude Law&#039;s as I had suspected. Highly recommended.&lt;/p&gt;
&lt;p&gt;The reason why I&#039;ve been quiet the last days is because I&#039;ve restarted my operating system project, as a complement to my recently restarted journaling filesystem project. So a better part of the weekend has been spent cleaning up old code I hadn&#039;t touched since 2001. The obligatory screenshot is &lt;a href=&quot;http://www.energyhq.es.eu.org/images/nrg_os_qemu.png&quot;&gt;here&lt;/a&gt;. Since &lt;a href=&quot;http://fabrice.bellard.free.fr/qemu/&quot;&gt;qemu&lt;/a&gt; supports not only x86, but amd64, sparc and ppc, it&#039;s going to be easier to go for multiplatform support since day 1. According to the &lt;a href=&quot;http://lists.freebsd.org/pipermail/freebsd-current/2005-April/049041.html&quot;&gt;FreeBSD Status Report Jan-Mar 2005&lt;/a&gt;, Scott Long is working on a journal layer on top of FFS. It will be interesting to check his work, but I still believe that a completely new design is needed, ergo I&#039;ll keep working on my filesystem.&lt;/p&gt;
&lt;p&gt;Andrew Tridgell finally released his &lt;a href=&quot;http://developers.slashdot.org/article.pl?sid=05/04/22/1335244&amp;amp;tid=185&amp;amp;tid=156&quot;&gt;BitKeeper-Compatible Tool&lt;/a&gt;. So, Larry, is this what all the fuzz was about? Cry me a river, pal. As little as my opinion might matter, I&#039;m 100% with Tridge and I think both Linus and Larry owe him an apology. Not that it&#039;s going to happen. But, overall, I think it&#039;s a good thing that this has happened. Why? Because 1) The Linux devs are going to use an open source tool to manage their code, which makes sense since, whether they like it or not, Linux is the poster child of open source, and 2) Because &lt;a href=&quot;http://www.realworldtech.com/forums/index.cfm?action=detail&amp;amp;PostNum=3322&amp;amp;Thread=2&amp;amp;entryID=49312&amp;amp;roomID=11&quot;&gt;this&lt;/a&gt; will hopefully make people realize that Linus Torvalds is just a human being, and as such makes mistakes from time to time. I think he made some unfortunate comments and it&#039;s still to be seen how all of this will affect the kernel development process. Not that I care that much, but I like to follow what goes on on high profile projects.&lt;/p&gt;
&lt;p&gt;Adapted from &lt;a href=&quot;http://www.hp-lexicon.org/muggle.html&quot;&gt;this&lt;/a&gt;, let me introduce you the concept of the &lt;em&gt;Computer Muggle&lt;/em&gt;:&lt;/p&gt;
&lt;p&gt;&lt;em&gt;&quot;Computer Muggles&quot; are Windows users in the parlance of the Computing World. Computer Muggles are for the most part oblivious to the entire society of UNIX people which exists alongside their own. Part of the reason for this is that Muggles simply don&#039;t believe that UNIX exists, which means they find non-UNIX reasons for the things that happen to them [1]. Another part of the reason is that the Ministry of Geeks works very hard to keep the Computer Muggles in the dark.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;And my personal favourite:&lt;/p&gt;
&lt;p&gt;&lt;em&gt;&quot;Many Geekettes and Geeks look upon Computer Muggles kindly, but some see Computer Muggles as nothing but a nuisance and a bother.&quot;&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;Oh, that was meant to be humorous if it wasn&#039;t blatantly obvious.&lt;/p&gt;
&lt;p&gt;As I&#039;ve been doing for some weeks now, I&#039;ve selected another set for tomorrow&#039;s commute: &lt;a href=&quot;http://www.hybridized.org/sets/?id=264&quot;&gt;Greg Benz - Old School Prog Mix 93-97&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;In other news, it seems that Buffy Boy is back in full swing, a few more days of rest and observation and the little rascal will be back to his normal schedule. Good to read some good news for a change.&lt;/p&gt;
</description>
 <category domain="http://www.energyhq.es.eu.org/taxonomy/term/4">Meta</category>
 <category domain="http://www.energyhq.es.eu.org/taxonomy/term/3">Movies</category>
 <category domain="http://www.energyhq.es.eu.org/taxonomy/term/1">Music</category>
 <pubDate>Sun,  5 Jun 2005 12:32:55 +0200</pubDate>
</item>
<item>
 <title>Geeks, meritocracies and chroot blues</title>
 <link>http://www.energyhq.es.eu.org/node/5</link>
 <description>&lt;p&gt;When I was in high school I was one of the most popular guys. Oh wait, I wasn&#039;t! I was that shy and introverted guy. Now that I look back I wonder how quick people were to attach labels to others. So what do the geeks do? Join a geeky community. Enter the Free software communities, namely the &lt;a href=&quot;http://www.freebsd.org&quot;&gt;FreeBSD&lt;/a&gt; users. Here you won&#039;t be judged by how cool you are (or think you are), your looks, or the amount of girls you get to sleep with. You&#039;ll be solely judged by the quality of your work. This is the place where your skills can make a difference, and where &lt;em&gt;Joe Sixpack&lt;/em&gt; who was cool in high school would be considered a &lt;em&gt;useless pariah&lt;/em&gt;. Why am I writing this, you may ask. Because a recent post by Brett Glass has reminded me how these communities work: &lt;strong&gt;The Meritocracy&lt;/strong&gt;. It has somehow brought memories of how things used to be back then and how things work in the open source world today. I don&#039;t want to single Brett out, but he&#039;s a prime example of what you should not do. I&#039;ve already &lt;a href=&quot;http://lists.freebsd.org/pipermail/freebsd-questions/2005-April/084962.html&quot;&gt;told him&lt;/a&gt;, but I&#039;ll repeat it here: Wishful thinking will get you nowhere in the free software world. If you want something to happen you&#039;ll either have to do it yourself or shut up. Cue in the classic &lt;em&gt;&quot;Send patches or shut up&quot;&lt;/em&gt;. Brett has been using FreeBSD for years and somehow has failed to (or refuses to) grok this very simple concept. How does this connect with the high school story? I&#039;ve seen &lt;a href=&quot;http://polaris.gseis.ucla.edu/pagre/how-to-help.html&quot;&gt;this&lt;/a&gt; very interesting link in Lauri&#039;s weblog and I have to admit that sometimes it&#039;s very easy to give in to the &lt;em&gt;dark side&lt;/em&gt; when dealing with these &lt;em&gt;muggles&lt;/em&gt; of the computing world. And I&#039;m as guilty as the next geek, but I have the impression that some people deserve it anyway :)&lt;/p&gt;
&lt;p&gt;I&#039;ve discovered today that PHP&#039;s &lt;em&gt;mail()&lt;/em&gt; function doesn&#039;t like &lt;em&gt;chroot&lt;/em&gt;, so I&#039;ve installed &lt;a href=&quot;http://www.acme.com/software/mini_sendmail/&quot;&gt;mini_sendmail&lt;/a&gt; and voila!, another satisfied customer. Drupal&#039;s mail delivery is working fine now. You know, you can never be too paranoid about security.&lt;/p&gt;
</description>
 <category domain="http://www.energyhq.es.eu.org/taxonomy/term/2">Free Software</category>
 <category domain="http://www.energyhq.es.eu.org/taxonomy/term/4">Meta</category>
 <pubDate>Thu, 21 Apr 2005 23:09:55 +0200</pubDate>
</item>
<item>
 <title>Wednesday</title>
 <link>http://www.energyhq.es.eu.org/node/4</link>
 <description>&lt;p&gt;First of all I&#039;d like to thank Jim Dutton from Illinois for sending me Steve Pate&#039;s &lt;em&gt;&quot;UNIX Filesystems&quot;&lt;/em&gt;, from my Amazon wishlist. Thanks a bunch Jim! You know, it&#039;s not that I write these programs expecting anything in return, but it&#039;s &lt;strong&gt;very nice&lt;/strong&gt; to see people appreciate your work, be it an e-mail saying &lt;em&gt;thanks&lt;/em&gt; or, in this case, making a developer happy by providing tools that in the end will result in more free software developed. So thanks again, Jim.&lt;/p&gt;
&lt;p&gt;In other news it seems like Drupal is here to stay. The more I play with the system the more I like it. It&#039;s powerful, extremely customizable but still very easy to use. I still have to find a proper solution to migrate the old MT content to this new site. Most of the proposals I&#039;ve seen assume a MySQL backend, which is not the case.&lt;/p&gt;
&lt;p&gt;I was eating some Rice Krispies&amp;reg; and have discovered that Athene finds them fascinating. She just couldn&#039;t help herself from trying to pick some. Of course, in classic cat behaviour, once she&#039;s been offered one all interest has vanished.&lt;/p&gt;
&lt;p&gt;I&#039;d say it&#039;s been a very nice day altogether, save for the fact that I&#039;m still waiting for Buffy Boy&#039;s recovery. It&#039;s interesting when one sees that only people who live with cats can truly understand how strong an attachment you develop to those little rascals.&lt;/p&gt;
&lt;p&gt;Oh, thanks to Drupal&#039;s URL aliasing you can keeping getting the RSS feed from index.rdf, no need to change any settings.&lt;/p&gt;
</description>
 <category domain="http://www.energyhq.es.eu.org/taxonomy/term/9">Cats</category>
 <category domain="http://www.energyhq.es.eu.org/taxonomy/term/2">Free Software</category>
 <pubDate>Wed, 20 Apr 2005 23:20:40 +0200</pubDate>
</item>
<item>
 <title>Star Wars and the new OpenBSD song</title>
 <link>http://www.energyhq.es.eu.org/node/3</link>
 <description>&lt;p&gt;As reported &lt;a href=&quot;http://slashdot.org/article.pl?sid=05/04/18/0022200&amp;amp;tid=101&amp;amp;tid=186&quot;&gt;here&lt;/a&gt;, &lt;a href=&quot;http://www.panicstruckpro.com/revelations/revelations_movie.html&quot;&gt;Star Wars : Revelations&lt;/a&gt; is out. The &lt;a href=&quot;http://www.lysator.liu.se/~zap/revelations/revelations_film_QT_large.mov.torrent&quot;&gt;torrent&lt;/a&gt; is pretty fast. I haven&#039;t had the time yet to watch it, but the 5 minutes I&#039;ve seen look very promising. In other Star Wars news, &lt;a href=&quot;http://slashdot.org/article.pl?sid=05/04/19/1412250&amp;amp;tid=101&amp;amp;tid=97&quot;&gt;StarWars.com has unveiled three TV spots for STAR WARS: EPISODE III: REVENGE OF THE SITH!&lt;/a&gt;. Please please, George, don&#039;t make this one suck :)&lt;/p&gt;
&lt;p&gt;The new &lt;a href=&quot;http://www.openbsd.org/lyrics.html#37&quot;&gt;OpenBSD song&lt;/a&gt; is out! And it&#039;s pretty good actually. In fact, all the songs released so far have been pretty nice. Download them in case you haven&#039;t done so already. In true Theo fashion, a flamewar about the t-shirt sizes has been started on the OpenBSD-misc mailing list soon after the announcement. Some people never change :)&lt;/p&gt;
&lt;p&gt;Oh, btw, those of you using RSS readers, point your programs &lt;a href=&quot;http://www.energyhq.es.eu.org/node/feed&quot;&gt;here&lt;/a&gt;. Thanks.&lt;/p&gt;
</description>
 <category domain="http://www.energyhq.es.eu.org/taxonomy/term/2">Free Software</category>
 <category domain="http://www.energyhq.es.eu.org/taxonomy/term/3">Movies</category>
 <pubDate>Tue, 19 Apr 2005 21:15:30 +0200</pubDate>
</item>
<item>
 <title>Experience with Drupal so far</title>
 <link>http://www.energyhq.es.eu.org/node/2</link>
 <description>&lt;p&gt;The installation is pretty easy, and I&#039;m glad &lt;a href=&quot;http://www.drupal.org&quot;&gt;Drupal&lt;/a&gt; supports &lt;a href=&quot;http://www.postgresql.org&quot;&gt;PostgreSQL&lt;/a&gt; out of the box without extra hacks. All I had to do was create a new database and import the template, that&#039;s all. So far it seems very flexible, specially the &lt;a href=&quot;http://drupal.org/node/17170&quot;&gt;blocks&lt;/a&gt; concept which I already love :)&lt;/p&gt;
&lt;p&gt;On the other hand, Drupal seems to be fully dynamic, which can cause higher loads on the server, although this is a very low traffic site and a &lt;em&gt;throttle&lt;/em&gt; mode can be enabled. One of the features I like about &lt;a href=&quot;http://www.movabletype.org&quot;&gt;Movable Type&lt;/a&gt; is that it lets you publish and rebuild your site so you can have most pages rendered and served statically. I&#039;ll have to investigate if such a thing is possible with Drupal.&lt;/p&gt;
</description>
 <category domain="http://www.energyhq.es.eu.org/taxonomy/term/4">Meta</category>
 <pubDate>Tue, 19 Apr 2005 19:33:16 +0200</pubDate>
</item>
</channel>
</rss>
