<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
    <title>Keef&apos;s Musings</title>
    <link rel="alternate" type="text/html" href="http://keithjudge.com/keefsmusings/" />
    <link rel="self" type="application/atom+xml" href="http://keithjudge.com/keefsmusings/atom.xml" />
    <id>tag:keithjudge.com,2009-11-23:/keefsmusings//1</id>
    <updated>2011-05-18T13:20:23Z</updated>
    
    <generator uri="http://www.sixapart.com/movabletype/">Movable Type 5.1rc4</generator>

<entry>
    <title>So You Want To Be A Graphics Programmer... (AltDevBlogADay)</title>
    <link rel="alternate" type="text/html" href="http://keithjudge.com/keefsmusings/2011/05/so-you-want-to-be-a-graphics-p.html" />
    <id>tag:keithjudge.com,2011:/keefsmusings//1.137</id>

    <published>2011-05-18T13:05:10Z</published>
    <updated>2011-05-18T13:20:23Z</updated>

    <summary>This is a crosspost from AltDevBlogADay.org (http://altdevblogaday.org/2011/05/10/so-you-want-to-be-a-graphics-programmer/). Recently, a university undergraduate asked me on twitter for advice on becoming a graphics programmer within the games industry. I wrote a fairly detailed email response and thought the information was good enough...</summary>
    <author>
        <name>KeefJudge</name>
        <uri>http://keithjudge.com</uri>
    </author>
    
        <category term="Games Development" scheme="http://www.sixapart.com/ns/types#category" />
    
        <category term="Programming" scheme="http://www.sixapart.com/ns/types#category" />
    
    
    <content type="html" xml:lang="en" xml:base="http://keithjudge.com/keefsmusings/">
        <![CDATA[<p>This is a crosspost from AltDevBlogADay.org (<a href="http://altdevblogaday.org/2011/05/10/so-you-want-to-be-a-graphics-programmer/">http://altdevblogaday.org/2011/05/10/so-you-want-to-be-a-graphics-programmer/</a>).</p>
<p>Recently, a university undergraduate asked me on twitter for advice on becoming a graphics programmer within the games industry. I wrote a fairly detailed email response and thought the information was good enough to make an article for AltDevBlogADay. This is all my personal opinion of course.</p>
<p>If you&#8217;re at university, you should research whether there&#8217;s a programme to do a summer or year long internship at a games studio. There was nothing like that when I was at the University of Liverpool &#8217;97-&#8217;00 (or I wasn&#8217;t aware of it), but I&#8217;ve seen people come through that kind of programme with much greater practical game development knowledge and it goes a long way towards persuading an employer to take you on. EA, Lionhead and other large companies tend to run this sort of programme so look on their job pages too. Beware that sometimes companies don&#8217;t respond to intern applications for various reasons (team is deep in crunch, budget spent elsewhere, etc) and places are extremely limited.</p>
<p>Your best bet is to make a graphics demo, either on your own or with a small group of people. You learn more by doing than by just reading. Pick a modern graphics technique that interests you and implement it. Even better, do more than one. This is also great training for motivating yourself to get a project finished which is often the hardest part of games development, for all disciplines. Make sure you&#8217;re prepared to talk in detail about the choices you made, performance (in milliseconds, not frames per second!), quality, alternatives and trade offs in a job interview.</p>
<p>When I was in university I did a straight computer science course - there were barely any games courses available back then, but I still think that employers still value computer science graduates above games graduates as there&#8217;s a perception that you learn a greater range of software engineering skills. This could be a misconception though, as games courses are a lot better than they used to be, but you may have to fight your corner in an interview and prove you know your stuff (and not just the curriculum you were taught).</p>
<p>Computer science courses also tend to be quite maths heavy (I would hope games courses are similar), which is vital for graphics programming. Make sure you understand homogeneous coordinates, matrix maths, dot products, cross products, quaternions, normal vectors, tangent bases, etc and how these things (and countless others) are useful for transforming and lighting geometry. Learn big O notation for algorithmic execution time, understand colour spaces, gamma correction, what high dynamic range means and so on. Learn some basic lighting models - Lambert, Phong, Blinn, etc.</p>
<p><strong>Software</strong></p>
<p>In my experience, Visual Studio is pretty much universal as a code IDE (except for Apple, Linux, Android and Nintendo games), though you can of course use your favourite editor if you really want to, as long as you know Visual Studio. There is a free Express edition available from Microsoft <a href="(http://www.microsoft.com/express/Windows/">(http://www.microsoft.com/express/Windows/</a>), so it won&#8217;t cost you any money to learn. The PS3 is a little different as there is a separate hardware specific debugger, but you should be able to learn that on the job.</p>
<p>You should be familiar with a source control system. Perforce (<a href="www.perforce.com">www.perforce.com</a>) is a good choice as a lot of game studios use it and it&#8217;s free for single users. Try to learn it on a project with other people as merging, branching and integration are good skills to have. With all source control systems, similar concepts apply so it&#8217;s essential knowledge to have. Shockingly, my university course never mentioned source control and I was naive enough to believe that people just shared code over the network or on floppy disks.</p>
<p>As you&#8217;re unlikely to have access to devkits at home or in university, you&#8217;ll most likely be learning your skills on PC. In what may come as a surprise from someone with a decade&#8217;s game development experience, I don&#8217;t know much OpenGL as there&#8217;s never been a pressing need for me to learn it. Most PC games use DirectX, though if you learn DirectX 11, make sure you also learn DirectX 9 as it&#8217;s still current for Xbox 360 and many PC games still use it to support the dwindling, but still large Windows XP market. DirectX 10 is completely superseded by DirectX 11, so it is not worth learning (you can write DirectX 11 games for DirectX 10 hardware, and even DirectX 9 hardware).</p>
<p>It&#8217;s also definitely worth learning a graphical debugger. PIX for Windows isn&#8217;t as good as the Xbox 360 version, but there are fantastic free alternatives (Intel GPA - <a href="http://software.intel.com/en-us/articles/intel-gpa/">http://software.intel.com/en-us/articles/intel-gpa/</a>, Nvidia Parallel Nsight - <a href="http://developer.nvidia.com/nvidia-parallel-nsight">http://developer.nvidia.com/nvidia-parallel-nsight</a>). These tools are not just for performance tuning on the GPU - they&#8217;re also for debugging your draw calls, working out why something doesn&#8217;t draw, why it looks wrong, and so on. You can also learn about how a GPU works as you can see all the renderstates, shaders, meshes, textures, etc for any draw call in a frame and really understand what the GPU is actually doing with the data you give it.</p>
<p><strong>Other Duties</strong></p>
<p>As a graphics coder you&#8217;ll probably have to do some tools work too, working with mesh compilers, animation compilers, plugins for Maya/3DS Max or in-house editors for the artists to use. Remember that your job is to provide technology to support the artists in their daily work, so it needs to be presented in a friendly manner. If you give your art team a tool that lets them tweak some coefficients of a fancy rendering algorithm and they have no idea what the numbers mean, they probably won&#8217;t use it. Also, technical artists are your friends - they&#8217;re the best people to talk about requirements for artists and to work out the best workflow for the content creators.</p>
<p>It&#8217;s also good to learn general performance and optimisation techniques as this often falls to the graphics/engine team to do. You probably won&#8217;t have to write any (or very little) raw assembler, but you ought to be familiar with what the C/C++ compiler is doing to your code, how to spot problems and what to do about them. For example, one of the biggest performance problem will be L2 cache misses (you lose hundreds of cycles per miss on all modern hardware), so learn techniques to reduce them (almost always changing the data, not the code is the fix).</p>
<p><strong>Online Learning Resources</strong></p>
<p>Online resources are a goldmine, and there&#8217;s much better stuff out there than there was when I was at university as a lot of companies publish papers on their techniques which are pretty useful stuff. A few examples&#8230;</p>
<p><a href="http://www.valvesoftware.com/company/publications.html">http://www.valvesoftware.com/company/publications.html</a><br /><a href="http://publications.dice.se/">http://publications.dice.se/</a><br /><a href="http://www.crytek.com/cryengine/presentations">http://www.crytek.com/cryengine/presentations</a></p><p>Also there are a few good blogs posting regularly about graphics. A few good examples&#8230;</p>
<p><a href="http://aras-p.info/blog/">http://aras-p.info/blog/</a> - Lost in the Triangles. Aras Pranckevičius&#8217;s blog (a lead programmer for Unity).<br /><a href="http://www.realtimerendering.com/blog/">http://www.realtimerendering.com/blog/</a> - Real Time Rendering has good information (also the book is a worthwhile read!)<br /><a href="http://www.humus.name/">http://www.humus.name/</a> - Another good graphics programming blog.</p>
<p>Make sure you read the relevant presentations from GDC (very useful) and SIGGRAPH (slightly less useful as a lot of it is for non-realtime graphics, but useful as a crystal ball for future techniques).</p>
<p>My last handy tip is that if you live near a big dev studio, find out which pub they go drinking at after work and join in on a Friday night. You&#8217;ll learn a lot just chatting with developers. You can also join twitter and talk to many games developers there who are willing to share their experience.</p>]]>
        
    </content>
</entry>

<entry>
    <title>Input for Modern PC Games (AltDevBlogADay)</title>
    <link rel="alternate" type="text/html" href="http://keithjudge.com/keefsmusings/2011/04/input-for-modern-pc-games-altd.html" />
    <id>tag:keithjudge.com,2011:/keefsmusings//1.136</id>

    <published>2011-04-25T09:57:17Z</published>
    <updated>2011-04-25T10:04:26Z</updated>

    <summary>As I said at the end of my last post, I was going to write an article listing all the little handy utilities/settings that make my life easier as a programmer, but in a change in schedule I&apos;ve decided to...</summary>
    <author>
        <name>KeefJudge</name>
        <uri>http://keithjudge.com</uri>
    </author>
    
        <category term="Games Development" scheme="http://www.sixapart.com/ns/types#category" />
    
    
    <content type="html" xml:lang="en" xml:base="http://keithjudge.com/keefsmusings/">
        <![CDATA[<div style="background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: rgb(255, 255, 255); font: normal normal normal 13px/19px Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif; padding-top: 0.6em; padding-right: 0.6em; padding-bottom: 0.6em; padding-left: 0.6em; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; color: rgb(0, 0, 0); font-family: 'Times New Roman'; font-size: medium; "><p><a href="http://altdevblogaday.org/wp-content/uploads/2011/04/Keyboard-Cropped.png" _mce_href="http://altdevblogaday.org/wp-content/uploads/2011/04/Keyboard-Cropped.png"><img class="size-full wp-image-4574 alignleft" src="http://altdevblogaday.org/wp-content/uploads/2011/04/Keyboard-Cropped.png" _mce_src="http://altdevblogaday.org/wp-content/uploads/2011/04/Keyboard-Cropped.png" alt="Keyboard Question Mark" width="206" height="130" style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; float: left; " /></a>As I said at the end of my last post, I was going to write an article listing all the little handy utilities/settings that make my life easier as a programmer, but in a change in schedule I've decided to postpone that and write about something I've been coding this week instead whilst it's still fresh in my mind.</p><p>As I'm writing my own engine, one of the first things that needs to be done is input processing. In the latest DirectX SDK, there are two options listed for input, namely DirectInput8 and XInput. DirectInput8 is long in the tooth, being over a decade old and has localisation issues as I'll discuss below. XInput is newer and is a cleaner API, but seems to exist entirely for using Xbox 360 controllers (presumably as an aid to porting) and supports nothing else. Neither seemed to be an ideal solution to me.</p><p><strong>Twitter to the Rescue</strong></p><p>I asked about this on Twitter and got a few replies suggesting I use the Raw Input API which I wasn't previously aware of.&nbsp;<a title="richard_a_sim" href="http://twitter.com/#!/richard_a_sim" _mce_href="http://twitter.com/#!/richard_a_sim" target="_blank">Richard Sim</a>&nbsp;pointed me to&nbsp;<a title="Taking Advantage of High-Definition Mouse Input" href="http://msdn.microsoft.com/en-us/library/ee418864.aspx" _mce_href="http://msdn.microsoft.com/en-us/library/ee418864.aspx" target="_blank">this MSDN article</a>comparing the APIs (in this case the example is reading mouse input). As you can see, the code for using Raw Input is a lot cleaner and simpler than DirectInput8. The article also says that DirectInput8 is built on top of the Raw Input API and uses a separate thread to capture the WM_INPUT messages, adding overhead in the process. It felt to me that using Raw Input directly was the better solution.</p><p><strong>Using Raw Input</strong></p><p>The MSDN documentation for the Raw Input API is missing a few things which I've had to dig around and find out for myself, so I'll explain what I've found out here. The basic process is that in your initialisation code you register the devices you'd like input from using RegisterRawInputDevices(), and then you&nbsp;receive&nbsp;WM_INPUT messages from the device in the Windows message loop from which you extract the actual keys/mouse input/etc. If you want to register for input from the keyboard, you would use the following code.</p><pre escaped="true" lang="c" line="1" style="font: normal normal normal 12px/18px Consolas, Monaco, 'Courier New', Courier, monospace; ">RAWINPUTDEVICE keyboard_device;
keyboard_device.usUsagePage = 0x01;
keyboard_device.usUsage = 0x06;
keyboard_device.hwndTarget = hWnd;
keyboard_device.dwFlags = 0;

BOOL ret = RegisterRawInputDevices(&amp;keyboard_device, 1, sizeof(RAWINPUTDEVICE));</pre><p>The question is - where on Earth do those UsagePage and Usage numbers come from? The MSDN documentation doesn't explain, but after a bit of digging I found out that they're part of the&nbsp;<a title="USB HID Usage Tables" href="http://www.usb.org/developers/devclass_docs/Hut1_12.pdf" _mce_href="http://www.usb.org/developers/devclass_docs/Hut1_12.pdf" target="_blank">USB HID standard (pdf)</a>. On page 26 is table 1 for generic desktop devices, and the keyboard is device number 6, hence the numbers passed to the code above. For the mouse you would use page 1, usage 2. In fact, the Raw Input API lets you register multiple device at once as shown here.</p><pre escaped="true" lang="c" line="1" style="font: normal normal normal 12px/18px Consolas, Monaco, 'Courier New', Courier, monospace; ">RAWINPUTDEVICE keyboard_and_mouse_devices[2];
keyboard_and_mouse_devices[0].usUsagePage = 0x01; // Generic desktop page
keyboard_and_mouse_devices[0].usUsage = 0x06;     // Keyboard
keyboard_and_mouse_devices[0].hwndTarget = hWnd;
keyboard_and_mouse_devices[0].dwFlags = 0;
keyboard_and_mouse_devices[1].usUsagePage = 0x01; // Generic desktop page
keyboard_and_mouse_devices[1].usUsage = 0x02;     // Mouse
keyboard_and_mouse_devices[1].hwndTarget = hWnd;
keyboard_and_mouse_devices[1].dwFlags = 0;

BOOL ret = RegisterRawInputDevices(keyboard_and_mouse_devices, 2, sizeof(RAWINPUTDEVICE));</pre><p>I have no idea why the API insists you pass the size of the RAWINPUTDEVICE struct as the final parameter, though it seems to be a common trait for Win32 API functions.</p><p>I think the MSDN docs explain actually getting the data well enough, so I won't repeat that here.</p><p>Once your application is registered to recieve WM_INPUT messages, it will also receive WM_INPUT_DEVICE_CHANGE messages whenever a device is added/removed from the system so you can print up "Controller Removed" messages, or switch to an alternate controller as your game requires.</p><p><strong>Wrapping Up</strong></p><p>I mentioned above that DirectInput8 has localisation issues. What I mean by this is that often in games you need to show the name of the key on screen in control select screens or tutorials. To do this you would use&nbsp;<a title="GetKeyNameText Function" href="http://msdn.microsoft.com/en-us/library/ms646300(VS.85).aspx" _mce_href="http://msdn.microsoft.com/en-us/library/ms646300(VS.85).aspx" target="_blank">GetKeyNameText()</a>&nbsp;which will return a string from a scan code. Unfortunately, DirectInput8 uses its own DIK_ enums for the keys, which don't exactly map onto scan codes. On previous games I've worked on, we've ended up with a large remapping table, with a few exceptions for various locales. The Raw Input API gives you the scan code directly as well as the virtual VK_ enum, so in theory this problem disappears (I still need to confirm this).</p><p>This is a crosspost from AltDevBlogADay -&nbsp;<span class="Apple-style-span" style="line-height: normal; font-size: medium; "><div style="background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: rgb(255, 255, 255); font: normal normal normal 13px/19px Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif; padding-top: 0.6em; padding-right: 0.6em; padding-bottom: 0.6em; padding-left: 0.6em; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; color: rgb(0, 0, 0); font-family: 'Times New Roman'; font-size: medium; display: inline !important; "><a href="http://altdevblogaday.org/2011/04/21/input-for-modern-pc-games/">http://altdevblogaday.org/2011/04/21/input-for-modern-pc-games/</a></div></span></p></div>]]>
        
    </content>
</entry>

<entry>
    <title>Workstation Set Up for Game Developers (AltDevBlogADay)</title>
    <link rel="alternate" type="text/html" href="http://keithjudge.com/keefsmusings/2011/04/workstation-set-up-for-game-de.html" />
    <id>tag:keithjudge.com,2011:/keefsmusings//1.135</id>

    <published>2011-04-10T14:21:01Z</published>
    <updated>2011-04-10T14:23:04Z</updated>

    <summary><![CDATA[This is a crosspost from AltDevBlogADay -&nbsp;http://altdevblogaday.org/2011/04/10/workstation-setup-for-gamedevs/.Greetings all! For my first post I thought I'd start with something I've been thinking about lately. As I'm preparing to leave "AAA" games development and become a fledgling indie, I need to set...]]></summary>
    <author>
        <name>KeefJudge</name>
        <uri>http://keithjudge.com</uri>
    </author>
    
        <category term="Games Development" scheme="http://www.sixapart.com/ns/types#category" />
    
    <category term="altdevblogaday" label="altdevblogaday" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="comfort" label="comfort" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="ergonomics" label="ergonomics" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="gamedev" label="gamedev" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="homeoffice" label="homeoffice" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="en" xml:base="http://keithjudge.com/keefsmusings/">
        <![CDATA[<div style="background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: rgb(255, 255, 255); font: normal normal normal 13px/19px Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif; padding-top: 0.6em; padding-right: 0.6em; padding-bottom: 0.6em; padding-left: 0.6em; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; color: rgb(0, 0, 0); font-family: 'Times New Roman'; font-size: medium; "><p>This is a crosspost from AltDevBlogADay -&nbsp;<span class="Apple-style-span" style="font-size: medium; "><a href="http://altdevblogaday.org/2011/04/10/workstation-setup-for-gamedevs/">http://altdevblogaday.org/2011/04/10/workstation-setup-for-gamedevs/</a></span>.</p><p>Greetings all! For my first post I thought I'd start with something I've been thinking about lately. As I'm preparing to leave "AAA" games development and become a fledgling indie, I need to set up my home office for maximum productivity and comfort. I don't have a facilities department to handle all of this for me, so here's my tips for comfort based on my experiences. I'll leave out the actual PC/Mac hardware itself and focus more on the ergonomic aspect of things. This article isn't meant to be&nbsp;authoritative (how could it be without reams of ergonomic data?) so I've avoided recommending specific products, but the general point is that you should try out a few things until you find what works best for you.</p><p><span mce_name="em" mce_style="font-style: italic;" class="Apple-style-span" style="font-style: italic; ">Chair -</span><span mce_name="em" mce_style="font-style: italic;" class="Apple-style-span" style="font-style: italic; ">&nbsp;</span>First and foremost, you need a good chair. I can't stress this enough after having lower back pain from working on a bad office chair a few years ago. If you can afford it (and have space in your home office), get an Aeron or whatever your favourite type of chair is. A really good chair may cost a lot at first, but you'll be sitting, slouching and wheeling around on it for a long time so it's a worthwhile investment. It's&nbsp;<span mce_name="em" mce_style="font-style: italic;" class="Apple-style-span" style="font-style: italic; ">not&nbsp;</span>something to skimp on. Make sure you take the type of chair for a test run (test sit?) if possible. A few seconds sat on one in a shop really isn't enough. If you know someone who has the chair you're thinking of buying, ask if you can spend an hour or so working on it to see how it works for you (although you may irritate them if you change the settings too much!). Last of all, make sure you're really happy with your choice before handing over your money.</p><p>I'm typing this article sat on a solid wooden&nbsp;<a title="Ikea Ivar" href="http://www.ikea.com/gb/en/catalog/products/68156009" mce_href="http://www.ikea.com/gb/en/catalog/products/68156009" target="_blank">Ikea Ivar</a>&nbsp;borrowed from the dining room which is&nbsp;<span mce_name="em" mce_style="font-style: italic;" class="Apple-style-span" style="font-style: italic; ">far</span>&nbsp;from ideal, so I need to sort out a proper chair sooner rather than later!</p><p><span mce_name="em" mce_style="font-style: italic;" class="Apple-style-span" style="font-style: italic; ">Desk</span>&nbsp;- A desk is easier to sort out. It just needs to be the right height (or adjustable) and big enough to put everything you want on it. Also it needs no obstructions underneath for your knees to accidentally bash against. I'm using an&nbsp;<a title="Ikea Galant" href="http://www.ikea.com/gb/en/catalog/products/S79836974" mce_href="http://www.ikea.com/gb/en/catalog/products/S79836974" target="_blank">Ikea Galant</a>&nbsp;which is a nice corner desk that fits nicely in the room I'm using, has adjustable height legs, is pretty strong (it is no problem for me to sit on it) and it is easily big enough for all the desktop equipment I need. Make sure you have measurements of the room you're going to use before buying so you can eliminate anything that won't fit quickly.</p><p><span mce_name="em" mce_style="font-style: italic;" class="Apple-style-span" style="font-style: italic; ">Monitor(s) and Light</span>&nbsp;- A monitor should be big, bright, comfortable to read, well calibrated and more than one if possible. Make sure the height is set up so you don't strain your neck as you look at it. I'm counting light as part of this category as I think it is intrinsically linked to how well your monitor works for you. I like there to be a good level of ambient light in the room to avoid eye-strain from the monitors, but make sure the light is out of your field of vision or it will irritate you in your peripheral zone. Other people I've worked with (mostly artists and older coders), seem to have a preference for working in the dark - though I find that odd as it hurts my eyes after a while. I can (sort of) understand that way of working in the bad old days of curved, highly reflective CRT monitors as darkness would minimise reflections, but these days I think that is minimal. However, it is of course up to you how you light your room - whatever works best for you is most important.</p><p><span mce_name="em" mce_style="font-style: italic;" class="Apple-style-span" style="font-style: italic; ">Keyboard</span>&nbsp;- You're going to need something you can type on for hours without causing pain to your wrists. Ideally you want your hands and forearms fairly flat on the desk and not bent upwards so your wrists aren't strained. Ergonomic, straight - it's up to you, but find something that works for you and doesn't cause pain after extended use. Also, you need to find a keyboard that has a key feel you like (how much travel, how "clicky" it is), sounds right (not too loud, not too quiet). Some keyboards also have extra buttons mimicking browser navigation, application shortcuts, volume control, etc. How useful these features are is debatable (I quite like having volume/mute buttons), but once again what works for you is best.</p><p><span mce_name="em" mce_style="font-style: italic;" class="Apple-style-span" style="font-style: italic; ">Mouse</span>&nbsp;- Likewise, find something that fits your hand well, has all the buttons you need (mine is right hand shaped with two handy thumb buttons) and slides about the desk smoothly. Optical mice are all very good these days in terms of ability to read surfaces accurately so unless your desk is made of glass, you shouldn't need a mouse mat. Alternatively, you might be someone who prefers a pad, trackball or other pointing device - I only have limited experience with these so comments below welcome! I've recently bought a Wacom Bamboo pad and am getting used to using a pen as a pointing device (as well as for drawing lines and curves).</p><p><span mce_name="em" mce_style="font-style: italic;" class="Apple-style-span" style="font-style: italic; ">Headphones</span>&nbsp;- As I'll be working in a house with two young children around, I'll need a way to block out the distraction of their noise whilst they are playing, so a good, comfortable set of headphones is important to me. Find some that don't hurt your ears and have good sound quality (I find cheap tinny sound tends to irritate after a while). Noise cancelling is an option, though on the ones I've tried, sound quality seems flatter (perhaps that's just me though).</p><p><span mce_name="em" mce_style="font-style: italic;" class="Apple-style-span" style="font-style: italic; ">Space</span>&nbsp;- An odd thing to include, but I find that when I'm stuck on a problem, I like to pace back on forth whilst my brain is working on a solution. It's something I've deliberately refrained from at big companies as being watched by an office full of people stops my thought processes, but I do it at home (to the chagrin of my wife). Having an area you can do this without driving the people who live with you insane is probably a good idea!</p><p>I'd love comments on this article from people with suggestions of your own. For my next article, I plan to look at the software side of things - those little utilities that make my life as a programmer easier and more productive.</p></div> ]]>
        
    </content>
</entry>

<entry>
    <title>Fallout: New Vegas</title>
    <link rel="alternate" type="text/html" href="http://keithjudge.com/keefsmusings/2011/02/fallout-new-vegas.html" />
    <id>tag:keithjudge.com,2011:/keefsmusings//1.134</id>

    <published>2011-02-20T12:06:45Z</published>
    <updated>2011-02-20T12:44:43Z</updated>

    <summary>Image via WikipediaShock! Horror! I&apos;ve updated my blog for the first time in over a year. I&apos;ve a theory that being on twitter has pretty much killed my blog, but I digress...I recently completed Fallout: New Vegas, spending 50 hours...</summary>
    <author>
        <name>KeefJudge</name>
        <uri>http://keithjudge.com</uri>
    </author>
    
        <category term="Games" scheme="http://www.sixapart.com/ns/types#category" />
    
    <category term="fallout3" label="fallout3" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="falloutnewvegas" label="falloutnewvegas" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="narrative" label="narrative" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="pc" label="PC" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="steam" label="steam" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="en" xml:base="http://keithjudge.com/keefsmusings/">
        <![CDATA[<div class="zemanta-img mt-image-right" style="margin-top: 1em; margin-right: 1em; margin-bottom: 1em; margin-left: 1em; display: block; float: right; width: 266px; "><a href="http://en.wikipedia.org/wiki/File:Fallout_New_Vegas.jpg"><img src="http://upload.wikimedia.org/wikipedia/en/3/34/Fallout_New_Vegas.jpg" alt="Fallout: New Vegas" width="256" height="315" /></a><p class="zemanta-img-attribution" style="font-size:0.8em">Image via <a href="http://en.wikipedia.org/wiki/File:Fallout_New_Vegas.jpg">Wikipedia</a></p></div>Shock! Horror! I've updated my blog for the first time in over a year. I've a theory that <a href="http://twitter.com/#!/keefjudge">being on twitter</a> has pretty much killed my blog, but I digress...<div><br /></div><div>I recently completed Fallout: New Vegas, spending 50 hours playing (according to Steam). I'd definitely put it up there with my favourite games of all time, despite the well publicised technical flaws. However, my issue with the game is of a different nature. Spoilers inbound!</div><div><br /></div><div>The ending (or at least the ending I chose) was deeply unsatisfying. In Fallout 3, I chose the sacrificial ending that left my character dead, but with a limitless supply of clean, and most importantly, radiation free water for the whole of the Capital Wasteland. This felt like the right thing to do and was a satisfying end to the narrative as a result.</div><div><br /></div><div>In New Vegas however, I couldn't resist the lure of the Wild Card ending, whereby I took out the sinister Mr House, destroyed the horrible Caesar's Legion and turned New Vegas into an independent nation. This all sounds awesome, but my dissatifaction came from the treatment of the New California Republic (NCR) the game then forced upon me.</div><div><br /></div><div>As the leader of a new independent New Vegas, my preference would have been to create a strong alliance with the NCR. I'd played their quest line as far as I could take it without sabotaging the Wild Card ending and was quite happy to work with them, but the game did not offer this as an option (in fact I was&nbsp;humorously&nbsp;surprised, and a little shocked when Yes Man took me literally when I asked him to throw the NCR general off the Hoover Dam). The game forced my hand - my only option was to send the NCR fleeing west again, or to tell my Securitron army to wipe them out, neither of which I wanted to do.</div><div><br /></div><div>This was surprising to me in a game in which a major feature was the&nbsp;alliances&nbsp;between the various factions.&nbsp;Getting into Nellis Airforce Base and helping the isolationist Boomers onto on my side by floating an old bomber plane from the bottom of Lake Mead led to a Crowning Moment of Awesome when the very same bomber blew the Legion to hell as I was crossing the Hoover Dam in the final battle. I persuaded the Vault 19 Powder Gangers to join up with The Great Khans, who in turn I persuaded to leave the Legion and become independent themselves. Why in this case was there no option to ally with the NCR after my choice to make New Vegas independent?</div><div><br /></div><div>Perhaps the game's writers were making the point that great power demands a great cost. I became the leader of New Vegas and as a result lost the group of people I'd been helping throughout most of the game. I&nbsp;think I'm going to have to change the canon of my playthrough and do the ending again, but this time play for the NCR. The Dead Money DLC is out on PC in a couple of days, so it's a good excuse to continue with the game.</div>

<div class="zemanta-pixie" style="margin-top:10px;height:15px"><a class="zemanta-pixie-a" href="http://www.zemanta.com/" title="Enhanced by Zemanta"><img class="zemanta-pixie-img" src="http://img.zemanta.com/zemified_e.png?x-id=9066579c-a7dc-4c31-880e-a5243121a73e" alt="Enhanced by Zemanta" style="border:none;float:right" /></a><span class="zem-script more-related pretty-attribution"><script type="text/javascript" src="http://static.zemanta.com/readside/loader.js" defer="defer"></script></span></div>]]>
        
    </content>
</entry>

<entry>
    <title>2009 In Review</title>
    <link rel="alternate" type="text/html" href="http://keithjudge.com/keefsmusings/2010/01/2009-in-review.html" />
    <id>tag:keithjudge.com,2010:/keefsmusings//1.133</id>

    <published>2010-01-18T13:14:21Z</published>
    <updated>2010-01-18T15:25:57Z</updated>

    <summary> Yes, it&apos;s that time of year again! Well, actually I&apos;m a couple of weeks late, but I&apos;ve been ill and this is my blog, so ner! Highlight of the year - Like last year, it&apos;s the birth of a...</summary>
    <author>
        <name>KeefJudge</name>
        <uri>http://keithjudge.com</uri>
    </author>
    
        <category term="Random" scheme="http://www.sixapart.com/ns/types#category" />
    
    
    <content type="html" xml:lang="en" xml:base="http://keithjudge.com/keefsmusings/">
        <![CDATA[ <p>Yes, it's that time of year again! Well, actually I'm a couple of weeks late, but I've been ill and this is my blog, so ner!</p>
<p><strong>Highlight of the year</strong> - Like last year, it's the birth of a child - my daughter to be precise! The birth itself was a lot quicker and easier than last time (for both my wife and myself!) and we were home by lunchtime the same day. Sleep has been more of a problem this time, though a lot of people have said that girls tend to be worse sleepers than boys - though this is anecdotal rather than proper data. My son's been learning his first words - proper words rather than random babbling. He seems to say "Oh dear" rather a lot though... As for next year, we're certainly not planning on having any more children so I'll have to think of something else for the 2010 review post.</p>
<p><strong>Film of the year</strong> - Again, due to the responsibilities of parenthood, I haven't seen that many new films this year. <a href="http://www.pixar.com/featurefilms/up/">Up</a> is the best I have seen though, and also served as my first proper 3D film viewing, though that felt more like a gimmick than something I'd want to do all the time</p>
<p><strong>Game of the year</strong> - <a href="http://en.wikipedia.org/wiki/Mass_Effect">Mass Effect</a>. I'm probably cheating by including it here, but I did play the game in 2009 even though it was out the year before. This game has a ton of technical flaws, an irritating inventory system, awkward vehicle combat and other problems that would normally put me off, but the story, character and atmosphere just draw you in completely. I'm very much looking forward to the sequel that's out in a couple of weeks. <a href="http://en.wikipedia.org/wiki/Assassin's_Creed">Assassin's Creed</a> was fun for a while, but ultimately annoyed me to the point where I didn't finish it. <a href="http://en.wikipedia.org/wiki/Trials_HD">Trials HD</a> was also fun, but required too much patience and skill for me.</p>
<p><strong>TV of the year</strong> - This year I've really been getting into <a href="http://en.wikipedia.org/wiki/House_(TV_series)">House</a>, watching all five seasons on DVD, more or less back-to-back! I'm not normally a fan of medical dramas, but the quality of writing in House is exceptional, as is Hugh Laurie's performance. My favourite episodes are the stranger ones, usually the last couple in each season such as the bus crash at the end of season four (though the Amber clue was blatantly obvious to me) and where House becomes delusional at the end of season five, but we don't even know it until the last few minutes - one of the most powerful examples of TV for years.</p>
<p>As for other series', Lost is still really good and I can't wait for the final season. Dr Who/Torchwood took a different approach this year - rather than a full season of each, Torchwood did a rather good five part mini-series and Dr Who did four one-off episodes shown throughout the year - the first two of which were pretty rubbish I did think the return of the Timelords in the final two parter was a bit of an anticlimax, but the final poignant half hour was the best bit of writing Russell T Davies has ever done - shame it took him so long to get there. David Tennant's Doctor was often irritating (and utterly bipolar in character), but I'll miss him.</p>
<p><strong>Book of the year</strong> - Ben Goldacre's Bad Science is a great eye opener - not just in terms of how science is misrepresented in the press, but in terms of the danger caused by pseudoscience and bad reporting of medical (or medicalised) stories. The chapter on AIDS denialism in South Africa is completely shocking. One of those books everyone should read.</p>
<p><strong>Technology of the year</strong> - Android. I was so happy when I learned that Google were setting up against Apple's over-expensive, DRM ridden, walled in phone system with an open source, open to any application developers, open to any phone manufacturer, free (as in beer and freedom) operating system. My G1 phone is still going strong and whilst not quite up there with the latest models, having a Qwerty keyboard and an unlimited data plan has changed the way I use my phone forever.</p>
<p>Windows 7 is good contender, but doesn't win the award simply because it's what Vista should have been in the first place.</p>
<p><strong>Conclusion</strong> - I was wondering whether to do a review of the noughties (or whatever people call em), but the mathematician inside me won't let me consider the decade over until 2011 - there was no year zero in our calendar. Also, I can't remember that far back.</p>
<p>Predictions for next year. Here I can say whatever I like and if it comes true I make lots of noise about it when it happens - if not, I pretend I never wrote it! I reckon Android will become more popular, certainly after the launch of the Nexus One phone, though the iPhone is so ubiquitous that I doubt it'll be buried for a long time (if ever).</p>
<p>I predict I'll still have two children at the end of the year. I have nothing but admiration for parents who have three or more children.</p>
<p>I also predict I'll like Mass Effect 2 a lot! There are a few interesting games that ought to come out in the next year - Alan Wake, Starcraft 2 (at least the first part of it) and Fable 3 of course (pre-order now!!!).</p>
<p>I want to try to lose weight (though being ill for the last couple of weeks has given me a nice headstart) and I also need to figure out an easy way to pay off the mortgage in one go...</p>]]>
        
    </content>
</entry>

<entry>
    <title>Using Multiple Computers Simultaneously</title>
    <link rel="alternate" type="text/html" href="http://keithjudge.com/keefsmusings/2009/12/using-multiple-computers-simul-1.html" />
    <id>tag:keithjudge.com,2009:/keefsmusings//1.132</id>

    <published>2009-12-11T16:28:42Z</published>
    <updated>2009-12-11T16:49:28Z</updated>

    <summary>I&apos;ve recently started using a second PC at work which has proven useful. In order to simplify using two PCs simultaneously, I&apos;m using some software called RemoteD in order to share the mouse and keyboard across both machines. RemoteD appears...</summary>
    <author>
        <name>KeefJudge</name>
        <uri>http://keithjudge.com</uri>
    </author>
    
        <category term="Technology" scheme="http://www.sixapart.com/ns/types#category" />
    
    <category term="machinesharing" label="machine sharing" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="remoted" label="RemoteD" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="synergy" label="Synergy" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="virtualmachine" label="Virtual Machine" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="vm" label="VM" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="en" xml:base="http://keithjudge.com/keefsmusings/">
        <![CDATA[<p>I've recently started using a second PC at work which has proven useful. In order to simplify using two PCs simultaneously, I'm using some software called RemoteD in order to share the mouse and keyboard across both machines. RemoteD appears to have been written internally at the company I work for so isn't on the web, but it's similar to <a href="http://synergy2.sourceforge.net/">Synergy</a> in that you are able to drag the mouse off the edge of the screen on your main PC and it will appear instantly on the other screen and behave as though it were connected to that machine. Drag it back and the mouse focus is back on the main machine. The keyboard focus will also change to the PC that the mouse is active on (though you still need a keyboard plugged into the second machine in order to get through the Windows Login screen). Some software of this kind even supports copying the clipboard from one machine to another.</p>
<p>I'm finding this way of working is very handy to get work done on one machine whilst the other is crunching away on something that'll take a long time, but it has got me thinking that this kind of machine sharing could be done in a better way. If there was a single (virtual?) instance of the OS shared across both machines you would be able to simply drag entire applications from one machine to the other just as you can across multiple screens on one machine and it would use up CPU/memory on the machine you drag it to.</p>
<p>I believe this kind of thing is already somewhat possible using virtual machines for each application and using a system that allows the images to be migrated live (as used in data centre replication), but I've never heard of the system being so closely integrated with the desktop in such a way. I'm not claiming for a second this would be trivial to implement, but it would be rather cool - especially if you can add/remove machines from the array at will. For example you could bring your laptop to your desktop PC, connect them up and drag your IDE from one to the other in an instant (or however long it takes to copy the memory space of the app + related files across a wireless connection), then take the laptop off somewhere else.</p>
<p>In the meantime, if anyone can evangelise their favourite Synergy-type software I'm open to recommendations.</p>]]>
        
    </content>
</entry>

<entry>
    <title>And Another Thing...</title>
    <link rel="alternate" type="text/html" href="http://keithjudge.com/keefsmusings/2009/11/and-another-thing.html" />
    <id>tag:keithjudge.com,2009:/keefsmusings//1.127</id>

    <published>2009-11-19T13:26:52Z</published>
    <updated>2009-11-19T13:47:33Z</updated>

    <summary> The Hitchhiker&apos;s Guide to the Galaxy novels are much loved by many, and now there is a sixth book in the &quot;trilogy&quot; written by Eoin Colfer titled &quot;And Another Thing...&quot;. I&apos;d never read any of Colfer&apos;s works before -...</summary>
    <author>
        <name>KeefJudge</name>
        <uri>http://keithjudge.com</uri>
    </author>
    
        <category term="Books" scheme="http://www.sixapart.com/ns/types#category" />
    
    <category term="andanotherthing" label="And Another Thing..." scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="books" label="Books" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="douglasadams" label="Douglas Adams" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="eoincolfer" label="Eoin Colfer" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="hitchhikersguidetothegalaxy" label="Hitchhiker&apos;s Guide to the Galaxy" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="en" xml:base="http://keithjudge.com/keefsmusings/">
        <![CDATA[ <p><a href="http://en.wikipedia.org/wiki/The_Hitchhiker's_Guide_to_the_Galaxy">The Hitchhiker's Guide to the Galaxy</a> novels are much loved by many, and now there is a sixth book in the "trilogy" written by <a href="http://www.eoincolfer.com/">Eoin Colfer</a> titled "And Another Thing...".</p>
<p>I'd never read any of Colfer's works before - presumably because they're aimed at teenagers and I generally avoid such works. I lie of course, as I've read all of the <a href="http://en.wikipedia.org/wiki/Harry_Potter">Harry Potter</a> and the <a href="http://en.wikipedia.org/wiki/The_Keys_to_the_Kingdom">Keys to the Kingdom</a> series, but I digress.</p>
<p>The new H2G2 novel takes place directly after Mostly Harmless and follows the characters escaping a doomed Earth (again) and generally being chased around the universe by the Vogons, who are hell bent on destroying every single human. Overall, I quite liked it - it didn't seem quite as inventive or inspired as Douglas Adam's works in places, and somehow "feels" different, but the story works well and the laughs are certainly there (much to my wife's annoyance when I was chortling away reading in bed while she tried to sleep). To criticise too much on minor style issues would be unfair to Colfer though, given the ridiculously high expectations placed upon this book. However, I feel the novel ended a little lazily, performing the vastly overused trick of setting up a definite sequel in the last chapters, rather than wrapping things up.</p>
<p>If you'd like to buy this book, please consider using this <a href="http://www.amazon.co.uk/gp/product/0718155149?ie=UTF8&amp;tag=keesmus-21&amp;linkCode=as2&amp;camp=1634&amp;creative=19450&amp;creativeASIN=0718155149">Amazon.co.uk</a><img src="http://www.assoc-amazon.co.uk/e/ir?t=keesmus-21&amp;l=as2&amp;o=2&amp;a=0718155149" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" />
 link and I'll recieve a tiny commission at no cost to you which will help pay for the hosting of this site. Thank you.</p>]]>
        
    </content>
</entry>

<entry>
    <title><![CDATA[Up &amp; 3D Cinema]]></title>
    <link rel="alternate" type="text/html" href="http://keithjudge.com/keefsmusings/2009/10/up-3d-cinema.html" />
    <id>tag:keithjudge.com,2009:/keefsmusings//1.126</id>

    <published>2009-10-12T12:45:17Z</published>
    <updated>2010-01-27T15:54:13Z</updated>

    <summary>I saw Pixar&apos;s latest film, Up, last Friday. It is the first full length film I&apos;ve ever seen in 3D, or DISNEY DIGITAL 3D as it pronounced itself. The film itself is one of Pixar&apos;s best. It certainly shows a...</summary>
    <author>
        <name>KeefJudge</name>
        <uri>http://keithjudge.com</uri>
    </author>
    
        <category term="Film" scheme="http://www.sixapart.com/ns/types#category" />
    
    <category term="3d" label="3D" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="cgi" label="CGI" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="disney" label="Disney" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="film" label="Film" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="pixar" label="Pixar" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="up" label="Up" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="en" xml:base="http://keithjudge.com/keefsmusings/">
        <![CDATA[<p>I saw <a href="http://www.pixar.com/">Pixar</a>'s latest film, <a href="http://disney.go.com/disneypictures/UP/">Up</a>, last Friday. It is the first full length film I've ever seen in 3D, or <a href="http://en.wikipedia.org/wiki/Disney_Digital_3-D">DISNEY DIGITAL 3D</a> as it pronounced itself.</p>
<p>The film itself is one of Pixar's best. It certainly shows a new found maturity to their filmmaking, bringing my wife and (presumably) a good proportion of the rest of the audience to tears. I, on the other hand, am a Northern English bloke hardened by a childhood working 28 hours a day down the mines, bricks for breakfast, living in a puddle, etc - therefore no film has ever had that effect on me (either that or I'm just emotionally stunted). The fact that a frankly surreal story idea works so well is testament to Pixar's excellent storytelling craft.</p>
<p>As for the 3D effect - I'm not completely convinced it's anything other than a short lived gimmick. It certainly works - the form of objects is realised surprisingly well and the circular (as opposed to linear) polarisation seems to negate the headache I was fearing. However, I kept finding myself distracted by the 3D effect and wasn't able to completely absorb myself in the film. Perhaps this impression will fade if 3D cinema becomes more commonplace.</p>
<p>Another problem which the film mostly avoided is a perceived lag that happens when there is a camera cut. Pixar seemed to be vary careful to keep the amount of parallax on the focus of the image roughly constant between cuts, but the editing on one of the trailers beforehand (some 3D CGI space thing) was jarring. Far too many fast cuts causing a noticeable delay whilst my eyes locked onto the new parallax. Maybe younger viewers are able to keep up better, but I'm a 30 year old boy - surely my eye muscles are still good!</p>
<p>Reading this post back, I've noticed that I haven't (yet) mentioned the graphics in the film, despite being a graphics geek and indeed a graphics programmer. Suffice to say they're so good you barely notice them - the few times I did think about it I saw flawless lighting, shading, the works. Sometimes I envy film effects people in that they have a lot more processing time at hand as opposed to games aiming to have everything rendered within 16⅔ or 33⅓ milliseconds depending on whether we're aiming for 60 or 30 frames per second.</p>
<p>Another technical oddity I noticed is that at the end of the credits (I hung around in case there was any extra bits at the end), there was a message saying that all final rendering had been done on <a href="http://www.intel.com/">Intel</a> processors. I'm mildly surprised that Pixar aren't using any GPU technology such as <a href="http://www.nvidia.co.uk/page/home.html">NVIDIA</a>'s <a href="http://www.nvidia.com/object/cuda_home.html">CUDA</a> or <a href="http://www.khronos.org/opencl/">OpenCL</a> to accelerate things - perhaps because the cost and time required to port over their existing rendering software is prohibitive, despite the gains, so simply throwing more processors at the problem is a cheap way to improve rendering performance.</p>]]>
        
    </content>
</entry>

<entry>
    <title>In the Night Garden...</title>
    <link rel="alternate" type="text/html" href="http://keithjudge.com/keefsmusings/2009/10/in-the-night-garden.html" />
    <id>tag:keithjudge.com,2009:/keefsmusings//1.125</id>

    <published>2009-10-07T12:51:29Z</published>
    <updated>2009-10-07T14:35:14Z</updated>

    <summary>One of the joys of having children is that you get an excuse to watch children&apos;s television again. One of my current favourites on CBeebies is &quot;In the Night Garden...&quot;. The show is made by the same production company as...</summary>
    <author>
        <name>KeefJudge</name>
        <uri>http://keithjudge.com</uri>
    </author>
    
        <category term="Television" scheme="http://www.sixapart.com/ns/types#category" />
    
    <category term="cbeebies" label="CBeebies" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="inthenightgarden" label="In the Night Garden" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="television" label="Television" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="en" xml:base="http://keithjudge.com/keefsmusings/">
        <![CDATA[<p>One of the joys of having children is that you get an excuse to watch children's television again. One of my current favourites on <a href="http://www.bbc.co.uk/cbeebies/">CBeebies</a> is "<a href="http://www.inthenightgarden.co.uk/en/default.asp">In the Night Garden...</a>". The show is made by the same production company as <a href="http://www.bbc.co.uk/cbeebies/teletubbies/">Teletubbies</a> and shares some of the earlier shows aesthetics - lots of lush green grass, constant sunny weather, happy costumed characters, etc. On the surface it's a very happy smiley show, but the more I think about it, the more the show's darker side is apparent.</p>
<p><strong>Igglepiggle</strong></p>
<p>The protagonist is a character called Igglepiggle, who is shown at the beginning of each episode falling asleep on a small sailing boat and dreaming about adventures with his friends in the garden. At the end of each episode he's reluctant to leave the garden and is then shown asleep in the boat drifting off into the distance. This got me thinking - far from being a happy character he's lost at sea in a small boat, most probably living on fish and re-condensed sea water. He's so lonely that his mind is dreaming/hallucinating about the garden and its characters in order to keep himself sane. The garden itself is of course on dry land and there are no streams or ponds - I guess Igglepiggle hates water after being adrift for so long.</p>
<p>Each character has a theme song which is sung when they first appear in the garden. Igglepiggle's simply states that his name is Igglepiggle, as though he is trying desperately to cling onto his identity. An instrumental version of his theme also serves as the opening/closing music for the show and is also sung by the Tittifers (brightly coloured birds) - it's almost as though the song is stuck in his head, haunting him.</p>
<p>If Igglepiggle is going insane with loneliness and the garden does not exist outside of his head, then we can think of the other characters as representative of different aspects of his personality. I think I've figured some of them out.</p>
<p><strong>Upsy Daisy</strong></p>
<p>Iggle Piggle's best (imaginary) friend is Upsy Daisy. A young woman who appears to be his girlfriend - they are often seen holding hands, hugging and kissing each other. She sings and dances a lot and seems to represent a happy distraction from Igglepiggle's plight - he clings to her to push his loneliness away and uses her as a mask from his breaking personality. Her theme emphasises that she is the <em>only</em> Upsy Daisy, perhaps showing that Igglepiggle is clingy and obsessive about her. Strangely enough, she sleeps in a wheeled seemingly sentient bed that sometimes follows her around or runs away from her.</p>
<p><strong>Makka Pakka</strong></p>
<p>This character is simple to work out. He represents Igglepiggle's obsessive compulsive side. He collects rocks and does all the cleaning in the garden, often washing the other character's faces. He is about half Igglepiggle and Upsy Daisy's height, perhaps indicating that this aspect of his personality is not dominant.</p>
<p><strong>The Pontipines &amp; Wottingers</strong></p>
<p>The Pontipines are ten tiny red characters who live in a semi detached house. The other half of the house is occupied by the Wottingers. The Pontipines appear in the show far more frequently than the Wottingers and I think I've figured out why. The Pontipines and Wottingers appear to be the most intelligent characters in the garden and perhaps they literally represent Igglepiggle's brain. I think the Pontipines represent the right hemisphere and the Wottingers the left (matching up with the side of the screen their house is on). The Wottingers appear less often because IgglePiggle is right brain dominant. Further evidence of this is that the characters in the garden all lack good language skills (most can only say their own names). Language is usually controlled by the left hemisphere of the brain. The tiny size of the characters would seen to show that Igglepiggle's brain is in a bad state overall.</p>
<p><strong>The Ninky Nonk and Pinky Ponk</strong></p>
<p>These are the two forms of transport within the garden, a fast train and a slow airship respectively. Although apparently about the same size as Igglepiggle, they become large enough for the characters to ride on, though the size change is never shown. They perhaps show Igglepiggle's yearning to get off his boat and onto some other form of transport. The fast speed of the Ninky Nonk showing Igglepiggle's desire to move quicky rather than drifting slowly and the airship perhaps showing his frustration - he wants to get high enough off the water to see land.</p>
<p><strong>Conclusion</strong></p>
<p>I haven't figured out the rest of the characters yet, which is why I haven't mentioned them here. Of course, I'm sure the program makers had none of this in mind when making the programme - this is of course simply my analysis after thinking far to much about a children's television show. Perhaps I've got too much time on my hands...</p>]]>
        
    </content>
</entry>

<entry>
    <title>James May&apos;s Lego House</title>
    <link rel="alternate" type="text/html" href="http://keithjudge.com/keefsmusings/2009/09/james-mays-lego-house.html" />
    <id>tag:keithjudge.com,2009:/keefsmusings//1.124</id>

    <published>2009-09-09T12:54:36Z</published>
    <updated>2009-10-06T13:08:13Z</updated>

    <summary>I originally started writing this post over a month ago, but work suddenly went into overdrive and I never got round to finishing and posting it. Well, here it is! Back in July, you may have seen the news that...</summary>
    <author>
        <name>KeefJudge</name>
        <uri>http://keithjudge.com</uri>
    </author>
    
        <category term="Television" scheme="http://www.sixapart.com/ns/types#category" />
    
    <category term="bbc" label="BBC" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="denbies" label="Denbies" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="jamesmay" label="James May" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="lego" label="Lego" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="television" label="Television" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="toys" label="Toys" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="en" xml:base="http://keithjudge.com/keefsmusings/">
        <![CDATA[<p>I originally started writing this post over a month ago, but work suddenly went into overdrive and I never got round to finishing and posting it. Well, here it is!</p>
<p>Back in July, you may have seen the news that James May was planning to build a house out of <a href="http://www.lego.com/">Lego</a> and live in it for a few days for a new TV show. I certainly did. He was looking for a few hundred volunteers to help out with the construction, and I also noticed that the event was taking place at <a href="http://www.denbiesvineyard.co.uk/">Denbies Vineyard</a>, only a short drive from my home.</p>
<p>I decided to sign up, though I wasn't expecting to get anywhere. A few days later I received an email saying that there was lots of demand and that people should turn up on Saturday morning and they would hand out tickets to those lucky enough to be near the front.</p>
<p>I <em>had</em> to do this! Playing with a vast quantity of Lego is something I've always dreamed of as a child and I could not pass up this opportunity. I contacted my friend Iain to see if he fancied coming along and he replied in the affirmative.</p>
<strong>The Big Day</strong>
<p>I awoke at 7am on Saturday 1st August and after a little while I dragged myself to the shower and made myself presentable for the day. My wife had agreed to give us a lift to the event, which was just as well because when we arrived at 8:30 the car park was overflowing. She dropped us off at the entrance and we walked the rest of the way.</p>
<p>We joined the rather long queue and tried to estimate how many people were ahead of us. The email from the producers said that there were 600 tickets available, but they would be able to give out more tickets if the weather permitted. The queue already stretched around three sides of the large main building at Denbies and was getting longer by the minute. We also noticed that we were in the minority of people who didn't bring children along - I would have brought my son along but he's too young for it and would probably try to eat the Lego rather than do anything useful.</p>
<p>The queue moved slowly forward. My wife texted me to tell he she had spotted James May in the centre of Dorking with a camera crew - Denbies lies on the edge of this town. The queue continued its agonisingly slow crawl, though the atmosphere was a happy one - if there's one thing the British know how to do well, it's queueing. There was no queue jumping, nor an impatient word. Even the children in the queue were entertaining themselves without causing a nuisance.</p>
<p>At last! Some excitement! A car drove along the queue with a camera crew hanging out of the back. We all dutifully waved as it passed, hoping that we would we would be amongst the lucky few not to end up on the cutting room floor. More excitement ensued a little later when the car appeared again and stopped by some shipping crates, the driver and his companion opening them and extracting some of the valuable plastic bricks we all wanted to get our hands on.</p>
<p>As we neared the front of the queue, we saw what was taking so long. People were having to sign release forms for their image to be used in the TV programme, though by this point they had started handing out the forms to people before they got to the front which helped somewhat. At about 11:30, three hours after joining the queue, we finally received our tickets for an hour's building at 3pm.</p>
<p>A brief interval for lunch at home and we were back queueing again (groan), only this time in the rain. Thankfully, the queue was much shorter this time as it was only for a pre-booked session. After a little while getting wet, James May himself came out of the marquee with a megaphone and told us all to stop standing around in the rain like a bunch of idiots and to come inside and get building. We didn't need telling twice!</p>
<p>It turned out we weren't actually going to be constructing the house, but building what amounts to house bricks out of Lego. This was a bit of a shame, but understandable considering the amount of people there. We were to construct hollow blocks made out of standard 2x4 Lego bricks measuring 12x6x8 bricks in total with no top or bottom. Very strong and light.</p>
<p>Iain and myself were quite competitive, trying to build as many blocks as we could in the time allotted. There was a frustrating hiatus in the middle where we ran out of Lego and had to wait for another crate to be retrieved from the stores, but we ended up well ahead of everyone else on our table.</p>
<p>After that, there was nothing for it but to buy some of the local wine and head home.</p>
<p>In the intervening weeks I have received more emails asking for help in the actual construction of the house, but unfortunately I've been snowed under with work (which as I noted above, is the reason for the delay in this post). I noticed in the local paper last week however, that the house is still not finished, so perhaps there is still an opportunity for more large scale Lego construction ahead.</p>
<p>I shall post again when I know when this will be on TV - I'm assuming the series is being prepared for the Christmas toy rush.</p>]]>
        
    </content>
</entry>

<entry>
    <title>Torchwood: Children of Earth</title>
    <link rel="alternate" type="text/html" href="http://keithjudge.com/keefsmusings/2009/07/torchwood-children-of-earth.html" />
    <id>tag:keithjudge.com,2009:/keefsmusings//1.123</id>

    <published>2009-07-13T12:47:01Z</published>
    <updated>2009-07-13T13:25:22Z</updated>

    <summary>Children of Earth was a five episode mini-series forming the third season of Torchwood. It&apos;s good to see the new series try out the old Doctor Who&apos;s structure of a big story spread over several episodes and it never seemed...</summary>
    <author>
        <name>KeefJudge</name>
        <uri>http://keithjudge.com</uri>
    </author>
    
        <category term="Television" scheme="http://www.sixapart.com/ns/types#category" />
    
    
    <content type="html" xml:lang="en" xml:base="http://keithjudge.com/keefsmusings/">
        <![CDATA[<p>Children of Earth was a five episode mini-series forming the third season of <a href="http://en.wikipedia.org/wiki/Torchwood">Torchwood</a>. It's good to see the new series try out the old Doctor Who's structure of a big story spread over several episodes and it never seemed to run out of steam.</p>
<p>As I've already stated on this blog, Torchwood started out as a very silly, but promising show. The second series really showed this potential off with some great episodes. I particularly liked the Owen focussed episodes after he "died". It's quite impressive how much the series has improved over a relatively small number of episodes.</p>
<p>Children of Earth felt a little too much like a Doctor Who episode, though perhaps this was to handhold the BBC 1 audience who may have not seen it before. It started out as yet another mass mind control episode and at the end I was half expecting the Doctor to turn up and sort out the mess (thankfully, he didn't, though Torchwood always has this lazy plot device as a "Get out of jail free" card available). However, there were some really chilling moments. There was a section where the cabinet are discussing how to choose the ten percent of children to give up to the 456. After initially thinking a random selection would be best, they eventually chose the completely selfish route of picking the attendees of the worst performing schools on the basis that they were "of less use to society". This came across to me as being scarily plausible.</p>
<p>One thing that's a little off putting about Torchwood is how few of the main cast are still alive. Jack of course can't die (at least not for a few billion years), but Gwen must be cacking herself at the moment, being the only other survivor. Martha Jones and Mickey transferred to Torchwood at the end of the last series of Doctor Who, but they did not appear in this mini-series (only Martha's absence was explained).</p>
<p>Lastly, another little thing I noticed last week is that the Torchwood hub is one of the fictional places you can search for on <a href="http://maps.google.co.uk/maps?f=q&source=s_q&hl=en&geocode=&q=torchwood,+cardiff&sll=53.800651,-4.064941&sspn=15.79107,33.222656&ie=UTF8&z=13&iwloc=A">Google Maps</a>!</p>]]>
        
    </content>
</entry>

<entry>
    <title>The Shocking Cost of Razor Blades</title>
    <link rel="alternate" type="text/html" href="http://keithjudge.com/keefsmusings/2009/07/the-shocking-cost-of-razor-bla.html" />
    <id>tag:keithjudge.com,2009:/keefsmusings//1.117</id>

    <published>2009-07-01T13:20:06Z</published>
    <updated>2009-07-03T13:23:23Z</updated>

    <summary>One thing that&apos;s always irked me is the cost of replacement blades for my Gillette Mach3 Power Nitro Razor. I received the razor as a birthday present from my wife (then girlfriend) a few years ago as an update from...</summary>
    <author>
        <name>KeefJudge</name>
        <uri>http://keithjudge.com</uri>
    </author>
    
        <category term="Money" scheme="http://www.sixapart.com/ns/types#category" />
    
        <category term="Shopping" scheme="http://www.sixapart.com/ns/types#category" />
    
    
    <content type="html" xml:lang="en" xml:base="http://keithjudge.com/keefsmusings/">
        <![CDATA[<p>One thing that's always irked me is the cost of replacement blades for my <a href="http://www.amazon.co.uk/gp/product/B000BPASVU?ie=UTF8&amp;tag=keesmus-21&amp;linkCode=as2&amp;camp=1634&amp;creative=19450&amp;creativeASIN=B000BPASVU">Gillette Mach3 Power Nitro Razor</a><img src="http://www.assoc-amazon.co.uk/e/ir?t=keesmus-21&amp;l=as2&amp;o=2&amp;a=B000BPASVU" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" />. I received the razor as a birthday present from my wife (then girlfriend) a few years ago as an update from my ageing <a href="http://www.amazon.co.uk/gp/product/B0000TZA2E?ie=UTF8&amp;tag=keesmus-21&amp;linkCode=as2&amp;camp=1634&amp;creative=19450&amp;creativeASIN=B0000TZA2E">Gillette Mach 3 Turbo Razor</a><img src="http://www.assoc-amazon.co.uk/e/ir?t=keesmus-21&amp;l=as2&amp;o=2&amp;a=B0000TZA2E" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /> (note the slightly different name). To be honest, there is little difference between the two other than the newer one has a battery powered vibrator which helps the blade glide more smoothly across my skin.</p>
<p>However, the real difference comes in when you buy blades. I've just spent �9.76 in the local <a href="http://www.tesco.com/">Tesco</a> buying just eight <a href="http://www.amazon.co.uk/gp/product/B0000WU07G?ie=UTF8&amp;tag=keesmus-21&amp;linkCode=as2&amp;camp=1634&amp;creative=19450&amp;creativeASIN=B0000WU07G">Mach3 Razor Blade Cartridges</a><img src="http://www.assoc-amazon.co.uk/e/ir?t=keesmus-21&amp;l=as2&amp;o=2&amp;a=B0000WU07G" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" />, which is just a bit of a rip off. However, this is nothing compared with buying the matching green blades for the Nitro, which would have cost over �13. I'm not sure if there is any significant difference between the two other than colour and marketing. Both types of cartridge look identical and fit perfectly on the handle, but I'm sure as hell not going to pay the extra money just to be colour coordinated!</p>
<p><a href="http://www.gillette.com/en-gb/">Gillette</a> are currently in the middle of a massive advertising campaign to persuade people to upgrade to the new <a href="http://www.amazon.co.uk/gp/product/B000GE0CD0?ie=UTF8&amp;tag=keesmus-21&amp;linkCode=as2&amp;camp=1634&amp;creative=19450&amp;creativeASIN=B000GE0CD0">Gillette Fusion Power</a><img src="http://www.assoc-amazon.co.uk/e/ir?t=keesmus-21&amp;l=as2&amp;o=2&amp;a=B000GE0CD0" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" />, but despite any technical improvements, the utterly scandalous cost of replacement blades (over �18 in Tesco) is more than enough to put me off. The older, but more affordable Mach 3 blades won't fit on the new handle anyhow so I'm certainly not going to upgrade.</p>
<p>I have an electric shaver which does the job (and doesn't require regular replacement blades), but the resulting shave is nowhere near as close as with a wet shave. I could invest in a proper old style cut throat razor and sharpener, which I'm sure would result in a great shave after the learning curve, but with curious young children in the house that is a definite no go. Cheap disposable razors are another option, but having used them in the past they tend to give a very harsh shave which isn't as close as with the more expensive options - plus it seems such a shame to throw so much plastic away each time.</p>
<p>What is a man to do, other than continue to prop up the Gillette corporate monster?</p>]]>
        
    </content>
</entry>

<entry>
    <title>Mass Effect Revelation &amp; Ascension</title>
    <link rel="alternate" type="text/html" href="http://keithjudge.com/keefsmusings/2009/06/mass-effect-revelation-ascensi.html" />
    <id>tag:keithjudge.com,2009:/keefsmusings//1.116</id>

    <published>2009-06-30T14:38:18Z</published>
    <updated>2009-06-30T15:29:16Z</updated>

    <summary> I don&apos;t normally read tie in novels for games, films, TV, etc., but I made an exception in this case as the two Mass Effect novels were written by Drew Karpyshyn, the head writer of the game. Mass Effect:...</summary>
    <author>
        <name>KeefJudge</name>
        <uri>http://keithjudge.com</uri>
    </author>
    
        <category term="Books" scheme="http://www.sixapart.com/ns/types#category" />
    
    
    <content type="html" xml:lang="en" xml:base="http://keithjudge.com/keefsmusings/">
        <![CDATA[ <p>I don't normally read tie in novels for games, films, TV, etc., but I made an exception in this case as the two <a href="http://masseffect.bioware.com/">Mass Effect</a> novels were written by <a href="http://www.drewkarpyshyn.com/">Drew Karpyshyn</a>, the head writer of the game.</p>
<p><a href="http://www.amazon.co.uk/gp/product/1841496758?ie=UTF8&amp;tag=keesmus-21&amp;linkCode=as2&amp;camp=1634&amp;creative=19450&amp;creativeASIN=1841496758">Mass Effect: Revelation</a><img src="http://www.assoc-amazon.co.uk/e/ir?t=keesmus-21&amp;l=as2&amp;o=2&amp;a=1841496758" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /> is a fairly straighforward prequel, filling in the back story between Captain (then Lieutenant) Anderson and Saren. Without giving away any more plot than the back cover of the book, the basic setup is that an Alliance research facility is attacked by an unknown force and Anderson's team is sent in to investigate. It turns out that there is only one survivor, a woman named Kahlee Sanders (I'm assuming her name is pronounced Kay-lee) who left the base only a short time beforehand. She's the obvious prime suspect for the attack, but Anderson sees things differently. There isn't a huge amount of new information in this book that isn't already in the dialogue of the game, but it's nice to see an expanded back story. There is a strange unnatural compulsion of the author to name the fictional manufacturer of every weapon, piece of armour, etc. whenever introduced as though he is simply showing off his knowledge of the Mass Effect universe, but this is a minor niggle.</p>
<p><a href="http://www.amazon.co.uk/gp/product/1841496766?ie=UTF8&amp;tag=keesmus-21&amp;linkCode=as2&amp;camp=1634&amp;creative=19450&amp;creativeASIN=1841496766">Mass Effect: Ascension</a><img src="http://www.assoc-amazon.co.uk/e/ir?t=keesmus-21&amp;l=as2&amp;o=2&amp;a=1841496766" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /> on the other hand, is a much more interesting novel. It is set directly after the end of the game and neatly avoids committing to any of the alternate endings to the game by following Kahlee (now working as a scientist in a elite biotic training school) as she is looking after autistic student Gillian, whose father is a member of a shadowy underground group manipulating the Alliance from within. He is highly conflicted in his dual role as an agent and a father and has become a red sand addict - a drug which gives temporary biotic powers which he uses (or at least started using) to try to better understand his daughter. The book shows us a lot of interesting things only briefly mentioned in the game, such as the Quarian lifestyle in the migrant fleet.</p>
<p>Together the books neatly bookend the first game in the series, and as short paperbacks are fairly cheap and quick to read too!</p>
<p>If you'd like to buy either book in the UK, I would be grateful if you could use the links within this article which will help pay for the hosting and bandwidth for this blog.</p>]]>
        
    </content>
</entry>

<entry>
    <title>Transformers: Revenge of the Fallen</title>
    <link rel="alternate" type="text/html" href="http://keithjudge.com/keefsmusings/2009/06/transformers-revenge-of-the-fa.html" />
    <id>tag:keithjudge.com,2009:/keefsmusings//1.115</id>

    <published>2009-06-29T12:41:18Z</published>
    <updated>2009-06-29T13:01:13Z</updated>

    <summary>There will be a few spoilers in this review - you have been warned! I have to say I was more than a little disappointed with this film. The first one was great in my view - they kept the...</summary>
    <author>
        <name>KeefJudge</name>
        <uri>http://keithjudge.com</uri>
    </author>
    
        <category term="Film" scheme="http://www.sixapart.com/ns/types#category" />
    
    
    <content type="html" xml:lang="en" xml:base="http://keithjudge.com/keefsmusings/">
        <![CDATA[<p>There will be a few spoilers in this review - you have been warned!</p>
<p>I have to say I was more than a little disappointed with this film. The first one was great in my view - they kept the cast to just a few of the more famous robots and concentrated the action to a few huge set pieces - it had good pacing and built nicely to the climax. This time however, they appear to have a higher budget and have used it to increase quantity rather than quality.</p>
<p>There are a huge number of CG driven fight scenes in the new film. Watching giant robots beating the crap out of each other is all well and good, but for two solid hours it begins to wear a little thin. Michael Bay appears to have forgotten that you need quiet moments to appreciate noise.<p>
<p>There are also a huge number of new characters introduced - some of whom appear to be completely new (the constantly bickering twins whose names I didn't pick up) and others seem to be put in for fan service (Arcee for example). Most of the new characters are completely throwaway and get only a few lines at the most. The only really good new character is JetFire - the grumpy old transformer who has spent a long time as an aircraft exhibit in the Smithsonian Museum. Hearing a giant robot grumbling away and shouting "Oh bollocks" when he's groggily bumping into things after being awoken was possibly the highlight of the entire film. It's a real shame he's dead by the end of it. Soundwave was also quite cool - updated from a tape recorder to a modern communications satellite.</p>
<p>The Fallen himself seemed a bit of a lame threat really - he barely appeared in the film and was easily dispatched by Optimus Prime at the end. His giant "sun-harvester" weapon was more laughable than threatening.</p>
<p>Also, this film suffers from the same hyperactive camera work of the first. I could understand it a little in the first film, as the fast moving camera meant that motion blur could be liberally applied enabling less detail in the effects to keep the budget down, but this time that excuse doesn't seem to be the case - it's just a poor artistic choice in my opinion.</p>
<p>Still, despite its shortcomings I did enjoy this film and now that the Matrix of Leadership has been introduced we could well be seeing a remake of the 80s cartoon film in a few years time. I think Unicron nomming his way through the galaxy could well be the film that Michael Bay was born to make - so long as he can temper the pacing.</p>]]>
        
    </content>
</entry>

<entry>
    <title>Motherboard Change != Reinstall Windows?</title>
    <link rel="alternate" type="text/html" href="http://keithjudge.com/keefsmusings/2009/05/motherboard-change-reinstall-w.html" />
    <id>tag:keithjudge.com,2009:/keefsmusings//1.114</id>

    <published>2009-05-26T14:19:45Z</published>
    <updated>2009-05-26T14:41:04Z</updated>

    <summary>In my previous post, I explained that I&apos;d decided to dump the NVIDIA nForce 680i chipset due to the frustrating reliability problems I had been experiencing. I purchased a new Intel X48 Express based board instead - a Gigabyte GA-X48-DQ6...</summary>
    <author>
        <name>KeefJudge</name>
        <uri>http://keithjudge.com</uri>
    </author>
    
        <category term="Technology" scheme="http://www.sixapart.com/ns/types#category" />
    
    
    <content type="html" xml:lang="en" xml:base="http://keithjudge.com/keefsmusings/">
        <![CDATA[<p>In my <a href="http://keithjudge.com/keefsmusings/2009/05/nvidia-nforce-680i-sli---fail.html">previous post</a>, I explained that I'd decided to dump the <a href="http://www.nvidia.com/page/nforce_600i.html">NVIDIA nForce 680i</a> chipset due to the frustrating reliability problems I had been experiencing. I purchased a new <a href="http://www.intel.com/products/desktop/chipsets/x48/x48-overview.htm">Intel X48 Express</a> based board instead - a <a href="http://www.gigabyte.com.tw/Products/Motherboard/Products_Overview.aspx?ProductID=2763">Gigabyte GA-X48-DQ6</a> to be precise.</p>
<p>The motherboard change went fairly smoothly. The only hardware issue is that I had to bend one of the aluminium fins on my <a href="http://www.arctic-cooling.com/catalog/product_info.php?cPath=1_42&amp;mID=72&amp;language=en">Arctic Cooling Freezer 7 Pro</a>&nbsp;CPU heatsink/fan in order for it to fit around the motherboard's own heatsink over the chipset. Also, the cooler now slightly blocks one of the memory slots, but this isn't a problem at the moment as I can use slots 2 and 4 and still get dual channel interleaved memory speed. I may have to modify the fan a little more if I add more memory in future, but 4 GiB is plenty for the time being.</p>
<p>After the hardware setup the machine booted fine and I had my <a href="http://www.microsoft.com/windows/windows-7/">Windows 7</a> RC DVD ready to reinstall (backing everything up before starting any of this of course). Just for kicks, I decided to let the existing Windows 7 RC install try to boot to see how far it got. Rather than crash and burn as I expected, it instead booted into VGA mode, spent a minute or so installing drivers, rebooted and then the machine was fully functional (aside from the damned <a href="http://www.abit.com.tw/page/en/multimedia/multimedia_detail.php?pMODEL_NAME=AirPace+Wi-Fi&amp;fMTYPE=AirPace+Family">Abit AirPace</a> wireless card I had to install manually AGAIN - I'll write a how-to post about this in future as quite a few people are arriving at my site via searches for this). I've used the machine in this state for a few days now and it seems to be rock steady.</p>
<p>I don't know quite how Windows 7 managed this trick - Windows Vista 64 certainly didn't do it when I changed motherboards last time (from one 680i to another very similar board) and I had to reinstall from scratch. Is there anything Windows 7 cannot do? Assuming I don't run into problems with this, I'm planning on leaving this install in place until Windows 7 final is released.</p>]]>
        
    </content>
</entry>

</feed>

