<?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/"
	>

<channel>
	<title>Rusty Badger</title>
	<atom:link href="http://www.rustybadger.co.uk/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.rustybadger.co.uk</link>
	<description>Sometimes It's Just Not Worth Gnawing Through The Straps!</description>
	<lastBuildDate>Thu, 04 Jun 2009 06:36:28 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>What Does Oracle Have In Store For MySQL?</title>
		<link>http://www.rustybadger.co.uk/2009/06/04/what-does-oracle-have-in-store-for-mysql/</link>
		<comments>http://www.rustybadger.co.uk/2009/06/04/what-does-oracle-have-in-store-for-mysql/#comments</comments>
		<pubDate>Thu, 04 Jun 2009 06:33:16 +0000</pubDate>
		<dc:creator>capcomms</dc:creator>
				<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://www.rustybadger.co.uk/?p=221</guid>
		<description><![CDATA[As a database geek, I&#8217;ve been watching the Oracle/Sun deal with interest, as nothing concrete has been stated about MySQL&#8217;s future in this converged marketplace.
I&#8217;ve discussed this merger and what it means to MySQL with various other developers and technology consultants and there is no majority train of thought here &#8211; everyone seems to have [...]]]></description>
			<content:encoded><![CDATA[<p>As a database geek, I&#8217;ve been watching the Oracle/Sun deal with interest, as nothing concrete has been stated about MySQL&#8217;s future in this converged marketplace.</p>
<p>I&#8217;ve discussed this merger and what it means to MySQL with various other developers and technology consultants and there is no majority train of thought here &#8211; everyone seems to have a different opinion, but they all seems to be concerned about MySQL&#8217;s fate.</p>
<p>A recent story about Oracle Chief Larry Ellinson&#8217;s speech at JavaOne, quotes him as saying: &#8220;We encourage the OpenOffice group to quickly build their version of a spread sheet or a word app using JavaFX&#8221;.  (<a href="http://www.theregister.co.uk/2009/06/04/ellison_javafx_commitment/" target="_blank"><em><strong>Read more here</strong></em></a>)  As far as I can see, this doesn&#8217;t bode well for MySQL.</p>
<p>I can see MySQL going one of three ways:</p>
<p>1) It gets renamed Oracle Lite, or some such nonsense, gets properly supported, but treated like &#8216;Big, proper&#8217; Oracle&#8217;s slightly sappy cousin.</p>
<p>2a) In a fit of community spirit, Oracle either allow MySQL to flourish as an open source product, whilst retaining their control&#8230;<br />
2b) &#8230;or is split out as a separate entity and remains open source &#8211; by far the best result for the MySQL community.</p>
<p>3) Remember the Borland/Ashton Tate deal?  MySQL could share dBase&#8217;s fate and fall into the barren ground by the wayside.  I don&#8217;t think anyone wants this, apart from Oracle&#8217;s salesforce maybe.</p>
<p>Do you have an opinion on this deal?  Let me know &#8211; I&#8217;m interested to see what folks think.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rustybadger.co.uk/2009/06/04/what-does-oracle-have-in-store-for-mysql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Custom Tags are your friend &#8230; sometimes.</title>
		<link>http://www.rustybadger.co.uk/2009/02/23/custom-tags-are-your-friend-sometimes/</link>
		<comments>http://www.rustybadger.co.uk/2009/02/23/custom-tags-are-your-friend-sometimes/#comments</comments>
		<pubDate>Mon, 23 Feb 2009 12:43:24 +0000</pubDate>
		<dc:creator>capcomms</dc:creator>
				<category><![CDATA[ColdFusion]]></category>
		<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://www.rustybadger.co.uk/?p=219</guid>
		<description><![CDATA[Actually there&#8217;s nothing wrong with custom tags &#8211; I&#8217;m quite a fan and have used them quite a bit during my time as a CF developer.  The problem in this particular instance is the time it&#8217;s taking to implement them.
I&#8217;m working on some code that determines the IP address of a given piece of equipment.  [...]]]></description>
			<content:encoded><![CDATA[<p>Actually there&#8217;s nothing wrong with custom tags &#8211; I&#8217;m quite a fan and have used them quite a bit during my time as a CF developer.  The problem in this particular instance is the time it&#8217;s taking to implement them.</p>
<p>I&#8217;m working on some code that determines the IP address of a given piece of equipment.  This is currently driven by a series of queries, several arrays to contain the values and code like &#8216;<strong>#ip_inside[4]#</strong>&#8216; in the CFM pages, which are pretty cryptic and not easy to read.</p>
<p>We recently updated another area of the application to get the IP addresses in a different way.  This change reduced the run time for a specific report from several hours to 3.5 minutes (so I&#8217;m quite pleased about that &#8211; especially as this was on my first day!  Great first impression!).</p>
<p>My task now is to update these diagram pages so they use the same method to determine the IP addresses &#8211; hence the custom tag.</p>
<p>This CT takes 4 parameters, like so: <strong>&lt;cf_getIPAddress subnetcode=&#8221;encr&#8221; vlan=&#8221;1&#8243; compsub=&#8221;1&#8243; comptype=&#8221;5&#8243;&gt;</strong>.  Using these 4 parameters, the CT will return the IP address of the component, along with any component-specific labels (such as a prefix of &#8216;Virtual&#8217; for certain components).</p>
<p>The problem is that I have to put this code snippet into 30 different files, with a total number of 1,116 insertions!  That in itself is a lot of work, but when you consider that for each of these I also have to update a DB table (as one of the parameters isn&#8217;t currently recorded), insert the CT code, check and update the four parameters, save, upload and test, the task grows exponentially.</p>
<p>It&#8217;s taking about 2 minutes per insertion, so by my reckoning, it&#8217;s going to take about 37 hours to complete what my boss and I both thought was going to be a fairly simple task.</p>
<p>I wonder how long it will actually take?  I&#8217;ll report back when I know.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rustybadger.co.uk/2009/02/23/custom-tags-are-your-friend-sometimes/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Becoming A Oracle DBA</title>
		<link>http://www.rustybadger.co.uk/2009/02/10/becoming-a-oracle-dba/</link>
		<comments>http://www.rustybadger.co.uk/2009/02/10/becoming-a-oracle-dba/#comments</comments>
		<pubDate>Tue, 10 Feb 2009 12:02:35 +0000</pubDate>
		<dc:creator>capcomms</dc:creator>
				<category><![CDATA[ColdFusion]]></category>
		<category><![CDATA[Contracting]]></category>
		<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://www.rustybadger.co.uk/?p=217</guid>
		<description><![CDATA[In my latest role, as well as CF development, I have been asked to adopt more of a DBA role, as there is only one other guy here, who&#8217;s done everything for several years (so he probably has a few bad habits that I&#8217;ll need to deal with &#8211; we all do, don&#8217;t we?) and [...]]]></description>
			<content:encoded><![CDATA[<p>In my latest role, as well as CF development, I have been asked to adopt more of a DBA role, as there is only one other guy here, who&#8217;s done everything for several years (so he probably has a few bad habits that I&#8217;ll need to deal with &#8211; we all do, don&#8217;t we?) and he&#8217;ll soon be moving to another project for a while, leaving me holding the baby, so to speak.</p>
<p>So, while I have almost 20 years of experience with various DBMS&#8217;, I have very little experience with the client&#8217;s choice of database engine, Oracle.</p>
<p>Some history: I started my development career (back in the stone age that was the mid 80&#8217;s) building very complex spreadsheets in Lotus 123 for a merchant bank, but soon convinced them to consider &#8216;proper&#8217; databases, as Lotus wasn&#8217;t up to the job of handling such large datasets.   The demo I set up to illustrate the differences literally shocked a few folks there &#8211; they had no idea you could do this kind of processing outside of a spreadsheet!</p>
<p>So we moved to dBase, then Paradox (which I continued to develop with for quite a few years), then Turbo Pascal and Visual Basic.</p>
<p>Fast forward to 1995 and I&#8217;d started developing pure HTML web pages, quickly employing VB again to create static HTML from form inputs in a VB app &#8211; elementary stuff now, I know, but a lot of folks I worked with at the time thought it was revolutionary!   B-&gt;</p>
<p>In the meantime I had to develop for MS Access and Lotus Notes &#8211; these can hardly be filed under databases IMHO, but this was what I had to deal with.</p>
<p>By &#8216;97 I&#8217;d discovered CF and I honestly haven&#8217;t looked back.  Of course, using CF pretty much requires a database to make it dance and sing, so MS Access soon gave way to MS SQL Server and eventually MySQL.   On occasion I&#8217;ve needed to interface with Ingres and a couple of other less mainstream DBMS&#8217;.</p>
<p>My Oracle experience has been restricted to one short term contract for a particular client, where there was a DBA &#8211; one of the old school, who wouldn&#8217;t let the &#8216;pleb&#8217; developers create anything in &#8216;his&#8217; database and had to review and manually create everything himself from a command line &#8211; I&#8217;m sure you&#8217;ve all come across the type.</p>
<p>So, on the desk next to me are several books on Oracle &#8211; two on the DBA aspect, two on the SQL syntax etc.  I&#8217;ve spent the past few weeks learning Oracle in some depth and I&#8217;m both impressed and horrified by some of the things I&#8217;ve found.  I&#8217;m impressed that Oracle has been built to be such a resilient, hard-working beast, but am horrified by how cryptic and complex (and sometimes damnably infuriating!) even small things can be.</p>
<p>I don&#8217;t expect to become an Oracle DBA overnight, but I expect it to start becoming easier, now I have my reference library here and now I&#8217;ve been digging under the hood a bit.  I&#8217;m sure it will be a useful skill in the long term, even if I don&#8217;t get a chance to use Oracle again, purely from the discipline I&#8217;ll need to deal with this beast and the need to learn how to do things &#8216;properly&#8217;.</p>
<p>On a related note, here&#8217;s a great blog post from Ben Forta on the subject of <a href="http://www.forta.com/blog/index.cfm/2006/12/1/ColdFusion-Is-Not-A-DBMS">letting the database do what it&#8217;s intended for</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rustybadger.co.uk/2009/02/10/becoming-a-oracle-dba/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>My New Favourite YouTube Video</title>
		<link>http://www.rustybadger.co.uk/2009/01/24/my-new-favourite-youtube-video/</link>
		<comments>http://www.rustybadger.co.uk/2009/01/24/my-new-favourite-youtube-video/#comments</comments>
		<pubDate>Sat, 24 Jan 2009 18:52:03 +0000</pubDate>
		<dc:creator>capcomms</dc:creator>
				<category><![CDATA[Music]]></category>

		<guid isPermaLink="false">http://www.rustybadger.co.uk/?p=208</guid>
		<description><![CDATA[This is a classic!

I knew all the answers of course (ok, I got one wrong &#8211; I thought Hugh Padgham produced Trick Of The Tail B-]]></description>
			<content:encoded><![CDATA[<p>This is a classic!</p>
<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/4mISGb_Hmn0&#038;hl=en&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/4mISGb_Hmn0&#038;hl=en&#038;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></p>
<p>I knew all the answers of course (ok, I got one wrong &#8211; I thought Hugh Padgham produced Trick Of The Tail B-<).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rustybadger.co.uk/2009/01/24/my-new-favourite-youtube-video/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Complaint To The BBC</title>
		<link>http://www.rustybadger.co.uk/2009/01/21/complaint-to-the-bbc/</link>
		<comments>http://www.rustybadger.co.uk/2009/01/21/complaint-to-the-bbc/#comments</comments>
		<pubDate>Wed, 21 Jan 2009 09:50:47 +0000</pubDate>
		<dc:creator>capcomms</dc:creator>
				<category><![CDATA[Music]]></category>

		<guid isPermaLink="false">http://www.rustybadger.co.uk/?p=200</guid>
		<description><![CDATA[I&#8217;ve just sent a complaint to the BBC, via their &#8216;Have A Say&#8216; feature, about their recent season of programmes on Prog Rock.  Here is the message I sent:

I was pleased to see that progressive rock was finally getting some air time, but disappointed that it was limited to the usual, sneering look back, implying [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve just sent a complaint to the BBC, via their &#8216;<strong><a href="http://www.bbc.co.uk/bbcfour/yoursay/" target="_blank">Have A Say</a></strong>&#8216; feature, about their recent season of programmes on Prog Rock.  Here is the message I sent:<br />
<hr />
<p style="padding-left: 30px;">I was pleased to see that progressive rock was finally getting some air time, but disappointed that it was limited to the usual, sneering look back, implying that Prog died out in 1977 and hadn&#8217;t been heard of since.</p>
<p style="padding-left: 30px;">There was no mention of the early/mid &#8217;80s &#8216;Neo-Prog&#8217; revival, which gave us bands like Marillion, IQ etc. and no mention of the current &#8216;Third Wave&#8217; of Prog, which has been going on since the mid &#8217;90s, with such bands as The Tangent, The Flower Kings, Spock&#8217;s Beard, Riverside and Porcupine Tree.</p>
<p style="padding-left: 30px;">The current revival is a vibrant, exciting thing and it didn&#8217;t even get a mention.  I was very disappointed that the BBC fumbled the ball so badly on this occasion.</p>
<p style="padding-left: 30px;">Why was there no program on these current bands?  It would have been an ideal opportunity for the BBC to give some publicity to what is still seen as an underground musical genre.  Think of all the original fans of Prog who may have watched these programs, yet haven&#8217;t heard any modern Prog &#8211; this would have been an ideal opportunity to let people know that Prog isn&#8217;t dead.</p>
<p style="padding-left: 30px;">Gone are the excesses of the mid &#8217;70s &#8211; the focus now is virtuoso musicianship and making good music.  Some of the bands listed above have charted in the album charts in many European countries (Holland and Germany aren&#8217;t as elitist as the UK &#8211; Prog is quite popular in these countries) &#8211; Porcupine Tree even charted in the UK album charts last year, yet still no coverage.</p>
<p style="padding-left: 30px;">I would like to request a follow-up program on modern Prog, but I doubt you&#8217;ll take much notice of this comment as it&#8217;s much more entertaining to point a the dinosaurs and snigger.</p>
<hr />
<p>I don&#8217;t expect anything back from them, but I feel better having let that rant out.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rustybadger.co.uk/2009/01/21/complaint-to-the-bbc/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The Downside Of Contracting</title>
		<link>http://www.rustybadger.co.uk/2009/01/09/the-downside-of-contracting/</link>
		<comments>http://www.rustybadger.co.uk/2009/01/09/the-downside-of-contracting/#comments</comments>
		<pubDate>Fri, 09 Jan 2009 09:02:06 +0000</pubDate>
		<dc:creator>capcomms</dc:creator>
				<category><![CDATA[Contracting]]></category>
		<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://www.rustybadger.co.uk/?p=182</guid>
		<description><![CDATA[As I sit here in fog-bound, icy Brussels, looking to tomorrow, the last day on my current contract and towards Monday, when I start my next one (also in Brussels), it is with a genuine sadness that again I have to say goodbye to a group of people I&#8217;ve enjoyed working with for the past [...]]]></description>
			<content:encoded><![CDATA[<p>As I sit here in fog-bound, icy Brussels, looking to tomorrow, the last day on my current contract and towards Monday, when I start my next one (also in Brussels), it is with a genuine sadness that again I have to say goodbye to a group of people I&#8217;ve enjoyed working with for the past few months.</p>
<p><img class="alignnone size-full wp-image-197" title="View of a frozen lake from my office window" src="http://www.rustybadger.co.uk/wp-content/uploads/2009/01/viewfromoffice.jpg" alt="viewfromoffice" width="450" height="338" /></p>
<p>This is always the part of contracting that I don&#8217;t enjoy.</p>
<p>My time at Swift is coming to an end, so it&#8217;s time to say &#8216;So long and thanks for all the fish!&#8217; to <strong>Milan, Laurent, Danielle, Marc, Jo, Jean-christophe, Roland, Ghislain, Alain, Dominique, Claude, Sree and anyone else I&#8217;ve missed.</strong> Thank you for making my time here enjoyable and as stress-free as possible. I&#8217;ll miss you all.</p>
<p>No time to rest, as my next contract starts in a couple of days &#8211; back to being the new boy in town again!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rustybadger.co.uk/2009/01/09/the-downside-of-contracting/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Top Ten Prog CDs 2008</title>
		<link>http://www.rustybadger.co.uk/2008/12/30/top-ten-prog-cds-2008/</link>
		<comments>http://www.rustybadger.co.uk/2008/12/30/top-ten-prog-cds-2008/#comments</comments>
		<pubDate>Tue, 30 Dec 2008 07:35:24 +0000</pubDate>
		<dc:creator>capcomms</dc:creator>
				<category><![CDATA[Music]]></category>

		<guid isPermaLink="false">http://www.rustybadger.co.uk/?p=161</guid>
		<description><![CDATA[Its that time again!
As the year draws to a close, all good Prog fans turn their attention to compiling a top ten CDs from the past year.
Here is my list:


1: Unitopia &#8211; The Garden

2: Believe &#8211; Yesterday Is A Friend

3: Mariusz Duda &#8211; Lunatic Soul

4: The Tangent &#8211; Not As Good As The Book

5: No-man [...]]]></description>
			<content:encoded><![CDATA[<p>Its that time again!</p>
<p>As the year draws to a close, all good Prog fans turn their attention to compiling a top ten CDs from the past year.</p>
<p>Here is my list:<br />
<center><br />
<a href="http://www.prog-nose.org/news.php?item.237.6" target="external"><img class="alignnone size-full wp-image-168" title="unitopia" src="http://www.rustybadger.co.uk/wp-content/uploads/2008/12/unitopia.jpg" alt="unitopia" width="150" height="150" /></a><br />
<strong>1: <a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendID=80161500" target="external">Unitopia</a></strong> &#8211; <a href="http://www.prog-nose.org/news.php?item.237.6" target="external">The Garden</a></p>
<p><a href="http://www.prog-nose.org/news.php?item.166.6" target="external"><img class="alignnone size-full wp-image-169" title="believe" src="http://www.rustybadger.co.uk/wp-content/uploads/2008/12/believe.jpg" alt="believe" width="150" height="150" /></a><br />
<strong>2: <a href="http://www.believe.com.pl/" target="external">Believe</a></strong> &#8211; <a href="http://www.prog-nose.org/news.php?item.166.6" target="external">Yesterday Is A Friend</a></p>
<p><a href="http://www.progarchives.com/artist.asp?id=4127" target="external"><img class="alignnone size-full wp-image-171" title="lunaticsoul1" src="http://www.rustybadger.co.uk/wp-content/uploads/2008/12/lunaticsoul1.jpg" alt="lunaticsoul1" width="150" height="150" /></a><br />
<strong>3: <a href="http://www.kscopemusic.com/lunaticsoul/" target="external">Mariusz Duda</a></strong> &#8211; <a href="http://www.progarchives.com/artist.asp?id=4127" target="external">Lunatic Soul</a></p>
<p><a href="http://www.prog-nose.org/news.php?item.126.6" target="external"><img class="alignnone size-full wp-image-172" title="tangent" src="http://www.rustybadger.co.uk/wp-content/uploads/2008/12/tangent.jpg" alt="tangent" width="150" height="150" /></a><br />
<strong>4: <a href="http://www.thetangent.org/" target="external">The Tangent</a></strong> &#8211; <a href="http://www.prog-nose.org/news.php?item.126.6" target="external">Not As Good As The Book</a></p>
<p><a href="http://www.prog-nose.org/news.php?item.205.6" target="external"><img class="alignnone size-full wp-image-173" title="noman" src="http://www.rustybadger.co.uk/wp-content/uploads/2008/12/noman.jpg" alt="noman" width="150" height="150" /></a><br />
<strong>5: <a href="http://www.no-man.co.uk/" target="external">No-man</a></strong> &#8211; <a href="http://www.prog-nose.org/news.php?item.205.6" target="external">Schoolyard Ghosts</a></p>
<p><a href="http://www.progarchives.com/album.asp?id=16841" target="external"><img class="alignnone size-full wp-image-174" title="quidam" src="http://www.rustybadger.co.uk/wp-content/uploads/2008/12/quidam.jpg" alt="quidam" width="150" height="150" /></a><br />
<strong>6: <a href="http://www.quidamcave.com/" target="external">Quidam</a></strong> &#8211; <a href="http://www.progarchives.com/album.asp?id=16841" target="external">Alone Together</a></p>
<p><a href="http://www.progarchives.com/album.asp?id=20537" target="external"><img class="alignnone size-full wp-image-175" title="insurgentes" src="http://www.rustybadger.co.uk/wp-content/uploads/2008/12/insurgentes.jpg" alt="insurgentes" width="150" height="138" /></a><br />
<strong>7: <a href="http://www.swhq.co.uk/index.cfm" target="external">Steve Wilson</a></strong> &#8211; <a href="http://www.progarchives.com/album.asp?id=20537" target="external">Insurgentes</a></p>
<p><a href="http://www.prog-nose.org/news.php?item.236.6" target="external"><img class="alignnone size-full wp-image-176" title="karmakanic" src="http://www.rustybadger.co.uk/wp-content/uploads/2008/12/karmakanic.jpg" alt="karmakanic" width="150" height="150" /></a><br />
<strong>8: <a href="http://www.reingoldmusic.com/" target="external">Karmakanic</a></strong> &#8211; <a href="http://www.prog-nose.org/news.php?item.236.6" target="external">Who&#8217;s The Boss In The Factory?</a></p>
<p><a href="http://www.prog-nose.org/news.php?item.162.6" target="external"><img class="alignnone size-full wp-image-177" title="beardfish" src="http://www.rustybadger.co.uk/wp-content/uploads/2008/12/beardfish.jpg" alt="beardfish" width="150" height="150" /></a><br />
<strong>9: <a href="http://www.beardfish.argh.se/" target="external">Beardfish</a></strong> &#8211; <a href="http://www.prog-nose.org/news.php?item.162.6" target="external">Sleeping In Traffic Pt. 2</a></p>
<p><a href="http://www.prog-nose.org/news.php?item.216.6" target="external"><img class="alignnone size-full wp-image-178" title="ephrat" src="http://www.rustybadger.co.uk/wp-content/uploads/2008/12/ephrat.jpg" alt="ephrat" width="150" height="150" /></a><br />
<strong>10: <a href="http://www.myspace.com/omerephrat" target="external">Ephrat</a></strong> &#8211; <a href="http://www.prog-nose.org/news.php?item.216.6" target="external">No Ones Words</a><br />
</center><br />
(Before anyone moans, I know that the Quidam disc came out last year, but I only got it late this year, so I&#8217;m going to include it &#8211; it&#8217;s mine and I&#8217;ll wash it as fast as I like! B-&gt;)</p>
<p>In the list above, the band name links to the band&#8217;s homepage or their MySpace page, while the cover image and the CD name both link to a review of the CD, in case anyone wants to investigate further. My thanks to <strong><a href="http://www.prog-nose.org/news.php" target="external">Prog-Nose</a></strong> and <strong><a href="http://www.progarchives.com/" target="external">ProgArchives</a></strong> for the reviews.</p>
<p>No surprises that <strong><a href="http://www.rustybadger.co.uk/2008/12/12/unitopia/" target="_self">Unitopia</a></strong> are at number one &#8211; definitely my CD of the year. Anyone who knows me will know that I&#8217;ve been raving about the band and this CD since I first heard it.</p>
<p>Here&#8217;s looking forward to 2009</p>
<p>Happy New Year, everyone!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rustybadger.co.uk/2008/12/30/top-ten-prog-cds-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Unitopia &#8211; The Garden</title>
		<link>http://www.rustybadger.co.uk/2008/12/12/unitopia/</link>
		<comments>http://www.rustybadger.co.uk/2008/12/12/unitopia/#comments</comments>
		<pubDate>Fri, 12 Dec 2008 19:19:20 +0000</pubDate>
		<dc:creator>capcomms</dc:creator>
				<category><![CDATA[Music]]></category>

		<guid isPermaLink="false">http://www.rustybadger.co.uk/?p=152</guid>
		<description><![CDATA[
Wow.
I mean, seriously, wow.
I&#8217;ve been listening to the new CD &#8216;The Garden&#8217; by Unitopia, who are an Australian, yes, Australian Prog band!  They&#8217;ve recently signed to Inside Out and this is their second CD.  Let&#8217;s hope IO do the right thing and re-release their debut, if they can get the rights.
It&#8217;s a wonderful slice of [...]]]></description>
			<content:encoded><![CDATA[<p><img class="size-medium wp-image-153 alignright" title="Unitopia - The Garden" src="http://www.rustybadger.co.uk/wp-content/uploads/2008/12/unitopiathegardensmall-300x300.jpg" alt="Unitopia - The Garden" width="300" height="300" align="right" /><br />
Wow.</p>
<p>I mean, seriously, wow.</p>
<p>I&#8217;ve been listening to the new CD &#8216;The Garden&#8217; by <strong><a href="http://www.unitopiamusic.com" target="_blank">Unitopia</a></strong>, who are an Australian, yes, Australian Prog band!  They&#8217;ve recently signed to <strong><a href="http://www.insideout.de/catalog/product_info.php?products_id=622&amp;osCsid=61c59521008e27b8dbee0763c970a218" target="_blank">Inside Out</a></strong> and this is their second CD.  Let&#8217;s hope IO do the right thing and re-release their debut, if they can get the rights.</p>
<p>It&#8217;s a wonderful slice of Prog, taking their influences from the best bits of Spock&#8217;s Beard, Genesis, Porcupine Tree and Peter Gabriel&#8217;s solo work and crafting this double CD of enjoyable, melodic, symphonic, but never repetitive music.</p>
<p>I was researching the band (a six piece, from Adelaide, including that rarest of lifeforms, a female bass player!  With serious chops, too) when I saw their list of influences on their MySpace page &#8211; I&#8217;ve copied it below &#8211; I hope they won&#8217;t mind.</p>
<hr size="1" />Yes, Genesis, Peter Gabriel, Spock&#8217;s Beard, Neal Morse, Transatlantic, Porcupine Tree, Pink Floyd, Gentle Giant, Alan Parsons, Ambrosia, Camel, Fish, Marillion, Steve Hackett, Steve Howe, Asia, Jethro Tull, Kansas, Rick Wakeman, Patrick Moraz, Tony Banks, Phil Collins, Chris Rea, Rush, Supertramp, Toto, George Gershwin, Thomas Newman, Aaron Copland, Khatchaturian, Jon Anderson, Chris Squire, Alan White, The Beatles, Tony Kaye, Trevor Rabin, Trevor Horn, The Buggles, The Korgis, Mike and the Mechanics, Mike Rutherford, Kate Bush, Roger Waters, David Gilmour, Eric Woolfson, Pilot, Al Stewart, James Taylor, Thomas Dolby, Tears For Fears, Emerson, Lake and Palmer, Keith Emerson, Asia, John Wetton, King Crimson, Bill Bruford, UK, Allan Holdsworth, Iona, Clannad, Brian Kennedy, Joni Mitchell, Japan, David Sylvian, Robert Fripp, Brian Eno, The Mars Volta, Dream Theater, Prefab Sprout, Paddy McAloon, Kirsty MacColl, Pater Banks, Frost, Bela Fleck.</p>
<hr size="1" />With only a few minor differences, that is the best definition I&#8217;ve ever seen of my taste in music!</p>
<p>Have these guys been stalking me?  All my life?  From Adelaide?  B-&gt;</p>
<p>If you see more than a couple of acts you like in that list, I urge you to go out and buy this CD &#8211; you can thank me later!</p>
<p>&lt;/cliff&gt;</p>
<p>PS: Check them out on <strong><a href="http://www.youtube.com/watch?v=zPha4FW5Ueo" target="_blank">YouTube</a></strong>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rustybadger.co.uk/2008/12/12/unitopia/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>My Development Toolkit</title>
		<link>http://www.rustybadger.co.uk/2008/11/21/my-development-toolkit/</link>
		<comments>http://www.rustybadger.co.uk/2008/11/21/my-development-toolkit/#comments</comments>
		<pubDate>Fri, 21 Nov 2008 18:29:57 +0000</pubDate>
		<dc:creator>capcomms</dc:creator>
				<category><![CDATA[ColdFusion]]></category>
		<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://www.rustybadger.co.uk/?p=135</guid>
		<description><![CDATA[I was asked by a junior developer I&#8217;ve recently started training which tools I used regularly when developing, so I decided to document this information here, in case it&#8217;s useful to anyone else.  I have lots more software installed than this, but I&#8217;m only going to concentrate on those tools I use for my development [...]]]></description>
			<content:encoded><![CDATA[<p>I was asked by a junior developer I&#8217;ve recently started training which tools I used regularly when developing, so I decided to document this information here, in case it&#8217;s useful to anyone else.  I have lots more software installed than this, but I&#8217;m only going to concentrate on those tools I use for my development work.</p>
<p><strong>Hardware</strong><br />
I use an <strong>Apple MacBook Pro</strong> as my main development machine.  I also have a <strong>Mac Mini</strong>, which is sometimes used as a testbed server or client, depending on my needs at the time.</p>
<p>When working from home, I usually have an external 19&#8243; monitor connected and run my browser on the right-hand side monitor and my IDE (or whatever else I may be using) on the left-hand side.</p>
<p><strong>Software</strong><br />
I use the following pieces of software:</p>
<p><strong>Operating Systems</strong></p>
<ul>
<li><strong>OS X 105.5.5</strong> &#8211; Naturally!</li>
<li><strong>Windows XP SP2</strong> &#8211; In a couple of <strong><a href="http://www.vmware.com/products/fusion/" target="_blank">VMWare Fusion 2.0</a></strong> VMs, purely to host MS SQL Server 2000/2005</li>
</ul>
<p><strong>Browsers &amp; Plugins</strong></p>
<ul>
<li> All the usual browsers, although <strong><a href="http://www.getfirefox.com" target="_blank">Firefox 3.0</a></strong> is my weapon of choice.</li>
<li><strong><a href="https://addons.mozilla.org/en-US/firefox/addon/60" target="_blank">Web Developers Toolbar</a></strong></li>
<li><strong><a href="http://getfirebug.com/" target="_blank">Firebug</a></strong></li>
<li><strong><a href="http://coldfire.riaforge.org/" target="_blank">ColdFire</a></strong> &#8211; If you&#8217;re a ColdFusion developer, these three plugins are essential<strong><br />
</strong></li>
</ul>
<p><strong>Servers</strong></p>
<ul>
<li><strong><a href="http://httpd.apache.org/" target="_blank">Apache</a></strong> (from the <strong><a href="http://sourceforge.net/projects/xampp/" target="_blank">XAMPP</a></strong> package)</li>
<li><strong><a href="http://www.adobe.com/products/coldfusion/" target="_blank">ColdFusion</a></strong> 7.02 (or 8.0, depending on the clients platform)</li>
</ul>
<p><strong>Databases</strong></p>
<ul>
<li><strong><a href="http://www.mysql.com" target="_blank">MySQL</a></strong> &#8211; running natively (from the <strong><a href="http://sourceforge.net/projects/xampp/" target="_blank">XAMPP</a></strong> package)</li>
<li><strong><a href="http://www.microsoft.com/Sqlserver/2005/en/us/default.aspx" target="_blank">MS SQL Server 2000/2005</a></strong> &#8211; running in separate VMs</li>
<li><strong><a href="http://www.aquafold.com" target="_blank">Aqua Data Studio</a></strong> &#8211; Not a database itself, but a wonderful tool for managing databases, especially in an hybrid environment, where you may have more than one type of DB, or where you are transitioning from one DB to another</li>
</ul>
<p><strong>Editors &amp; IDEs</strong></p>
<ul>
<li><strong><a href="http://www.cfeclipse.org/" target="_blank">CFEclipse</a></strong> &amp; <strong><a href="http://www.aptana.com/" target="_blank">Aptana</a></strong>, running on the <strong><a href="http://www.eclipse.org/" target="_blank">Eclipse</a></strong> platform</li>
<li><strong><a href="http://macromates.com/" target="_blank">Textmate</a></strong> &#8211; for adhoc edits</li>
<li><strong><a href="http://macrabbit.com/cssedit/" target="_blank">CSSEdit</a></strong> &#8211; easiest way to maintain stylesheets<strong><br />
</strong></li>
</ul>
<p><strong>Graphics</strong></p>
<ul>
<li><strong><a href="http://www.adobe.com/products/fireworks/" target="_blank">Adobe Fireworks</a></strong> &#8211; Great tool for preparing web graphics<strong><br />
</strong></li>
<li><strong><a href="http://www.pixelmator.com/" target="_blank">Pixelmator</a></strong> &#8211; neat little graphics tool &#8211; much less &#8216;busy&#8217; than PhotoShop<strong><br />
</strong></li>
</ul>
<p><strong>Source Control</strong></p>
<ul>
<li><strong><a href="http://subversion.tigris.org/" target="_blank">SubVersion</a></strong> &#8211; Version control system of choice<strong><br />
</strong></li>
<li><strong><a href="http://www.versionsapp.com/" target="_blank">Versions</a></strong> &#8211; SubVersion client</li>
<li><strong><a href="http://subclipse.tigris.org/" target="_blank">SubClipse</a></strong> &#8211; Eclipse plugin</li>
</ul>
<p><strong>Development Resources</strong></p>
<ul>
<li><strong><a href="http://ant.apache.org/" target="_blank">Ant</a></strong> &#8211; Great tool for automating deployments and testing<strong><br />
</strong></li>
<li><strong><a href="http://jquery.com/" target="_blank">jQuery</a></strong> &#8211; Cool JavaScript library &#8211; makes JS development much simpler<strong><br />
</strong></li>
<li><strong><a href="http://www.pengoworks.com/qforms" target="_blank">qForms</a></strong> &#8211; Wonderful JavaScript form validation library <strong><br />
</strong></li>
</ul>
<p><strong>Note taking, Administration &amp; Documentation</strong></p>
<ul>
<li><strong><a href="http://www.circusponies.com/" target="_blank">Circus Ponies Notebook</a></strong> &#8211; Really useful for keeping all those notes which normally live in .TXT files or on Post-it notes &#8211; I keep a separate file for each project<strong><br />
</strong></li>
<li><strong><a href="http://www.apple.com/iwork/pages/" target="_blank">iWork Pages &#8216;08</a></strong> &#8211; No, I *WONT* use Word to produce your spec/report/docs!  B-&gt;<strong><br />
</strong></li>
<li><strong><a href="http://www.novamind.com/novamind/pro.php" target="_blank">NovaMind Pro</a></strong> &#8211; Mindmapping tool &#8211; absolutely essential!</li>
<li><strong><a href="http://www.omnigroup.com/applications/omnifocus/" target="_blank">OmniFocus</a></strong> &#8211; Todo list manager</li>
<li><strong><a href="http://www.omnigroup.com/applications/OmniGraffle/" target="_blank">OmniGraffle Pro</a></strong> &#8211; Used to create Visio-like diagrams for documentation</li>
<li><strong><a href="http://www.omnigroup.com/applications/omniplan/" target="_blank">OmniPlan</a></strong> &#8211; MS Project compatible Project management suite</li>
</ul>
<p><strong>Communications</strong></p>
<ul>
<li><strong><a href="http://www.adiumx.com/" target="_blank">Adium</a></strong> &#8211; MSN/ICQ/GTalk-compatible IM clent<strong><br />
</strong></li>
<li><strong><a href="http://www.skype.com" target="_blank">Skype</a></strong> &#8211; VOIP client</li>
<li><strong><a href="http://www.igniterealtime.org/projects/spark/index.jsp" target="_blank">Spark</a></strong> &#8211; Jabber client</li>
<li><strong><a href="http://connect.microsoft.com/macrdc" target="_blank">MS Remote Desktop Client</a></strong> &#8211; For when I have to remotely access Windows servers for clients</li>
<li><strong><a href="http://www.redstonesoftware.com/products/vine_viewer" target="_blank">Vine Viewer</a></strong> &#8211; For my more enlightened clients who use VNC, as I do on all my machines at home</li>
<li><strong><a href="http://www.mozilla.com/en-US/thunderbird/" target="_blank">Thunderbird</a></strong> &#8211; Email client of choice</li>
<li><strong><a href="http://www.panic.com/transmit/" target="_blank">Transmit</a></strong> &#8211; FTP client, with synchronisation capabilities</li>
</ul>
<p><strong>Other Tools</strong></p>
<ul>
<li><strong><a href="http://www.getdropbox.com/" target="_blank">Dropbox</a></strong> &#8211; used to synchronise the code on my two Macs together</li>
<li><strong><a href="http://www.guiffy.com/" target="_blank">Guiffy</a></strong> &#8211; file/folder comparison tool &#8211; similar to <strong><a href="http://www.scootersoftware.com/" target="_blank">Beyond Compare</a></strong>, but not as good.  I have been known to use BC on one of my VMs, as it&#8217;s a far superior tool (apologies to the author of Guiffy, but it just is!)</li>
<li><strong><a href="http://www.blacktree.com/" target="_blank">Quicksilver</a></strong> &#8211; provides fast access to docs &amp; apps without using the mouse &#8211; normally the first piece of software I install on a new Mac</li>
<li><strong><a href="http://mozy.com/" target="_blank">Mozy</a></strong> &#8211; offsite backup tool, used for my docs and code</li>
<li><strong><a href="http://arrsync.sourceforge.net/" target="_blank">ARRsync</a></strong> &#8211; Secondary backup tool &#8211; mirrors the same folders as Mozy, but to a server I control, rather than into Mozy&#8217;s &#8216;cloud&#8217;</li>
</ul>
<p>This list isn&#8217;t a &#8216;best of breed&#8217; collection necessarily, just the tools that I&#8217;ve found that work for me.  If anyone has any recommendations about anything better than anything I&#8217;ve listed, please feel free to comment.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rustybadger.co.uk/2008/11/21/my-development-toolkit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gmail now has themes</title>
		<link>http://www.rustybadger.co.uk/2008/11/21/gmail-now-has-themes/</link>
		<comments>http://www.rustybadger.co.uk/2008/11/21/gmail-now-has-themes/#comments</comments>
		<pubDate>Fri, 21 Nov 2008 15:52:50 +0000</pubDate>
		<dc:creator>capcomms</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.rustybadger.co.uk/?p=133</guid>
		<description><![CDATA[From the Gmail blog:
Gmail fans have been building unofficial extensions to spice up their inboxes for a while, but up til now themes haven&#8217;t been an integral part of Gmail. We wanted to go beyond simple color customization, so out of the 30 odd themes we&#8217;re launching today, there&#8217;s a shiny theme with chrome styling, [...]]]></description>
			<content:encoded><![CDATA[<p>From the Gmail blog:</p>
<p><em>Gmail fans have been building unofficial extensions to spice up their inboxes for a while, but up til now themes haven&#8217;t been an integral part of Gmail. We wanted to go beyond simple color customization, so out of the 30 odd themes we&#8217;re launching today, there&#8217;s a shiny theme with chrome styling, another one that turns your inbox into a retro notepad, nature themes that change scenery over time, weather driven themes that can rain on your mailbox, and fun characters to keep you in good company. There&#8217;s even an old school ascii theme (Terminal) which was the result of a bet between two engineers &#8212; it&#8217;s not exactly practical, but it&#8217;s great for testing out your geek cred. We&#8217;ve also done a minor facelift to Gmail&#8217;s default look to make it crisper and cleaner &#8212; you might notice a few colors and pixels shifted around here and there.</em></p>
<p>For more info, head to: <a href="http://gmailblog.blogspot.com/2008/11/spice-up-your-inbox-with-colors-and.html">http://gmailblog.blogspot.com/2008/11/spice-up-your-inbox-with-colors-and.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.rustybadger.co.uk/2008/11/21/gmail-now-has-themes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
