<?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:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>The Fifth Wheel of andrewg &#187; Software</title>
	<atom:link href="http://andrewgdotcom.wordpress.com/category/software/feed/" rel="self" type="application/rss+xml" />
	<link>http://andrewgdotcom.wordpress.com</link>
	<description>How many blogs does one man need?</description>
	<lastBuildDate>Wed, 11 Nov 2009 00:27:54 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='andrewgdotcom.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/8aa0e77c5b8dc88c9f65e8f9e2508b53?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>The Fifth Wheel of andrewg &#187; Software</title>
		<link>http://andrewgdotcom.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://andrewgdotcom.wordpress.com/osd.xml" title="The Fifth Wheel of andrewg" />
		<item>
		<title>Insecure by design</title>
		<link>http://andrewgdotcom.wordpress.com/2009/08/13/insecure-by-design/</link>
		<comments>http://andrewgdotcom.wordpress.com/2009/08/13/insecure-by-design/#comments</comments>
		<pubDate>Thu, 13 Aug 2009 17:41:38 +0000</pubDate>
		<dc:creator>andrewgdotcom</dc:creator>
				<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://andrewgdotcom.wordpress.com/?p=62</guid>
		<description><![CDATA[I came across an article today that lifted my spirits:
100% Verifiable Bug-Free Code Is Possible (Dobbs Code)
The executive summary: ok-labs.com and nicta.com.au have developed a microkernel that is provably correct, in defiance of the conventional wisdom that formal methods are only practical for the simplest of projects. While I take my hat off to the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andrewgdotcom.wordpress.com&blog=416750&post=62&subd=andrewgdotcom&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I came across an article today that lifted my spirits:</p>
<p><a href="http://dobbscodetalk.com/index.php?option=com_myblog&amp;show=100-Verifiable-Bug-Free-Code-Is-Possible.html&amp;Itemid=29">100% Verifiable Bug-Free Code Is Possible (Dobbs Code)</a></p>
<p>The executive summary: ok-labs.com and nicta.com.au have developed a microkernel that is <em>provably correct</em>, in defiance of the conventional wisdom that formal methods are only practical for the simplest of projects. While I take my hat off to the developers for their heroic efforts, I firmly believe this is only the first step in a process that will revolutionise the industry. The ultimate goal should be a complete, <em>provably correct</em> computing platform. This will not come about quickly or easily, but there are practical things we can do in the meantime.</p>
<p>Recently, the SANS Institute published a list of the <a title="Top 20 Programming Errors" href="http://www.sans.org/top25errors/">25 most dangerous programming errors</a>. Most of these, e.g. buffer overflows, are rookie mistakes that every apprentice programmer is warned about, yet even with better training and increased collective experience, the population of errors in the wild seems to increase daily. The reason is simple: as the number of programmers grows, and their productivity increases, the number of opportunities for errors to creep in grows faster than the ability of the human mind to be vigilant. Or to paraphrase Murphy&#8217;s Law: if a programmer <em>can</em> make mistakes, he <em>will</em> make mistakes.</p>
<p>The conventional wisdom is to accept that such errors will be made, and be vigilant in testing. But no amount of post-facto investigation can give us 100% confidence that a catastrophic error doesn&#8217;t lurk somewhere in the code. With software increasingly responsible for people&#8217;s lives (fly-by-wire aircraft, nuclear power), the potential consequences of code errors will become unmanageable. Let me demonstrate.</p>
<p>The standard equation of risk analysis is</p>
<pre>risk = probability × severity</pre>
<p>What this means in practice is that in order to maintain risk below a given maximum, any event that has N times more severe consequences (e.g. a plane crash that kills 10 times more people than a car crash) should happen N times less often. But going from 99.999% (five nines) certainty to 99.9999% (six nines) is a lot harder than going from 99% to 99.9%, due to diminishing returns. Throwing man-hours of testing at such a problem does not scale.</p>
<p>Formal methods give us a way around this impasse. But we do not even need the expense of formal testing to eliminate the most common errors &#8211; design choices in our programming languages can do a lot of the work for little cost. Consider the state of the art before the introduction of structured programming in Algol-60. Without nested loops or multi-line conditions, the GOTO statement was king. GOTO-based programming languages are Turing-complete, in that they can perform any conceivable algorithm, but they are <em>too</em> flexible. It is quite possible (and easy) to write nonsense algorithms where loops would start or end inside the ELSE block of an IF statement, for example*. No modern programmer would contemplate such absurdities &#8211; there was a very good reason why GOTO statements were banished from polite society. And yet programming languages without GOTO statements are still Turing-complete.</p>
<p>What the above history lesson shows us is that, given sufficiently intelligent design paradigms, we can remove once-thought-necessary features from our lexicon <em>without sacrificing Turing completeness</em>, and thereby eliminate <em>entire classes</em> of potential programming errors.**</p>
<p>Now consider buffer overflow &#8211; this can be generalised to all kinds of array bounds violation; a buffer being merely a 1D array. The array index is constrained between two values, typically 0 and some integer N. If the algorithm attempts to access the array with an index outside this range, we have an array bounds violation. If this is not tested for explicitly by the algorithm (easy for a stressed programmer to forget) or implicitly in the execution environment (inefficient and not always enabled) undesirable behaviour can easily result. We could laboriously check every subscription operation in our algorithm to ensure that sane values were being passed at all times; or we could change our programming paradigm so that it is impossible to write an invalid subscription operation.</p>
<p>This is not as outlandish as it sounds &#8211; we already have a commonly-used language feature that does most of the work for us: FOREACH. A FOREACH loop iterates over the elements of an array, and automatically stops when there are no more elements. We cannot pass an invalid value into the array subscription operation, because there is no such operation; subscription is handled implicitly by the FOREACH. If all buffer operations used FOREACH statements, there would never be an overflow.</p>
<p>Now say that at some point in the near future we find similar, <em>implicit</em>, methods for array subscription that cover <em>all</em> sensible use cases (in the same way we found alternatives for all sensible use cases of GOTO). We could then eliminate the explicit array subscription operation from our lexicon, and buffer overflows would be a historical curiosity.</p>
<p>I think such a development is within reach. Like many programming geeks I have been working, on and off, for some time on a pet language project which, amongst other things, features strict limitations on the array subscription operator, as well as a plethora of implicit alternatives to handle common use cases. I haven&#8217;t yet been able to eliminate subscription completely, but all ideas would be gratefully received.</p>
<p>* This is a real example from personal experience, which shockingly did work but was (unsuprisingly) impossible to understand.<br />
** Of course, if the language is still Turing-complete, it will therefore still be possible to make the same error; but you will have to go out of your way to deliberately do so.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/andrewgdotcom.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/andrewgdotcom.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/andrewgdotcom.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/andrewgdotcom.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/andrewgdotcom.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/andrewgdotcom.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/andrewgdotcom.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/andrewgdotcom.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/andrewgdotcom.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/andrewgdotcom.wordpress.com/62/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andrewgdotcom.wordpress.com&blog=416750&post=62&subd=andrewgdotcom&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://andrewgdotcom.wordpress.com/2009/08/13/insecure-by-design/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d118c29950aad6293423a630477d2db7?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">andrewgdotcom</media:title>
		</media:content>
	</item>
		<item>
		<title>Vuze+feedmytorrents.com, a match made in&#8230;?</title>
		<link>http://andrewgdotcom.wordpress.com/2009/02/07/vuzefeedmytorrentscom-a-match-made-in/</link>
		<comments>http://andrewgdotcom.wordpress.com/2009/02/07/vuzefeedmytorrentscom-a-match-made-in/#comments</comments>
		<pubDate>Sat, 07 Feb 2009 01:52:25 +0000</pubDate>
		<dc:creator>andrewgdotcom</dc:creator>
				<category><![CDATA[A/V]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[feedmytorrents]]></category>
		<category><![CDATA[rss]]></category>
		<category><![CDATA[vuze]]></category>

		<guid isPermaLink="false">http://andrewgdotcom.wordpress.com/?p=38</guid>
		<description><![CDATA[Despite having played with Democracy Miro, I&#8217;m still rather attached to Azureus Vuze for one or two of its useful features*. 
Being an addict of US scifi TV, I was excited to discover feedmytorrents.com, which provides vodcast RSS feeds for most current popular US shows, such as my current favourites BSG and Lost. The killer [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andrewgdotcom.wordpress.com&blog=416750&post=38&subd=andrewgdotcom&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Despite having played with <del datetime="00">Democracy</del> <a href="http://getmiro.com">Miro</a>, I&#8217;m still rather attached to <del datetime="00">Azureus</del> <a href="http://vuze.com">Vuze</a> for one or two of its useful features*. </p>
<p>Being an addict of US scifi TV, I was excited to discover <a href="http://feedmytorrents.com">feedmytorrents.com</a>, which provides vodcast RSS feeds for most current popular US shows, such as my current favourites BSG and Lost. The killer advantage over other RSS sources (such as the excellent EZTV) is that one can subscribe to a particular feed in Miro or Vuze and get precisely one copy of every episode of that show. No more remembering to search mininova to see if the new episode was up yet! This was exactly what I had been waiting for since discovering <del datetime="00">Democracy</del> Miro&#8217;s channels system.**</p>
<p>Of course, it didn&#8217;t take long for the system to break. Vuze&#8217;s RSS FeedScanner plugin would display a new episode in the list but not start downloading, instead giving a constantly shifting error message: &#8220;Init&#8221; &gt; &#8220;Scanning 1/64&#8230;&#8221; &gt;&gt;&gt; &#8220;Scanning 39/64&#8230;&#8221; &gt; &#8220;Init&#8221; (it never seemed to get past 39). This would eventually time out saying &#8220;No data&#8221;. This affliction would only affect those particular episodes that feedmytorrents had sourced from mininova, but not those from the pirate bay (easily distinguished by the torrent URL). There was nothing wrong with the torrent file itself, as I could right-click &gt; copy link URL and paste it into firefox, which would happily download the torrent and open it in Vuze, the default application. But of course this completely defeated the seamless experience.</p>
<p>I searched on the Vuze forums and found several similar problems reported but few solutions. One suggestion was that the setting &#8220;Use URL as referer&#8221; might need to be turned off. Sure enough, this worked. For whatever reason, it seems that mininova doesn&#8217;t like the HTTP referer field to be set to the &#8220;URL&#8221;, whichever URL that may be (itself?). Turning this option off (thus sending no referer) didn&#8217;t seem to break piratebay torrents (and why should it: this is the behaviour when one types in a URL by hand), so I disabled it on all my feeds. This makes me ask two questions. 1: why isn&#8217;t this option off by default and 2: what the hell does the HTTP referer field have to do with it anyway?</p>
<p>* coughcoughtorcoughcough! Interestingly, the latest version (4.1) of Vuze has reskinned itself to look almost exactly like Miro&#8230;<br />
** sorry guys, I don&#8217;t watch Rocketboom&#8230;</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/andrewgdotcom.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/andrewgdotcom.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/andrewgdotcom.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/andrewgdotcom.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/andrewgdotcom.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/andrewgdotcom.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/andrewgdotcom.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/andrewgdotcom.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/andrewgdotcom.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/andrewgdotcom.wordpress.com/38/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andrewgdotcom.wordpress.com&blog=416750&post=38&subd=andrewgdotcom&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://andrewgdotcom.wordpress.com/2009/02/07/vuzefeedmytorrentscom-a-match-made-in/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d118c29950aad6293423a630477d2db7?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">andrewgdotcom</media:title>
		</media:content>
	</item>
		<item>
		<title>The history meme</title>
		<link>http://andrewgdotcom.wordpress.com/2008/04/16/the-history-meme/</link>
		<comments>http://andrewgdotcom.wordpress.com/2008/04/16/the-history-meme/#comments</comments>
		<pubDate>Wed, 16 Apr 2008 13:26:42 +0000</pubDate>
		<dc:creator>andrewgdotcom</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://andrewgdotcom.wordpress.com/?p=31</guid>
		<description><![CDATA[Spreading the meme&#8230;
serenity:~ andrewg$ history &#124; awk &#8216;{a[$2]++} END {for(i in a)print a[i] &#8221; &#8221; i}&#8217; &#124; sort -rn &#124; head -10
108 telnet
63 rscreen
43 ping
24 sudo
24 ssh
20 host
16 scp
16 more
14 ls
13 xdvi
Hm. I seem to be using the command line mainly as a gateway into remote systems &#8211; which reflects my average working day. The [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andrewgdotcom.wordpress.com&blog=416750&post=31&subd=andrewgdotcom&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Spreading the <a title="The history meme (Mattj)" href="http://cimota.com/blog/2008/04/16/command-line-history-meme/" target="_blank">meme</a>&#8230;</p>
<blockquote><p>serenity:~ andrewg$ history | awk &#8216;{a[$2]++} END {for(i in a)print a[i] &#8221; &#8221; i}&#8217; | sort -rn | head -10<br />
108 telnet<br />
63 rscreen<br />
43 ping<br />
24 sudo<br />
24 ssh<br />
20 host<br />
16 scp<br />
16 more<br />
14 ls<br />
13 xdvi</p></blockquote>
<p>Hm. I seem to be using the command line mainly as a gateway into remote systems &#8211; which reflects my average working day. The stray &#8216;xdvi&#8217; is due to my recent heavy use of TextMate  to write a paper in LaTeX. Not sure why I&#8217;ve been using sudo so much on my Mac though.</p>
<p>Similarly, on my work Linux laptop:</p>
<blockquote><p>andgal@nbgal185:~$ history | awk &#8216;{a[$2]++} END {for(i in a)print a[i] &#8221; &#8221; i}&#8217; | sort -rn | head -10<br />
68 rscreen<br />
52 ping<br />
45 host<br />
36 sudo<br />
35 rdesktop<br />
32 xrandr<br />
21 startmenu<br />
20 ssh<br />
18 ifconfig<br />
15 telnet</p></blockquote>
<p>rscreen is merely a wrapper for ssh:</p>
<blockquote><p>function rscreen() { /usr/bin/ssh -t $1 &#8217;screen -dr || /usr/bin/screen || /bin/bash&#8217;; }</p></blockquote>
<p>and startmenu is a cool but dodgy hack to get into my windows virtual machine:</p>
<blockquote><p>alias startmenu=&#8217;nohup rdesktop -A -s &#8220;c:\program files\seamlessrdp\seamlessrdpshell.exe explorer.exe&#8221; 192.168.185.128 -u andgal -p xxxxxxxx&amp;</p></blockquote>
<p>xrandr reflects the fact that I have to configure my dual-screen setup by hand after each boot under Ubuntu 7.10, as the GUI configurator just Doesn&#8217;t Work. I had to test this many many times. Apparently the latest Ubuntu beta fixes most of these problems.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/andrewgdotcom.wordpress.com/31/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/andrewgdotcom.wordpress.com/31/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/andrewgdotcom.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/andrewgdotcom.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/andrewgdotcom.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/andrewgdotcom.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/andrewgdotcom.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/andrewgdotcom.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/andrewgdotcom.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/andrewgdotcom.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/andrewgdotcom.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/andrewgdotcom.wordpress.com/31/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andrewgdotcom.wordpress.com&blog=416750&post=31&subd=andrewgdotcom&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://andrewgdotcom.wordpress.com/2008/04/16/the-history-meme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d118c29950aad6293423a630477d2db7?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">andrewgdotcom</media:title>
		</media:content>
	</item>
		<item>
		<title>Widefox</title>
		<link>http://andrewgdotcom.wordpress.com/2008/04/01/widefox/</link>
		<comments>http://andrewgdotcom.wordpress.com/2008/04/01/widefox/#comments</comments>
		<pubDate>Tue, 01 Apr 2008 09:41:38 +0000</pubDate>
		<dc:creator>andrewgdotcom</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[google maps]]></category>
		<category><![CDATA[mozilla]]></category>
		<category><![CDATA[tabs]]></category>

		<guid isPermaLink="false">http://andrewgdotcom.wordpress.com/?p=30</guid>
		<description><![CDATA[I&#8217;m a Firefox user, but I used to like Opera back in the days before Firefox was available. I changed over once I discovered TabMixPlus and All-In-One Gestures, which collectively replicated most of Opera&#8217;s cool features &#8211; all except side-docked tabs, which doesn&#8217;t seem to be available in Opera any more either.
There are far too [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andrewgdotcom.wordpress.com&blog=416750&post=30&subd=andrewgdotcom&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I&#8217;m a Firefox user, but I used to like Opera back in the days before Firefox was available. I changed over once I discovered <a href="https://addons.mozilla.org/firefox/addon/1122" title="Tab Mix Plus">TabMixPlus</a> and <a href="https://addons.mozilla.org/en-US/firefox/addon/12" title="All-In-One Gestures">All-In-One Gestures</a>, which collectively replicated most of Opera&#8217;s cool features &#8211; all except side-docked tabs, which doesn&#8217;t seem to be available in Opera any more either.</p>
<p>There are far too many things which like to dock with the top or bottom of my screen. Given that I use a Mac, I already have an extra menu bar to start with anyway. Computer screens are increasingly in widescreen aspect ratio, but documents read best in portrait mode. This is why most blog software (including this one) puts links and metadata at the side of the page rather than at the top, but there are still webapps out there (Google Maps being one of the worst offenders) that have a huge, wasteful banner across the top of the page.</p>
<p>So imagine my joy today when I found this Firefox chrome CSS hack:</p>
<p><a href="http://jrweare.googlepages.com/browser2.0">Johnathon Weare &#8211; Widefox</a></p>
<p>The dropdown menu placement doesn&#8217;t match the tab bar location, but that&#8217;s a minor problem. I can now see Google Maps in a slightly less letterboxy format. Woohoo.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/andrewgdotcom.wordpress.com/30/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/andrewgdotcom.wordpress.com/30/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/andrewgdotcom.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/andrewgdotcom.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/andrewgdotcom.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/andrewgdotcom.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/andrewgdotcom.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/andrewgdotcom.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/andrewgdotcom.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/andrewgdotcom.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/andrewgdotcom.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/andrewgdotcom.wordpress.com/30/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andrewgdotcom.wordpress.com&blog=416750&post=30&subd=andrewgdotcom&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://andrewgdotcom.wordpress.com/2008/04/01/widefox/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d118c29950aad6293423a630477d2db7?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">andrewgdotcom</media:title>
		</media:content>
	</item>
		<item>
		<title>Brain dead Windows error messages, #244837</title>
		<link>http://andrewgdotcom.wordpress.com/2007/09/04/brain-dead-windows-error-messages-244837/</link>
		<comments>http://andrewgdotcom.wordpress.com/2007/09/04/brain-dead-windows-error-messages-244837/#comments</comments>
		<pubDate>Tue, 04 Sep 2007 11:15:41 +0000</pubDate>
		<dc:creator>andrewgdotcom</dc:creator>
				<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://andrewgdotcom.wordpress.com/2007/09/04/brain-dead-windows-error-messages-244837/</guid>
		<description><![CDATA[Error changing computer name to &#8220;NBGAL159&#8243;: the domain was joined under the old computer name &#8220;NBGAL159&#8243;. Account already exists.
&#60;rabc&#62;Wha&#8217;?&#60;/rabc&#62;
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andrewgdotcom.wordpress.com&blog=416750&post=17&subd=andrewgdotcom&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Error changing computer name to &#8220;NBGAL159&#8243;: the domain was joined under the old computer name &#8220;NBGAL159&#8243;. Account already exists.</p>
<p>&lt;rabc&gt;Wha&#8217;?&lt;/rabc&gt;</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/andrewgdotcom.wordpress.com/17/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/andrewgdotcom.wordpress.com/17/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/andrewgdotcom.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/andrewgdotcom.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/andrewgdotcom.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/andrewgdotcom.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/andrewgdotcom.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/andrewgdotcom.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/andrewgdotcom.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/andrewgdotcom.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/andrewgdotcom.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/andrewgdotcom.wordpress.com/17/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andrewgdotcom.wordpress.com&blog=416750&post=17&subd=andrewgdotcom&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://andrewgdotcom.wordpress.com/2007/09/04/brain-dead-windows-error-messages-244837/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d118c29950aad6293423a630477d2db7?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">andrewgdotcom</media:title>
		</media:content>
	</item>
		<item>
		<title>Automail</title>
		<link>http://andrewgdotcom.wordpress.com/2007/08/24/automail/</link>
		<comments>http://andrewgdotcom.wordpress.com/2007/08/24/automail/#comments</comments>
		<pubDate>Fri, 24 Aug 2007 00:40:51 +0000</pubDate>
		<dc:creator>andrewgdotcom</dc:creator>
				<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://andrewgdotcom.wordpress.com/2007/08/24/automail/</guid>
		<description><![CDATA[I finally got spam filtering working again on my personal mail server. This was after I&#8217;d (re)discovered that I didn&#8217;t have a backup of my per-user spam filtering control program (see this post). Luckily I still have a working account on the machine that I&#8217;d initially developed the system for.
It&#8217;s a little utility called automail, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andrewgdotcom.wordpress.com&blog=416750&post=14&subd=andrewgdotcom&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I finally got spam filtering working again on my personal mail server. This was after I&#8217;d (re)discovered that I didn&#8217;t have a backup of my per-user spam filtering control program (see <a href="http://andrewgdotcom.wordpress.com/2007/03/03/back-to-normal-ish/">this post</a>). Luckily I still have a working account on the machine that I&#8217;d initially developed the system for.</p>
<p>It&#8217;s a little utility called automail, which I wrote so that users who didn&#8217;t have shell access on a Linux mail server could still make basic changes to their procmail configuration. You can find information (and downloads) for it <a href="http://web.andrewg.com/index.php/Automail">here</a>.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/andrewgdotcom.wordpress.com/14/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/andrewgdotcom.wordpress.com/14/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/andrewgdotcom.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/andrewgdotcom.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/andrewgdotcom.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/andrewgdotcom.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/andrewgdotcom.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/andrewgdotcom.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/andrewgdotcom.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/andrewgdotcom.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/andrewgdotcom.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/andrewgdotcom.wordpress.com/14/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andrewgdotcom.wordpress.com&blog=416750&post=14&subd=andrewgdotcom&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://andrewgdotcom.wordpress.com/2007/08/24/automail/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d118c29950aad6293423a630477d2db7?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">andrewgdotcom</media:title>
		</media:content>
	</item>
		<item>
		<title>Sick of it all</title>
		<link>http://andrewgdotcom.wordpress.com/2007/04/04/sick-of-it-all/</link>
		<comments>http://andrewgdotcom.wordpress.com/2007/04/04/sick-of-it-all/#comments</comments>
		<pubDate>Wed, 04 Apr 2007 16:06:11 +0000</pubDate>
		<dc:creator>andrewgdotcom</dc:creator>
				<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://andrewgdotcom.wordpress.com/2007/04/04/sick-of-it-all/</guid>
		<description><![CDATA[I wrote a post bitching about gld, and then my wordpress login timed out and I lost it. I then wrote a post bitching about wordpress, but wordpress then said did I really want to edit the post. Thinking that I might have a chance to salvage the original post, I said no.
Now I&#8217;ve lost [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andrewgdotcom.wordpress.com&blog=416750&post=10&subd=andrewgdotcom&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I wrote a post bitching about gld, and then my wordpress login timed out and I lost it. I then wrote a post bitching about wordpress, but wordpress then said did I really want to edit the post. Thinking that I might have a chance to salvage the original post, I said no.</p>
<p>Now I&#8217;ve lost the text of both posts. (*censored*)</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/andrewgdotcom.wordpress.com/10/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/andrewgdotcom.wordpress.com/10/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/andrewgdotcom.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/andrewgdotcom.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/andrewgdotcom.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/andrewgdotcom.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/andrewgdotcom.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/andrewgdotcom.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/andrewgdotcom.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/andrewgdotcom.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/andrewgdotcom.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/andrewgdotcom.wordpress.com/10/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andrewgdotcom.wordpress.com&blog=416750&post=10&subd=andrewgdotcom&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://andrewgdotcom.wordpress.com/2007/04/04/sick-of-it-all/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d118c29950aad6293423a630477d2db7?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">andrewgdotcom</media:title>
		</media:content>
	</item>
		<item>
		<title>Skype 2.5 for Mac</title>
		<link>http://andrewgdotcom.wordpress.com/2007/02/02/skype-25-for-mac/</link>
		<comments>http://andrewgdotcom.wordpress.com/2007/02/02/skype-25-for-mac/#comments</comments>
		<pubDate>Fri, 02 Feb 2007 10:37:30 +0000</pubDate>
		<dc:creator>andrewgdotcom</dc:creator>
				<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://andrewgdotcom.wordpress.com/2007/02/02/skype-25-for-mac/</guid>
		<description><![CDATA[I first got into Skype properly when working at Banjax, where the CEO was a big fan and encouraged its use. If anything, my current office is even more dependent on the little program from Estonia. So I have been impatiently waiting for the release of Skype 2.5 for Mac, in order to get some [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andrewgdotcom.wordpress.com&blog=416750&post=5&subd=andrewgdotcom&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I first got into Skype properly when working at <a href="http://banjax.com/" title="Banjax Studios Ltd">Banjax</a>, where the CEO was a big fan and encouraged its use. If anything, my current office is even more dependent on the little program from Estonia. So I have been impatiently waiting for the release of Skype 2.5 for Mac, in order to get some of the features currently only available in the Windows client.</p>
<p>Unfortunately, it crashed on me several times in succession on trying to start. I was just about to resort to downgrading when I tried killing the chat window as soon as it appeared, which seemed to do the trick. Not sure why restoring a chat window caused it to barf, but it seems reasonably stable now.</p>
<p>But annoyingly, the feature that I was really looking forward to &#8211; contact groups &#8211; is still missing. Instead I am treated to a work colleague&#8217;s birthday reminder. Come on guys, how hard can it be?</p>
<p>Of course, I should be thankful. Linux users are still stuck on version 1.3.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/andrewgdotcom.wordpress.com/5/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/andrewgdotcom.wordpress.com/5/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/andrewgdotcom.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/andrewgdotcom.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/andrewgdotcom.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/andrewgdotcom.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/andrewgdotcom.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/andrewgdotcom.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/andrewgdotcom.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/andrewgdotcom.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/andrewgdotcom.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/andrewgdotcom.wordpress.com/5/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andrewgdotcom.wordpress.com&blog=416750&post=5&subd=andrewgdotcom&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://andrewgdotcom.wordpress.com/2007/02/02/skype-25-for-mac/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d118c29950aad6293423a630477d2db7?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">andrewgdotcom</media:title>
		</media:content>
	</item>
	</channel>
</rss>