<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" 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>
    <atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/BryanRobson" type="application/rss+xml" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><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 size="2" color="#0000ff"><font size="2" color="#0000ff">Decimal</font></font><font size="2" />= <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" />
      <xhtml:img xmlns:xhtml="http://www.w3.org/1999/xhtml" src="http://feeds.feedburner.com/~r/BryanRobson/~4/uPsh86bV5OQ" height="1" width="1" /></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://feedproxy.google.com/~r/BryanRobson/~3/uPsh86bV5OQ/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>
    <feedburner:origLink>http://www.bryanrobson.net/DasBlogCe/2009/03/10/Decimals+VBNet+XML+And+Decimal+Places.aspx</feedburner:origLink></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" />
      <xhtml:img xmlns:xhtml="http://www.w3.org/1999/xhtml" src="http://feeds.feedburner.com/~r/BryanRobson/~4/n3v3Zar4aCE" height="1" width="1" /></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://feedproxy.google.com/~r/BryanRobson/~3/n3v3Zar4aCE/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>
    <feedburner:origLink>http://www.bryanrobson.net/DasBlogCe/2009/02/19/Ten+People+I+Donrsquot+Know+But+Like+Sharing+The+Planet+With.aspx</feedburner:origLink></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" />
      <xhtml:img xmlns:xhtml="http://www.w3.org/1999/xhtml" src="http://feeds.feedburner.com/~r/BryanRobson/~4/FZ6Kfs7F7ZU" height="1" width="1" /></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://feedproxy.google.com/~r/BryanRobson/~3/FZ6Kfs7F7ZU/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>
    <feedburner:origLink>http://www.bryanrobson.net/DasBlogCe/2009/01/30/The+Quackometer+Is+Chiropractic+Xraying+Illegal.aspx</feedburner:origLink></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" />
      <xhtml:img xmlns:xhtml="http://www.w3.org/1999/xhtml" src="http://feeds.feedburner.com/~r/BryanRobson/~4/x9TC7-FnJ4o" height="1" width="1" /></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://feedproxy.google.com/~r/BryanRobson/~3/x9TC7-FnJ4o/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>
    <feedburner:origLink>http://www.bryanrobson.net/DasBlogCe/2008/12/03/Fear+Of+A+Fierce+Feline.aspx</feedburner:origLink></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" />
      <xhtml:img xmlns:xhtml="http://www.w3.org/1999/xhtml" src="http://feeds.feedburner.com/~r/BryanRobson/~4/rP5_UhZ0UY4" height="1" width="1" /></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://feedproxy.google.com/~r/BryanRobson/~3/rP5_UhZ0UY4/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>
    <feedburner:origLink>http://www.bryanrobson.net/DasBlogCe/2008/08/06/Ethernet+Over+Powerline+Netgear+HDXB101.aspx</feedburner:origLink></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" />
      <xhtml:img xmlns:xhtml="http://www.w3.org/1999/xhtml" src="http://feeds.feedburner.com/~r/BryanRobson/~4/bid84u8VOwM" height="1" width="1" /></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://feedproxy.google.com/~r/BryanRobson/~3/bid84u8VOwM/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>
    <feedburner:origLink>http://www.bryanrobson.net/DasBlogCe/2008/08/06/She+Amp+Him+Live+Newport.aspx</feedburner:origLink></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" />
      <xhtml:img xmlns:xhtml="http://www.w3.org/1999/xhtml" src="http://feeds.feedburner.com/~r/BryanRobson/~4/gb7wwGcWcL8" height="1" width="1" /></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://feedproxy.google.com/~r/BryanRobson/~3/gb7wwGcWcL8/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>
    <feedburner:origLink>http://www.bryanrobson.net/DasBlogCe/2008/07/28/Calexico+Two+Silver+Trees+Mp3.aspx</feedburner:origLink></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" />
      <xhtml:img xmlns:xhtml="http://www.w3.org/1999/xhtml" src="http://feeds.feedburner.com/~r/BryanRobson/~4/K6mw-SDB6hQ" height="1" width="1" /></body>
      <title>Controversy</title>
      <guid isPermaLink="false">http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,22e59986-a02a-4b5e-84cb-a82479a6105f.aspx</guid>
      <link>http://feedproxy.google.com/~r/BryanRobson/~3/K6mw-SDB6hQ/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>
    <feedburner:origLink>http://www.bryanrobson.net/DasBlogCe/2008/07/25/Controversy.aspx</feedburner:origLink></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" />
      <xhtml:img xmlns:xhtml="http://www.w3.org/1999/xhtml" src="http://feeds.feedburner.com/~r/BryanRobson/~4/BugQwM0Y450" height="1" width="1" /></body>
      <title>Booze Test</title>
      <guid isPermaLink="false">http://www.bryanrobson.net/DasBlogCe/PermaLink,guid,2edaf966-7cbb-4d49-aac9-c0293554cdef.aspx</guid>
      <link>http://feedproxy.google.com/~r/BryanRobson/~3/BugQwM0Y450/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>
    <feedburner:origLink>http://www.bryanrobson.net/DasBlogCe/2008/07/25/Booze+Test.aspx</feedburner:origLink></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" />
      <xhtml:img xmlns:xhtml="http://www.w3.org/1999/xhtml" src="http://feeds.feedburner.com/~r/BryanRobson/~4/aGj1oTdmVPo" height="1" width="1" /></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://feedproxy.google.com/~r/BryanRobson/~3/aGj1oTdmVPo/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>
    <feedburner:origLink>http://www.bryanrobson.net/DasBlogCe/2008/07/01/Weekend+Of+Music.aspx</feedburner:origLink></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 /></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" />
      <xhtml:img xmlns:xhtml="http://www.w3.org/1999/xhtml" src="http://feeds.feedburner.com/~r/BryanRobson/~4/SqhuxI5ZFwg" height="1" width="1" /></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://feedproxy.google.com/~r/BryanRobson/~3/SqhuxI5ZFwg/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>
    <feedburner:origLink>http://www.bryanrobson.net/DasBlogCe/2008/05/12/Ignore+This+Post.aspx</feedburner:origLink></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" />
      <xhtml:img xmlns:xhtml="http://www.w3.org/1999/xhtml" src="http://feeds.feedburner.com/~r/BryanRobson/~4/yYflMGXUDzk" height="1" width="1" /></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://feedproxy.google.com/~r/BryanRobson/~3/yYflMGXUDzk/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>
    <feedburner:origLink>http://www.bryanrobson.net/DasBlogCe/2008/04/23/ALTNET+Geek+Code+Generator.aspx</feedburner:origLink></item>
  </channel>
</rss>
