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

<channel>
	<title>rebus</title>
	<atom:link href="http://rebus.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://rebus.wordpress.com</link>
	<description>Passionately Apathetic</description>
	<lastBuildDate>Sat, 04 Apr 2009 02:27:54 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='rebus.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/2990e9f27f75db28257032e0d83b2c8c?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>rebus</title>
		<link>http://rebus.wordpress.com</link>
	</image>
			<item>
		<title>Lies, Damn Lies &amp; MSDN Documentation</title>
		<link>http://rebus.wordpress.com/2009/04/04/lies-damn-lies-and-msdn-documentation/</link>
		<comments>http://rebus.wordpress.com/2009/04/04/lies-damn-lies-and-msdn-documentation/#comments</comments>
		<pubDate>Sat, 04 Apr 2009 02:27:54 +0000</pubDate>
		<dc:creator>corrywht</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[DTD]]></category>
		<category><![CDATA[XmlDocument]]></category>
		<category><![CDATA[XmlResolver]]></category>

		<guid isPermaLink="false">http://rebus.wordpress.com/?p=14</guid>
		<description><![CDATA[The MSDN documentation for XmlDocument.LoadXml() states &#8220;This method does not do DTD or Schema validation. If you want validation to occur, use the Load method and pass it an XmlValidatingReader. See XmlDocument for an example of load-time validation&#8221;.  As it turns out, this is only a half-truth.
If you happen to be dealing with XHTML (or [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rebus.wordpress.com&blog=440476&post=14&subd=rebus&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>The MSDN documentation for <a title="Open XmlDocument.LoadXml Method (System.Xml) in a new window" href="http://msdn.microsoft.com/en-us/library/system.xml.xmldocument.loadxml.aspx" target="_blank">XmlDocument.LoadXml()</a> states &#8220;This method does not do DTD or Schema validation. If you want validation to occur, use the Load method and pass it an XmlValidatingReader. See XmlDocument for an example of load-time validation&#8221;.  As it turns out, this is only a half-truth.</p>
<p>If you happen to be dealing with XHTML (or any other standard that has a publicly accessible DTD), then you&#8217;ll most likely have a DOCTYPE declaration at the top of the document, like</p>
<pre>&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;</pre>
<p>However, if you try to load an XHTML document containing the DOCTYPE declaration into an XmlDocument object using LoadXml(), the underlying XmlTextReader will try to resolve the URIs in the DOCTYPE.  This is usually fine in a development environment, but can cause major headaches when working in a restricted production environment, where, for example, the Web severs cannot access the Internet in general, or the W3C site in particular.</p>
<p>So, what do to?</p>
<p>Well, you have two options:</p>
<p>1. Set the XmlResolver object in the XmlDocument to null, i.e.</p>
<pre>XmlDocument xdXhtmlContent = new XmlDocument();
xdXhtmlContent.XmlResolver = null;</pre>
<p>2. Copy the DTD(s) locally and create your own XmlUrlResolver that overrides the URI for them (e.g. to a local path):</p>
<pre>public class FileSystemDTDUriResolver : XmlUrlResolver
{
/// &lt;summary&gt;
/// Resolves the absolute URI from the base and relative URIs.
/// &lt;/summary&gt;
/// &lt;param name="baseUri"&gt;The base URI used to resolve the relative URI.&lt;/param&gt;
/// &lt;param name="relativeUri"&gt;The URI to resolve. The URI can be absolute or relative. If absolute, this value effectively replaces the baseUri value. If relative, it combines with the baseUri to make an absolute URI.&lt;/param&gt;
/// &lt;returns&gt;&lt;/returns&gt;
/// &lt;remarks&gt;The baseUri and relativeUri are given to match the method signature of XmlUrlResolver. However, for the purpose of an XmlDocument's XmlResolver, the Uri cannot be relative.&lt;/remarks&gt;
public override Uri ResolveUri(Uri baseUri, string relativeUri)
{
if (relativeUri.ToLower().EndsWith(".dtd"))
{
string sRequestedDtd = relativeUri.Substring(relativeUri.LastIndexOf('/')).TrimStart('/');
string sDTDFilesLocation = ConfigurationManager.AppSettings["DTDFileSystemLocation"].Replace('\\', '/');    //C:\Webfiles\w3xml\DTD\
if (sDTDFilesLocation.LastIndexOf('/') != sDTDFilesLocation.Length - 1)
{
sDTDFilesLocation += "/";
}
return new Uri("file:///" + sDTDFilesLocation + sRequestedDtd);
}
return base.ResolveUri(baseUri, relativeUri);
}
}</pre>
<p>Then set the XmlResolver as:</p>
<pre>xdXhtmlContent.XmlResolver = new FileSystemDTDUriResolver();</pre>
<p>One thing to note about this approach is that you cannot use a relative Uri with the XmlResolver, so you can either specify a file system path (using file:///) or (if you modify the sample code slightly) an absolute local URL, e.g. http://localhost/w3xml/DTD/</p>
<p>Further reading:</p>
<ul>
<li><a href="http://groups.google.co.uk/group/microsoft.public.dotnet.xml/browse_frm/thread/f476f6a3fd610e78/09c99a4917a3c416?q=loading+xml+document+no+dtd&amp;rnum=9#09c99a4917a3c416" target="_blank">http://groups.google.co.uk/group/microsoft.public.dotnet.xml/browse_frm/thread/f476f6a3fd610e78/09c99a4917a3c416?q=loading+xml+document+no+dtd&amp;rnum=9#09c99a4917a3c416</a></li>
<li><a href="http://www.eggheadcafe.com/forumarchives/NETxml/Nov2005/post24343352.asp" target="_blank">http://www.eggheadcafe.com/forumarchives/NETxml/Nov2005/post24343352.asp</a></li>
<li><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpguide/html/cpconResolvingExternalResources.asp" target="_blank">http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpguide/html/cpconResolvingExternalResources.asp</a></li>
</ul>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rebus.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rebus.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rebus.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rebus.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rebus.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rebus.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rebus.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rebus.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rebus.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rebus.wordpress.com/14/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rebus.wordpress.com&blog=440476&post=14&subd=rebus&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://rebus.wordpress.com/2009/04/04/lies-damn-lies-and-msdn-documentation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/310865d11bf16dd128c9b33235e41143?s=96&#38;d=identicon" medium="image">
			<media:title type="html">Rebus</media:title>
		</media:content>
	</item>
		<item>
		<title>When Conditional Formatting Simply Won&#8217;t Do</title>
		<link>http://rebus.wordpress.com/2008/03/19/when-conditional-formatting-simply-wont-do/</link>
		<comments>http://rebus.wordpress.com/2008/03/19/when-conditional-formatting-simply-wont-do/#comments</comments>
		<pubDate>Wed, 19 Mar 2008 17:36:57 +0000</pubDate>
		<dc:creator>corrywht</dc:creator>
				<category><![CDATA[Excel]]></category>
		<category><![CDATA[VBA]]></category>
		<category><![CDATA[conditional formatting]]></category>
		<category><![CDATA[function]]></category>
		<category><![CDATA[onchange]]></category>
		<category><![CDATA[worksheet]]></category>

		<guid isPermaLink="false">http://rebus.wordpress.com/?p=11</guid>
		<description><![CDATA[Excel has many neat features, Conditional Formatting being one of them.  But one particularly irritating feature of Conditional Formatting is that you can only cater for a maximum of three possible states.
So, what do you do if, for example, you have a list of five possible strings that the user can enter, and you [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rebus.wordpress.com&blog=440476&post=11&subd=rebus&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Excel has many neat features, <a href="http://www.wikihow.com/Apply-Conditional-Formatting-in-Excel" title="Open WikiHow instructions on how to apply conditional formatting in Excel in a new window">Conditional Formatting</a> being one of them.  But one particularly irritating feature of Conditional Formatting is that you can only cater for a maximum of three possible states.</p>
<p>So, what do you do if, for example, you have a list of five possible strings that the user can enter, and you want to apply visual styles for each of the different strings?  Well, you&#8217;ll need to roll up your sleeves and get stuck into VBA.  Fortunately, it really is quite straightforward.</p>
<p><span id="more-11"></span>Conceptually, what you want to do is handle the &#8216;Change&#8217; event on the active Worksheet &#8211; when the user changes a value, you want a piece of code to be executed.  Here&#8217;s how:</p>
<ol>
<li>Open up the VBA editor for the Excel workbook using Alt+F11 (or go to Tools &gt; Macro &gt; Visual Basic Editor)</li>
<li>In the Project explore, under VBA Project ([Workbook Name]) &gt; Microsoft Excel Objects, open the worksheet object for the relevant worksheet by doubling-clicking (or right-clicking and selecting View Code)</li>
<li>Paste in the following code and change to suit your needs</li>
<li>You can test the code by returning to the Excel workbook</li>
</ol>
<blockquote>
<pre><font color="#0000ff">Private Sub </font>Worksheet_Change(<font color="#0000ff">ByVal </font>Target As Range)
   'Test that the Target is within the range of columns
   <font color="#0000ff">If </font>Target.Column &gt;= 2 <font color="#0000ff">And </font>Target.Column &lt;= 11 <font color="#0000ff">Then
</font>        'Test that the Target row is correct
       <font color="#0000ff">If </font>Target.Row = 15 <font color="#0000ff">Then</font>
           'Handle the N/A case
           <font color="#0000ff">If </font>Target.Value = "<font color="#ff00ff">Not Applicable</font>" <font color="#0000ff">Then</font>
                Target.Font.Bold = <font color="#0000ff">False</font>
                Target.Interior.Color = ColorConstants.vbWhite
           'Handle the Normal case
           <font color="#0000ff">ElseIf </font>Target.Value = "<font color="#ff00ff">Normal</font>" <font color="#0000ff">Then</font>
                Target.Font.Bold = <font color="#0000ff">False</font>
                Target.Interior.Color = ColorConstants.vbGreen
           'Handle the Warning case
           <font color="#0000ff">ElseIf </font>Target.Value = "<font color="#ff00ff">Warning</font>" <font color="#0000ff">Then</font>
                Target.Font.Bold = <font color="#0000ff">True</font>
                Target.Interior.Color = ColorConstants.vbYellow
           'Handle the Alert case
           <font color="#0000ff">ElseIf </font>Target.Value = "<font color="#ff00ff">Alert</font>" <font color="#0000ff">Then</font>
                Target.Font.Bold = <font color="#0000ff">True</font>
                Target.Interior.Color = ColorConstants.vbRed
           <font color="#0000ff">ElseIf </font>Target.Value = "<font color="#ff00ff">Excellent</font>" <font color="#0000ff">Then</font>
                Target.Font.Bold = <font color="#0000ff">True</font>
                Target.Interior.Color = ColorConstants.vbBlue
           'User has input an invalid string
           <font color="#0000ff">Else</font>
                'Declare a response variable
               <font color="#0000ff">Dim </font>Response
               'Show a message box
               Response = <font color="#0000ff">MsgBox</font>("You must enter a valid status.", vbOKOnly, "Status Error")
           <font color="#0000ff">End If</font>
        <font color="#0000ff">End If</font>
    <font color="#0000ff">End If
End Sub</font></pre>
</blockquote>
<p>Et vóila! Share and enjoy.</p>
<p>Note: These instructions and the associated code are provided &#8216;as-is&#8217;, with no warranty, implied or otherwise, and is used at the reader&#8217;s own risk.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/rebus.wordpress.com/11/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/rebus.wordpress.com/11/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rebus.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rebus.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rebus.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rebus.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rebus.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rebus.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rebus.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rebus.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rebus.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rebus.wordpress.com/11/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rebus.wordpress.com&blog=440476&post=11&subd=rebus&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://rebus.wordpress.com/2008/03/19/when-conditional-formatting-simply-wont-do/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/310865d11bf16dd128c9b33235e41143?s=96&#38;d=identicon" medium="image">
			<media:title type="html">Rebus</media:title>
		</media:content>
	</item>
		<item>
		<title>How to Print .PRN Files</title>
		<link>http://rebus.wordpress.com/2007/12/19/how-to-print-prn-files/</link>
		<comments>http://rebus.wordpress.com/2007/12/19/how-to-print-prn-files/#comments</comments>
		<pubDate>Wed, 19 Dec 2007 17:35:20 +0000</pubDate>
		<dc:creator>corrywht</dc:creator>
				<category><![CDATA[Printing]]></category>
		<category><![CDATA[print]]></category>
		<category><![CDATA[prn]]></category>

		<guid isPermaLink="false">http://rebus.wordpress.com/2007/12/19/how-to-print-prn-files/</guid>
		<description><![CDATA[Ever been caught short without a printer to print off, say, an online order or a receipt for an online banking transaction?  I know it has happened to me numerous times, but I was always reticent to use the &#8220;Print to file&#8221; option on the print dialog, because it used to be a pain to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rebus.wordpress.com&blog=440476&post=9&subd=rebus&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Ever been caught short without a printer to print off, say, an online order or a receipt for an online banking transaction?  I know it has happened to me numerous times, but I was always reticent to use the &#8220;Print to file&#8221; option on the print dialog, because it used to be a pain to get the resulting .prn files to print (particularly when using network printers).</p>
<p>Luckily, I stumbled across this very neat <a href="http://www.magma.ca/~russrite/PrnPrint/index.html" title="Russ Wright's PrnPrint utility" target="_blank">PrnPrint utility</a>, which, as the name suggests, prints a .prn file for you.  The only caveat is that you must select the printer you wish to eventually print to in the Print dialog, as .prn files are formatted uniquely based on the target printer driver.</p>
<p>Enjoy!</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/rebus.wordpress.com/9/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/rebus.wordpress.com/9/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rebus.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rebus.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rebus.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rebus.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rebus.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rebus.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rebus.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rebus.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rebus.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rebus.wordpress.com/9/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rebus.wordpress.com&blog=440476&post=9&subd=rebus&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://rebus.wordpress.com/2007/12/19/how-to-print-prn-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/310865d11bf16dd128c9b33235e41143?s=96&#38;d=identicon" medium="image">
			<media:title type="html">Rebus</media:title>
		</media:content>
	</item>
		<item>
		<title>Day Four in the Vista House&#8230;</title>
		<link>http://rebus.wordpress.com/2007/07/26/day-four-in-the-vista-house/</link>
		<comments>http://rebus.wordpress.com/2007/07/26/day-four-in-the-vista-house/#comments</comments>
		<pubDate>Thu, 26 Jul 2007 22:41:35 +0000</pubDate>
		<dc:creator>corrywht</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://rebus.wordpress.com/2007/07/26/day-four-in-the-vista-house/</guid>
		<description><![CDATA[Eleven-oh-four AM and my newly purchased, supposedly &#8220;Windows Vista Ready&#8221;, Targus USB Bluetooth 2.0 EDR adapter broke my brand new Dell Latitude D630.
Everything seemed to be going so well initially, albeit with a handful of warnings from Windows encouraging me not to install third-party unsigned drivers: The installer worked fine, I got a nice Bluetooth [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rebus.wordpress.com&blog=440476&post=8&subd=rebus&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Eleven-oh-four AM and my newly purchased, supposedly &#8220;Windows Vista Ready&#8221;, <a href="http://www.targus.com/uk/product_details.asp?sku=ACB10EU" target="_blank" title="Targus USB Bluetooth 2.0 EDR">Targus USB Bluetooth 2.0 EDR</a> adapter broke my brand new Dell Latitude D630.</p>
<p>Everything seemed to be going so well initially, albeit with a handful of warnings from Windows encouraging me not to install third-party unsigned drivers: The installer worked fine, I got a nice Bluetooth configuration wizard at the end and was able to successfully pair and synchronise with my shiny <a href="http://www.nokia.ie/A4288039" title="Nokia 6300" target="_blank">Nokia 6300</a>.  Then things started to go awry.  First, the mobile phone reported that the Bluetooth connection had failed.  I was unable to re-establish the connection from the Bluetooth configuration applet, so I thought a restart might be in order.</p>
<p>That&#8217;s when things got really interesting. On restart, the boot loader screen appeared for a few seconds, then the screen went blank.  The hard drive was active for maybe 30 seconds, then nothing; a black screen, no disk activity &#8211; this was looking bad. A hard reboot later, and things were not looking any better.</p>
<p>In the end, I had to remove the Bluetooth adapter, boot into Safe Mode and remove the Widcomm / Broadcom drivers.  I felt like I had really dodged a bullet (and an embarrassing explanation to the Systems group).  However, I wasn&#8217;t quite convinced that the adapter wouldn&#8217;t work, so I downloaded the latest Vista drivers from the Targus website.  Running the installer, things were apparently much more positive, with no warnings from Windows about unsafe drivers, and I was once again able to pair with the mobile phone.  Unfortunately, this wasn&#8217;t the end of my woes: Whilst the mobile phone was paired with the laptop, the Bluetooth stack was reporting to Nokia PC Suite that the phone wasn&#8217;t connected; try as I might, I couldn&#8217;t rectify the problem.</p>
<p>Exasperated, and more than a little concerned that I&#8217;d broken my four-day old laptop, I decided to bite the bullet and run System Restore. In the past (i.e. in Windows XP), this would have been more than a little foolhardy &#8211; I can say from experience that using System Restore in XP would be likely to destroy your PC, having had to format and re-install after running it &#8211; but I&#8217;d heard good things about its Vista successor.  Luckily, my faith was rewarded with a system restored to its 11:03:59 state, with no evidence in the registry of any of the subsequent driver installs (based on a search for the strings &#8220;Widcomm&#8221; and &#8220;Broadcom&#8221;).  This is certainly a good thing, given that so many drivers seem to dislike Vista and vice versa.</p>
<p>So, initial thoughts on Vista?  It&#8217;s very shiny for certain, but seems more than a little wobbly at times &#8211; the Smart Card service keeps hanging on start-up; the Print Spooler service crashes every time I try to connect to a new printer and the OS keeps resetting my monitor setup every time I shut down or even log off &#8211; this is particularly annoying given that my desktop monitor is on the left, my laptop is on the right, and the Vista default is the opposite.  I also dislike that you have to click the <em>tiny</em> little arrow beside folder names in Explorer to expand them, rather than having this as the default action when clicking a folder name in the tree, as in XP (although, as an aside, I think I may be very much in the minority using the full Explorer tree view interface so much &#8211; even other developers seem to be in a habit of double-clicking on My Computer, or worse, right-clicking the Start button&#8230; yak!).</p>
<p>More Vista experiences later!</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/rebus.wordpress.com/8/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/rebus.wordpress.com/8/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rebus.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rebus.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rebus.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rebus.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rebus.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rebus.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rebus.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rebus.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rebus.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rebus.wordpress.com/8/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rebus.wordpress.com&blog=440476&post=8&subd=rebus&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://rebus.wordpress.com/2007/07/26/day-four-in-the-vista-house/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/310865d11bf16dd128c9b33235e41143?s=96&#38;d=identicon" medium="image">
			<media:title type="html">Rebus</media:title>
		</media:content>
	</item>
		<item>
		<title>On the subject of procrastination</title>
		<link>http://rebus.wordpress.com/2006/09/27/on-the-subject-of-procrastination/</link>
		<comments>http://rebus.wordpress.com/2006/09/27/on-the-subject-of-procrastination/#comments</comments>
		<pubDate>Wed, 27 Sep 2006 16:01:52 +0000</pubDate>
		<dc:creator>corrywht</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://rebus.wordpress.com/2006/09/27/on-the-subject-of-procrastination/</guid>
		<description><![CDATA[As I take my first tenative steps into the world of self-publicism sharing my deep and meaningful thoughts on everything, I have to wonder: What about the remaining two and bit chapters of my thesis?
Therein lies the rub: I have managed to find fourty-five minutes to set up a blog, read several others to get [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rebus.wordpress.com&blog=440476&post=4&subd=rebus&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>As I take my first tenative steps into the world of <strike>self-publicism</strike> sharing my deep and meaningful thoughts on everything, I have to wonder: What about the remaining two and bit chapters of my thesis?</p>
<p>Therein lies the rub: I have managed to find fourty-five minutes to set up a blog, read several others to get some style tips, and even choose a striking theme (speaking of which, is it dark and forboding in here or is it just me?), rather than make some dent in the remaining 5000 words.</p>
<p>Oh well.  I&#8217;m sure some dust bunnies will be put out of their misery as soon as I have to write something more here&#8230;</p>
<p>In the meantime, may I politely suggest you dabble in <a href="http://illyana.com" title="MalContent">MalContent</a>?</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/rebus.wordpress.com/4/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/rebus.wordpress.com/4/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rebus.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rebus.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rebus.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rebus.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rebus.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rebus.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rebus.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rebus.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rebus.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rebus.wordpress.com/4/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rebus.wordpress.com&blog=440476&post=4&subd=rebus&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://rebus.wordpress.com/2006/09/27/on-the-subject-of-procrastination/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/310865d11bf16dd128c9b33235e41143?s=96&#38;d=identicon" medium="image">
			<media:title type="html">Rebus</media:title>
		</media:content>
	</item>
	</channel>
</rss>