<?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>Simon Steed&#039;s Blog About Stuff!</title>
	<atom:link href="http://blog.xploiter.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.xploiter.com</link>
	<description>i.e. anything interesting...</description>
	<lastBuildDate>Wed, 01 Sep 2010 11:15:48 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=636</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Redirect your user to their starting point when validation errors occur</title>
		<link>http://blog.xploiter.com/c-and-aspnet/redirect-your-user-to-their-starting-point-when-validation-errors-occur/</link>
		<comments>http://blog.xploiter.com/c-and-aspnet/redirect-your-user-to-their-starting-point-when-validation-errors-occur/#comments</comments>
		<pubDate>Wed, 01 Sep 2010 11:15:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[C# and ASP.Net]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[asp.net]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[errors]]></category>
		<category><![CDATA[validation]]></category>

		<guid isPermaLink="false">http://blog.xploiter.com/general-stuff/redirect-your-user-to-their-starting-point-when-validation-errors-occur/</guid>
		<description><![CDATA[Ever had a long webpage with validation that fails on postback but returns the user to the top of the page instead of where you want them? Annoying isnt it. Well in .Net Framework 2.0 (yes it&#8217;s been there a while now), you can use the property: Page.MaintainScrollPositionOnPostBack = true; Well this will force the]]></description>
			<content:encoded><![CDATA[<p>Ever had a long webpage with validation that fails on postback but returns the user to the top of the page instead of where you want them?</p>
<p>Annoying isnt it. Well in .Net Framework 2.0 (yes it&#8217;s been there a while now), you can use the property:</p>
<pre style="FONT-FAMILY: consolas">
Page.MaintainScrollPositionOnPostBack = <span style="COLOR: blue">true</span>;
</pre>
<p>Well this will force the user to be returned back to the last point they clicked i.e. could be a control, button, checkbox etc</p>
<p>Very useful and helps with improving the user experience, something we should all be striving for!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.xploiter.com/c-and-aspnet/redirect-your-user-to-their-starting-point-when-validation-errors-occur/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Detecting the Safari Browser to load scripts</title>
		<link>http://blog.xploiter.com/it/detecting-safari-browser-load-scripts/</link>
		<comments>http://blog.xploiter.com/it/detecting-safari-browser-load-scripts/#comments</comments>
		<pubDate>Mon, 02 Aug 2010 08:29:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[IT]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[dynamic load]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[safari]]></category>
		<category><![CDATA[script]]></category>

		<guid isPermaLink="false">http://blog.xploiter.com/?p=356</guid>
		<description><![CDATA[I needed to detect if Safari was being used as there were some issues with styling on a website I was working upon, only on Mac Safari though!!!]]></description>
			<content:encoded><![CDATA[<p>I needed to detect if Safari was being used as there were some issues with styling on a website I was working upon, only on Mac Safari though!!!</p>
<p>The following code is what I use to detect safari and load the relevant script:</p>
<pre id="line1">&lt;script type="text/javascript"&gt;

	if(/Safari/.test(navigator.userAgent))
	{
 		//you are using safari, or at least you CLAIM to be
		document.write('&lt;link type="text/css" media="screen" rel="stylesheet" href="/css/safari.css" title="example" /&gt;');
	}
	&lt;/script&gt;
</pre>
<p>Add in the <head></head> tags and set the path to the correct css file you wish to load. Same concept can be used to load javascript files.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.xploiter.com/it/detecting-safari-browser-load-scripts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Umbraco Redirects</title>
		<link>http://blog.xploiter.com/it/umbraco-redirects/</link>
		<comments>http://blog.xploiter.com/it/umbraco-redirects/#comments</comments>
		<pubDate>Tue, 23 Mar 2010 09:21:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[IT]]></category>
		<category><![CDATA[cms]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[menu]]></category>
		<category><![CDATA[packages]]></category>
		<category><![CDATA[runway]]></category>
		<category><![CDATA[umbraco]]></category>
		<category><![CDATA[webdesign]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://blog.xploiter.com/?p=352</guid>
		<description><![CDATA[Started to do a lot more Umbraco work recently so inevitably I will be looking for loads ot shortcuts, tips etc along the way &#8211; feel free to let me know of any I can include here. The most recent one I came across was I needed to add external redirects in the main menu.]]></description>
			<content:encoded><![CDATA[<p>Started to do a lot more Umbraco work recently so inevitably I will be looking for loads ot shortcuts, tips etc along the way &#8211; feel free to let me know of any I can include here.</p>
<p>The most recent one I came across was I needed to add external redirects in the main menu. The menu was built using XSLT for the main site pages which was fine although I needed to link to other pages off-site.</p>
<p>After a little searching, I found the following package that worked a treat &#8211; simply added a macor to my text page, add the redirect URL and bobs your uncle, it works great!</p>
<p><a title="Umbraco External Redirect Package" href="http://www.neehouse.com/umbraco_cms/packages/redirect.aspx" target="_blank">http://www.neehouse.com/umbraco_cms/packages/redirect.aspx</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.xploiter.com/it/umbraco-redirects/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Daily Twitter Updates for 2010-01-20</title>
		<link>http://blog.xploiter.com/general-stuff/daily-twitter-updates-for-2010-01-20/</link>
		<comments>http://blog.xploiter.com/general-stuff/daily-twitter-updates-for-2010-01-20/#comments</comments>
		<pubDate>Wed, 20 Jan 2010 12:00:00 +0000</pubDate>
		<dc:creator>Simon Steed</dc:creator>
				<category><![CDATA[General stuff]]></category>
		<category><![CDATA[creative]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[Photography]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[webdesign]]></category>

		<guid isPermaLink="false">http://blog.xploiter.com/general-stuff/daily-twitter-updates-for-2010-01-20/</guid>
		<description><![CDATA[Ever needed to create #thumbnails of websites? #thumbalizr is the tool for you http://bit.ly/Uewkc # Problem with the new logo is my good wife now thinks I look like a turtle! # Updated my profile picture, 30 mins spent in photoshop was fun and worth the end result #]]></description>
			<content:encoded><![CDATA[<ul class="aktt_tweet_digest">
<li>Ever needed to create #<a href="http://search.twitter.com/search?q=%23thumbnails" class="aktt_hashtag">thumbnails</a> of websites? #<a href="http://search.twitter.com/search?q=%23thumbalizr" class="aktt_hashtag">thumbalizr</a> is the tool for you <a href="http://bit.ly/Uewkc" rel="nofollow">http://bit.ly/Uewkc</a> <a href="http://twitter.com/SimonAntony/statuses/7965079133" class="aktt_tweet_time">#</a></li>
<li>Problem with the new logo is my good wife now thinks I look like a turtle! <a href="http://twitter.com/SimonAntony/statuses/7947300984" class="aktt_tweet_time">#</a></li>
<li>Updated my profile picture, 30 mins spent in photoshop was fun and worth the end result <a href="http://twitter.com/SimonAntony/statuses/7947283752" class="aktt_tweet_time">#</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://blog.xploiter.com/general-stuff/daily-twitter-updates-for-2010-01-20/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Daily Twitter Updates for 2010-01-19</title>
		<link>http://blog.xploiter.com/general-stuff/daily-twitter-updates-for-2010-01-19/</link>
		<comments>http://blog.xploiter.com/general-stuff/daily-twitter-updates-for-2010-01-19/#comments</comments>
		<pubDate>Tue, 19 Jan 2010 12:00:00 +0000</pubDate>
		<dc:creator>Simon Steed</dc:creator>
				<category><![CDATA[General stuff]]></category>
		<category><![CDATA[creative]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[Photography]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[webdesign]]></category>

		<guid isPermaLink="false">http://blog.xploiter.com/general-stuff/daily-twitter-updates-for-2010-01-19/</guid>
		<description><![CDATA[I&#39;m working from home the next few days with a sick 5 month old baby Question is, how much will I get done??? # Working on new site content for Simon Antony Photography http://bit.ly/5IZWr5 &#8211; what would entice you to use us? #]]></description>
			<content:encoded><![CDATA[<ul class="aktt_tweet_digest">
<li>I&#39;m working from home the next few days with a sick 5 month old baby <img src='http://blog.xploiter.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  Question is, how much will I get done??? <a href="http://twitter.com/SimonAntony/statuses/7942140049" class="aktt_tweet_time">#</a></li>
<li>Working on new site content for Simon Antony Photography <a href="http://bit.ly/5IZWr5" rel="nofollow">http://bit.ly/5IZWr5</a> &#8211; what would entice you to use us? <a href="http://twitter.com/SimonAntony/statuses/7904570334" class="aktt_tweet_time">#</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://blog.xploiter.com/general-stuff/daily-twitter-updates-for-2010-01-19/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Daily Twitter Updates for 2010-01-18</title>
		<link>http://blog.xploiter.com/general-stuff/daily-twitter-updates-for-2010-01-18/</link>
		<comments>http://blog.xploiter.com/general-stuff/daily-twitter-updates-for-2010-01-18/#comments</comments>
		<pubDate>Mon, 18 Jan 2010 12:00:00 +0000</pubDate>
		<dc:creator>Simon Steed</dc:creator>
				<category><![CDATA[General stuff]]></category>
		<category><![CDATA[creative]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[Photography]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[webdesign]]></category>

		<guid isPermaLink="false">http://blog.xploiter.com/general-stuff/daily-twitter-updates-for-2010-01-18/</guid>
		<description><![CDATA[asks &#8211; Do you need a freelancer? Drop me a line and let me know what you need, maybe I can work for you next? #]]></description>
			<content:encoded><![CDATA[<ul class="aktt_tweet_digest">
<li>asks &#8211; Do you need a freelancer? Drop me a line and let me know what you need, maybe I can work for you next? <a href="http://twitter.com/SimonAntony/statuses/7898715499" class="aktt_tweet_time">#</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://blog.xploiter.com/general-stuff/daily-twitter-updates-for-2010-01-18/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Weekly Twitter Updates for 2010-01-17</title>
		<link>http://blog.xploiter.com/general-stuff/weekly-twitter-updates-for-2010-01-17/</link>
		<comments>http://blog.xploiter.com/general-stuff/weekly-twitter-updates-for-2010-01-17/#comments</comments>
		<pubDate>Sun, 17 Jan 2010 22:42:00 +0000</pubDate>
		<dc:creator>Simon Steed</dc:creator>
				<category><![CDATA[General stuff]]></category>
		<category><![CDATA[creative]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[Photography]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[webdesign]]></category>

		<guid isPermaLink="false">http://blog.xploiter.com/general-stuff/weekly-twitter-updates-for-2010-01-17/</guid>
		<description><![CDATA[Calling all #freelancers &#8211; do you have issues getting paid by your clients and what measures do you have in place to deal with it? # Snowing again in Stockport! # getting really frustrated trying to edit a photoshop document with my tablet when the cursor just does a random streak across the page grrrr]]></description>
			<content:encoded><![CDATA[<ul class="aktt_tweet_digest">
<li>Calling all #<a href="http://search.twitter.com/search?q=%23freelancers" class="aktt_hashtag">freelancers</a> &#8211; do you have issues getting paid by your clients and what measures do you have in place to deal with it? <a href="http://twitter.com/SimonAntony/statuses/7782627894" class="aktt_tweet_time">#</a></li>
<li>Snowing again in Stockport! <a href="http://twitter.com/SimonAntony/statuses/7704318247" class="aktt_tweet_time">#</a></li>
<li>getting really frustrated trying to edit a photoshop document with my tablet when the cursor just does a random streak across the page grrrr <a href="http://twitter.com/SimonAntony/statuses/7669985571" class="aktt_tweet_time">#</a></li>
<li>Does anyone use the Blueprint CSS Framework &#8211; any examples of how you&#39;ve used it and what your thoughts are? <a href="http://twitter.com/SimonAntony/statuses/7668683820" class="aktt_tweet_time">#</a></li>
<li>working from home today, lets see what I can get done with a pre 5 month old baby demanding my time <img src='http://blog.xploiter.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  <a href="http://twitter.com/SimonAntony/statuses/7625719288" class="aktt_tweet_time">#</a></li>
<li>brrrr it&#39;s cold out there!!! <a href="http://twitter.com/SimonAntony/statuses/7478513068" class="aktt_tweet_time">#</a></li>
<li>It&#39;s snowing again in Manchester!!!! <a href="http://twitter.com/SimonAntony/statuses/7440896161" class="aktt_tweet_time">#</a></li>
<li>well the igloo is finished, not bad even if I say so myself <img src='http://blog.xploiter.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />   <a href="http://twitpic.com/wrqab" rel="nofollow">http://twitpic.com/wrqab</a> <a href="http://twitter.com/SimonAntony/statuses/7403931051" class="aktt_tweet_time">#</a></li>
<li>Snowy pictures day &#8211; still snowing in Stockport!!  What a day for my daughters birthday and no school <a href="http://twitpic.com/wr8i4" rel="nofollow">http://twitpic.com/wr8i4</a> <a href="http://twitter.com/SimonAntony/statuses/7399989892" class="aktt_tweet_time">#</a></li>
<li>Another snowy picture, this time of the aerial on my roof  <a href="http://twitpic.com/wr7lp" rel="nofollow">http://twitpic.com/wr7lp</a> <a href="http://twitter.com/SimonAntony/statuses/7399807725" class="aktt_tweet_time">#</a></li>
<li>Snowy scenes in Stockport  <a href="http://twitpic.com/wr65r" rel="nofollow">http://twitpic.com/wr65r</a> <a href="http://twitter.com/SimonAntony/statuses/7399502882" class="aktt_tweet_time">#</a></li>
<li>Well got 1 mile to work and had to turn back, set off at 7:40, just got home!!! <a href="http://twitter.com/SimonAntony/statuses/7399095440" class="aktt_tweet_time">#</a></li>
<li>wow, a good 4-6 inches of the white fluffy stuff this morning, getting to work is going to be fun <img src='http://blog.xploiter.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  <a href="http://twitter.com/SimonAntony/statuses/7396550385" class="aktt_tweet_time">#</a></li>
<li>is now available and looking for new contract roles &#8211; contact me with more details <a href="http://twitter.com/SimonAntony/statuses/7381972727" class="aktt_tweet_time">#</a></li>
<li>My latest work, <a href="http://www.iqdesign.co.uk" rel="nofollow">http://www.iqdesign.co.uk</a> &#8211; need a stylish case for your iPhone, iPod, iTouch etc, check it out <a href="http://twitter.com/SimonAntony/statuses/7381740577" class="aktt_tweet_time">#</a></li>
<li>Arghhhhhhhh &#8211; how am I supposed to fix code when it&#39;s been written by incompetent monkeys!!!!! <a href="http://twitter.com/SimonAntony/statuses/7371198471" class="aktt_tweet_time">#</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://blog.xploiter.com/general-stuff/weekly-twitter-updates-for-2010-01-17/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Daily Twitter Updates for 2010-01-15</title>
		<link>http://blog.xploiter.com/general-stuff/daily-twitter-updates-for-2010-01-15/</link>
		<comments>http://blog.xploiter.com/general-stuff/daily-twitter-updates-for-2010-01-15/#comments</comments>
		<pubDate>Fri, 15 Jan 2010 12:00:00 +0000</pubDate>
		<dc:creator>Simon Steed</dc:creator>
				<category><![CDATA[General stuff]]></category>
		<category><![CDATA[creative]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[Photography]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[webdesign]]></category>

		<guid isPermaLink="false">http://blog.xploiter.com/general-stuff/daily-twitter-updates-for-2010-01-15/</guid>
		<description><![CDATA[Calling all #freelancers &#8211; do you have issues getting paid by your clients and what measures do you have in place to deal with it? #]]></description>
			<content:encoded><![CDATA[<ul class="aktt_tweet_digest">
<li>Calling all #<a href="http://search.twitter.com/search?q=%23freelancers" class="aktt_hashtag">freelancers</a> &#8211; do you have issues getting paid by your clients and what measures do you have in place to deal with it? <a href="http://twitter.com/SimonAntony/statuses/7782627894" class="aktt_tweet_time">#</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://blog.xploiter.com/general-stuff/daily-twitter-updates-for-2010-01-15/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Daily Twitter Updates for 2010-01-13</title>
		<link>http://blog.xploiter.com/general-stuff/daily-twitter-updates-for-2010-01-13/</link>
		<comments>http://blog.xploiter.com/general-stuff/daily-twitter-updates-for-2010-01-13/#comments</comments>
		<pubDate>Wed, 13 Jan 2010 12:00:00 +0000</pubDate>
		<dc:creator>Simon Steed</dc:creator>
				<category><![CDATA[General stuff]]></category>
		<category><![CDATA[creative]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[Photography]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[webdesign]]></category>

		<guid isPermaLink="false">http://blog.xploiter.com/general-stuff/daily-twitter-updates-for-2010-01-13/</guid>
		<description><![CDATA[Snowing again in Stockport! # getting really frustrated trying to edit a photoshop document with my tablet when the cursor just does a random streak across the page grrrr # Does anyone use the Blueprint CSS Framework &#8211; any examples of how you&#39;ve used it and what your thoughts are? #]]></description>
			<content:encoded><![CDATA[<ul class="aktt_tweet_digest">
<li>Snowing again in Stockport! <a href="http://twitter.com/SimonAntony/statuses/7704318247" class="aktt_tweet_time">#</a></li>
<li>getting really frustrated trying to edit a photoshop document with my tablet when the cursor just does a random streak across the page grrrr <a href="http://twitter.com/SimonAntony/statuses/7669985571" class="aktt_tweet_time">#</a></li>
<li>Does anyone use the Blueprint CSS Framework &#8211; any examples of how you&#39;ve used it and what your thoughts are? <a href="http://twitter.com/SimonAntony/statuses/7668683820" class="aktt_tweet_time">#</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://blog.xploiter.com/general-stuff/daily-twitter-updates-for-2010-01-13/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Daily Twitter Updates for 2010-01-11</title>
		<link>http://blog.xploiter.com/general-stuff/daily-twitter-updates-for-2010-01-11/</link>
		<comments>http://blog.xploiter.com/general-stuff/daily-twitter-updates-for-2010-01-11/#comments</comments>
		<pubDate>Mon, 11 Jan 2010 12:00:00 +0000</pubDate>
		<dc:creator>Simon Steed</dc:creator>
				<category><![CDATA[General stuff]]></category>
		<category><![CDATA[creative]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[Photography]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[webdesign]]></category>

		<guid isPermaLink="false">http://blog.xploiter.com/general-stuff/daily-twitter-updates-for-2010-01-11/</guid>
		<description><![CDATA[working from home today, lets see what I can get done with a pre 5 month old baby demanding my time # brrrr it&#39;s cold out there!!! # It&#39;s snowing again in Manchester!!!! # well the igloo is finished, not bad even if I say so myself http://twitpic.com/wrqab # Snowy pictures day &#8211; still snowing]]></description>
			<content:encoded><![CDATA[<ul class="aktt_tweet_digest">
<li>working from home today, lets see what I can get done with a pre 5 month old baby demanding my time <img src='http://blog.xploiter.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  <a href="http://twitter.com/SimonAntony/statuses/7625719288" class="aktt_tweet_time">#</a></li>
<li>brrrr it&#39;s cold out there!!! <a href="http://twitter.com/SimonAntony/statuses/7478513068" class="aktt_tweet_time">#</a></li>
<li>It&#39;s snowing again in Manchester!!!! <a href="http://twitter.com/SimonAntony/statuses/7440896161" class="aktt_tweet_time">#</a></li>
<li>well the igloo is finished, not bad even if I say so myself <img src='http://blog.xploiter.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />   <a href="http://twitpic.com/wrqab" rel="nofollow">http://twitpic.com/wrqab</a> <a href="http://twitter.com/SimonAntony/statuses/7403931051" class="aktt_tweet_time">#</a></li>
<li>Snowy pictures day &#8211; still snowing in Stockport!!  What a day for my daughters birthday and no school <a href="http://twitpic.com/wr8i4" rel="nofollow">http://twitpic.com/wr8i4</a> <a href="http://twitter.com/SimonAntony/statuses/7399989892" class="aktt_tweet_time">#</a></li>
<li>Another snowy picture, this time of the aerial on my roof  <a href="http://twitpic.com/wr7lp" rel="nofollow">http://twitpic.com/wr7lp</a> <a href="http://twitter.com/SimonAntony/statuses/7399807725" class="aktt_tweet_time">#</a></li>
<li>Snowy scenes in Stockport  <a href="http://twitpic.com/wr65r" rel="nofollow">http://twitpic.com/wr65r</a> <a href="http://twitter.com/SimonAntony/statuses/7399502882" class="aktt_tweet_time">#</a></li>
<li>Well got 1 mile to work and had to turn back, set off at 7:40, just got home!!! <a href="http://twitter.com/SimonAntony/statuses/7399095440" class="aktt_tweet_time">#</a></li>
<li>wow, a good 4-6 inches of the white fluffy stuff this morning, getting to work is going to be fun <img src='http://blog.xploiter.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  <a href="http://twitter.com/SimonAntony/statuses/7396550385" class="aktt_tweet_time">#</a></li>
<li>is now available and looking for new contract roles &#8211; contact me with more details <a href="http://twitter.com/SimonAntony/statuses/7381972727" class="aktt_tweet_time">#</a></li>
<li>My latest work, <a href="http://www.iqdesign.co.uk" rel="nofollow">http://www.iqdesign.co.uk</a> &#8211; need a stylish case for your iPhone, iPod, iTouch etc, check it out <a href="http://twitter.com/SimonAntony/statuses/7381740577" class="aktt_tweet_time">#</a></li>
<li>Arghhhhhhhh &#8211; how am I supposed to fix code when it&#39;s been written by incompetent monkeys!!!!! <a href="http://twitter.com/SimonAntony/statuses/7371198471" class="aktt_tweet_time">#</a></li>
<li>Yet another kitchen unit fitted, new top, cabinet and woodwork all oiled up and ready to go, will finish the rest over the next 12 months <img src='http://blog.xploiter.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  <a href="http://twitter.com/SimonAntony/statuses/7334353636" class="aktt_tweet_time">#</a></li>
<li>well was looking forwards to getting out in the snow to get some pictures but now it&#39;s raining <a href="http://twitter.com/SimonAntony/statuses/7298560006" class="aktt_tweet_time">#</a></li>
<li>Happy new year all from the Steed Family &#8211; have a great 2010 <a href="http://twitter.com/SimonAntony/statuses/7253503153" class="aktt_tweet_time">#</a></li>
<li>nearly finished the kitchen refit and my lovely wife wants another cabinet fitting &#8211; off to ikea we go, hi ho, hi ho <a href="http://twitter.com/SimonAntony/statuses/7232271120" class="aktt_tweet_time">#</a></li>
<li>Have a great merry xmas everyone <a href="http://twitter.com/SimonAntony/statuses/6996884319" class="aktt_tweet_time">#</a></li>
<li>Now i&#39;m officially on my holidays, I am going to relax &#8211; yes relax, I know it&#39;s not in my vocabulary but I don&#39;t care, RELAXXXXXX <a href="http://twitter.com/SimonAntony/statuses/6982422386" class="aktt_tweet_time">#</a></li>
<li>Stamp prices rising yet again, just another way to rip us off in rip off britain <a href="http://twitter.com/SimonAntony/statuses/6929292187" class="aktt_tweet_time">#</a></li>
<li>Wish me luck, about to brave the manchester weather&#8230;. <a href="http://twitter.com/SimonAntony/statuses/6928325292" class="aktt_tweet_time">#</a></li>
<li><a href="http://twitpic.com/umuyb" rel="nofollow">http://twitpic.com/umuyb</a> &#8211; Bloody Twim has uploaded a black screen, muppet! <a href="http://twitter.com/SimonAntony/statuses/6927843216" class="aktt_tweet_time">#</a></li>
<li><a href="http://twitpic.com/umuyb" rel="nofollow">http://twitpic.com/umuyb</a> &#8211; The manchester snowline <a href="http://twitter.com/SimonAntony/statuses/6926946233" class="aktt_tweet_time">#</a></li>
<li>I predict chaos this afternoon in Manchester, the snow is coming down heavily &#8211; Manchester will grind to a halt as the rest of the country! <a href="http://twitter.com/SimonAntony/statuses/6926374929" class="aktt_tweet_time">#</a></li>
<li>Snowing in manchester and the city grinds to a halt&#8230;&#8230;&#8230;again! <a href="http://twitter.com/SimonAntony/statuses/6923651327" class="aktt_tweet_time">#</a></li>
<li>Went to Yum Yums in Manchester tonight, never again &#8211; food was so poor me and wifey are both feeling sick <img src='http://blog.xploiter.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  So much for our xmas do! <a href="http://twitter.com/SimonAntony/statuses/6908023440" class="aktt_tweet_time">#</a></li>
<li>Why do the Network Rail ticket collectors look like thugs?Dressed head to toe in black, complete with black beanies and they pounce on you! <a href="http://twitter.com/SimonAntony/statuses/6908000641" class="aktt_tweet_time">#</a></li>
<li>How come the Uk, particularly Manchester and Stockport are so crap at gritting pavements and roads &#8211; it&#39;s lethal out there! <a href="http://twitter.com/SimonAntony/statuses/6893872154" class="aktt_tweet_time">#</a></li>
<li>I&#39;m now listed on the Local Twitter Directory for Stockport, Cheshire: <a href="http://www.loadedweb.com/twitter/" rel="nofollow">http://www.loadedweb.com/twitter/</a> <a href="http://twitter.com/SimonAntony/statuses/6871194956" class="aktt_tweet_time">#</a></li>
<li>Check out my ElfYourself video: <a href="http://elfyourself.jibjab.com/view/mme2F5CdzdlorJJv" rel="nofollow">http://elfyourself.jibjab.com/view/mme2F5CdzdlorJJv</a> <a href="http://twitter.com/SimonAntony/statuses/6869733373" class="aktt_tweet_time">#</a></li>
<li>Xmas decorations up, now we are nearly ready to meet Santa <a href="http://twitter.com/SimonAntony/statuses/6833970202" class="aktt_tweet_time">#</a></li>
<li>Hmm why do devs still use inline css then have extrnl css as well in addition to not structuring code properly so overrides dont work! <a href="http://twitter.com/SimonAntony/statuses/6769050485" class="aktt_tweet_time">#</a></li>
<li>Well guess what, i&#39;m working with VB for the first time in over 10 years! <a href="http://twitter.com/SimonAntony/statuses/6765129808" class="aktt_tweet_time">#</a></li>
<li>Can anyone suggest a #<a href="http://search.twitter.com/search?q=%23wireless" class="aktt_hashtag">wireless</a> router that actually works with an #<a href="http://search.twitter.com/search?q=%23Acer" class="aktt_hashtag">Acer</a> #7720G &#8211; wont see Belkin nor Netgear of which I have both <img src='http://blog.xploiter.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  <a href="http://twitter.com/SimonAntony/statuses/6667208156" class="aktt_tweet_time">#</a></li>
<li>My daughter just spoke to her brother in Stacey language and he just fell about laughing &#8211; he is 4 months old Lol <a href="http://twitter.com/SimonAntony/statuses/6608941528" class="aktt_tweet_time">#</a></li>
<li>Now off the market until the New Year &#8211; always open to discuss opportunities, even if only short term <a href="http://twitter.com/SimonAntony/statuses/6608280454" class="aktt_tweet_time">#</a></li>
<li>Sorry to anyone emailing simonantony.co.uk in the last 12 hours, dns failed so we were off the web entirely &#8211; now fixed! <a href="http://twitter.com/SimonAntony/statuses/6598844577" class="aktt_tweet_time">#</a></li>
<li>How many sprouts can you take before you fart? <a href="http://bit.ly/8XN15i" rel="nofollow">http://bit.ly/8XN15i</a> <a href="http://twitter.com/SimonAntony/statuses/6582653376" class="aktt_tweet_time">#</a></li>
<li>Getting ready to release iqdesign.co.uk &#8211; new iphone, iTouch, iPod, Blackberry etc designer cases &#8211; watch this space&#8230;. <a href="http://twitter.com/SimonAntony/statuses/6512369144" class="aktt_tweet_time">#</a></li>
<li>Getting ready for last day a Photolink, been a good experience, now onto my next role which is erm, dur, hmm ??? <a href="http://twitter.com/SimonAntony/statuses/6512300922" class="aktt_tweet_time">#</a></li>
<li>Ooops &#8211; SimonAntony.co.uk server just run out of disk space, silly me forgot to delete old backups!!!! <a href="http://twitter.com/SimonAntony/statuses/6479143658" class="aktt_tweet_time">#</a></li>
<li>After 24 hours of a severe food poisoning outbreak, I&#39;m now starting to recover enough to get some work done! <a href="http://twitter.com/SimonAntony/statuses/6444195289" class="aktt_tweet_time">#</a></li>
<li>I just got Voice Candy for Mac for free from tap tap tap. They&#39;re celebrating launching Voices on the iPhone <a href="http://bit.ly/i56Un" rel="nofollow">http://bit.ly/i56Un</a> <a href="http://twitter.com/SimonAntony/statuses/6413947033" class="aktt_tweet_time">#</a></li>
<li>#<a href="http://search.twitter.com/search?q=%23Google" class="aktt_hashtag">Google</a> Wave &#8211; seems i&#39;m not the only one that doesnt know what to use it for &#8211; how do you use yours? Clean answers please <img src='http://blog.xploiter.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  <a href="http://twitter.com/SimonAntony/statuses/6284875859" class="aktt_tweet_time">#</a></li>
<li>is now looking for job opportunities &#8211; Available immed for interview &#8211; dotnet development, photography, photoshop, interim management etc <a href="http://twitter.com/SimonAntony/statuses/6284678299" class="aktt_tweet_time">#</a></li>
<li>That is i&#39;m available from next week <img src='http://blog.xploiter.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  <a href="http://twitter.com/SimonAntony/statuses/6274528131" class="aktt_tweet_time">#</a></li>
<li>I&#39;ll be available for any freelance dotnet, development, design, infrastructure work etc on freelance/contract basis &#8211; anyone need anything? <a href="http://twitter.com/SimonAntony/statuses/6274454766" class="aktt_tweet_time">#</a></li>
<li>i&#39;ve got some Google Wave accounts to give out &#8211; who is interested? <a href="http://twitter.com/SimonAntony/statuses/6181816694" class="aktt_tweet_time">#</a></li>
<li>Yipee! Been accepted onto the beta program for Google Wave &#8211; now I just need to work out how to use it <img src='http://blog.xploiter.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' />  <a href="http://twitter.com/SimonAntony/statuses/6178070537" class="aktt_tweet_time">#</a></li>
<li>Why does writing valid css for IE6, 7 &amp; 8 need to be so hard &#8211; firefox just, well works! grrrrrrrrrr <a href="http://twitter.com/SimonAntony/statuses/5954420847" class="aktt_tweet_time">#</a></li>
<li>Google producing Chrome OS &#8211; whatever next, missions to mars? <a href="http://twitter.com/SimonAntony/statuses/5888921116" class="aktt_tweet_time">#</a></li>
<li>asp.net cassini comes to the rescue &#8211; open source, dont ya love it &#8230; <a href="http://twitter.com/SimonAntony/statuses/5860611073" class="aktt_tweet_time">#</a></li>
<li>Anyone managed to run an asp.net website complete with dataset capabilities on a CDRom? Let me know what solution you came up with! <a href="http://twitter.com/SimonAntony/statuses/5857471511" class="aktt_tweet_time">#</a></li>
<li>Well another project successfully (cough) rolled out today &#8211; <a href="http://www.aidsalliance.org" rel="nofollow">http://www.aidsalliance.org</a> &#8211; my last 7 weeks of hard graft! Phase 2 now !!!! <a href="http://twitter.com/SimonAntony/statuses/5797237727" class="aktt_tweet_time">#</a></li>
<li>What billing and purchase tracking (ok accounting) tools do you use on your mac? Currently using iRatchet for billing but need expenditure 2 <a href="http://twitter.com/SimonAntony/statuses/5509623033" class="aktt_tweet_time">#</a></li>
<li>Get 6 top mac apps for free with MacHeist &#8211; <a href="http://www.macheist.com/" rel="nofollow">http://www.macheist.com/</a> <a href="http://twitter.com/SimonAntony/statuses/5509487390" class="aktt_tweet_time">#</a></li>
<li>Just fulfilled another photo order for two clients &#8211; need to improve workflow, it&#39;s good, just not as good as it can be <img src='http://blog.xploiter.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  <a href="http://twitter.com/SimonAntony/statuses/5348342429" class="aktt_tweet_time">#</a></li>
<li>Imminent impact @<a href="http://twitter.com/MacHeist" class="aktt_username">MacHeist</a> (151.7,174.4) Witness it and get DaisyDisk ($20) for FREE to reclaim GBs of space on your Mac! <a href="http://macheist.com" rel="nofollow">http://macheist.com</a> <a href="http://twitter.com/SimonAntony/statuses/5343757173" class="aktt_tweet_time">#</a></li>
<li>RT @PhotoLegal: Petition against the Government&#39;s smash and grab raid on photographer&#39;s intellectual property <a href="http://bit.ly/1hZEhN" rel="nofollow">http://bit.ly/1hZEhN</a> <a href="http://twitter.com/SimonAntony/statuses/5293758485" class="aktt_tweet_time">#</a></li>
<li>chilling before a mamouth photo editing session laters <img src='http://blog.xploiter.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  <a href="http://twitter.com/SimonAntony/statuses/5208087167" class="aktt_tweet_time">#</a></li>
<li>Right that is 80 gig of my music in one place, now I need to get iTunes running to sort them all out &#8211; ouch! <a href="http://twitter.com/SimonAntony/statuses/4898791735" class="aktt_tweet_time">#</a></li>
<li>See, I knew banannas were important  <a href="http://bit.ly/3udwqx" rel="nofollow">http://bit.ly/3udwqx</a> <a href="http://twitter.com/SimonAntony/statuses/4887402945" class="aktt_tweet_time">#</a></li>
<li>Berners-Lee &#39;sorry&#39; for slashes  in internet URL&#39;s <a href="http://bit.ly/SJZno" rel="nofollow">http://bit.ly/SJZno</a> <a href="http://twitter.com/SimonAntony/statuses/4887327577" class="aktt_tweet_time">#</a></li>
<li>Is Photoshop CS4 all its cracked up to be? Why should I upgrade from CS3? Questions questions!!!! <a href="http://twitter.com/SimonAntony/statuses/4844567490" class="aktt_tweet_time">#</a></li>
<li>Google Forces Web Standards Issue Using Sexy Buttons &#8211; <a href="http://bit.ly/p74cq" rel="nofollow">http://bit.ly/p74cq</a> <a href="http://twitter.com/SimonAntony/statuses/4715637144" class="aktt_tweet_time">#</a></li>
<li>#<a href="http://search.twitter.com/search?q=%23Photolinks" class="aktt_hashtag">Photolinks</a> new artwork, #<a href="http://search.twitter.com/search?q=%23banksy" class="aktt_hashtag">banksy</a> it&#39;s not but excellent it is anyway <a href="http://twitpic.com/kqmvs" rel="nofollow">http://twitpic.com/kqmvs</a> <a href="http://twitter.com/SimonAntony/statuses/4714671176" class="aktt_tweet_time">#</a></li>
<li>30k email addresses compromised &#8211; was it down to keyloggers? <a href="http://bit.ly/1wFJuQ" rel="nofollow">http://bit.ly/1wFJuQ</a> <a href="http://twitter.com/SimonAntony/statuses/4681154185" class="aktt_tweet_time">#</a></li>
<li>Google hit by email scam, were you affected? <a href="http://news.bbc.co.uk/1/hi/technology/8292928.stm" rel="nofollow">http://news.bbc.co.uk/1/hi/technology/8292928.stm</a> <a href="http://twitter.com/SimonAntony/statuses/4664552620" class="aktt_tweet_time">#</a></li>
<li>Wondering why the planes have changed flightpath, now over my home. Turns out Man Airport are upgrading the ILS so planes using VOR instead <a href="http://twitter.com/SimonAntony/statuses/4664539244" class="aktt_tweet_time">#</a></li>
<li>Looking for free #<a href="http://search.twitter.com/search?q=%23email" class="aktt_hashtag">email</a> client for #<a href="http://search.twitter.com/search?q=%23e71" class="aktt_hashtag">e71</a> that supports multi pop3 boxes, nokia email not 100%. Must also leave mail on server and not remove. <a href="http://twitter.com/SimonAntony/statuses/4640489041" class="aktt_tweet_time">#</a></li>
<li>Happy now, managed to find a usable and free #<a href="http://search.twitter.com/search?q=%23twitter" class="aktt_hashtag">twitter</a> client for my #<a href="http://search.twitter.com/search?q=%23nokia" class="aktt_hashtag">nokia</a> #e71 &#8211; #<a href="http://search.twitter.com/search?q=%23twim" class="aktt_hashtag">twim</a> <a href="http://twitter.com/SimonAntony/statuses/4638715938" class="aktt_tweet_time">#</a></li>
<li>been out and about tonight looking at ideas for some night photography, some interesting opportunities out there, keep your ears on the blog <a href="http://twitter.com/SimonAntony/statuses/4636203656" class="aktt_tweet_time">#</a></li>
<li>Just finished updating my twitter homepage with a new background &#8211; what do you all think? <a href="http://bit.ly/FHUTx" rel="nofollow">http://bit.ly/FHUTx</a> <a href="http://twitter.com/SimonAntony/statuses/4565109258" class="aktt_tweet_time">#</a></li>
<li>Seen some awesome jQuery tricks lately, anyone point me in the direction of some good solid tutorials with real world examples I can use? ta <a href="http://twitter.com/SimonAntony/statuses/4322245111" class="aktt_tweet_time">#</a></li>
<li>having a coffee and wispa after a hard days slog <a href="http://twitter.com/SimonAntony/statuses/3896931703" class="aktt_tweet_time">#</a></li>
<li>working on the Bump, Baby &amp; Beyond branding + packages &#8211; should be a good day! <a href="http://twitter.com/SimonAntony/statuses/3859876890" class="aktt_tweet_time">#</a></li>
<li>Looking for any freelance work/photography/website or graphic design etc &#8211; please get in touch and let me know what I can do for you! <a href="http://twitter.com/SimonAntony/statuses/3761605798" class="aktt_tweet_time">#</a></li>
<li>RT @TipSquirrel: RT @Minervity: 52 Professional Website User Interface Photoshop Tutorials &#8211; <a href="http://bit.ly/CqHah" rel="nofollow">http://bit.ly/CqHah</a> <a href="http://twitter.com/SimonAntony/statuses/3738746225" class="aktt_tweet_time">#</a></li>
<li>RT @chrisspooner: Create a Fun Illustrated Toy Site Design in Photoshop &#8211; <a href="http://bit.ly/q4UEo" rel="nofollow">http://bit.ly/q4UEo</a> <a href="http://twitter.com/SimonAntony/statuses/3712169942" class="aktt_tweet_time">#</a></li>
<li>Bought a new book today, Improve your memory today &#8211; wonder if I will remember to read it? <a href="http://twitter.com/SimonAntony/statuses/3652452519" class="aktt_tweet_time">#</a></li>
<li>Happy birthday to me, happy birthday to me, happy birthday dear Simon, happy birthday to me <img src='http://blog.xploiter.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  <a href="http://twitter.com/SimonAntony/statuses/3566829520" class="aktt_tweet_time">#</a></li>
<li>RT @Paul_Casey: RT @cycleman4997: &quot;Golf Club Fail&quot; &#8211; <a href="http://twlol.com/tw/?v7-14138" rel="nofollow">http://twlol.com/tw/?v7-14138</a> Genius! &#8211; ordered mine already :_ <a href="http://twitter.com/SimonAntony/statuses/3566550312" class="aktt_tweet_time">#</a></li>
<li>I&#39;m going to adopt a snow leopard &#8211; are you? <a href="http://www.apple.com/uk/macosx/" rel="nofollow">http://www.apple.com/uk/macosx/</a> <a href="http://twitter.com/SimonAntony/statuses/3515714889" class="aktt_tweet_time">#</a></li>
<li>RT @StockportMBC: Events: Merseyway’s Summer Sound 2009! See live music, dance &amp; entertainment in the Stockport Town Centre&#8230;http://tin &#8230; <a href="http://twitter.com/SimonAntony/statuses/3514384652" class="aktt_tweet_time">#</a></li>
<li>30 Top Design Blogs for Great Tutorials &amp; Inspiration &#8211; <a href="http://is.gd/2rviF" rel="nofollow">http://is.gd/2rviF</a> <a href="http://twitter.com/SimonAntony/statuses/3513284218" class="aktt_tweet_time">#</a></li>
<li>RT @BianaBabinsky: On My Blog: Simplest Way To Build Your List With Social Networking, <a href="http://bit.ly/28XR7b" rel="nofollow">http://bit.ly/28XR7b</a> <a href="http://twitter.com/SimonAntony/statuses/3513038959" class="aktt_tweet_time">#</a></li>
<li>currently editing just over 300 pictures from a recent wedding shoot &#8211; need to crack on, client chasing me!!! <a href="http://twitter.com/SimonAntony/statuses/3499602201" class="aktt_tweet_time">#</a></li>
<li>Need to alter your Time Machine frequency? <a href="http://timesoftware.free.fr/timemachineeditor/" rel="nofollow">http://timesoftware.free.fr/timemachineeditor/</a> <a href="http://twitter.com/SimonAntony/statuses/3496557635" class="aktt_tweet_time">#</a></li>
<li>Simon is pleased to annouce the birth of his baby son on 16th August weighing in at 9lb 7oz, mother and baby both doing well <img src='http://blog.xploiter.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  <a href="http://twitter.com/SimonAntony/statuses/3368757447" class="aktt_tweet_time">#</a></li>
<li>well as of 30 mins ago, Sharon&#39;s (wifey) waters broke &#8211; baby is on its way <img src='http://blog.xploiter.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  <a href="http://twitter.com/SimonAntony/statuses/3322355504" class="aktt_tweet_time">#</a></li>
<li>Well the pink limo turned white but apart from that another great days shooting &#8211; now to photoshop to tweak and prep album&#8230; <a href="http://twitter.com/SimonAntony/statuses/3316720949" class="aktt_tweet_time">#</a></li>
<li>Off to shoot another wedding &#8211; looking forwards to this one, big pink limo involved too <a href="http://twitter.com/SimonAntony/statuses/3306288899" class="aktt_tweet_time">#</a></li>
<li>Currently watching georgina at swimming lesson &amp; thinking about how to drum up more business <a href="http://twitter.com/SimonAntony/statuses/3287547382" class="aktt_tweet_time">#</a></li>
<li>Goosed after a garden tidy, 12 bags at the tip &amp; it looks great. All whilst waiting for a SQL Server db to be provisioned &#8211; why so long <img src='http://blog.xploiter.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  <a href="http://twitter.com/SimonAntony/statuses/3287050916" class="aktt_tweet_time">#</a></li>
<li>Working on my new design website &#8211; wordpress, php or dotnet??? hmmmm decisions decisions&#8230;&#8230;&#8230; <a href="http://twitter.com/SimonAntony/statuses/3284029531" class="aktt_tweet_time">#</a></li>
<li>Well baby not come so back to work I go and finish off AllEventsDirectory &#8211; Sharon now 1 day overdue!!! <a href="http://twitter.com/SimonAntony/statuses/3222885147" class="aktt_tweet_time">#</a></li>
<li>is now chilling out and looking hopeful that his new baby will be born this weekend &#8211; i&#39;ll try not to work this weekend love, honest <img src='http://blog.xploiter.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  <a href="http://twitter.com/SimonAntony/statuses/3191624388" class="aktt_tweet_time">#</a></li>
<li>Question: Why does raspberry ice cream not have any raspberry in it? <a href="http://twitter.com/SimonAntony/statuses/3152005555" class="aktt_tweet_time">#</a></li>
<li>Can anyone recommend a good asp.net 3.5 book/resource &#8211; cookbook style is ideal as not into the theory, just how to do stuff <img src='http://blog.xploiter.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  <a href="http://twitter.com/SimonAntony/statuses/3148485109" class="aktt_tweet_time">#</a></li>
<li>Need a helpdesk solution, ideally opensource, customisable, time tracking so clients know time left in their support contract! Ideas anyone? <a href="http://twitter.com/SimonAntony/statuses/3102395553" class="aktt_tweet_time">#</a></li>
<li>So funny &#8211; watching Jeremy Kyle and seeing the losers getting caught out lying. Dont want to get caught? Then dont do it in the first place! <a href="http://twitter.com/SimonAntony/statuses/3101324390" class="aktt_tweet_time">#</a></li>
<li>Major tip &#8211; never ever ever use &lt;xhtmlConformance mode=&quot;Legacy&quot;/&gt; when writing an asp.net AJAX app &#8211; it will stop updates working <a href="http://twitter.com/SimonAntony/statuses/2818534779" class="aktt_tweet_time">#</a></li>
<li>Up since 4:30 this morning, working since 5:30 &#8211; extreme tiredness will hit by the end of the day lol &#8211; hope everyone in twitter land is ok! <a href="http://twitter.com/SimonAntony/statuses/2815496933" class="aktt_tweet_time">#</a></li>
<li>Working on All Events website, should be live in two weeks &#8211; Also baby&#39;s head now engaged, any time now, cant wait to meet him/her <img src='http://blog.xploiter.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  <a href="http://twitter.com/SimonAntony/statuses/2775374611" class="aktt_tweet_time">#</a></li>
<li>Baby due soon (36wk + 5 now), birthing pool up in back room and i&#39;m still working on websites!!! <a href="http://twitter.com/SimonAntony/statuses/2687420280" class="aktt_tweet_time">#</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://blog.xploiter.com/general-stuff/daily-twitter-updates-for-2010-01-11/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
