<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>theBlackDragon's Blog</title>
	<atom:link href="http://theblackdragon.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://theblackdragon.wordpress.com</link>
	<description>Tales from deep down the dragon's lair...</description>
	<lastBuildDate>Tue, 11 Mar 2008 10:05:02 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='theblackdragon.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/c04ed0340a69aef46fa02e420f3bbef4?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>theBlackDragon's Blog</title>
		<link>http://theblackdragon.wordpress.com</link>
	</image>
			<item>
		<title>Dynamic class loading in Java</title>
		<link>http://theblackdragon.wordpress.com/2008/03/11/dynamic-class-loading-in-java/</link>
		<comments>http://theblackdragon.wordpress.com/2008/03/11/dynamic-class-loading-in-java/#comments</comments>
		<pubDate>Tue, 11 Mar 2008 10:03:48 +0000</pubDate>
		<dc:creator>theBlackDragon</dc:creator>
				<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://theblackdragon.wordpress.com/?p=25</guid>
		<description><![CDATA[This is a repost of an older article I wrote back in 2006 (yes, I had to use the wayback machine to get it back  )
I was looking for a way to dynamically load plugins from (at development time) unknown jars the other day and after some searching (nowadays they call that Googling I [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=theblackdragon.wordpress.com&blog=195286&post=25&subd=theblackdragon&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>This is a repost of an older article I wrote back in 2006 (yes, I had to use the <a href="http://web.archive.org">wayback machine</a> to get it back <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> )</p>
<p>I was looking for a way to dynamically load plugins from (at development time) unknown jars the other day and after some searching (nowadays they call that Googling I guess?) I found the solution in Java&#8217;s ClassLoader class, in URLClassLoader to be precise. This task turned out to be amazingly simple.</p>
<p>I just defined an interface called Plugin that all the Plugins should implement so that I can cast whatever I get from the ClassLoader to this interface.</p>
<p>So without further ado, here&#8217;s the code (yes, only 6 lines of actual code):</p>
<pre>        URL[] jarFiles = findAllJars();

        if(jarFiles != null)

            classLoader = URLClassLoader.newInstance(jarFiles);</pre>
<p>This gets me a new ClassLoader with all the plugins in a given directory. findAllJars() is a oneliner grabbing all jars from my projects &#8220;plugin&#8221; directory using a FilenameFilter to filter the Jars from the cruft <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>I can then load a plugin like this:</p>
<pre>    public static void load(String p)

    throws ClassNotFoundException, InstantiationException, 

    IllegalAccessException{

        Class c = classLoader.loadClass(p);

        Plugin plug = (Plugin) c.newInstance();

    }</pre>
<p>This uses the ClassLoader to load an instance of the dot-notated classname I pass in (eg. be.lair.remes.plugin.ircplugin.IRCPlugin), I then use this Class to create an instance which I then cast to the correct type.</p>
<p>Notwithstanding the fact that I didn&#8217;t find a great deal of example of this on the net it was amazingly simple to get working. Makes me wonder why people always need to pick on Java.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/theblackdragon.wordpress.com/25/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/theblackdragon.wordpress.com/25/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/theblackdragon.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/theblackdragon.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/theblackdragon.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/theblackdragon.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/theblackdragon.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/theblackdragon.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/theblackdragon.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/theblackdragon.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/theblackdragon.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/theblackdragon.wordpress.com/25/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=theblackdragon.wordpress.com&blog=195286&post=25&subd=theblackdragon&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://theblackdragon.wordpress.com/2008/03/11/dynamic-class-loading-in-java/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/62e9e79acab99e3726d60e3ff4cd65c8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">theBlackDragon</media:title>
		</media:content>
	</item>
		<item>
		<title>GNU Emacs 22.1 released!</title>
		<link>http://theblackdragon.wordpress.com/2007/06/03/gnu-emacs-221-released/</link>
		<comments>http://theblackdragon.wordpress.com/2007/06/03/gnu-emacs-221-released/#comments</comments>
		<pubDate>Sun, 03 Jun 2007 09:26:48 +0000</pubDate>
		<dc:creator>theBlackDragon</dc:creator>
				<category><![CDATA[Emacs]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Techie stuff]]></category>

		<guid isPermaLink="false">http://theblackdragon.wordpress.com/2007/06/03/gnu-emacs-221-released/</guid>
		<description><![CDATA[This morning I check in on #fvwm and the first thing I notice is the following:
03/06&#124;01:03:06 &#60; Hun&#62; theBlackDragon: aaaaaaaaaaah!
03/06&#124;01:03:13 &#60; Hun&#62; e22 has been released!
So I run off to the Emacs homepage, but nothing to be found about a new release. Hmm.
So what can you do? Check usenet of course, and sure enough on [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=theblackdragon.wordpress.com&blog=195286&post=23&subd=theblackdragon&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>This morning I check in on <em>#fvwm</em> and the first thing I notice is the following:</p>
<p><em>03/06|01:03:06 &lt; Hun&gt; theBlackDragon: aaaaaaaaaaah!<br />
03/06|01:03:13 &lt; Hun&gt; e22 has been released!</em></p>
<p>So I run off to the <a href="http://www.gnu.org/software/emacs/">Emacs homepage</a>, but nothing to be found about a new release. Hmm.<br />
So what can you do? Check usenet of course, and sure enough on <em>gnu.emacs.devel</em> (e-mail addresses removed for obvious reasons):</p>
<pre>From: David Kastrup &lt;*@*&gt;
 Subject: Re: Cygwin binaries for Emacs-22.1 released!
 Newsgroups: gmane.emacs.devel
 To: Angelo Graziosi &lt;*@*&gt;
 Cc: emacs-devel@gnu.org
 Date: Sat, 02 Jun 2007 21:18:05 +0200</pre>
<pre>Angelo Graziosi &lt;*@*&gt; writes:</pre>
<pre>&gt; Cygwin binaries for 22.1 release here:
 &gt;
 &gt;    http://www.webalice.it/angelo.graziosi/Emacs.html</pre>
<pre>I was going to mouth off about premature announcements and being
 careless about release numbers, but checking on the ftp server have
 found that the tarball for Emacs 22.1 has been uploaded.</pre>
<pre>Did I miss the announcement on this list?</pre>
<pre>--
 David Kastrup</pre>
<p>And sure enough, there it was, on the <a href="http://ftp.gnu.org/pub/gnu/emacs/">GNU FTP server</a>, all shiny and new: an Emacs 22.1 tarball, the changes from 21.x are a little bit too numerous to sum up here, I&#8217;d say just upgrade or read the <a href="http://www.gnu.org/software/emacs/NEWS.22.1">ChangeLog</a>.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/theblackdragon.wordpress.com/23/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/theblackdragon.wordpress.com/23/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/theblackdragon.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/theblackdragon.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/theblackdragon.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/theblackdragon.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/theblackdragon.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/theblackdragon.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/theblackdragon.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/theblackdragon.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/theblackdragon.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/theblackdragon.wordpress.com/23/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=theblackdragon.wordpress.com&blog=195286&post=23&subd=theblackdragon&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://theblackdragon.wordpress.com/2007/06/03/gnu-emacs-221-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/62e9e79acab99e3726d60e3ff4cd65c8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">theBlackDragon</media:title>
		</media:content>
	</item>
		<item>
		<title>FVWM Forum upgrade to phpBB 3.0 RC1</title>
		<link>http://theblackdragon.wordpress.com/2007/06/02/fvwm-forum-upgrade-to-phpbb-30-rc1/</link>
		<comments>http://theblackdragon.wordpress.com/2007/06/02/fvwm-forum-upgrade-to-phpbb-30-rc1/#comments</comments>
		<pubDate>Sat, 02 Jun 2007 15:03:08 +0000</pubDate>
		<dc:creator>theBlackDragon</dc:creator>
				<category><![CDATA[FVWM]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://theblackdragon.wordpress.com/2007/06/02/fvwm-forum-upgrade-to-phpbb-30-rc1/</guid>
		<description><![CDATA[After years of good service phpBB2 finally succumbed under the pressure of spambots, the amount of work required to keep a phpBB2 board spamfree was getting out of hand very quickly, phpBB3 was going to make keeping spam out of your board easier as well as getting rid of any spam that got through after [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=theblackdragon.wordpress.com&blog=195286&post=22&subd=theblackdragon&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>After years of good service phpBB2 finally succumbed under the pressure of spambots, the amount of work required to keep a phpBB2 board spamfree was getting out of hand very quickly, phpBB3 was going to make keeping spam out of your board easier as well as getting rid of any spam that got through after all easier to track down and remove.</p>
<p>But phpBB3 remained something at the distant horizon for way too long, for a while it appeared to be obtaining some sort of Duke Nuke &#8216;em For(n)ever like cult status: highly anticipated but always just out of reach. Competing packages came and went and all the time it became more apparent that phpBB2 no longer lived up to the today&#8217;s bulletain board standards. Lots of boards switched to competing forum software, others kept on waiting, because phpBB3 was right behind the door, nearly  there. But now, the first Release Candidate of phpBB3 is among us with a huge load of improvements over phpBB2 and we (being the FVWM Forum admins) decided very quickly we wanted to switch to RC1 right away and not wait for the Final to come about.</p>
<p>So? Was it worth switching? In my opinion it was. Conversion from phpBB2 went smooth, to say the least and the new anti-spam and anti-bot measures like usage of blacklists look very promising, though only time will tell how effective they will be in the end when phpBB3 becomes more mainstream.</p>
<p>The Administration Control Panel (ACP) is pretty overwhelming at first and it&#8217;ll probably take some time before you know where to look for the options you need. But after a bit of searching it became apparent that all settings from the phpBB2 board were nicely imported into phpBB3, the only thing that annoyed me a bit is that a lot of the new features (like attachments) are turned on by default, I would have preferred them to have been turned off by default.</p>
<p>The new default style takes some getting used to and I haven&#8217;t decided whether I like it or not yet. But for the people that really can&#8217;t stand the new look an updated version of phpBB2&#8217;s SubSilver style is also available in the default install albeit disabled by default.</p>
<p>It&#8217;s now also easier to modify the styles in phpBB3, replacing most graphics can be done from the ACP using ImageSets. It&#8217;s similarly possible to edit the Styles&#8217; CSS and Templates from the web interface, this makes small modifications possible without having to get out an FTP client and digg through the sourcecode of phpBB or the Style you wanted to change.</p>
<p>Another interesting feature is the Jabber integration, not only can you now add a Jabber address to your profile, you can also use this address to send messages to users (if the Administrator has enabled this, of course). There&#8217;s only one problem with this: Google Talk accounts won&#8217;t be able to receive messages sent via the forum (see this thread on the <a href="http://www.phpbb.com/community/viewtopic.php?f=46&amp;t=488306">phpBB forums</a> for more information) at least not in RC1. It looked to me as if Google blocked messages sent from people not on your roster by default, but I would be happy to be proven wrong on this.</p>
<p>Other interesting features are the ability to search for a user using different search criteria or request a list of inactive users on which you can batch perform an action like activating or deleting them.</p>
<p>New options have been added for moderators too. Moderators can now &#8216;officially&#8217; warn a user for misbehaviour which has the advantage that other moderators can see these warnings and act accordingly to repeated misbehaviour.</p>
<p>Other actions like merging and splitting topics have been made easier to perform as have a number of other actions that deal with multiple posts or topics. Moderators now have access to a list of (unexpired) warnings issued to users as well as to lists of posts that are in the moderation queue,  posts/users that have been reported for violations by other users and a log of the actions other moderators have performed which makes it easier for moderators to prevent stepping on eachother&#8217;s toes . They can now also ban users by username, ip or e-mail address something that previously had to be done by an administrator.</p>
<p>For forum users not a lot has changed on first sight, things that worked before still work in mostly the same way in phpBB3 although some actions have been streamlined more.</p>
<p>One of the first changes you&#8217;ll probably notice is the total redesign of the User Control Panel (UCP). The UCP has been broken up into that make keeping an overview a lot easier, something which is important as the amount of settings has been expanded quite a bit in comparison to phpBB2.</p>
<p>It&#8217;s now possible to only show topics or posts from the past x days by default, this can be done on a per forum basis but can also be set to a default board wide value in the UCP.</p>
<p>All in all I&#8217;m liking phpBB3 so far, many of the new features make life a  lot easier for administrators and/or moderators (these were my main reasons for upgrading and my main gripe with phpBB2), but the new features for users are pretty nice as well and the ones that don&#8217;t seem useful (like the &#8220;Friends &amp; Foes&#8221; list in my case) are easy to turn off.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/theblackdragon.wordpress.com/22/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/theblackdragon.wordpress.com/22/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/theblackdragon.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/theblackdragon.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/theblackdragon.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/theblackdragon.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/theblackdragon.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/theblackdragon.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/theblackdragon.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/theblackdragon.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/theblackdragon.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/theblackdragon.wordpress.com/22/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=theblackdragon.wordpress.com&blog=195286&post=22&subd=theblackdragon&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://theblackdragon.wordpress.com/2007/06/02/fvwm-forum-upgrade-to-phpbb-30-rc1/feed/</wfw:commentRss>
		<slash:comments>23</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/62e9e79acab99e3726d60e3ff4cd65c8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">theBlackDragon</media:title>
		</media:content>
	</item>
		<item>
		<title>Pidgin doesn&#8217;t fly very high&#8230;</title>
		<link>http://theblackdragon.wordpress.com/2007/05/18/pidgin-doesnt-fly-very-high/</link>
		<comments>http://theblackdragon.wordpress.com/2007/05/18/pidgin-doesnt-fly-very-high/#comments</comments>
		<pubDate>Fri, 18 May 2007 21:22:15 +0000</pubDate>
		<dc:creator>theBlackDragon</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://theblackdragon.wordpress.com/2007/05/18/pidgin-doesnt-fly-very-high/</guid>
		<description><![CDATA[So I installed Pidgin (formerly known as Gaim) today and I noticed that the protocol Icons were gone. All users from all IM services now have the same icon.
Despite users listing a bunch of good reasons in a bug posted because of the removal of this feature they keep on getting asked the question &#8220;but [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=theblackdragon.wordpress.com&blog=195286&post=21&subd=theblackdragon&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>So I installed Pidgin (formerly known as Gaim) today and I noticed that the protocol Icons were gone. All users from all IM services now have the same icon.</p>
<p>Despite users listing a bunch of good reasons in a bug posted because of the removal of this feature they keep on getting asked the question &#8220;but why do you need it?&#8221;, talk about being thick skulled (<a href="http://developer.pidgin.im/ticket/414" title="see for yourself">see for yourself</a>). They also closed the bug from further comments and a bug that was later opened to request for re-adding of protocol icons got closed as a duplicate of a bug <a href="http://developer.pidgin.im/ticket/1108">on which people could no longer comment</a> (but which just got re-opened I noticed).</p>
<p>I must say I was quite shocked by the reaction of the Pidgin developers (or some of them at least) and their total lack of trying to see the points being made.</p>
<p>But that&#8217;s not all, in the ChangeLog they also managed to trample the feet of Slackware developers and users (<a href="http://pidgin.im/pipermail/devel/2007-May/000651.html">see this mailinglist post</a>).</p>
<p>I really don&#8217;t get it, I thought Free and Open Source software were a community effort and feedback of the users was essential in this effort, but instead they choose to ignore their users in such a harsh way, it&#8217;s good to see that they have reopened bug #1108 as to at least allow some form of discussion, but the single mindedness of some of their developers is quite disturbing. It&#8217;s like they don&#8217;t <em>want</em> to see the points being made and keep on replying the same over and over again.</p>
<p>The attack on Slackware was totally unwarranted and very low to the ground in my humble opinion and worthy of an apoligy if you ask me.</p>
<p>I really hope they manage to rectify these issues as I really liked Gaim as an application, but given these recent events my faith in the project has sustained quite a dent&#8230;</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/theblackdragon.wordpress.com/21/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/theblackdragon.wordpress.com/21/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/theblackdragon.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/theblackdragon.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/theblackdragon.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/theblackdragon.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/theblackdragon.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/theblackdragon.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/theblackdragon.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/theblackdragon.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/theblackdragon.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/theblackdragon.wordpress.com/21/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=theblackdragon.wordpress.com&blog=195286&post=21&subd=theblackdragon&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://theblackdragon.wordpress.com/2007/05/18/pidgin-doesnt-fly-very-high/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/62e9e79acab99e3726d60e3ff4cd65c8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">theBlackDragon</media:title>
		</media:content>
	</item>
		<item>
		<title>Neverwinter Nights 2, Obsidian Entertainment and the &#8220;rushed game syndrome&#8221;</title>
		<link>http://theblackdragon.wordpress.com/2007/03/04/neverwinter-nights-2-obisidian-entertainment-and-the-rushed-game-syndrome/</link>
		<comments>http://theblackdragon.wordpress.com/2007/03/04/neverwinter-nights-2-obisidian-entertainment-and-the-rushed-game-syndrome/#comments</comments>
		<pubDate>Sun, 04 Mar 2007 09:50:13 +0000</pubDate>
		<dc:creator>theBlackDragon</dc:creator>
				<category><![CDATA[RPG]]></category>

		<guid isPermaLink="false">http://theblackdragon.wordpress.com/2007/03/04/neverwinter-nights-2-obisidian-entertainment-and-the-rushed-game-syndrome/</guid>
		<description><![CDATA[Obsidian Entertainment, creator of Neverwinter Nights 2 and Knights of the Old Republic 2 (the first installment of both of these games was done by Bioware), both games with huge potential that they managed to screw over royally in the same way, heh, when speaking solely about RPGs I&#8217;d nearly call it the &#8220;Obsidian way&#8221;.
So [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=theblackdragon.wordpress.com&blog=195286&post=20&subd=theblackdragon&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Obsidian Entertainment, creator of Neverwinter Nights 2 and Knights of the Old Republic 2 (the first installment of both of these games was done by Bioware), both games with huge potential that they managed to screw over royally in the same way, heh, when speaking solely about RPGs I&#8217;d nearly call it the &#8220;Obsidian way&#8221;.</p>
<p>So how come they still get such favorable reviews? Simple, they never manage to <strong>finish</strong> any of their games properly, they create a great story, a great start to that story and then when you expect the story to finally really get going, when you&#8217;re already totally addicted they just drop the hammer on you. They did it in KotOR2 and they do it again in NWN2. Reviewers never notice because they obviously don&#8217;t play every game they have to review to the finish.</p>
<p>The fact that you can eventually obtain your own keep in NWN2 is something they&#8217;re very proud of, but it is, in a way, one of the major letdowns in the game. Sure, it&#8217;s nice to have, well worked out and all that, but at the same time you gain your keep you also get the full dose of linearity of the NWN2 OC (Original Campain, as it is known to NWN players) thrown into your face. There are virtually no (none, zero, nada, noppes) side quests in the entire game and the ones that are there usually revolve around picking up something or someone along the way during a part of the main quest. So there went my idea of using my keep as a nice base of operations while racking up the gold needed for repairs to said keep by doing sidequests.</p>
<p>Still the main storyline is worked out reasonably well although the endgame, as in KotOR2, boiled down to butchering whole legions of &#8220;baddies&#8221; and then whacking the &#8220;boss&#8221; in an epic battle followed by a <em>horrible</em> &#8220;cinematic&#8221; explaining what &#8220;happened&#8221; to you and your party. For me this was the biggest anticlimax in any game up till now, at least in KotOR2 they told you what would happen to (most of) your companions (quite literally too) and you yourself had some future perspective, but none of that in NWN2, you and your companions &#8220;dissapear&#8221;.</p>
<p>I know I sound awfully negative here, but the truth is that I really enjoyed the game the first time through so the ending cinematic was a really big letdown. The lineairness of the OC really didn&#8217;t bother me the first time through, but I doubt I&#8217;ll be replaying this game very often.</p>
<p>I really really wish companies would start decently finishing games for once, no more obviously rushed games please.</p>
<p>Games that were decent to good and would have been great if actually finished:</p>
<ul>
<li>Vampire: the Masquerade: Bloodlines (Troika, no longer exists)
<ul>
<li>contained more bugs and quircks than Windows ME</li>
</ul>
</li>
<li>Knights of the Old Republic 2:  The Sith Lords (Obsidian)
<ul>
<li>lots of bugs (crashing, savegame corruption)</li>
<li>unfinished story with lots of content cut in such a hasty way that you can&#8217;t help but notice (unless you&#8217;re blind or think that references to areas marked on maps but which you can&#8217;t reach are &#8220;normal&#8221;, there&#8217;s even proof an entire planet was hastily cut (it&#8217;s still referenced in HK-47&#8217;s dialogs which are still in the game))</li>
<li>a lot of stuff in the (obviously rushed) ending didn&#8217;t make any sense because too much got cut</li>
</ul>
</li>
<li>Neverwinter Nights 2 (Obsidian)
<ul>
<li>lots of bugs (needed a 100MB patch file the first time I started playing, seemed to have fixed most issues though)</li>
<li>rushed ending</li>
<li>(very) weak ending cinematic</li>
</ul>
</li>
</ul>
<p>I guess I&#8217;ll have to wait with buying any games from now on until the first reports from people that have actually finished it start tickling in as reviews have proven not to be trustworthy. But at least in NWN2&#8217;s case we can hope for good community created content.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/theblackdragon.wordpress.com/20/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/theblackdragon.wordpress.com/20/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/theblackdragon.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/theblackdragon.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/theblackdragon.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/theblackdragon.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/theblackdragon.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/theblackdragon.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/theblackdragon.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/theblackdragon.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/theblackdragon.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/theblackdragon.wordpress.com/20/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=theblackdragon.wordpress.com&blog=195286&post=20&subd=theblackdragon&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://theblackdragon.wordpress.com/2007/03/04/neverwinter-nights-2-obisidian-entertainment-and-the-rushed-game-syndrome/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/62e9e79acab99e3726d60e3ff4cd65c8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">theBlackDragon</media:title>
		</media:content>
	</item>
		<item>
		<title>Emacs tips #4: the Emacs Lisp REPL</title>
		<link>http://theblackdragon.wordpress.com/2007/01/21/emacs-tips-4-the-emacs-lisp-repl/</link>
		<comments>http://theblackdragon.wordpress.com/2007/01/21/emacs-tips-4-the-emacs-lisp-repl/#comments</comments>
		<pubDate>Sun, 21 Jan 2007 14:40:43 +0000</pubDate>
		<dc:creator>theBlackDragon</dc:creator>
				<category><![CDATA[Emacs]]></category>

		<guid isPermaLink="false">http://theblackdragon.wordpress.com/2007/01/21/emacs-tips-4-the-emacs-lisp-repl/</guid>
		<description><![CDATA[Everybody knows you can evaluate elisp expressions in the scratch buffer, but a lot less people seem to be aware of ielm the interactive Emacs Lisp mode, this mode opens a sort of Emacs REPL that allows you to work with Emacs Lisp much in the same way you&#8217;d do at a Common Lisp REPL.
Another [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=theblackdragon.wordpress.com&blog=195286&post=19&subd=theblackdragon&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Everybody knows you can evaluate elisp expressions in the scratch buffer, but a lot less people seem to be aware of <em>ielm </em>the <em>interactive Emacs Lisp mode</em>, this mode opens a sort of Emacs REPL that allows you to work with Emacs Lisp much in the same way you&#8217;d do at a Common Lisp REPL.</p>
<p>Another little known fact is that you can evaluate elisp expressions at the eshell prompt, just try typing (+ 12 9) and hitting <em>return</em>. Spiffy eh? But you&#8217;ll quickly run into eshell&#8217;s  elisp limitations: it doesn&#8217;t correctly indent code so it&#8217;s not really useful for &#8216;real&#8217; elisp hacking, <em>ielm</em> is much better suited for that purpose as it does corretly indent elisp code.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/theblackdragon.wordpress.com/19/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/theblackdragon.wordpress.com/19/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/theblackdragon.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/theblackdragon.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/theblackdragon.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/theblackdragon.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/theblackdragon.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/theblackdragon.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/theblackdragon.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/theblackdragon.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/theblackdragon.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/theblackdragon.wordpress.com/19/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=theblackdragon.wordpress.com&blog=195286&post=19&subd=theblackdragon&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://theblackdragon.wordpress.com/2007/01/21/emacs-tips-4-the-emacs-lisp-repl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/62e9e79acab99e3726d60e3ff4cd65c8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">theBlackDragon</media:title>
		</media:content>
	</item>
		<item>
		<title>Emacs tips #3 : automatically making scripts executable</title>
		<link>http://theblackdragon.wordpress.com/2006/12/29/emacs-tips-3-automatically-making-scripts-executable/</link>
		<comments>http://theblackdragon.wordpress.com/2006/12/29/emacs-tips-3-automatically-making-scripts-executable/#comments</comments>
		<pubDate>Fri, 29 Dec 2006 13:01:18 +0000</pubDate>
		<dc:creator>theBlackDragon</dc:creator>
				<category><![CDATA[Emacs]]></category>

		<guid isPermaLink="false">http://theblackdragon.wordpress.com/2006/12/29/emacs-tips-3-automatically-making-scripts-executable/</guid>
		<description><![CDATA[I don&#8217;t remember where I found this snippet (maybe comp.emacs) but it&#8217;s mighty useful so I thought I&#8217;d share it with you:
; Sets +x on scripts stating with a shebang
(if (&#60; emacs-major-version 22)
       (add-hook 'after-save-hook
               [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=theblackdragon.wordpress.com&blog=195286&post=18&subd=theblackdragon&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I don&#8217;t remember where I found this snippet (maybe <em>comp.emacs</em>) but it&#8217;s mighty useful so I thought I&#8217;d share it with you:</p>
<pre>; Sets +x on scripts stating with a shebang
(if (&lt; emacs-major-version 22)
       (add-hook 'after-save-hook
                 '(lambda ()
                    (progn
                      (and (save-excursion
                             (save-restriction
                               (widen)
                               (goto-char (point-min))
                               (save-match-data
                         (looking-at "^#!"))))
                           (shell-command (concat "chmod u+x "
                             buffer-file-name))
                           (message (concat "Saved as script: "
                             buffer-file-name))))))
       (add-hook 'after-save-hook
         'executable-make-buffer-file-executable-if-script-p))</pre>
<p>Emacs versions below 22 need the former, longer method while Emacs 22 can use the oneliner in the last line.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/theblackdragon.wordpress.com/18/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/theblackdragon.wordpress.com/18/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/theblackdragon.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/theblackdragon.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/theblackdragon.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/theblackdragon.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/theblackdragon.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/theblackdragon.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/theblackdragon.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/theblackdragon.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/theblackdragon.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/theblackdragon.wordpress.com/18/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=theblackdragon.wordpress.com&blog=195286&post=18&subd=theblackdragon&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://theblackdragon.wordpress.com/2006/12/29/emacs-tips-3-automatically-making-scripts-executable/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/62e9e79acab99e3726d60e3ff4cd65c8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">theBlackDragon</media:title>
		</media:content>
	</item>
		<item>
		<title>The Job</title>
		<link>http://theblackdragon.wordpress.com/2006/12/02/the-job/</link>
		<comments>http://theblackdragon.wordpress.com/2006/12/02/the-job/#comments</comments>
		<pubDate>Sat, 02 Dec 2006 10:48:55 +0000</pubDate>
		<dc:creator>theBlackDragon</dc:creator>
				<category><![CDATA[Life, the Universe and Everything]]></category>

		<guid isPermaLink="false">http://theblackdragon.wordpress.com/2006/12/02/the-job/</guid>
		<description><![CDATA[I started working for Tri-ennium as a Java develeper yesterday. It&#8217;s been only one day now but I&#8217;m looking forward to it. Only time will tell whether my enthusiasm will last though  
On another note I&#8217;ll be moving to my own place  by the end of this or the start of next month, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=theblackdragon.wordpress.com&blog=195286&post=17&subd=theblackdragon&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I started working for <a href="http://www.triennium.com">Tri-ennium</a> as a Java develeper yesterday. It&#8217;s been only one day now but I&#8217;m looking forward to it. Only time will tell whether my enthusiasm will last though <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>On another note I&#8217;ll be moving to my own place  by the end of this or the start of next month, I hope to stay online during that period but it&#8217;s very well possible that I&#8217;ll be without internet access for some time. Will be nice to finally have a place to really call my own <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/theblackdragon.wordpress.com/17/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/theblackdragon.wordpress.com/17/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/theblackdragon.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/theblackdragon.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/theblackdragon.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/theblackdragon.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/theblackdragon.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/theblackdragon.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/theblackdragon.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/theblackdragon.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/theblackdragon.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/theblackdragon.wordpress.com/17/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=theblackdragon.wordpress.com&blog=195286&post=17&subd=theblackdragon&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://theblackdragon.wordpress.com/2006/12/02/the-job/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/62e9e79acab99e3726d60e3ff4cd65c8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">theBlackDragon</media:title>
		</media:content>
	</item>
		<item>
		<title>Cleanup time?</title>
		<link>http://theblackdragon.wordpress.com/2006/11/22/cleanup-time/</link>
		<comments>http://theblackdragon.wordpress.com/2006/11/22/cleanup-time/#comments</comments>
		<pubDate>Wed, 22 Nov 2006 13:54:10 +0000</pubDate>
		<dc:creator>theBlackDragon</dc:creator>
				<category><![CDATA[Gentoo]]></category>

		<guid isPermaLink="false">http://theblackdragon.wordpress.com/2006/11/22/cleanup-time/</guid>
		<description><![CDATA[I&#8217;ve been running Gentoo on my desktop for quite some time now, according to my emerge.log since 3 april 2005,
% head -n 1 /var/log/emerge.log
1112547957: Started emerge on: Apr 03, 2005 17:05:57
but I haven&#8217;t cleaned any portage directories since that day. So after more than a year of use Portage hogged over 4.6GB of space in [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=theblackdragon.wordpress.com&blog=195286&post=16&subd=theblackdragon&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I&#8217;ve been running Gentoo on my desktop for quite some time now, according to my emerge.log since 3 april 2005,</p>
<p><code>% head -n 1 /var/log/emerge.log<br />
1112547957: Started emerge on: Apr 03, 2005 17:05:57</code></p>
<p>but I haven&#8217;t cleaned any portage directories since that day. So after more than a year of use Portage hogged over 4.6GB of space in /var/tmp/portage&#8230;</p>
<p>Today I decided to do some more cleanup after a corrupt package download and this is what I got:</p>
<p><code>[theblackdragon@ira ~]% rm /usr/portage/distfiles/*<br />
zsh: sure you want to delete all the files in /usr/portage/distfiles [yn]? y<br />
zsh: argument list too long: rm<br />
[theblackdragon@ira ~]% ls -l /usr/portage/distfiles|wc -l<br />
3229<br />
[theblackdragon@ira ~]% du -hs /usr/portage/distfiles<br />
9.9G    /usr/portage/distfiles</code></p>
<p>This really made me go &#8220;yoinks&#8221;&#8230; Guess I should clean up more often. Heh.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/theblackdragon.wordpress.com/16/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/theblackdragon.wordpress.com/16/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/theblackdragon.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/theblackdragon.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/theblackdragon.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/theblackdragon.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/theblackdragon.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/theblackdragon.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/theblackdragon.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/theblackdragon.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/theblackdragon.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/theblackdragon.wordpress.com/16/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=theblackdragon.wordpress.com&blog=195286&post=16&subd=theblackdragon&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://theblackdragon.wordpress.com/2006/11/22/cleanup-time/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/62e9e79acab99e3726d60e3ff4cd65c8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">theBlackDragon</media:title>
		</media:content>
	</item>
		<item>
		<title>Installing Gentoo on a Sun Blade 100</title>
		<link>http://theblackdragon.wordpress.com/2006/10/25/installing-gentoo-on-a-sun-blade-100/</link>
		<comments>http://theblackdragon.wordpress.com/2006/10/25/installing-gentoo-on-a-sun-blade-100/#comments</comments>
		<pubDate>Wed, 25 Oct 2006 15:49:48 +0000</pubDate>
		<dc:creator>theBlackDragon</dc:creator>
				<category><![CDATA[Gentoo]]></category>

		<guid isPermaLink="false">http://theblackdragon.wordpress.com/2006/10/25/installing-gentoo-on-a-sun-blade-100/</guid>
		<description><![CDATA[I managed to get my hands on a Sun Blade 100, specifications being:

UltraSPARC IIe 500Mhz processor
256MB RAM
IDE harddisk
USB keyboard and  mouse
Mach 64GR graphics card and an additional PCI graphics card that lspci identified as &#8220;Intergraph Corporation Sun Expert3D-Lite Graphics Accelerator&#8221; although on the card it says &#8220;Xilinx Spartan XCS10XL&#8221;, either way, it&#8217;s unsupported.

At first [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=theblackdragon.wordpress.com&blog=195286&post=15&subd=theblackdragon&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I managed to get my hands on a Sun Blade 100, specifications being:</p>
<ul>
<li>UltraSPARC IIe 500Mhz processor</li>
<li>256MB RAM</li>
<li>IDE harddisk</li>
<li>USB keyboard and  mouse</li>
<li>Mach 64GR graphics card and an additional PCI graphics card that lspci identified as &#8220;Intergraph Corporation Sun Expert3D-Lite Graphics Accelerator&#8221; although on the card it says &#8220;Xilinx Spartan XCS10XL&#8221;, either way, it&#8217;s unsupported.</li>
</ul>
<p>At first I tried getting Debian or Ubuntu on it, but neither the Debian or Ubuntu installation disc wanted to boot, so I reverted to Gentoo. The reason that I didn&#8217;t use Gentoo in the first place is that this is my first experience with an UltraSPARC based machine and I didn&#8217;t really have any idea on how fast it would be, compiling Gentoo in my P2 266 was a bit of a nightmare&#8230; But the Blade proved why the UltraSPARCs have such a good reputation, keeping up relatively well with my desktop system (a homebuilt Athlon XP 2000+ with 512MB RAM), but I&#8217;m getting ahead of things.</p>
<p>Upon turning on the machine I was greeted by the OpenBoot prompt, just type</p>
<p><code>boot cdrom</code></p>
<p>to boot from the CD-ROM drive, a lot of people have trouble at this stage, but my relatively old OpenBoot (it has version 4.0, the latest version is 4.17, though it&#8217;s recommended to not use that version but use 4.16 if you need to upgrade because of netboot trouble with 4.17) booted the Gentoo livecd just fine. I had to disable the ati framebuffer to be able to boot but that might have been due to the unsupported PCI graphics card I had my monitor plugged into.</p>
<p><code>2617 video=atyfb:off</code></p>
<p>it then booted fine and I could just install Gentoo as if it were a regular x86 box. I then set a root password and started the livecd&#8217;s ssh daemon so I could continue the install from another box as the Blade&#8217;s console was extremely slow, so you&#8217;ll either have to disable output as much as possible (eg. when extracting a stage tarball don&#8217;t use the &#8216;verbose&#8217; option) or do the install over ssh, I opted for the latter approach.</p>
<p>I had to get the Gentoo sources from ~sparc64 though as the 2.6 kernel series is still dorky on UltraSPARC machines. After some trying it became clear I had to stick with the 2.6.16 kernel because of problems with drivers in both the 2.6.17 (broken support for ATI Mach64) and 2.6.18 (hang on boot, don&#8217;t know the exact problem) kernel versions.</p>
<p>You can get my kernel configuration file <a href="http://www.lair.be/files/kernel/blade100-config-2.6.16">here</a>.</p>
<p>Once I got past this stage I found out I didn&#8217;t get any output on the display altough the box booted just fine (I could ssh to it just fine), as I said the PCI graphics board was unsupported in Linux so I had now attached my screen to the built in graphics card for which the output was being redirected to the serial console as I found out after some searching. So I reattached the screen to the PCI card, booted into the OpenBoot prompt and executed the following to get the box to display it&#8217;s output on the screen and accept input from the keyboard:</p>
<p><code>ok setenv input-device keyboard<br />
ok setenv output-device screen<br />
ok reset-all</code></p>
<p>After this it booted fine. Getting X to work is another hurdle though, right now I get some strange artifacts when dragging windows around in  FVWM, but I&#8217;m unsure as to whether that&#8217;s because I misconfigured something or because of the Mach 64 graphics card.</p>
<p>Given the X trouble I think I&#8217;m going to turn this box into a home server as it&#8217;s pretty quiet, after I&#8217;ve toyed with it some more of course <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' />  I would like to thank the people on the Gentoo forums for their support in getting everything up and running.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/theblackdragon.wordpress.com/15/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/theblackdragon.wordpress.com/15/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/theblackdragon.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/theblackdragon.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/theblackdragon.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/theblackdragon.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/theblackdragon.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/theblackdragon.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/theblackdragon.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/theblackdragon.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/theblackdragon.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/theblackdragon.wordpress.com/15/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=theblackdragon.wordpress.com&blog=195286&post=15&subd=theblackdragon&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://theblackdragon.wordpress.com/2006/10/25/installing-gentoo-on-a-sun-blade-100/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/62e9e79acab99e3726d60e3ff4cd65c8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">theBlackDragon</media:title>
		</media:content>
	</item>
	</channel>
</rss>