<?xml version="1.0" encoding="utf-8"?>
<rss xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:pingback="http://madskills.com/public/xml/rss/module/pingback/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0">
  <channel>
    <title>BryanRobson.net</title>
    <link>http://www.bryanrobson.net/DasBlogCe/</link>
    <description>the blog</description>
    <language>en-us</language>
    <copyright>Bryan Robson</copyright>
    <lastBuildDate>Tue, 10 Mar 2009 16:30:32 GMT</lastBuildDate>
    <generator>newtelligence dasBlog 2.0.7226.0</generator>
    <managingEditor>blog@bryanrobson.net</managingEditor>
    <webMaster>blog@bryanrobson.net</webMaster>
    <item>
      <trackback:ping>http://www.bryanrobson.net/DasBlogCe/Trackback.aspx?guid=9cca3cb9-6401-47fe-b7d7-24d002883199</trackback:ping>
      <pingback:server>http://www.bryanrobson.net/DasBlogCe/pingback.aspx</pingback:server>
      <pingback:target>http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,9cca3cb9-6401-47fe-b7d7-24d002883199.aspx</pingback:target>
      <dc:creator>Bryan</dc:creator>
      <wfw:comment>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,9cca3cb9-6401-47fe-b7d7-24d002883199.aspx</wfw:comment>
      <wfw:commentRss>http://www.bryanrobson.net/DasBlogCe/SyndicationService.asmx/GetEntryCommentsRss?guid=9cca3cb9-6401-47fe-b7d7-24d002883199</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Thanks to a colleague who I shall refer to only as "Mr. Picky", I've just been playing
with decimals.
</p>
        <p>
I know they're the slowest numeric data type, but we're talking XML and xs:decimal,
and classes created thereof.
</p>
        <p>
Mr. Picky's complaint was that of all of the values (prices, in fact) in the XML file,
some were formatted with 2 decimal places, and some with none, and he'd like to see
them all with 2.
</p>
        <p>
Now, after a bit of fiddling about, I couldn't see any obvious reason why we had these
differences.  The prices all originated in the same fields in the database, and
they all ended up as XML attributes declared as xs:decimal, and passed through VB.Net
classes as Decimal variables.
</p>
        <p>
The heart of the issue is VB.Net's Decimal handling.  By default a Decimal has
zero decimal places, but if it acquires any along the way then it will keep them. 
Some of my values had spent part of their life as a string (something like "£12.34",
and don't ask why!) and some were just plain Decimals.  All the attributes where
the values had been strings had their 2DP, as they'd been parsed from strings like
"12.00" and so when the VB.Net class went ToXml() they appeared as "12.00", but those
that were never strings stayed as "12".
</p>
        <p>
My solution?  (and I ain't proud of this)
</p>
        <font size="2" color="#0000ff">
          <font size="2" color="#0000ff">
          </font>
        </font>
        <p>
          <font size="2" color="#0000ff">
            <font size="2" color="#0000ff">Dim</font>
          </font>
          <font size="2"> decimalWith2DecimalPlaces </font>
          <font size="2" color="#0000ff">
            <font size="2" color="#0000ff">As</font>
          </font>
          <font size="2">
          </font>
          <font size="2" color="#0000ff">
            <font size="2" color="#0000ff">Decimal</font>
          </font>
          <font size="2"> =
decimalValueFromDb * </font>
          <font size="2" color="#0000ff">
            <font size="2" color="#0000ff">Decimal</font>
          </font>
          <font size="2">.Parse(</font>
          <font size="2" color="#a31515">
            <font size="2" color="#a31515">"1.00"</font>
          </font>
          <font size="2">)</font>
        </p>
        <font size="2">
          <p>
...and I can't find any better way of doing this.  I've spent frankly far too
long on a trivial bug as it is, and I've got plenty more to be working on, so that's
that!
</p>
          <p>
EDIT: Ignore me - if you do that you can end up with this: "12.300", which is clearly
nonsense. I've abandoned all pride and started doing this instead:
</p>
          <p>
            <font size="2" color="#0000ff">
              <font size="2" color="#0000ff">Dim</font>
            </font>
            <font size="2">
            </font>decimalWith2DecimalPlaces <font size="2" color="#0000ff"><font size="2" color="#0000ff">As</font></font><font size="2"></font><font size="2" color="#0000ff"><font size="2" color="#0000ff">Decimal</font></font><font size="2"></font>= <font><font size="2"><font size="2" color="#0000ff"><font size="2" color="#0000ff">Decimal</font></font>.</font></font>Parse(decimalValueFromDb.ToString("0.00"))<br /></p>
        </font>
        <img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=9cca3cb9-6401-47fe-b7d7-24d002883199" />
      </body>
      <title>Decimals, VB.Net, XML, and decimal places!</title>
      <guid isPermaLink="false">http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,9cca3cb9-6401-47fe-b7d7-24d002883199.aspx</guid>
      <link>http://www.bryanrobson.net/DasBlogCe/2009/03/10/Decimals+VBNet+XML+And+Decimal+Places.aspx</link>
      <pubDate>Tue, 10 Mar 2009 16:30:32 GMT</pubDate>
      <description>&lt;p&gt;
Thanks to a colleague who I shall refer to only as "Mr. Picky", I've just been playing
with decimals.
&lt;/p&gt;
&lt;p&gt;
I know they're the slowest numeric data type, but we're talking XML and xs:decimal,
and classes created thereof.
&lt;/p&gt;
&lt;p&gt;
Mr. Picky's complaint was that of all of the values (prices, in fact) in the XML file,
some were formatted with 2 decimal places, and some with none, and he'd like to see
them all with 2.
&lt;/p&gt;
&lt;p&gt;
Now, after a bit of fiddling about, I couldn't see any obvious reason why we had these
differences.&amp;nbsp; The prices all originated in the same fields in the database, and
they all ended up as XML attributes declared as xs:decimal, and passed through VB.Net
classes as Decimal variables.
&lt;/p&gt;
&lt;p&gt;
The heart of the issue is VB.Net's Decimal handling.&amp;nbsp; By default a Decimal has
zero decimal places, but if it acquires any along the way then it will keep them.&amp;nbsp;
Some of my values had spent part of their life as a string (something like "£12.34",
and don't ask why!) and some were just plain Decimals.&amp;nbsp; All the attributes where
the values had been strings had their 2DP, as they'd been parsed from strings like
"12.00" and so when the VB.Net class went ToXml() they appeared as "12.00", but those
that were never strings stayed as "12".
&lt;/p&gt;
&lt;p&gt;
My solution?&amp;nbsp; (and I ain't proud of this)
&lt;/p&gt;
&lt;font size="2" color="#0000ff"&gt;&lt;font size="2" color="#0000ff"&gt; &lt;/font&gt;&lt;/font&gt;
&lt;p&gt;
&lt;font size="2" color="#0000ff"&gt;&lt;font size="2" color="#0000ff"&gt;Dim&lt;/font&gt;&lt;/font&gt;&lt;font size="2"&gt; decimalWith2DecimalPlaces &lt;/font&gt;&lt;font size="2" color="#0000ff"&gt;&lt;font size="2" color="#0000ff"&gt;As&lt;/font&gt;&lt;/font&gt;&lt;font size="2"&gt; &lt;/font&gt;&lt;font size="2" color="#0000ff"&gt;&lt;font size="2" color="#0000ff"&gt;Decimal&lt;/font&gt;&lt;/font&gt;&lt;font size="2"&gt; =
decimalValueFromDb * &lt;/font&gt;&lt;font size="2" color="#0000ff"&gt;&lt;font size="2" color="#0000ff"&gt;Decimal&lt;/font&gt;&lt;/font&gt;&lt;font size="2"&gt;.Parse(&lt;/font&gt;&lt;font size="2" color="#a31515"&gt;&lt;font size="2" color="#a31515"&gt;"1.00"&lt;/font&gt;&lt;/font&gt;&lt;font size="2"&gt;)&lt;/font&gt;
&lt;/p&gt;
&lt;font size="2"&gt; 
&lt;p&gt;
...and I can't find any better way of doing this.&amp;nbsp; I've spent frankly far too
long on a trivial bug as it is, and I've got plenty more to be working on, so that's
that!
&lt;/p&gt;
&lt;p&gt;
EDIT: Ignore me - if you do that you can end up with this: "12.300", which is clearly
nonsense. I've abandoned all pride and started doing this instead:
&lt;/p&gt;
&lt;p&gt;
&lt;font size="2" color="#0000ff"&gt;&lt;font size="2" color="#0000ff"&gt;Dim&lt;/font&gt;&lt;/font&gt;&lt;font size="2"&gt; &lt;/font&gt;decimalWith2DecimalPlaces &lt;font size="2" color="#0000ff"&gt;&lt;font size="2" color="#0000ff"&gt;As&lt;/font&gt;&lt;/font&gt;&lt;font size="2"&gt; &lt;/font&gt;&lt;font size="2" color="#0000ff"&gt;&lt;font size="2" color="#0000ff"&gt;Decimal&lt;/font&gt;&lt;/font&gt;&lt;font size="2"&gt; &lt;/font&gt;= &lt;font&gt;&lt;font size="2"&gt;&lt;font size="2" color="#0000ff"&gt;&lt;font size="2" color="#0000ff"&gt;Decimal&lt;/font&gt;&lt;/font&gt;.&lt;/font&gt;&lt;/font&gt;Parse(decimalValueFromDb.ToString("0.00"))&lt;br&gt;
&lt;/p&gt;
&lt;/font&gt;&lt;img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=9cca3cb9-6401-47fe-b7d7-24d002883199" /&gt;</description>
      <comments>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,9cca3cb9-6401-47fe-b7d7-24d002883199.aspx</comments>
      <category>Coding</category>
      <category>Work</category>
    </item>
    <item>
      <trackback:ping>http://www.bryanrobson.net/DasBlogCe/Trackback.aspx?guid=49b115e2-63f8-4254-9c88-7da74ea63c38</trackback:ping>
      <pingback:server>http://www.bryanrobson.net/DasBlogCe/pingback.aspx</pingback:server>
      <pingback:target>http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,49b115e2-63f8-4254-9c88-7da74ea63c38.aspx</pingback:target>
      <dc:creator>Bryan</dc:creator>
      <wfw:comment>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,49b115e2-63f8-4254-9c88-7da74ea63c38.aspx</wfw:comment>
      <wfw:commentRss>http://www.bryanrobson.net/DasBlogCe/SyndicationService.asmx/GetEntryCommentsRss?guid=49b115e2-63f8-4254-9c88-7da74ea63c38</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
I take <a href="http://smalltownscribble.blogspot.com/2009/02/ten-people-i-dont-know-but-like-sharing.html" target="_blank">Scribble’s</a> challenge!
</p>
        <p>
Charlie Brooker - I agree with Scribbles.  The weekly column I look forward to.
</p>
        <p>
          <br />
Tom Waits - Wish he's play live over here more often, but at least I saw him in Hammersmith
a few years ago.  Genius.
</p>
        <p>
          <br />
Richard Dawkins - If he didn't exist, it would be necessary to invent him.
</p>
        <p>
          <br />
Stephen Fry - No comment required. 
<br /></p>
        <p>
Terry Gilliam - Brazil is one of my favourite movies. 
</p>
        <p>
The Coen Brothers (can I count them as 1 person?) - So is Fargo.  And The Big
Lebowski. 
<br /></p>
        <p>
Iain (M!) Banks - My favourite author.  It's been a while since he did anything
I liked as much as Use of Weapons, or The Bridge, but I still buy everything in hardback
as soon as it's out. 
<br /></p>
        <p>
Howe Gelb - Who introduced me to the whole Americana thing.  Giant Sand, Calexico,
Lambchop, The Handsome Family, the divine Neko Case, M Ward, Sparklehorse, Jim White,
and so on and on... 
</p>
        <p>
David Simon - The Wire.  The best TV show ever made. 
<br /></p>
        <p>
Bill Gates - Ok, evil empire and all that.  But he's indirectly responsible for
my income for the last decade, and whatever the faults of, say, Vista (from which
I'm writing this), I still can't get on with Linux (and can't, frankly, be bothered
to put the requistite time in).
</p>
        <img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=49b115e2-63f8-4254-9c88-7da74ea63c38" />
      </body>
      <title>Ten people I don&amp;rsquo;t know but like sharing the planet with</title>
      <guid isPermaLink="false">http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,49b115e2-63f8-4254-9c88-7da74ea63c38.aspx</guid>
      <link>http://www.bryanrobson.net/DasBlogCe/2009/02/19/Ten+People+I+Donrsquot+Know+But+Like+Sharing+The+Planet+With.aspx</link>
      <pubDate>Thu, 19 Feb 2009 23:50:20 GMT</pubDate>
      <description>&lt;p&gt;
I take &lt;a href="http://smalltownscribble.blogspot.com/2009/02/ten-people-i-dont-know-but-like-sharing.html" target="_blank"&gt;Scribble’s&lt;/a&gt; challenge!
&lt;/p&gt;
&lt;p&gt;
Charlie Brooker - I agree with Scribbles.&amp;#160; The weekly column I look forward to.
&lt;/p&gt;
&lt;p&gt;
&lt;br /&gt;
Tom Waits - Wish he's play live over here more often, but at least I saw him in Hammersmith
a few years ago.&amp;#160; Genius.
&lt;/p&gt;
&lt;p&gt;
&lt;br /&gt;
Richard Dawkins - If he didn't exist, it would be necessary to invent him.
&lt;/p&gt;
&lt;p&gt;
&lt;br /&gt;
Stephen Fry - No comment required. 
&lt;br /&gt;
&lt;/p&gt;
&lt;p&gt;
Terry Gilliam - Brazil is one of my favourite movies. 
&lt;/p&gt;
&lt;p&gt;
The Coen Brothers (can I count them as 1 person?) - So is Fargo.&amp;#160; And The Big
Lebowski. 
&lt;br /&gt;
&lt;/p&gt;
&lt;p&gt;
Iain (M!) Banks - My favourite author.&amp;#160; It's been a while since he did anything
I liked as much as Use of Weapons, or The Bridge, but I still buy everything in hardback
as soon as it's out. 
&lt;br /&gt;
&lt;/p&gt;
&lt;p&gt;
Howe Gelb - Who introduced me to the whole Americana thing.&amp;#160; Giant Sand, Calexico,
Lambchop, The Handsome Family, the divine Neko Case, M Ward, Sparklehorse, Jim White,
and so on and on... 
&lt;/p&gt;
&lt;p&gt;
David Simon - The Wire.&amp;#160; The best TV show ever made. 
&lt;br /&gt;
&lt;/p&gt;
&lt;p&gt;
Bill Gates - Ok, evil empire and all that.&amp;#160; But he's indirectly responsible for
my income for the last decade, and whatever the faults of, say, Vista (from which
I'm writing this), I still can't get on with Linux (and can't, frankly, be bothered
to put the requistite time in).
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=49b115e2-63f8-4254-9c88-7da74ea63c38" /&gt;</description>
      <comments>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,49b115e2-63f8-4254-9c88-7da74ea63c38.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://www.bryanrobson.net/DasBlogCe/Trackback.aspx?guid=fbe6029c-2b9c-4e16-acaf-a28aaa703f8d</trackback:ping>
      <pingback:server>http://www.bryanrobson.net/DasBlogCe/pingback.aspx</pingback:server>
      <pingback:target>http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,fbe6029c-2b9c-4e16-acaf-a28aaa703f8d.aspx</pingback:target>
      <dc:creator>Bryan</dc:creator>
      <wfw:comment>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,fbe6029c-2b9c-4e16-acaf-a28aaa703f8d.aspx</wfw:comment>
      <wfw:commentRss>http://www.bryanrobson.net/DasBlogCe/SyndicationService.asmx/GetEntryCommentsRss?guid=fbe6029c-2b9c-4e16-acaf-a28aaa703f8d</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
An interesting discussion on The Quackometer: <a href="http://www.quackometer.net/blog/2009/01/is-chiropractic-x-raying-illegal.html" target="_blank">Is
Chiropractic X-raying Illegal?</a></p>
        <p>
V and I went to a "What is chiropractic" talk in town before xmas - I can't say I
was exactly impressed. I may blog about it in more detail later. 
</p>
        <p>
It seems entirely appropriate to me that the magazine that was given to us at the
end of the presentation, and the association behind it, are known as Whopper. 
Sorry, I mean <a href="http://www.wopaa.org/" target="_blank">wopaa</a>.
</p>
        <img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=fbe6029c-2b9c-4e16-acaf-a28aaa703f8d" />
      </body>
      <title>The Quackometer: Is Chiropractic X-raying Illegal?</title>
      <guid isPermaLink="false">http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,fbe6029c-2b9c-4e16-acaf-a28aaa703f8d.aspx</guid>
      <link>http://www.bryanrobson.net/DasBlogCe/2009/01/30/The+Quackometer+Is+Chiropractic+Xraying+Illegal.aspx</link>
      <pubDate>Fri, 30 Jan 2009 16:31:26 GMT</pubDate>
      <description>&lt;p&gt;
An interesting discussion on The Quackometer: &lt;a href="http://www.quackometer.net/blog/2009/01/is-chiropractic-x-raying-illegal.html" target="_blank"&gt;Is
Chiropractic X-raying Illegal?&lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
V and I went to a "What is chiropractic" talk in town before xmas - I can't say I
was exactly impressed. I may blog about it in more detail later. 
&lt;/p&gt;
&lt;p&gt;
It seems entirely appropriate to me that the magazine that was given to us at the
end of the presentation, and the association behind it, are known as Whopper.&amp;nbsp;
Sorry, I mean &lt;a href="http://www.wopaa.org/" target="_blank"&gt;wopaa&lt;/a&gt;.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=fbe6029c-2b9c-4e16-acaf-a28aaa703f8d" /&gt;</description>
      <comments>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,fbe6029c-2b9c-4e16-acaf-a28aaa703f8d.aspx</comments>
      <category>Nonsense</category>
      <category>Pseudo-science</category>
    </item>
    <item>
      <trackback:ping>http://www.bryanrobson.net/DasBlogCe/Trackback.aspx?guid=462db039-9509-4c3b-b0e2-973dfc189679</trackback:ping>
      <pingback:server>http://www.bryanrobson.net/DasBlogCe/pingback.aspx</pingback:server>
      <pingback:target>http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,462db039-9509-4c3b-b0e2-973dfc189679.aspx</pingback:target>
      <dc:creator>Bryan</dc:creator>
      <wfw:comment>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,462db039-9509-4c3b-b0e2-973dfc189679.aspx</wfw:comment>
      <wfw:commentRss>http://www.bryanrobson.net/DasBlogCe/SyndicationService.asmx/GetEntryCommentsRss?guid=462db039-9509-4c3b-b0e2-973dfc189679</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <a href="http://www.heyquiz.com/quiz/cat_kill">
          <img src="http://www.heyquiz.com/bimage/14_91.jpg" alt="Is your cat plotting to kill you?" />
        </a>
        <p>
I knew it!
</p>
        <img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=462db039-9509-4c3b-b0e2-973dfc189679" />
      </body>
      <title>Fear of a fierce feline</title>
      <guid isPermaLink="false">http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,462db039-9509-4c3b-b0e2-973dfc189679.aspx</guid>
      <link>http://www.bryanrobson.net/DasBlogCe/2008/12/03/Fear+Of+A+Fierce+Feline.aspx</link>
      <pubDate>Wed, 03 Dec 2008 09:52:38 GMT</pubDate>
      <description>&lt;a href="http://www.heyquiz.com/quiz/cat_kill"&gt;&lt;img src="http://www.heyquiz.com/bimage/14_91.jpg" alt="Is your cat plotting to kill you?" /&gt;&lt;/a&gt; 
&lt;p&gt;
I knew it!
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=462db039-9509-4c3b-b0e2-973dfc189679" /&gt;</description>
      <comments>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,462db039-9509-4c3b-b0e2-973dfc189679.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://www.bryanrobson.net/DasBlogCe/Trackback.aspx?guid=7c448e41-7ffd-41ef-b462-b4d87fe86bfe</trackback:ping>
      <pingback:server>http://www.bryanrobson.net/DasBlogCe/pingback.aspx</pingback:server>
      <pingback:target>http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,7c448e41-7ffd-41ef-b462-b4d87fe86bfe.aspx</pingback:target>
      <dc:creator>Bryan</dc:creator>
      <wfw:comment>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,7c448e41-7ffd-41ef-b462-b4d87fe86bfe.aspx</wfw:comment>
      <wfw:commentRss>http://www.bryanrobson.net/DasBlogCe/SyndicationService.asmx/GetEntryCommentsRss?guid=7c448e41-7ffd-41ef-b462-b4d87fe86bfe</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <div class="imagefloatright">
          <img src="http://www.bryanrobson.net/DasBlogCe/content/binary/si-ngr-hdxb10.jpg" border="0" />
        </div>
        <p>
I've just bought the Netgear Wall-Plugged HD Ethernet Starter Kit from Novatech (<a href="http://www.novatech.co.uk/novatech/specpage.html?NGR-HDXB10" target="_blank">the
product page is here</a>). For the first time since I've been using them I was bit
disappointed in Novatech's service: the website showed 8 in stock available to collect
from Reading withing 24 hours, and it stayed that way until I got the email telling
me it was available to collect, 4 working days later. I know it's only a few days
more, but it annoys me that the stock availability message was inaccurate. I'm sure
it won't stop me using them, mind you...
</p>
        <p>
Anyway, the kit contains a pair of HDX101 ethernet-over-powerline adapters. The HD
part of the name is meant to tell you that they can provide enough bandwidth for streaming
high-def movies, as the adapters have a (theoretical) maximum speed of 200Mbps.
</p>
        <p>
I had been finding that while I could stream standard def movies over my wifi link,
high def was impossible, and it's just not practical to route ethernet cable between
my office (where the ADSL line comes in, and the Windows Home Server sits) and the
living room, so I thought I'd give the latest generation of powerline adapters a go.
</p>
        <p>
I have to say I'm impressed. Set-up is mindlessly easy: just plug them in and you're
away. High def (720p) movies are streaming flawlessly - I haven't got any 1080p movies
to try, but when I get hold of something I'll give it a go.
</p>
        <p>
The control panel app included on the installation CD allows you to check the speeds
you're getting, and it's showing that I'm getting 72Mbps from my server to my laptop,
and 54Mbps in the other direction. Yes, this is a lot less than the notional 200Mbps,
but then I'm not using gigabit ethernet yet, so my maximum was always going to be
100Mbps anyway. Since gigabit switches have become so cheap these days I'll probably
pick one up and see if that makes a difference - though I'll need a new card in my
homeserver as the on-board network card is 10/100.
</p>
        <p>
The control panel app also allows you to set QoS priority, even to the level of selecting
a specific port, so if you're using it mainly for streaming media you can tune it
to match. The default setting appeared to be priority for UDP, which seems fine so
far for me.
</p>
        <p>
When copying a large file from a WHS share to my Vista laptop I was getting speeds
of 3MB/s reported by TeraCopy, which isn't exactly blazing, but still better than
I got over wireless. I can probably get that rate up with QoS tuning, but I'll not
bother as it will mainly be used for media streaming anyway.
</p>
        <p>
So: highly recommended!
</p>
        <img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=7c448e41-7ffd-41ef-b462-b4d87fe86bfe" />
      </body>
      <title>Ethernet over Powerline (Netgear HDXB101)</title>
      <guid isPermaLink="false">http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,7c448e41-7ffd-41ef-b462-b4d87fe86bfe.aspx</guid>
      <link>http://www.bryanrobson.net/DasBlogCe/2008/08/06/Ethernet+Over+Powerline+Netgear+HDXB101.aspx</link>
      <pubDate>Wed, 06 Aug 2008 16:52:14 GMT</pubDate>
      <description>&lt;div class="imagefloatright"&gt;&lt;img src="http://www.bryanrobson.net/DasBlogCe/content/binary/si-ngr-hdxb10.jpg" border="0"&gt;
&lt;/div&gt;
&lt;p&gt;
I've just bought the Netgear Wall-Plugged HD Ethernet Starter Kit from Novatech (&lt;a href="http://www.novatech.co.uk/novatech/specpage.html?NGR-HDXB10" target="_blank"&gt;the
product page is here&lt;/a&gt;). For the first time since I've been using them I was bit
disappointed in Novatech's service: the website showed 8 in stock available to collect
from Reading withing 24 hours, and it stayed that way until I got the email telling
me it was available to collect, 4 working days later. I know it's only a few days
more, but it annoys me that the stock availability message was inaccurate. I'm sure
it won't stop me using them, mind you...
&lt;/p&gt;
&lt;p&gt;
Anyway, the kit contains a pair of HDX101 ethernet-over-powerline adapters. The HD
part of the name is meant to tell you that they can provide enough bandwidth for streaming
high-def movies, as the adapters have a (theoretical) maximum speed of 200Mbps.
&lt;/p&gt;
&lt;p&gt;
I had been finding that while I could stream standard def movies over my wifi link,
high def was impossible, and it's just not practical to route ethernet cable between
my office (where the ADSL line comes in, and the Windows Home Server sits) and the
living room, so I thought I'd give the latest generation of powerline adapters a go.
&lt;/p&gt;
&lt;p&gt;
I have to say I'm impressed. Set-up is mindlessly easy: just plug them in and you're
away. High def (720p) movies are streaming flawlessly - I haven't got any 1080p movies
to try, but when I get hold of something I'll give it a go.
&lt;/p&gt;
&lt;p&gt;
The control panel app included on the installation CD allows you to check the speeds
you're getting, and it's showing that I'm getting 72Mbps from my server to my laptop,
and 54Mbps in the other direction. Yes, this is a lot less than the notional 200Mbps,
but then I'm not using gigabit ethernet yet, so my maximum was always going to be
100Mbps anyway. Since gigabit switches have become so cheap these days I'll probably
pick one up and see if that makes a difference - though I'll need a new card in my
homeserver as the on-board network card is 10/100.
&lt;/p&gt;
&lt;p&gt;
The control panel app also allows you to set QoS priority, even to the level of selecting
a specific port, so if you're using it mainly for streaming media you can tune it
to match. The default setting appeared to be priority for UDP, which seems fine so
far for me.
&lt;/p&gt;
&lt;p&gt;
When copying a large file from a WHS share to my Vista laptop I was getting speeds
of 3MB/s reported by TeraCopy, which isn't exactly blazing, but still better than
I got over wireless. I can probably get that rate up with QoS tuning, but I'll not
bother as it will mainly be used for media streaming anyway.
&lt;/p&gt;
&lt;p&gt;
So: highly recommended!
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=7c448e41-7ffd-41ef-b462-b4d87fe86bfe" /&gt;</description>
      <comments>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,7c448e41-7ffd-41ef-b462-b4d87fe86bfe.aspx</comments>
      <category>Hardware</category>
    </item>
    <item>
      <trackback:ping>http://www.bryanrobson.net/DasBlogCe/Trackback.aspx?guid=01a80c39-7bd6-4c6f-9e1f-222a8de2f323</trackback:ping>
      <pingback:server>http://www.bryanrobson.net/DasBlogCe/pingback.aspx</pingback:server>
      <pingback:target>http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,01a80c39-7bd6-4c6f-9e1f-222a8de2f323.aspx</pingback:target>
      <dc:creator>Bryan</dc:creator>
      <wfw:comment>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,01a80c39-7bd6-4c6f-9e1f-222a8de2f323.aspx</wfw:comment>
      <wfw:commentRss>http://www.bryanrobson.net/DasBlogCe/SyndicationService.asmx/GetEntryCommentsRss?guid=01a80c39-7bd6-4c6f-9e1f-222a8de2f323</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <img src="http://www.bryanrobson.net/DasBlogCe/content/binary/she-and-him-2.jpg" border="0" />
        <p>
As if to make up for Scarlett Johansson's Waitsian waste of space, Zooey Deschanel's
album with <a href="http://www.mwardmusic.com/" target="_blank">M. Ward</a> under
the name <a href="http://www.sheandhim.com/" target="_blank">She &amp; Him</a> is
an absolute delight of summery pop. I've been listening to <em>Volume 1</em> quite
a lot recently, and I'm even happier to find that <a href="http://www.aquariumdrunkard.com" target="_blank">Aqarium
Drunkard</a> has a live set from this year's Newport Folk Festival <a href="http://www.aquariumdrunkard.com/2008/08/06/she-him-live-newport-folk-festival-8208/" target="_blank">available
to download</a>.
</p>
        <p>
So it's true: not all actors should avoid the recording studio. Helps when you have
someone as good as M. Ward behind you, mind...
</p>
        <img src="http://www.bryanrobson.net/DasBlogCe/content/binary/shehim300.jpg" border="0" />
        <img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=01a80c39-7bd6-4c6f-9e1f-222a8de2f323" />
      </body>
      <title>She &amp;amp; Him, live @ Newport</title>
      <guid isPermaLink="false">http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,01a80c39-7bd6-4c6f-9e1f-222a8de2f323.aspx</guid>
      <link>http://www.bryanrobson.net/DasBlogCe/2008/08/06/She+Amp+Him+Live+Newport.aspx</link>
      <pubDate>Wed, 06 Aug 2008 10:21:05 GMT</pubDate>
      <description>&lt;img src="http://www.bryanrobson.net/DasBlogCe/content/binary/she-and-him-2.jpg" border="0"&gt; 
&lt;p&gt;
As if to make up for Scarlett Johansson's Waitsian waste of space, Zooey Deschanel's
album with &lt;a href="http://www.mwardmusic.com/" target="_blank"&gt;M. Ward&lt;/a&gt; under
the name &lt;a href="http://www.sheandhim.com/" target="_blank"&gt;She &amp;amp; Him&lt;/a&gt; is
an absolute delight of summery pop. I've been listening to &lt;em&gt;Volume 1&lt;/em&gt; quite
a lot recently, and I'm even happier to find that &lt;a href="http://www.aquariumdrunkard.com" target="_blank"&gt;Aqarium
Drunkard&lt;/a&gt; has a live set from this year's Newport Folk Festival &lt;a href="http://www.aquariumdrunkard.com/2008/08/06/she-him-live-newport-folk-festival-8208/" target="_blank"&gt;available
to download&lt;/a&gt;.
&lt;/p&gt;
&lt;p&gt;
So it's true: not all actors should avoid the recording studio. Helps when you have
someone as good as M. Ward behind you, mind...
&lt;/p&gt;
&lt;img src="http://www.bryanrobson.net/DasBlogCe/content/binary/shehim300.jpg" border="0"&gt;&lt;img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=01a80c39-7bd6-4c6f-9e1f-222a8de2f323" /&gt;</description>
      <comments>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,01a80c39-7bd6-4c6f-9e1f-222a8de2f323.aspx</comments>
      <category>Music</category>
    </item>
    <item>
      <trackback:ping>http://www.bryanrobson.net/DasBlogCe/Trackback.aspx?guid=1bb580c2-e9ff-4cb7-a994-06692d07d18c</trackback:ping>
      <pingback:server>http://www.bryanrobson.net/DasBlogCe/pingback.aspx</pingback:server>
      <pingback:target>http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,1bb580c2-e9ff-4cb7-a994-06692d07d18c.aspx</pingback:target>
      <dc:creator>Bryan</dc:creator>
      <wfw:comment>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,1bb580c2-e9ff-4cb7-a994-06692d07d18c.aspx</wfw:comment>
      <wfw:commentRss>http://www.bryanrobson.net/DasBlogCe/SyndicationService.asmx/GetEntryCommentsRss?guid=1bb580c2-e9ff-4cb7-a994-06692d07d18c</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <div class="imagefloatright">
          <img alt="twosilvertrees" src="http://www.casadecalexico.com/wp-content/uploads/2008/07/silvertrees.jpg" />
        </div>
        <p>
          <a href="http://www.casadecalexico.com/">Calexico's</a> new album <i>Carried To Dust</i> is
due on September 9th on Touch and Go records.  A taster can be found here: <a href="http://www.touchandgorecords.com/calexicostream/Two_Silver_Trees.mp3">Two
Silver Trees</a></p>
        <p>
From what I've read so far, and listening to this track, it's sounding good, and a
move back to something more like their core sound than <i>Garden Ruin's</i> more mainstream
sound (mainstream in a very relative way, obviously!).
</p>
        <p>
I've got my tickets to see them at The Forum in October - they must be getting close
to being the band I've seen the most, and I've yet to be disappointed...
</p>
        <p>
New albums are due later this year from <a href="www.giantsand.com">Giant Sand</a> and <a href="http://www.lambchop.net/">Lambchop</a>,
too, so all in all it's a good year for alt-country/americana/whatever-the-hell-it-is...
(no, I've never been able to answer the question "what kind of music do they make"
about any of these bands!)
</p>
        <p>
Bonus tracks:
</p>
        <p>
Lambchop's <a href="http://stereogum.com/archives/album-art/new-lambchop-slipped-dissolved-and-loosed_010803.html">"Slipped
Dissolved And Loosed"</a></p>
        <p>
For a free download of Giant Sand's "Increment of Love" go to <a href="http://www.yeproc.com/stash">http://www.yeproc.com/stash</a>,
sign in (or sign up, all you need is an email address!), and enter the code PROVISIONS.
</p>
        <img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=1bb580c2-e9ff-4cb7-a994-06692d07d18c" />
      </body>
      <title>Calexico: Two Silver Trees (mp3)</title>
      <guid isPermaLink="false">http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,1bb580c2-e9ff-4cb7-a994-06692d07d18c.aspx</guid>
      <link>http://www.bryanrobson.net/DasBlogCe/2008/07/28/Calexico+Two+Silver+Trees+Mp3.aspx</link>
      <pubDate>Mon, 28 Jul 2008 11:18:55 GMT</pubDate>
      <description>&lt;div class="imagefloatright"&gt;&lt;img alt="twosilvertrees" src="http://www.casadecalexico.com/wp-content/uploads/2008/07/silvertrees.jpg"&gt;
&lt;/div&gt;
&lt;p&gt;
&lt;a href="http://www.casadecalexico.com/"&gt;Calexico's&lt;/a&gt; new album &lt;i&gt;Carried To Dust&lt;/i&gt; is
due on September 9th on Touch and Go records.&amp;nbsp; A taster can be found here: &lt;a href="http://www.touchandgorecords.com/calexicostream/Two_Silver_Trees.mp3"&gt;Two
Silver Trees&lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
From what I've read so far, and listening to this track, it's sounding good, and a
move back to something more like their core sound than &lt;i&gt;Garden Ruin's&lt;/i&gt; more mainstream
sound (mainstream in a very relative way, obviously!).
&lt;/p&gt;
&lt;p&gt;
I've got my tickets to see them at The Forum in October - they must be getting close
to being the band I've seen the most, and I've yet to be disappointed...
&lt;/p&gt;
&lt;p&gt;
New albums are due later this year from &lt;a href="www.giantsand.com"&gt;Giant Sand&lt;/a&gt; and &lt;a href="http://www.lambchop.net/"&gt;Lambchop&lt;/a&gt;,
too, so all in all it's a good year for alt-country/americana/whatever-the-hell-it-is...
(no, I've never been able to answer the question "what kind of music do they make"
about any of these bands!)
&lt;/p&gt;
&lt;p&gt;
Bonus tracks:
&lt;/p&gt;
&lt;p&gt;
Lambchop's &lt;a href="http://stereogum.com/archives/album-art/new-lambchop-slipped-dissolved-and-loosed_010803.html"&gt;"Slipped
Dissolved And Loosed"&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
For a free download of Giant Sand's "Increment of Love" go to &lt;a href="http://www.yeproc.com/stash"&gt;http://www.yeproc.com/stash&lt;/a&gt;,
sign in (or sign up, all you need is an email address!), and enter the code PROVISIONS.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=1bb580c2-e9ff-4cb7-a994-06692d07d18c" /&gt;</description>
      <comments>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,1bb580c2-e9ff-4cb7-a994-06692d07d18c.aspx</comments>
      <category>Music</category>
    </item>
    <item>
      <trackback:ping>http://www.bryanrobson.net/DasBlogCe/Trackback.aspx?guid=22e59986-a02a-4b5e-84cb-a82479a6105f</trackback:ping>
      <pingback:server>http://www.bryanrobson.net/DasBlogCe/pingback.aspx</pingback:server>
      <pingback:target>http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,22e59986-a02a-4b5e-84cb-a82479a6105f.aspx</pingback:target>
      <dc:creator>Bryan</dc:creator>
      <wfw:comment>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,22e59986-a02a-4b5e-84cb-a82479a6105f.aspx</wfw:comment>
      <wfw:commentRss>http://www.bryanrobson.net/DasBlogCe/SyndicationService.asmx/GetEntryCommentsRss?guid=22e59986-a02a-4b5e-84cb-a82479a6105f</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
I don't tend to make political or religious posts on my blog. Let's be honest, I don't
make many posts on <i>any</i> subject on my blog! So, please feel free to ignore this
post.
</p>
        <p>
However, I wanted to post on this subject. P Z Myers, the author of the blog <a href="http://scienceblogs.com/pharyngula/">Pharyngula</a> and
biologist at the University of Minnesota, Morris, has (intentionally) got himself
into the cross-hairs of Bill Donohue's Catholic League, for the (according to Donohue)
heinous crime of desecrating a cracker. The back-story can be found quite easily on
Pharyngula, and many other places around the web, so I won't go into it here.
</p>
        <p>
Myers has been taking a lot of abuse for his threats against crackers, with many idiots
describing his behaviour as inciting hatred of Catholics, and calling for his dismissal
from his position at UMM. As you may be able to tell from my tone so far, I'm entirely
on Myers side in this. It is not inciting hatred to say that someone's beliefs are
nonsense. It is not inciting hatred to say that they're idiots for believing something
ridiculous. It is not inciting hatred to damage a cracker.
</p>
        <p>
It may be inciting ridicule, or scorn, or contempt. But so what? There's no opinion,
belief, or practice that people shouldn't be able to treat with ridicule, scorn or
contempt. Someone may fervently and honestly believe that the cracker in question
is the actual body of their god. Who knows, David Icke may believe the nonsense he
spouts as well. I'm also sure that plenty of Daily Mail readers believe the tripe
printed in their paper. And I don't see why <i>any</i> of them should be exempt from
having the piss taken or their beliefs mocked. No one should.
</p>
        <p>
I completely fail to see why a religious belief is priviledged over any other belief
(and there are plenty of far more eloquent discussions on this subject at <a href="http://www.butterfliesandwheels.com/">Butterflies
&amp; Wheels</a> than I can make). I see no difference at all between saying that
the Bible is a dangerous book, stuffed full of appalling immorality, and providing
a lousy guide for how to behave, and making the same statement about the Daily Mail
or the Independant, say. I see no difference at all between saying that people are
idiots for having religious beliefs and saying that people are idiots for being Tories,
Greens, or Socialists.
</p>
        <p>
I'm also with Dawkins in his point that it makes no more sense to talk about a Christian
child than it does a Conservative child; both are systems of belief that people either
absorb as they're growing up (and in many cases fail to throw off), or they're belief
systems that they adopt as adults. In either case, it's a very different thing to
an innate characteristic such as the colour of their skin, or their gender, or their
sexual orientation, and certainly shouldn't be protected in the same way through anti-discrimination
legislation.
</p>
        <p>
Anyway, vent over. This blog shall now return to its normal program of sporadic posting
on non-controversial subjects.
</p>
        <img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=22e59986-a02a-4b5e-84cb-a82479a6105f" />
      </body>
      <title>Controversy</title>
      <guid isPermaLink="false">http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,22e59986-a02a-4b5e-84cb-a82479a6105f.aspx</guid>
      <link>http://www.bryanrobson.net/DasBlogCe/2008/07/25/Controversy.aspx</link>
      <pubDate>Fri, 25 Jul 2008 15:04:51 GMT</pubDate>
      <description>&lt;p&gt;
I don't tend to make political or religious posts on my blog. Let's be honest, I don't
make many posts on &lt;i&gt;any&lt;/i&gt; subject on my blog! So, please feel free to ignore this
post.
&lt;/p&gt;
&lt;p&gt;
However, I wanted to post on this subject. P Z Myers, the author of the blog &lt;a href="http://scienceblogs.com/pharyngula/"&gt;Pharyngula&lt;/a&gt; and
biologist at the University of Minnesota, Morris, has (intentionally) got himself
into the cross-hairs of Bill Donohue's Catholic League, for the (according to Donohue)
heinous crime of desecrating a cracker. The back-story can be found quite easily on
Pharyngula, and many other places around the web, so I won't go into it here.
&lt;/p&gt;
&lt;p&gt;
Myers has been taking a lot of abuse for his threats against crackers, with many idiots
describing his behaviour as inciting hatred of Catholics, and calling for his dismissal
from his position at UMM. As you may be able to tell from my tone so far, I'm entirely
on Myers side in this. It is not inciting hatred to say that someone's beliefs are
nonsense. It is not inciting hatred to say that they're idiots for believing something
ridiculous. It is not inciting hatred to damage a cracker.
&lt;/p&gt;
&lt;p&gt;
It may be inciting ridicule, or scorn, or contempt. But so what? There's no opinion,
belief, or practice that people shouldn't be able to treat with ridicule, scorn or
contempt. Someone may fervently and honestly believe that the cracker in question
is the actual body of their god. Who knows, David Icke may believe the nonsense he
spouts as well. I'm also sure that plenty of Daily Mail readers believe the tripe
printed in their paper. And I don't see why &lt;i&gt;any&lt;/i&gt; of them should be exempt from
having the piss taken or their beliefs mocked. No one should.
&lt;/p&gt;
&lt;p&gt;
I completely fail to see why a religious belief is priviledged over any other belief
(and there are plenty of far more eloquent discussions on this subject at &lt;a href="http://www.butterfliesandwheels.com/"&gt;Butterflies
&amp;amp; Wheels&lt;/a&gt; than I can make). I see no difference at all between saying that
the Bible is a dangerous book, stuffed full of appalling immorality, and providing
a lousy guide for how to behave, and making the same statement about the Daily Mail
or the Independant, say. I see no difference at all between saying that people are
idiots for having religious beliefs and saying that people are idiots for being Tories,
Greens, or Socialists.
&lt;/p&gt;
&lt;p&gt;
I'm also with Dawkins in his point that it makes no more sense to talk about a Christian
child than it does a Conservative child; both are systems of belief that people either
absorb as they're growing up (and in many cases fail to throw off), or they're belief
systems that they adopt as adults. In either case, it's a very different thing to
an innate characteristic such as the colour of their skin, or their gender, or their
sexual orientation, and certainly shouldn't be protected in the same way through anti-discrimination
legislation.
&lt;/p&gt;
&lt;p&gt;
Anyway, vent over. This blog shall now return to its normal program of sporadic posting
on non-controversial subjects.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=22e59986-a02a-4b5e-84cb-a82479a6105f" /&gt;</description>
      <comments>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,22e59986-a02a-4b5e-84cb-a82479a6105f.aspx</comments>
      <category>Life</category>
      <category>Politics</category>
    </item>
    <item>
      <trackback:ping>http://www.bryanrobson.net/DasBlogCe/Trackback.aspx?guid=2edaf966-7cbb-4d49-aac9-c0293554cdef</trackback:ping>
      <pingback:server>http://www.bryanrobson.net/DasBlogCe/pingback.aspx</pingback:server>
      <pingback:target>http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,2edaf966-7cbb-4d49-aac9-c0293554cdef.aspx</pingback:target>
      <dc:creator>Bryan</dc:creator>
      <wfw:comment>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,2edaf966-7cbb-4d49-aac9-c0293554cdef.aspx</wfw:comment>
      <wfw:commentRss>http://www.bryanrobson.net/DasBlogCe/SyndicationService.asmx/GetEntryCommentsRss?guid=2edaf966-7cbb-4d49-aac9-c0293554cdef</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
I can't believe I got a couple wrong...
</p>
        <a href="http://www.oneplusyou.com/bb/booze" style="color: #8A7A70; text-decoration: none; display: block; width: 158px; height: 94px; padding-left: 65px; padding-top: 128px; background: url(http://www.oneplusyou.com/q/img/bb_badges/booze.jpg) no-repeat; font-family: Times New Roman, sans-serif; font-size: 30px; font-weight: bold;">92%<span style="display: block; font-size: 12px; font-weight: normal; font-family: Arial;">DRUNKARD</span></a>
        <div>Created by OnePlusYou - <a href="http://www.oneplusyou.com">Online Dating</a></div>
        <p>
Via <a href="http://scienceblogs.com/grrlscientist/2008/07/name_that_drink_quiz.php">Living
the Scientific Life (Scientist, Interrupted)</a></p>
        <img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=2edaf966-7cbb-4d49-aac9-c0293554cdef" />
      </body>
      <title>Booze Test</title>
      <guid isPermaLink="false">http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,2edaf966-7cbb-4d49-aac9-c0293554cdef.aspx</guid>
      <link>http://www.bryanrobson.net/DasBlogCe/2008/07/25/Booze+Test.aspx</link>
      <pubDate>Fri, 25 Jul 2008 14:20:16 GMT</pubDate>
      <description>&lt;p&gt;
I can't believe I got a couple wrong...
&lt;/p&gt;
&lt;a href="http://www.oneplusyou.com/bb/booze" style="color: #8A7A70; text-decoration: none; display: block; width: 158px; height: 94px; padding-left: 65px; padding-top: 128px; background: url(http://www.oneplusyou.com/q/img/bb_badges/booze.jpg) no-repeat; font-family: Times New Roman, sans-serif; font-size: 30px; font-weight: bold;"&gt;92%&lt;span style="display: block; font-size: 12px; font-weight: normal; font-family: Arial;"&gt;DRUNKARD&lt;/span&gt;&lt;/a&gt;
&lt;div&gt;Created by OnePlusYou - &lt;a href="http://www.oneplusyou.com"&gt;Online Dating&lt;/a&gt;
&lt;/div&gt;
&lt;p&gt;
Via &lt;a href="http://scienceblogs.com/grrlscientist/2008/07/name_that_drink_quiz.php"&gt;Living
the Scientific Life (Scientist, Interrupted)&lt;/a&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=2edaf966-7cbb-4d49-aac9-c0293554cdef" /&gt;</description>
      <comments>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,2edaf966-7cbb-4d49-aac9-c0293554cdef.aspx</comments>
      <category>Funny</category>
      <category>Life</category>
      <category>Wasting time</category>
    </item>
    <item>
      <trackback:ping>http://www.bryanrobson.net/DasBlogCe/Trackback.aspx?guid=aa7cc328-0788-401a-9960-2863474a1385</trackback:ping>
      <pingback:server>http://www.bryanrobson.net/DasBlogCe/pingback.aspx</pingback:server>
      <pingback:target>http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,aa7cc328-0788-401a-9960-2863474a1385.aspx</pingback:target>
      <dc:creator>Bryan</dc:creator>
      <wfw:comment>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,aa7cc328-0788-401a-9960-2863474a1385.aspx</wfw:comment>
      <wfw:commentRss>http://www.bryanrobson.net/DasBlogCe/SyndicationService.asmx/GetEntryCommentsRss?guid=aa7cc328-0788-401a-9960-2863474a1385</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Two different bands, two different sets, two very different atmospheres...
</p>
        <p>
On Friday night V and I, and a couple of our friends, went to see Bon Jovi at Twickenham
Stadium.  As you'd hope, it was very much a greatest hits set, kicking off with <em>Living
on a Prayer</em>, and containing almost everything from the <em>Crossroads</em> greatest
hits album.
</p>
        <a href="http://www.flickr.com/photos/beckygarratt/2624695571/sizes/m/">
          <img alt="Bon Jovi" src="http://farm4.static.flickr.com/3111/2624695571_82866fd6e3.jpg" />
        </a>
        <p>
Bon Jovi photo by <a href="http://www.flickr.com/photos/beckygarratt/">beckygarratt</a></p>
        <p>
I couldn't say I was a huge fan; I know the obvious hits, and since V is a fan I'm
getting to know more of the album tracks, but I could sing along with at least the
choruses on easily more than half the set, so I was quite happy!
</p>
        <p>
Even though I far prefer Springsteen as an artist, I'd have to admit that I enjoyed
Bon Jovi's show even more that I did Bruce's last month at the Emirates: the sound
was better, the stage set better and more interesting, and the setlist itself was
better (even though I think Magic is a better E-Street album than any he's done for
many years, it all seems a bit Bruce-by-numbers to me - give me the early stuff any
day!).
</p>
        <p>
And then there was last night.
</p>
        <p>
          <a href="http://www.loureed.org/" target="_blank">Lou Reed</a>.
</p>
        <p>
Performing <em>Berlin</em>, in its entirety, at the Royal Albert Hall.
</p>
        <div class="imagefloatright">
          <img alt="Berlin, Live" src="http://www.bryanrobson.net/DasBlogCe/content/binary/berlinadvertFINAL.jpg" border="0" />
        </div>
        <p>
Slated on its release, <em>Berlin</em> has proved to be Reed's masterpiece, and its
live performance lived up to every expectation I had.  I had wondered if it would
be as moving and harrowing live as it is on record, and the sense of release after
the cathartic ending of <em>Sad Song</em> let me know that it had been...  the
rest of the audience seemed to agree with me: the performance earned a standing ovation.
</p>
        <p>
At first I thought the sound was a bit on the politely-quiet side, but when the full
band played that certainly wasn't the case.  Behind the band was a simple set
(with greenish walls!), onto which was projected images and films to complement the
music - so I now know what Caroline looks like.
</p>
        <p>
Reed was joined by a huge band that included a 12-piece choir, 8-piece orchestra,
his current touring band, and some faces from the past: Michael Rathke and Steve Hunter
on guitar, Rob Wasserman on upright bass, Fernando Saunders on a selection of bass,
and Tony "Thunder" Smith on drums.  Steve Bernstien and Jane Scarpantoni provided
keyboards and backing vocals.
</p>
        <p>
          <em>Berlin</em> took about an hour to perform, and after a short break the band came
back for an encore of <em>Satellite of Love</em>, <em>Rock and Roll</em>, and his
new song <em>The Power of the Heart </em>(which can be downloaded over <a href="http://love.cartier.com/" target="_blank">here</a>).
</p>
        <p>
Got to get the DVD when it comes out!
</p>
        <a href="http://www.flickr.com/photos/jkritzer/2627573026/sizes/m/">
          <img alt="Lou Reed" src="http://farm4.static.flickr.com/3029/2627573026_0cd219b793.jpg" />
        </a>
        <p>
Lou Reed photo by <a href="http://www.flickr.com/photos/jkritzer/">joshkritter</a></p>
        <img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=aa7cc328-0788-401a-9960-2863474a1385" />
      </body>
      <title>Weekend of music</title>
      <guid isPermaLink="false">http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,aa7cc328-0788-401a-9960-2863474a1385.aspx</guid>
      <link>http://www.bryanrobson.net/DasBlogCe/2008/07/01/Weekend+Of+Music.aspx</link>
      <pubDate>Tue, 01 Jul 2008 13:12:36 GMT</pubDate>
      <description>&lt;p&gt;
Two different bands, two different sets, two very different atmospheres...
&lt;/p&gt;
&lt;p&gt;
On Friday night V and I, and a couple of our friends, went to see Bon Jovi at Twickenham
Stadium.&amp;nbsp; As you'd hope, it was very much a greatest hits set, kicking off with &lt;em&gt;Living
on a Prayer&lt;/em&gt;, and containing almost everything from the &lt;em&gt;Crossroads&lt;/em&gt; greatest
hits album.
&lt;/p&gt;
&lt;a href="http://www.flickr.com/photos/beckygarratt/2624695571/sizes/m/"&gt;&lt;img alt="Bon Jovi" src="http://farm4.static.flickr.com/3111/2624695571_82866fd6e3.jpg"&gt;&lt;/a&gt; 
&lt;p&gt;
Bon Jovi photo by &lt;a href="http://www.flickr.com/photos/beckygarratt/"&gt;beckygarratt&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
I couldn't say I was a huge fan; I know the obvious hits, and since V is a fan I'm
getting to know more of the album tracks, but I could sing along with at least the
choruses on easily more than half the set, so I was quite happy!
&lt;/p&gt;
&lt;p&gt;
Even though I far prefer Springsteen as an artist, I'd have to admit that I enjoyed
Bon Jovi's show even more that I did Bruce's last month at the Emirates: the sound
was better, the stage set better and more interesting, and the setlist itself was
better (even though I think Magic is a better E-Street album than any he's done for
many years, it all seems a bit Bruce-by-numbers to me - give me the early stuff any
day!).
&lt;/p&gt;
&lt;p&gt;
And then there was last night.
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.loureed.org/" target=_blank&gt;Lou Reed&lt;/a&gt;.
&lt;/p&gt;
&lt;p&gt;
Performing &lt;em&gt;Berlin&lt;/em&gt;, in its entirety, at the Royal Albert Hall.
&lt;/p&gt;
&lt;div class=imagefloatright&gt;&lt;img alt="Berlin, Live" src="http://www.bryanrobson.net/DasBlogCe/content/binary/berlinadvertFINAL.jpg" border=0&gt;
&lt;/div&gt;
&lt;p&gt;
Slated on its release, &lt;em&gt;Berlin&lt;/em&gt; has proved to be Reed's masterpiece, and its
live performance lived up to every expectation I had.&amp;nbsp; I had wondered if it would
be as moving and harrowing live as it is on record, and the sense of release after
the cathartic ending of &lt;em&gt;Sad Song&lt;/em&gt; let me know that it had been...&amp;nbsp; the
rest of the audience seemed to agree with me: the performance earned a standing ovation.
&lt;/p&gt;
&lt;p&gt;
At first I thought the sound was a bit on the politely-quiet side, but when the full
band played that certainly wasn't the case.&amp;nbsp; Behind the band was a simple set
(with greenish walls!), onto which was projected images and films to complement the
music - so I now know what Caroline looks like.
&lt;/p&gt;
&lt;p&gt;
Reed was joined by a huge band that included a 12-piece choir, 8-piece orchestra,
his current touring band, and some faces from the past: Michael Rathke and Steve Hunter
on guitar, Rob Wasserman on upright bass, Fernando Saunders on a selection of bass,
and Tony "Thunder" Smith on drums.&amp;nbsp; Steve Bernstien and Jane Scarpantoni provided
keyboards and backing vocals.
&lt;/p&gt;
&lt;p&gt;
&lt;em&gt;Berlin&lt;/em&gt; took about an hour to perform, and after a short break the band came
back for an encore of &lt;em&gt;Satellite of Love&lt;/em&gt;, &lt;em&gt;Rock and Roll&lt;/em&gt;, and his
new song &lt;em&gt;The Power of the Heart &lt;/em&gt;(which can be downloaded over &lt;a href="http://love.cartier.com/" target=_blank&gt;here&lt;/a&gt;).
&lt;/p&gt;
&lt;p&gt;
Got to get the DVD when it comes out!
&lt;/p&gt;
&lt;a href="http://www.flickr.com/photos/jkritzer/2627573026/sizes/m/"&gt;&lt;img alt="Lou Reed" src="http://farm4.static.flickr.com/3029/2627573026_0cd219b793.jpg"&gt;&lt;/a&gt; 
&lt;p&gt;
Lou Reed photo by &lt;a href="http://www.flickr.com/photos/jkritzer/"&gt;joshkritter&lt;/a&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=aa7cc328-0788-401a-9960-2863474a1385" /&gt;</description>
      <comments>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,aa7cc328-0788-401a-9960-2863474a1385.aspx</comments>
      <category>Music</category>
    </item>
    <item>
      <trackback:ping>http://www.bryanrobson.net/DasBlogCe/Trackback.aspx?guid=a297b06f-021f-4176-b6db-7d5478c06bbd</trackback:ping>
      <pingback:server>http://www.bryanrobson.net/DasBlogCe/pingback.aspx</pingback:server>
      <pingback:target>http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,a297b06f-021f-4176-b6db-7d5478c06bbd.aspx</pingback:target>
      <dc:creator>Bryan</dc:creator>
      <wfw:comment>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,a297b06f-021f-4176-b6db-7d5478c06bbd.aspx</wfw:comment>
      <wfw:commentRss>http://www.bryanrobson.net/DasBlogCe/SyndicationService.asmx/GetEntryCommentsRss?guid=a297b06f-021f-4176-b6db-7d5478c06bbd</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Just a couple of CD storage ideas for our new house... All from <a href="http://www.watsons-on-the-web.co.uk">Watsons
on the Web</a></p>
        <hr />
        <p>
          <img alt="VICTORIA - CD / DVD / VIDEO Multimedia Cabinet" src="http://www.watsons-on-the-web.co.uk/public/pictures/products/standard/MS0618.jpg" width="189" />
          <br />
MS0618
</p>
        <p>
          <a href="http://www.watsons-on-the-web.co.uk/WatsonSite/product/MS0618.htm">VICTORIA
- CD / DVD / VIDEO Multimedia Cabinet</a>
        </p>
        <p>
          <b>£129</b>
        </p>
        <p>
Louvre fronted free standing multimedia cabinet with walnut finish and adjustable
shelves. Doors open up and contain even more storage space. Can hold up to 600 CDs
or 290 DVDs or a combination of CDs, DVDs and Videos. Has 4 castors for easy manoeuvrability. 
<br />
• SIZE: 102 (H) x 62 (W) x 34 (D) cm 
<br />
• MATERIALS: Particle Board &amp; PVC Veneer 
<br />
• COLOUR: Walnut 
<br />
• Easy Self Assembly 
<br />
• HEAVY ITEM: £19.95 delivery charge
</p>
        <hr />
        <p>
          <img alt="ARIZONA - Glass CD, DVD, Media Storage Shelves" src="http://www.watsons-on-the-web.co.uk/public/pictures/products/standard/MS9300.jpg" width="189" />
          <br />
MS9300
</p>
        <p>
          <a href="http://www.watsons-on-the-web.co.uk/WatsonSite/product/MS9300.htm">ARIZONA
- Glass CD, DVD, Media Storage Shelves</a>
        </p>
        <p>
          <b>£129</b>
        </p>
        <p>
Slimline free standing media / storage unit with 9 fully adjustable clear glass shelves
and chunky beech effect modern frame. Designed for DVDs, books, CDs, videos and general
display - one of the most stylish media / display towers we have seen! Capacity up
to 760 CDs or 350 DVDs. 
<br /><i>Wall securing strap supplied.</i><br />
• SIZE: 161.5 (h) x 87 (w) x 16 (d) cm 
<br />
• MATERIAL: Hollowboard - PVC Foil / 8mm tempered safety glass 
<br />
• COLOUR: Beech 
<br />
• Easy Self Assembly
</p>
        <hr />
        <p>
        </p>
        <tr>
          <td align="left" rowspan="4" valign="top">
            <img style="BORDER-RIGHT: rgb(0,135,203) 1px solid; BORDER-TOP: rgb(0,135,203) 1px solid; BORDER-LEFT: rgb(0,135,203) 1px solid; BORDER-BOTTOM: rgb(0,135,203) 1px solid" alt="CD / DVD / Video Multimedia Cabinet" src="http://www.watsons-on-the-web.co.uk/public/pictures/products/standard/76MS.jpg" width="189" />
            <br />
76MS
<div class="productName" style="MARGIN: 2px 0px 0px"><a href="http://www.watsons-on-the-web.co.uk/WatsonSite/product/76MS.htm">CD
/ DVD / Video Multimedia Cabinet</a></div><p></p></td>
          <td class="productPriceFrom" align="right" valign="top">
          </td>
        </tr>
        <tr>
          <td class="productDescription" style="PADDING-RIGHT: 0px; PADDING-LEFT: 0px; PADDING-BOTTOM: 12px; PADDING-TOP: 12px" valign="top" colspan="2">
            <font color="#ff0000">
              <font size="large">
                <b>£89</b>
              </font>
            </font>
            <p>
Versatile free standing open cabinet with 9 adjustable shelves. Holds up to 760 CDs
or 378 DVDs or 150 videos or a combination of these. Includes wall safety strap. 
<br /><span class="productFeatures"><span class="productDescription"><i>Available in Beech,
Pine, Oak or Mahogany finishes.</i></span><br /><br /><font color="#0087cb">•</font> SIZE: 160.5 (H) x 88 (W) x 24 (D) cm 
<br /><font color="#0087cb">•</font> MATERIALS: Particle board &amp; MDF 
<br /><font color="#0087cb">•</font> COLOUR: Mahogany, Beech, Pine, Oak 
<br /><font color="#0087cb">•</font> Easy Self Assembly 
<br /><font color="#0087cb">•</font> This unit is best with mix of media as there is a possiblilty
of slight shelf bowing depending on environment and humidity - the shelves will not
break as they are strong enough to withstand heavy loads.</span><br /></p>
          </td>
        </tr>
        <img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=a297b06f-021f-4176-b6db-7d5478c06bbd" />
      </body>
      <title>Ignore this post...</title>
      <guid isPermaLink="false">http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,a297b06f-021f-4176-b6db-7d5478c06bbd.aspx</guid>
      <link>http://www.bryanrobson.net/DasBlogCe/2008/05/12/Ignore+This+Post.aspx</link>
      <pubDate>Mon, 12 May 2008 12:59:07 GMT</pubDate>
      <description>&lt;p&gt;
Just a couple of CD storage ideas for our new house... All from &lt;a href="http://www.watsons-on-the-web.co.uk"&gt;Watsons
on the Web&lt;/a&gt;
&lt;/p&gt;
&lt;hr&gt;
&lt;p&gt;
&lt;img alt="VICTORIA - CD / DVD / VIDEO Multimedia Cabinet" src="http://www.watsons-on-the-web.co.uk/public/pictures/products/standard/MS0618.jpg" width=189&gt; 
&lt;br&gt;
MS0618
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.watsons-on-the-web.co.uk/WatsonSite/product/MS0618.htm"&gt;VICTORIA
- CD / DVD / VIDEO Multimedia Cabinet&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;b&gt;£129&lt;/b&gt;
&lt;/p&gt;
&lt;p&gt;
Louvre fronted free standing multimedia cabinet with walnut finish and adjustable
shelves. Doors open up and contain even more storage space. Can hold up to 600 CDs
or 290 DVDs or a combination of CDs, DVDs and Videos. Has 4 castors for easy manoeuvrability. 
&lt;br&gt;
• SIZE: 102 (H) x 62 (W) x 34 (D) cm 
&lt;br&gt;
• MATERIALS: Particle Board &amp;amp; PVC Veneer 
&lt;br&gt;
• COLOUR: Walnut 
&lt;br&gt;
• Easy Self Assembly 
&lt;br&gt;
• HEAVY ITEM: £19.95 delivery charge
&lt;/p&gt;
&lt;hr&gt;
&lt;p&gt;
&lt;img alt="ARIZONA - Glass CD, DVD, Media Storage Shelves" src="http://www.watsons-on-the-web.co.uk/public/pictures/products/standard/MS9300.jpg" width=189&gt; 
&lt;br&gt;
MS9300
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.watsons-on-the-web.co.uk/WatsonSite/product/MS9300.htm"&gt;ARIZONA
- Glass CD, DVD, Media Storage Shelves&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;b&gt;£129&lt;/b&gt;
&lt;/p&gt;
&lt;p&gt;
Slimline free standing media / storage unit with 9 fully adjustable clear glass shelves
and chunky beech effect modern frame. Designed for DVDs, books, CDs, videos and general
display - one of the most stylish media / display towers we have seen! Capacity up
to 760 CDs or 350 DVDs. 
&lt;br&gt;
&lt;i&gt;Wall securing strap supplied.&lt;/i&gt; 
&lt;br&gt;
• SIZE: 161.5 (h) x 87 (w) x 16 (d) cm 
&lt;br&gt;
• MATERIAL: Hollowboard - PVC Foil / 8mm tempered safety glass 
&lt;br&gt;
• COLOUR: Beech 
&lt;br&gt;
• Easy Self Assembly
&lt;/p&gt;
&lt;hr&gt;
&lt;p&gt;
&lt;tr&gt;
&lt;td align="left" rowspan="4" valign="top"&gt;
&lt;img style="BORDER-RIGHT: rgb(0,135,203) 1px solid; BORDER-TOP: rgb(0,135,203) 1px solid; BORDER-LEFT: rgb(0,135,203) 1px solid; BORDER-BOTTOM: rgb(0,135,203) 1px solid" alt="CD / DVD / Video Multimedia Cabinet" src="http://www.watsons-on-the-web.co.uk/public/pictures/products/standard/76MS.jpg" width=189&gt; 
&lt;br&gt;
76MS&gt;
&lt;div class=productName style="MARGIN: 2px 0px 0px"&gt;&lt;a href="http://www.watsons-on-the-web.co.uk/WatsonSite/product/76MS.htm"&gt;CD
/ DVD / Video Multimedia Cabinet&lt;/a&gt;
&lt;/div&gt;
&lt;p&gt;
&lt;/td&gt;
&lt;td class=productPriceFrom align="right" valign="top"&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td class=productDescription style="PADDING-RIGHT: 0px; PADDING-LEFT: 0px; PADDING-BOTTOM: 12px; PADDING-TOP: 12px" valign="top" colspan="2"&gt;
&lt;font color=#ff0000&gt;&lt;font size=large&gt;&lt;b&gt;£89&lt;/b&gt;&lt;/font&gt;&lt;/font&gt;&gt;
&lt;p&gt;
Versatile free standing open cabinet with 9 adjustable shelves. Holds up to 760 CDs
or 378 DVDs or 150 videos or a combination of these. Includes wall safety strap. 
&lt;br&gt;
&lt;span class=productFeatures&gt;&lt;span class=productDescription&gt;&lt;i&gt;Available in Beech,
Pine, Oak or Mahogany finishes.&lt;/i&gt; &lt;/span&gt;
&lt;br&gt;
&lt;br&gt;
&lt;font color=#0087cb&gt;•&lt;/font&gt; SIZE: 160.5 (H) x 88 (W) x 24 (D) cm 
&lt;br&gt;
&lt;font color=#0087cb&gt;•&lt;/font&gt; MATERIALS: Particle board &amp;amp; MDF 
&lt;br&gt;
&lt;font color=#0087cb&gt;•&lt;/font&gt; COLOUR: Mahogany, Beech, Pine, Oak 
&lt;br&gt;
&lt;font color=#0087cb&gt;•&lt;/font&gt; Easy Self Assembly 
&lt;br&gt;
&lt;font color=#0087cb&gt;•&lt;/font&gt; This unit is best with mix of media as there is a possiblilty
of slight shelf bowing depending on environment and humidity - the shelves will not
break as they are strong enough to withstand heavy loads.&lt;/span&gt; 
&lt;br&gt;
&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=a297b06f-021f-4176-b6db-7d5478c06bbd" /&gt;</description>
      <comments>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,a297b06f-021f-4176-b6db-7d5478c06bbd.aspx</comments>
      <category>Home</category>
    </item>
    <item>
      <trackback:ping>http://www.bryanrobson.net/DasBlogCe/Trackback.aspx?guid=0dbec69e-86ff-44a9-820d-304139ddd7e4</trackback:ping>
      <pingback:server>http://www.bryanrobson.net/DasBlogCe/pingback.aspx</pingback:server>
      <pingback:target>http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,0dbec69e-86ff-44a9-820d-304139ddd7e4.aspx</pingback:target>
      <dc:creator>Bryan</dc:creator>
      <wfw:comment>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,0dbec69e-86ff-44a9-820d-304139ddd7e4.aspx</wfw:comment>
      <wfw:commentRss>http://www.bryanrobson.net/DasBlogCe/SyndicationService.asmx/GetEntryCommentsRss?guid=0dbec69e-86ff-44a9-820d-304139ddd7e4</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
          <a href="http://www.hanselman.com/blog/">Scott Hanselman</a> has come up with a way
of describing us all... <a href="http://www.hanselman.com/blog/ALTNETGeekCodeShouldYouCareAboutTheseALTNETGuys.aspx">read
about it here.</a></p>
        <p>
I'm this:
</p>
        <div class="altnetgeekcode">
          <a href="http://www.hanselman.com/altnetgeekcode/default.aspx?q=IOC?:MOC?:TDD(NU):SCC(Lame):ORM(!):XPP(Lame++):DDD?:JSL(!?):CIS?:GoF(++)">IOC?:MOC?:TDD(NU):SCC(Lame):ORM(!):XPP(Lame++):DDD?:JSL(!?):CIS?:GoF(++)</a>
        </div>
        <p>
Yes, I know, I'm teh lame.
</p>
        <img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=0dbec69e-86ff-44a9-820d-304139ddd7e4" />
      </body>
      <title>ALT.NET Geek Code Generator</title>
      <guid isPermaLink="false">http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,0dbec69e-86ff-44a9-820d-304139ddd7e4.aspx</guid>
      <link>http://www.bryanrobson.net/DasBlogCe/2008/04/23/ALTNET+Geek+Code+Generator.aspx</link>
      <pubDate>Wed, 23 Apr 2008 16:23:33 GMT</pubDate>
      <description>&lt;p&gt;
&lt;a href="http://www.hanselman.com/blog/"&gt;Scott Hanselman&lt;/a&gt; has come up with a way
of describing us all... &lt;a href="http://www.hanselman.com/blog/ALTNETGeekCodeShouldYouCareAboutTheseALTNETGuys.aspx"&gt;read
about it here.&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
I'm this:
&lt;/p&gt;
&lt;div class="altnetgeekcode"&gt;&lt;a href="http://www.hanselman.com/altnetgeekcode/default.aspx?q=IOC?:MOC?:TDD(NU):SCC(Lame):ORM(!):XPP(Lame++):DDD?:JSL(!?):CIS?:GoF(++)"&gt;IOC?:MOC?:TDD(NU):SCC(Lame):ORM(!):XPP(Lame++):DDD?:JSL(!?):CIS?:GoF(++)&lt;/a&gt;
&lt;/div&gt;
&lt;p&gt;
Yes, I know, I'm teh lame.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=0dbec69e-86ff-44a9-820d-304139ddd7e4" /&gt;</description>
      <comments>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,0dbec69e-86ff-44a9-820d-304139ddd7e4.aspx</comments>
      <category>Coding</category>
      <category>Software</category>
    </item>
    <item>
      <trackback:ping>http://www.bryanrobson.net/DasBlogCe/Trackback.aspx?guid=01088358-c646-4683-b703-46d382b21caa</trackback:ping>
      <pingback:server>http://www.bryanrobson.net/DasBlogCe/pingback.aspx</pingback:server>
      <pingback:target>http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,01088358-c646-4683-b703-46d382b21caa.aspx</pingback:target>
      <dc:creator>Bryan</dc:creator>
      <wfw:comment>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,01088358-c646-4683-b703-46d382b21caa.aspx</wfw:comment>
      <wfw:commentRss>http://www.bryanrobson.net/DasBlogCe/SyndicationService.asmx/GetEntryCommentsRss?guid=01088358-c646-4683-b703-46d382b21caa</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
From the ever-marvelous <a href="http://xkcd.com/407/">XKCD</a>:
</p>
        <p>
          <img src="http://imgs.xkcd.com/comics/cheap_gps.png" />
        </p>
        <img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=01088358-c646-4683-b703-46d382b21caa" />
      </body>
      <title>Cheap GPS!</title>
      <guid isPermaLink="false">http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,01088358-c646-4683-b703-46d382b21caa.aspx</guid>
      <link>http://www.bryanrobson.net/DasBlogCe/2008/04/07/Cheap+GPS.aspx</link>
      <pubDate>Mon, 07 Apr 2008 09:49:23 GMT</pubDate>
      <description>&lt;p&gt;
From the ever-marvelous &lt;a href="http://xkcd.com/407/"&gt;XKCD&lt;/a&gt;:
&lt;/p&gt;
&lt;p&gt;
&lt;img src="http://imgs.xkcd.com/comics/cheap_gps.png" /&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=01088358-c646-4683-b703-46d382b21caa" /&gt;</description>
      <comments>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,01088358-c646-4683-b703-46d382b21caa.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://www.bryanrobson.net/DasBlogCe/Trackback.aspx?guid=1f77e802-1383-4bdc-b091-1956f71c0d62</trackback:ping>
      <pingback:server>http://www.bryanrobson.net/DasBlogCe/pingback.aspx</pingback:server>
      <pingback:target>http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,1f77e802-1383-4bdc-b091-1956f71c0d62.aspx</pingback:target>
      <dc:creator>Bryan</dc:creator>
      <wfw:comment>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,1f77e802-1383-4bdc-b091-1956f71c0d62.aspx</wfw:comment>
      <wfw:commentRss>http://www.bryanrobson.net/DasBlogCe/SyndicationService.asmx/GetEntryCommentsRss?guid=1f77e802-1383-4bdc-b091-1956f71c0d62</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
I've found a torrent of the show I was at on Dime (now I've managed to get my login
back!) <a href="http://www.dimeadozen.org/torrents-details.php?id=188094">here</a>.
</p>
        <img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=1f77e802-1383-4bdc-b091-1956f71c0d62" />
      </body>
      <title>Neil Young @ Hammersmith 2008-03-16</title>
      <guid isPermaLink="false">http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,1f77e802-1383-4bdc-b091-1956f71c0d62.aspx</guid>
      <link>http://www.bryanrobson.net/DasBlogCe/2008/04/06/Neil+Young+Hammersmith+20080316.aspx</link>
      <pubDate>Sun, 06 Apr 2008 18:34:22 GMT</pubDate>
      <description>&lt;p&gt;
I've found a torrent of the show I was at on Dime (now I've managed to get my login
back!) &lt;a href="http://www.dimeadozen.org/torrents-details.php?id=188094"&gt;here&lt;/a&gt;.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=1f77e802-1383-4bdc-b091-1956f71c0d62" /&gt;</description>
      <comments>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,1f77e802-1383-4bdc-b091-1956f71c0d62.aspx</comments>
      <category>Music</category>
    </item>
    <item>
      <trackback:ping>http://www.bryanrobson.net/DasBlogCe/Trackback.aspx?guid=488513c5-1e91-4d76-a087-b5d41c33902d</trackback:ping>
      <pingback:server>http://www.bryanrobson.net/DasBlogCe/pingback.aspx</pingback:server>
      <pingback:target>http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,488513c5-1e91-4d76-a087-b5d41c33902d.aspx</pingback:target>
      <dc:creator>Bryan</dc:creator>
      <wfw:comment>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,488513c5-1e91-4d76-a087-b5d41c33902d.aspx</wfw:comment>
      <wfw:commentRss>http://www.bryanrobson.net/DasBlogCe/SyndicationService.asmx/GetEntryCommentsRss?guid=488513c5-1e91-4d76-a087-b5d41c33902d</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">On Wednesday V and I went to see <a href="http://www.thefeeling.com/">The
Feeling</a> at Shepherds Bush Empire - one of my favourite venues in London. 
Let's be honest: given my music preferences (Neil, Tom, and so on), this was more
for V than for me (q.v. Bon Jovi @ Twickenham later this year!).  However, I
must admit to a guilty-pleasure-like enjoyment of the band.  Sod it, it's not
a guilty pleasure, they play unashamedly derivative pop, and why the hell not? 
Ok, they always make me think of 70s west coast rock, Queen, early 80s rock, and so
on, but then Oasis did the same thing with the 60s (and especially the Beatles, of
course) and for some reason they were more acceptable to like.<br /><br />
Anyway, I'm rambling.<br /><br />
The support was a band called <a href="http://www.palladiumofficial.com/">Palladium</a>. 
They were ok - I'll probably have a listen when they get their album out (May, they
said) - and were frighteningly young and skinny, but that's probably just my age and
weight being envious...  The keyboard player suffered the age-old curse of keyboard
players, of how do you play a static instrument and still jump around in a cool manner? 
(The answer being that you don't, of course).  Their set had the same sort of
influences as The Feeling - Huey Lewis came to mind a couple of times - and played
perfectly adequate pop...  They were also very keen on getting us to sign up
for their mailing list when we were leaving.  I get quite enough spam already,
thanks!<br /><br />
The Feeling played pretty much all of the tracks from both albums, and threw in a
cover of Electric Dreams during the main set (we left before the encore to beat the
crowd).  To be honest, they were better than I expected them to be - the band
are very tight, I like their songs, basically it was just a thoroughly enjoyable set. 
In many ways they're a band who are far easier to like than to admire, which makes
for easier listening than a lot of the other bands I like!<br /><p></p><img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=488513c5-1e91-4d76-a087-b5d41c33902d" /></body>
      <title>The Feeling - Shepherds Bush Empire 2008-03-19</title>
      <guid isPermaLink="false">http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,488513c5-1e91-4d76-a087-b5d41c33902d.aspx</guid>
      <link>http://www.bryanrobson.net/DasBlogCe/2008/03/21/The+Feeling+Shepherds+Bush+Empire+20080319.aspx</link>
      <pubDate>Fri, 21 Mar 2008 12:55:28 GMT</pubDate>
      <description>On Wednesday V and I went to see &lt;a href="http://www.thefeeling.com/"&gt;The Feeling&lt;/a&gt; at
Shepherds Bush Empire - one of my favourite venues in London.&amp;nbsp; Let's be honest:
given my music preferences (Neil, Tom, and so on), this was more for V than for me
(q.v. Bon Jovi @ Twickenham later this year!).&amp;nbsp; However, I must admit to a guilty-pleasure-like
enjoyment of the band.&amp;nbsp; Sod it, it's not a guilty pleasure, they play unashamedly
derivative pop, and why the hell not?&amp;nbsp; Ok, they always make me think of 70s west
coast rock, Queen, early 80s rock, and so on, but then Oasis did the same thing with
the 60s (and especially the Beatles, of course) and for some reason they were more
acceptable to like.&lt;br&gt;
&lt;br&gt;
Anyway, I'm rambling.&lt;br&gt;
&lt;br&gt;
The support was a band called &lt;a href="http://www.palladiumofficial.com/"&gt;Palladium&lt;/a&gt;.&amp;nbsp;
They were ok - I'll probably have a listen when they get their album out (May, they
said) - and were frighteningly young and skinny, but that's probably just my age and
weight being envious...&amp;nbsp; The keyboard player suffered the age-old curse of keyboard
players, of how do you play a static instrument and still jump around in a cool manner?&amp;nbsp;
(The answer being that you don't, of course).&amp;nbsp; Their set had the same sort of
influences as The Feeling - Huey Lewis came to mind a couple of times - and played
perfectly adequate pop...&amp;nbsp; They were also very keen on getting us to sign up
for their mailing list when we were leaving.&amp;nbsp; I get quite enough spam already,
thanks!&lt;br&gt;
&lt;br&gt;
The Feeling played pretty much all of the tracks from both albums, and threw in a
cover of Electric Dreams during the main set (we left before the encore to beat the
crowd).&amp;nbsp; To be honest, they were better than I expected them to be - the band
are very tight, I like their songs, basically it was just a thoroughly enjoyable set.&amp;nbsp;
In many ways they're a band who are far easier to like than to admire, which makes
for easier listening than a lot of the other bands I like!&lt;br&gt;
&lt;p&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=488513c5-1e91-4d76-a087-b5d41c33902d" /&gt;</description>
      <comments>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,488513c5-1e91-4d76-a087-b5d41c33902d.aspx</comments>
      <category>Music</category>
    </item>
    <item>
      <trackback:ping>http://www.bryanrobson.net/DasBlogCe/Trackback.aspx?guid=661f18f1-e23e-45a5-9965-436035ac806e</trackback:ping>
      <pingback:server>http://www.bryanrobson.net/DasBlogCe/pingback.aspx</pingback:server>
      <pingback:target>http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,661f18f1-e23e-45a5-9965-436035ac806e.aspx</pingback:target>
      <dc:creator>Bryan</dc:creator>
      <wfw:comment>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,661f18f1-e23e-45a5-9965-436035ac806e.aspx</wfw:comment>
      <wfw:commentRss>http://www.bryanrobson.net/DasBlogCe/SyndicationService.asmx/GetEntryCommentsRss?guid=661f18f1-e23e-45a5-9965-436035ac806e</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">It's a real pity I let my login for <a href="http://www.dimeadozen.org/">Dime</a> lapse,
as there are a bunch of boots of Neil's shows available at the moment.  There's
a list at <a href="http://www.rustradio.org/torrentlist.php">Rust Radio</a>. 
I've found a download link for the 2008-03-05 show in MegaUpload <a href="http://www.megaupload.com/?d=UVCK7R8W">here</a>,
but I really want to get the show I was at!  If anyone knows of a download link
for the 2008-03-06 show, I'd be grateful..!<br /><p></p><img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=661f18f1-e23e-45a5-9965-436035ac806e" /></body>
      <title>Neil live on Dime</title>
      <guid isPermaLink="false">http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,661f18f1-e23e-45a5-9965-436035ac806e.aspx</guid>
      <link>http://www.bryanrobson.net/DasBlogCe/2008/03/21/Neil+Live+On+Dime.aspx</link>
      <pubDate>Fri, 21 Mar 2008 12:34:09 GMT</pubDate>
      <description>It's a real pity I let my login for &lt;a href="http://www.dimeadozen.org/"&gt;Dime&lt;/a&gt; lapse,
as there are a bunch of boots of Neil's shows available at the moment.&amp;nbsp; There's
a list at &lt;a href="http://www.rustradio.org/torrentlist.php"&gt;Rust Radio&lt;/a&gt;.&amp;nbsp;
I've found a download link for the 2008-03-05 show in MegaUpload &lt;a href="http://www.megaupload.com/?d=UVCK7R8W"&gt;here&lt;/a&gt;,
but I really want to get the show I was at!&amp;nbsp; If anyone knows of a download link
for the 2008-03-06 show, I'd be grateful..!&lt;br&gt;
&lt;p&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=661f18f1-e23e-45a5-9965-436035ac806e" /&gt;</description>
      <comments>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,661f18f1-e23e-45a5-9965-436035ac806e.aspx</comments>
      <category>Music</category>
    </item>
    <item>
      <trackback:ping>http://www.bryanrobson.net/DasBlogCe/Trackback.aspx?guid=5b600c70-72f3-40c9-9f2e-d4f7a46f0aed</trackback:ping>
      <pingback:server>http://www.bryanrobson.net/DasBlogCe/pingback.aspx</pingback:server>
      <pingback:target>http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,5b600c70-72f3-40c9-9f2e-d4f7a46f0aed.aspx</pingback:target>
      <dc:creator>Bryan</dc:creator>
      <wfw:comment>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,5b600c70-72f3-40c9-9f2e-d4f7a46f0aed.aspx</wfw:comment>
      <wfw:commentRss>http://www.bryanrobson.net/DasBlogCe/SyndicationService.asmx/GetEntryCommentsRss?guid=5b600c70-72f3-40c9-9f2e-d4f7a46f0aed</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Well, that was <em>good</em>.  Interesting set - shame he didn't play <em>Cinnamon
Girl</em>, <em>Cortez</em>, or <em>Rocking In The Free World</em> - but wow, what
a show.  I'd like to give a good kicking to whoever it was thought that clapping
along (out of time) to <em>Old King</em> was a good idea..!
</p>
        <p>
It felt like 2 gigs - 1 hour of acoustic material, then 1:20 of electric.  Bargain!
</p>
        <p>
I've seen his extended guitar work-outs described as being thought of as transcendental
by some and interminable by others - count me in the former category. <i>No Hidden
Path</i> isn't my favourite of these, but there's something mesmerising and elemental
in his playing that keeps me from ever getting bored, even if I find myself drifting
a bit - and wondering if the big yellow light on the right of the stage was meant
to symbolise the sun?
</p>
        <p>
Set list from <a href="http://www.sugarmtn.org/sets/20080306.html">Sugar Mountain</a>:
</p>
        <ol>
          <li>
From Hank To Hendrix 
</li>
          <li>
Ambulance Blues 
</li>
          <li>
Kansas 
</li>
          <li>
A Man Needs A Maid 
</li>
          <li>
Try 
</li>
          <li>
Harvest 
</li>
          <li>
After The Gold Rush 
</li>
          <li>
Old King 
</li>
          <li>
Love Art Blues 
</li>
          <li>
Heart Of Gold 
</li>
          <li>
Out On The Weekend 
</li>
          <li>
Old Man 
<br />
--- 
</li>
          <li>
The Loner 
</li>
          <li>
Dirty Old Man 
</li>
          <li>
Spirit Road 
</li>
          <li>
Down By The River 
</li>
          <li>
Hey Hey, My My 
</li>
          <li>
Roll Another Number 
</li>
          <li>
Oh, Lonesome Me 
</li>
          <li>
The Believer 
</li>
          <li>
Powderfinger 
</li>
          <li>
No Hidden Path 
<br />
--- 
</li>
          <li>
Fuckin' Up 
</li>
        </ol>
        <img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=5b600c70-72f3-40c9-9f2e-d4f7a46f0aed" />
      </body>
      <title>Neil Young - Hammersmith Apollo</title>
      <guid isPermaLink="false">http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,5b600c70-72f3-40c9-9f2e-d4f7a46f0aed.aspx</guid>
      <link>http://www.bryanrobson.net/DasBlogCe/2008/03/07/Neil+Young+Hammersmith+Apollo.aspx</link>
      <pubDate>Fri, 07 Mar 2008 09:37:45 GMT</pubDate>
      <description>&lt;p&gt;
Well, that was &lt;em&gt;good&lt;/em&gt;.&amp;nbsp; Interesting set - shame he didn't play &lt;em&gt;Cinnamon
Girl&lt;/em&gt;, &lt;em&gt;Cortez&lt;/em&gt;, or &lt;em&gt;Rocking In The Free World&lt;/em&gt; - but wow, what
a show.&amp;nbsp; I'd like to give a good kicking to whoever it was thought that clapping
along (out of time) to &lt;em&gt;Old King&lt;/em&gt; was a good idea..!
&lt;/p&gt;
&lt;p&gt;
It felt like 2 gigs - 1 hour of acoustic material, then 1:20 of electric.&amp;nbsp; Bargain!
&lt;/p&gt;
&lt;p&gt;
I've seen his extended guitar work-outs described as being thought of as transcendental
by some and interminable by others - count me in the former category. &lt;i&gt;No Hidden
Path&lt;/i&gt; isn't my favourite of these, but there's something mesmerising and elemental
in his playing that keeps me from ever getting bored, even if I find myself drifting
a bit - and wondering if the big yellow light on the right of the stage was meant
to symbolise the sun?
&lt;/p&gt;
&lt;p&gt;
Set list from &lt;a href="http://www.sugarmtn.org/sets/20080306.html"&gt;Sugar Mountain&lt;/a&gt;:
&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;
From Hank To Hendrix 
&lt;li&gt;
Ambulance Blues 
&lt;li&gt;
Kansas 
&lt;li&gt;
A Man Needs A Maid 
&lt;li&gt;
Try 
&lt;li&gt;
Harvest 
&lt;li&gt;
After The Gold Rush 
&lt;li&gt;
Old King 
&lt;li&gt;
Love Art Blues 
&lt;li&gt;
Heart Of Gold 
&lt;li&gt;
Out On The Weekend 
&lt;li&gt;
Old Man 
&lt;br&gt;
--- 
&lt;li&gt;
The Loner 
&lt;li&gt;
Dirty Old Man 
&lt;li&gt;
Spirit Road 
&lt;li&gt;
Down By The River 
&lt;li&gt;
Hey Hey, My My 
&lt;li&gt;
Roll Another Number 
&lt;li&gt;
Oh, Lonesome Me 
&lt;li&gt;
The Believer 
&lt;li&gt;
Powderfinger 
&lt;li&gt;
No Hidden Path 
&lt;br&gt;
--- 
&lt;li&gt;
Fuckin' Up 
&lt;/li&gt;
&lt;/ol&gt;
&lt;img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=5b600c70-72f3-40c9-9f2e-d4f7a46f0aed" /&gt;</description>
      <comments>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,5b600c70-72f3-40c9-9f2e-d4f7a46f0aed.aspx</comments>
      <category>Music</category>
    </item>
    <item>
      <trackback:ping>http://www.bryanrobson.net/DasBlogCe/Trackback.aspx?guid=3b8c40a7-0a35-4f59-bf0d-29cad5d54931</trackback:ping>
      <pingback:server>http://www.bryanrobson.net/DasBlogCe/pingback.aspx</pingback:server>
      <pingback:target>http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,3b8c40a7-0a35-4f59-bf0d-29cad5d54931.aspx</pingback:target>
      <dc:creator>Bryan</dc:creator>
      <wfw:comment>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,3b8c40a7-0a35-4f59-bf0d-29cad5d54931.aspx</wfw:comment>
      <wfw:commentRss>http://www.bryanrobson.net/DasBlogCe/SyndicationService.asmx/GetEntryCommentsRss?guid=3b8c40a7-0a35-4f59-bf0d-29cad5d54931</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <a href="http://traumaqueen.net/?p=772">Wise
words indeed.</a>
        <img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=3b8c40a7-0a35-4f59-bf0d-29cad5d54931" />
      </body>
      <title>Lifestyle advice from Trauma Queen</title>
      <guid isPermaLink="false">http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,3b8c40a7-0a35-4f59-bf0d-29cad5d54931.aspx</guid>
      <link>http://www.bryanrobson.net/DasBlogCe/2008/03/06/Lifestyle+Advice+From+Trauma+Queen.aspx</link>
      <pubDate>Thu, 06 Mar 2008 14:19:45 GMT</pubDate>
      <description>&lt;a href="http://traumaqueen.net/?p=772"&gt;Wise words indeed.&lt;/a&gt;&lt;img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=3b8c40a7-0a35-4f59-bf0d-29cad5d54931" /&gt;</description>
      <comments>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,3b8c40a7-0a35-4f59-bf0d-29cad5d54931.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://www.bryanrobson.net/DasBlogCe/Trackback.aspx?guid=be205ec3-3db4-47a5-9f48-55b2d6e71239</trackback:ping>
      <pingback:server>http://www.bryanrobson.net/DasBlogCe/pingback.aspx</pingback:server>
      <pingback:target>http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,be205ec3-3db4-47a5-9f48-55b2d6e71239.aspx</pingback:target>
      <dc:creator>Bryan</dc:creator>
      <wfw:comment>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,be205ec3-3db4-47a5-9f48-55b2d6e71239.aspx</wfw:comment>
      <wfw:commentRss>http://www.bryanrobson.net/DasBlogCe/SyndicationService.asmx/GetEntryCommentsRss?guid=be205ec3-3db4-47a5-9f48-55b2d6e71239</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <div class="imagefloatright">
          <img src="http://www.bryanrobson.net/DasBlogCe/content/binary/NeilYoung_6.jpg" border="0" />
        </div>
        <p>
Neil Young, tonight, at the Hammersmith Apollo.
</p>
        <p>
I can't wait.
</p>
        <img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=be205ec3-3db4-47a5-9f48-55b2d6e71239" />
      </body>
      <title>Neil Young - Hammersmith Apollo</title>
      <guid isPermaLink="false">http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,be205ec3-3db4-47a5-9f48-55b2d6e71239.aspx</guid>
      <link>http://www.bryanrobson.net/DasBlogCe/2008/03/06/Neil+Young+Hammersmith+Apollo.aspx</link>
      <pubDate>Thu, 06 Mar 2008 11:57:39 GMT</pubDate>
      <description>&lt;div class=imagefloatright&gt;&lt;img src="http://www.bryanrobson.net/DasBlogCe/content/binary/NeilYoung_6.jpg" border=0&gt;
&lt;/div&gt;
&lt;p&gt;
Neil Young, tonight, at the Hammersmith Apollo.
&lt;/p&gt;
&lt;p&gt;
I can't wait.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=be205ec3-3db4-47a5-9f48-55b2d6e71239" /&gt;</description>
      <comments>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,be205ec3-3db4-47a5-9f48-55b2d6e71239.aspx</comments>
      <category>Music</category>
    </item>
    <item>
      <trackback:ping>http://www.bryanrobson.net/DasBlogCe/Trackback.aspx?guid=5ac3d49a-ae0f-45e5-90b6-26aa06f5217f</trackback:ping>
      <pingback:server>http://www.bryanrobson.net/DasBlogCe/pingback.aspx</pingback:server>
      <pingback:target>http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,5ac3d49a-ae0f-45e5-90b6-26aa06f5217f.aspx</pingback:target>
      <dc:creator>Bryan</dc:creator>
      <wfw:comment>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,5ac3d49a-ae0f-45e5-90b6-26aa06f5217f.aspx</wfw:comment>
      <wfw:commentRss>http://www.bryanrobson.net/DasBlogCe/SyndicationService.asmx/GetEntryCommentsRss?guid=5ac3d49a-ae0f-45e5-90b6-26aa06f5217f</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <div class="imagefloatright">
          <img src="http://www.bryanrobson.net/DasBlogCe/content/binary/Rainer-Westwood.jpg" border="0" width="300" height="300" alt="Westwood Sessions Volume I cover" />
        </div>
        <p>
Since I now have a shiny new iPod Classic 160GB*, and since iTunes is now offering
DRM-free music at decent bit-rates, and since I didn't want to wait for delivery from
the OW OM Store in the US, I've just purchased Rainer's <em>Westwood Sessions Volume
I</em>.
</p>
        <p>
I've got everything else of Rainer's that I can find (all his CDs, mainly bought from <a href="http://www.glitterhouse.com/">Glitterhouse</a>),
and the two live recordings at <a href="http://www.archive.org/details/Rainer">Archive.org</a>,
so it's no real suprise that I think it's great!  
</p>
        <p>
Rainer was a Tucson-based guitarist, master of dobro and slide guitar, who played
with among others <a href="http://www.giantsand.com/">Giant Sand</a>, Robert Plant,
Billy Gibbons (of ZZ Top - see Rainer's <em>The Texas Tapes</em>), and released a
handful of recordings before his tragic death in 1997.  The website at <a href="http://www.raineroftucson.com">www.raineroftucson.com</a> seems
to have gone, but a biog can be found at <a href="http://en.wikipedia.org/wiki/Rainer_Ptacek">Wikipedia</a>.
</p>
        <p>
The Westwood Sessions were recently found and dusted off by Jim Blackwood, and release
on Howe Gelb's OW OM label.  They're unreleased tapes from sessions Rainer did
between <em>Barefoot Rock</em> and <em>Worried Spirits</em>, and contain some real
gems.  It's a very bluesy record, including songs such as J B Lenoir's <em>Voodoo
Music</em>, but for me the highlights are Rainer's own songs, especially <em>Zealots
Serve Dogmas</em> and <em>I Am A Sinner</em>.
</p>
        <p>
The last word goes to Howe:
</p>
        <div class="boxed">
          <p>
"these unearthed tapes were recorded in the best studio tucson had to offer at the
time and were recently rediscovered and dusted off properly by jim blackwood. and
so now, with its scorching tumble, we all get to stumble into celebrating rainer,
with this joyous sonic soar that soothes the sorrow of his death 10 years ago. he
was my best friend. he was my brother. and he taught without really teaching." 
<br />
- howe gelb
</p>
        </div>
        <br />
        <p>
          <em>* I've been waiting for an MP3 player that has sufficient capacity for ages...
I used to have an Empeg Car with 70GB of discs in it, and had filled that by the time
I changed my car 2 years ago (though I never got around to putting it in this car),
so I've been wanting something big enough to take everything I've got...  Now,
as a car player the iPod is just rubbish compared to the Empeg.  I'm using it
with a tape adapter so the sound is... well, ok at best, and I really do miss the
flexible playlist structure of the Empeg.  And the ease of use in the car. 
And the extra features like filters.  And being able to see what's playing all
the time.  The radio never worked properly, mind you!  But, overall, I'm
very happy with the iPod.</em>
        </p>
        <img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=5ac3d49a-ae0f-45e5-90b6-26aa06f5217f" />
      </body>
      <title>Rainer: Westwood Sessions Volume I</title>
      <guid isPermaLink="false">http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,5ac3d49a-ae0f-45e5-90b6-26aa06f5217f.aspx</guid>
      <link>http://www.bryanrobson.net/DasBlogCe/2008/02/01/Rainer+Westwood+Sessions+Volume+I.aspx</link>
      <pubDate>Fri, 01 Feb 2008 10:35:20 GMT</pubDate>
      <description>&lt;div class="imagefloatright"&gt;&lt;img src="http://www.bryanrobson.net/DasBlogCe/content/binary/Rainer-Westwood.jpg" border="0" width="300" height="300" alt="Westwood Sessions Volume I cover"&gt; 
&lt;/div&gt;
&lt;p&gt;
Since I now have a shiny new iPod Classic 160GB*, and since iTunes is now offering
DRM-free music at decent bit-rates, and since I didn't want to wait for delivery from
the OW OM Store in the US, I've just purchased Rainer's &lt;em&gt;Westwood Sessions Volume
I&lt;/em&gt;.
&lt;/p&gt;
&lt;p&gt;
I've got everything else of Rainer's that I can find (all his CDs, mainly bought from &lt;a href="http://www.glitterhouse.com/"&gt;Glitterhouse&lt;/a&gt;),
and the two live recordings at &lt;a href="http://www.archive.org/details/Rainer"&gt;Archive.org&lt;/a&gt;,
so it's no real suprise that I think it's great!&amp;nbsp; 
&lt;/p&gt;
&lt;p&gt;
Rainer was a Tucson-based guitarist, master of dobro and slide guitar, who played
with among others &lt;a href="http://www.giantsand.com/"&gt;Giant Sand&lt;/a&gt;, Robert Plant,
Billy Gibbons (of ZZ Top - see Rainer's &lt;em&gt;The Texas Tapes&lt;/em&gt;), and released a
handful of recordings before his tragic death in 1997.&amp;nbsp; The website at &lt;a href="http://www.raineroftucson.com"&gt;www.raineroftucson.com&lt;/a&gt; seems
to have gone, but a biog can be found at &lt;a href="http://en.wikipedia.org/wiki/Rainer_Ptacek"&gt;Wikipedia&lt;/a&gt;.
&lt;/p&gt;
&lt;p&gt;
The Westwood Sessions were recently found and dusted off by Jim Blackwood, and release
on Howe Gelb's OW OM label.&amp;nbsp; They're unreleased tapes from sessions Rainer did
between &lt;em&gt;Barefoot Rock&lt;/em&gt; and &lt;em&gt;Worried Spirits&lt;/em&gt;, and contain some real
gems.&amp;nbsp; It's a very bluesy record, including songs such as J B Lenoir's &lt;em&gt;Voodoo
Music&lt;/em&gt;, but for me the highlights are Rainer's own songs, especially &lt;em&gt;Zealots
Serve Dogmas&lt;/em&gt; and &lt;em&gt;I Am A Sinner&lt;/em&gt;.
&lt;/p&gt;
&lt;p&gt;
The last word goes to Howe:
&lt;/p&gt;
&lt;div class="boxed"&gt;
&lt;p&gt;
"these unearthed tapes were recorded in the best studio tucson had to offer at the
time and were recently rediscovered and dusted off properly by jim blackwood. and
so now, with its scorching tumble, we all get to stumble into celebrating rainer,
with this joyous sonic soar that soothes the sorrow of his death 10 years ago. he
was my best friend. he was my brother. and he taught without really teaching." 
&lt;br&gt;
- howe gelb
&lt;/p&gt;
&lt;/div&gt;
&lt;br&gt;
&lt;p&gt;
&lt;em&gt;* I've been waiting for an MP3 player that has sufficient capacity for ages...
I used to have an Empeg Car with 70GB of discs in it, and had filled that by the time
I changed my car 2 years ago (though I never got around to putting it in this car),
so I've been wanting something big enough to take everything I've got...&amp;nbsp; Now,
as a car player the iPod is just rubbish compared to the Empeg.&amp;nbsp; I'm using it
with a tape adapter so the sound is... well, ok at best, and I really do miss the
flexible playlist structure of the Empeg.&amp;nbsp; And the ease of use in the car.&amp;nbsp;
And the extra features like filters.&amp;nbsp; And being able to see what's playing all
the time.&amp;nbsp; The radio never worked properly, mind you!&amp;nbsp; But, overall, I'm
very happy with the iPod.&lt;/em&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=5ac3d49a-ae0f-45e5-90b6-26aa06f5217f" /&gt;</description>
      <comments>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,5ac3d49a-ae0f-45e5-90b6-26aa06f5217f.aspx</comments>
      <category>Music</category>
    </item>
    <item>
      <trackback:ping>http://www.bryanrobson.net/DasBlogCe/Trackback.aspx?guid=c1d91d2c-62b9-446f-b3db-abe51e11804b</trackback:ping>
      <pingback:server>http://www.bryanrobson.net/DasBlogCe/pingback.aspx</pingback:server>
      <pingback:target>http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,c1d91d2c-62b9-446f-b3db-abe51e11804b.aspx</pingback:target>
      <dc:creator>Bryan</dc:creator>
      <wfw:comment>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,c1d91d2c-62b9-446f-b3db-abe51e11804b.aspx</wfw:comment>
      <wfw:commentRss>http://www.bryanrobson.net/DasBlogCe/SyndicationService.asmx/GetEntryCommentsRss?guid=c1d91d2c-62b9-446f-b3db-abe51e11804b</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Here's a quick techy post to start the New Year... 
</p>
        <p>
In SQL Management Studio you can save your results pane as a CSV file. All you need
to do is select the grid, right-click, and select "Save Results as...". Nice and simple
(and a quick way of getting your data out of the DB). 
</p>
        <p>
However (and there just had to be a "however", didn't there?), the CSV file that's
saved can't be read by the .Net <code>StreamReader</code> object, as the Encoding
can't be detected (it's <code>Encoding.Unicode</code>) automatically. Initially, I
did try to detect it using the BOM (Byte Order Mark) of the file, but there isn't
one. In the end, I checked that the 1st and 3rd characters were value zero, which
for the files I'm interested in is perfectly valid, and if so explicitly set the Encoding
to Unicode. If you do this, make sure you set <code>detectEncodingFromByteOrderMarks</code> to <em>False</em>.
</p>
        <p>
          <b>
            <i>Updated 2008-01-18:</i>
          </b> And now, just to annoy me (it's a conspiracy,
I tell you!), the file has miraculously acquired a BOM: FF FE, which according to <a href="http://en.wikipedia.org/wiki/Byte_Order_Mark">Wikipedia </a>means
it's UTF-16 little-endian. Not sure if the endian-ness (or whatever the term is) makes
a difference, as <code>Encoding.Unicode</code> still works.
</p>
        <p>
I've no idea where this BOM has come from - does anyone know if SQL Management Studio
was updated through Windows Update recently?
</p>
        <img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=c1d91d2c-62b9-446f-b3db-abe51e11804b" />
      </body>
      <title>SQL Management Studio CSV files into StreamReader</title>
      <guid isPermaLink="false">http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,c1d91d2c-62b9-446f-b3db-abe51e11804b.aspx</guid>
      <link>http://www.bryanrobson.net/DasBlogCe/2008/01/15/SQL+Management+Studio+CSV+Files+Into+StreamReader.aspx</link>
      <pubDate>Tue, 15 Jan 2008 13:48:35 GMT</pubDate>
      <description>&lt;p&gt;
Here's a quick techy post to start the New Year... 
&lt;/p&gt;
&lt;p&gt;
In SQL Management Studio you can save your results pane as a CSV file. All you need
to do is select the grid, right-click, and select "Save Results as...". Nice and simple
(and a quick way of getting your data out of the DB). 
&lt;/p&gt;
&lt;p&gt;
However (and there just had to be a "however", didn't there?), the CSV file that's
saved can't be read by the .Net &lt;code&gt;StreamReader&lt;/code&gt; object, as the Encoding
can't be detected (it's &lt;code&gt;Encoding.Unicode&lt;/code&gt;) automatically. Initially, I
did try to detect it using the BOM (Byte Order Mark) of the file, but there isn't
one. In the end, I checked that the 1st and 3rd characters were value zero, which
for the files I'm interested in is perfectly valid, and if so explicitly set the Encoding
to Unicode. If you do this, make sure you set &lt;code&gt;detectEncodingFromByteOrderMarks&lt;/code&gt; to &lt;em&gt;False&lt;/em&gt;.
&lt;/p&gt;
&lt;p&gt;
&lt;b&gt;&lt;i&gt;Updated 2008-01-18:&lt;/i&gt;&lt;/b&gt;&amp;nbsp;And now, just to annoy me (it's a conspiracy,
I tell you!), the file has miraculously acquired a BOM: FF FE, which according to &lt;a href="http://en.wikipedia.org/wiki/Byte_Order_Mark"&gt;Wikipedia &lt;/a&gt;means
it's UTF-16 little-endian. Not sure if the endian-ness (or whatever the term is) makes
a difference, as &lt;code&gt;Encoding.Unicode&lt;/code&gt; still works.
&lt;/p&gt;
&lt;p&gt;
I've no idea where this BOM has come from - does anyone know if SQL Management Studio
was updated through Windows Update recently?
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=c1d91d2c-62b9-446f-b3db-abe51e11804b" /&gt;</description>
      <comments>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,c1d91d2c-62b9-446f-b3db-abe51e11804b.aspx</comments>
      <category>Coding</category>
      <category>Work</category>
    </item>
    <item>
      <trackback:ping>http://www.bryanrobson.net/DasBlogCe/Trackback.aspx?guid=b19e4823-cd71-40ee-af8a-1ecd4a90cf9a</trackback:ping>
      <pingback:server>http://www.bryanrobson.net/DasBlogCe/pingback.aspx</pingback:server>
      <pingback:target>http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,b19e4823-cd71-40ee-af8a-1ecd4a90cf9a.aspx</pingback:target>
      <dc:creator>Bryan</dc:creator>
      <wfw:comment>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,b19e4823-cd71-40ee-af8a-1ecd4a90cf9a.aspx</wfw:comment>
      <wfw:commentRss>http://www.bryanrobson.net/DasBlogCe/SyndicationService.asmx/GetEntryCommentsRss?guid=b19e4823-cd71-40ee-af8a-1ecd4a90cf9a</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Somehow I had managed to let my hosting account expire.  However, after paying
the invoice and asking nicely, those kind people at <a href="http://www.WebHost4Life.com/default.asp?refid=fclarkeltd">WebHost4Life</a> restored
everything...
</p>
        <p>
Well, what's new?
</p>
        <p>
I've got tickets for the following gigs:
</p>
        <p>
          <span>2008-03-06 - Neil Young (Hammersmith Apollo) 
<br />
2008-03-19 - The Feeling (Shepherds Bush Empire) 
<br />
2008-05-30 - Bruce Springsteen (Emirates Stadium) 
<br />
2008-06-27 - Bon Jovi (Twickenham)</span>
        </p>
        <p>
          <span>...which should all be fun!  I may have a spare ticket for Neil Young -
depending if PH still wants it.</span>
        </p>
        <p>
          <span>I was given <em>The Traveling Wilburys Collection</em> for xmas - great couple
of albums, especially <em>Volume One</em>.</span>
        </p>
        <p>
          <span>V and I are off up to the parent's place this weekend - it's my Dad's birthday
the week after, so we're going out for dinner.  Just for a change we're taking
V's car rather than mine - it will be the longest journey the car has ever made, so
should blow away a few cobwebs.</span>
        </p>
        <p>
Right, that's it.  Update done.  Back to work...
</p>
        <img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=b19e4823-cd71-40ee-af8a-1ecd4a90cf9a" />
      </body>
      <title>...And we're back!</title>
      <guid isPermaLink="false">http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,b19e4823-cd71-40ee-af8a-1ecd4a90cf9a.aspx</guid>
      <link>http://www.bryanrobson.net/DasBlogCe/2008/01/15/And+Were+Back.aspx</link>
      <pubDate>Tue, 15 Jan 2008 13:36:56 GMT</pubDate>
      <description>&lt;p&gt;
Somehow I had managed to let my hosting account expire.&amp;nbsp; However, after paying
the invoice and asking nicely, those kind people at &lt;a href="http://www.WebHost4Life.com/default.asp?refid=fclarkeltd"&gt;WebHost4Life&lt;/a&gt; restored
everything...
&lt;/p&gt;
&lt;p&gt;
Well, what's new?
&lt;/p&gt;
&lt;p&gt;
I've got tickets for the following gigs:
&lt;/p&gt;
&lt;p&gt;
&lt;span&gt;2008-03-06 - Neil Young (Hammersmith Apollo) 
&lt;br&gt;
2008-03-19 - The Feeling (Shepherds Bush Empire) 
&lt;br&gt;
2008-05-30 - Bruce Springsteen (Emirates Stadium) 
&lt;br&gt;
2008-06-27 - Bon Jovi (Twickenham)&lt;/span&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;span&gt;...which should all be fun!&amp;nbsp; I may have a spare ticket for Neil Young -
depending if PH still wants it.&lt;/span&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;span&gt;I was given &lt;em&gt;The Traveling Wilburys Collection&lt;/em&gt; for xmas - great couple
of albums, especially &lt;em&gt;Volume One&lt;/em&gt;.&lt;/span&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;span&gt;V and I are off up to the parent's place this weekend - it's my Dad's birthday
the week after, so we're going out for dinner.&amp;nbsp; Just for a change we're taking
V's car rather than mine - it will be the longest journey the car has ever made, so
should blow away a few cobwebs.&lt;/span&gt;
&lt;/p&gt;
&lt;p&gt;
Right, that's it.&amp;nbsp; Update done.&amp;nbsp; Back to work...
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=b19e4823-cd71-40ee-af8a-1ecd4a90cf9a" /&gt;</description>
      <comments>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,b19e4823-cd71-40ee-af8a-1ecd4a90cf9a.aspx</comments>
      <category>Life</category>
    </item>
    <item>
      <trackback:ping>http://www.bryanrobson.net/DasBlogCe/Trackback.aspx?guid=76d6d6e8-9b94-4f20-9bed-c642e586f75b</trackback:ping>
      <pingback:server>http://www.bryanrobson.net/DasBlogCe/pingback.aspx</pingback:server>
      <pingback:target>http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,76d6d6e8-9b94-4f20-9bed-c642e586f75b.aspx</pingback:target>
      <dc:creator>Bryan</dc:creator>
      <wfw:comment>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,76d6d6e8-9b94-4f20-9bed-c642e586f75b.aspx</wfw:comment>
      <wfw:commentRss>http://www.bryanrobson.net/DasBlogCe/SyndicationService.asmx/GetEntryCommentsRss?guid=76d6d6e8-9b94-4f20-9bed-c642e586f75b</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <div class="imagefloatright">
          <a title="Photo Sharing" href="http://www.flickr.com/photos/bryanrobson/1731768208/">
            <img height="240" alt="The players" src="http://farm3.static.flickr.com/2118/1731768208_33c6abdd28_m.jpg" width="180" />
          </a>
        </div>
        <p>
A couple of weeks ago I had the honour and great pleasure of playing one of the finest
golf courses in the world: <a href="http://www.royaltroon.co.uk/">Royal Troon</a>.
We've been talking about it for years, as Alan's father, Jim, is a member there, so
we were able to get signed in by a member (which makes life a *lot* cheaper and easier!).
</p>
        <p>
We played the Old Course on the Sunday, and the Portland Course on the Monday. Fortunately
the rain held off when we played the Old Course, and while I had a terrible round
(I don't even want to think about my score!), it was glorious. The Monday was a different
story - horizontal rain! Still enjoyable, in its way, but if I'd been anywhere else
I'd have called it a day at the turn.
</p>
        <p>
We stayed at the <a href="http://www.piersland.co.uk/">Piersland Hotel</a>, which
I can thoroughly recommend, even if they didn't let us have the sound up on the telly
for the England-France rugby match...
</p>
        <p>
          <a href="http://www.flickr.com/photos/bryanrobson/sets/72157602670925268/detail/ ">More
photos are available</a> on my Flickr photostream.
</p>
        <img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=76d6d6e8-9b94-4f20-9bed-c642e586f75b" />
      </body>
      <title>A round at Troon</title>
      <guid isPermaLink="false">http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,76d6d6e8-9b94-4f20-9bed-c642e586f75b.aspx</guid>
      <link>http://www.bryanrobson.net/DasBlogCe/2007/10/26/A+Round+At+Troon.aspx</link>
      <pubDate>Fri, 26 Oct 2007 11:45:33 GMT</pubDate>
      <description>&lt;div class="imagefloatright"&gt;&lt;a title="Photo Sharing" href="http://www.flickr.com/photos/bryanrobson/1731768208/"&gt;&lt;img height="240" alt="The players" src="http://farm3.static.flickr.com/2118/1731768208_33c6abdd28_m.jpg" width="180" /&gt;&lt;/a&gt; 
&lt;/div&gt;
&lt;p&gt;
A couple of weeks ago I had the honour and great pleasure of playing one of the finest
golf courses in the world: &lt;a href="http://www.royaltroon.co.uk/"&gt;Royal Troon&lt;/a&gt;.
We've been talking about it for years, as Alan's father, Jim, is a member there, so
we were able to get signed in by a member (which makes life a *lot* cheaper and easier!).
&lt;/p&gt;
&lt;p&gt;
We played the Old Course on the Sunday, and the Portland Course on the Monday. Fortunately
the rain held off when we played the Old Course, and while I had a terrible round
(I don't even want to think about my score!), it was glorious. The Monday was a different
story - horizontal rain! Still enjoyable, in its way, but if I'd been anywhere else
I'd have called it a day at the turn.
&lt;/p&gt;
&lt;p&gt;
We stayed at the &lt;a href="http://www.piersland.co.uk/"&gt;Piersland Hotel&lt;/a&gt;, which
I can thoroughly recommend, even if they didn't let us have the sound up on the telly
for the England-France rugby match...
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.flickr.com/photos/bryanrobson/sets/72157602670925268/detail/ "&gt;More
photos are available&lt;/a&gt; on my Flickr photostream.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=76d6d6e8-9b94-4f20-9bed-c642e586f75b" /&gt;</description>
      <comments>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,76d6d6e8-9b94-4f20-9bed-c642e586f75b.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://www.bryanrobson.net/DasBlogCe/Trackback.aspx?guid=d857fe98-2140-4047-98ad-ab084c2ef711</trackback:ping>
      <pingback:server>http://www.bryanrobson.net/DasBlogCe/pingback.aspx</pingback:server>
      <pingback:target>http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,d857fe98-2140-4047-98ad-ab084c2ef711.aspx</pingback:target>
      <dc:creator>Bryan</dc:creator>
      <wfw:comment>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,d857fe98-2140-4047-98ad-ab084c2ef711.aspx</wfw:comment>
      <wfw:commentRss>http://www.bryanrobson.net/DasBlogCe/SyndicationService.asmx/GetEntryCommentsRss?guid=d857fe98-2140-4047-98ad-ab084c2ef711</wfw:commentRss>
      <slash:comments>1</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <div class="imagefloatright">
          <img alt="Howe Gelb and Thøger Lund" src="http://www.bryanrobson.net/dasblogce/content/binary/howegelb_thogerlund.jpg" />
        </div>
        <p>
Last night I paid my first visit to <a title="The Luminaire" href="http://www.theluminaire.co.uk/">The
Luminaire</a>, "London's most agreeable live music venue", which isn't too
far from the truth, and saw what his support acts were referring to as Howeapalooza
(well, we had <a title="Howe-fest" href="http://www.bryanrobson.net/DasBlogCe/2007/05/03/Review+Howe+Gelb+Friends.aspx">Howe-fest</a>,
so why not?), the final stop on <a title="Howe Gelb" href="http://www.howegelb.com/">Howe
Gelb</a>'s latest tour.
</p>
        <p>
The Luminaire is on Kilburn High Road, and seems to be easy enough to get to by tube,
though last night I drove.  Parking was simple enough - I found somewhere round
the corner which was unrestricted after 6:30pm.  I do prefer to drive to gigs
in London if I can - the inability to drink is more than outweighed by normally getting
home a lot quicker and with a seat all the way..!
</p>
        <p>
 
</p>
        <div class="imagefloatright">
          <img height="200" alt="Kate Maki" src="http://www.bryanrobson.net/dasblogce/content/binary/KateMaki.jpg" width="200" />
        </div>
        <p>
There were two opening acts, the first being <a title="Kate Maki" href="http://www.katemaki.com/">Kate
Maki</a>, who played a great little set, accompanied at various times by <a title="Lonna Kelley" href="http://lonnakelley.com/">Lonna
Kelley</a> (the second support act), and Thøger Lund from Howe's band. 
I really enjoyed her set - enough so that I've just bought FLAC downloads of her first
two albums from the <a title="Kate Maki on the Zunior website" href="http://www.zunior.com/advanced_search_result.php?keywords=kate+maki">Zunior
website</a> (only around a tenner for both, which is a hell of a lot better than iTunes
manage!).  I've only heard the most recent so far, <em>The Sun Will Find Us</em>,
which is an interesting listen.  At heart it's a folk album, I'd say, but with
splashes of horns to add colour.  She's certainly someone to keep an eye on,
and I'll definitely seek her out when she tours again over here.
</p>
        <div class="imagefloatright">
          <img height="301" alt="Lonna Kelley" src="http://www.bryanrobson.net/dasblogce/content/binary/LonnaKelley.jpg" width="200" />
        </div>
        <p>
I first saw Lonna Kelley when she played with Howe at the Barbican earlier this year,
where V and I thought she was doing a startled-deer-in-the-headlights thing in front
of a crowd that size.  After seeing her in the tiny Luminaire, I'm no longer
so sure.  She seems to be quite diffident, or maybe shy, in front of the audience. 
Anyway, she and her band played for the better part of an hour, joined for the last
number by Howe, Thøger and Kate.  To be honest, I'm not really a fan. 
I thought the set was just a bit... dull, really.  I'm not sure what it is that
puts me off.  Her band were great, especially the guitarist, but it just never
took off.  I don't think there's enough variation for me to keep interested,
and her voice, good as it is, begins to wear me out after a while.  It's a quiet,
breathy, thing that leave me wishing she'd just throw her head back and put some force
into it all...
</p>
        <p>
Then we had Howe.  Ramblin' Howe Gelb, as Kate called him.  I think we probably
had about 25% anecdote to 75% music (surely Howe hasn't reached his anecdotage just
yet?)  Anyway, the intimate set was heavy with material from his latest release, <em>Upside
Down Home 2007</em>.  Thøger Lund provided the only accompaniment, on upright
bass, until the very end of the set, when they were joined by the Kate and Lonna.  
</p>
        <p>
Howe claims to not have enough time to write any songs any more, not that he seems
to be slowing down his rate of record release, but instead draws on his bank of songs
(which he described as a bank that has only one customer, so won't be running out
any time soon)
</p>
        <p>
I can't remember much of the setlist, but we certainly had <em>The Hangin' Judge</em>, <em>Down
On Town</em> (originally from <em>Valley of Rain</em>, the first <a title="Giant Sand" href="http://www.giantsand.com/">Giant
Sand</a> album, which Howe said they were remastering for a 25th anniversary reissue. 
Well, he said they were removing some of the 80's production, anyway...), <em>Seldom
Matters</em>, and <em>Shiver</em> ("our Coke commercial").  For the
encore (not that he left the stage), we had <em>Paradise Hereabouts</em> and <em>Get
To Leave</em> from the <em>Sno Angel</em> album, with backing vocals provided by Kate
and Lonna (and, half-heartedly, from the audience).  While playing <em>Get To
Leave</em> it seemed like Howe didn't want to do so, segueing into <em>Ring of Fire</em>,
something else (the name of which escapes me, and which I can't believe I've forgotten),
and ending up with a few choruses of <em>Hey Jude</em>.
</p>
        <p>
Then the set was over, and I left for the drive back to Reading (which was fast enough
to make up for the drive along the M40 getting there!)
</p>
        <img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=d857fe98-2140-4047-98ad-ab084c2ef711" />
      </body>
      <title>Howeapalooza</title>
      <guid isPermaLink="false">http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,d857fe98-2140-4047-98ad-ab084c2ef711.aspx</guid>
      <link>http://www.bryanrobson.net/DasBlogCe/2007/09/19/Howeapalooza.aspx</link>
      <pubDate>Wed, 19 Sep 2007 15:11:36 GMT</pubDate>
      <description>&lt;div class="imagefloatright"&gt;&lt;img alt="Howe Gelb and Th&amp;#xF8;ger Lund" src="http://www.bryanrobson.net/dasblogce/content/binary/howegelb_thogerlund.jpg" /&gt;
&lt;/div&gt;
&lt;p&gt;
Last night I paid my first visit to &lt;a title="The Luminaire" href="http://www.theluminaire.co.uk/"&gt;The
Luminaire&lt;/a&gt;, &amp;quot;London's most agreeable live music venue&amp;quot;, which isn't too
far from the truth, and saw what his support acts were referring to as Howeapalooza
(well, we had &lt;a title="Howe-fest" href="http://www.bryanrobson.net/DasBlogCe/2007/05/03/Review+Howe+Gelb+Friends.aspx"&gt;Howe-fest&lt;/a&gt;,
so why not?), the final stop on &lt;a title="Howe Gelb" href="http://www.howegelb.com/"&gt;Howe
Gelb&lt;/a&gt;'s latest tour.
&lt;/p&gt;
&lt;p&gt;
The Luminaire is on Kilburn High Road, and seems to be easy enough to get to by tube,
though last night I drove.&amp;#xA0; Parking was simple enough - I found somewhere round
the corner which was unrestricted after 6:30pm.&amp;#xA0; I do prefer to drive to gigs
in London if I can - the inability to drink is more than outweighed by normally getting
home a lot quicker and with a seat all the way..!
&lt;/p&gt;
&lt;p&gt;
&amp;#xA0;
&lt;/p&gt;
&lt;div class="imagefloatright"&gt;&lt;img height="200" alt="Kate Maki" src="http://www.bryanrobson.net/dasblogce/content/binary/KateMaki.jpg" width="200" /&gt;
&lt;/div&gt;
&lt;p&gt;
There were two opening acts, the first being &lt;a title="Kate Maki" href="http://www.katemaki.com/"&gt;Kate
Maki&lt;/a&gt;, who played a great little set, accompanied at various times by &lt;a title="Lonna Kelley" href="http://lonnakelley.com/"&gt;Lonna
Kelley&lt;/a&gt; (the second support act), and Th&amp;#xF8;ger Lund from Howe's band.&amp;#xA0;
I really enjoyed her set - enough so that I've just bought FLAC downloads of her first
two albums from the &lt;a title="Kate Maki on the Zunior website" href="http://www.zunior.com/advanced_search_result.php?keywords=kate+maki"&gt;Zunior
website&lt;/a&gt; (only around a tenner for both, which is a hell of a lot better than iTunes
manage!).&amp;#xA0; I've only heard the most recent so far, &lt;em&gt;The Sun Will Find Us&lt;/em&gt;,
which is an interesting listen.&amp;#xA0; At heart it's a folk album, I'd say, but with
splashes of horns to add colour.&amp;#xA0; She's certainly someone to keep an eye on,
and I'll definitely seek her out when she tours again over here.
&lt;/p&gt;
&lt;div class="imagefloatright"&gt;&lt;img height="301" alt="Lonna Kelley" src="http://www.bryanrobson.net/dasblogce/content/binary/LonnaKelley.jpg" width="200" /&gt; 
&lt;/div&gt;
&lt;p&gt;
I first saw Lonna Kelley when she played with Howe at the Barbican earlier this year,
where V and I thought she was doing a startled-deer-in-the-headlights thing in front
of a crowd that size.&amp;#xA0; After seeing her in the tiny Luminaire, I'm no longer
so sure.&amp;#xA0; She seems to be quite diffident, or maybe shy, in front of the audience.&amp;#xA0;
Anyway, she and her band played for the better part of an hour, joined for the last
number by Howe, Th&amp;#xF8;ger and Kate.&amp;#xA0; To be honest, I'm not really a fan.&amp;#xA0;
I thought the set was just a bit... dull, really.&amp;#xA0; I'm not sure what it is that
puts me off.&amp;#xA0; Her band were great, especially the guitarist, but it just never
took off.&amp;#xA0; I don't think there's enough variation for me to keep interested,
and her voice, good as it is, begins to wear me out after a while.&amp;#xA0; It's a quiet,
breathy, thing that leave me wishing she'd just throw her head back and put some force
into it all...
&lt;/p&gt;
&lt;p&gt;
Then we had Howe.&amp;#xA0; Ramblin' Howe Gelb, as Kate called him.&amp;#xA0; I think we probably
had about 25% anecdote to 75% music (surely Howe hasn't reached his anecdotage just
yet?)&amp;#xA0; Anyway, the intimate set was heavy with material from his latest release, &lt;em&gt;Upside
Down Home 2007&lt;/em&gt;.&amp;#xA0; Th&amp;#xF8;ger Lund provided the only accompaniment, on upright
bass, until the very end of the set, when they were joined by the Kate and Lonna.&amp;#xA0; 
&lt;/p&gt;
&lt;p&gt;
Howe claims to not have enough time to write any songs any more, not that he seems
to be slowing down his rate of record release, but instead draws on his bank of songs
(which he described as a bank that has only one customer, so won't be running out
any time soon)
&lt;/p&gt;
&lt;p&gt;
I can't remember much of the setlist, but we certainly had &lt;em&gt;The Hangin' Judge&lt;/em&gt;, &lt;em&gt;Down
On Town&lt;/em&gt; (originally from &lt;em&gt;Valley of Rain&lt;/em&gt;, the first &lt;a title="Giant Sand" href="http://www.giantsand.com/"&gt;Giant
Sand&lt;/a&gt; album, which Howe said they were remastering for a 25th anniversary reissue.&amp;#xA0;
Well, he said they were removing some of the 80's production, anyway...), &lt;em&gt;Seldom
Matters&lt;/em&gt;, and &lt;em&gt;Shiver&lt;/em&gt; (&amp;quot;our Coke commercial&amp;quot;).&amp;#xA0; For the
encore (not that he left the stage), we had &lt;em&gt;Paradise Hereabouts&lt;/em&gt; and &lt;em&gt;Get
To Leave&lt;/em&gt; from the &lt;em&gt;Sno Angel&lt;/em&gt; album, with backing vocals provided by Kate
and Lonna (and, half-heartedly, from the audience).&amp;#xA0; While playing &lt;em&gt;Get To
Leave&lt;/em&gt; it seemed like Howe didn't want to do so, segueing into &lt;em&gt;Ring of Fire&lt;/em&gt;,
something else (the name of which escapes me, and which I can't believe I've forgotten),
and ending up with a few choruses of &lt;em&gt;Hey Jude&lt;/em&gt;.
&lt;/p&gt;
&lt;p&gt;
Then the set was over, and I left for the drive back to Reading (which was fast enough
to make up for the drive along the M40 getting there!)
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=d857fe98-2140-4047-98ad-ab084c2ef711" /&gt;</description>
      <comments>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,d857fe98-2140-4047-98ad-ab084c2ef711.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://www.bryanrobson.net/DasBlogCe/Trackback.aspx?guid=50052b42-2595-4734-9080-3ce27a57ed83</trackback:ping>
      <pingback:server>http://www.bryanrobson.net/DasBlogCe/pingback.aspx</pingback:server>
      <pingback:target>http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,50052b42-2595-4734-9080-3ce27a57ed83.aspx</pingback:target>
      <dc:creator>Bryan</dc:creator>
      <wfw:comment>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,50052b42-2595-4734-9080-3ce27a57ed83.aspx</wfw:comment>
      <wfw:commentRss>http://www.bryanrobson.net/DasBlogCe/SyndicationService.asmx/GetEntryCommentsRss?guid=50052b42-2595-4734-9080-3ce27a57ed83</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
I'm not doing much better at the whole posting regularly thing, am I?
</p>
        <div class="imagefloatright">
          <a href="http://www.amazon.co.uk/gp/product/B000NJVWM8?ie=UTF8&amp;tag=bryanrobsonne-21&amp;linkCode=as2&amp;camp=1634&amp;creative=6738&amp;creativeASIN=B000NJVWM8">
            <img src="http://www.bryanrobson.net/dasblogce/amazon_images/Holly_Cover.jpg" border="0" />
          </a>
          <img style="margin: 0px; border-top-style: none! important; border-right-style: none! important; border-left-style: none! important; border-bottom-style: none! important" height="1" alt="" src="http://www.assoc-amazon.co.uk/e/ir?t=bryanrobsonne-21&amp;l=as2&amp;o=2&amp;a=B000NJVWM8" width="1" border="0" />
          <br />
          <a href="http://www.amazon.co.uk/gp/product/B0002JEP6O?ie=UTF8&amp;tag=bryanrobsonne-21&amp;linkCode=as2&amp;camp=1634&amp;creative=6738&amp;creativeASIN=B0002JEP6O">
            <img src="http://www.bryanrobson.net/dasblogce/amazon_images/FishermansWoman_Cover.jpg" border="0" />
          </a>
          <img style="margin: 0px; border-top-style: none! important; border-right-style: none! important; border-left-style: none! important; border-bottom-style: none! important" height="1" alt="" src="http://www.assoc-amazon.co.uk/e/ir?t=bryanrobsonne-21&amp;l=as2&amp;o=2&amp;a=B0002JEP6O" width="1" border="0" />
        </div>
        <p>
Anyway, I thought I'd mention a couple of albums I'm listening to quite a lot at the
moment, <a title="Justin Nozuka" href="http://www.justinnozuka.co.uk/">Justin Nozuka's</a><em>Holly</em> and <a title="Emiliana Torrini" href="http://www.emilianatorrini.com/">Emilana
Torrini's</a><em>The Fisherman's Woman</em>. They're both people I've seen as support
acts (and don't we all just love discovering new music that way??): Justin Nozuka
supporting John Cale when I saw him in the Fez Club in Reading, and Emiliana Torrini
was one of the acts at this year's <a title="Howe Gelb" href="http://www.giantsand.com/">Howe
Gelb</a> &amp; Friends event at the Barbican.  
</p>
        <p>
Nozuka's album is a great singer-songwriter type of thing, though he's a lot more
interesting than most I've heard lately (not thinking of Blunt in particular, of course!).
</p>
        <p>
Emiliana Torrini has (as far as I can tell) two albums out.  The first, <em>Love
in the Time of Science</em> is a more electronic album, where <em>Fisherman's Woman</em> is
a largely acoustic affair.  You may have already heard one of her tracks at the
end of the second <em>Lord of the Rings</em> film - she's the vaguely Bjork-y sounding
one who did <em>Gollum's Song</em>.  <em>Fisherman's Woman</em> isn't very Bjork-like,
but there are similarities in their voices, something about the slightly breathy sound
and the phrasing.
</p>
        <p>
I'm looking forward to next week: Howe Gelb (supported by Lonna Kelly, who was also
at the Barbican gig) at The Luminaire in Kilburn.  Should be a great evening. 
Can't decide whether to drive or take the train, though...
</p>
        <img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=50052b42-2595-4734-9080-3ce27a57ed83" />
      </body>
      <title>Two albums</title>
      <guid isPermaLink="false">http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,50052b42-2595-4734-9080-3ce27a57ed83.aspx</guid>
      <link>http://www.bryanrobson.net/DasBlogCe/2007/09/14/Two+Albums.aspx</link>
      <pubDate>Fri, 14 Sep 2007 16:48:51 GMT</pubDate>
      <description>&lt;p&gt;
I'm not doing much better at the whole posting regularly thing, am I?
&lt;/p&gt;
&lt;div class="imagefloatright"&gt;&lt;a href="http://www.amazon.co.uk/gp/product/B000NJVWM8?ie=UTF8&amp;amp;tag=bryanrobsonne-21&amp;amp;linkCode=as2&amp;amp;camp=1634&amp;amp;creative=6738&amp;amp;creativeASIN=B000NJVWM8"&gt;&lt;img src="http://www.bryanrobson.net/dasblogce/amazon_images/Holly_Cover.jpg" border="0" /&gt;&lt;/a&gt;&lt;img style="margin: 0px; border-top-style: none! important; border-right-style: none! important; border-left-style: none! important; border-bottom-style: none! important" height="1" alt="" src="http://www.assoc-amazon.co.uk/e/ir?t=bryanrobsonne-21&amp;amp;l=as2&amp;amp;o=2&amp;amp;a=B000NJVWM8" width="1" border="0" /&gt; 
&lt;br /&gt;
&lt;a href="http://www.amazon.co.uk/gp/product/B0002JEP6O?ie=UTF8&amp;amp;tag=bryanrobsonne-21&amp;amp;linkCode=as2&amp;amp;camp=1634&amp;amp;creative=6738&amp;amp;creativeASIN=B0002JEP6O"&gt;&lt;img src="http://www.bryanrobson.net/dasblogce/amazon_images/FishermansWoman_Cover.jpg" border="0" /&gt;&lt;/a&gt;&lt;img style="margin: 0px; border-top-style: none! important; border-right-style: none! important; border-left-style: none! important; border-bottom-style: none! important" height="1" alt="" src="http://www.assoc-amazon.co.uk/e/ir?t=bryanrobsonne-21&amp;amp;l=as2&amp;amp;o=2&amp;amp;a=B0002JEP6O" width="1" border="0" /&gt; 
&lt;/div&gt;
&lt;p&gt;
Anyway, I thought I'd mention a couple of albums I'm listening to quite a lot at the
moment, &lt;a title="Justin Nozuka" href="http://www.justinnozuka.co.uk/"&gt;Justin Nozuka's&lt;/a&gt; &lt;em&gt;Holly&lt;/em&gt; and &lt;a title="Emiliana Torrini" href="http://www.emilianatorrini.com/"&gt;Emilana
Torrini's&lt;/a&gt; &lt;em&gt;The Fisherman's Woman&lt;/em&gt;. They're both people I've seen as support
acts (and don't we all just love discovering new music that way??): Justin Nozuka
supporting John Cale when I saw him in the Fez Club in Reading, and Emiliana Torrini
was one of the acts at this year's &lt;a title="Howe Gelb" href="http://www.giantsand.com/"&gt;Howe
Gelb&lt;/a&gt; &amp;amp; Friends event at the Barbican.&amp;#xA0; 
&lt;/p&gt;
&lt;p&gt;
Nozuka's album is a great singer-songwriter type of thing, though he's a lot more
interesting than most I've heard lately (not thinking of Blunt in particular, of course!).
&lt;/p&gt;
&lt;p&gt;
Emiliana Torrini has (as far as I can tell) two albums out.&amp;#xA0; The first, &lt;em&gt;Love
in the Time of Science&lt;/em&gt; is a more electronic album, where &lt;em&gt;Fisherman's Woman&lt;/em&gt; is
a largely acoustic affair.&amp;#xA0; You may have already heard one of her tracks at the
end of the second &lt;em&gt;Lord of the Rings&lt;/em&gt; film - she's the vaguely Bjork-y sounding
one who did &lt;em&gt;Gollum's Song&lt;/em&gt;.&amp;#xA0; &lt;em&gt;Fisherman's Woman&lt;/em&gt; isn't very Bjork-like,
but there are similarities in their voices, something about the slightly breathy sound
and the phrasing.
&lt;/p&gt;
&lt;p&gt;
I'm looking forward to next week: Howe Gelb (supported by Lonna Kelly, who was also
at the Barbican gig) at The Luminaire in Kilburn.&amp;#xA0; Should be a great evening.&amp;#xA0;
Can't decide whether to drive or take the train, though...
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=50052b42-2595-4734-9080-3ce27a57ed83" /&gt;</description>
      <comments>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,50052b42-2595-4734-9080-3ce27a57ed83.aspx</comments>
      <category>Music</category>
    </item>
    <item>
      <trackback:ping>http://www.bryanrobson.net/DasBlogCe/Trackback.aspx?guid=0326d5c9-0934-4a41-9f4f-a22d2d3a63a3</trackback:ping>
      <pingback:server>http://www.bryanrobson.net/DasBlogCe/pingback.aspx</pingback:server>
      <pingback:target>http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,0326d5c9-0934-4a41-9f4f-a22d2d3a63a3.aspx</pingback:target>
      <dc:creator>Bryan</dc:creator>
      <wfw:comment>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,0326d5c9-0934-4a41-9f4f-a22d2d3a63a3.aspx</wfw:comment>
      <wfw:commentRss>http://www.bryanrobson.net/DasBlogCe/SyndicationService.asmx/GetEntryCommentsRss?guid=0326d5c9-0934-4a41-9f4f-a22d2d3a63a3</wfw:commentRss>
      <slash:comments>1</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Good grief, it's been a while....
</p>
        <p>
Ok, my first new post in ages should be something interesting, noteworthy, possibly
controversial, so I shall choose: my new phone!
</p>
        <div class="imagefloatright">
          <img src="http://www.bryanrobson.net/DasBlogCe/content/binary/Touch.jpg" alt="HTC Touch" />
        </div>
        <p>
Maybe not the *most* fascinating subject, but there are a couple of things that it's
probably worth posting about. First off, it's an <a herf="http://www.htctouch.com/">HTC
Touch</a>, and I think it's great. From the review I've seen there seems to be disappointment
that the processor isn't faster, and there are times when it could certainly do with
a bit more speed, but it's a huge improvement over my last handset, and seems perfectly
happy most of the time. The only problem I've had so far is with <a href="http://codecity.net/prodctappc.htm">City
Time Alarms</a>, which was my preferred alarm program on my old handset. Unfortunately,
on the Touch when this program is installed it throws a whole bunch of errors on startup,
and generally misbehaves. I've contacted the authors about this, and with any luck
they'll come up with a fix.
</p>
        <p>
The main point of this post is the weather. To be specific, the weather module in
the Touch. You select your city from the list, and it runs off to the web to find
your weather report. Very nice, useful, and even rather pretty. However, since the
default list for the UK appears to contain Edinburgh, London, Manchester and Plymouth,
and not a whole lot else, it's of limited use.
</p>
        <p>
Now, the list of cities is kept in the HH_0409_WeatherCities.xml file, located in
the Windows directory on the phone. To add new cities we must edit this file. However,
it appears to be a read-only system file, and the built-in File Explorer won't let
you edit it. However, the Pocket version of <a href="http://www.ghisler.com/">Total
Commander</a> will, so that's what I'm using. To add a city, you need to insert a
line like this:
</p>
        <div class="boxed">
          <!--
{\rtf1\ansi\ansicpg\lang1024\noproof28591\uc1 \deff0{\fonttbl{\f0\fnil\fcharset0\fprq1 InconsolataDG;}}{\colortbl;??\red0\green0\blue255;\red255\green255\blue255;\red163\green21\blue21;\red255\green0\blue0;\red0\green0\blue0;}??\fs20 \cf1 &lt;\cf3 city\cf1  \cf4 locationcode\cf1 =\cf0 "\cf1 EUR|UK|UK001|READING\cf0 "\cf1  \cf4 name\cf1 =\cf0 "\cf1 Reading, England\cf0 "\cf1 /&gt;}
-->
          <div style="background: transparent none repeat scroll 0% 50%; font-family: InconsolataDG; font-size: 10pt; color: black; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;">
            <p style="margin: 0px;">
              <span style="color: blue;">&lt;</span>
              <span style="color: rgb(163, 21, 21);">city</span>
              <span style="color: blue;">
              </span>
              <span style="color: red;">locationcode</span>
              <span style="color: blue;">=</span>"<span style="color: blue;">EUR|UK|UK001|READING</span>"<span style="color: blue;"></span><span style="color: red;">name</span><span style="color: blue;">=</span>"<span style="color: blue;">Reading,
England</span>"<span style="color: blue;">/&gt;</span></p>
          </div>
        </div>
        <p>
The next question is where to find city details - you can't just put in the name of
any town and expect it to work. A little digging on the web told me that AccuWeather
was the source of the weather information, and a look at that site shows that there
is a pre-set list of cities for different countries. Go to the AccuWeather site, and
use the "Find your local forecast" feature and you can see which cities are available.
A bit of "view source" and we can see that the list of cities is populated by an ASP
page (change the reqion and country to suit yourself): <a href="http://www.accuweather.com/includes/ajax-functions/favoriteCities.asp?region=EUR&amp;country=UK">http://www.accuweather.com/includes/ajax-functions/favoriteCities.asp?region=EUR&amp;country=UK</a></p>
        <p>
Ok, so now we have a list of cities for our country. We now need to get them in the
correct format. The AccuWeather feed looks like this:
</p>
        <div class="boxed">
          <!--
{\rtf1\ansi\ansicpg\lang1024\noproof28591\uc1 \deff0{\fonttbl{\f0\fnil\fcharset0\fprq1 InconsolataDG;}}{\colortbl;??\red0\green0\blue255;\red255\green255\blue255;\red163\green21\blue21;\red255\green0\blue0;\red0\green0\blue0;}??\fs20 \cf1 &lt;\cf3 cities\cf1 &gt;\par ??  &lt;\cf3 city\cf1  \cf4 code\cf1 =\cf0 "\cf1 EUR|UK|UK002|ABERDEEN\cf0 "\cf1  \cf4 display\cf1 =\cf0 "\cf1 ABERDEEN, SCOTLAND\cf0 "\cf1 /&gt;\par ??  &lt;\cf3 city\cf1  \cf4 code\cf1 =\cf0 "\cf1 EUR|UK|UK001|ASHFIELD\cf0 "\cf1  \cf4 display\cf1 =\cf0 "\cf1 ASHFIELD, ENGLAND\cf0 "\cf1 /&gt;\par ??  &lt;\cf3 city\cf1  \cf4 code\cf1 =\cf0 "\cf1 EUR|UK|UK001|BARNET\cf0 "\cf1  \cf4 display\cf1 =\cf0 "\cf1 BARNET, ENGLAND\cf0 "\cf1 /&gt;\par ??  &lt;\cf3 city\cf1  \cf4 code\cf1 =\cf0 "\cf1 EUR|UK|UK001|BARNSLEY\cf0 "\cf1  \cf4 display\cf1 =\cf0 "\cf1 BARNSLEY, ENGLAND\cf0 "\cf1 /&gt;\par ??&lt;\cf3 cities\cf1 &gt;\par ??}
-->
          <div style="background: none repeat scroll 0% 50%; font-family: InconsolataDG; font-size: 10pt; color: black; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;">
            <p style="margin: 0px;">
              <span style="color: blue;">&lt;</span>
              <span style="color: rgb(163, 21, 21);">cities</span>
              <span style="color: blue;">&gt;</span>
            </p>
            <p style="margin: 0px;">
              <span style="color: blue;">  &lt;</span>
              <span style="color: rgb(163, 21, 21);">city</span>
              <span style="color: blue;">
              </span>
              <span style="color: red;">code</span>
              <span style="color: blue;">=</span>"<span style="color: blue;">EUR|UK|UK002|ABERDEEN</span>"<span style="color: blue;"></span><span style="color: red;">display</span><span style="color: blue;">=</span>"<span style="color: blue;">ABERDEEN,
SCOTLAND</span>"<span style="color: blue;">/&gt;</span></p>
            <p style="margin: 0px;">
              <span style="color: blue;">  &lt;</span>
              <span style="color: rgb(163, 21, 21);">city</span>
              <span style="color: blue;">
              </span>
              <span style="color: red;">code</span>
              <span style="color: blue;">=</span>"<span style="color: blue;">EUR|UK|UK001|ASHFIELD</span>"<span style="color: blue;"></span><span style="color: red;">display</span><span style="color: blue;">=</span>"<span style="color: blue;">ASHFIELD,
ENGLAND</span>"<span style="color: blue;">/&gt;</span></p>
            <p style="margin: 0px;">
              <span style="color: blue;">  &lt;</span>
              <span style="color: rgb(163, 21, 21);">city</span>
              <span style="color: blue;">
              </span>
              <span style="color: red;">code</span>
              <span style="color: blue;">=</span>"<span style="color: blue;">EUR|UK|UK001|BARNET</span>"<span style="color: blue;"></span><span style="color: red;">display</span><span style="color: blue;">=</span>"<span style="color: blue;">BARNET,
ENGLAND</span>"<span style="color: blue;">/&gt;</span></p>
            <p style="margin: 0px;">
              <span style="color: blue;">  &lt;</span>
              <span style="color: rgb(163, 21, 21);">city</span>
              <span style="color: blue;">
              </span>
              <span style="color: red;">code</span>
              <span style="color: blue;">=</span>"<span style="color: blue;">EUR|UK|UK001|BARNSLEY</span>"<span style="color: blue;"></span><span style="color: red;">display</span><span style="color: blue;">=</span>"<span style="color: blue;">BARNSLEY,
ENGLAND</span>"<span style="color: blue;">/&gt;</span></p>
            <p style="margin: 0px;">
              <span style="color: blue;">&lt;</span>
              <span style="color: rgb(163, 21, 21);">cities</span>
              <span style="color: blue;">&gt;</span>
            </p>
          </div>
        </div>
        <p>
and we need this:
</p>
        <div class="boxed">
          <!--
{\rtf1\ansi\ansicpg\lang1024\noproof28591\uc1 \deff0{\fonttbl{\f0\fnil\fcharset0\fprq1 InconsolataDG;}}{\colortbl;??\red0\green0\blue255;\red255\green255\blue255;\red163\green21\blue21;\red255\green0\blue0;\red0\green0\blue0;}??\fs20 \cf1 &lt;\cf3 locations\cf1 &gt;\par ??  &lt;\cf3 city\cf1  \cf4 locationcode\cf1 =\cf0 "\cf1 EUR|UK|UK002|ABERDEEN\cf0 "\cf1  \cf4 name\cf1 =\cf0 "\cf1 Aberdeen, Scotland\cf0 "\cf1 /&gt;\par ??  &lt;\cf3 city\cf1  \cf4 locationcode\cf1 =\cf0 "\cf1 EUR|UK|UK001|ASHFIELD\cf0 "\cf1  \cf4 name\cf1 =\cf0 "\cf1 Ashfield, England\cf0 "\cf1 /&gt;\par ??  &lt;\cf3 city\cf1  \cf4 locationcode\cf1 =\cf0 "\cf1 EUR|UK|UK001|BARNET\cf0 "\cf1  \cf4 name\cf1 =\cf0 "\cf1 Barnet, England\cf0 "\cf1 /&gt;\par ??  &lt;\cf3 city\cf1  \cf4 locationcode\cf1 =\cf0 "\cf1 EUR|UK|UK001|BARNSLEY\cf0 "\cf1  \cf4 name\cf1 =\cf0 "\cf1 Barnsley, England\cf0 "\cf1 /&gt;\par ??&lt;/\cf3 locations\cf1 &gt;}
-->
          <div style="background: none repeat scroll 0% 50%; font-family: InconsolataDG; font-size: 10pt; color: black; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;">
            <p style="margin: 0px;">
              <span style="color: blue;">&lt;</span>
              <span style="color: rgb(163, 21, 21);">locations</span>
              <span style="color: blue;">&gt;</span>
            </p>
            <p style="margin: 0px;">
              <span style="color: blue;">  &lt;</span>
              <span style="color: rgb(163, 21, 21);">city</span>
              <span style="color: blue;">
              </span>
              <span style="color: red;">locationcode</span>
              <span style="color: blue;">=</span>"<span style="color: blue;">EUR|UK|UK002|ABERDEEN</span>"<span style="color: blue;"></span><span style="color: red;">name</span><span style="color: blue;">=</span>"<span style="color: blue;">Aberdeen,
Scotland</span>"<span style="color: blue;">/&gt;</span></p>
            <p style="margin: 0px;">
              <span style="color: blue;">  &lt;</span>
              <span style="color: rgb(163, 21, 21);">city</span>
              <span style="color: blue;">
              </span>
              <span style="color: red;">locationcode</span>
              <span style="color: blue;">=</span>"<span style="color: blue;">EUR|UK|UK001|ASHFIELD</span>"<span style="color: blue;"></span><span style="color: red;">name</span><span style="color: blue;">=</span>"<span style="color: blue;">Ashfield,
England</span>"<span style="color: blue;">/&gt;</span></p>
            <p style="margin: 0px;">
              <span style="color: blue;">  &lt;</span>
              <span style="color: rgb(163, 21, 21);">city</span>
              <span style="color: blue;">
              </span>
              <span style="color: red;">locationcode</span>
              <span style="color: blue;">=</span>"<span style="color: blue;">EUR|UK|UK001|BARNET</span>"<span style="color: blue;"></span><span style="color: red;">name</span><span style="color: blue;">=</span>"<span style="color: blue;">Barnet,
England</span>"<span style="color: blue;">/&gt;</span></p>
            <p style="margin: 0px;">
              <span style="color: blue;">  &lt;</span>
              <span style="color: rgb(163, 21, 21);">city</span>
              <span style="color: blue;">
              </span>
              <span style="color: red;">locationcode</span>
              <span style="color: blue;">=</span>"<span style="color: blue;">EUR|UK|UK001|BARNSLEY</span>"<span style="color: blue;"></span><span style="color: red;">name</span><span style="color: blue;">=</span>"<span style="color: blue;">Barnsley,
England</span>"<span style="color: blue;">/&gt;</span></p>
            <p style="margin: 0px;">
              <span style="color: blue;">&lt;/</span>
              <span style="color: rgb(163, 21, 21);">locations</span>
              <span style="color: blue;">&gt;</span>
            </p>
          </div>
        </div>
        <p>
A bit of search and replace should do the trick! I now copied this file, <a href="http://www.bryanrobson.net/DasBlogCe/content/binary/HH_0409_UK_Cities.xml">HH_0409_UK_Cities.xml
(8.86 KB)</a> , to my Touch, made a backup of the original list (<a href="http://www.bryanrobson.net/DasBlogCe/content/binary/HH_0409_WeatherCities.xml">HH_0409_WeatherCities.xml
(24.62 KB)</a>), and replaced the original list of cities with my list of UK cities.
Done!
</p>
        <p>
          <i>Note to self: try and remember to blog a little more often!</i>
        </p>
        <img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=0326d5c9-0934-4a41-9f4f-a22d2d3a63a3" />
      </body>
      <title>The Weather: (HTC) Touch and go!</title>
      <guid isPermaLink="false">http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,0326d5c9-0934-4a41-9f4f-a22d2d3a63a3.aspx</guid>
      <link>http://www.bryanrobson.net/DasBlogCe/2007/08/13/The+Weather+HTC+Touch+And+Go.aspx</link>
      <pubDate>Mon, 13 Aug 2007 08:28:06 GMT</pubDate>
      <description>&lt;p&gt;
Good grief, it's been a while....
&lt;/p&gt;
&lt;p&gt;
Ok, my first new post in ages should be something interesting, noteworthy, possibly
controversial, so I shall choose: my new phone!
&lt;/p&gt;
&lt;div class="imagefloatright"&gt;&lt;img src="http://www.bryanrobson.net/DasBlogCe/content/binary/Touch.jpg" alt="HTC Touch"&gt;
&lt;/div&gt;
&lt;p&gt;
Maybe not the *most* fascinating subject, but there are a couple of things that it's
probably worth posting about. First off, it's an &lt;a herf="http://www.htctouch.com/"&gt;HTC
Touch&lt;/a&gt;, and I think it's great. From the review I've seen there seems to be disappointment
that the processor isn't faster, and there are times when it could certainly do with
a bit more speed, but it's a huge improvement over my last handset, and seems perfectly
happy most of the time. The only problem I've had so far is with &lt;a href="http://codecity.net/prodctappc.htm"&gt;City
Time Alarms&lt;/a&gt;, which was my preferred alarm program on my old handset. Unfortunately,
on the Touch when this program is installed it throws a whole bunch of errors on startup,
and generally misbehaves. I've contacted the authors about this, and with any luck
they'll come up with a fix.
&lt;/p&gt;
&lt;p&gt;
The main point of this post is the weather. To be specific, the weather module in
the Touch. You select your city from the list, and it runs off to the web to find
your weather report. Very nice, useful, and even rather pretty. However, since the
default list for the UK appears to contain Edinburgh, London, Manchester and Plymouth,
and not a whole lot else, it's of limited use.
&lt;/p&gt;
&lt;p&gt;
Now, the list of cities is kept in the HH_0409_WeatherCities.xml file, located in
the Windows directory on the phone. To add new cities we must edit this file. However,
it appears to be a read-only system file, and the built-in File Explorer won't let
you edit it. However, the Pocket version of &lt;a href="http://www.ghisler.com/"&gt;Total
Commander&lt;/a&gt; will, so that's what I'm using. To add a city, you need to insert a
line like this:
&lt;/p&gt;
&lt;div class="boxed"&gt;
&lt;!--
{\rtf1\ansi\ansicpg\lang1024\noproof28591\uc1 \deff0{\fonttbl{\f0\fnil\fcharset0\fprq1 InconsolataDG;}}{\colortbl;??\red0\green0\blue255;\red255\green255\blue255;\red163\green21\blue21;\red255\green0\blue0;\red0\green0\blue0;}??\fs20 \cf1 &amp;lt;\cf3 city\cf1  \cf4 locationcode\cf1 =\cf0 "\cf1 EUR|UK|UK001|READING\cf0 "\cf1  \cf4 name\cf1 =\cf0 "\cf1 Reading, England\cf0 "\cf1 /&amp;gt;}
--&gt;
&lt;div style="background: transparent none repeat scroll 0% 50%; font-family: InconsolataDG; font-size: 10pt; color: black; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;"&gt;
&lt;p style="margin: 0px;"&gt;
&lt;span style="color: blue;"&gt;&amp;lt;&lt;/span&gt;&lt;span style="color: rgb(163, 21, 21);"&gt;city&lt;/span&gt;&lt;span style="color: blue;"&gt; &lt;/span&gt;&lt;span style="color: red;"&gt;locationcode&lt;/span&gt;&lt;span style="color: blue;"&gt;=&lt;/span&gt;"&lt;span style="color: blue;"&gt;EUR|UK|UK001|READING&lt;/span&gt;"&lt;span style="color: blue;"&gt; &lt;/span&gt;&lt;span style="color: red;"&gt;name&lt;/span&gt;&lt;span style="color: blue;"&gt;=&lt;/span&gt;"&lt;span style="color: blue;"&gt;Reading,
England&lt;/span&gt;"&lt;span style="color: blue;"&gt;/&amp;gt;&lt;/span&gt;
&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;
The next question is where to find city details - you can't just put in the name of
any town and expect it to work. A little digging on the web told me that AccuWeather
was the source of the weather information, and a look at that site shows that there
is a pre-set list of cities for different countries. Go to the AccuWeather site, and
use the "Find your local forecast" feature and you can see which cities are available.
A bit of "view source" and we can see that the list of cities is populated by an ASP
page (change the reqion and country to suit yourself): &lt;a href="http://www.accuweather.com/includes/ajax-functions/favoriteCities.asp?region=EUR&amp;amp;country=UK"&gt;http://www.accuweather.com/includes/ajax-functions/favoriteCities.asp?region=EUR&amp;amp;country=UK&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
Ok, so now we have a list of cities for our country. We now need to get them in the
correct format. The AccuWeather feed looks like this:
&lt;/p&gt;
&lt;div class="boxed"&gt;
&lt;!--
{\rtf1\ansi\ansicpg\lang1024\noproof28591\uc1 \deff0{\fonttbl{\f0\fnil\fcharset0\fprq1 InconsolataDG;}}{\colortbl;??\red0\green0\blue255;\red255\green255\blue255;\red163\green21\blue21;\red255\green0\blue0;\red0\green0\blue0;}??\fs20 \cf1 &amp;lt;\cf3 cities\cf1 &amp;gt;\par ??  &amp;lt;\cf3 city\cf1  \cf4 code\cf1 =\cf0 "\cf1 EUR|UK|UK002|ABERDEEN\cf0 "\cf1  \cf4 display\cf1 =\cf0 "\cf1 ABERDEEN, SCOTLAND\cf0 "\cf1 /&amp;gt;\par ??  &amp;lt;\cf3 city\cf1  \cf4 code\cf1 =\cf0 "\cf1 EUR|UK|UK001|ASHFIELD\cf0 "\cf1  \cf4 display\cf1 =\cf0 "\cf1 ASHFIELD, ENGLAND\cf0 "\cf1 /&amp;gt;\par ??  &amp;lt;\cf3 city\cf1  \cf4 code\cf1 =\cf0 "\cf1 EUR|UK|UK001|BARNET\cf0 "\cf1  \cf4 display\cf1 =\cf0 "\cf1 BARNET, ENGLAND\cf0 "\cf1 /&amp;gt;\par ??  &amp;lt;\cf3 city\cf1  \cf4 code\cf1 =\cf0 "\cf1 EUR|UK|UK001|BARNSLEY\cf0 "\cf1  \cf4 display\cf1 =\cf0 "\cf1 BARNSLEY, ENGLAND\cf0 "\cf1 /&amp;gt;\par ??&amp;lt;\cf3 cities\cf1 &amp;gt;\par ??}
--&gt;
&lt;div style="background: none repeat scroll 0% 50%; font-family: InconsolataDG; font-size: 10pt; color: black; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;"&gt;
&lt;p style="margin: 0px;"&gt;
&lt;span style="color: blue;"&gt;&amp;lt;&lt;/span&gt;&lt;span style="color: rgb(163, 21, 21);"&gt;cities&lt;/span&gt;&lt;span style="color: blue;"&gt;&amp;gt;&lt;/span&gt;
&lt;/p&gt;
&lt;p style="margin: 0px;"&gt;
&lt;span style="color: blue;"&gt;&amp;nbsp; &amp;lt;&lt;/span&gt;&lt;span style="color: rgb(163, 21, 21);"&gt;city&lt;/span&gt;&lt;span style="color: blue;"&gt; &lt;/span&gt;&lt;span style="color: red;"&gt;code&lt;/span&gt;&lt;span style="color: blue;"&gt;=&lt;/span&gt;"&lt;span style="color: blue;"&gt;EUR|UK|UK002|ABERDEEN&lt;/span&gt;"&lt;span style="color: blue;"&gt; &lt;/span&gt;&lt;span style="color: red;"&gt;display&lt;/span&gt;&lt;span style="color: blue;"&gt;=&lt;/span&gt;"&lt;span style="color: blue;"&gt;ABERDEEN,
SCOTLAND&lt;/span&gt;"&lt;span style="color: blue;"&gt;/&amp;gt;&lt;/span&gt;
&lt;/p&gt;
&lt;p style="margin: 0px;"&gt;
&lt;span style="color: blue;"&gt;&amp;nbsp; &amp;lt;&lt;/span&gt;&lt;span style="color: rgb(163, 21, 21);"&gt;city&lt;/span&gt;&lt;span style="color: blue;"&gt; &lt;/span&gt;&lt;span style="color: red;"&gt;code&lt;/span&gt;&lt;span style="color: blue;"&gt;=&lt;/span&gt;"&lt;span style="color: blue;"&gt;EUR|UK|UK001|ASHFIELD&lt;/span&gt;"&lt;span style="color: blue;"&gt; &lt;/span&gt;&lt;span style="color: red;"&gt;display&lt;/span&gt;&lt;span style="color: blue;"&gt;=&lt;/span&gt;"&lt;span style="color: blue;"&gt;ASHFIELD,
ENGLAND&lt;/span&gt;"&lt;span style="color: blue;"&gt;/&amp;gt;&lt;/span&gt;
&lt;/p&gt;
&lt;p style="margin: 0px;"&gt;
&lt;span style="color: blue;"&gt;&amp;nbsp; &amp;lt;&lt;/span&gt;&lt;span style="color: rgb(163, 21, 21);"&gt;city&lt;/span&gt;&lt;span style="color: blue;"&gt; &lt;/span&gt;&lt;span style="color: red;"&gt;code&lt;/span&gt;&lt;span style="color: blue;"&gt;=&lt;/span&gt;"&lt;span style="color: blue;"&gt;EUR|UK|UK001|BARNET&lt;/span&gt;"&lt;span style="color: blue;"&gt; &lt;/span&gt;&lt;span style="color: red;"&gt;display&lt;/span&gt;&lt;span style="color: blue;"&gt;=&lt;/span&gt;"&lt;span style="color: blue;"&gt;BARNET,
ENGLAND&lt;/span&gt;"&lt;span style="color: blue;"&gt;/&amp;gt;&lt;/span&gt;
&lt;/p&gt;
&lt;p style="margin: 0px;"&gt;
&lt;span style="color: blue;"&gt;&amp;nbsp; &amp;lt;&lt;/span&gt;&lt;span style="color: rgb(163, 21, 21);"&gt;city&lt;/span&gt;&lt;span style="color: blue;"&gt; &lt;/span&gt;&lt;span style="color: red;"&gt;code&lt;/span&gt;&lt;span style="color: blue;"&gt;=&lt;/span&gt;"&lt;span style="color: blue;"&gt;EUR|UK|UK001|BARNSLEY&lt;/span&gt;"&lt;span style="color: blue;"&gt; &lt;/span&gt;&lt;span style="color: red;"&gt;display&lt;/span&gt;&lt;span style="color: blue;"&gt;=&lt;/span&gt;"&lt;span style="color: blue;"&gt;BARNSLEY,
ENGLAND&lt;/span&gt;"&lt;span style="color: blue;"&gt;/&amp;gt;&lt;/span&gt;
&lt;/p&gt;
&lt;p style="margin: 0px;"&gt;
&lt;span style="color: blue;"&gt;&amp;lt;&lt;/span&gt;&lt;span style="color: rgb(163, 21, 21);"&gt;cities&lt;/span&gt;&lt;span style="color: blue;"&gt;&amp;gt;&lt;/span&gt;
&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;
and we need this:
&lt;/p&gt;
&lt;div class="boxed"&gt;
&lt;!--
{\rtf1\ansi\ansicpg\lang1024\noproof28591\uc1 \deff0{\fonttbl{\f0\fnil\fcharset0\fprq1 InconsolataDG;}}{\colortbl;??\red0\green0\blue255;\red255\green255\blue255;\red163\green21\blue21;\red255\green0\blue0;\red0\green0\blue0;}??\fs20 \cf1 &amp;lt;\cf3 locations\cf1 &amp;gt;\par ??  &amp;lt;\cf3 city\cf1  \cf4 locationcode\cf1 =\cf0 "\cf1 EUR|UK|UK002|ABERDEEN\cf0 "\cf1  \cf4 name\cf1 =\cf0 "\cf1 Aberdeen, Scotland\cf0 "\cf1 /&amp;gt;\par ??  &amp;lt;\cf3 city\cf1  \cf4 locationcode\cf1 =\cf0 "\cf1 EUR|UK|UK001|ASHFIELD\cf0 "\cf1  \cf4 name\cf1 =\cf0 "\cf1 Ashfield, England\cf0 "\cf1 /&amp;gt;\par ??  &amp;lt;\cf3 city\cf1  \cf4 locationcode\cf1 =\cf0 "\cf1 EUR|UK|UK001|BARNET\cf0 "\cf1  \cf4 name\cf1 =\cf0 "\cf1 Barnet, England\cf0 "\cf1 /&amp;gt;\par ??  &amp;lt;\cf3 city\cf1  \cf4 locationcode\cf1 =\cf0 "\cf1 EUR|UK|UK001|BARNSLEY\cf0 "\cf1  \cf4 name\cf1 =\cf0 "\cf1 Barnsley, England\cf0 "\cf1 /&amp;gt;\par ??&amp;lt;/\cf3 locations\cf1 &amp;gt;}
--&gt;
&lt;div style="background: none repeat scroll 0% 50%; font-family: InconsolataDG; font-size: 10pt; color: black; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;"&gt;
&lt;p style="margin: 0px;"&gt;
&lt;span style="color: blue;"&gt;&amp;lt;&lt;/span&gt;&lt;span style="color: rgb(163, 21, 21);"&gt;locations&lt;/span&gt;&lt;span style="color: blue;"&gt;&amp;gt;&lt;/span&gt;
&lt;/p&gt;
&lt;p style="margin: 0px;"&gt;
&lt;span style="color: blue;"&gt;&amp;nbsp; &amp;lt;&lt;/span&gt;&lt;span style="color: rgb(163, 21, 21);"&gt;city&lt;/span&gt;&lt;span style="color: blue;"&gt; &lt;/span&gt;&lt;span style="color: red;"&gt;locationcode&lt;/span&gt;&lt;span style="color: blue;"&gt;=&lt;/span&gt;"&lt;span style="color: blue;"&gt;EUR|UK|UK002|ABERDEEN&lt;/span&gt;"&lt;span style="color: blue;"&gt; &lt;/span&gt;&lt;span style="color: red;"&gt;name&lt;/span&gt;&lt;span style="color: blue;"&gt;=&lt;/span&gt;"&lt;span style="color: blue;"&gt;Aberdeen,
Scotland&lt;/span&gt;"&lt;span style="color: blue;"&gt;/&amp;gt;&lt;/span&gt;
&lt;/p&gt;
&lt;p style="margin: 0px;"&gt;
&lt;span style="color: blue;"&gt;&amp;nbsp; &amp;lt;&lt;/span&gt;&lt;span style="color: rgb(163, 21, 21);"&gt;city&lt;/span&gt;&lt;span style="color: blue;"&gt; &lt;/span&gt;&lt;span style="color: red;"&gt;locationcode&lt;/span&gt;&lt;span style="color: blue;"&gt;=&lt;/span&gt;"&lt;span style="color: blue;"&gt;EUR|UK|UK001|ASHFIELD&lt;/span&gt;"&lt;span style="color: blue;"&gt; &lt;/span&gt;&lt;span style="color: red;"&gt;name&lt;/span&gt;&lt;span style="color: blue;"&gt;=&lt;/span&gt;"&lt;span style="color: blue;"&gt;Ashfield,
England&lt;/span&gt;"&lt;span style="color: blue;"&gt;/&amp;gt;&lt;/span&gt;
&lt;/p&gt;
&lt;p style="margin: 0px;"&gt;
&lt;span style="color: blue;"&gt;&amp;nbsp; &amp;lt;&lt;/span&gt;&lt;span style="color: rgb(163, 21, 21);"&gt;city&lt;/span&gt;&lt;span style="color: blue;"&gt; &lt;/span&gt;&lt;span style="color: red;"&gt;locationcode&lt;/span&gt;&lt;span style="color: blue;"&gt;=&lt;/span&gt;"&lt;span style="color: blue;"&gt;EUR|UK|UK001|BARNET&lt;/span&gt;"&lt;span style="color: blue;"&gt; &lt;/span&gt;&lt;span style="color: red;"&gt;name&lt;/span&gt;&lt;span style="color: blue;"&gt;=&lt;/span&gt;"&lt;span style="color: blue;"&gt;Barnet,
England&lt;/span&gt;"&lt;span style="color: blue;"&gt;/&amp;gt;&lt;/span&gt;
&lt;/p&gt;
&lt;p style="margin: 0px;"&gt;
&lt;span style="color: blue;"&gt;&amp;nbsp; &amp;lt;&lt;/span&gt;&lt;span style="color: rgb(163, 21, 21);"&gt;city&lt;/span&gt;&lt;span style="color: blue;"&gt; &lt;/span&gt;&lt;span style="color: red;"&gt;locationcode&lt;/span&gt;&lt;span style="color: blue;"&gt;=&lt;/span&gt;"&lt;span style="color: blue;"&gt;EUR|UK|UK001|BARNSLEY&lt;/span&gt;"&lt;span style="color: blue;"&gt; &lt;/span&gt;&lt;span style="color: red;"&gt;name&lt;/span&gt;&lt;span style="color: blue;"&gt;=&lt;/span&gt;"&lt;span style="color: blue;"&gt;Barnsley,
England&lt;/span&gt;"&lt;span style="color: blue;"&gt;/&amp;gt;&lt;/span&gt;
&lt;/p&gt;
&lt;p style="margin: 0px;"&gt;
&lt;span style="color: blue;"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="color: rgb(163, 21, 21);"&gt;locations&lt;/span&gt;&lt;span style="color: blue;"&gt;&amp;gt;&lt;/span&gt;
&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;
A bit of search and replace should do the trick! I now copied this file, &lt;a href="http://www.bryanrobson.net/DasBlogCe/content/binary/HH_0409_UK_Cities.xml"&gt;HH_0409_UK_Cities.xml
(8.86 KB)&lt;/a&gt; , to my Touch, made a backup of the original list (&lt;a href="http://www.bryanrobson.net/DasBlogCe/content/binary/HH_0409_WeatherCities.xml"&gt;HH_0409_WeatherCities.xml
(24.62 KB)&lt;/a&gt;), and replaced the original list of cities with my list of UK cities.
Done!
&lt;/p&gt;
&lt;p&gt;
&lt;i&gt;Note to self: try and remember to blog a little more often!&lt;/i&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=0326d5c9-0934-4a41-9f4f-a22d2d3a63a3" /&gt;</description>
      <comments>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,0326d5c9-0934-4a41-9f4f-a22d2d3a63a3.aspx</comments>
      <category>Coding</category>
      <category>Software</category>
      <category>Windows</category>
      <category>Windows Mobile</category>
    </item>
    <item>
      <trackback:ping>http://www.bryanrobson.net/DasBlogCe/Trackback.aspx?guid=5e985902-32c3-4511-a1a0-5ffd44301a32</trackback:ping>
      <pingback:server>http://www.bryanrobson.net/DasBlogCe/pingback.aspx</pingback:server>
      <pingback:target>http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,5e985902-32c3-4511-a1a0-5ffd44301a32.aspx</pingback:target>
      <dc:creator>Bryan</dc:creator>
      <wfw:comment>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,5e985902-32c3-4511-a1a0-5ffd44301a32.aspx</wfw:comment>
      <wfw:commentRss>http://www.bryanrobson.net/DasBlogCe/SyndicationService.asmx/GetEntryCommentsRss?guid=5e985902-32c3-4511-a1a0-5ffd44301a32</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <a href="http://xkcd.com/c292.html">
          <img src="http://imgs.xkcd.com/comics/goto.png" alt="GOTO" />
        </a>
        <p>
From (where else?) <a href="http://xkcd.com/">XKCD</a>.
</p>
        <img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=5e985902-32c3-4511-a1a0-5ffd44301a32" />
      </body>
      <title>I knew it was considered harmful, but please....</title>
      <guid isPermaLink="false">http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,5e985902-32c3-4511-a1a0-5ffd44301a32.aspx</guid>
      <link>http://www.bryanrobson.net/DasBlogCe/2007/07/20/I+Knew+It+Was+Considered+Harmful+But+Please.aspx</link>
      <pubDate>Fri, 20 Jul 2007 07:43:09 GMT</pubDate>
      <description>&lt;a href="http://xkcd.com/c292.html"&gt;&lt;img src="http://imgs.xkcd.com/comics/goto.png" alt="GOTO"&gt;&lt;/a&gt; 
&lt;p&gt;
From (where else?) &lt;a href="http://xkcd.com/"&gt;XKCD&lt;/a&gt;.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=5e985902-32c3-4511-a1a0-5ffd44301a32" /&gt;</description>
      <comments>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,5e985902-32c3-4511-a1a0-5ffd44301a32.aspx</comments>
      <category>Coding</category>
      <category>Funny</category>
    </item>
    <item>
      <trackback:ping>http://www.bryanrobson.net/DasBlogCe/Trackback.aspx?guid=aeaf6957-c621-4ddb-979f-da2396f2ceff</trackback:ping>
      <pingback:server>http://www.bryanrobson.net/DasBlogCe/pingback.aspx</pingback:server>
      <pingback:target>http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,aeaf6957-c621-4ddb-979f-da2396f2ceff.aspx</pingback:target>
      <dc:creator>Bryan</dc:creator>
      <wfw:comment>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,aeaf6957-c621-4ddb-979f-da2396f2ceff.aspx</wfw:comment>
      <wfw:commentRss>http://www.bryanrobson.net/DasBlogCe/SyndicationService.asmx/GetEntryCommentsRss?guid=aeaf6957-c621-4ddb-979f-da2396f2ceff</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
I've just noticed the Amazon link that's been added for Green Earrings in the set
list in the previous post, a link to (what else?) a pair of green earrings. Hmm...
Maybe I ought to limit it to music, books and movies... On the other hand, maybe someone
reading this will be suddenly taken with the desire to buy a pair of green earrings,
and who am I to prevent such a thing from happening (especially if I get a few quid
in commission!) Actually, thinking about it as I type, I imagine this post will contain
lots of links to green earrings...
</p>
        <img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=aeaf6957-c621-4ddb-979f-da2396f2ceff" />
      </body>
      <title>Green earrings, anyone?</title>
      <guid isPermaLink="false">http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,aeaf6957-c621-4ddb-979f-da2396f2ceff.aspx</guid>
      <link>http://www.bryanrobson.net/DasBlogCe/2007/07/09/Green+Earrings+Anyone.aspx</link>
      <pubDate>Mon, 09 Jul 2007 14:36:55 GMT</pubDate>
      <description>&lt;p&gt;
I've just noticed the Amazon link that's been added for Green Earrings in the set
list in the previous post, a link to (what else?) a pair of green earrings. Hmm...
Maybe I ought to limit it to music, books and movies... On the other hand, maybe someone
reading this will be suddenly taken with the desire to buy a pair of green earrings,
and who am I to prevent such a thing from happening (especially if I get a few quid
in commission!) Actually, thinking about it as I type, I imagine this post will contain
lots of links to green earrings...
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=aeaf6957-c621-4ddb-979f-da2396f2ceff" /&gt;</description>
      <comments>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,aeaf6957-c621-4ddb-979f-da2396f2ceff.aspx</comments>
      <category>Wasting time</category>
    </item>
    <item>
      <trackback:ping>http://www.bryanrobson.net/DasBlogCe/Trackback.aspx?guid=a364e123-a073-4ea5-aa29-75b8bac9653b</trackback:ping>
      <pingback:server>http://www.bryanrobson.net/DasBlogCe/pingback.aspx</pingback:server>
      <pingback:target>http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,a364e123-a073-4ea5-aa29-75b8bac9653b.aspx</pingback:target>
      <dc:creator>Bryan</dc:creator>
      <wfw:comment>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,a364e123-a073-4ea5-aa29-75b8bac9653b.aspx</wfw:comment>
      <wfw:commentRss>http://www.bryanrobson.net/DasBlogCe/SyndicationService.asmx/GetEntryCommentsRss?guid=a364e123-a073-4ea5-aa29-75b8bac9653b</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <div class="imagefloatright">
          <img src="http://steelydan.com/Images/tour07/original.jpg" alt="Steely Dan" />
        </div>
        <p>
On Saturday night, I saw <a href="http://www.steelydan.com/">Steely Dan</a> play the
Hammersmith Apollo. Superb, wonderful, gig!
</p>
        <p>
The support act was the Sam Yahel Trio (there were 4 of them), who played a few jazz
tunes. To be honest, they bored me, so we left after 3 numbers and went back to the
bar.
</p>
        <p>
The Dan came on at 9pm, played a storming set until 10:40pm, then a 2 song encore
(by which time almost everyone was on their feet). Wonder if there are any decent
boots of this tour kicking around??
</p>
        <p>
Set list: 
<br />
  Time Out Of Mind<br />
  Godwhacker<br />
  Bad Sneakers<br />
  Two Against Nature<br />
  Hey Nineteen<br />
  Haitian Divorce<br />
  Peg<br />
  Dirty Work<br />
  Home At Last<br />
  Green Earrings<br />
  Josie<br />
  Chain Lightning<br />
  Aja<br />
  Kid Charlemagne<br />
  <br />
  FM<br />
  My Old School<br /></p>
        <p>
          <i>Photo linked from the Steely Dan website.</i>
        </p>
        <img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=a364e123-a073-4ea5-aa29-75b8bac9653b" />
      </body>
      <title>Steely Dan, Hammersmith Apollo, Sat 7 July</title>
      <guid isPermaLink="false">http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,a364e123-a073-4ea5-aa29-75b8bac9653b.aspx</guid>
      <link>http://www.bryanrobson.net/DasBlogCe/2007/07/09/Steely+Dan+Hammersmith+Apollo+Sat+7+July.aspx</link>
      <pubDate>Mon, 09 Jul 2007 08:02:06 GMT</pubDate>
      <description>&lt;div class="imagefloatright"&gt;
&lt;img src="http://steelydan.com/Images/tour07/original.jpg" alt="Steely Dan"&gt; 
&lt;/div&gt;
&lt;p&gt;
On Saturday night, I saw &lt;a href="http://www.steelydan.com/"&gt;Steely Dan&lt;/a&gt; play the
Hammersmith Apollo. Superb, wonderful, gig!
&lt;/p&gt;
&lt;p&gt;
The support act was the Sam Yahel Trio (there were 4 of them), who played a few jazz
tunes. To be honest, they bored me, so we left after 3 numbers and went back to the
bar.
&lt;/p&gt;
&lt;p&gt;
The Dan came on at 9pm, played a storming set until 10:40pm, then a 2 song encore
(by which time almost everyone was on their feet). Wonder if there are any decent
boots of this tour kicking around??
&lt;/p&gt;
&lt;p&gt;
Set list: 
&lt;br&gt;
&amp;nbsp;&amp;nbsp;Time Out Of Mind&lt;br&gt;
&amp;nbsp;&amp;nbsp;Godwhacker&lt;br&gt;
&amp;nbsp;&amp;nbsp;Bad Sneakers&lt;br&gt;
&amp;nbsp;&amp;nbsp;Two Against Nature&lt;br&gt;
&amp;nbsp;&amp;nbsp;Hey Nineteen&lt;br&gt;
&amp;nbsp;&amp;nbsp;Haitian Divorce&lt;br&gt;
&amp;nbsp;&amp;nbsp;Peg&lt;br&gt;
&amp;nbsp;&amp;nbsp;Dirty Work&lt;br&gt;
&amp;nbsp;&amp;nbsp;Home At Last&lt;br&gt;
&amp;nbsp;&amp;nbsp;Green Earrings&lt;br&gt;
&amp;nbsp;&amp;nbsp;Josie&lt;br&gt;
&amp;nbsp;&amp;nbsp;Chain Lightning&lt;br&gt;
&amp;nbsp;&amp;nbsp;Aja&lt;br&gt;
&amp;nbsp;&amp;nbsp;Kid Charlemagne&lt;br&gt;
&amp;nbsp;&amp;nbsp;&lt;br&gt;
&amp;nbsp;&amp;nbsp;FM&lt;br&gt;
&amp;nbsp;&amp;nbsp;My Old School&lt;br&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;i&gt;Photo linked from the Steely Dan website.&lt;/i&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=a364e123-a073-4ea5-aa29-75b8bac9653b" /&gt;</description>
      <comments>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,a364e123-a073-4ea5-aa29-75b8bac9653b.aspx</comments>
      <category>Music</category>
    </item>
    <item>
      <trackback:ping>http://www.bryanrobson.net/DasBlogCe/Trackback.aspx?guid=d5eb772f-bc6f-4fdd-b520-45e0fb32f146</trackback:ping>
      <pingback:server>http://www.bryanrobson.net/DasBlogCe/pingback.aspx</pingback:server>
      <pingback:target>http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,d5eb772f-bc6f-4fdd-b520-45e0fb32f146.aspx</pingback:target>
      <dc:creator>Bryan</dc:creator>
      <wfw:comment>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,d5eb772f-bc6f-4fdd-b520-45e0fb32f146.aspx</wfw:comment>
      <wfw:commentRss>http://www.bryanrobson.net/DasBlogCe/SyndicationService.asmx/GetEntryCommentsRss?guid=d5eb772f-bc6f-4fdd-b520-45e0fb32f146</wfw:commentRss>
      <title>"Golf scorecard template"</title>
      <guid isPermaLink="false">http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,d5eb772f-bc6f-4fdd-b520-45e0fb32f146.aspx</guid>
      <link>http://www.bryanrobson.net/DasBlogCe/2007/07/06/Golf+Scorecard+Template.aspx</link>
      <pubDate>Fri, 06 Jul 2007 12:19:39 GMT</pubDate>
      <description>&lt;p&gt;
One of the biggest keyword searches that brings people to my website is "golf scorecard
template", for which &lt;a href="http://www.bryanrobson.net/dnn/Code/XSL/Golf/tabid/72/Default.aspx"&gt;this
page&lt;/a&gt; is one of the first page of hits on &lt;a href="http://www.google.com/search?q=golf+scorecard+template&amp;hl=en&amp;start=10&amp;sa=N"&gt;Google&lt;/a&gt;.
&lt;/p&gt;
&lt;p&gt;
I'm curious: what are people looking for? Is my XML template helpful? Is there something
else I can write that would be of more use? Feedback in the comments on this post
would be most welcome! I'll also put a link to this post on the scorecard page on
the main website.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=d5eb772f-bc6f-4fdd-b520-45e0fb32f146" /&gt;</description>
      <comments>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,d5eb772f-bc6f-4fdd-b520-45e0fb32f146.aspx</comments>
      <category>dasBlog</category>
    </item>
    <item>
      <trackback:ping>http://www.bryanrobson.net/DasBlogCe/Trackback.aspx?guid=e2132509-9d79-41d4-b0eb-15666f590d23</trackback:ping>
      <pingback:server>http://www.bryanrobson.net/DasBlogCe/pingback.aspx</pingback:server>
      <pingback:target>http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,e2132509-9d79-41d4-b0eb-15666f590d23.aspx</pingback:target>
      <dc:creator>Bryan</dc:creator>
      <wfw:comment>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,e2132509-9d79-41d4-b0eb-15666f590d23.aspx</wfw:comment>
      <wfw:commentRss>http://www.bryanrobson.net/DasBlogCe/SyndicationService.asmx/GetEntryCommentsRss?guid=e2132509-9d79-41d4-b0eb-15666f590d23</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
I don't seem to have posted anything this week, so I feel I really ought to rectify
that... So, here's a few words about some Visual Studio Addins that I use regularly.
</p>
        <p>
          <b>1. <a href="http://www.roland-weigelt.de/ghostdoc">GhostDoc</a></b>
        </p>
        <p>
This addin helps you generate source documentation. It's such a faff writing what
are often no more than restatements of the name of the function, but this addin takes
care of a lot of it for you. It's written for C#, but can be used for VB.Net as well
(to an extent).
</p>
        <p>
For example, the VB.Net function:
</p>
        <div class="boxed">
          <!--
{\rtf1\ansi\ansicpg\lang1024\noproof1252\uc1 \deff0{\fonttbl{\f0\fnil\fcharset0\fprq1 Courier;}}{\colortbl;??\red0\green0\blue255;\red255\green255\blue255;\red0\green0\blue0;}??\fs20 \cf1 Private\cf0  \cf1 Function\cf0  Translate(\cf1 ByVal\cf0  sourceXml \cf1 As\cf0  \cf1 String\cf0 , \cf1 ByVal\cf0  xslFile \cf1 As\cf0  \cf1 String\cf0 ) \cf1 As\cf0  \cf1 String}
-->
          <div style="background: transparent none repeat scroll 0% 50%; font-family: Courier; font-size: 10pt; color: black; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;">
            <p style="margin: 0px;">
              <span style="color: rgb(43, 145, 175);">
              </span>
              <span style="color: blue;">Private</span>
              <span style="color: blue;">Function</span> Translate(<span style="color: blue;">ByVal</span> sourceXml <span style="color: blue;">As</span><span style="color: blue;">String</span>, <span style="color: blue;">ByVal</span> xslFile <span style="color: blue;">As</span><span style="color: blue;">String</span>) <span style="color: blue;">As</span><span style="color: blue;">String</span></p>
          </div>
        </div>
        <p>
gets the comments:
</p>
        <div class="boxed">
          <!--
{\rtf1\ansi\ansicpg\lang1024\noproof1252\uc1 \deff0{\fonttbl{\f0\fnil\fcharset0\fprq1 Courier;}}{\colortbl;??\red0\green0\blue0;\red255\green255\blue255;\red0\green128\blue0;\red128\green128\blue128;\red0\green0\blue255;}??\fs20     \cf3 ''' \cf4 &lt;summary&gt;\par ??\cf0     \cf3 ''' Translates the specified source XML.\par ??\cf0     \cf3 ''' \cf4 &lt;/summary&gt;\par ??\cf0     \cf3 ''' \cf4 &lt;param name="sourceXml"&gt;\cf3 The source XML.\cf4 &lt;/param&gt;\par ??\cf0     \cf3 ''' \cf4 &lt;param name="xslFile"&gt;\cf3 The XSL file.\cf4 &lt;/param&gt;\par ??\cf0     \cf3 ''' \cf4 &lt;returns&gt;&lt;/returns&gt;\par ??\cf0     \cf5 Private\cf0  \cf5 Function\cf0  Translate(\cf5 ByVal\cf0  sourceXml \cf5 As\cf0  \cf5 String\cf0 , \cf5 ByVal\cf0  xslFile \cf5 As\cf0  \cf5 String\cf0 ) \cf5 As\cf0  \cf5 String}
-->
          <div style="background: transparent none repeat scroll 0% 50%; font-family: Courier; font-size: 10pt; color: black; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;">
            <p style="margin: 0px;">
              <span style="color: green;">''' </span>
              <span style="color: gray;">&lt;summary&gt;</span>
            </p>
            <p style="margin: 0px;">
              <span style="color: green;">''' Translates the specified source XML.</span>
            </p>
            <p style="margin: 0px;">
              <span style="color: green;">''' </span>
              <span style="color: gray;">&lt;/summary&gt;</span>
            </p>
            <p style="margin: 0px;">
              <span style="color: green;">''' </span>
              <span style="color: gray;">&lt;param name="sourceXml"&gt;</span>
              <span style="color: green;">The
source XML.</span>
              <span style="color: gray;">&lt;/param&gt;</span>
            </p>
            <p style="margin: 0px;">
              <span style="color: green;">''' </span>
              <span style="color: gray;">&lt;param name="xslFile"&gt;</span>
              <span style="color: green;">The
XSL file.</span>
              <span style="color: gray;">&lt;/param&gt;</span>
            </p>
            <p style="margin: 0px;">
              <span style="color: green;">''' </span>
              <span style="color: gray;">&lt;returns&gt;&lt;/returns&gt;</span>
            </p>
            <p style="margin: 0px;">
              <span style="color: blue;">Private</span>
              <span style="color: blue;">Function</span> Translate(<span style="color: blue;">ByVal</span> sourceXml <span style="color: blue;">As</span><span style="color: blue;">String</span>, <span style="color: blue;">ByVal</span> xslFile <span style="color: blue;">As</span><span style="color: blue;">String</span>) <span style="color: blue;">As</span><span style="color: blue;">String</span></p>
          </div>
        </div>
        <br />
        <p>
          <b>2. <a href="http://www.codekeep.net/">CodeKeep</a></b>
        </p>
        <p>
An on-line repository for code snippets. Ok, I keep a few on <a href="http://www.bryanrobson.net/dnn/Code/tabid/53/Default.aspx">my
main website</a>, but with this plugin they're browsable from within Studio.
</p>
        <p>
          <b>3. <a href="http://www.jtleigh.com/CopySourceAsHtml">CopySourceAsHTML</a></b>
        </p>
        <p>
This one adds a context menu into Studio that allows you to copy the highlighted text,
formatted as HTML, retaining the colour and style information used in Studio. A nice
solution to the code colouring problem that those of us with techy blogs have! It's
what I've used for the comment snippets above.
</p>
        <p>
N.B. The above tools all work with Visual Studio 2005. I have no idea about other
versions!
</p>
        <img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=e2132509-9d79-41d4-b0eb-15666f590d23" />
      </body>
      <title>Visual Studio Addins</title>
      <guid isPermaLink="false">http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,e2132509-9d79-41d4-b0eb-15666f590d23.aspx</guid>
      <link>http://www.bryanrobson.net/DasBlogCe/2007/07/06/Visual+Studio+Addins.aspx</link>
      <pubDate>Fri, 06 Jul 2007 11:55:16 GMT</pubDate>
      <description>&lt;p&gt;
I don't seem to have posted anything this week, so I feel I really ought to rectify
that... So, here's a few words about some Visual Studio Addins that I use regularly.
&lt;/p&gt;
&lt;p&gt;
&lt;b&gt;1. &lt;a href="http://www.roland-weigelt.de/ghostdoc"&gt;GhostDoc&lt;/a&gt;&lt;/b&gt;
&lt;/p&gt;
&lt;p&gt;
This addin helps you generate source documentation. It's such a faff writing what
are often no more than restatements of the name of the function, but this addin takes
care of a lot of it for you. It's written for C#, but can be used for VB.Net as well
(to an extent).
&lt;/p&gt;
&lt;p&gt;
For example, the VB.Net function:
&lt;/p&gt;
&lt;div class="boxed"&gt;
&lt;!--
{\rtf1\ansi\ansicpg\lang1024\noproof1252\uc1 \deff0{\fonttbl{\f0\fnil\fcharset0\fprq1 Courier;}}{\colortbl;??\red0\green0\blue255;\red255\green255\blue255;\red0\green0\blue0;}??\fs20 \cf1 Private\cf0  \cf1 Function\cf0  Translate(\cf1 ByVal\cf0  sourceXml \cf1 As\cf0  \cf1 String\cf0 , \cf1 ByVal\cf0  xslFile \cf1 As\cf0  \cf1 String\cf0 ) \cf1 As\cf0  \cf1 String}
--&gt;
&lt;div style="background: transparent none repeat scroll 0% 50%; font-family: Courier; font-size: 10pt; color: black; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;"&gt;
&lt;p style="margin: 0px;"&gt;
&lt;span style="color: rgb(43, 145, 175);"&gt;&lt;/span&gt;&lt;span style="color: blue;"&gt;Private&lt;/span&gt; &lt;span style="color: blue;"&gt;Function&lt;/span&gt; Translate(&lt;span style="color: blue;"&gt;ByVal&lt;/span&gt; sourceXml &lt;span style="color: blue;"&gt;As&lt;/span&gt; &lt;span style="color: blue;"&gt;String&lt;/span&gt;, &lt;span style="color: blue;"&gt;ByVal&lt;/span&gt; xslFile &lt;span style="color: blue;"&gt;As&lt;/span&gt; &lt;span style="color: blue;"&gt;String&lt;/span&gt;) &lt;span style="color: blue;"&gt;As&lt;/span&gt; &lt;span style="color: blue;"&gt;String&lt;/span&gt;
&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;
gets the comments:
&lt;/p&gt;
&lt;div class="boxed"&gt;
&lt;!--
{\rtf1\ansi\ansicpg\lang1024\noproof1252\uc1 \deff0{\fonttbl{\f0\fnil\fcharset0\fprq1 Courier;}}{\colortbl;??\red0\green0\blue0;\red255\green255\blue255;\red0\green128\blue0;\red128\green128\blue128;\red0\green0\blue255;}??\fs20     \cf3 ''' \cf4 &amp;lt;summary&amp;gt;\par ??\cf0     \cf3 ''' Translates the specified source XML.\par ??\cf0     \cf3 ''' \cf4 &amp;lt;/summary&amp;gt;\par ??\cf0     \cf3 ''' \cf4 &amp;lt;param name="sourceXml"&amp;gt;\cf3 The source XML.\cf4 &amp;lt;/param&amp;gt;\par ??\cf0     \cf3 ''' \cf4 &amp;lt;param name="xslFile"&amp;gt;\cf3 The XSL file.\cf4 &amp;lt;/param&amp;gt;\par ??\cf0     \cf3 ''' \cf4 &amp;lt;returns&amp;gt;&amp;lt;/returns&amp;gt;\par ??\cf0     \cf5 Private\cf0  \cf5 Function\cf0  Translate(\cf5 ByVal\cf0  sourceXml \cf5 As\cf0  \cf5 String\cf0 , \cf5 ByVal\cf0  xslFile \cf5 As\cf0  \cf5 String\cf0 ) \cf5 As\cf0  \cf5 String}
--&gt;
&lt;div style="background: transparent none repeat scroll 0% 50%; font-family: Courier; font-size: 10pt; color: black; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;"&gt;
&lt;p style="margin: 0px;"&gt;
&lt;span style="color: green;"&gt;''' &lt;/span&gt;&lt;span style="color: gray;"&gt;&amp;lt;summary&amp;gt;&lt;/span&gt;
&lt;/p&gt;
&lt;p style="margin: 0px;"&gt;
&lt;span style="color: green;"&gt;''' Translates the specified source XML.&lt;/span&gt;
&lt;/p&gt;
&lt;p style="margin: 0px;"&gt;
&lt;span style="color: green;"&gt;''' &lt;/span&gt;&lt;span style="color: gray;"&gt;&amp;lt;/summary&amp;gt;&lt;/span&gt;
&lt;/p&gt;
&lt;p style="margin: 0px;"&gt;
&lt;span style="color: green;"&gt;''' &lt;/span&gt;&lt;span style="color: gray;"&gt;&amp;lt;param name="sourceXml"&amp;gt;&lt;/span&gt;&lt;span style="color: green;"&gt;The
source XML.&lt;/span&gt;&lt;span style="color: gray;"&gt;&amp;lt;/param&amp;gt;&lt;/span&gt;
&lt;/p&gt;
&lt;p style="margin: 0px;"&gt;
&lt;span style="color: green;"&gt;''' &lt;/span&gt;&lt;span style="color: gray;"&gt;&amp;lt;param name="xslFile"&amp;gt;&lt;/span&gt;&lt;span style="color: green;"&gt;The
XSL file.&lt;/span&gt;&lt;span style="color: gray;"&gt;&amp;lt;/param&amp;gt;&lt;/span&gt;
&lt;/p&gt;
&lt;p style="margin: 0px;"&gt;
&lt;span style="color: green;"&gt;''' &lt;/span&gt;&lt;span style="color: gray;"&gt;&amp;lt;returns&amp;gt;&amp;lt;/returns&amp;gt;&lt;/span&gt;
&lt;/p&gt;
&lt;p style="margin: 0px;"&gt;
&lt;span style="color: blue;"&gt;Private&lt;/span&gt; &lt;span style="color: blue;"&gt;Function&lt;/span&gt; Translate(&lt;span style="color: blue;"&gt;ByVal&lt;/span&gt; sourceXml &lt;span style="color: blue;"&gt;As&lt;/span&gt; &lt;span style="color: blue;"&gt;String&lt;/span&gt;, &lt;span style="color: blue;"&gt;ByVal&lt;/span&gt; xslFile &lt;span style="color: blue;"&gt;As&lt;/span&gt; &lt;span style="color: blue;"&gt;String&lt;/span&gt;) &lt;span style="color: blue;"&gt;As&lt;/span&gt; &lt;span style="color: blue;"&gt;String&lt;/span&gt;
&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;br&gt;
&lt;p&gt;
&lt;b&gt;2. &lt;a href="http://www.codekeep.net/"&gt;CodeKeep&lt;/a&gt;&lt;/b&gt;
&lt;/p&gt;
&lt;p&gt;
An on-line repository for code snippets. Ok, I keep a few on &lt;a href="http://www.bryanrobson.net/dnn/Code/tabid/53/Default.aspx"&gt;my
main website&lt;/a&gt;, but with this plugin they're browsable from within Studio.
&lt;/p&gt;
&lt;p&gt;
&lt;b&gt;3. &lt;a href="http://www.jtleigh.com/CopySourceAsHtml"&gt;CopySourceAsHTML&lt;/a&gt;&lt;/b&gt;
&lt;/p&gt;
&lt;p&gt;
This one adds a context menu into Studio that allows you to copy the highlighted text,
formatted as HTML, retaining the colour and style information used in Studio. A nice
solution to the code colouring problem that those of us with techy blogs have! It's
what I've used for the comment snippets above.
&lt;/p&gt;
&lt;p&gt;
N.B. The above tools all work with Visual Studio 2005. I have no idea about other
versions!
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=e2132509-9d79-41d4-b0eb-15666f590d23" /&gt;</description>
      <comments>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,e2132509-9d79-41d4-b0eb-15666f590d23.aspx</comments>
      <category>Coding</category>
      <category>Software</category>
      <category>Work</category>
    </item>
    <item>
      <trackback:ping>http://www.bryanrobson.net/DasBlogCe/Trackback.aspx?guid=f6598ccf-dd8b-48fd-95ee-138f35265d64</trackback:ping>
      <pingback:server>http://www.bryanrobson.net/DasBlogCe/pingback.aspx</pingback:server>
      <pingback:target>http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,f6598ccf-dd8b-48fd-95ee-138f35265d64.aspx</pingback:target>
      <dc:creator>Bryan</dc:creator>
      <wfw:comment>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,f6598ccf-dd8b-48fd-95ee-138f35265d64.aspx</wfw:comment>
      <wfw:commentRss>http://www.bryanrobson.net/DasBlogCe/SyndicationService.asmx/GetEntryCommentsRss?guid=f6598ccf-dd8b-48fd-95ee-138f35265d64</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Life may be cheap, but it seems my corpse would be cheaper still...
</p>
        <a href="http://mingle2.com/cadaver-calculator" style="background: transparent url(http://mingle2.com/img/bb/body_worth/badge.jpg) no-repeat scroll 0% 50%; color: rgb(255, 255, 255); text-decoration: none; display: block; width: 395px; height: 184px; padding-top: 121px; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial; font-family: Arial,sans-serif; font-size: 24px; text-align: center;">
          <strong style="font-weight: normal;">$3640.00</strong>
          <span style="display: none;">The
Cadaver Calculator - Find out how much your body is worth</span>
        </a>
        <p style="text-align: left;">
Mingle<sup>2</sup> - <a href="http://mingle2.com">Online Dating</a></p>
        <p>
          <i>Via <a href="http://scienceblogs.com/pharyngula/2007/06/my_car_is_worth_more_than_i_am.php">Pharyngula</a></i>
        </p>
        <img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=f6598ccf-dd8b-48fd-95ee-138f35265d64" />
      </body>
      <title>Is that all I'm worth?</title>
      <guid isPermaLink="false">http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,f6598ccf-dd8b-48fd-95ee-138f35265d64.aspx</guid>
      <link>http://www.bryanrobson.net/DasBlogCe/2007/06/29/Is+That+All+Im+Worth.aspx</link>
      <pubDate>Fri, 29 Jun 2007 11:32:39 GMT</pubDate>
      <description>&lt;p&gt;
Life may be cheap, but it seems my corpse would be cheaper still...
&lt;/p&gt;
&lt;a href="http://mingle2.com/cadaver-calculator" style="background: transparent url(http://mingle2.com/img/bb/body_worth/badge.jpg) no-repeat scroll 0% 50%; color: rgb(255, 255, 255); text-decoration: none; display: block; width: 395px; height: 184px; padding-top: 121px; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial; font-family: Arial,sans-serif; font-size: 24px; text-align: center;"&gt;&lt;strong style="font-weight: normal;"&gt;$3640.00&lt;/strong&gt;&lt;span style="display: none;"&gt;The
Cadaver Calculator - Find out how much your body is worth&lt;/span&gt;&lt;/a&gt;
&lt;p style="text-align: left;"&gt;
Mingle&lt;sup&gt;2&lt;/sup&gt; - &lt;a href="http://mingle2.com"&gt;Online Dating&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;i&gt;Via &lt;a href="http://scienceblogs.com/pharyngula/2007/06/my_car_is_worth_more_than_i_am.php"&gt;Pharyngula&lt;/a&gt;&lt;/i&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=f6598ccf-dd8b-48fd-95ee-138f35265d64" /&gt;</description>
      <comments>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,f6598ccf-dd8b-48fd-95ee-138f35265d64.aspx</comments>
      <category>Funny</category>
      <category>Life</category>
      <category>Quiz</category>
      <category>Wasting time</category>
    </item>
    <item>
      <trackback:ping>http://www.bryanrobson.net/DasBlogCe/Trackback.aspx?guid=7e2dbb8c-dc5d-4261-a7cb-8f4d2d6dee2e</trackback:ping>
      <pingback:server>http://www.bryanrobson.net/DasBlogCe/pingback.aspx</pingback:server>
      <pingback:target>http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,7e2dbb8c-dc5d-4261-a7cb-8f4d2d6dee2e.aspx</pingback:target>
      <dc:creator>Bryan</dc:creator>
      <wfw:comment>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,7e2dbb8c-dc5d-4261-a7cb-8f4d2d6dee2e.aspx</wfw:comment>
      <wfw:commentRss>http://www.bryanrobson.net/DasBlogCe/SyndicationService.asmx/GetEntryCommentsRss?guid=7e2dbb8c-dc5d-4261-a7cb-8f4d2d6dee2e</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Well, that was a pleasant enough show... We got there a little after 8pm, so had missed
the first support (The Twilight Sad), but caught most of Ash's set, which was pretty
good.
</p>
        <p>
So, Snow Patrol: big, anthemic, lighters-aloft music (well, these days it seems to
be "mobile phones aloft", but you get the drift). Heavy on numbers from the current
album, a bunch from the last, and only a couple from before that, which isn't exactly
a suprise as the band was pretty much unknown until the last album, and you gotta
give the punters what they want. And the punters certainly seemed satisfied by what
they were given.
</p>
        <p>
The O2 Arena: big, easy to get to and quick to enter, though we had a long walk around
the arena to get to door H, but that gave us a chance to see what the dome now contains.
What it contains is a Vue cinema, and a bunch of restaurants and bars (of the Nando's
and Slug &amp; Lettuce variety - pretty much the same sort of mix as Reading's Oracle,
and no doubt any number of other recent developments). The arena itself is quite good
- decent views from everywhere and reasonable sound quality (as good as I've heard
in an arena, certainly).
</p>
        <p>
I have to say that it does piss me off that you can't take your own bottles of water
into the arena. The restriction is purely about money, of course. I don't know if
they even tried to justify it on any other grounds.
</p>
        <p>
Getting home again is more of a challenge. It takes forever to get down to the tube
platform. Ok, no longer than it would from Earl's Court, say, but given it's all newly
built you'd hope for quicker transport than they've managed. Huge queues for buses
and taxis, as well, so we stuck with the tube and eventually got on a train about
30 minutes after leaving the arena. Paddington was busy as well - is it me, or have
they reduced the number of post-midnight trains back to Reading?
</p>
        <p>
To sum up: I enjoyed it well enough, but I'd rather see Cale, or Howe, or someone
who's prepared to take a little more risk... (we'll ignore the fact that I'll be seeing
Steely Dan in Hammersmith in a couple of weeks, 'cause that show certainly ain't gonna
be taking any risks!)
</p>
        <img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=7e2dbb8c-dc5d-4261-a7cb-8f4d2d6dee2e" />
      </body>
      <title>Review: Snow Patrol in The O2</title>
      <guid isPermaLink="false">http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,7e2dbb8c-dc5d-4261-a7cb-8f4d2d6dee2e.aspx</guid>
      <link>http://www.bryanrobson.net/DasBlogCe/2007/06/29/Review+Snow+Patrol+In+The+O2.aspx</link>
      <pubDate>Fri, 29 Jun 2007 09:22:22 GMT</pubDate>
      <description>&lt;p&gt;
Well, that was a pleasant enough show... We got there a little after 8pm, so had missed
the first support (The Twilight Sad), but caught most of Ash's set, which was pretty
good.
&lt;/p&gt;
&lt;p&gt;
So, Snow Patrol: big, anthemic, lighters-aloft music (well, these days it seems to
be "mobile phones aloft", but you get the drift). Heavy on numbers from the current
album, a bunch from the last, and only a couple from before that, which isn't exactly
a suprise as the band was pretty much unknown until the last album, and you gotta
give the punters what they want. And the punters certainly seemed satisfied by what
they were given.
&lt;/p&gt;
&lt;p&gt;
The O2 Arena: big, easy to get to and quick to enter, though we had a long walk around
the arena to get to door H, but that gave us a chance to see what the dome now contains.
What it contains is a Vue cinema, and a bunch of restaurants and bars (of the Nando's
and Slug &amp;amp; Lettuce variety - pretty much the same sort of mix as Reading's Oracle,
and no doubt any number of other recent developments). The arena itself is quite good
- decent views from everywhere and reasonable sound quality (as good as I've heard
in an arena, certainly).
&lt;/p&gt;
&lt;p&gt;
I have to say that it does piss me off that you can't take your own bottles of water
into the arena. The restriction is purely about money, of course. I don't know if
they even tried to justify it on any other grounds.
&lt;/p&gt;
&lt;p&gt;
Getting home again is more of a challenge. It takes forever to get down to the tube
platform. Ok, no longer than it would from Earl's Court, say, but given it's all newly
built you'd hope for quicker transport than they've managed. Huge queues for buses
and taxis, as well, so we stuck with the tube and eventually got on a train about
30 minutes after leaving the arena. Paddington was busy as well - is it me, or have
they reduced the number of post-midnight trains back to Reading?
&lt;/p&gt;
&lt;p&gt;
To sum up: I enjoyed it well enough, but I'd rather see Cale, or Howe, or someone
who's prepared to take a little more risk... (we'll ignore the fact that I'll be seeing
Steely Dan in Hammersmith in a couple of weeks, 'cause that show certainly ain't gonna
be taking any risks!)
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=7e2dbb8c-dc5d-4261-a7cb-8f4d2d6dee2e" /&gt;</description>
      <comments>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,7e2dbb8c-dc5d-4261-a7cb-8f4d2d6dee2e.aspx</comments>
      <category>Music</category>
    </item>
    <item>
      <trackback:ping>http://www.bryanrobson.net/DasBlogCe/Trackback.aspx?guid=8fb8eb15-9b29-4179-a824-6562a7fe2e02</trackback:ping>
      <pingback:server>http://www.bryanrobson.net/DasBlogCe/pingback.aspx</pingback:server>
      <pingback:target>http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,8fb8eb15-9b29-4179-a824-6562a7fe2e02.aspx</pingback:target>
      <dc:creator>Bryan</dc:creator>
      <wfw:comment>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,8fb8eb15-9b29-4179-a824-6562a7fe2e02.aspx</wfw:comment>
      <wfw:commentRss>http://www.bryanrobson.net/DasBlogCe/SyndicationService.asmx/GetEntryCommentsRss?guid=8fb8eb15-9b29-4179-a824-6562a7fe2e02</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <div class="imagefloatright">
          <img src="http://www.snowpatrol.com/images/local/500/ac1b4c78-bd4e-4240-9a43-e03ee01d18b3.jpg" width="167" height="250" alt="Snow Patrol" />
        </div>
        <p>
Tonight we're going to see <a href="http://www.snowpatrol.com/">Snow Patrol</a> at <a href="http://www.theo2.co.uk/web/guest/home">The
O2 Arena</a> (or the dome, as it used to be known, before anyone found a good use
for it). The band is a bit more... <i>mainstream</i>, say, than most I tend to see
these days, but it should still be a good show, and a kind of "thank you" to V for
putting up with previous random gigs like John Cale and the Howe Gelb &amp; Friends
shows earlier this year!
</p>
        <p>
According to The O2's website, the arena's an improvement on echoey barns like Wembley
Arena and Earl's Court (note to self: sort out leave and who's going to the <a href="http://www.camra.org.uk/page.aspx?o=195496">beer
festival</a> this year!), so we'll soon see if they're exaggerating when they say:
</p>
        <div class="boxed">
          <p>
With perfect sight-lines from every angle, crystal clear acoustics, obscenely comfy
seating, wide concourses between aisles and a huge variety of snack and drink options
to enjoy throughout the show.
</p>
        </div>
        <p>
I hope they aren't - I've had to put up with lousy acoustics in the past at some gigs,
though to be fair it's not just the concrete boxes that suffer (one of the worst I've
heard was <a href="http://www.britishseapower.co.uk/">British Sea Power</a> at <a href="http://www.meanfiddler.com/displayPage_forum.asp?PageID=428">The
Forum</a> in Kentish Town), but it does tend to be these arenas that sound the worst,
which is one of the reasons I tend to prefer smaller gigs...
</p>
        <p>
          <i>Photo <a href="http://www.snowpatrol.com/gallery/default.aspx?fid=4185">linked</a> from
Snow Patrol's website.</i>
        </p>
        <img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=8fb8eb15-9b29-4179-a824-6562a7fe2e02" />
      </body>
      <title>Snow Patrol in The O2</title>
      <guid isPermaLink="false">http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,8fb8eb15-9b29-4179-a824-6562a7fe2e02.aspx</guid>
      <link>http://www.bryanrobson.net/DasBlogCe/2007/06/28/Snow+Patrol+In+The+O2.aspx</link>
      <pubDate>Thu, 28 Jun 2007 13:31:38 GMT</pubDate>
      <description>&lt;div class="imagefloatright"&gt;
&lt;img src="http://www.snowpatrol.com/images/local/500/ac1b4c78-bd4e-4240-9a43-e03ee01d18b3.jpg" width="167" height="250" alt="Snow Patrol"&gt; 
&lt;/div&gt;
&lt;p&gt;
Tonight we're going to see &lt;a href="http://www.snowpatrol.com/"&gt;Snow Patrol&lt;/a&gt; at &lt;a href="http://www.theo2.co.uk/web/guest/home"&gt;The
O2 Arena&lt;/a&gt; (or the dome, as it used to be known, before anyone found a good use
for it). The band is a bit more... &lt;i&gt;mainstream&lt;/i&gt;, say, than most I tend to see
these days, but it should still be a good show, and a kind of "thank you" to V for
putting up with previous random gigs like John Cale and the Howe Gelb &amp;amp; Friends
shows earlier this year!
&lt;/p&gt;
&lt;p&gt;
According to The O2's website, the arena's an improvement on echoey barns like Wembley
Arena and Earl's Court (note to self: sort out leave and who's going to the &lt;a href="http://www.camra.org.uk/page.aspx?o=195496"&gt;beer
festival&lt;/a&gt; this year!), so we'll soon see if they're exaggerating when they say:
&lt;/p&gt;
&lt;div class="boxed"&gt;
&lt;p&gt;
With perfect sight-lines from every angle, crystal clear acoustics, obscenely comfy
seating, wide concourses between aisles and a huge variety of snack and drink options
to enjoy throughout the show.
&lt;/p&gt;
&lt;/div&gt;
&lt;p&gt;
I hope they aren't - I've had to put up with lousy acoustics in the past at some gigs,
though to be fair it's not just the concrete boxes that suffer (one of the worst I've
heard was &lt;a href="http://www.britishseapower.co.uk/"&gt;British Sea Power&lt;/a&gt; at &lt;a href="http://www.meanfiddler.com/displayPage_forum.asp?PageID=428"&gt;The
Forum&lt;/a&gt; in Kentish Town), but it does tend to be these arenas that sound the worst,
which is one of the reasons I tend to prefer smaller gigs...
&lt;/p&gt;
&lt;p&gt;
&lt;i&gt;Photo &lt;a href="http://www.snowpatrol.com/gallery/default.aspx?fid=4185"&gt;linked&lt;/a&gt; from
Snow Patrol's website.&lt;/i&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=8fb8eb15-9b29-4179-a824-6562a7fe2e02" /&gt;</description>
      <comments>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,8fb8eb15-9b29-4179-a824-6562a7fe2e02.aspx</comments>
      <category>Music</category>
    </item>
    <item>
      <trackback:ping>http://www.bryanrobson.net/DasBlogCe/Trackback.aspx?guid=d11159c3-2a09-4902-b966-3028dfc96118</trackback:ping>
      <pingback:server>http://www.bryanrobson.net/DasBlogCe/pingback.aspx</pingback:server>
      <pingback:target>http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,d11159c3-2a09-4902-b966-3028dfc96118.aspx</pingback:target>
      <dc:creator>Bryan</dc:creator>
      <wfw:comment>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,d11159c3-2a09-4902-b966-3028dfc96118.aspx</wfw:comment>
      <wfw:commentRss>http://www.bryanrobson.net/DasBlogCe/SyndicationService.asmx/GetEntryCommentsRss?guid=d11159c3-2a09-4902-b966-3028dfc96118</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Via <a href="http://feeds.feedburner.com/%7Er/boingboing/iBag/%7E3/127363052/theremin_cover_of_gn.html">Boing
Boing</a>, Gnarls Barkley's song <i>Crazy</i>, performed on the theremin by <i><a href="www.myspace.com/etherandaether">The
Ether and Aether Experiment</a></i>. What more could you want to cheer up a miserable
June day?
</p>
        <div class="boxed">
          <p>
            <i>This video is an experiment to see how rapidly the theremin can be injected into
the world's collective consciousness.</i>
          </p>
        </div>
        <p>
Too right - we need more theremin in popular music. Who were the last band to use
it? Space, or someone? Bill Bailey seems quite fond as well, but, damn it, we need
more!
</p>
        <object height="350" width="425">
          <param name="movie" value="http://www.youtube.com/v/mW0B1sipLBI" />
          <param name="wmode" value="transparent" />
          <embed src="http://www.youtube.com/v/mW0B1sipLBI" type="application/x-shockwave-flash" wmode="transparent" height="350" width="425">
          </embed>
        </object>
        <img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=d11159c3-2a09-4902-b966-3028dfc96118" />
      </body>
      <title>Theremin Crazy</title>
      <guid isPermaLink="false">http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,d11159c3-2a09-4902-b966-3028dfc96118.aspx</guid>
      <link>http://www.bryanrobson.net/DasBlogCe/2007/06/27/Theremin+Crazy.aspx</link>
      <pubDate>Wed, 27 Jun 2007 09:46:57 GMT</pubDate>
      <description>&lt;p&gt;
Via &lt;a href="http://feeds.feedburner.com/%7Er/boingboing/iBag/%7E3/127363052/theremin_cover_of_gn.html"&gt;Boing
Boing&lt;/a&gt;, Gnarls Barkley's song &lt;i&gt;Crazy&lt;/i&gt;, performed on the theremin by &lt;i&gt;&lt;a href="www.myspace.com/etherandaether"&gt;The
Ether and Aether Experiment&lt;/a&gt;&lt;/i&gt;. What more could you want to cheer up a miserable
June day?
&lt;/p&gt;
&lt;div class="boxed"&gt;
&lt;p&gt;
&lt;i&gt;This video is an experiment to see how rapidly the theremin can be injected into
the world's collective consciousness.&lt;/i&gt;
&lt;/p&gt;
&lt;/div&gt;
&lt;p&gt;
Too right - we need more theremin in popular music. Who were the last band to use
it? Space, or someone? Bill Bailey seems quite fond as well, but, damn it, we need
more!
&lt;/p&gt;
&lt;object height="350" width="425"&gt;
&lt;param name="movie" value="http://www.youtube.com/v/mW0B1sipLBI"&gt;
&lt;param name="wmode" value="transparent"&gt;&lt;embed src="http://www.youtube.com/v/mW0B1sipLBI" type="application/x-shockwave-flash" wmode="transparent" height="350" width="425"&gt;
&lt;/object&gt;&lt;img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=d11159c3-2a09-4902-b966-3028dfc96118" /&gt;</description>
      <comments>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,d11159c3-2a09-4902-b966-3028dfc96118.aspx</comments>
      <category>Music</category>
    </item>
    <item>
      <trackback:ping>http://www.bryanrobson.net/DasBlogCe/Trackback.aspx?guid=8b753546-9485-42e2-8320-b5a431e616a2</trackback:ping>
      <pingback:server>http://www.bryanrobson.net/DasBlogCe/pingback.aspx</pingback:server>
      <pingback:target>http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,8b753546-9485-42e2-8320-b5a431e616a2.aspx</pingback:target>
      <dc:creator>Bryan</dc:creator>
      <wfw:comment>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,8b753546-9485-42e2-8320-b5a431e616a2.aspx</wfw:comment>
      <wfw:commentRss>http://www.bryanrobson.net/DasBlogCe/SyndicationService.asmx/GetEntryCommentsRss?guid=8b753546-9485-42e2-8320-b5a431e616a2</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Today's awful pun, courtesy of xkcd:
</p>
        <a href="http://xkcd.com/c282.html">
          <img src="http://imgs.xkcd.com/comics/organic_fuel.png" alt="I disagree: he has lots to apologise for!" />
        </a>
        <img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=8b753546-9485-42e2-8320-b5a431e616a2" />
      </body>
      <title>Organic fuel</title>
      <guid isPermaLink="false">http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,8b753546-9485-42e2-8320-b5a431e616a2.aspx</guid>
      <link>http://www.bryanrobson.net/DasBlogCe/2007/06/27/Organic+Fuel.aspx</link>
      <pubDate>Wed, 27 Jun 2007 08:03:34 GMT</pubDate>
      <description>&lt;p&gt;
Today's awful pun, courtesy of xkcd:
&lt;/p&gt;
&lt;a href="http://xkcd.com/c282.html"&gt;&lt;img src="http://imgs.xkcd.com/comics/organic_fuel.png" alt="I disagree: he has lots to apologise for!" /&gt;&lt;/a&gt;&lt;img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=8b753546-9485-42e2-8320-b5a431e616a2" /&gt;</description>
      <comments>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,8b753546-9485-42e2-8320-b5a431e616a2.aspx</comments>
      <category>Funny</category>
      <category>Wasting time</category>
    </item>
    <item>
      <trackback:ping>http://www.bryanrobson.net/DasBlogCe/Trackback.aspx?guid=7f707a56-a878-483b-a212-7f128af8b362</trackback:ping>
      <pingback:server>http://www.bryanrobson.net/DasBlogCe/pingback.aspx</pingback:server>
      <pingback:target>http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,7f707a56-a878-483b-a212-7f128af8b362.aspx</pingback:target>
      <dc:creator>Bryan</dc:creator>
      <wfw:comment>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,7f707a56-a878-483b-a212-7f128af8b362.aspx</wfw:comment>
      <wfw:commentRss>http://www.bryanrobson.net/DasBlogCe/SyndicationService.asmx/GetEntryCommentsRss?guid=7f707a56-a878-483b-a212-7f128af8b362</wfw:commentRss>
      <title>"You can keep your Costa Brava..."</title>
      <guid isPermaLink="false">http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,7f707a56-a878-483b-a212-7f128af8b362.aspx</guid>
      <link>http://www.bryanrobson.net/DasBlogCe/2007/06/26/You+Can+Keep+Your+Costa+Brava.aspx</link>
      <pubDate>Tue, 26 Jun 2007 12:31:05 GMT</pubDate>
      <description>&lt;div class="imagefloatright"&gt;
&lt;a href="http://www.flickr.com/photos/bryanrobson/622911845/" title="Photo Sharing"&gt;&lt;img src="http://farm2.static.flickr.com/1373/622911845_c30c542c90_m.jpg" width="180" height="240" alt="Our Hotel" /&gt;&lt;/a&gt; 
&lt;/div&gt;
&lt;p&gt;
I've just returned from a very pleasant week in Spain. We stayed at the &lt;a href="http://www.google.co.uk/maps?f=q&amp;hl=en&amp;geocode=&amp;q=hotel+neptuno,+tossa+de+mar,+spain&amp;ie=UTF8&amp;ll=41.719174,2.928658&amp;spn=0.0015,0.002511&amp;t=h&amp;z=19&amp;om=1"&gt;Hotel
Neptuno&lt;/a&gt;, in the small resort town of Tossa De Mar, on the Costa Brava. The weather
was gorgeous, the food and drink great, and my regret at being back at my desk yesterday
morning even greater!
&lt;/p&gt;
&lt;p&gt;
We booked the holiday as a flight and hotel package from Expedia, and after looking
at the transfer options I decided to hire a car for the week instead of messing around
with trains and buses. I'm very glad I did so - it was a quick hop up the motorway
from Barcelona airport to Tossa, only taking about an hour and a half, and the hire
for the week was only £100, with an extra €54 for parking and around €50 for petrol,
so still ended up cheaper between the two of us than public transport would have done,
and gave us the advantage of the car when we wanted it.
&lt;/p&gt;
&lt;p&gt;
We spent most of the week relaxing in Tossa, but we had an excursion down to Barcelona
for a day. We drove down the coast instead of the motorways, which took a little longer
but was worth it for the views, and parked for the day in the Glories carpark, where
we got the &lt;a href="http://www.bsmsa.es/mobilitat/en/tm.html"&gt;Metropark&lt;/a&gt; ticket
- a bargain at €5.50 for all-day parking plus metro and bus travelcard. Another €5
or so for an extra travelcard for V (my better half), and we were set.
&lt;/p&gt;
&lt;p&gt;
I was very pleasantly suprised by how easy it was to get to and from the car park
by road, given how close to the centre it is. Actually, I thought the entire transport
network worked excellently around Barcelona. The metro trains were air-conditioned,
on-time, clean, frequent, and took us wherever we wanted to go (and let's face it,
we can't say the same things about the tube in London, can we?)
&lt;/p&gt;
&lt;p&gt;
Anyway, Tossa itself was a lovely little town, with some great restaurants, a reasonable
beach (though the sand wasn't exactly fine), some interesting architecture, and a
fair selection of shops - everything we wanted, really! And wonderfully free of the
Reading-town-centre-on-a-Saturday-night vibe that plagues many resorts...
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=7f707a56-a878-483b-a212-7f128af8b362" /&gt;</description>
      <comments>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,7f707a56-a878-483b-a212-7f128af8b362.aspx</comments>
      <category>Travel</category>
    </item>
    <item>
      <trackback:ping>http://www.bryanrobson.net/DasBlogCe/Trackback.aspx?guid=d164928e-8bd4-40a8-8ebb-53f5b2c08d80</trackback:ping>
      <pingback:server>http://www.bryanrobson.net/DasBlogCe/pingback.aspx</pingback:server>
      <pingback:target>http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,d164928e-8bd4-40a8-8ebb-53f5b2c08d80.aspx</pingback:target>
      <dc:creator>Bryan</dc:creator>
      <wfw:comment>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,d164928e-8bd4-40a8-8ebb-53f5b2c08d80.aspx</wfw:comment>
      <wfw:commentRss>http://www.bryanrobson.net/DasBlogCe/SyndicationService.asmx/GetEntryCommentsRss?guid=d164928e-8bd4-40a8-8ebb-53f5b2c08d80</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <div class="imagefloatright">
          <img src="http://www.ukshield.org/Portals/10/nicklaus_16th.jpg" alt="Carden Park" height="214" width="271" />
        </div>
        <p>
In a couple of days I'm heading to Cheshire to take part in the 23rd Annual <a href="http://www.ukshield.org/">UK
Shield</a> Challenge, a golf tournament over 3 rounds and 2 days. The tournament is
affiliated with HP, and started out (way back when!) as a north v. south competition
between 2 of the offices, but by now it's got teams from all over HP UK, and plenty
of people taking part who, like me, have either tangental or historic attachments
to HP (I spent a little over 6 years, in two 3-year stints, working in their Bracknell
office as a consultant).
</p>
        <p>
Each year a different team organises the event, and this year it's Team Manchester
who have the pleasure, and they're taking us to <a href="www.DeVere.co.uk/Carden_Park">Carden
Park</a>. Last year my team (the glorious "Fast Bogeys") organised the event, which
we held at <a href="http://www.woodhallspagolf.com/">Woodhall Spa</a>. That was a
great few days, and one of the finest courses I've ever played on. I hope this year
is as good..!
</p>
        <img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=d164928e-8bd4-40a8-8ebb-53f5b2c08d80" />
      </body>
      <title>Golf</title>
      <guid isPermaLink="false">http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,d164928e-8bd4-40a8-8ebb-53f5b2c08d80.aspx</guid>
      <link>http://www.bryanrobson.net/DasBlogCe/2007/06/11/Golf.aspx</link>
      <pubDate>Mon, 11 Jun 2007 15:44:16 GMT</pubDate>
      <description>&lt;div class="imagefloatright"&gt;&lt;img src="http://www.ukshield.org/Portals/10/nicklaus_16th.jpg" alt="Carden Park" height="214" width="271"&gt;
&lt;/div&gt;
&lt;p&gt;
In a couple of days I'm heading to Cheshire to take part in the 23rd Annual &lt;a href="http://www.ukshield.org/"&gt;UK
Shield&lt;/a&gt; Challenge, a golf tournament over 3 rounds and 2 days. The tournament is
affiliated with HP, and started out (way back when!) as a north v. south competition
between 2 of the offices, but by now it's got teams from all over HP UK, and plenty
of people taking part who, like me, have either tangental or historic attachments
to HP (I spent a little over 6 years, in two 3-year stints, working in their Bracknell
office as a consultant).
&lt;/p&gt;
&lt;p&gt;
Each year a different team organises the event, and this year it's Team Manchester
who have the pleasure, and they're taking us to &lt;a href="www.DeVere.co.uk/Carden_Park"&gt;Carden
Park&lt;/a&gt;. Last year my team (the glorious "Fast Bogeys") organised the event, which
we held at &lt;a href="http://www.woodhallspagolf.com/"&gt;Woodhall Spa&lt;/a&gt;. That was a
great few days, and one of the finest courses I've ever played on. I hope this year
is as good..!
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=d164928e-8bd4-40a8-8ebb-53f5b2c08d80" /&gt;</description>
      <comments>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,d164928e-8bd4-40a8-8ebb-53f5b2c08d80.aspx</comments>
      <category>Sport</category>
    </item>
    <item>
      <trackback:ping>http://www.bryanrobson.net/DasBlogCe/Trackback.aspx?guid=54feacab-48d6-44e1-8fa3-538ac360302a</trackback:ping>
      <pingback:server>http://www.bryanrobson.net/DasBlogCe/pingback.aspx</pingback:server>
      <pingback:target>http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,54feacab-48d6-44e1-8fa3-538ac360302a.aspx</pingback:target>
      <dc:creator>Bryan</dc:creator>
      <wfw:comment>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,54feacab-48d6-44e1-8fa3-538ac360302a.aspx</wfw:comment>
      <wfw:commentRss>http://www.bryanrobson.net/DasBlogCe/SyndicationService.asmx/GetEntryCommentsRss?guid=54feacab-48d6-44e1-8fa3-538ac360302a</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <div class="imagefloatright">
          <a href="http://www.flickr.com/photos/bryanrobson/539003544/" title="Photo Sharing">
            <img src="http://farm2.static.flickr.com/1371/539003544_6bcd371570_m.jpg" alt="Relaxing before take off" height="180" width="240" />
          </a>
        </div>
        <p>
My Dad was 60 back in January, and for his birthday my Mum bought him a gliding lesson.
Since she's such a nice person, she got me one for my (not at all significant) birthday,
so I could join him. After an aborted attempt a few weeks ago, when it was rather
misty, we finally flew yesterday.
</p>
        <p>
We flew at the <a href="http://www.ygc.co.uk/index.php">Yorkshire Gliding Club</a>,
on Sutton Bank in North Yorkshire. Spectacular views, even though it was a bit hazy,
and I may even forgive my Dad for finding a bunch of thermals and getting lots more
air-time that I did, but since I had more time in control of the glider I suppose
we came out even...
</p>
        <p>
          <a href="http://www.flickr.com/photos/bryanrobson/sets/72157600334535351/">Lots of
pictures</a> up on my Flickr stream, and movies of my Dad <a href="http://www.youtube.com/watch?v=Ld2UgV6BUls">taking
off</a> and <a href="http://www.youtube.com/watch?v=yVfFlsGUERA">landing</a> at YouTube
(or there will be when they've finished processing!)
</p>
        <img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=54feacab-48d6-44e1-8fa3-538ac360302a" />
      </body>
      <title>Gliding</title>
      <guid isPermaLink="false">http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,54feacab-48d6-44e1-8fa3-538ac360302a.aspx</guid>
      <link>http://www.bryanrobson.net/DasBlogCe/2007/06/11/Gliding.aspx</link>
      <pubDate>Mon, 11 Jun 2007 12:05:13 GMT</pubDate>
      <description>&lt;div class="imagefloatright"&gt;
&lt;a href="http://www.flickr.com/photos/bryanrobson/539003544/" title="Photo Sharing"&gt;&lt;img src="http://farm2.static.flickr.com/1371/539003544_6bcd371570_m.jpg" alt="Relaxing before take off" height="180" width="240"&gt;&lt;/a&gt; 
&lt;/div&gt;
&lt;p&gt;
My Dad was 60 back in January, and for his birthday my Mum bought him a gliding lesson.
Since she's such a nice person, she got me one for my (not at all significant) birthday,
so I could join him. After an aborted attempt a few weeks ago, when it was rather
misty, we finally flew yesterday.
&lt;/p&gt;
&lt;p&gt;
We flew at the &lt;a href="http://www.ygc.co.uk/index.php"&gt;Yorkshire Gliding Club&lt;/a&gt;,
on Sutton Bank in North Yorkshire. Spectacular views, even though it was a bit hazy,
and I may even forgive my Dad for finding a bunch of thermals and getting lots more
air-time that I did, but since I had more time in control of the glider I suppose
we came out even...
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.flickr.com/photos/bryanrobson/sets/72157600334535351/"&gt;Lots of
pictures&lt;/a&gt; up on my Flickr stream, and movies of my Dad &lt;a href="http://www.youtube.com/watch?v=Ld2UgV6BUls"&gt;taking
off&lt;/a&gt; and &lt;a href="http://www.youtube.com/watch?v=yVfFlsGUERA"&gt;landing&lt;/a&gt; at YouTube
(or there will be when they've finished processing!)
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=54feacab-48d6-44e1-8fa3-538ac360302a" /&gt;</description>
      <comments>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,54feacab-48d6-44e1-8fa3-538ac360302a.aspx</comments>
      <category>Life</category>
      <category>Sport</category>
      <category>Travel</category>
    </item>
    <item>
      <trackback:ping>http://www.bryanrobson.net/DasBlogCe/Trackback.aspx?guid=6343959f-fa76-445d-a06d-f648d2e66eb5</trackback:ping>
      <pingback:server>http://www.bryanrobson.net/DasBlogCe/pingback.aspx</pingback:server>
      <pingback:target>http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,6343959f-fa76-445d-a06d-f648d2e66eb5.aspx</pingback:target>
      <dc:creator>Bryan</dc:creator>
      <wfw:comment>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,6343959f-fa76-445d-a06d-f648d2e66eb5.aspx</wfw:comment>
      <wfw:commentRss>http://www.bryanrobson.net/DasBlogCe/SyndicationService.asmx/GetEntryCommentsRss?guid=6343959f-fa76-445d-a06d-f648d2e66eb5</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
I've just upgraded to DasBlog v1.9.7123.653. My apologies if things have been (and
still are!) a little temperamental around here!
</p>
        <p>
Now, to get the config tab working again...
</p>
        <p>
          <b>Update:</b> Edit tab wasn't working because there was an entry in site.config which
was referring to the previous version of the FreeTextBoxAdapter. I removed the entry,
and it all worked again:
</p>
        <div id="code">
&lt;EntryEditControl&gt;newtelligence.DasBlog.Web.FreeTextBoxAdapter, newtelligence.DasBlog.Web,
Version=1.9.6264.0, Culture=neutral, PublicKeyToken=null&lt;/EntryEditControl&gt; 
</div>
        <p>
I've also taken this opportunity to use the dasblogupgrader.exe tool to remove all
the pingback spam that was cluttering up a lot of my pages...
</p>
        <img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=6343959f-fa76-445d-a06d-f648d2e66eb5" />
      </body>
      <title>DasBlog upgrade</title>
      <guid isPermaLink="false">http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,6343959f-fa76-445d-a06d-f648d2e66eb5.aspx</guid>
      <link>http://www.bryanrobson.net/DasBlogCe/2007/06/08/DasBlog+Upgrade.aspx</link>
      <pubDate>Fri, 08 Jun 2007 14:06:58 GMT</pubDate>
      <description>&lt;p&gt;
I've just upgraded to DasBlog v1.9.7123.653. My apologies if things have been (and
still are!) a little temperamental around here!
&lt;/p&gt;
&lt;p&gt;
Now, to get the config tab working again...
&lt;/p&gt;
&lt;p&gt;
&lt;b&gt;Update:&lt;/b&gt; Edit tab wasn't working because there was an entry in site.config which
was referring to the previous version of the FreeTextBoxAdapter. I removed the entry,
and it all worked again:
&lt;/p&gt;
&lt;div id="code"&gt;
&amp;lt;EntryEditControl&amp;gt;newtelligence.DasBlog.Web.FreeTextBoxAdapter, newtelligence.DasBlog.Web,
Version=1.9.6264.0, Culture=neutral, PublicKeyToken=null&amp;lt;/EntryEditControl&amp;gt; 
&lt;/div&gt;
&lt;p&gt;
I've also taken this opportunity to use the dasblogupgrader.exe tool to remove all
the pingback spam that was cluttering up a lot of my pages...
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=6343959f-fa76-445d-a06d-f648d2e66eb5" /&gt;</description>
      <comments>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,6343959f-fa76-445d-a06d-f648d2e66eb5.aspx</comments>
      <category>dasBlog</category>
    </item>
    <item>
      <trackback:ping>http://www.bryanrobson.net/DasBlogCe/Trackback.aspx?guid=bbdc3fa8-59eb-4acb-9c00-21ffe5517552</trackback:ping>
      <pingback:server>http://www.bryanrobson.net/DasBlogCe/pingback.aspx</pingback:server>
      <pingback:target>http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,bbdc3fa8-59eb-4acb-9c00-21ffe5517552.aspx</pingback:target>
      <dc:creator>Bryan</dc:creator>
      <wfw:comment>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,bbdc3fa8-59eb-4acb-9c00-21ffe5517552.aspx</wfw:comment>
      <wfw:commentRss>http://www.bryanrobson.net/DasBlogCe/SyndicationService.asmx/GetEntryCommentsRss?guid=bbdc3fa8-59eb-4acb-9c00-21ffe5517552</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
This makes very depressing reading: <a href="http://www.wellingtongrey.net/articles/archive/2007-06-07--open-letter-aqa.html">A
physics teacher begs for his subject back</a>. I have a degree in physics (albeit
not an impressive one, but hey, that's the effect that a very close and cheap bar
had on me when I was that age...), and I thoroughly enjoyed the subject at school.
It spoke a language that just <i>made sense</i> to me. The article says:
</p>
        <div class="boxed">
          <p>
            <i>"The thing that attracts pupils to physics is its precision. Here, at last, is
a discipline that gives real answers that apply to the physical world. But that precision
is now gone. Calculations — the very soul of physics — are absent from the new GCSE.
Physics is a subject unpolluted by a torrent of malleable words, but now everything
must be described in words."</i>
          </p>
        </div>
        <p>
Given the sort of teaching that he describes, I just can't see that I would have given
a damn. It would have bored me to tears. Hell, if I'd wanted that sort of a subject
I'd have studied sociology or something (no insult intended to the sociologists out
there!); what I loved about physics was the elegance of a mathematical proof being
able to illustrate the reality of our universe.
</p>
        <p>
I believe that the understanding of science is of vital importance. I'm not talking
degree-level understanding, but the ability to grasp the basics. How else can you
evaluate the constant barrage of competing claims, the <a href="http://www.badscience.net/?p=425">latest
health scares</a>, the ridiculous uses of statistics, that we're all subjected to?
</p>
        <p>
The author (Wellington Grey) <a href="http://wellingtongrey.blogspot.com/2007/06/asking-for-your-help.html">is
asking for help</a> in making this issue better known. It certainly should be.
</p>
        <p>
          <b>Update (2007-06-26): </b>A <a href="http://petitions.pm.gov.uk/physicsedu/">petition</a> has
been created - please sign it.
</p>
        <img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=bbdc3fa8-59eb-4acb-9c00-21ffe5517552" />
      </body>
      <title>A physics teacher begs for his subject back</title>
      <guid isPermaLink="false">http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,bbdc3fa8-59eb-4acb-9c00-21ffe5517552.aspx</guid>
      <link>http://www.bryanrobson.net/DasBlogCe/2007/06/08/A+Physics+Teacher+Begs+For+His+Subject+Back.aspx</link>
      <pubDate>Fri, 08 Jun 2007 09:11:05 GMT</pubDate>
      <description>&lt;p&gt;
This makes very depressing reading: &lt;a href="http://www.wellingtongrey.net/articles/archive/2007-06-07--open-letter-aqa.html"&gt;A
physics teacher begs for his subject back&lt;/a&gt;. I have a degree in physics (albeit
not an impressive one, but hey, that's the effect that a very close and cheap bar
had on me when I was that age...), and I thoroughly enjoyed the subject at school.
It spoke a language that just &lt;i&gt;made sense&lt;/i&gt; to me. The article says:
&lt;/p&gt;
&lt;div class="boxed"&gt;
&lt;p&gt;
&lt;i&gt;"The thing that attracts pupils to physics is its precision. Here, at last, is
a discipline that gives real answers that apply to the physical world. But that precision
is now gone. Calculations — the very soul of physics — are absent from the new GCSE.
Physics is a subject unpolluted by a torrent of malleable words, but now everything
must be described in words."&lt;/i&gt;
&lt;/p&gt;
&lt;/div&gt;
&lt;p&gt;
Given the sort of teaching that he describes, I just can't see that I would have given
a damn. It would have bored me to tears. Hell, if I'd wanted that sort of a subject
I'd have studied sociology or something (no insult intended to the sociologists out
there!); what I loved about physics was the elegance of a mathematical proof being
able to illustrate the reality of our universe.
&lt;/p&gt;
&lt;p&gt;
I believe that the understanding of science is of vital importance. I'm not talking
degree-level understanding, but the ability to grasp the basics. How else can you
evaluate the constant barrage of competing claims, the &lt;a href="http://www.badscience.net/?p=425"&gt;latest
health scares&lt;/a&gt;, the ridiculous uses of statistics, that we're all subjected to?
&lt;/p&gt;
&lt;p&gt;
The author (Wellington Grey) &lt;a href="http://wellingtongrey.blogspot.com/2007/06/asking-for-your-help.html"&gt;is
asking for help&lt;/a&gt; in making this issue better known. It certainly should be.
&lt;/p&gt;
&lt;p&gt;
&lt;b&gt;Update (2007-06-26): &lt;/b&gt;A &lt;a href="http://petitions.pm.gov.uk/physicsedu/"&gt;petition&lt;/a&gt; has
been created - please sign it.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=bbdc3fa8-59eb-4acb-9c00-21ffe5517552" /&gt;</description>
      <comments>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,bbdc3fa8-59eb-4acb-9c00-21ffe5517552.aspx</comments>
      <category>Politics</category>
      <category>Science</category>
    </item>
    <item>
      <trackback:ping>http://www.bryanrobson.net/DasBlogCe/Trackback.aspx?guid=de94701e-fb40-41e2-adbd-fd0b54a12e81</trackback:ping>
      <pingback:server>http://www.bryanrobson.net/DasBlogCe/pingback.aspx</pingback:server>
      <pingback:target>http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,de94701e-fb40-41e2-adbd-fd0b54a12e81.aspx</pingback:target>
      <dc:creator>Bryan</dc:creator>
      <wfw:comment>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,de94701e-fb40-41e2-adbd-fd0b54a12e81.aspx</wfw:comment>
      <wfw:commentRss>http://www.bryanrobson.net/DasBlogCe/SyndicationService.asmx/GetEntryCommentsRss?guid=de94701e-fb40-41e2-adbd-fd0b54a12e81</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
          <a href="http://xkcd.com/c271.html">Another wonderful cartoon from XKCD</a>:
</p>
        <img src="http://imgs.xkcd.com/comics/powers_of_one.png" alt="Powers of One" width="90%" />
        <img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=de94701e-fb40-41e2-adbd-fd0b54a12e81" />
      </body>
      <title>XKCD: Powers of One</title>
      <guid isPermaLink="false">http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,de94701e-fb40-41e2-adbd-fd0b54a12e81.aspx</guid>
      <link>http://www.bryanrobson.net/DasBlogCe/2007/06/01/XKCD+Powers+Of+One.aspx</link>
      <pubDate>Fri, 01 Jun 2007 07:43:41 GMT</pubDate>
      <description>&lt;p&gt;
&lt;a href="http://xkcd.com/c271.html"&gt;Another wonderful cartoon from XKCD&lt;/a&gt;:
&lt;/p&gt;
&lt;img src="http://imgs.xkcd.com/comics/powers_of_one.png" alt="Powers of One" width="90%" /&gt;&lt;img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=de94701e-fb40-41e2-adbd-fd0b54a12e81" /&gt;</description>
      <comments>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,de94701e-fb40-41e2-adbd-fd0b54a12e81.aspx</comments>
      <category>Funny</category>
    </item>
    <item>
      <trackback:ping>http://www.bryanrobson.net/DasBlogCe/Trackback.aspx?guid=0d38bfda-909f-46d0-9166-d54cd598ce74</trackback:ping>
      <pingback:server>http://www.bryanrobson.net/DasBlogCe/pingback.aspx</pingback:server>
      <pingback:target>http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,0d38bfda-909f-46d0-9166-d54cd598ce74.aspx</pingback:target>
      <dc:creator>Bryan</dc:creator>
      <wfw:comment>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,0d38bfda-909f-46d0-9166-d54cd598ce74.aspx</wfw:comment>
      <wfw:commentRss>http://www.bryanrobson.net/DasBlogCe/SyndicationService.asmx/GetEntryCommentsRss?guid=0d38bfda-909f-46d0-9166-d54cd598ce74</wfw:commentRss>
      <slash:comments>1</slash:comments>
      <title>New Pornographers - first track from Challengers</title>
      <guid isPermaLink="false">http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,0d38bfda-909f-46d0-9166-d54cd598ce74.aspx</guid>
      <link>http://www.bryanrobson.net/DasBlogCe/2007/05/30/New+Pornographers+First+Track+From+Challengers.aspx</link>
      <pubDate>Wed, 30 May 2007 07:21:59 GMT</pubDate>
      <description>&lt;div class="imagefloatright"&gt;&lt;img src="http://www.bryanrobson.net/DasBlogCe/content/binary/NewPornos_Challengers.jpg" border="0"&gt;
&lt;/div&gt;
&lt;p&gt;
The first track from the &lt;a href="www.thenewpornographers.com"&gt;New Pornographers&lt;/a&gt; new
album, &lt;i&gt;Challengers&lt;/i&gt;, is now streaming on &lt;a href="http://www.myspace.com/thenewpornographers"&gt;the
band's MySpace page&lt;/a&gt;. There's also a &lt;a href="http://www.buyearlygetnow.com/mp3/the_new_pornographers_my_rights_versus_yours.mp3"&gt;downloadable&lt;/a&gt; copy
available on the &lt;a href="http://www.matadorrecords.com/matablog/?p=669"&gt;Matador&lt;/a&gt; website
at the moment as well.
&lt;/p&gt;
&lt;p&gt;
It's a different sound in some ways to the previous New Pornos albums, but every bit
as good! Sounds like &lt;a href="http://www.nekocase.com/"&gt;Neko&lt;/a&gt; in the background,
too...
&lt;/p&gt;
&lt;p&gt;
Shame I won't be able to make either of their shows in London, but they've sold out
by now anyway. Wish they'd do a proper tour (and, just to make life easy for me, play
Reading while they're at it!)
&lt;/p&gt;
&lt;p&gt;
There's also a video for &lt;i&gt;Sing Me Spanish Techno&lt;/i&gt; from their last release, &lt;i&gt;&lt;a href="http://www.amazon.co.uk/gp/product/B000A2H880?ie=UTF8&amp;tag=bryanrobsonne-21&amp;linkCode=as2&amp;camp=1634&amp;creative=6738&amp;creativeASIN=B000A2H880"&gt;Twin
Cinema&lt;/a&gt;&lt;img src="http://www.assoc-amazon.co.uk/e/ir?t=bryanrobsonne-21&amp;l=as2&amp;o=2&amp;a=B000A2H880" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /&gt;&lt;/i&gt; available
on &lt;a href="http://www.ifilm.com/video/2716944"&gt;iFilm&lt;/a&gt;.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=0d38bfda-909f-46d0-9166-d54cd598ce74" /&gt;</description>
      <comments>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,0d38bfda-909f-46d0-9166-d54cd598ce74.aspx</comments>
      <category>Music</category>
    </item>
    <item>
      <trackback:ping>http://www.bryanrobson.net/DasBlogCe/Trackback.aspx?guid=143e6114-c594-4e9a-b365-0ea4cbe9d3e8</trackback:ping>
      <pingback:server>http://www.bryanrobson.net/DasBlogCe/pingback.aspx</pingback:server>
      <pingback:target>http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,143e6114-c594-4e9a-b365-0ea4cbe9d3e8.aspx</pingback:target>
      <dc:creator>Bryan</dc:creator>
      <wfw:comment>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,143e6114-c594-4e9a-b365-0ea4cbe9d3e8.aspx</wfw:comment>
      <wfw:commentRss>http://www.bryanrobson.net/DasBlogCe/SyndicationService.asmx/GetEntryCommentsRss?guid=143e6114-c594-4e9a-b365-0ea4cbe9d3e8</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
          <a href="http://youtube.com/watch?v=OtfNI6P7zDo">"Everything Sounds Like Coldplay
Now"</a> by <a href="http://www.myspace.com/mitchbenn">Mitch Benn</a> and the Distractions.
</p>
        <p>
My favourite lines start around 2:16: "This could be Embrace, Keane or Snow Patrol/Thirteen
Senses sound like this as well I'm told/It could be anyone/It's so hard to say/Maybe
this is actually Coldplay".
</p>
        <p>
Mind you, Coldplay themselves were ok when I saw them in <a href="http://www.bryanrobson.net/dnn/Home/GigList/tabid/61/Default.aspx">2001
at Brixton Academy</a>, and I'm going to see Snow Patrol in June at the O2 Arena,
so maybe I shouldn't mock...
</p>
        <p>
          <object height="350" width="425">
            <param name="movie" value="http://www.youtube.com/v/OtfNI6P7zDo" />
            <param name="wmode" value="transparent" />
            <embed src="http://www.youtube.com/v/OtfNI6P7zDo" type="application/x-shockwave-flash" wmode="transparent" height="350" width="425">
            </embed>
          </object>
        </p>
        <img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=143e6114-c594-4e9a-b365-0ea4cbe9d3e8" />
      </body>
      <title>"Everything Sounds Like Coldplay Now"</title>
      <guid isPermaLink="false">http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,143e6114-c594-4e9a-b365-0ea4cbe9d3e8.aspx</guid>
      <link>http://www.bryanrobson.net/DasBlogCe/2007/05/29/Everything+Sounds+Like+Coldplay+Now.aspx</link>
      <pubDate>Tue, 29 May 2007 10:23:29 GMT</pubDate>
      <description>&lt;p&gt;
&lt;a href="http://youtube.com/watch?v=OtfNI6P7zDo"&gt;"Everything Sounds Like Coldplay
Now"&lt;/a&gt; by &lt;a href="http://www.myspace.com/mitchbenn"&gt;Mitch Benn&lt;/a&gt; and the Distractions.
&lt;/p&gt;
&lt;p&gt;
My favourite lines start around 2:16: "This could be Embrace, Keane or Snow Patrol/Thirteen
Senses sound like this as well I'm told/It could be anyone/It's so hard to say/Maybe
this is actually Coldplay".
&lt;/p&gt;
&lt;p&gt;
Mind you, Coldplay themselves were ok when I saw them in &lt;a href="http://www.bryanrobson.net/dnn/Home/GigList/tabid/61/Default.aspx"&gt;2001
at Brixton Academy&lt;/a&gt;, and I'm going to see Snow Patrol in June at the O2 Arena,
so maybe I shouldn't mock...
&lt;/p&gt;
&lt;p&gt;
&lt;object height="350" width="425"&gt;
&lt;param name="movie" value="http://www.youtube.com/v/OtfNI6P7zDo"&gt;
&lt;param name="wmode" value="transparent"&gt;&lt;embed src="http://www.youtube.com/v/OtfNI6P7zDo" type="application/x-shockwave-flash" wmode="transparent" height="350" width="425"&gt;
&lt;/object&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=143e6114-c594-4e9a-b365-0ea4cbe9d3e8" /&gt;</description>
      <comments>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,143e6114-c594-4e9a-b365-0ea4cbe9d3e8.aspx</comments>
      <category>Funny</category>
      <category>Music</category>
    </item>
    <item>
      <trackback:ping>http://www.bryanrobson.net/DasBlogCe/Trackback.aspx?guid=43066b92-5459-4714-8bd2-c1a973921187</trackback:ping>
      <pingback:server>http://www.bryanrobson.net/DasBlogCe/pingback.aspx</pingback:server>
      <pingback:target>http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,43066b92-5459-4714-8bd2-c1a973921187.aspx</pingback:target>
      <dc:creator>Bryan</dc:creator>
      <wfw:comment>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,43066b92-5459-4714-8bd2-c1a973921187.aspx</wfw:comment>
      <wfw:commentRss>http://www.bryanrobson.net/DasBlogCe/SyndicationService.asmx/GetEntryCommentsRss?guid=43066b92-5459-4714-8bd2-c1a973921187</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Found via <a href="http://scienceblogs.com/pharyngula/2007/05/testing.php">Pharyngula</a>.
It would appear that PZ is more militant but less angy than me...
</p>
        <div class="boxed">
          <table border="0" cellpadding="5" cellspacing="0" width="600">
            <tbody>
              <tr>
                <td>
                </td>
                <td>
You scored as <b>Scientific Atheist</b>, These guys rule. I'm not one of them myself,
although I play one online. They know the rules of debate, the Laws of Thermodynamics,
and can explain evolution in fifty words or less. More concerned with how things ARE
than how they should be, these are the people who will bring us into the future. 
<br /><br /><table border="0" cellpadding="0" cellspacing="0" width="300"><tbody><tr><td><p><font face="Arial" size="1">Scientific Atheist</font></p></td><td><table bgcolor="#dddddd" border="1" cellpadding="0" cellspacing="0" width="100"><tbody><tr><td></td></tr></tbody></table></td><td><font face="Arial" size="1">100%</font></td></tr><tr><td><p><font face="Arial" size="1">Angry Atheist</font></p></td><td><table bgcolor="#dddddd" border="1" cellpadding="0" cellspacing="0" width="58"><tbody><tr><td></td></tr></tbody></table></td><td><font face="Arial" size="1">58%</font></td></tr><tr><td><p><font face="Arial" size="1">Spiritual Atheist</font></p></td><td><table bgcolor="#dddddd" border="1" cellpadding="0" cellspacing="0" width="50"><tbody><tr><td></td></tr></tbody></table></td><td><font face="Arial" size="1">50%</font></td></tr><tr><td><p><font face="Arial" size="1">Militant Atheist</font></p></td><td><table bgcolor="#dddddd" border="1" cellpadding="0" cellspacing="0" width="50"><tbody><tr><td></td></tr></tbody></table></td><td><font face="Arial" size="1">50%</font></td></tr><tr><td><p><font face="Arial" size="1">Apathetic Atheist</font></p></td><td><table bgcolor="#dddddd" border="1" cellpadding="0" cellspacing="0" width="42"><tbody><tr><td></td></tr></tbody></table></td><td><font face="Arial" size="1">42%</font></td></tr><tr><td><p><font face="Arial" size="1">Agnostic</font></p></td><td><table bgcolor="#dddddd" border="1" cellpadding="0" cellspacing="0" width="33"><tbody><tr><td></td></tr></tbody></table></td><td><font face="Arial" size="1">33%</font></td></tr><tr><td><p><font face="Arial" size="1">Theist</font></p></td><td><table bgcolor="#dddddd" border="1" cellpadding="0" cellspacing="0" width="17"><tbody><tr><td></td></tr></tbody></table></td><td><font face="Arial" size="1">17%</font></td></tr></tbody></table><br /><a href="http://quizfarm.com/run.php/Quiz?quiz_id=34703">What kind of atheist are
you?</a><br /><font face="Arial" size="1">created with <a href="http://quizfarm.com">QuizFarm.com</a></font></td>
              </tr>
            </tbody>
          </table>
        </div>
        <img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=43066b92-5459-4714-8bd2-c1a973921187" />
      </body>
      <title>What kind of atheist are you?</title>
      <guid isPermaLink="false">http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,43066b92-5459-4714-8bd2-c1a973921187.aspx</guid>
      <link>http://www.bryanrobson.net/DasBlogCe/2007/05/25/What+Kind+Of+Atheist+Are+You.aspx</link>
      <pubDate>Fri, 25 May 2007 08:38:47 GMT</pubDate>
      <description>&lt;p&gt;
Found via &lt;a href="http://scienceblogs.com/pharyngula/2007/05/testing.php"&gt;Pharyngula&lt;/a&gt;.
It would appear that PZ is more militant but less angy than me...
&lt;/p&gt;
&lt;div class="boxed"&gt;
&lt;table border="0" cellpadding="5" cellspacing="0" width="600"&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;/td&gt;
&lt;td&gt;
You scored as &lt;b&gt;Scientific Atheist&lt;/b&gt;, These guys rule. I'm not one of them myself,
although I play one online. They know the rules of debate, the Laws of Thermodynamics,
and can explain evolution in fifty words or less. More concerned with how things ARE
than how they should be, these are the people who will bring us into the future. 
&lt;br&gt;
&lt;br&gt;
&lt;table border="0" cellpadding="0" cellspacing="0" width="300"&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;p&gt;
&lt;font face="Arial" size="1"&gt;Scientific Atheist&lt;/font&gt;
&lt;/p&gt;
&lt;/td&gt;
&lt;td&gt;
&lt;table bgcolor="#dddddd" border="1" cellpadding="0" cellspacing="0" width="100"&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;/td&gt;
&lt;td&gt;
&lt;font face="Arial" size="1"&gt;100%&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;p&gt;
&lt;font face="Arial" size="1"&gt;Angry Atheist&lt;/font&gt;
&lt;/p&gt;
&lt;/td&gt;
&lt;td&gt;
&lt;table bgcolor="#dddddd" border="1" cellpadding="0" cellspacing="0" width="58"&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;/td&gt;
&lt;td&gt;
&lt;font face="Arial" size="1"&gt;58%&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;p&gt;
&lt;font face="Arial" size="1"&gt;Spiritual Atheist&lt;/font&gt;
&lt;/p&gt;
&lt;/td&gt;
&lt;td&gt;
&lt;table bgcolor="#dddddd" border="1" cellpadding="0" cellspacing="0" width="50"&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;/td&gt;
&lt;td&gt;
&lt;font face="Arial" size="1"&gt;50%&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;p&gt;
&lt;font face="Arial" size="1"&gt;Militant Atheist&lt;/font&gt;
&lt;/p&gt;
&lt;/td&gt;
&lt;td&gt;
&lt;table bgcolor="#dddddd" border="1" cellpadding="0" cellspacing="0" width="50"&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;/td&gt;
&lt;td&gt;
&lt;font face="Arial" size="1"&gt;50%&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;p&gt;
&lt;font face="Arial" size="1"&gt;Apathetic Atheist&lt;/font&gt;
&lt;/p&gt;
&lt;/td&gt;
&lt;td&gt;
&lt;table bgcolor="#dddddd" border="1" cellpadding="0" cellspacing="0" width="42"&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;/td&gt;
&lt;td&gt;
&lt;font face="Arial" size="1"&gt;42%&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;p&gt;
&lt;font face="Arial" size="1"&gt;Agnostic&lt;/font&gt;
&lt;/p&gt;
&lt;/td&gt;
&lt;td&gt;
&lt;table bgcolor="#dddddd" border="1" cellpadding="0" cellspacing="0" width="33"&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;/td&gt;
&lt;td&gt;
&lt;font face="Arial" size="1"&gt;33%&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;p&gt;
&lt;font face="Arial" size="1"&gt;Theist&lt;/font&gt;
&lt;/p&gt;
&lt;/td&gt;
&lt;td&gt;
&lt;table bgcolor="#dddddd" border="1" cellpadding="0" cellspacing="0" width="17"&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;/td&gt;
&lt;td&gt;
&lt;font face="Arial" size="1"&gt;17%&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;br&gt;
&lt;a href="http://quizfarm.com/run.php/Quiz?quiz_id=34703"&gt;What kind of atheist are
you?&lt;/a&gt;
&lt;br&gt;
&lt;font face="Arial" size="1"&gt;created with &lt;a href="http://quizfarm.com"&gt;QuizFarm.com&lt;/a&gt;&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;/div&gt;
&lt;img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=43066b92-5459-4714-8bd2-c1a973921187" /&gt;</description>
      <comments>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,43066b92-5459-4714-8bd2-c1a973921187.aspx</comments>
      <category>Life</category>
      <category>Quiz</category>
      <category>Wasting time</category>
    </item>
    <item>
      <trackback:ping>http://www.bryanrobson.net/DasBlogCe/Trackback.aspx?guid=7d05bd79-101d-4883-829b-bafd78658611</trackback:ping>
      <pingback:server>http://www.bryanrobson.net/DasBlogCe/pingback.aspx</pingback:server>
      <pingback:target>http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,7d05bd79-101d-4883-829b-bafd78658611.aspx</pingback:target>
      <dc:creator>Bryan</dc:creator>
      <wfw:comment>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,7d05bd79-101d-4883-829b-bafd78658611.aspx</wfw:comment>
      <wfw:commentRss>http://www.bryanrobson.net/DasBlogCe/SyndicationService.asmx/GetEntryCommentsRss?guid=7d05bd79-101d-4883-829b-bafd78658611</wfw:commentRss>
      <title>More Unicode fun and games</title>
      <guid isPermaLink="false">http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,7d05bd79-101d-4883-829b-bafd78658611.aspx</guid>
      <link>http://www.bryanrobson.net/DasBlogCe/2007/05/22/More+Unicode+Fun+And+Games.aspx</link>
      <pubDate>Tue, 22 May 2007 13:30:22 GMT</pubDate>
      <description>&lt;p&gt;
What's wrong with this address: 28 St. Someone’s Close?
&lt;/p&gt;
&lt;p&gt;
The single quote, that's what. It's not a single quote, which is ANSI 0x27, it's actually
an ANSI 0x92. This is causing me problems. The address is supplied in a text box on
a web page, processed in a StringBuilder to make an XML fragment, and passed via ADO.Net
to a SQL Server stored procedure, which is attempting to use sp_xml_preparedocument
to read it. However, we're getting an error thrown out of the stored proc:
&lt;/p&gt;
&lt;div id="code"&gt;The XML parse error 0xc00ce508 occurred on line number 1, near the
XML text "&lt;railsegmentremarks&gt;
&lt;remark remarkid="1" remarktext="28 St. Someone" .=""&gt;
&lt;/remark&gt;
&lt;/railsegmentremarks&gt;
&lt;/div&gt;
&lt;p&gt;
Now, working out the problem isn't exactly difficult: we're passing the value in as
a &lt;i&gt;text&lt;/i&gt; field, so it's (in the words of SQL's books on-line), "Variable-length
non-Unicode data in the code page of the server". A change to a unicode field and
we should be fine. I probably should make the observation here that there's a note
in books on-line to the effect that they're planning to deprecate the text and ntext
data types:
&lt;/p&gt;
&lt;div id="code"&gt;Note: ntext, text, and image data types will be removed in a future
version of Microsoft SQL Server. Avoid using these data types in new development work,
and plan to modify applications that currently use them. Use nvarchar(max), varchar(max),
and varbinary(max) instead.
&lt;/div&gt;
&lt;p&gt;
So, I copied the relevant code into SQL Management Studio's query window to have a
play, and changed the data type to &lt;i&gt;nvarchar(max)&lt;/i&gt;, and the sp_xml_preparedocument
executed correctly:
&lt;/p&gt;
&lt;div id="code"&gt;
&lt;span class="kwa"&gt;DECLARE&lt;/span&gt; @hDoc &lt;span class="kwb"&gt;INTEGER&lt;/span&gt;&lt;span class="sym"&gt;,&lt;/span&gt; @RailSegmentRemarks &lt;span class="kwb"&gt;nvarchar&lt;/span&gt;&lt;span class="sym"&gt;(&lt;/span&gt;&lt;span class="kwc"&gt;max&lt;/span&gt;&lt;span class="sym"&gt;)&lt;/span&gt;
&lt;br&gt;
&lt;span class="kwa"&gt;SELECT&lt;/span&gt; @RailSegmentRemarks &lt;span class="sym"&gt;=&lt;/span&gt; &lt;span class="str"&gt;'&amp;lt;RailSegmentRemarks&amp;gt;&amp;lt;Remark
RemarkID="1" RemarkText="28 St. Someone’s Close, Sometown, Oxfordshire, " /&amp;gt;&amp;lt;Remark
RemarkID="2" RemarkText="OX12 3AB" /&amp;gt;&amp;lt;Remark RemarkID="3" RemarkText="" /&amp;gt;&amp;lt;Remark
RemarkID="4" RemarkText="" /&amp;gt;&amp;lt;/RailSegmentRemarks&amp;gt;'&lt;/span&gt;
&lt;br&gt;
&lt;br&gt;
&lt;span class="kwa"&gt;EXEC&lt;/span&gt; &lt;span class="kwd"&gt;sp_xml_preparedocument&lt;/span&gt; @hDoc &lt;span class="kwa"&gt;OUTPUT&lt;/span&gt;&lt;span class="sym"&gt;,&lt;/span&gt; @RailSegmentRemarks&lt;br&gt;
&lt;br&gt;
&lt;span class="kwa"&gt;DECLARE&lt;/span&gt; @Remarks &lt;span class="kwa"&gt;TABLE&lt;/span&gt; &lt;span class="sym"&gt;(&lt;/span&gt;RemarkID &lt;span class="kwb"&gt;VARCHAR&lt;/span&gt;&lt;span class="sym"&gt;(&lt;/span&gt;&lt;span class="num"&gt;50&lt;/span&gt;&lt;span class="sym"&gt;),&lt;/span&gt; RemarkText &lt;span class="kwb"&gt;VARCHAR&lt;/span&gt;&lt;span class="sym"&gt;(&lt;/span&gt;&lt;span class="num"&gt;50&lt;/span&gt;&lt;span class="sym"&gt;))&lt;/span&gt;
&lt;br&gt;
&lt;br&gt;
&lt;span class="kwa"&gt;INSERT INTO&lt;/span&gt; @Remarks&lt;br&gt;
&lt;span class="kwa"&gt;SELECT&lt;/span&gt; RemarkID&lt;span class="sym"&gt;,&lt;/span&gt; RemarkText&lt;br&gt;
&lt;span class="kwa"&gt;FROM&lt;/span&gt; &lt;span class="kwc"&gt;OPENXML&lt;/span&gt;&lt;span class="sym"&gt;(&lt;/span&gt;@hDoc&lt;span class="sym"&gt;,&lt;/span&gt; N&lt;span class="str"&gt;'RailSegmentRemarks/Remark'&lt;/span&gt;&lt;span class="sym"&gt;)&lt;/span&gt;
&lt;br&gt;
&lt;span class="kwa"&gt;WITH&lt;/span&gt; &lt;span class="sym"&gt;(&lt;/span&gt;RemarkID &lt;span class="kwb"&gt;INTEGER&lt;/span&gt; &lt;span class="str"&gt;'@RemarkID'&lt;/span&gt;&lt;span class="sym"&gt;,&lt;/span&gt; RemarkText &lt;span class="kwb"&gt;VARCHAR&lt;/span&gt;&lt;span class="sym"&gt;(&lt;/span&gt;&lt;span class="num"&gt;50&lt;/span&gt;&lt;span class="sym"&gt;)&lt;/span&gt; &lt;span class="str"&gt;'@RemarkText'&lt;/span&gt;&lt;span class="sym"&gt;)&lt;/span&gt; &lt;span class="kwa"&gt;AS
XML&lt;/span&gt;
&lt;br&gt;
&lt;span class="kwa"&gt;WHERE&lt;/span&gt; &lt;span class="kwc"&gt;COALESCE&lt;/span&gt;&lt;span class="sym"&gt;(&lt;/span&gt;RemarkText&lt;span class="sym"&gt;,&lt;/span&gt; &lt;span class="str"&gt;''&lt;/span&gt;&lt;span class="sym"&gt;)
&amp;lt;&amp;gt;&lt;/span&gt; &lt;span class="str"&gt;''&lt;/span&gt;
&lt;br&gt;
&lt;br&gt;
&lt;span class="kwa"&gt;SELECT&lt;/span&gt; &lt;span class="sym"&gt;*&lt;/span&gt; &lt;span class="kwa"&gt;FROM&lt;/span&gt; @Remarks&lt;br&gt;
&lt;br&gt;
&lt;span class="kwa"&gt;EXEC&lt;/span&gt; &lt;span class="kwd"&gt;sp_xml_removedocument&lt;/span&gt; @hDoc 
&lt;/div&gt;
&lt;p&gt;
Now, the odd thing here is that all the code works: I get a set of fields returned
from the final SELECT statement which contain the single quote character. This seems
odd to me because while I've declared the @RailSegmentRemarks variable as an nvarchar,
I haven't yet changed the rest of the code, which is still just varchar. But everything
seems to work. Very strange.
&lt;/p&gt;
&lt;p&gt;
Anyway, all that's left (ha!) for me to do is to change all the relevant variables,
table defs, stored procs, views, and everything else that may be affected, to nvarchar.
or I could just prevent these characters from being entered in the first place, I
suppose...
&lt;/p&gt;
&lt;p&gt;
There are some articles by Michael Rys &lt;a href="http://www.topxml.com/rbnews/XML/re-14084_amp-quot-An-invalid-character-was-foundamp-quot--errors-when-upgrading-sp_xml_preparedocument-from-SQL-Server-2000-SP3-to-SP4-or-SQL-Server-2005.aspx"&gt;here&lt;/a&gt; and &lt;a href="http://sqljunkies.com/WebLog/mrys/archive/2005/10/10/17097.aspx"&gt;here&lt;/a&gt;,
which discuss some of these issues.
&lt;/p&gt;
&lt;hr&gt;
&lt;p&gt;
&lt;b&gt;Update:&lt;/b&gt; Everything works ok if I pass in the XML data prefixed with an XML
declaration specifying the encoding. This is, obviously, a lot less work than changing
everything to handle unicode properly, and is sufficient for our system:
&lt;/p&gt;
&lt;div id="code"&gt;&amp;lt;?xml version=""1.0"" encoding=""windows-1252""?&amp;gt;
&lt;/div&gt;
&lt;p&gt;
I needed an encoding that would match against the Latin1_General-CI-AS that our database
uses, and the Windows-1252 (Western Europe Latin character set) does this.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=7d05bd79-101d-4883-829b-bafd78658611" /&gt;</description>
      <comments>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,7d05bd79-101d-4883-829b-bafd78658611.aspx</comments>
      <category>Coding</category>
      <category>Work</category>
    </item>
    <item>
      <trackback:ping>http://www.bryanrobson.net/DasBlogCe/Trackback.aspx?guid=1ba50f8a-4c4c-431b-87f3-16b4f9c70407</trackback:ping>
      <pingback:server>http://www.bryanrobson.net/DasBlogCe/pingback.aspx</pingback:server>
      <pingback:target>http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,1ba50f8a-4c4c-431b-87f3-16b4f9c70407.aspx</pingback:target>
      <dc:creator>Bryan</dc:creator>
      <wfw:comment>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,1ba50f8a-4c4c-431b-87f3-16b4f9c70407.aspx</wfw:comment>
      <wfw:commentRss>http://www.bryanrobson.net/DasBlogCe/SyndicationService.asmx/GetEntryCommentsRss?guid=1ba50f8a-4c4c-431b-87f3-16b4f9c70407</wfw:commentRss>
      <title>VB.net ternary operator: evaluates all parts, every time</title>
      <guid isPermaLink="false">http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,1ba50f8a-4c4c-431b-87f3-16b4f9c70407.aspx</guid>
      <link>http://www.bryanrobson.net/DasBlogCe/2007/05/18/VBnet+Ternary+Operator+Evaluates+All+Parts+Every+Time.aspx</link>
      <pubDate>Fri, 18 May 2007 09:44:34 GMT</pubDate>
      <description>&lt;p&gt;
I'm sure many VB.net coders are aware of this, but since I'm mainly a C# sort of person,
I wasn't: the VB.net equivalent of C#'s ternary operator, IIf, does not work in the
same way. IIf looks like this:
&lt;/p&gt;
&lt;div id="code"&gt;
Public Function IIf( _&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; ByVal Expression As Boolean, _ 
&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; ByVal TruePart As Object, _ 
&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; ByVal FalsePart As Object _ 
&lt;br&gt;
) As Object&lt;br&gt;
&lt;/div&gt;
&lt;p&gt;
Since IIf is a function, every time it is called it evaluates both the TruePart and
the FalsePart, regardless of the state of Expression. This is different to C#, which
uses the ternary (or conditional) operator:
&lt;/p&gt;
&lt;div id="code"&gt;condition ? first_expression : second_expression;
&lt;/div&gt;
&lt;p&gt;
As stated in the C# langauge reference, "If condition is true, first expression is
evaluated and becomes the result; if false, the second expression is evaluated and
becomes the result. Only one of two expressions is ever evaluated."
&lt;/p&gt;
&lt;p&gt;
So, in VB.net if you have a situation like the one shown below (which we did!), you've
got a problem:
&lt;/p&gt;
&lt;div id="code&amp;gt;
objRow.Cells(cellIndex).AddText(IIf(row.Item(" )="" is="" dbnull.value,="" ,="" textformat(row.item(="" fieldname="" ))),="" objparam)=""&gt;
&lt;/div&gt;
&lt;p&gt;
Here, the second expression calls a function TextFormat(String, AlignmentEnum). In
the case where the row.Item value is DBNull, when the FalsePart argument is evaluated
there is an attempt to cast DBNull.Value to a String, and an exception is thrown.
I had to replace the code with an explict If...Else block:
&lt;/p&gt;
&lt;div id="code"&gt;
Dim cellText As String&lt;br&gt;
If (row.Item(fieldName) Is DBNull.Value) Then&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; cellText = ""&lt;br&gt;
Else 
&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; cellText = PDFCreator.TextAlign(row.Item(fieldName))&lt;br&gt;
End If&lt;br&gt;
objRow.Cells(cellIndex).AddText(cellText, objparam)&lt;br&gt;
&lt;/div&gt;
&lt;img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=1ba50f8a-4c4c-431b-87f3-16b4f9c70407" /&gt;</description>
      <comments>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,1ba50f8a-4c4c-431b-87f3-16b4f9c70407.aspx</comments>
      <category>Coding</category>
      <category>Work</category>
    </item>
    <item>
      <trackback:ping>http://www.bryanrobson.net/DasBlogCe/Trackback.aspx?guid=6d96e025-0348-43c3-b70d-ce80da61f1ac</trackback:ping>
      <pingback:server>http://www.bryanrobson.net/DasBlogCe/pingback.aspx</pingback:server>
      <pingback:target>http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,6d96e025-0348-43c3-b70d-ce80da61f1ac.aspx</pingback:target>
      <dc:creator>Bryan</dc:creator>
      <wfw:comment>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,6d96e025-0348-43c3-b70d-ce80da61f1ac.aspx</wfw:comment>
      <wfw:commentRss>http://www.bryanrobson.net/DasBlogCe/SyndicationService.asmx/GetEntryCommentsRss?guid=6d96e025-0348-43c3-b70d-ce80da61f1ac</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
I loved this, from the Norwegian TV show Øystein og jeg:
</p>
        <object height="350" width="425">
          <param name="movie" value="http://www.youtube.com/v/pQHX-SjgQvQ" />
          <param name="wmode" value="transparent" />
          <embed src="http://www.youtube.com/v/pQHX-SjgQvQ" type="application/x-shockwave-flash" wmode="transparent" height="350" width="425">
          </embed>
        </object>
        <p>
          <i>Hat tip: <a href="http://cosmicvariance.com/2007/05/18/medieval-helpdesk/">Cosmic
Variance</a></i>
        </p>
        <img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=6d96e025-0348-43c3-b70d-ce80da61f1ac" />
      </body>
      <title>Medieval helpdesk</title>
      <guid isPermaLink="false">http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,6d96e025-0348-43c3-b70d-ce80da61f1ac.aspx</guid>
      <link>http://www.bryanrobson.net/DasBlogCe/2007/05/18/Medieval+Helpdesk.aspx</link>
      <pubDate>Fri, 18 May 2007 09:19:30 GMT</pubDate>
      <description>&lt;p&gt;
I loved this, from the Norwegian TV show Øystein og jeg:
&lt;/p&gt;
&lt;object height="350" width="425"&gt;
&lt;param name="movie" value="http://www.youtube.com/v/pQHX-SjgQvQ"&gt;
&lt;param name="wmode" value="transparent"&gt;&lt;embed src="http://www.youtube.com/v/pQHX-SjgQvQ" type="application/x-shockwave-flash" wmode="transparent" height="350" width="425"&gt;
&lt;/object&gt;
&lt;p&gt;
&lt;i&gt;Hat tip: &lt;a href="http://cosmicvariance.com/2007/05/18/medieval-helpdesk/"&gt;Cosmic
Variance&lt;/a&gt;&lt;/i&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=6d96e025-0348-43c3-b70d-ce80da61f1ac" /&gt;</description>
      <comments>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,6d96e025-0348-43c3-b70d-ce80da61f1ac.aspx</comments>
      <category>Funny</category>
      <category>Life</category>
      <category>Wasting time</category>
    </item>
    <item>
      <trackback:ping>http://www.bryanrobson.net/DasBlogCe/Trackback.aspx?guid=b1f2f6d7-aa4a-41e2-8c6b-a22e14b9ba63</trackback:ping>
      <pingback:server>http://www.bryanrobson.net/DasBlogCe/pingback.aspx</pingback:server>
      <pingback:target>http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,b1f2f6d7-aa4a-41e2-8c6b-a22e14b9ba63.aspx</pingback:target>
      <dc:creator>Bryan</dc:creator>
      <wfw:comment>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,b1f2f6d7-aa4a-41e2-8c6b-a22e14b9ba63.aspx</wfw:comment>
      <wfw:commentRss>http://www.bryanrobson.net/DasBlogCe/SyndicationService.asmx/GetEntryCommentsRss?guid=b1f2f6d7-aa4a-41e2-8c6b-a22e14b9ba63</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
IE and Excel are rubbish. Just thought I'd get that out of the way first.
</p>
        <p>
Right, we've got a process that sends files, either as attachments to emails or directly
over FTP/HTTP. The source of these files is a database, so to send the files we have
to write them to disk first. Slighly wasteful at first glance, but it works. The XML
files are set as encoded in UTF-8:
</p>
        <div id="code">&lt;?xml version="1.0" encoding="UTF-8" ?&gt;
</div>
        <p>
Now, it was noticed that the files we created didn't open correctly in IE, with the
error "An invalid character was found in text content". I had a quick look, and the
character in question was the not-exactly-exceptional "£". It seemed that the reason
for the problem was that the file was saved as ANSI (rather than UTF-8), because the
code that did the saving used the machine's default encoding:
</p>
        <div id="code">Dim sw As New System.IO.StreamWriter(mFileName, False, System.Text.Encoding.Default)<br />
With sw<br />
    .Write(mAttachmentContents)<br />
    .Flush()<br />
    .Close()<br />
    .Dispose()<br />
End With<br /></div>
        <p>
Now, while Firefox (for example), plays nice in this situation and displays the file
correctly, IE can't cope with the fact that the file has been saved as ANSI, is declared
as UTF-8, and contains a pound sign. So, solution: set the encoding to UTF-8. Simple.
</p>
        <p>
Well, not quite. The same code is also used to create CSV files as well as XML files.
I've no idea where or how these files are used (they're just dipatched into the ether
as far as I'm concerned), but if they can't be opened in Excel then we regard them
as broken. However, Microsoft (in their infinite wisdom), haven't bothered to let
Excel cope with CSV files that are encoded as anything other than ANSI, so a UTF-8
encoded CSV file translates the pound sign to "Â£", which is somewhat annoying. So
instead, I have to work out the file type, and encode as UTF-8 or ANSI as required.
</p>
        <p>
As I said, IE and Excel are rubbish.
</p>
        <img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=b1f2f6d7-aa4a-41e2-8c6b-a22e14b9ba63" />
      </body>
      <title>On IE and XML, and Excel and CSV, and the joys of UTF-8</title>
      <guid isPermaLink="false">http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,b1f2f6d7-aa4a-41e2-8c6b-a22e14b9ba63.aspx</guid>
      <link>http://www.bryanrobson.net/DasBlogCe/2007/05/16/On+IE+And+XML+And+Excel+And+CSV+And+The+Joys+Of+UTF8.aspx</link>
      <pubDate>Wed, 16 May 2007 11:50:41 GMT</pubDate>
      <description>&lt;p&gt;
IE and Excel are rubbish. Just thought I'd get that out of the way first.
&lt;/p&gt;
&lt;p&gt;
Right, we've got a process that sends files, either as attachments to emails or directly
over FTP/HTTP. The source of these files is a database, so to send the files we have
to write them to disk first. Slighly wasteful at first glance, but it works. The XML
files are set as encoded in UTF-8:
&lt;/p&gt;
&lt;div id="code"&gt;&amp;lt;?xml version="1.0" encoding="UTF-8" ?&amp;gt;
&lt;/div&gt;
&lt;p&gt;
Now, it was noticed that the files we created didn't open correctly in IE, with the
error "An invalid character was found in text content". I had a quick look, and the
character in question was the not-exactly-exceptional "£". It seemed that the reason
for the problem was that the file was saved as ANSI (rather than UTF-8), because the
code that did the saving used the machine's default encoding:
&lt;/p&gt;
&lt;div id="code"&gt;Dim sw As New System.IO.StreamWriter(mFileName, False, System.Text.Encoding.Default)&lt;br&gt;
With sw&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; .Write(mAttachmentContents)&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; .Flush()&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; .Close()&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; .Dispose()&lt;br&gt;
End With&lt;br&gt;
&lt;/div&gt;
&lt;p&gt;
Now, while Firefox (for example), plays nice in this situation and displays the file
correctly, IE can't cope with the fact that the file has been saved as ANSI, is declared
as UTF-8, and contains a pound sign. So, solution: set the encoding to UTF-8. Simple.
&lt;/p&gt;
&lt;p&gt;
Well, not quite. The same code is also used to create CSV files as well as XML files.
I've no idea where or how these files are used (they're just dipatched into the ether
as far as I'm concerned), but if they can't be opened in Excel then we regard them
as broken. However, Microsoft (in their infinite wisdom), haven't bothered to let
Excel cope with CSV files that are encoded as anything other than ANSI, so a UTF-8
encoded CSV file translates the pound sign to "Â£", which is somewhat annoying. So
instead, I have to work out the file type, and encode as UTF-8 or ANSI as required.
&lt;/p&gt;
&lt;p&gt;
As I said, IE and Excel are rubbish.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=b1f2f6d7-aa4a-41e2-8c6b-a22e14b9ba63" /&gt;</description>
      <comments>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,b1f2f6d7-aa4a-41e2-8c6b-a22e14b9ba63.aspx</comments>
      <category>Coding</category>
      <category>Work</category>
    </item>
    <item>
      <trackback:ping>http://www.bryanrobson.net/DasBlogCe/Trackback.aspx?guid=221ab752-796a-4137-86aa-c2f662213570</trackback:ping>
      <pingback:server>http://www.bryanrobson.net/DasBlogCe/pingback.aspx</pingback:server>
      <pingback:target>http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,221ab752-796a-4137-86aa-c2f662213570.aspx</pingback:target>
      <dc:creator>Bryan</dc:creator>
      <wfw:comment>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,221ab752-796a-4137-86aa-c2f662213570.aspx</wfw:comment>
      <wfw:commentRss>http://www.bryanrobson.net/DasBlogCe/SyndicationService.asmx/GetEntryCommentsRss?guid=221ab752-796a-4137-86aa-c2f662213570</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <h2>Howefest 2: The Return of Howefest
</h2>
        <p>
Well, that was another great evening!
</p>
        <p>
We started with a bunch of songs from the current line-up of Giant Sand, who were
joined by a visibly nervous <a href="http://lonnakelley.com/">Lonna Kelley</a> for
2 numbers. The next guest was Henriette Sennavldt (from <a href="http://www.underbyen.dk/">Under
Byen</a>) who sang 2 songs, the first introduced as an opera, the second being <i>Classico</i> from <i><a href="http://www.sa-wa-ro.com/GiantSand-Pages/giants-iaotm.htm">Is
All Over.. The Map</a></i>.
</p>
        <p>
Next up was <a href="http://www.emilianatorrini.com/">Emiliana Torrini</a>, who did
a couple of lovely songs with her band (must look out for an album!), then Fernando
Vacas and Flow, who were followed by a brief interval.
</p>
        <p>
The second half of the show was started by <a href="http://en.wikipedia.org/wiki/Mary_Margaret_O%27Hara">Mary
Margaret O'Hara</a> and band, who did 3 songs. Can't decide here: the musicians were
great, and she can clearly sing, but she seemed a little... distracted, maybe? Slightly
drunk? Not sure. Next was <a href="http://www.isobelcampbell.com/">Isobel Campbell</a> who
did a couple of great songs.
</p>
        <p>
Then we had <a href="http://www.handsomefamily.com">The Handsome Family</a>, who did
great versions of <i>Bottomless Hole</i>, <i>After We Shot The Grizzly...</i> and <i>Weightless
Again</i>.
</p>
        <p>
Finally, we had the full <a href="http://www.sa-wa-ro.com/HoweGelb-Pages/howe-sno.htm">'Sno
Angel</a> experience, with the Voices of Praise choir. Not sure how many numbers they
did, but it included <i>Paradise Here Abouts, Worried Spirits, Robes of Bible Black,
But I Did Not, Chore of Enchantment, Get To Leave</i>, and a couple of presumably
new numbers that I didn't recognise. Thrown in for good measure was a great cover
of Led Zep's <i>Immigrant Song</i>!
</p>
        <p>
Shame it all had to end!
</p>
        <p>
See also:<a href="http://www.ft.com/cms/s/0acc1c52-fa33-11db-8bd0-000b5df10621.html">FT
review</a>, <a href="http://www.charliegillett.com/phpBB2/viewtopic.php?t=4338&amp;sid=d576cfcb04877b6d98bbf4ddf164f9de">and
here</a>.
</p>
        <img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=221ab752-796a-4137-86aa-c2f662213570" />
      </body>
      <title>Review: Howe Gelb &amp; Friends</title>
      <guid isPermaLink="false">http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,221ab752-796a-4137-86aa-c2f662213570.aspx</guid>
      <link>http://www.bryanrobson.net/DasBlogCe/2007/05/03/Review+Howe+Gelb+Friends.aspx</link>
      <pubDate>Thu, 03 May 2007 07:49:13 GMT</pubDate>
      <description>&lt;h2&gt;Howefest 2: The Return of Howefest
&lt;/h2&gt;
&lt;p&gt;
Well, that was another great evening!
&lt;/p&gt;
&lt;p&gt;
We started with a bunch of songs from the current line-up of Giant Sand, who were
joined by a visibly nervous &lt;a href="http://lonnakelley.com/"&gt;Lonna Kelley&lt;/a&gt; for
2 numbers. The next guest was Henriette Sennavldt (from &lt;a href="http://www.underbyen.dk/"&gt;Under
Byen&lt;/a&gt;) who sang 2 songs, the first introduced as an opera, the second being &lt;i&gt;Classico&lt;/i&gt; from &lt;i&gt;&lt;a href="http://www.sa-wa-ro.com/GiantSand-Pages/giants-iaotm.htm"&gt;Is
All Over.. The Map&lt;/a&gt;&lt;/i&gt;.
&lt;/p&gt;
&lt;p&gt;
Next up was &lt;a href="http://www.emilianatorrini.com/"&gt;Emiliana Torrini&lt;/a&gt;, who did
a couple of lovely songs with her band (must look out for an album!), then Fernando
Vacas and Flow, who were followed by a brief interval.
&lt;/p&gt;
&lt;p&gt;
The second half of the show was started by &lt;a href="http://en.wikipedia.org/wiki/Mary_Margaret_O%27Hara"&gt;Mary
Margaret O'Hara&lt;/a&gt; and band, who did 3 songs. Can't decide here: the musicians were
great, and she can clearly sing, but she seemed a little... distracted, maybe? Slightly
drunk? Not sure. Next was &lt;a href="http://www.isobelcampbell.com/"&gt;Isobel Campbell&lt;/a&gt; who
did a couple of great songs.
&lt;/p&gt;
&lt;p&gt;
Then we had &lt;a href="http://www.handsomefamily.com"&gt;The Handsome Family&lt;/a&gt;, who did
great versions of &lt;i&gt;Bottomless Hole&lt;/i&gt;, &lt;i&gt;After We Shot The Grizzly...&lt;/i&gt; and &lt;i&gt;Weightless
Again&lt;/i&gt;.
&lt;/p&gt;
&lt;p&gt;
Finally, we had the full &lt;a href="http://www.sa-wa-ro.com/HoweGelb-Pages/howe-sno.htm"&gt;'Sno
Angel&lt;/a&gt; experience, with the Voices of Praise choir. Not sure how many numbers they
did, but it included &lt;i&gt;Paradise Here Abouts, Worried Spirits, Robes of Bible Black,
But I Did Not, Chore of Enchantment, Get To Leave&lt;/i&gt;, and a couple of presumably
new numbers that I didn't recognise. Thrown in for good measure was a great cover
of Led Zep's &lt;i&gt;Immigrant Song&lt;/i&gt;!
&lt;/p&gt;
&lt;p&gt;
Shame it all had to end!
&lt;/p&gt;
&lt;p&gt;
See also:&lt;a href="http://www.ft.com/cms/s/0acc1c52-fa33-11db-8bd0-000b5df10621.html"&gt;FT
review&lt;/a&gt;, &lt;a href="http://www.charliegillett.com/phpBB2/viewtopic.php?t=4338&amp;amp;sid=d576cfcb04877b6d98bbf4ddf164f9de"&gt;and
here&lt;/a&gt;.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=221ab752-796a-4137-86aa-c2f662213570" /&gt;</description>
      <comments>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,221ab752-796a-4137-86aa-c2f662213570.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://www.bryanrobson.net/DasBlogCe/Trackback.aspx?guid=3f4df400-33d5-4c27-ba7e-cdc5a63ec83f</trackback:ping>
      <pingback:server>http://www.bryanrobson.net/DasBlogCe/pingback.aspx</pingback:server>
      <pingback:target>http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,3f4df400-33d5-4c27-ba7e-cdc5a63ec83f.aspx</pingback:target>
      <dc:creator>Bryan</dc:creator>
      <wfw:comment>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,3f4df400-33d5-4c27-ba7e-cdc5a63ec83f.aspx</wfw:comment>
      <wfw:commentRss>http://www.bryanrobson.net/DasBlogCe/SyndicationService.asmx/GetEntryCommentsRss?guid=3f4df400-33d5-4c27-ba7e-cdc5a63ec83f</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Apparently, there's a certain number that isn't very popular, at least with the MPAA.
So unpopular, in fact, that <a href="http://www.theinquirer.net/default.aspx?article=39330">they
want to ban it</a>.
</p>
        <p>
In case you're interested, the number starts (in hex) 09 f9, then has a bunch of other
digits, and ends 88 c0.
</p>
        <p>
If you're a decimal person, parts of the middle look like this: 17 2 157 116 227 91
216 65 86 197 99 86.
</p>
        <p>
Just for the sake of it, here's a string of 0s and 1s: 1001111110011000110100111011110100111000111011011110110001000001101011011000101110001110101101000100011000000.
</p>
        <p>
Doesn't seem so scary when it's just 1s and 0s, does it..?
</p>
        <img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=3f4df400-33d5-4c27-ba7e-cdc5a63ec83f" />
      </body>
      <title>The number they tried to ban</title>
      <guid isPermaLink="false">http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,3f4df400-33d5-4c27-ba7e-cdc5a63ec83f.aspx</guid>
      <link>http://www.bryanrobson.net/DasBlogCe/2007/05/02/The+Number+They+Tried+To+Ban.aspx</link>
      <pubDate>Wed, 02 May 2007 11:33:50 GMT</pubDate>
      <description>&lt;p&gt;
Apparently, there's a certain number that isn't very popular, at least with the MPAA.
So unpopular, in fact, that &lt;a href="http://www.theinquirer.net/default.aspx?article=39330"&gt;they
want to ban it&lt;/a&gt;.
&lt;/p&gt;
&lt;p&gt;
In case you're interested, the number starts (in hex) 09 f9, then has a bunch of other
digits, and ends 88 c0.
&lt;/p&gt;
&lt;p&gt;
If you're a decimal person, parts of the middle look like this: 17 2 157 116 227 91
216 65 86 197 99 86.
&lt;/p&gt;
&lt;p&gt;
Just for the sake of it, here's a string of 0s and 1s: 1001111110011000110100111011110100111000111011011110110001000001101011011000101110001110101101000100011000000.
&lt;/p&gt;
&lt;p&gt;
Doesn't seem so scary when it's just 1s and 0s, does it..?
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=3f4df400-33d5-4c27-ba7e-cdc5a63ec83f" /&gt;</description>
      <comments>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,3f4df400-33d5-4c27-ba7e-cdc5a63ec83f.aspx</comments>
      <category>Coding</category>
      <category>Politics</category>
      <category>Wasting time</category>
    </item>
    <item>
      <trackback:ping>http://www.bryanrobson.net/DasBlogCe/Trackback.aspx?guid=500d067f-3eb4-4117-9123-c09c633477e8</trackback:ping>
      <pingback:server>http://www.bryanrobson.net/DasBlogCe/pingback.aspx</pingback:server>
      <pingback:target>http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,500d067f-3eb4-4117-9123-c09c633477e8.aspx</pingback:target>
      <dc:creator>Bryan</dc:creator>
      <wfw:comment>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,500d067f-3eb4-4117-9123-c09c633477e8.aspx</wfw:comment>
      <wfw:commentRss>http://www.bryanrobson.net/DasBlogCe/SyndicationService.asmx/GetEntryCommentsRss?guid=500d067f-3eb4-4117-9123-c09c633477e8</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <div class="imagefloatright">
          <img src="http://www.bryanrobson.net/DasBlogCe/content/binary/Howe.jpg" border="0" height="444" width="358" />
        </div>
        <p>
Thanks to the <a href="http://www.giantsand.com/">Giant Sand website</a>, I've found
a link to the programme for this evening's fun at the Barbican. The PDF can be found <a href="http://www.barbican.org.uk/media/events/5651howeprogfinalsignedoff.pdf">here</a>.
God, this is going to be a good show..!
</p>
        <p>
The full line-up is:
</p>
        <b>Howe Gelb</b> vocals/guitar/piano<br /><br /><b>Giant Sand:</b><br /><b>Henriette Sennevaldt</b> vocals<br /><b>Peter Dombernowsky</b> drums/percussion<br /><b>Anders Pedersen</b> guitar<br /><b>Thøger Lund</b> bass<br /><br /><b>Isobel Campbell</b> vocals/piano<br /><b>David McGowan</b> bass<br /><b>Jim McCulloch</b> guitar<br /><br /><b>Emiliana Torrini</b> vocals<br /><br /><b>Lonna Kelley</b> vocals<br /><br /><b>Mary Margaret O’Hara</b> vocals + band:<br /><b>Rusty McCarthy</b> guitar<br /><b>Great Bob Scott</b> drums<br /><br /><b>Fernando Vacas</b> + band ‘Flow’:<br /><b>Rocio Barrio</b><br /><b>Luis Cortes</b><br /><br /><b>The Handsome Family</b>:<br /><b>Brett Sparks</b> guitar/vocals<br /><b>Rennie Sparks</b> guitar/vocals<br /><b>Stephen Dorocke</b> pedal steel<br /><br /><b>Sno Angel</b>:<br /><b>Howe Gelb</b> vocals/guitar/piano<br /><b>Fred Guignion</b> slide guitar<br /><b>Andrew McCormack</b> drums<br /><br /><b>Voices of Praise Gospel Choir</b>:<br /><b>Steve Johnston</b> director<br /><b>Patrick Joseph</b><br /><b>Neema Mugala<br />
Christine Methengye<br />
Jerusha Lewis<br />
Michael Shaw</b><img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=500d067f-3eb4-4117-9123-c09c633477e8" /></body>
      <title>Howe Gelb &amp; Friends (update)</title>
      <guid isPermaLink="false">http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,500d067f-3eb4-4117-9123-c09c633477e8.aspx</guid>
      <link>http://www.bryanrobson.net/DasBlogCe/2007/05/02/Howe+Gelb+Friends+Update.aspx</link>
      <pubDate>Wed, 02 May 2007 09:38:41 GMT</pubDate>
      <description>&lt;div class="imagefloatright"&gt;&lt;img src="http://www.bryanrobson.net/DasBlogCe/content/binary/Howe.jpg" border="0" height="444" width="358"&gt;
&lt;/div&gt;
&lt;p&gt;
Thanks to the &lt;a href="http://www.giantsand.com/"&gt;Giant Sand website&lt;/a&gt;, I've found
a link to the programme for this evening's fun at the Barbican. The PDF can be found &lt;a href="http://www.barbican.org.uk/media/events/5651howeprogfinalsignedoff.pdf"&gt;here&lt;/a&gt;.
God, this is going to be a good show..!
&lt;/p&gt;
&lt;p&gt;
The full line-up is:
&lt;/p&gt;
&lt;b&gt;Howe Gelb&lt;/b&gt; vocals/guitar/piano&lt;br&gt;
&lt;br&gt;
&lt;b&gt;Giant Sand:&lt;/b&gt;
&lt;br&gt;
&lt;b&gt;Henriette Sennevaldt&lt;/b&gt; vocals&lt;br&gt;
&lt;b&gt;Peter Dombernowsky&lt;/b&gt; drums/percussion&lt;br&gt;
&lt;b&gt;Anders Pedersen&lt;/b&gt; guitar&lt;br&gt;
&lt;b&gt;Thøger Lund&lt;/b&gt; bass&lt;br&gt;
&lt;br&gt;
&lt;b&gt;Isobel Campbell&lt;/b&gt; vocals/piano&lt;br&gt;
&lt;b&gt;David McGowan&lt;/b&gt; bass&lt;br&gt;
&lt;b&gt;Jim McCulloch&lt;/b&gt; guitar&lt;br&gt;
&lt;br&gt;
&lt;b&gt;Emiliana Torrini&lt;/b&gt; vocals&lt;br&gt;
&lt;br&gt;
&lt;b&gt;Lonna Kelley&lt;/b&gt; vocals&lt;br&gt;
&lt;br&gt;
&lt;b&gt;Mary Margaret O’Hara&lt;/b&gt; vocals + band:&lt;br&gt;
&lt;b&gt;Rusty McCarthy&lt;/b&gt; guitar&lt;br&gt;
&lt;b&gt;Great Bob Scott&lt;/b&gt; drums&lt;br&gt;
&lt;br&gt;
&lt;b&gt;Fernando Vacas&lt;/b&gt; + band ‘Flow’:&lt;br&gt;
&lt;b&gt;Rocio Barrio&lt;/b&gt;
&lt;br&gt;
&lt;b&gt;Luis Cortes&lt;/b&gt;
&lt;br&gt;
&lt;br&gt;
&lt;b&gt;The Handsome Family&lt;/b&gt;:&lt;br&gt;
&lt;b&gt;Brett Sparks&lt;/b&gt; guitar/vocals&lt;br&gt;
&lt;b&gt;Rennie Sparks&lt;/b&gt; guitar/vocals&lt;br&gt;
&lt;b&gt;Stephen Dorocke&lt;/b&gt; pedal steel&lt;br&gt;
&lt;br&gt;
&lt;b&gt;Sno Angel&lt;/b&gt;:&lt;br&gt;
&lt;b&gt;Howe Gelb&lt;/b&gt; vocals/guitar/piano&lt;br&gt;
&lt;b&gt;Fred Guignion&lt;/b&gt; slide guitar&lt;br&gt;
&lt;b&gt;Andrew McCormack&lt;/b&gt; drums&lt;br&gt;
&lt;br&gt;
&lt;b&gt;Voices of Praise Gospel Choir&lt;/b&gt;:&lt;br&gt;
&lt;b&gt;Steve Johnston&lt;/b&gt; director&lt;br&gt;
&lt;b&gt;Patrick Joseph&lt;/b&gt;
&lt;br&gt;
&lt;b&gt;Neema Mugala&lt;br&gt;
Christine Methengye&lt;br&gt;
Jerusha Lewis&lt;br&gt;
Michael Shaw&lt;/b&gt;&lt;img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=500d067f-3eb4-4117-9123-c09c633477e8" /&gt;</description>
      <comments>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,500d067f-3eb4-4117-9123-c09c633477e8.aspx</comments>
      <category>Music</category>
    </item>
    <item>
      <trackback:ping>http://www.bryanrobson.net/DasBlogCe/Trackback.aspx?guid=55537e33-7cff-466d-833a-8d106005bec8</trackback:ping>
      <pingback:server>http://www.bryanrobson.net/DasBlogCe/pingback.aspx</pingback:server>
      <pingback:target>http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,55537e33-7cff-466d-833a-8d106005bec8.aspx</pingback:target>
      <dc:creator>Bryan</dc:creator>
      <wfw:comment>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,55537e33-7cff-466d-833a-8d106005bec8.aspx</wfw:comment>
      <wfw:commentRss>http://www.bryanrobson.net/DasBlogCe/SyndicationService.asmx/GetEntryCommentsRss?guid=55537e33-7cff-466d-833a-8d106005bec8</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <div class="imagefloatright">
          <img src="http://www.bryanrobson.net/DasBlogCe/content/binary/5651howegelbevent.jpg" border="0" />
        </div>
        <p>
Tomorrow evening we're going to see <a href="http://www.barbican.org.uk/music/event-detail.asp?ID=5651">Howe
Gelb &amp; Friends at the Barbican</a>. It should be an excellent show, with a line-up
including "Isobel Campbell, Emiliana Torrini, Mary Margaret O'Hara, <a href="http://www.handsomefamily.com/">The
Handsome Family</a>, <a href="http://www.giantsand.com/">Giant Sand</a>, Sno' Angel
Choir, Lonna Kelly and more special guests, kith and kin and past collaborators to
be announced."
</p>
        <p>
I saw the last show of this sort that Howe did, the <i>(Upside) Down Home</i> show
that was part of the <i>Beyond Nashville</i> season at the Barbican in 2001, and it
was a superb night (voted gig of the year in 2001 by <i>Time Out</i>, and reviewed <a href="http://findarticles.com/p/articles/mi_qn4158/is_20011106/ai_n14424246">here</a> by
The Independent), and caused me to start listening to Lambchop and Sparklehorse, who
I'd not heard before that evening (and who I've seen since on their own).
</p>
        <p>
It's great that the Handsome Family are playing - it was looking like I might have
the first year in a few where they didn't play somewhere near me. Wonder who the unnamed
guests are - last time PJ Harvey turned up, maybe this year we could have <a href="http:www.nekocase.com/">Neko</a> or <a href="http://www.mwardmusic.com/">M.
Ward</a>? Hopes....
</p>
        <img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=55537e33-7cff-466d-833a-8d106005bec8" />
      </body>
      <title>Howe Gelb &amp; Friends</title>
      <guid isPermaLink="false">http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,55537e33-7cff-466d-833a-8d106005bec8.aspx</guid>
      <link>http://www.bryanrobson.net/DasBlogCe/2007/05/01/Howe+Gelb+Friends.aspx</link>
      <pubDate>Tue, 01 May 2007 10:22:42 GMT</pubDate>
      <description>&lt;div class="imagefloatright"&gt;&lt;img src="http://www.bryanrobson.net/DasBlogCe/content/binary/5651howegelbevent.jpg" border="0"&gt;
&lt;/div&gt;
&lt;p&gt;
Tomorrow evening we're going to see &lt;a href="http://www.barbican.org.uk/music/event-detail.asp?ID=5651"&gt;Howe
Gelb &amp;amp; Friends at the Barbican&lt;/a&gt;. It should be an excellent show, with a line-up
including "Isobel Campbell, Emiliana Torrini, Mary Margaret O'Hara, &lt;a href="http://www.handsomefamily.com/"&gt;The
Handsome Family&lt;/a&gt;, &lt;a href="http://www.giantsand.com/"&gt;Giant Sand&lt;/a&gt;, Sno' Angel
Choir, Lonna Kelly and more special guests, kith and kin and past collaborators to
be announced."
&lt;/p&gt;
&lt;p&gt;
I saw the last show of this sort that Howe did, the &lt;i&gt;(Upside) Down Home&lt;/i&gt; show
that was part of the &lt;i&gt;Beyond Nashville&lt;/i&gt; season at the Barbican in 2001, and it
was a superb night (voted gig of the year in 2001 by &lt;i&gt;Time Out&lt;/i&gt;, and reviewed &lt;a href="http://findarticles.com/p/articles/mi_qn4158/is_20011106/ai_n14424246"&gt;here&lt;/a&gt; by
The Independent), and caused me to start listening to Lambchop and Sparklehorse, who
I'd not heard before that evening (and who I've seen since on their own).
&lt;/p&gt;
&lt;p&gt;
It's great that the Handsome Family are playing - it was looking like I might have
the first year in a few where they didn't play somewhere near me. Wonder who the unnamed
guests are - last time PJ Harvey turned up, maybe this year we could have &lt;a href="http:www.nekocase.com/"&gt;Neko&lt;/a&gt; or &lt;a href="http://www.mwardmusic.com/"&gt;M.
Ward&lt;/a&gt;? Hopes....
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=55537e33-7cff-466d-833a-8d106005bec8" /&gt;</description>
      <comments>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,55537e33-7cff-466d-833a-8d106005bec8.aspx</comments>
      <category>Music</category>
    </item>
    <item>
      <trackback:ping>http://www.bryanrobson.net/DasBlogCe/Trackback.aspx?guid=4295e05f-2620-4ed3-bc6e-fa88b6afa006</trackback:ping>
      <pingback:server>http://www.bryanrobson.net/DasBlogCe/pingback.aspx</pingback:server>
      <pingback:target>http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,4295e05f-2620-4ed3-bc6e-fa88b6afa006.aspx</pingback:target>
      <dc:creator>Bryan</dc:creator>
      <wfw:comment>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,4295e05f-2620-4ed3-bc6e-fa88b6afa006.aspx</wfw:comment>
      <wfw:commentRss>http://www.bryanrobson.net/DasBlogCe/SyndicationService.asmx/GetEntryCommentsRss?guid=4295e05f-2620-4ed3-bc6e-fa88b6afa006</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Right, I'm back after 3 weeks working for a company outside of Birmingham, staying
in a hotel that had neither internet access nor even a mobile phone signal, so I read
a lot of books... Anyway, last week I was <a href="http://www.flickr.com/photos/bryanrobson/sets/72157594557603125/">skiing
in Chamonix</a> (which was mostly fun: great weather and good snow, but by the end
of a week I'm fed up with prising myself out of bed for another day of pain and suffering
on the slopes - I should try long weekends instead!), and since the weather had closed
in on Saturday we didn't go skiing for our final morning, instead heading back to
Geneva early.
</p>
        <p>
This, of course, meant that we had quite a lot of time to fill before we could check
in for our flight home. Fortunately we stumbled across a bowling alley and pizza restaurant
very close to the airport, advertising pizza by the metre, so how could we not have
a look?
</p>
        <p>
The bowling alley was, well, a typical bowling alley, with 12 lanes. The pizzas, however,
were some of the best that any of us had had in quite some time. My Cappriciosa was
delicious, with a just-set egg in the middle of it, and plenty of artichoke, ham,
and mushrooms on it.
</p>
        <p>
As far as I can make out, the bowling alley is <a href="http://maps.google.com/maps?f=q&amp;hl=en&amp;q=Geneva,+Switzerland&amp;ie=UTF8&amp;z=18&amp;ll=46.219945,6.102927&amp;spn=0.003151,0.005155&amp;t=k&amp;om=1">here</a>.
I have no idea what it's called, mind you, but if you find yourself needing to waste
some time during the day before a flight from Geneva airport, I can think of far worse
places to be...
</p>
        <p>
Also, I like the new check-in arrangements at Geneva for EasyJet. They have a bank
of terminals in which you enter your reference number, and which then print out all
the boarding cards and luggage tags for your party. You tag your luggage, then take
them to the check-in desks, who scan and weigh then, and that's it. You're done. Quickest
check-in I've ever had - so why can't you do the same at Luton?
</p>
        <p>
While I'm wondering about EasyJet's policies: why on earth did our ski boot bags count
as oversized luggage when we were at Luton? I mean, a boot bag isn't exactly a huge
item...
</p>
        <img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=4295e05f-2620-4ed3-bc6e-fa88b6afa006" />
      </body>
      <title>Pizza and bowling in Geneva</title>
      <guid isPermaLink="false">http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,4295e05f-2620-4ed3-bc6e-fa88b6afa006.aspx</guid>
      <link>http://www.bryanrobson.net/DasBlogCe/2007/02/26/Pizza+And+Bowling+In+Geneva.aspx</link>
      <pubDate>Mon, 26 Feb 2007 16:26:38 GMT</pubDate>
      <description>&lt;p&gt;
Right, I'm back after 3 weeks working for a company outside of Birmingham, staying
in a hotel that had neither internet access nor even a mobile phone signal, so I read
a lot of books... Anyway, last week I was &lt;a href="http://www.flickr.com/photos/bryanrobson/sets/72157594557603125/"&gt;skiing
in Chamonix&lt;/a&gt; (which was mostly fun: great weather and good snow, but by the end
of a week I'm fed up with prising myself out of bed for another day of pain and suffering
on the slopes - I should try long weekends instead!), and since the weather had closed
in on Saturday we didn't go skiing for our final morning, instead heading back to
Geneva early.
&lt;/p&gt;
&lt;p&gt;
This, of course, meant that we had quite a lot of time to fill before we could check
in for our flight home. Fortunately we stumbled across a bowling alley and pizza restaurant
very close to the airport, advertising pizza by the metre, so how could we not have
a look?
&lt;/p&gt;
&lt;p&gt;
The bowling alley was, well, a typical bowling alley, with 12 lanes. The pizzas, however,
were some of the best that any of us had had in quite some time. My Cappriciosa was
delicious, with a just-set egg in the middle of it, and plenty of artichoke, ham,
and mushrooms on it.
&lt;/p&gt;
&lt;p&gt;
As far as I can make out, the bowling alley is &lt;a href="http://maps.google.com/maps?f=q&amp;amp;hl=en&amp;amp;q=Geneva,+Switzerland&amp;amp;ie=UTF8&amp;amp;z=18&amp;amp;ll=46.219945,6.102927&amp;amp;spn=0.003151,0.005155&amp;amp;t=k&amp;amp;om=1"&gt;here&lt;/a&gt;.
I have no idea what it's called, mind you, but if you find yourself needing to waste
some time during the day before a flight from Geneva airport, I can think of far worse
places to be...
&lt;/p&gt;
&lt;p&gt;
Also, I like the new check-in arrangements at Geneva for EasyJet. They have a bank
of terminals in which you enter your reference number, and which then print out all
the boarding cards and luggage tags for your party. You tag your luggage, then take
them to the check-in desks, who scan and weigh then, and that's it. You're done. Quickest
check-in I've ever had - so why can't you do the same at Luton?
&lt;/p&gt;
&lt;p&gt;
While I'm wondering about EasyJet's policies: why on earth did our ski boot bags count
as oversized luggage when we were at Luton? I mean, a boot bag isn't exactly a huge
item...
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=4295e05f-2620-4ed3-bc6e-fa88b6afa006" /&gt;</description>
      <comments>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,4295e05f-2620-4ed3-bc6e-fa88b6afa006.aspx</comments>
      <category>Life</category>
      <category>Wasting time</category>
      <category>Travel</category>
    </item>
    <item>
      <trackback:ping>http://www.bryanrobson.net/DasBlogCe/Trackback.aspx?guid=9ae03e1d-7d28-46fb-b0f4-83c17e457b83</trackback:ping>
      <pingback:server>http://www.bryanrobson.net/DasBlogCe/pingback.aspx</pingback:server>
      <pingback:target>http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,9ae03e1d-7d28-46fb-b0f4-83c17e457b83.aspx</pingback:target>
      <dc:creator>Bryan</dc:creator>
      <wfw:comment>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,9ae03e1d-7d28-46fb-b0f4-83c17e457b83.aspx</wfw:comment>
      <wfw:commentRss>http://www.bryanrobson.net/DasBlogCe/SyndicationService.asmx/GetEntryCommentsRss?guid=9ae03e1d-7d28-46fb-b0f4-83c17e457b83</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
CityRag has tracked down the YouTube videos of the 20 greatest guitar solos (according
to Guitar World). Indulge your air-guitar impulses <a href="http://cityrag.blogs.com/main/2007/01/100_greatest_gu.html">here</a>! 
Over 7 minutes of the Freebird guitar solo!  What more could you want...<br /></p>
        <img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=9ae03e1d-7d28-46fb-b0f4-83c17e457b83" />
      </body>
      <title>20 Greatest Guitar Solos</title>
      <guid isPermaLink="false">http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,9ae03e1d-7d28-46fb-b0f4-83c17e457b83.aspx</guid>
      <link>http://www.bryanrobson.net/DasBlogCe/2007/01/25/20+Greatest+Guitar+Solos.aspx</link>
      <pubDate>Thu, 25 Jan 2007 17:04:00 GMT</pubDate>
      <description>&lt;p&gt;
CityRag has tracked down the YouTube videos of the 20 greatest guitar solos (according
to Guitar World). Indulge your air-guitar impulses &lt;a href="http://cityrag.blogs.com/main/2007/01/100_greatest_gu.html"&gt;here&lt;/a&gt;!&amp;nbsp;
Over 7 minutes of the Freebird guitar solo!&amp;nbsp; What more could you want...&lt;br&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=9ae03e1d-7d28-46fb-b0f4-83c17e457b83" /&gt;</description>
      <comments>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,9ae03e1d-7d28-46fb-b0f4-83c17e457b83.aspx</comments>
      <category>Music</category>
    </item>
    <item>
      <trackback:ping>http://www.bryanrobson.net/DasBlogCe/Trackback.aspx?guid=20ad7054-aa8f-48b4-ad3e-59a780510049</trackback:ping>
      <pingback:server>http://www.bryanrobson.net/DasBlogCe/pingback.aspx</pingback:server>
      <pingback:target>http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,20ad7054-aa8f-48b4-ad3e-59a780510049.aspx</pingback:target>
      <dc:creator>Bryan</dc:creator>
      <wfw:comment>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,20ad7054-aa8f-48b4-ad3e-59a780510049.aspx</wfw:comment>
      <wfw:commentRss>http://www.bryanrobson.net/DasBlogCe/SyndicationService.asmx/GetEntryCommentsRss?guid=20ad7054-aa8f-48b4-ad3e-59a780510049</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
From Christopher Hitchens: <a href="http://speaker-stands.sermphon.com/speaker-stands/2007/01/13/a-life-of-living-dangerously/">A
Life of Living Dangerously</a>. I completely agree with his eloquent defense of the
right of all of us to go to hell in our own ways, or, as it's otherwise known, enjoy
ourselves. I am an adult; I am quite capable of deciding what I wish to eat, drink,
and do, for myself and don't need the constant hectoring of our government reminding
me that these things may be bad for me. I know this, but consider the pleasure of
indulging to be of more importance than the risks they entail. As Hitch says in the
article, 'Above all, I could say that whenever I hear someone intone, “Sir, I’m going
to need you to…” my instinctive response is, “And as for you, sir, I need you to stay
the fuck out of my face.” '
</p>
        <p>
          <i>Hat tip: the <a href="http://drinksoakedtrotsforwar.blogspot.com/2007/01/hitch-on-life-liberty-and-pursuit-of.html">Drink-soaked
Trots</a></i>.
</p>
        <img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=20ad7054-aa8f-48b4-ad3e-59a780510049" />
      </body>
      <title>Hitchens: A Life of Living Dangerously</title>
      <guid isPermaLink="false">http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,20ad7054-aa8f-48b4-ad3e-59a780510049.aspx</guid>
      <link>http://www.bryanrobson.net/DasBlogCe/2007/01/17/Hitchens+A+Life+Of+Living+Dangerously.aspx</link>
      <pubDate>Wed, 17 Jan 2007 10:26:26 GMT</pubDate>
      <description>&lt;p&gt;
From Christopher Hitchens: &lt;a href="http://speaker-stands.sermphon.com/speaker-stands/2007/01/13/a-life-of-living-dangerously/"&gt;A
Life of Living Dangerously&lt;/a&gt;. I completely agree with his eloquent defense of the
right of all of us to go to hell in our own ways, or, as it's otherwise known, enjoy
ourselves. I am an adult; I am quite capable of deciding what I wish to eat, drink,
and do, for myself and don't need the constant hectoring of our government reminding
me that these things may be bad for me. I know this, but consider the pleasure of
indulging to be of more importance than the risks they entail. As Hitch says in the
article, 'Above all, I could say that whenever I hear someone intone, “Sir, I’m going
to need you to…” my instinctive response is, “And as for you, sir, I need you to stay
the fuck out of my face.” '
&lt;/p&gt;
&lt;p&gt;
&lt;i&gt;Hat tip: the &lt;a href="http://drinksoakedtrotsforwar.blogspot.com/2007/01/hitch-on-life-liberty-and-pursuit-of.html"&gt;Drink-soaked
Trots&lt;/a&gt;&lt;/i&gt;.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=20ad7054-aa8f-48b4-ad3e-59a780510049" /&gt;</description>
      <comments>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,20ad7054-aa8f-48b4-ad3e-59a780510049.aspx</comments>
      <category>Politics</category>
      <category>Life</category>
    </item>
    <item>
      <trackback:ping>http://www.bryanrobson.net/DasBlogCe/Trackback.aspx?guid=64c6dbf2-9696-430d-a8c8-54b3bdb0a5f8</trackback:ping>
      <pingback:server>http://www.bryanrobson.net/DasBlogCe/pingback.aspx</pingback:server>
      <pingback:target>http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,64c6dbf2-9696-430d-a8c8-54b3bdb0a5f8.aspx</pingback:target>
      <dc:creator>Bryan</dc:creator>
      <wfw:comment>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,64c6dbf2-9696-430d-a8c8-54b3bdb0a5f8.aspx</wfw:comment>
      <wfw:commentRss>http://www.bryanrobson.net/DasBlogCe/SyndicationService.asmx/GetEntryCommentsRss?guid=64c6dbf2-9696-430d-a8c8-54b3bdb0a5f8</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
I've been hoping for something like this for a while: <a href="http://www.goosync.com/">GooSync</a> allows
you to synchronise your phone's calendar with your Google Calendar (including hosted
domains). The only other ones I'd found for Windows Smartphones required the .Net
Compact Framework 2, which I can't install. Seems to work ok, though it's been a little
temperamental this afternoon, but that might be because we get almost no mobile signal
in our office...
</p>
        <img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=64c6dbf2-9696-430d-a8c8-54b3bdb0a5f8" />
      </body>
      <title>GooSync - Sync your phone with Google Calendars</title>
      <guid isPermaLink="false">http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,64c6dbf2-9696-430d-a8c8-54b3bdb0a5f8.aspx</guid>
      <link>http://www.bryanrobson.net/DasBlogCe/2007/01/16/GooSync+Sync+Your+Phone+With+Google+Calendars.aspx</link>
      <pubDate>Tue, 16 Jan 2007 17:34:01 GMT</pubDate>
      <description>&lt;p&gt;
I've been hoping for something like this for a while: &lt;a href="http://www.goosync.com/"&gt;GooSync&lt;/a&gt; allows
you to synchronise your phone's calendar with your Google Calendar (including hosted
domains). The only other ones I'd found for Windows Smartphones required the .Net
Compact Framework 2, which I can't install. Seems to work ok, though it's been a little
temperamental this afternoon, but that might be because we get almost no mobile signal
in our office...
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=64c6dbf2-9696-430d-a8c8-54b3bdb0a5f8" /&gt;</description>
      <comments>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,64c6dbf2-9696-430d-a8c8-54b3bdb0a5f8.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://www.bryanrobson.net/DasBlogCe/Trackback.aspx?guid=d0f57594-5043-4965-a0e3-9af437c405db</trackback:ping>
      <pingback:server>http://www.bryanrobson.net/DasBlogCe/pingback.aspx</pingback:server>
      <pingback:target>http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,d0f57594-5043-4965-a0e3-9af437c405db.aspx</pingback:target>
      <dc:creator>Bryan</dc:creator>
      <wfw:comment>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,d0f57594-5043-4965-a0e3-9af437c405db.aspx</wfw:comment>
      <wfw:commentRss>http://www.bryanrobson.net/DasBlogCe/SyndicationService.asmx/GetEntryCommentsRss?guid=d0f57594-5043-4965-a0e3-9af437c405db</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <table width="350" align="center" border="0" cellspacing="0" cellpadding="2">
          <tr>
            <td bgcolor="#CCCCCC" align="center">
              <font face="Georgia, Times New Roman, Times, serif" style="color:black; font-size: 14pt;">
                <strong>You
Are 88% Cynical</strong>
              </font>
            </td>
          </tr>
          <tr>
            <td bgcolor="#DDDDDD">
              <center>
                <img src="http://images.blogthings.com/howcynicalareyouquiz/cynical-5.jpg" height="100" width="100" />
              </center>
              <font color="#000000"> You're cynicism borders on paranoia.<br />
Worry less. You're out to get the world as much as it's out to get you. </font>
            </td>
          </tr>
        </table>
        <div align="center">
          <a href="http://www.blogthings.com/howcynicalareyouquiz/">How
Cynical Are You?</a>
        </div>
        <p>
          <i>Hat tip: <a href="http://billsticker.wordpress.com/">Outside the Lines</a></i>
        </p>
        <img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=d0f57594-5043-4965-a0e3-9af437c405db" />
      </body>
      <title>Who'd have thought it?</title>
      <guid isPermaLink="false">http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,d0f57594-5043-4965-a0e3-9af437c405db.aspx</guid>
      <link>http://www.bryanrobson.net/DasBlogCe/2007/01/16/Whod+Have+Thought+It.aspx</link>
      <pubDate>Tue, 16 Jan 2007 17:29:57 GMT</pubDate>
      <description>&lt;table width=350 align=center border=0 cellspacing=0 cellpadding=2&gt;
&lt;tr&gt;
&lt;td bgcolor="#CCCCCC" align=center&gt;
&lt;font face="Georgia, Times New Roman, Times, serif" style='color:black; font-size: 14pt;'&gt; &lt;strong&gt;You
Are 88% Cynical&lt;/strong&gt; &lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td bgcolor="#DDDDDD"&gt;
&lt;center&gt;&lt;img src="http://images.blogthings.com/howcynicalareyouquiz/cynical-5.jpg" height="100" width="100"&gt;
&lt;/center&gt;
&lt;font color="#000000"&gt; You're cynicism borders on paranoia.&lt;br /&gt;
Worry less. You're out to get the world as much as it's out to get you. &lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;div align="center"&gt;&lt;a href="http://www.blogthings.com/howcynicalareyouquiz/"&gt;How
Cynical Are You?&lt;/a&gt;
&lt;/div&gt;
&lt;p&gt;
&lt;i&gt;Hat tip: &lt;a href="http://billsticker.wordpress.com/"&gt;Outside the Lines&lt;/a&gt;&lt;/i&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=d0f57594-5043-4965-a0e3-9af437c405db" /&gt;</description>
      <comments>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,d0f57594-5043-4965-a0e3-9af437c405db.aspx</comments>
      <category>Quiz</category>
    </item>
    <item>
      <trackback:ping>http://www.bryanrobson.net/DasBlogCe/Trackback.aspx?guid=f9d0c4f5-ab1e-494f-948a-a5398ead19ee</trackback:ping>
      <pingback:server>http://www.bryanrobson.net/DasBlogCe/pingback.aspx</pingback:server>
      <pingback:target>http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,f9d0c4f5-ab1e-494f-948a-a5398ead19ee.aspx</pingback:target>
      <dc:creator>Bryan</dc:creator>
      <wfw:comment>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,f9d0c4f5-ab1e-494f-948a-a5398ead19ee.aspx</wfw:comment>
      <wfw:commentRss>http://www.bryanrobson.net/DasBlogCe/SyndicationService.asmx/GetEntryCommentsRss?guid=f9d0c4f5-ab1e-494f-948a-a5398ead19ee</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
I've just read a very interesting article by Peter Gutmann, called <i>A Cost Analysis
of Windows Vista Content Protection</i>. To quote the executive executive summary,
"The Vista Content Protection specification could very well constitute the longest
suicide note in history". You can find it <a href="http://www.cs.auckland.ac.nz/%7Epgut001/pubs/vista_cost.txt">here</a>.
</p>
        <p>
Now, by background I'm a Microsoft sort of person. I've worked as a developer on pretty
much all versions of Windows since 3.1, and I don't even have Linux installed on any
of my home PCs at the moment. However, everything I've read about Vista has made come
to the conclusion that there's no way I'm going to install it on any of my PCs unless
Microsoft give up on the bloody stupid idea of crippling people's PCs at the behest
of the studios. The injury to be added to the insult is the price of the damn thing,
too - Amazon have Home Premium listed at £220.
</p>
        <p>
Hat tip: <a href="http://feeds.feedburner.com/%7Er/boingboing/iBag/%7E3/75003760/vista_suicide_note_r.html">Boing
Boing</a>.
</p>
        <img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=f9d0c4f5-ab1e-494f-948a-a5398ead19ee" />
      </body>
      <title>Windows Vista: broken by design</title>
      <guid isPermaLink="false">http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,f9d0c4f5-ab1e-494f-948a-a5398ead19ee.aspx</guid>
      <link>http://www.bryanrobson.net/DasBlogCe/2007/01/15/Windows+Vista+Broken+By+Design.aspx</link>
      <pubDate>Mon, 15 Jan 2007 11:14:47 GMT</pubDate>
      <description>&lt;p&gt;
I've just read a very interesting article by Peter Gutmann, called &lt;i&gt;A Cost Analysis
of Windows Vista Content Protection&lt;/i&gt;. To quote the executive executive summary,
"The Vista Content Protection specification could very well constitute the longest
suicide note in history". You can find it &lt;a href="http://www.cs.auckland.ac.nz/%7Epgut001/pubs/vista_cost.txt"&gt;here&lt;/a&gt;.
&lt;/p&gt;
&lt;p&gt;
Now, by background I'm a Microsoft sort of person. I've worked as a developer on pretty
much all versions of Windows since 3.1, and I don't even have Linux installed on any
of my home PCs at the moment. However, everything I've read about Vista has made come
to the conclusion that there's no way I'm going to install it on any of my PCs unless
Microsoft give up on the bloody stupid idea of crippling people's PCs at the behest
of the studios. The injury to be added to the insult is the price of the damn thing,
too - Amazon have Home Premium listed at £220.
&lt;/p&gt;
&lt;p&gt;
Hat tip: &lt;a href="http://feeds.feedburner.com/%7Er/boingboing/iBag/%7E3/75003760/vista_suicide_note_r.html"&gt;Boing
Boing&lt;/a&gt;.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=f9d0c4f5-ab1e-494f-948a-a5398ead19ee" /&gt;</description>
      <comments>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,f9d0c4f5-ab1e-494f-948a-a5398ead19ee.aspx</comments>
      <category>Windows</category>
    </item>
    <item>
      <trackback:ping>http://www.bryanrobson.net/DasBlogCe/Trackback.aspx?guid=98bc7061-e117-4a37-8663-32650be0bd2a</trackback:ping>
      <pingback:server>http://www.bryanrobson.net/DasBlogCe/pingback.aspx</pingback:server>
      <pingback:target>http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,98bc7061-e117-4a37-8663-32650be0bd2a.aspx</pingback:target>
      <dc:creator>Bryan</dc:creator>
      <wfw:comment>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,98bc7061-e117-4a37-8663-32650be0bd2a.aspx</wfw:comment>
      <wfw:commentRss>http://www.bryanrobson.net/DasBlogCe/SyndicationService.asmx/GetEntryCommentsRss?guid=98bc7061-e117-4a37-8663-32650be0bd2a</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Ok, I confess: I'm a sucker for classic rock...
</p>
        <table align="center" cellpadding="20">
          <tbody>
            <tr>
              <td align="center">
                <font size="5">
                  <b>The Veteran</b>
                </font>
                <br />
You scored 90%! 
</td>
            </tr>
            <tr>
              <td>
You've picked up the majority of the classic rock basics. You probably have a classic
rock collection and can sing along with most of the songs on your local radio station.
This is not the highest score, but it is arguably the <i>best</i>: that subtle combination
of impressive knowledge and not being a pretentious geek. 
</td>
            </tr>
            <tr>
              <td align="center">
                <img src="http://is0.okcupid.com/users/102/306/1023073104876057970/mt1115192068.jpg" />
              </td>
            </tr>
          </tbody>
        </table>
        <br />
        <br />
        <br />
        <table cellpadding="20">
          <tbody>
            <tr>
              <td>
                <span id="comparisonarea">My test tracked 1 variable How you compared to other people <i>your
age and gender</i>:<blockquote><table border="0" cellpadding="0" cellspacing="4"><tbody><tr><td valign="middle"><table bgcolor="black" border="0" cellpadding="0" cellspacing="1"><tbody><tr><td bgcolor="#b2cfff" height="20" width="149"><a href="http://www.okcupid.com"><img src="http://is1.okcupid.com/graphics/0.gif" alt="free online dating" border="0" /></a></td><td bgcolor="white" width="1"><a href="http://www.okcupid.com"><img src="http://is1.okcupid.com/graphics/0.gif" alt="free online dating" border="0" /></a></td></tr></tbody></table></td><td valign="middle">
You scored higher than <b>99%</b> on <b>notes</b></td></tr></tbody></table></blockquote></span>
              </td>
            </tr>
          </tbody>
        </table>
        <table cellpadding="20">
          <tbody>
            <tr>
              <td>
Link: <a href="http://www.okcupid.com/tests/take?testid=9994175725051725569">The BASIC
classic rock Test</a> written by <a href="http://www.okcupid.com/profile?u=allmydays">allmydays</a> on <a href="http://www.okcupid.com">OkCupid
Free Online Dating</a>, home of the <a href="http://www.okcupid.com/online.dating.persona.test">The
Dating Persona Test</a></td>
            </tr>
          </tbody>
        </table>
        <img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=98bc7061-e117-4a37-8663-32650be0bd2a" />
      </body>
      <title>Classic Rock Test</title>
      <guid isPermaLink="false">http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,98bc7061-e117-4a37-8663-32650be0bd2a.aspx</guid>
      <link>http://www.bryanrobson.net/DasBlogCe/2006/12/12/Classic+Rock+Test.aspx</link>
      <pubDate>Tue, 12 Dec 2006 10:59:38 GMT</pubDate>
      <description>&lt;p&gt;
Ok, I confess: I'm a sucker for classic rock...
&lt;/p&gt;
&lt;table align="center" cellpadding="20"&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td align="center"&gt;
&lt;font size="5"&gt;&lt;b&gt;The Veteran&lt;/b&gt;&lt;/font&gt;
&lt;br&gt;
You scored 90%! 
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;
You've picked up the majority of the classic rock basics. You probably have a classic
rock collection and can sing along with most of the songs on your local radio station.
This is not the highest score, but it is arguably the &lt;i&gt;best&lt;/i&gt;: that subtle combination
of impressive knowledge and not being a pretentious geek. 
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td align="center"&gt;
&lt;img src="http://is0.okcupid.com/users/102/306/1023073104876057970/mt1115192068.jpg"&gt; 
&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;table cellpadding="20"&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;span id="comparisonarea"&gt;My test tracked 1 variable How you compared to other people &lt;i&gt;your
age and gender&lt;/i&gt;:&lt;blockquote&gt;
&lt;table border="0" cellpadding="0" cellspacing="4"&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td valign="middle"&gt;
&lt;table bgcolor="black" border="0" cellpadding="0" cellspacing="1"&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td bgcolor="#b2cfff" height="20" width="149"&gt;
&lt;a href="http://www.okcupid.com"&gt;&lt;img src="http://is1.okcupid.com/graphics/0.gif" alt="free online dating" border="0"&gt;&lt;/a&gt;&lt;/td&gt;
&lt;td bgcolor="white" width="1"&gt;
&lt;a href="http://www.okcupid.com"&gt;&lt;img src="http://is1.okcupid.com/graphics/0.gif" alt="free online dating" border="0"&gt;&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;/td&gt;
&lt;td valign="middle"&gt;
You scored higher than &lt;b&gt;99%&lt;/b&gt; on &lt;b&gt;notes&lt;/b&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;/blockquote&gt;&lt;/span&gt; 
&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;table cellpadding="20"&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;
Link: &lt;a href="http://www.okcupid.com/tests/take?testid=9994175725051725569"&gt;The BASIC
classic rock Test&lt;/a&gt; written by &lt;a href="http://www.okcupid.com/profile?u=allmydays"&gt;allmydays&lt;/a&gt; on &lt;a href="http://www.okcupid.com"&gt;OkCupid
Free Online Dating&lt;/a&gt;, home of the &lt;a href="http://www.okcupid.com/online.dating.persona.test"&gt;The
Dating Persona Test&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=98bc7061-e117-4a37-8663-32650be0bd2a" /&gt;</description>
      <comments>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,98bc7061-e117-4a37-8663-32650be0bd2a.aspx</comments>
      <category>Music</category>
      <category>Quiz</category>
    </item>
    <item>
      <trackback:ping>http://www.bryanrobson.net/DasBlogCe/Trackback.aspx?guid=ff18d510-c0a9-420f-bc05-2188bbe6344f</trackback:ping>
      <pingback:server>http://www.bryanrobson.net/DasBlogCe/pingback.aspx</pingback:server>
      <pingback:target>http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,ff18d510-c0a9-420f-bc05-2188bbe6344f.aspx</pingback:target>
      <dc:creator>Bryan</dc:creator>
      <wfw:comment>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,ff18d510-c0a9-420f-bc05-2188bbe6344f.aspx</wfw:comment>
      <wfw:commentRss>http://www.bryanrobson.net/DasBlogCe/SyndicationService.asmx/GetEntryCommentsRss?guid=ff18d510-c0a9-420f-bc05-2188bbe6344f</wfw:commentRss>
      <slash:comments>2</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <div class="imagefloatright">
          <a href="http://www.amazon.co.uk/gp/redirect.html?ie=UTF8&amp;location=http%3A%2F%2Fwww.amazon.co.uk%2FYs-Joanna-Newsom%2Fdp%2FB000I2K9M4&amp;tag=bryanrobsonne-21&amp;linkCode=ur2&amp;camp=1634&amp;creative=6738">
            <img src="http://www.bryanrobson.net/DasBlogCe/content/binary/Ys.jpg" border="0" />
          </a>
        </div>
        <p>
I've just spent the last hour listening to <a href="http://www.dragcity.com/bands/newsom.html">Joanna
Newsom's</a> new album, <a href="http://www.amazon.co.uk/gp/redirect.html?ie=UTF8&amp;location=http%3A%2F%2Fwww.amazon.co.uk%2FYs-Joanna-Newsom%2Fdp%2FB000I2K9M4&amp;tag=bryanrobsonne-21&amp;linkCode=ur2&amp;camp=1634&amp;creative=6738">Ys</a><img src="http://www.assoc-amazon.co.uk/e/ir?t=bryanrobsonne-21&amp;l=ur2&amp;o=2" alt="" style="border: medium none  ! important; margin: 0px ! important;" border="0" height="1" width="1" />.
Named after an ancient Breton city, and pronounced "ees", it's an album that would
be very easy to dismiss as pretentious, overblown, over-arranged, over-produced, and
(from the reviews I've seen so far) overrated. These comments may even be accurate,
but it's also a beautiful and thoroughly <i>interesting</i> piece of art.
</p>
        <p>
This is Newsom's second album, and was recorded by Steve Albini, arranged by Van Dyke
Parks, and produced by Jim O'Rourke, though Newsom's voice and harp take centre stage.
The album's 55 minute running-time contains just 5 tracks, the shortest being the
last, Cosmia (at a smidge over 7 minutes), and the longest, Only Skin, being over
17 minutes long.
</p>
        <p>
I must admit that when I first read about this album in this month's <i>Uncut</i> magazine,
I thought it sounded like an album that I'd find a lot easier to admire than to actually
like. I know it will probably be regarded as heresy by many, but that's been my reaction
to Cat Power. I have her last two albums, <i>You Are Free</i> and <i>The Greatest</i>,
and I don't think I've managed to listen to either all the way through, even when
I've been listening on headphones at work, as they just don't seem able to sustain
my interest. <i>Ys</i> was a different matter; my first impressions quickly confounded
my expectations, and I became more interested with every passing minute.
</p>
        <p>
I think it's the little details that kept me listening: the banjo that plays four
notes, then vanishes. The lyrics that seem to delight in the shape and sound of the
words as much as their sense (which is something I've always liked about Howe Gelb,
too). The unexpected turns that her voice takes, breathy one moment, squeaking like
Bjork the next, but never annoyingly so.
</p>
        <p>
Such gushing praise is most unlike me: put it down to being suprised and delighted
that an album so far removed from the world of <i>X-Factor</i> can get released -
more power to Drag City for doing so.
</p>
        <p>
Now I think I need to put some Tom Waits on to balance things out...
</p>
        <img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=ff18d510-c0a9-420f-bc05-2188bbe6344f" />
      </body>
      <title>Joanna Newsom - Ys</title>
      <guid isPermaLink="false">http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,ff18d510-c0a9-420f-bc05-2188bbe6344f.aspx</guid>
      <link>http://www.bryanrobson.net/DasBlogCe/2006/11/28/Joanna+Newsom+Ys.aspx</link>
      <pubDate>Tue, 28 Nov 2006 15:15:38 GMT</pubDate>
      <description>&lt;div class="imagefloatright"&gt;&lt;a href="http://www.amazon.co.uk/gp/redirect.html?ie=UTF8&amp;amp;location=http%3A%2F%2Fwww.amazon.co.uk%2FYs-Joanna-Newsom%2Fdp%2FB000I2K9M4&amp;amp;tag=bryanrobsonne-21&amp;amp;linkCode=ur2&amp;amp;camp=1634&amp;amp;creative=6738"&gt;&lt;img src="http://www.bryanrobson.net/DasBlogCe/content/binary/Ys.jpg" border="0"&gt;&lt;/a&gt;
&lt;/div&gt;
&lt;p&gt;
I've just spent the last hour listening to &lt;a href="http://www.dragcity.com/bands/newsom.html"&gt;Joanna
Newsom's&lt;/a&gt; new album, &lt;a href="http://www.amazon.co.uk/gp/redirect.html?ie=UTF8&amp;amp;location=http%3A%2F%2Fwww.amazon.co.uk%2FYs-Joanna-Newsom%2Fdp%2FB000I2K9M4&amp;amp;tag=bryanrobsonne-21&amp;amp;linkCode=ur2&amp;amp;camp=1634&amp;amp;creative=6738"&gt;Ys&lt;/a&gt;&lt;img src="http://www.assoc-amazon.co.uk/e/ir?t=bryanrobsonne-21&amp;amp;l=ur2&amp;amp;o=2" alt="" style="border: medium none  ! important; margin: 0px ! important;" border="0" height="1" width="1"&gt;.
Named after an ancient Breton city, and pronounced "ees", it's an album that would
be very easy to dismiss as pretentious, overblown, over-arranged, over-produced, and
(from the reviews I've seen so far) overrated. These comments may even be accurate,
but it's also a beautiful and thoroughly &lt;i&gt;interesting&lt;/i&gt; piece of art.
&lt;/p&gt;
&lt;p&gt;
This is Newsom's second album, and was recorded by Steve Albini, arranged by Van Dyke
Parks, and produced by Jim O'Rourke, though Newsom's voice and harp take centre stage.
The album's 55 minute running-time contains just 5 tracks, the shortest being the
last, Cosmia (at a smidge over 7 minutes), and the longest, Only Skin, being over
17 minutes long.
&lt;/p&gt;
&lt;p&gt;
I must admit that when I first read about this album in this month's &lt;i&gt;Uncut&lt;/i&gt; magazine,
I thought it sounded like an album that I'd find a lot easier to admire than to actually
like. I know it will probably be regarded as heresy by many, but that's been my reaction
to Cat Power. I have her last two albums, &lt;i&gt;You Are Free&lt;/i&gt; and &lt;i&gt;The Greatest&lt;/i&gt;,
and I don't think I've managed to listen to either all the way through, even when
I've been listening on headphones at work, as they just don't seem able to sustain
my interest. &lt;i&gt;Ys&lt;/i&gt; was a different matter; my first impressions quickly confounded
my expectations, and I became more interested with every passing minute.
&lt;/p&gt;
&lt;p&gt;
I think it's the little details that kept me listening: the banjo that plays four
notes, then vanishes. The lyrics that seem to delight in the shape and sound of the
words as much as their sense (which is something I've always liked about Howe Gelb,
too). The unexpected turns that her voice takes, breathy one moment, squeaking like
Bjork the next, but never annoyingly so.
&lt;/p&gt;
&lt;p&gt;
Such gushing praise is most unlike me: put it down to being suprised and delighted
that an album so far removed from the world of &lt;i&gt;X-Factor&lt;/i&gt; can get released -
more power to Drag City for doing so.
&lt;/p&gt;
&lt;p&gt;
Now I think I need to put some Tom Waits on to balance things out...
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=ff18d510-c0a9-420f-bc05-2188bbe6344f" /&gt;</description>
      <comments>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,ff18d510-c0a9-420f-bc05-2188bbe6344f.aspx</comments>
      <category>Music</category>
    </item>
    <item>
      <trackback:ping>http://www.bryanrobson.net/DasBlogCe/Trackback.aspx?guid=c39e94f5-b02f-4fa9-b31f-1981612c9837</trackback:ping>
      <pingback:server>http://www.bryanrobson.net/DasBlogCe/pingback.aspx</pingback:server>
      <pingback:target>http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,c39e94f5-b02f-4fa9-b31f-1981612c9837.aspx</pingback:target>
      <dc:creator>Bryan</dc:creator>
      <wfw:comment>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,c39e94f5-b02f-4fa9-b31f-1981612c9837.aspx</wfw:comment>
      <wfw:commentRss>http://www.bryanrobson.net/DasBlogCe/SyndicationService.asmx/GetEntryCommentsRss?guid=c39e94f5-b02f-4fa9-b31f-1981612c9837</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
What is the speed of a meme?
</p>
        <p>
That's the age-old question that Scott Eric Kaufman is trying to answer - <a href="http://acephalous.typepad.com/acephalous/2006/11/measuring_the_s.html">find
the details on his blog here</a>.
</p>
        <p>
Well, ok, it's not exactly an age-old question, but an interesting one none the less,
so if you have a blog, please copy the link and ping Technorati...
</p>
        <p>
(via <a href="http://bitchphd.blogspot.com/2006/11/um-so-whos-going-to-mla.html">Bitch
Ph.D</a>)
</p>
        <img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=c39e94f5-b02f-4fa9-b31f-1981612c9837" />
      </body>
      <title>What is the speed of a meme?</title>
      <guid isPermaLink="false">http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,c39e94f5-b02f-4fa9-b31f-1981612c9837.aspx</guid>
      <link>http://www.bryanrobson.net/DasBlogCe/2006/11/28/What+Is+The+Speed+Of+A+Meme.aspx</link>
      <pubDate>Tue, 28 Nov 2006 11:19:22 GMT</pubDate>
      <description>&lt;p&gt;
What is the speed of a meme?
&lt;/p&gt;
&lt;p&gt;
That's the age-old question that Scott Eric Kaufman is trying to answer - &lt;a href="http://acephalous.typepad.com/acephalous/2006/11/measuring_the_s.html"&gt;find
the details on his blog here&lt;/a&gt;.
&lt;/p&gt;
&lt;p&gt;
Well, ok, it's not exactly an age-old question, but an interesting one none the less,
so if you have a blog, please copy the link and ping Technorati...
&lt;/p&gt;
&lt;p&gt;
(via &lt;a href="http://bitchphd.blogspot.com/2006/11/um-so-whos-going-to-mla.html"&gt;Bitch
Ph.D&lt;/a&gt;)
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=c39e94f5-b02f-4fa9-b31f-1981612c9837" /&gt;</description>
      <comments>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,c39e94f5-b02f-4fa9-b31f-1981612c9837.aspx</comments>
      <category>Science</category>
    </item>
    <item>
      <trackback:ping>http://www.bryanrobson.net/DasBlogCe/Trackback.aspx?guid=9e9ca3e1-759d-4159-a6e7-3c8efc8125f8</trackback:ping>
      <pingback:server>http://www.bryanrobson.net/DasBlogCe/pingback.aspx</pingback:server>
      <pingback:target>http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,9e9ca3e1-759d-4159-a6e7-3c8efc8125f8.aspx</pingback:target>
      <dc:creator>Bryan</dc:creator>
      <wfw:comment>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,9e9ca3e1-759d-4159-a6e7-3c8efc8125f8.aspx</wfw:comment>
      <wfw:commentRss>http://www.bryanrobson.net/DasBlogCe/SyndicationService.asmx/GetEntryCommentsRss?guid=9e9ca3e1-759d-4159-a6e7-3c8efc8125f8</wfw:commentRss>
      <slash:comments>2</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <div class="imagefloatright">
          <img src="http://www.bryanrobson.net/DasBlogCe/content/binary/Orphans_Small.jpg" border="0" />
        </div>
        <p>
I've just finished listening to Tom Wait's new release, the mammoth <a href="http://www.amazon.co.uk/gp/redirect.html?ie=UTF8&amp;location=http%3A%2F%2Fwww.amazon.co.uk%2FOrphans-3CD-Set-Tom-Waits%2Fdp%2FB000INAUZO%2Fsr%3D8-1%2Fqid%3D1164129179%3Fie%3DUTF8%26s%3Dmusic&amp;tag=bryanrobsonne-21&amp;linkCode=ur2&amp;camp=1634&amp;creative=6738">Orphans</a><img src="http://www.assoc-amazon.co.uk/e/ir?t=bryanrobsonne-21&amp;l=ur2&amp;o=2" alt="" style="border: medium none  ! important; margin: 0px ! important;" border="0" height="1" width="1" />.
It's a three-disk set, split in to <i>Brawlers, Bawlers, and Bastards</i>. The first
disc contains 16 tracks of his "full-throated juke joint stomp" (as the sticker on
the front cover says), the second has 20 tracks of ballads, and the third 20 tracks
of the ... odd stuff. The last 2 tracks on <i>Bastards</i> aren't listed, but FreeDB
has them as "Dog Treat", one of his in-between-song stories concerning a 36-inch long
dog snack, and "Missing My Son", another spoken word piece about a nice lady he met
in a convenience store.
</p>
        <p>
In addition to 30 new songs, the tracks include "2:19", "Fannin Street", and "Lord
I've Been Changed", which I'd only heard before on John Hammond's album of Wait's
covers, <a href="http://www.amazon.co.uk/gp/redirect.html?ie=UTF8&amp;location=http%3A%2F%2Fwww.amazon.co.uk%2FWicked-Grin-John-Hammond%2Fdp%2FB000059T5O%2Fsr%3D8-1%2Fqid%3D1164129222%3Fie%3DUTF8%26s%3Dmusic&amp;tag=bryanrobsonne-21&amp;linkCode=ur2&amp;camp=1634&amp;creative=6738">Wicked
Grin</a><img src="http://www.assoc-amazon.co.uk/e/ir?t=bryanrobsonne-21&amp;l=ur2&amp;o=2" alt="" style="border: medium none  ! important; margin: 0px ! important;" border="0" height="1" width="1" />.
There are also B-sides, such as "Buzz Fledderjohn", which was originally on a CD single
from <i>Mule Variations</i>, and the track "Dog Door", originally on Sparklehorse's <a href="http://www.amazon.co.uk/gp/redirect.html?ie=UTF8&amp;location=http%3A%2F%2Fwww.amazon.co.uk%2FIts-Wonderful-Life-Sparklehorse%2Fdp%2FB00005IA02%2Fsr%3D1-3%2Fqid%3D1164129328%3Fie%3DUTF8%26s%3Dmusic&amp;tag=bryanrobsonne-21&amp;linkCode=ur2&amp;camp=1634&amp;creative=6738">It's
A Wonderful Life</a><img src="http://www.assoc-amazon.co.uk/e/ir?t=bryanrobsonne-21&amp;l=ur2&amp;o=2" alt="" style="border: medium none  ! important; margin: 0px ! important;" border="0" height="1" width="1" />.
</p>
        <p>
Since Tom is a rather acquired taste in my experience (which is to say that most of
my friends violently object to my playing any of his stuff in their company), this
definitely isn't a purchase for those who aren't fans, but the first two discs at
least will be joining my other favourite Waits albums in my regular playlists. It's
certainly a hell of a lot better than certain other b-sides and rarity collections
I've got... just wish he was likely to be touring the UK again soon!<br /></p>
        <img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=9e9ca3e1-759d-4159-a6e7-3c8efc8125f8" />
      </body>
      <title>Tom Waits - Orphans</title>
      <guid isPermaLink="false">http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,9e9ca3e1-759d-4159-a6e7-3c8efc8125f8.aspx</guid>
      <link>http://www.bryanrobson.net/DasBlogCe/2006/11/21/Tom+Waits+Orphans.aspx</link>
      <pubDate>Tue, 21 Nov 2006 17:11:17 GMT</pubDate>
      <description>&lt;div class="imagefloatright"&gt;&lt;img src="http://www.bryanrobson.net/DasBlogCe/content/binary/Orphans_Small.jpg" border="0"&gt;
&lt;/div&gt;
&lt;p&gt;
I've just finished listening to Tom Wait's new release, the mammoth &lt;a href="http://www.amazon.co.uk/gp/redirect.html?ie=UTF8&amp;amp;location=http%3A%2F%2Fwww.amazon.co.uk%2FOrphans-3CD-Set-Tom-Waits%2Fdp%2FB000INAUZO%2Fsr%3D8-1%2Fqid%3D1164129179%3Fie%3DUTF8%26s%3Dmusic&amp;amp;tag=bryanrobsonne-21&amp;amp;linkCode=ur2&amp;amp;camp=1634&amp;amp;creative=6738"&gt;Orphans&lt;/a&gt;&lt;img src="http://www.assoc-amazon.co.uk/e/ir?t=bryanrobsonne-21&amp;amp;l=ur2&amp;amp;o=2" alt="" style="border: medium none  ! important; margin: 0px ! important;" border="0" height="1" width="1"&gt;.
It's a three-disk set, split in to &lt;i&gt;Brawlers, Bawlers, and Bastards&lt;/i&gt;. The first
disc contains 16 tracks of his "full-throated juke joint stomp" (as the sticker on
the front cover says), the second has 20 tracks of ballads, and the third 20 tracks
of the ... odd stuff. The last 2 tracks on &lt;i&gt;Bastards&lt;/i&gt; aren't listed, but FreeDB
has them as "Dog Treat", one of his in-between-song stories concerning a 36-inch long
dog snack, and "Missing My Son", another spoken word piece about a nice lady he met
in a convenience store.
&lt;/p&gt;
&lt;p&gt;
In addition to 30 new songs, the tracks include "2:19", "Fannin Street", and "Lord
I've Been Changed", which I'd only heard before on John Hammond's album of Wait's
covers, &lt;a href="http://www.amazon.co.uk/gp/redirect.html?ie=UTF8&amp;amp;location=http%3A%2F%2Fwww.amazon.co.uk%2FWicked-Grin-John-Hammond%2Fdp%2FB000059T5O%2Fsr%3D8-1%2Fqid%3D1164129222%3Fie%3DUTF8%26s%3Dmusic&amp;amp;tag=bryanrobsonne-21&amp;amp;linkCode=ur2&amp;amp;camp=1634&amp;amp;creative=6738"&gt;Wicked
Grin&lt;/a&gt;&lt;img src="http://www.assoc-amazon.co.uk/e/ir?t=bryanrobsonne-21&amp;amp;l=ur2&amp;amp;o=2" alt="" style="border: medium none  ! important; margin: 0px ! important;" border="0" height="1" width="1"&gt;.
There are also B-sides, such as "Buzz Fledderjohn", which was originally on a CD single
from &lt;i&gt;Mule Variations&lt;/i&gt;, and the track "Dog Door", originally on Sparklehorse's &lt;a href="http://www.amazon.co.uk/gp/redirect.html?ie=UTF8&amp;amp;location=http%3A%2F%2Fwww.amazon.co.uk%2FIts-Wonderful-Life-Sparklehorse%2Fdp%2FB00005IA02%2Fsr%3D1-3%2Fqid%3D1164129328%3Fie%3DUTF8%26s%3Dmusic&amp;amp;tag=bryanrobsonne-21&amp;amp;linkCode=ur2&amp;amp;camp=1634&amp;amp;creative=6738"&gt;It's
A Wonderful Life&lt;/a&gt;&lt;img src="http://www.assoc-amazon.co.uk/e/ir?t=bryanrobsonne-21&amp;amp;l=ur2&amp;amp;o=2" alt="" style="border: medium none  ! important; margin: 0px ! important;" border="0" height="1" width="1"&gt;.
&lt;/p&gt;
&lt;p&gt;
Since Tom is a rather acquired taste in my experience (which is to say that most of
my friends violently object to my playing any of his stuff in their company), this
definitely isn't a purchase for those who aren't fans, but the first two discs at
least will be joining my other favourite Waits albums in my regular playlists. It's
certainly a hell of a lot better than certain other b-sides and rarity collections
I've got... just wish he was likely to be touring the UK again soon!&lt;br&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=9e9ca3e1-759d-4159-a6e7-3c8efc8125f8" /&gt;</description>
      <comments>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,9e9ca3e1-759d-4159-a6e7-3c8efc8125f8.aspx</comments>
      <category>Music</category>
    </item>
    <item>
      <trackback:ping>http://www.bryanrobson.net/DasBlogCe/Trackback.aspx?guid=0fd28c15-2be0-4ad3-9166-14eb0d9f0651</trackback:ping>
      <pingback:server>http://www.bryanrobson.net/DasBlogCe/pingback.aspx</pingback:server>
      <pingback:target>http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,0fd28c15-2be0-4ad3-9166-14eb0d9f0651.aspx</pingback:target>
      <dc:creator>Bryan</dc:creator>
      <wfw:comment>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,0fd28c15-2be0-4ad3-9166-14eb0d9f0651.aspx</wfw:comment>
      <wfw:commentRss>http://www.bryanrobson.net/DasBlogCe/SyndicationService.asmx/GetEntryCommentsRss?guid=0fd28c15-2be0-4ad3-9166-14eb0d9f0651</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
From the wonderful <a href="http://xkcd.com/">xkcd</a>...
</p>
        <a href="http://xkcd.com/c179.html">
          <img src="http://imgs.xkcd.com/comics/e_to_the_pi_times_i.png" alt="e to the pi times i" />
        </a>
        <img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=0fd28c15-2be0-4ad3-9166-14eb0d9f0651" />
      </body>
      <title>e to the pi times i</title>
      <guid isPermaLink="false">http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,0fd28c15-2be0-4ad3-9166-14eb0d9f0651.aspx</guid>
      <link>http://www.bryanrobson.net/DasBlogCe/2006/11/08/e+To+The+Pi+Times+I.aspx</link>
      <pubDate>Wed, 08 Nov 2006 13:43:08 GMT</pubDate>
      <description>&lt;p&gt;
From the wonderful &lt;a href="http://xkcd.com/"&gt;xkcd&lt;/a&gt;...
&lt;/p&gt;
&lt;a href="http://xkcd.com/c179.html"&gt;&lt;img src="http://imgs.xkcd.com/comics/e_to_the_pi_times_i.png" alt="e to the pi times i"&gt;&lt;/a&gt;&lt;img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=0fd28c15-2be0-4ad3-9166-14eb0d9f0651" /&gt;</description>
      <comments>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,0fd28c15-2be0-4ad3-9166-14eb0d9f0651.aspx</comments>
      <category>Funny</category>
    </item>
    <item>
      <trackback:ping>http://www.bryanrobson.net/DasBlogCe/Trackback.aspx?guid=255f207e-4054-4cf1-86d5-b11d5f1e4e97</trackback:ping>
      <pingback:server>http://www.bryanrobson.net/DasBlogCe/pingback.aspx</pingback:server>
      <pingback:target>http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,255f207e-4054-4cf1-86d5-b11d5f1e4e97.aspx</pingback:target>
      <dc:creator>Bryan</dc:creator>
      <wfw:comment>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,255f207e-4054-4cf1-86d5-b11d5f1e4e97.aspx</wfw:comment>
      <wfw:commentRss>http://www.bryanrobson.net/DasBlogCe/SyndicationService.asmx/GetEntryCommentsRss?guid=255f207e-4054-4cf1-86d5-b11d5f1e4e97</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <div class="imagefloatright">
          <img src="http://www.bryanrobson.net/DasBlogCe/content/binary/logo_phpBB.gif.jpg" border="0" />
        </div>
        <p>
I really wish I'd been able to make it to the Calexico gig at the Roundhouse on Sunday
- <a href="http://www.musicomh.com/gigs/calexico-5_1106.htm">it sounds like</a> it
was a great gig! At least I saw them earlier this year with Iron &amp; Wine at the
Forum in Kenntish Town. Is it just me, or is the sound at that place always poor?
Calexico sounded ok (they must have a sound engineer who knows their job!), but every
other band I've seen has sounded, quite frankly, lousy. When I saw British Sea Power
it was awfully muddy - I couldn't even pick out the guitar lines, it was just a wash
of sound. Maybe it's my ears, I don't know...
</p>
        <p>
Anyway, the following message has just been posted on the <a href="http://casadecalexico.com/">Calexico
website</a>. While I don't live anywhere near the places they're playing, I still
think it's a good idea to post this as widely as possible. So, dear readers (both
of you), here you go:
</p>
        <br />
        <hr />
        <br />
        <b>Calexico</b>’s seven-date December tour broaches some of the most serious social
issues facing citizens on either side of the US - Mexico border today. Accompanying
them on these dates will be representatives from several organizations including <b><a href="http://www.humaneborders.org/">Humane
Borders</a></b> and <b><a href="http://casadecalexico.com/www.musicforamerica.org">Music
for America</a></b> raising awareness about humanitarian issues stemming from border
and immigration policies. 
<p>
So, the contest, you ask? What of the contest? Well, we’d like for you to help Calexico
spread the news and bring people out to the shows by telling everyone you know about
the events. The following is a list of things you can do to help. Every time you complete
one of the opportunities from the list, you’ll be entered to win two tickets to the
Calexico show nearest you, a copy of <i>World Drifts In (Live at the Barbican)</i> DVD,
and a vintage Calexico tour poster. In other words, the more you do, the more likely
you’ll be to win.
</p><p>
If you don’t live in any of the cities covered by the tour, don’t worry! You can still
enter the contest and participate in spreading the word. See below.
</p><p>
1) Write your local newspaper, radio station and/or television station and tell them
about the event. Ask them if they’d be willing to help by publishing an announcement
about the event to inform your community. Send a copy of the letter to us at calexicocontest@tgrec.com
or<br /><br />
Calexico Contest – Quarterstick Records<br />
PO Box 25542<br />
Chicago, IL 60625
</p><p>
2) Repost this bulletin including a personal message to your friends. Then post a
comment on our myspace page (myspace.com/tgqs) saying that you’ve done so.
</p><p>
3) Post this message on your personal blog (non-myspace blogs) and send the direct
link to calexicocontest@tgrec.com .
</p><p><b>Calexico Tour Dates:</b></p><p>
12/02/06 - Rialto Theatre, Tucson, AZ w/ Annuals<br />
12/03/06 - Launchpad, Albuquerque, NM w/ Annuals<br />
12/04/06 - Orpheum, Flagstaff, AZ w/ Annuals<br />
12/05/06 - The Clubhouse, Tempe, AZ w/ Annuals<br />
12/07/06 - Soho Restaurant, Santa Barbara, CA w/ The Broken West
</p><img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=255f207e-4054-4cf1-86d5-b11d5f1e4e97" /></body>
      <title>Calexico</title>
      <guid isPermaLink="false">http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,255f207e-4054-4cf1-86d5-b11d5f1e4e97.aspx</guid>
      <link>http://www.bryanrobson.net/DasBlogCe/2006/11/08/Calexico.aspx</link>
      <pubDate>Wed, 08 Nov 2006 10:41:05 GMT</pubDate>
      <description>&lt;div class="imagefloatright"&gt;&lt;img src="http://www.bryanrobson.net/DasBlogCe/content/binary/logo_phpBB.gif.jpg" border="0"&gt;
&lt;/div&gt;
&lt;p&gt;
I really wish I'd been able to make it to the Calexico gig at the Roundhouse on Sunday
- &lt;a href="http://www.musicomh.com/gigs/calexico-5_1106.htm"&gt;it sounds like&lt;/a&gt; it
was a great gig! At least I saw them earlier this year with Iron &amp;amp; Wine at the
Forum in Kenntish Town. Is it just me, or is the sound at that place always poor?
Calexico sounded ok (they must have a sound engineer who knows their job!), but every
other band I've seen has sounded, quite frankly, lousy. When I saw British Sea Power
it was awfully muddy - I couldn't even pick out the guitar lines, it was just a wash
of sound. Maybe it's my ears, I don't know...
&lt;/p&gt;
&lt;p&gt;
Anyway, the following message has just been posted on the &lt;a href="http://casadecalexico.com/"&gt;Calexico
website&lt;/a&gt;. While I don't live anywhere near the places they're playing, I still
think it's a good idea to post this as widely as possible. So, dear readers (both
of you), here you go:
&lt;/p&gt;
&lt;br&gt;
&lt;hr&gt;
&lt;br&gt;
&lt;b&gt;Calexico&lt;/b&gt;’s seven-date December tour broaches some of the most serious social
issues facing citizens on either side of the US - Mexico border today. Accompanying
them on these dates will be representatives from several organizations including &lt;b&gt;&lt;a href="http://www.humaneborders.org/"&gt;Humane
Borders&lt;/a&gt;&lt;/b&gt; and &lt;b&gt;&lt;a href="http://casadecalexico.com/www.musicforamerica.org"&gt;Music
for America&lt;/a&gt;&lt;/b&gt; raising awareness about humanitarian issues stemming from border
and immigration policies. 
&lt;p&gt;
So, the contest, you ask? What of the contest? Well, we’d like for you to help Calexico
spread the news and bring people out to the shows by telling everyone you know about
the events. The following is a list of things you can do to help. Every time you complete
one of the opportunities from the list, you’ll be entered to win two tickets to the
Calexico show nearest you, a copy of &lt;i&gt;World Drifts In (Live at the Barbican)&lt;/i&gt; DVD,
and a vintage Calexico tour poster. In other words, the more you do, the more likely
you’ll be to win.
&lt;/p&gt;
&lt;p&gt;
If you don’t live in any of the cities covered by the tour, don’t worry! You can still
enter the contest and participate in spreading the word. See below.
&lt;/p&gt;
&lt;p&gt;
1) Write your local newspaper, radio station and/or television station and tell them
about the event. Ask them if they’d be willing to help by publishing an announcement
about the event to inform your community. Send a copy of the letter to us at calexicocontest@tgrec.com
or&lt;br&gt;
&lt;br&gt;
Calexico Contest – Quarterstick Records&lt;br&gt;
PO Box 25542&lt;br&gt;
Chicago, IL 60625
&lt;/p&gt;
&lt;p&gt;
2) Repost this bulletin including a personal message to your friends. Then post a
comment on our myspace page (myspace.com/tgqs) saying that you’ve done so.
&lt;/p&gt;
&lt;p&gt;
3) Post this message on your personal blog (non-myspace blogs) and send the direct
link to calexicocontest@tgrec.com .
&lt;/p&gt;
&lt;p&gt;
&lt;b&gt;Calexico Tour Dates:&lt;/b&gt;
&lt;/p&gt;
&lt;p&gt;
12/02/06 - Rialto Theatre, Tucson, AZ w/ Annuals&lt;br&gt;
12/03/06 - Launchpad, Albuquerque, NM w/ Annuals&lt;br&gt;
12/04/06 - Orpheum, Flagstaff, AZ w/ Annuals&lt;br&gt;
12/05/06 - The Clubhouse, Tempe, AZ w/ Annuals&lt;br&gt;
12/07/06 - Soho Restaurant, Santa Barbara, CA w/ The Broken West
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=255f207e-4054-4cf1-86d5-b11d5f1e4e97" /&gt;</description>
      <comments>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,255f207e-4054-4cf1-86d5-b11d5f1e4e97.aspx</comments>
      <category>Music</category>
      <category>Politics</category>
    </item>
    <item>
      <trackback:ping>http://www.bryanrobson.net/DasBlogCe/Trackback.aspx?guid=c852456e-aeb6-45f5-81a1-886366b8a128</trackback:ping>
      <pingback:server>http://www.bryanrobson.net/DasBlogCe/pingback.aspx</pingback:server>
      <pingback:target>http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,c852456e-aeb6-45f5-81a1-886366b8a128.aspx</pingback:target>
      <dc:creator>Bryan</dc:creator>
      <wfw:comment>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,c852456e-aeb6-45f5-81a1-886366b8a128.aspx</wfw:comment>
      <wfw:commentRss>http://www.bryanrobson.net/DasBlogCe/SyndicationService.asmx/GetEntryCommentsRss?guid=c852456e-aeb6-45f5-81a1-886366b8a128</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
This was the first time I had visited Koko, the recently refurbished Camden Palace,
and they certainly seem to have done a good job.  It's a great little venue,
and we found a place to stand at the front of the balcony, which gave us a great view
of the stage.  Shame they only have Smiths Smooth to drink!
</p>
        <div class="imagefloatright">
          <img src="http://www.bryanrobson.net/dasblogce/content/binary/mward.jpg" border="0" />
        </div>
        <p>
          <a href="http://www.nekocase.com/">Neko Case</a> and <a href="http://www.mwardmusic.com/">M.
Ward</a> appeared as a double-bill, with each performing a one-hour set, and it was
great to see two of my favourite artists (and two of my favourite albums of this year)
at the same gig.  M. Ward started the evening off with a mesmerising solo performance
on acoustic guitar and piano.  He drew from all of his albums, with <i>Chinese
Translation</i>, <i>Sad Song</i> and his melancholy cover of Bowie's <i>Let's Dance</i> being
particular stand-outs.  I was as amazed as the last time I saw him with how superb
a player he is: you'd swear at times that there were a few of him on stage. 
I don't know how he manages to play both the rhythm and lead parts on an acoustic
at the same time.  He also made good use of looping pedals, laying down rhythm
parts that he then played over (shade of <a href="http://www.raineroftucson.com/">Rainer</a>,
I thought!).  The audience seemed very appreciative; maybe as it was a double
bill plenty of people had come to see him as much as Neko.
</p>
        <div class="imagefloatright">
          <img src="http://www.bryanrobson.net/DasBlogCe/content/binary/Neko.jpg" border="0" />
        </div>
        <p>
Neko also performed material from all her albums bar <i>The Virginian</i>, including <i>Canadian
Amp</i>, her tour-only CD (which I finally managed to get hold of at the gig), from
which she played <i>Hex </i>and <i>Knock Loud</i>.  She also included a magical
cover of Dylan's <i>Buckets of Rain</i>, though I was mildly disappointed that she
didn't do <i>Look For Me (I'll Be Around)</i>, which is one of my favourite tracks
from <i>Blacklisted</i>.  Still, the ever amazing <i>Furnace Room Lullaby</i> made
up for any songs I may have wished she'd played.
</p>
        <p>
Neko's band included Kelly Hogan on backing vocals, and John Rauhouse provided his
usual magic on pedal steel, banjo and guitar.
</p>
        <p>
Songs I remember hearing included (in no particular order): Furnace Room Lullaby,
Hex, Knock Loud, Maybe Sparrow, Star Witness, A Widow's Toast, Dirty Knife, That Teenage
Feeling, Set Out Running, Deep Red Bells, I Wish I Was The Moon, Favorite.
</p>
        <img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=c852456e-aeb6-45f5-81a1-886366b8a128" />
      </body>
      <title>Neko Case &amp; M. Ward, Koko, Camden (2006-11-01)</title>
      <guid isPermaLink="false">http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,c852456e-aeb6-45f5-81a1-886366b8a128.aspx</guid>
      <link>http://www.bryanrobson.net/DasBlogCe/2006/11/03/Neko+Case+M+Ward+Koko+Camden+20061101.aspx</link>
      <pubDate>Fri, 03 Nov 2006 14:03:58 GMT</pubDate>
      <description>&lt;p&gt;
This was the first time I had visited Koko, the recently refurbished Camden Palace,
and they certainly seem to have done a good job.&amp;nbsp; It's a great little venue,
and we found a place to stand at the front of the balcony, which gave us a great view
of the stage.&amp;nbsp; Shame they only have Smiths Smooth to drink!
&lt;/p&gt;
&lt;div class="imagefloatright"&gt;&lt;img src="http://www.bryanrobson.net/dasblogce/content/binary/mward.jpg" border="0"&gt;
&lt;/div&gt;
&lt;p&gt;
&lt;a href="http://www.nekocase.com/"&gt;Neko Case&lt;/a&gt; and &lt;a href="http://www.mwardmusic.com/"&gt;M.
Ward&lt;/a&gt; appeared as a double-bill, with each performing a one-hour set, and it was
great to see two of my favourite artists (and two of my favourite albums of this year)
at the same gig.&amp;nbsp; M. Ward started the evening off with a mesmerising solo performance
on acoustic guitar and piano.&amp;nbsp; He drew from all of his albums, with &lt;i&gt;Chinese
Translation&lt;/i&gt;, &lt;i&gt;Sad Song&lt;/i&gt; and his melancholy cover of Bowie's &lt;i&gt;Let's Dance&lt;/i&gt; being
particular stand-outs.&amp;nbsp; I was as amazed as the last time I saw him with how superb
a player he is: you'd swear at times that there were a few of him on stage.&amp;nbsp;
I don't know how he manages to play both the rhythm and lead parts on an acoustic
at the same time.&amp;nbsp; He also made good use of looping pedals, laying down rhythm
parts that he then played over (shade of &lt;a href="http://www.raineroftucson.com/"&gt;Rainer&lt;/a&gt;,
I thought!).&amp;nbsp; The audience seemed very appreciative; maybe as it was a double
bill plenty of people had come to see him as much as Neko.
&lt;/p&gt;
&lt;div class="imagefloatright"&gt;&lt;img src="http://www.bryanrobson.net/DasBlogCe/content/binary/Neko.jpg" border="0"&gt;
&lt;/div&gt;
&lt;p&gt;
Neko also performed material from all her albums bar &lt;i&gt;The Virginian&lt;/i&gt;, including &lt;i&gt;Canadian
Amp&lt;/i&gt;, her tour-only CD (which I finally managed to get hold of at the gig), from
which she played &lt;i&gt;Hex &lt;/i&gt;and &lt;i&gt;Knock Loud&lt;/i&gt;.&amp;nbsp; She also included a magical
cover of Dylan's &lt;i&gt;Buckets of Rain&lt;/i&gt;, though I was mildly disappointed that she
didn't do &lt;i&gt;Look For Me (I'll Be Around)&lt;/i&gt;, which is one of my favourite tracks
from &lt;i&gt;Blacklisted&lt;/i&gt;.&amp;nbsp; Still, the ever amazing &lt;i&gt;Furnace Room Lullaby&lt;/i&gt; made
up for any songs I may have wished she'd played.
&lt;/p&gt;
&lt;p&gt;
Neko's band included Kelly Hogan on backing vocals, and John Rauhouse provided his
usual magic on pedal steel, banjo and guitar.
&lt;/p&gt;
&lt;p&gt;
Songs I remember hearing included (in no particular order): Furnace Room Lullaby,
Hex, Knock Loud, Maybe Sparrow, Star Witness, A Widow's Toast, Dirty Knife, That Teenage
Feeling, Set Out Running, Deep Red Bells, I Wish I Was The Moon, Favorite.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=c852456e-aeb6-45f5-81a1-886366b8a128" /&gt;</description>
      <comments>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,c852456e-aeb6-45f5-81a1-886366b8a128.aspx</comments>
      <category>Music</category>
    </item>
    <item>
      <trackback:ping>http://www.bryanrobson.net/DasBlogCe/Trackback.aspx?guid=2675cc7b-0157-4288-8aad-7144fd42a334</trackback:ping>
      <pingback:server>http://www.bryanrobson.net/DasBlogCe/pingback.aspx</pingback:server>
      <pingback:target>http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,2675cc7b-0157-4288-8aad-7144fd42a334.aspx</pingback:target>
      <dc:creator>Bryan</dc:creator>
      <wfw:comment>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,2675cc7b-0157-4288-8aad-7144fd42a334.aspx</wfw:comment>
      <wfw:commentRss>http://www.bryanrobson.net/DasBlogCe/SyndicationService.asmx/GetEntryCommentsRss?guid=2675cc7b-0157-4288-8aad-7144fd42a334</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Lambchop were, as I hoped, superb on Sunday evening. My companions were somewhat more
sceptical, however!
</p>
        <p>
The evening opened just after 7:30pm with a 15-20 minute set from <i>Hands Off Cuba</i>,
with William Tyler from the 'Chop joining them on guitar. It was an interesting piece,
and I think it was just the one piece, though split into a few sections. It reminded
me off Pink Floyd in places, with long sustained chords and simple, yet elegant, chiming
guitar parts. It made a interesting and appropriate introduction to the main set.
</p>
        <p>
The rest of Lambchop ambled on stage at around 7:50pm, without a break between the
opening set and their own. Kurt sat centre stage (in his hat, as ever), surrounded
by 5 other members of Lambchop and the 2 guys from Hands Off Cuba. I should mention
that Tony Crow referred to Reading as "the city of romance". Was their previous gig
in Slough?
</p>
        <p>
The set drew from at least the last 4 albums (or 5, depending how you count the <i>Aw
C'mon</i>/<i>No You C'mon</i> pair), certainly going as far back as <i>Nixon</i>,
from which they performed a beautiful version of <i>Nashville Parent</i>, but with
the body of the set coming from their recent album, <i>Damaged</i>.
</p>
        <p>
Even my sceptical companions seemed won over by the musicianship on stage, with Tony
Crow on piano seeming to be the bedrock on which the sound was built. William Tyler's
guitar added strange, ghostly, at times ethereal sounds, while at others I could have
sworn that Paul Niehaus was on stage with them playing his pedal steel. Kurt sounded
in fine form, his rumbling baritone crystal clear, at times cracking with the emotion
of his minutely observed songs.
</p>
        <p>
The audience seemed rapt by the performance, Kurt remarking towards the end of the
show that we'd been the quietest audience they had played to so far on this tour.
I could certainly understand why, as I didn't want to miss a single note...
</p>
        <p>
Tour only CDs available: <i>Hands Off Cuba</i> - seems to be the opening set.<br /><i>Lambchop</i> - Succulence, Live 08 09 06 - a recording of this tour, from a radio
broadcast in, if memory serves, Austria.
</p>
        <img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=2675cc7b-0157-4288-8aad-7144fd42a334" />
      </body>
      <title>Lambchop, Concert Hall, Reading, 2006-10-29</title>
      <guid isPermaLink="false">http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,2675cc7b-0157-4288-8aad-7144fd42a334.aspx</guid>
      <link>http://www.bryanrobson.net/DasBlogCe/2006/11/01/Lambchop+Concert+Hall+Reading+20061029.aspx</link>
      <pubDate>Wed, 01 Nov 2006 15:23:39 GMT</pubDate>
      <description>&lt;p&gt;
Lambchop were, as I hoped, superb on Sunday evening. My companions were somewhat more
sceptical, however!
&lt;/p&gt;
&lt;p&gt;
The evening opened just after 7:30pm with a 15-20 minute set from &lt;i&gt;Hands Off Cuba&lt;/i&gt;,
with William Tyler from the 'Chop joining them on guitar. It was an interesting piece,
and I think it was just the one piece, though split into a few sections. It reminded
me off Pink Floyd in places, with long sustained chords and simple, yet elegant, chiming
guitar parts. It made a interesting and appropriate introduction to the main set.
&lt;/p&gt;
&lt;p&gt;
The rest of Lambchop ambled on stage at around 7:50pm, without a break between the
opening set and their own. Kurt sat centre stage (in his hat, as ever), surrounded
by 5 other members of Lambchop and the 2 guys from Hands Off Cuba. I should mention
that Tony Crow referred to Reading as "the city of romance". Was their previous gig
in Slough?
&lt;/p&gt;
&lt;p&gt;
The set drew from at least the last 4 albums (or 5, depending how you count the &lt;i&gt;Aw
C'mon&lt;/i&gt;/&lt;i&gt;No You C'mon&lt;/i&gt; pair), certainly going as far back as &lt;i&gt;Nixon&lt;/i&gt;,
from which they performed a beautiful version of &lt;i&gt;Nashville Parent&lt;/i&gt;, but with
the body of the set coming from their recent album, &lt;i&gt;Damaged&lt;/i&gt;.
&lt;/p&gt;
&lt;p&gt;
Even my sceptical companions seemed won over by the musicianship on stage, with Tony
Crow on piano seeming to be the bedrock on which the sound was built. William Tyler's
guitar added strange, ghostly, at times ethereal sounds, while at others I could have
sworn that Paul Niehaus was on stage with them playing his pedal steel. Kurt sounded
in fine form, his rumbling baritone crystal clear, at times cracking with the emotion
of his minutely observed songs.
&lt;/p&gt;
&lt;p&gt;
The audience seemed rapt by the performance, Kurt remarking towards the end of the
show that we'd been the quietest audience they had played to so far on this tour.
I could certainly understand why, as I didn't want to miss a single note...
&lt;/p&gt;
&lt;p&gt;
Tour only CDs available: &lt;i&gt;Hands Off Cuba&lt;/i&gt; - seems to be the opening set.&lt;br /&gt;
&lt;i&gt;Lambchop&lt;/i&gt; - Succulence, Live 08 09 06 - a recording of this tour, from a radio
broadcast in, if memory serves, Austria.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=2675cc7b-0157-4288-8aad-7144fd42a334" /&gt;</description>
      <comments>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,2675cc7b-0157-4288-8aad-7144fd42a334.aspx</comments>
      <category>Music</category>
    </item>
    <item>
      <trackback:ping>http://www.bryanrobson.net/DasBlogCe/Trackback.aspx?guid=426620ad-96bb-4be6-992a-696a8e262d1e</trackback:ping>
      <pingback:server>http://www.bryanrobson.net/DasBlogCe/pingback.aspx</pingback:server>
      <pingback:target>http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,426620ad-96bb-4be6-992a-696a8e262d1e.aspx</pingback:target>
      <dc:creator>Bryan</dc:creator>
      <wfw:comment>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,426620ad-96bb-4be6-992a-696a8e262d1e.aspx</wfw:comment>
      <wfw:commentRss>http://www.bryanrobson.net/DasBlogCe/SyndicationService.asmx/GetEntryCommentsRss?guid=426620ad-96bb-4be6-992a-696a8e262d1e</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <div class="imagefloatright">
          <img src="http://www.bryanrobson.net/DasBlogCe/content/binary/lambchop2.jpg" border="0" />
        </div>
        <p>
I'll be seeing <a href="http://www.lambchop.net/">Lambchop</a> on Sunday at the <a href="http://www.readingarts.com/concerthall/event.asp?id=SXAF1B-A7812AB6">Concert
Hall</a> in Reading. The last time I saw them was a wonderful night at the Barbican
in London when they played their soundtrack to <a href="http://www.imdb.com/title/tt0018455/">Sunrise:
A Song of Two Humans</a>, the 1927 silent film by F. W. Murnau. No movies this time,
just selections from their latest disc, <i>Damaged</i>.
</p>
        <a href="http://www.amazon.co.uk/gp/product/B000GIWRCU?ie=UTF8&amp;tag=bryanrobsonne-21&amp;linkCode=as2&amp;camp=1634&amp;creative=6738&amp;creativeASIN=B000GIWRCU">
          <img src="http://images.amazon.com/images/P/B000GIWRCU.01._AA_SCMZZZZZZZ_V59058972_.jpg" border="0" />
        </a>
        <img src="http://www.assoc-amazon.co.uk/e/ir?t=bryanrobsonne-21&amp;l=as2&amp;o=2&amp;a=B000GIWRCU" alt="" style="border: medium none  ! important; margin: 0px ! important;" border="0" height="1" width="1" />
        <img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=426620ad-96bb-4be6-992a-696a8e262d1e" />
      </body>
      <title>Lambchop</title>
      <guid isPermaLink="false">http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,426620ad-96bb-4be6-992a-696a8e262d1e.aspx</guid>
      <link>http://www.bryanrobson.net/DasBlogCe/2006/10/25/Lambchop.aspx</link>
      <pubDate>Wed, 25 Oct 2006 11:32:58 GMT</pubDate>
      <description>&lt;div class="imagefloatright"&gt;&lt;img src="http://www.bryanrobson.net/DasBlogCe/content/binary/lambchop2.jpg" border="0"&gt;
&lt;/div&gt;
&lt;p&gt;
I'll be seeing &lt;a href="http://www.lambchop.net/"&gt;Lambchop&lt;/a&gt; on Sunday at the &lt;a href="http://www.readingarts.com/concerthall/event.asp?id=SXAF1B-A7812AB6"&gt;Concert
Hall&lt;/a&gt; in Reading. The last time I saw them was a wonderful night at the Barbican
in London when they played their soundtrack to &lt;a href="http://www.imdb.com/title/tt0018455/"&gt;Sunrise:
A Song of Two Humans&lt;/a&gt;, the 1927 silent film by F. W. Murnau. No movies this time,
just selections from their latest disc, &lt;i&gt;Damaged&lt;/i&gt;.
&lt;/p&gt;
&lt;a href="http://www.amazon.co.uk/gp/product/B000GIWRCU?ie=UTF8&amp;amp;tag=bryanrobsonne-21&amp;amp;linkCode=as2&amp;amp;camp=1634&amp;amp;creative=6738&amp;amp;creativeASIN=B000GIWRCU"&gt;&lt;img src="http://images.amazon.com/images/P/B000GIWRCU.01._AA_SCMZZZZZZZ_V59058972_.jpg" border="0"&gt;&lt;/a&gt;&lt;img src="http://www.assoc-amazon.co.uk/e/ir?t=bryanrobsonne-21&amp;amp;l=as2&amp;amp;o=2&amp;amp;a=B000GIWRCU" alt="" style="border: medium none  ! important; margin: 0px ! important;" border="0" height="1" width="1"&gt;&lt;img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=426620ad-96bb-4be6-992a-696a8e262d1e" /&gt;</description>
      <comments>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,426620ad-96bb-4be6-992a-696a8e262d1e.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://www.bryanrobson.net/DasBlogCe/Trackback.aspx?guid=a6007302-8266-4d3f-b46d-d255611e5e0f</trackback:ping>
      <pingback:server>http://www.bryanrobson.net/DasBlogCe/pingback.aspx</pingback:server>
      <pingback:target>http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,a6007302-8266-4d3f-b46d-d255611e5e0f.aspx</pingback:target>
      <dc:creator>Bryan</dc:creator>
      <wfw:comment>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,a6007302-8266-4d3f-b46d-d255611e5e0f.aspx</wfw:comment>
      <wfw:commentRss>http://www.bryanrobson.net/DasBlogCe/SyndicationService.asmx/GetEntryCommentsRss?guid=a6007302-8266-4d3f-b46d-d255611e5e0f</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
I've been very slow to get around to posting (it's almost a month!), but that's because
I was having trouble logging in, and in the end had to FTP a few files to alter the
security settings for long enough that I could reset the password. Anyway, in the
mean time I've found out that I would be very unusual in the US:
</p>
        <div style="font-family: Verdana,Arial,Helvetica,sans-serif;">
          <br />
          <table style="font-family: Verdana,Arial,Helvetica,sans-serif;" bgcolor="#ffffff" border="0" cellpadding="1" cellspacing="0" width="350">
            <tbody>
              <tr>
                <td style="text-align: center; font-size: 16px; background-color: rgb(0, 102, 179); color: white;">
HowManyOfMe.com</td>
              </tr>
              <tr>
                <td style="border: 1px solid black; text-align: center; font-size: 14px; background-color: white;">
                  <table border="0" cellpadding="0" cellspacing="0" width="100%">
                    <tbody>
                      <tr>
                        <td style="text-align: center; padding-top: 2px; background-color: white;" width="120">
                          <a href="http://howmanyofme.com" style="text-decoration: none;">
                            <img src="http://extimg.howmanyofme.com/extimages/howmany-logo.png" alt="Logo" style="border: 1px none black;" height="100" width="100" />
                          </a>
                        </td>
                        <td style="text-align: center; font-size: 16px; background-color: white;">
                          <span style="color: black;">There are:</span>
                          <br />
                          <span style="color: red; font-weight: bold;">8</span>
                          <br />
                          <span style="color: black;">people with my name<br />
in the U.S.A.</span>
                          <br />
                        </td>
                      </tr>
                    </tbody>
                  </table>
                  <a style="color: rgb(0, 102, 179); font-weight: bold; line-height: 180%; text-decoration: underline;" href="http://howmanyofme.com">How
many have your name?</a>
                </td>
              </tr>
            </tbody>
          </table>
          <br />
        </div>
        <div class="imagefloatright">
          <a href="http://www.amazon.co.uk/gp/product/B000HDR9RC?ie=UTF8&amp;tag=bryanrobsonne-21&amp;linkCode=as2&amp;camp=1634&amp;creative=6738&amp;creativeASIN=B000HDR9RC">
            <img src="http://images.amazon.com/images/P/B000HDR9RC.01._AA_SCMZZZZZZZ_V41130616_.jpg" border="0" />
          </a>
          <img src="http://www.assoc-amazon.co.uk/e/ir?t=bryanrobsonne-21&amp;l=as2&amp;o=2&amp;a=B000HDR9RC" alt="" style="border: medium none  ! important; margin: 0px ! important;" border="0" height="1" width="1" />
          <br />
          <br />
          <a href="http://www.amazon.co.uk/gp/product/B000H1R104?ie=UTF8&amp;tag=bryanrobsonne-21&amp;linkCode=as2&amp;camp=1634&amp;creative=6738&amp;creativeASIN=B000H1R104">
            <img src="http://images.amazon.com/images/P/B000H1R104.01._AA_SCMZZZZZZZ_V41784583_.jpg" border="0" />
          </a>
          <img src="http://www.assoc-amazon.co.uk/e/ir?t=bryanrobsonne-21&amp;l=as2&amp;o=2&amp;a=B000H1R104" alt="" style="border: medium none  ! important; margin: 0px ! important;" border="0" height="1" width="1" />
        </div>
        <p>
So, what else is new? Well, I'm waiting for the new live DVD by the wonderful, magnificent,
and thoroughly amazing <a href="http://www.nekocase.com/">Neko Case</a> to arrive.
It's from her 2003 set at Austin City Limits, of which I've previously found an audio
recording on (probably) <a href="http://www.dimeadozen.org/">DimeADozen</a>, and is
a great set. Looking forward to seeing her on Wednesday next week at Koko in London,
where she'll be joined by <a href="http://www.mwardmusic.com/">M. Ward </a> (his latest
CD, <a href="http://www.amazon.co.uk/gp/product/B000H1R104?ie=UTF8&amp;tag=bryanrobsonne-21&amp;linkCode=as2&amp;camp=1634&amp;creative=6738&amp;creativeASIN=B000H1R104">Post
War</a><img src="http://www.assoc-amazon.co.uk/e/ir?t=bryanrobsonne-21&amp;l=as2&amp;o=2&amp;a=B000H1R104" alt="" style="border: medium none  ! important; margin: 0px ! important;" border="0" height="1" width="1" />,
is also great).
</p>
        <p>
So, Sparklehorse: a great set. The support (<a href="http://www.smdge.com/">Smdge</a>)
weren't too wonderful, I thought - a mix of some electronica-ish numbers, and wannabe-Coldplay-style-things
- but they weren't too offensive, either. But never mind, I was stood at the bar so
the overpriced Fosters (is there any other kind?) kept me going until Mr. Linkous
and his band took the stage.
</p>
        <p>
Since it's now a couple of weeks since the gig, I can't remember which songs they
played (but the review on the <a href="http://www.bbc.co.uk/berkshire/content/articles/2006/10/02/sparklehorse_review_feature.shtml">BBC
Berkshire website</a> lists them (reproduced below), but the set drew from all 4 of
their albums. No <i>Piano Fire</i>, though, which was a disappointment, but a good
mix of the slower numbers and the fuzzy-guitar rockers.
</p>
Set list: 1. Gold Day 2. Spirit Ditch 3. Apple Bed 4. Hammering The Cramps 5. Painbirds
6. Saturday 7. Weird Sisters 8. Morning Hollow 9. Eyepennies 10. Ghost In The Sky
11. Sad And Beautiful World 12. Someday I Will Treat You Good *First encore* 13. Don't
Take My Sunshine Away 14. Happy Man *Second encore* 15. Homecoming Queen <img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=a6007302-8266-4d3f-b46d-d255611e5e0f" /></body>
      <title>Slow posting</title>
      <guid isPermaLink="false">http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,a6007302-8266-4d3f-b46d-d255611e5e0f.aspx</guid>
      <link>http://www.bryanrobson.net/DasBlogCe/2006/10/25/Slow+Posting.aspx</link>
      <pubDate>Wed, 25 Oct 2006 10:57:53 GMT</pubDate>
      <description>&lt;p&gt;
I've been very slow to get around to posting (it's almost a month!), but that's because
I was having trouble logging in, and in the end had to FTP a few files to alter the
security settings for long enough that I could reset the password. Anyway, in the
mean time I've found out that I would be very unusual in the US:
&lt;/p&gt;
&lt;div style="font-family: Verdana,Arial,Helvetica,sans-serif;"&gt;
&lt;br&gt;
&lt;table style="font-family: Verdana,Arial,Helvetica,sans-serif;" bgcolor="#ffffff" border="0" cellpadding="1" cellspacing="0" width="350"&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td style="text-align: center; font-size: 16px; background-color: rgb(0, 102, 179); color: white;"&gt;
HowManyOfMe.com&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style="border: 1px solid black; text-align: center; font-size: 14px; background-color: white;"&gt;
&lt;table border="0" cellpadding="0" cellspacing="0" width="100%"&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td style="text-align: center; padding-top: 2px; background-color: white;" width="120"&gt;
&lt;a href="http://howmanyofme.com" style="text-decoration: none;"&gt;&lt;img src="http://extimg.howmanyofme.com/extimages/howmany-logo.png" alt="Logo" style="border: 1px none black;" height="100" width="100"&gt;&lt;/a&gt;&lt;/td&gt;
&lt;td style="text-align: center; font-size: 16px; background-color: white;"&gt;
&lt;span style="color: black;"&gt;There are:&lt;/span&gt;
&lt;br&gt;
&lt;span style="color: red; font-weight: bold;"&gt;8&lt;/span&gt;
&lt;br&gt;
&lt;span style="color: black;"&gt;people with my name&lt;br&gt;
in the U.S.A.&lt;/span&gt;
&lt;br&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;a style="color: rgb(0, 102, 179); font-weight: bold; line-height: 180%; text-decoration: underline;" href="http://howmanyofme.com"&gt;How
many have your name?&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;br&gt;
&lt;/div&gt;
&lt;div class="imagefloatright"&gt;&lt;a href="http://www.amazon.co.uk/gp/product/B000HDR9RC?ie=UTF8&amp;amp;tag=bryanrobsonne-21&amp;amp;linkCode=as2&amp;amp;camp=1634&amp;amp;creative=6738&amp;amp;creativeASIN=B000HDR9RC"&gt;&lt;img src="http://images.amazon.com/images/P/B000HDR9RC.01._AA_SCMZZZZZZZ_V41130616_.jpg" border="0"&gt;&lt;/a&gt;&lt;img src="http://www.assoc-amazon.co.uk/e/ir?t=bryanrobsonne-21&amp;amp;l=as2&amp;amp;o=2&amp;amp;a=B000HDR9RC" alt="" style="border: medium none  ! important; margin: 0px ! important;" border="0" height="1" width="1"&gt; 
&lt;br&gt;
&lt;br&gt;
&lt;a href="http://www.amazon.co.uk/gp/product/B000H1R104?ie=UTF8&amp;amp;tag=bryanrobsonne-21&amp;amp;linkCode=as2&amp;amp;camp=1634&amp;amp;creative=6738&amp;amp;creativeASIN=B000H1R104"&gt;&lt;img src="http://images.amazon.com/images/P/B000H1R104.01._AA_SCMZZZZZZZ_V41784583_.jpg" border="0"&gt;&lt;/a&gt;&lt;img src="http://www.assoc-amazon.co.uk/e/ir?t=bryanrobsonne-21&amp;amp;l=as2&amp;amp;o=2&amp;amp;a=B000H1R104" alt="" style="border: medium none  ! important; margin: 0px ! important;" border="0" height="1" width="1"&gt;
&lt;/div&gt;
&lt;p&gt;
So, what else is new? Well, I'm waiting for the new live DVD by the wonderful, magnificent,
and thoroughly amazing &lt;a href="http://www.nekocase.com/"&gt;Neko Case&lt;/a&gt; to arrive.
It's from her 2003 set at Austin City Limits, of which I've previously found an audio
recording on (probably) &lt;a href="http://www.dimeadozen.org/"&gt;DimeADozen&lt;/a&gt;, and is
a great set. Looking forward to seeing her on Wednesday next week at Koko in London,
where she'll be joined by &lt;a href="http://www.mwardmusic.com/"&gt;M. Ward &lt;/a&gt; (his latest
CD, &lt;a href="http://www.amazon.co.uk/gp/product/B000H1R104?ie=UTF8&amp;amp;tag=bryanrobsonne-21&amp;amp;linkCode=as2&amp;amp;camp=1634&amp;amp;creative=6738&amp;amp;creativeASIN=B000H1R104"&gt;Post
War&lt;/a&gt;&lt;img src="http://www.assoc-amazon.co.uk/e/ir?t=bryanrobsonne-21&amp;amp;l=as2&amp;amp;o=2&amp;amp;a=B000H1R104" alt="" style="border: medium none  ! important; margin: 0px ! important;" border="0" height="1" width="1"&gt;,
is also great).
&lt;/p&gt;
&lt;p&gt;
So, Sparklehorse: a great set. The support (&lt;a href="http://www.smdge.com/"&gt;Smdge&lt;/a&gt;)
weren't too wonderful, I thought - a mix of some electronica-ish numbers, and wannabe-Coldplay-style-things
- but they weren't too offensive, either. But never mind, I was stood at the bar so
the overpriced Fosters (is there any other kind?) kept me going until Mr. Linkous
and his band took the stage.
&lt;/p&gt;
&lt;p&gt;
Since it's now a couple of weeks since the gig, I can't remember which songs they
played (but the review on the &lt;a href="http://www.bbc.co.uk/berkshire/content/articles/2006/10/02/sparklehorse_review_feature.shtml"&gt;BBC
Berkshire website&lt;/a&gt; lists them (reproduced below), but the set drew from all 4 of
their albums. No &lt;i&gt;Piano Fire&lt;/i&gt;, though, which was a disappointment, but a good
mix of the slower numbers and the fuzzy-guitar rockers.
&lt;/p&gt;
Set list: 1. Gold Day 2. Spirit Ditch 3. Apple Bed 4. Hammering The Cramps 5. Painbirds
6. Saturday 7. Weird Sisters 8. Morning Hollow 9. Eyepennies 10. Ghost In The Sky
11. Sad And Beautiful World 12. Someday I Will Treat You Good *First encore* 13. Don't
Take My Sunshine Away 14. Happy Man *Second encore* 15. Homecoming Queen &lt;img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=a6007302-8266-4d3f-b46d-d255611e5e0f" /&gt;</description>
      <comments>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,a6007302-8266-4d3f-b46d-d255611e5e0f.aspx</comments>
      <category>Music</category>
    </item>
    <item>
      <trackback:ping>http://www.bryanrobson.net/DasBlogCe/Trackback.aspx?guid=1dcbc5a0-545c-4736-a771-12102a400e5f</trackback:ping>
      <pingback:server>http://www.bryanrobson.net/DasBlogCe/pingback.aspx</pingback:server>
      <pingback:target>http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,1dcbc5a0-545c-4736-a771-12102a400e5f.aspx</pingback:target>
      <dc:creator>Bryan</dc:creator>
      <wfw:comment>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,1dcbc5a0-545c-4736-a771-12102a400e5f.aspx</wfw:comment>
      <wfw:commentRss>http://www.bryanrobson.net/DasBlogCe/SyndicationService.asmx/GetEntryCommentsRss?guid=1dcbc5a0-545c-4736-a771-12102a400e5f</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <div class="imagefloatright">
          <a href="http://www.amazon.co.uk/gp/product/B000GLKP9Y?ie=UTF8&amp;tag=bryanrobsonne-21&amp;linkCode=as2&amp;camp=1634&amp;creative=6738&amp;creativeASIN=B000GLKP9Y">
            <img src="http://images.amazon.com/images/P/B000GLKP9Y.01._AA_SCMZZZZZZZ_V40234357_.jpg" border="0" />
          </a>
          <img src="http://www.assoc-amazon.co.uk/e/ir?t=bryanrobsonne-21&amp;l=as2&amp;o=2&amp;a=B000GLKP9Y" alt="" style="border: medium none  ! important; margin: 0px ! important;" border="0" height="1" width="1" />
          <br />
          <br />
          <img src="http://www.bryanrobson.net/DasBlogCe/content/binary/sprkhrs.jpg" alt="Mark Linkous of Sparklehorse" border="0" />
        </div>
        <p>
Tomorrow I'm going to see <a href="http://www.sparklehorse.com/">Sparklehorse</a>,
at the <a href="http://www.readingfez.com/">Fez Club</a> in Reading. I'm really looking
forward to this gig, as their new album, <a href="http://www.amazon.co.uk/gp/redirect.html?ie=UTF8&amp;location=http%3A%2F%2Fwww.amazon.co.uk%2Fgp%2Fexplorer%2FB000GLKP9Y%2F2%2Fref%3Dpd%5Flpo%5Fase%3F&amp;tag=bryanrobsonne-21&amp;linkCode=ur2&amp;camp=1634&amp;creative=6738"><i>Dreamt
for Light Years in the Belly of a Mountain</i></a><img src="http://www.assoc-amazon.co.uk/e/ir?t=bryanrobsonne-21&amp;l=ur2&amp;o=2" alt="" style="border: medium none  ! important; margin: 0px ! important;" border="0" height="1" width="1" /> is
a superb disc - a very worthy follow-up to <a href="http://www.amazon.co.uk/gp/redirect.html?ie=UTF8&amp;location=http%3A%2F%2Fwww.amazon.co.uk%2FIts-Wonderful-Life-Sparklehorse%2Fdp%2FB00005IA02%2Fref%3Dpd%5Fsxp%5Fgrid%5Fi%5F1%5F0%3Fie%3DUTF8&amp;tag=bryanrobsonne-21&amp;linkCode=ur2&amp;camp=1634&amp;creative=6738"><i>It's
A Wonderful Life</i></a><img src="http://www.assoc-amazon.co.uk/e/ir?t=bryanrobsonne-21&amp;l=ur2&amp;o=2" alt="" style="border: medium none  ! important; margin: 0px ! important;" border="0" height="1" width="1" />.
</p>
        <p>
I've never seen Sparklehorse as a band before, but Mark Linkous was one of the guests
at what is one of my favourite gigs: <i>Beyond Nashville</i> at the Barbican in 2001.
That gig was hosted by <a href="http://www.howegelb.com/">Howe Gelb</a> of <a href="http://www.giantsand.com/">Giant
Sand</a>, and in addition to Giant Sand and Mark Linkous, it included appearances
by Kurt Wagner of <a href="http://www.lambchop.net/">Lambchop</a>, P J Harvey, Evan
Dando, Vic Chesnutt, and the John Parrish Big Band. A full set list can be found on
the Giant Sand website, <a href="http://www.sa-wa-ro.com/GS-Live/setlists-2001/03nov01.htm">here</a>.
That show somehow went on to be voted the best live show of the year for 2001 by "Time
Out" magazine.
</p>
        <img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=1dcbc5a0-545c-4736-a771-12102a400e5f" />
      </body>
      <title>Sparklehorse</title>
      <guid isPermaLink="false">http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,1dcbc5a0-545c-4736-a771-12102a400e5f.aspx</guid>
      <link>http://www.bryanrobson.net/DasBlogCe/2006/09/29/Sparklehorse.aspx</link>
      <pubDate>Fri, 29 Sep 2006 12:33:41 GMT</pubDate>
      <description>&lt;div class="imagefloatright"&gt;&lt;a href="http://www.amazon.co.uk/gp/product/B000GLKP9Y?ie=UTF8&amp;amp;tag=bryanrobsonne-21&amp;amp;linkCode=as2&amp;amp;camp=1634&amp;amp;creative=6738&amp;amp;creativeASIN=B000GLKP9Y"&gt;&lt;img src="http://images.amazon.com/images/P/B000GLKP9Y.01._AA_SCMZZZZZZZ_V40234357_.jpg" border="0"&gt;&lt;/a&gt;&lt;img src="http://www.assoc-amazon.co.uk/e/ir?t=bryanrobsonne-21&amp;amp;l=as2&amp;amp;o=2&amp;amp;a=B000GLKP9Y" alt="" style="border: medium none  ! important; margin: 0px ! important;" border="0" height="1" width="1"&gt;
&lt;br&gt;
&lt;br&gt;
&lt;img src="http://www.bryanrobson.net/DasBlogCe/content/binary/sprkhrs.jpg" alt="Mark Linkous of Sparklehorse" border="0"&gt;
&lt;/div&gt;
&lt;p&gt;
Tomorrow I'm going to see &lt;a href="http://www.sparklehorse.com/"&gt;Sparklehorse&lt;/a&gt;,
at the &lt;a href="http://www.readingfez.com/"&gt;Fez Club&lt;/a&gt; in Reading. I'm really looking
forward to this gig, as their new album, &lt;a href="http://www.amazon.co.uk/gp/redirect.html?ie=UTF8&amp;amp;location=http%3A%2F%2Fwww.amazon.co.uk%2Fgp%2Fexplorer%2FB000GLKP9Y%2F2%2Fref%3Dpd%5Flpo%5Fase%3F&amp;amp;tag=bryanrobsonne-21&amp;amp;linkCode=ur2&amp;amp;camp=1634&amp;amp;creative=6738"&gt;&lt;i&gt;Dreamt
for Light Years in the Belly of a Mountain&lt;/i&gt;&lt;/a&gt;&lt;img src="http://www.assoc-amazon.co.uk/e/ir?t=bryanrobsonne-21&amp;amp;l=ur2&amp;amp;o=2" alt="" style="border: medium none  ! important; margin: 0px ! important;" border="0" height="1" width="1"&gt; is
a superb disc - a very worthy follow-up to &lt;a href="http://www.amazon.co.uk/gp/redirect.html?ie=UTF8&amp;amp;location=http%3A%2F%2Fwww.amazon.co.uk%2FIts-Wonderful-Life-Sparklehorse%2Fdp%2FB00005IA02%2Fref%3Dpd%5Fsxp%5Fgrid%5Fi%5F1%5F0%3Fie%3DUTF8&amp;amp;tag=bryanrobsonne-21&amp;amp;linkCode=ur2&amp;amp;camp=1634&amp;amp;creative=6738"&gt;&lt;i&gt;It's
A Wonderful Life&lt;/i&gt;&lt;/a&gt;&lt;img src="http://www.assoc-amazon.co.uk/e/ir?t=bryanrobsonne-21&amp;amp;l=ur2&amp;amp;o=2" alt="" style="border: medium none  ! important; margin: 0px ! important;" border="0" height="1" width="1"&gt;.
&lt;/p&gt;
&lt;p&gt;
I've never seen Sparklehorse as a band before, but Mark Linkous was one of the guests
at what is one of my favourite gigs: &lt;i&gt;Beyond Nashville&lt;/i&gt; at the Barbican in 2001.
That gig was hosted by &lt;a href="http://www.howegelb.com/"&gt;Howe Gelb&lt;/a&gt; of &lt;a href="http://www.giantsand.com/"&gt;Giant
Sand&lt;/a&gt;, and in addition to Giant Sand and Mark Linkous, it included appearances
by Kurt Wagner of &lt;a href="http://www.lambchop.net/"&gt;Lambchop&lt;/a&gt;, P J Harvey, Evan
Dando, Vic Chesnutt, and the John Parrish Big Band. A full set list can be found on
the Giant Sand website, &lt;a href="http://www.sa-wa-ro.com/GS-Live/setlists-2001/03nov01.htm"&gt;here&lt;/a&gt;.
That show somehow went on to be voted the best live show of the year for 2001 by "Time
Out" magazine.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=1dcbc5a0-545c-4736-a771-12102a400e5f" /&gt;</description>
      <comments>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,1dcbc5a0-545c-4736-a771-12102a400e5f.aspx</comments>
      <category>Music</category>
    </item>
    <item>
      <trackback:ping>http://www.bryanrobson.net/DasBlogCe/Trackback.aspx?guid=0c084baf-5bbd-41d7-bf43-c294ad0e3a21</trackback:ping>
      <pingback:server>http://www.bryanrobson.net/DasBlogCe/pingback.aspx</pingback:server>
      <pingback:target>http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,0c084baf-5bbd-41d7-bf43-c294ad0e3a21.aspx</pingback:target>
      <dc:creator>Bryan</dc:creator>
      <wfw:comment>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,0c084baf-5bbd-41d7-bf43-c294ad0e3a21.aspx</wfw:comment>
      <wfw:commentRss>http://www.bryanrobson.net/DasBlogCe/SyndicationService.asmx/GetEntryCommentsRss?guid=0c084baf-5bbd-41d7-bf43-c294ad0e3a21</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Well, after spending a little over 3 years working at Hewlett Packard in Bracknell,
I'm off back to the Conexus office in Windsor. Overall, it's been an interesting job,
and I've gained a lot of XSL experience, I've started working with .Net 2.0, and I've
seen the project grow from being deployed in a small handful of countries to its current
67 locales worldwide.
</p>
        <p>
So, what's next? Well, I'll be cross-training into Java and WebSphere Portal Server
(as that's where Conexus has a lot of work at the moment), so I'll be leaving Microsoft
technologies behind for a while. It should be interesting, and (with luck) provide
me with things to blog about as I move from C# to Java.
</p>
        <p>
This evening is our leaving bash - beer and curry, and copious quantities of both...
</p>
        <img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=0c084baf-5bbd-41d7-bf43-c294ad0e3a21" />
      </body>
      <title>Time to leave...</title>
      <guid isPermaLink="false">http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,0c084baf-5bbd-41d7-bf43-c294ad0e3a21.aspx</guid>
      <link>http://www.bryanrobson.net/DasBlogCe/2006/09/28/Time+To+Leave.aspx</link>
      <pubDate>Thu, 28 Sep 2006 10:47:05 GMT</pubDate>
      <description>&lt;p&gt;
Well, after spending a little over 3 years working at Hewlett Packard in Bracknell,
I'm off back to the Conexus office in Windsor. Overall, it's been an interesting job,
and I've gained a lot of XSL experience, I've started working with .Net 2.0, and I've
seen the project grow from being deployed in a small handful of countries to its current
67 locales worldwide.
&lt;/p&gt;
&lt;p&gt;
So, what's next? Well, I'll be cross-training into Java and WebSphere Portal Server
(as that's where Conexus has a lot of work at the moment), so I'll be leaving Microsoft
technologies behind for a while. It should be interesting, and (with luck) provide
me with things to blog about as I move from C# to Java.
&lt;/p&gt;
&lt;p&gt;
This evening is our leaving bash - beer and curry, and copious quantities of both...
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=0c084baf-5bbd-41d7-bf43-c294ad0e3a21" /&gt;</description>
      <comments>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,0c084baf-5bbd-41d7-bf43-c294ad0e3a21.aspx</comments>
      <category>Work</category>
    </item>
    <item>
      <trackback:ping>http://www.bryanrobson.net/DasBlogCe/Trackback.aspx?guid=eb901138-450a-4730-8722-1da5c8c4a453</trackback:ping>
      <pingback:server>http://www.bryanrobson.net/DasBlogCe/pingback.aspx</pingback:server>
      <pingback:target>http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,eb901138-450a-4730-8722-1da5c8c4a453.aspx</pingback:target>
      <dc:creator>Bryan</dc:creator>
      <wfw:comment>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,eb901138-450a-4730-8722-1da5c8c4a453.aspx</wfw:comment>
      <wfw:commentRss>http://www.bryanrobson.net/DasBlogCe/SyndicationService.asmx/GetEntryCommentsRss?guid=eb901138-450a-4730-8722-1da5c8c4a453</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">101 cover versions of Led Zep's "Stairway
To Heaven", including a very confused-sounding Dave Grohl, and Rolf Harris.  <a href="http://blog.wfmu.org/freeform/2006/05/stairways_to_he.html">Find
them here</a>.  Hat tip: Orac at <a href="http://feeds.feedburner.com/%7Er/scienceblogs/insolence/%7E3/27776620/just_what_every_led_zeppelin_fan_needs_s_1.php">Respectful
Insolence</a>.<img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=eb901138-450a-4730-8722-1da5c8c4a453" /></body>
      <title>Starways to Heaven</title>
      <guid isPermaLink="false">http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,eb901138-450a-4730-8722-1da5c8c4a453.aspx</guid>
      <link>http://www.bryanrobson.net/DasBlogCe/2006/09/27/Starways+To+Heaven.aspx</link>
      <pubDate>Wed, 27 Sep 2006 14:35:04 GMT</pubDate>
      <description>101 cover versions of Led Zep's "Stairway To Heaven", including a very confused-sounding Dave Grohl, and Rolf Harris.&amp;nbsp; &lt;a href="http://blog.wfmu.org/freeform/2006/05/stairways_to_he.html"&gt;Find
them here&lt;/a&gt;.&amp;nbsp; Hat tip: Orac at &lt;a href="http://feeds.feedburner.com/%7Er/scienceblogs/insolence/%7E3/27776620/just_what_every_led_zeppelin_fan_needs_s_1.php"&gt;Respectful
Insolence&lt;/a&gt;.&lt;img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=eb901138-450a-4730-8722-1da5c8c4a453" /&gt;</description>
      <comments>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,eb901138-450a-4730-8722-1da5c8c4a453.aspx</comments>
      <category>Music</category>
    </item>
    <item>
      <trackback:ping>http://www.bryanrobson.net/DasBlogCe/Trackback.aspx?guid=9af001bd-7377-4711-9fb7-ce47db7eef55</trackback:ping>
      <pingback:server>http://www.bryanrobson.net/DasBlogCe/pingback.aspx</pingback:server>
      <pingback:target>http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,9af001bd-7377-4711-9fb7-ce47db7eef55.aspx</pingback:target>
      <dc:creator>Bryan</dc:creator>
      <wfw:comment>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,9af001bd-7377-4711-9fb7-ce47db7eef55.aspx</wfw:comment>
      <wfw:commentRss>http://www.bryanrobson.net/DasBlogCe/SyndicationService.asmx/GetEntryCommentsRss?guid=9af001bd-7377-4711-9fb7-ce47db7eef55</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">I thought I'd try a blog again.  This
time, it's DasBlog, an open source blog engine, written in .Net.  I've ended
up with it as a separate application to the main website (which is run by DotNetNuke),
rather than having it integrated as a page on the portal, so the look and feel is
slightly different.  I've played around with the themes and stylesheers until
I've got something fairly similar, though.<br /><p></p><img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=9af001bd-7377-4711-9fb7-ce47db7eef55" /></body>
      <title>A new blog</title>
      <guid isPermaLink="false">http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,9af001bd-7377-4711-9fb7-ce47db7eef55.aspx</guid>
      <link>http://www.bryanrobson.net/DasBlogCe/2006/09/27/A+New+Blog.aspx</link>
      <pubDate>Wed, 27 Sep 2006 13:39:16 GMT</pubDate>
      <description>I thought I'd try a blog again.&amp;nbsp; This time, it's DasBlog, an open source blog engine, written in .Net.&amp;nbsp; I've ended up with it as a separate application to the main website (which is run by DotNetNuke), rather than having it integrated as a page on the portal, so the look and feel is slightly different.&amp;nbsp; I've played around with the themes and stylesheers until I've got something fairly similar, though.&lt;br&gt;
&lt;p&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.bryanrobson.net/DasBlogCe/aggbug.ashx?id=9af001bd-7377-4711-9fb7-ce47db7eef55" /&gt;</description>
      <comments>http://www.bryanrobson.net/DasBlogCe/CommentView,guid,9af001bd-7377-4711-9fb7-ce47db7eef55.aspx</comments>
      <category>dasBlog</category>
      <category>Coding</category>
    </item>
  </channel>
</rss>