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

<channel>
	<title>Armswiper.co.uk &#187; Work</title>
	<atom:link href="http://www.armswiper.co.uk/blog/view/tag/Work/feed" rel="self" type="application/rss+xml" />
	<link>http://www.armswiper.co.uk</link>
	<description>Developer, Rower, Funny Man</description>
	<lastBuildDate>Thu, 07 Apr 2011 19:18:45 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>VBScript function IsNumeric</title>
		<link>http://www.armswiper.co.uk/blog/view/548</link>
		<comments>http://www.armswiper.co.uk/blog/view/548#comments</comments>
		<pubDate>Tue, 18 Aug 2009 09:29:44 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[IsNumeric]]></category>
		<category><![CDATA[MSDN]]></category>
		<category><![CDATA[Stupid]]></category>
		<category><![CDATA[VBScript]]></category>

		<guid isPermaLink="false">http://www.armswiper.co.uk/?p=548</guid>
		<description><![CDATA[Brilliant. Last night, we discovered that the VBScript function &#8220;IsNumeric&#8221; is a little more clever than you&#8217;d like, but there&#8217;s also no simpler version either. Consider the following scenario. We have the user input in a bit of text on screen. We need to process that (client-side), and part of that processing needs to find [...]]]></description>
			<content:encoded><![CDATA[<p>Brilliant.</p>
<p>Last night, we discovered that the VBScript function &#8220;IsNumeric&#8221; is a little more clever than you&#8217;d like, but there&#8217;s also no simpler version either.</p>
<p>Consider the following scenario.</p>
<p>We have the user input in a bit of text on screen. We need to process that (client-side), and part of that processing needs to find out if it is a number or not (i.e. if it&#8217;s a number, do this, otherwise, do that.)</p>
<p>Last night, we encountered a problem with the word &#8220;65d1&#8243; &#8211; clearly, it&#8217;s not a number (the &#8220;d&#8221; gives that away,) however, IsNumeric says that it is. If you CInt(&#8220;65d1&#8243;) you get 650. WTF?</p>
<p>A little more testing reveals the following:</p>
<pre>CInt("65d0")  =&gt; 65
CInt("65d1")  =&gt; 650
CInt("65d2")  =&gt; 6500
CInt("65d-1") =&gt; 6</pre>
<p>So obviously that &#8220;d&#8221; refers to &#8220;*(10 ^ following number)&#8221; &#8211; however, I can&#8217;t find a reference for that.</p>
<p>A bit of googling turns up <a href="http://icmpme.blogspot.com/2006/02/vbscript-isnumeric.asp">this page </a>, which shows that adding a space at the front doesn&#8217;t stop it from being classed as numeric.</p>
<p>The only real clue to what is going on is to read, <em>and interpret</em>, the <a href="http://msdn.microsoft.com/en-gb/library/ehs9h2x9%28VS.85%29.aspx">MSDN reference page</a> which states:</p>
<blockquote><p>Returns a Boolean value indicating whether an expression can be evaluated as a number.</p></blockquote>
<p>And there-in lies the answer &#8211; that expression can be <em>evaluated</em> as a number, not that it is a number.</p>
<p>Fortunately, there is an implementation listed on the first page which shows you an alternative way to get the job done.</p>
<p>I&#8217;m now wondering if there are other things that you can enter that will affect an number in that way. I tried</p>
<pre>CInt("6*5")</pre>
<p>but that just errored. I&#8217;m wondering whether &#8220;e&#8221; has a similar effect.</p>
<p><strong>Update</strong>: Yes, &#8220;e&#8221; (at first glance) appears to have an identical effect to &#8220;d&#8221;.</p>
<pre>CInt("65D1") =&gt; 650
CInt("65D1") =&gt; 6500
CInt("65E1") =&gt; 650
CInt("65E1") =&gt; 6500</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.armswiper.co.uk/blog/view/548/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Debugging Client-Side VBScript</title>
		<link>http://www.armswiper.co.uk/blog/view/525</link>
		<comments>http://www.armswiper.co.uk/blog/view/525#comments</comments>
		<pubDate>Tue, 04 Aug 2009 11:31:18 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[debugging]]></category>
		<category><![CDATA[VBScript]]></category>

		<guid isPermaLink="false">http://www.armswiper.co.uk/?p=525</guid>
		<description><![CDATA[Having used client-side VBScript for years at work, I discovered the joys of the Microsoft Script Debugger several years ago. Unfortunately, until now, I&#8217;ve been unable to get the debugger to invoke when I desired (rather than having to wait for a crash!) Several times, I ran across web pages saying that you just type [...]]]></description>
			<content:encoded><![CDATA[<p>Having used client-side VBScript for years at work, I discovered the joys of the Microsoft Script Debugger several years ago. Unfortunately, until now, I&#8217;ve been unable to get the debugger to invoke when I desired (rather than having to wait for a crash!)</p>
<p>Several times, I ran across web pages saying that you just type &#8220;debugger&#8221; &#8211; however that only works with Javascript and not VBScript. I also found loads of references to Server-side debugger with ASP.Net &#8211; again that doesn&#8217;t work with client side.</p>
<p>But, finally, today I managed to find <a href="http://www.serverwatch.com/tutorials/article.php/1549761/Debugging-ClientServer-Side-Scripts.htm">an article</a> which actually explains the process, and marvellously, it&#8217;s not difficult and it&#8217;s (logically) a one liner.</p>
<p>So I can reveal that to invoke the debugger in client-side VBScript, all you type is&#8230;..</p>
<pre>stop</pre>
<p>Huzzah!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.armswiper.co.uk/blog/view/525/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting Fed Up With Word</title>
		<link>http://www.armswiper.co.uk/blog/view/455</link>
		<comments>http://www.armswiper.co.uk/blog/view/455#comments</comments>
		<pubDate>Thu, 08 Jan 2009 13:08:13 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[LyX]]></category>

		<guid isPermaLink="false">http://www.armswiper.co.uk/?p=455</guid>
		<description><![CDATA[The past few weeks, I&#8217;ve had to use Microsoft Word a bit so that I can write up some specifications for other people to review, comment, enhance, reword, approve, you name it. I am now soooo fed up with Word, it&#8217;s unbelievable. The problem is, you can change things. There&#8217;s no structure system that you [...]]]></description>
			<content:encoded><![CDATA[<p>The past few weeks, I&#8217;ve had to use Microsoft Word a bit so that I can write up some specifications for other people to review, comment, enhance, reword, approve, you name it.</p>
<p>I am now soooo fed up with Word, it&#8217;s unbelievable.</p>
<p>The problem is, you can change things. There&#8217;s no structure system that you can use to force a document to do exactly what you want. Instead, you&#8217;re left with a series of stupid handling issues which lead to inconsistent documents across a department and people banging their heads on their desks in frustration.</p>
<p>Take, for example, my incident yesterday. Having reworked an existing specification from the ground up, I found cause to delete the final section of the document. This section was in landscape orientation, not portrait, because it contained some screen mock-ups (no complaint there). When I came to delete the sections, it changed every single section to be landscape, and changed the Page Header to be something completely different &#8211; in fact, it changed it to something that was not visible in the document to begin with, so I couldn&#8217;t even correct that.</p>
<p>I remember getting frustrated about this kind of thing before. That was whilst I was doing my final year project for my degree. I switched from Word to <a href="http://www.lyx.org/" target="_blank">LyX</a>.</p>
<p>Using LyX worked great for me, and I couldn&#8217;t have produced my final report without it, but I don&#8217;t think it would work in an office environment.</p>
<p>I think too many people are used to WYSIWYG, and not WYSIWYM (What You See Is What You Mean), and so would be constantly frustrated with the inability to see what your document looks like in Real-Time.</p>
<p>What I would love, is a cross between the two.</p>
<p>I would love to be able to create a rigidly structured document, where no one can change the text position, change the font, change the font size, mess with headers, etc &#8211; at least not without having to update a template. But as I&#8217;m typing, I&#8217;d love to see what that document would look like once printed, not the LyX modus operandi of &#8220;enter text, preview the DVI file&#8221;.</p>
<p>Couple that with a few more features, such as Word&#8217;s &#8220;Track Changes&#8221; and LyX&#8217;s far superior cross-reference and footnote handling, and you&#8217;re on to a definite winner.</p>
<p>Finally, just because you have to work with the rest of the world, some form of export to Microsoft Word format would be great.</p>
<p>Hey, Rich, feel like resurrecting &#8220;SLaTe&#8221;?</p>
<p><strong>Update:</strong></p>
<p>Ooh, apparently LyX now supports &#8220;Track Changes&#8221;. A lot can happen when you don&#8217;t use a bit of software for 6 years!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.armswiper.co.uk/blog/view/455/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>An Interesting Morning</title>
		<link>http://www.armswiper.co.uk/blog/view/310</link>
		<comments>http://www.armswiper.co.uk/blog/view/310#comments</comments>
		<pubDate>Mon, 03 Jul 2006 11:44:00 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Humour]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Well, I&#8217;ve had an interesting morning so far! Mondays I get up at half five so that I can go to the gym before work. I got up, washed/shaved/etc, left the house, drove to the petrol station. As I was driving away from the petrol station, on my way to work, someone said on the [...]]]></description>
			<content:encoded><![CDATA[<p>Well, I&#8217;ve had an interesting morning so far!</p>
<p>Mondays I get up at half five so that I can go to the gym before work. I  got up, washed/shaved/etc, left the house, drove to the petrol station.  As I was driving away from the petrol station, on my way to work,  someone said on the radio &#8220;And there&#8217;s still a heatwave in the south today.&#8221;</p>
<p>That made me think &#8220;Hmmm, I was going to put a short sleeved shirt in  for work.&#8221; Then I realised&#8230;. &#8220;Shit! I haven&#8217;t put a shirt in my car!  Shit! I didn&#8217;t put any trousers in either!&#8221;. Had to turn around and go  home again.</p>
<p>Then, when I got to work, my security pass wouldn&#8217;t let me in past  reception. Fortunately, the Facilities Management Director walked past  me. I said &#8220;Hi, Paul. Sorry to bother you, but my card won&#8217;t let me in&#8221;.  He asked for my card, looked at the name and the picture on it, but his  response amazed me:<cite>Oh yeah, we played around a bit with the  system on Friday. We took you off.</cite></p>
<p>I refrained from asking &#8220;Why? Why the hell did you do that??? And why,  for god&#8217;s sake, didn&#8217;t you put me back on again!!!!&#8221;.</p>
<p>Strangely, neither of these two events have managed to destroy my  insanely cheery mood today.
<div class="old_blog_update">It gets better, the following day, I was delivered a brand new swipe card! Except the old one still works! Got two now! Woohoo!</div>
]]></content:encoded>
			<wfw:commentRss>http://www.armswiper.co.uk/blog/view/310/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>London to Brighton Bike Ride</title>
		<link>http://www.armswiper.co.uk/blog/view/308</link>
		<comments>http://www.armswiper.co.uk/blog/view/308#comments</comments>
		<pubDate>Mon, 19 Jun 2006 11:55:53 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Social Life]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Hooray! Along with another 26999 people (of which, 7 others were from my company), yesterday I successfully completed the London to Brighton Bike Ride! We managed to cycle the 55 miles from Clapham Common to Madeira Drive in Brighton in about eight and a half hours, and I&#8217;ve personally managed a pleasing £150 in sponsorship [...]]]></description>
			<content:encoded><![CDATA[<p>Hooray!</p>
<p>Along with another 26999 people (of which, 7 others were from my  company), yesterday I successfully completed the London to Brighton Bike  Ride!</p>
<p>We managed to cycle the 55 miles from Clapham Common to Madeira Drive in  Brighton in about eight and a half hours, and I&#8217;ve personally managed a  pleasing £150 in sponsorship for the British Heart Foundation!</p>
<p>Despite the fact that I ache like a bastard this morning, I&#8217;m definitely  going to do it next year, and hopefully raise even more!</p>
<p>I was quite surprised how much I&#8217;ve actually enjoyed it, and how  brilliant the whole atmosphere was. I was expecting it to be just people  cycling, and cycling, and cycling, and &#8230;, but it wasn&#8217;t really. The  best bit was realising people were cycling down towing loudspeakers  attached to an iPod and playing out their CD collections &#8211; that really  cheered me up! And a big thank you must go out to the kids that lined  the streets and soaked me with their water pistols &#8211; it was welcome  relief in the heat!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.armswiper.co.uk/blog/view/308/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I Now Know How Scott Adams Feels</title>
		<link>http://www.armswiper.co.uk/blog/view/292</link>
		<comments>http://www.armswiper.co.uk/blog/view/292#comments</comments>
		<pubDate>Fri, 07 Apr 2006 11:21:00 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Work]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Scott Adams, of Dilbert fame, recently wrote about the hassles of moving office. I now know exactly what he meant. Today is my last day in my current office. Our whole company&#8217;s head office operation is moving from the two office blocks where we are currently, to two completely separate offices. The blocks are obviously [...]]]></description>
			<content:encoded><![CDATA[<p>Scott Adams, of Dilbert fame, recently <a href="http://dilbertblog.typepad.com/the_dilbert_blog/2006/04/a_moving_experi.html">wrote</a>  about the hassles of moving office.</p>
<p>I now know exactly what he meant. Today is my last day in my current office.</p>
<p>Our whole company&#8217;s head office operation is moving from the two office  blocks where we are currently, to two completely separate offices. The  blocks are obviously newer, nicer, and will allow future growth (much  more than we can at the moment). The move to one of the new offices is  completed, and I&#8217;m in the first wave of people heading over to our new  offices.</p>
<p>I don&#8217;t think I&#8217;m going to like the new offices though. They may be  newer and nicer, but we lose <strong>all</strong> of the benefits of our  current location. Let me give you an example of what I mean:</p>
<p>Current Office Benefits:
<ul>
<li>Reasonable offices</li>
<li>Ten minute walk from reasonable size  town centre, which has many shops I need &#8220;everyday&#8221; &#8211; e.g. Woolworths,  Boots, WHSmiths, card shops, supermarket, etc</li>
<li>Ten minute walk  from gym</li>
<li>Reasonable traffic congestion in the morning, but no  real issues</li>
<li>Free on site canteen serving full  meals</li>
<li>Access to the people in other departments we work  with</li>
<li>Can escape office at lunch time to town, just to look  around</li>
<li>Plus many more</li>
</ul>
<p>Compared to New Office:
<ul>
<li>Nice new offices. Too small for our large department though,  will be sqaushed in</li>
<li>20 Minute drive from town centre where the  shops are</li>
<li>Can get to other shops easier, but they will be much  more expensive beause of their location</li>
<li>No gym for  miles</li>
<li>Nightmare area to get in to in the mornings, and out of at  night</li>
<li>&#8220;Deli bar&#8221; serving cold food only</li>
<li>The people we  need to work with, are staying on this site</li>
<li>No where to go at  lunch time. It&#8217;s a commercial estate, so just office  buildings</li>
<li>Other benefits? None really</li>
</ul>
<p>Not sure I&#8217;m going to like this.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.armswiper.co.uk/blog/view/292/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Grand National</title>
		<link>http://www.armswiper.co.uk/blog/view/290</link>
		<comments>http://www.armswiper.co.uk/blog/view/290#comments</comments>
		<pubDate>Fri, 07 Apr 2006 10:25:53 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Work]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Well, it was time for the Annual &#8220;Office Grand National Sweepstakes&#8221; &#8211; for £2, you can pick a horse. Person who picks the winner, wins the money. So, I&#8217;ve pulled a reasonable mount, &#8220;Jack High&#8221;, so I should at least do a little better than the last couple of times (I don&#8217;t think I&#8217;ve had [...]]]></description>
			<content:encoded><![CDATA[<p>Well, it was time for the Annual &#8220;Office Grand National Sweepstakes&#8221; &#8211;  for £2, you can pick a horse. Person who picks the winner, wins the money.</p>
<p>So, I&#8217;ve pulled a reasonable mount, &#8220;Jack High&#8221;, so I should at least do  a little better than the last couple of times (I don&#8217;t think I&#8217;ve had a  horse finish yet!).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.armswiper.co.uk/blog/view/290/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IT Graduates Not Happy With Courses</title>
		<link>http://www.armswiper.co.uk/blog/view/268</link>
		<comments>http://www.armswiper.co.uk/blog/view/268#comments</comments>
		<pubDate>Wed, 11 Jan 2006 15:57:00 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Opinion]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Apparently 46% (in this survey, at least) of UK IT Graduates are not happy with their courses saying that they failed to prepare them for working in &#8220;the real world&#8221;. I would sit myself firmly in the 54% of the other Graduates that are happy with what I did at University. I think that may [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.theregister.co.uk/2006/01/11/grads_say_courses_no_good/">Apparently</a>  46% (in this survey, at least) of UK IT Graduates are not happy with  their courses saying that they failed to prepare them for working in  &#8220;the real world&#8221;.</p>
<p>I would sit myself firmly in the 54% of the other Graduates that are  happy with what I did at University. I think that may be the 46% were  not aware of what they have been taught:<cite>Graduates were  disappointed they were not taught Java and .NET &#8211; despite demand for  them in the commercial sector.</cite>This makes me think that they have  made an oversight. I was taught several languages at University, but  only briefly touched on Java, and had no (at University, at least)  experience of working with Microsoft .Net. The fact that both of these  products (along with other, important, commercial products such as  Oracle) are now available as a free download which these graduates could  go to learn on their own, is not stated.</p>
<p>Even though I wasn&#8217;t taught them fully, I feel that I would not have a  problem with switching to these languages. Why? Because I was taught how  to program, not how to program in  X, Y, or Z languages. The skills are  <em>very</em> transferable, if you put your mind to it (incidentally, I  am not stating that all programming languages are the same &#8211; they are  not, but many ideas and concepts do, readily, transfer).</p>
<p>Let me put this into the context of an analogy:</p>
<p>Imagine that, at University, you were taught to drive a car. You were  taught what all the pedals were for, how to steer, when to change gear,  how to drive in traffic, the whole lot; except the only car the  University had available for you to drive and to practice in was, for  example, a Honda, and sometimes there was a Vauxhall on offer if you  took the right course in your third year.</p>
<p>You then graduate from University, and start looking for a job,  advertising yourself as a &#8220;driver&#8221;, as there is little need for a  specific &#8220;Honda Only driver (with some experience of Vauxhalls)&#8221;.</p>
<p>When you get to your job, you are asked to drive a Ford.</p>
<p>When you immediately get into the car, most things are the same, and you  can more-or-less start driving straight away. OK, every now and again,  you forget where the windscreen washer is, or it takes you a bit of time  to get used to the gear box, but after a while you are driving well.  Could you then say that you felt disappointed because your University  did not teach you to drive a Ford? Most things are the same, except for  a few little levers and things, but the principles are <strong>all  exactly the same</strong>.</p>
<p>University is not about learning specifics &#8211; it is about learning  principles. The problem with principles though, is that you can&#8217;t use  &#8220;principles&#8221;, you have to use an implementation of those principles,  which may have included, changed or excluded those principles at will.</p>
<p>Ignoring those principles, and only absorbing implementation specifics  is a unwise thing to do.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.armswiper.co.uk/blog/view/268/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Christmas Is Over</title>
		<link>http://www.armswiper.co.uk/blog/view/264</link>
		<comments>http://www.armswiper.co.uk/blog/view/264#comments</comments>
		<pubDate>Thu, 05 Jan 2006 09:32:23 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Christmas]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[&#8230; at work at least. We spent 5 minutes this morning tearing down the decorations, which will probably end up in the bin &#8211; we are moving offices this year, and we won&#8217;t have anywhere to store them until next Christmas, so we will probably have to buy a new set then too. It seems [...]]]></description>
			<content:encoded><![CDATA[<p>&#8230; at work at least.</p>
<p>We spent 5 minutes this morning tearing down the decorations, which will  probably end up in the bin &#8211; we are moving offices this year, and we  won&#8217;t have anywhere to store them until next Christmas, so we will  probably have to buy a new set then too.</p>
<p>It seems to have gone incredibly quickly this year (or 2005 at least).  Last year&#8217;s Christmas seemed to last forever, where as this time, its  flown by. Must be getting old.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.armswiper.co.uk/blog/view/264/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Office Gossip</title>
		<link>http://www.armswiper.co.uk/blog/view/260</link>
		<comments>http://www.armswiper.co.uk/blog/view/260#comments</comments>
		<pubDate>Wed, 21 Dec 2005 12:19:41 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Work]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[I love it when things get heated in an office. People run around trying to &#8220;solve&#8221; problems like it is a playground. Sigh]]></description>
			<content:encoded><![CDATA[<p>I love it when things get heated in an office. People run around trying  to &#8220;solve&#8221; problems like it is a playground.</p>
<p><em>Sigh</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.armswiper.co.uk/blog/view/260/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
