<?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"
	>

<channel>
	<title>Colin Jensen</title>
	<atom:link href="http://www.colinjensen.co.uk/blog/feed" rel="self" type="application/rss+xml" />
	<link>http://www.colinjensen.co.uk/blog</link>
	<description>Technology, Gadgets, Website Design and Development, Windows Mobile.</description>
	<pubDate>Thu, 26 Jun 2008 23:31:44 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<item>
		<title>Tutorial - How to use arrays in php</title>
		<link>http://www.colinjensen.co.uk/blog/web-related/php/tutorial-how-to-use-arrays-in-php</link>
		<comments>http://www.colinjensen.co.uk/blog/web-related/php/tutorial-how-to-use-arrays-in-php#comments</comments>
		<pubDate>Thu, 26 Jun 2008 19:00:09 +0000</pubDate>
		<dc:creator>Colin Jensen</dc:creator>
		
		<category><![CDATA[PHP]]></category>

		<category><![CDATA[advanced arrays]]></category>

		<category><![CDATA[array tutorial]]></category>

		<category><![CDATA[arrays]]></category>

		<category><![CDATA[easy array]]></category>

		<category><![CDATA[how to use arrays]]></category>

		<category><![CDATA[php arrays]]></category>

		<category><![CDATA[php.net arrays]]></category>

		<category><![CDATA[simple arrays]]></category>

		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.colinjensen.co.uk/blog/?p=19</guid>
		<description><![CDATA[Using arrays in PHP can be a very powerful technique of handling data.
If you are not familiar with arrays in PHP then use simple code!
Example of simple code.
$fruit['apples'] = 'I like apples';
$fruit['oranges'] = 'I like oranges';
$fruit['banana'] = 'I like bananas';
Example of advanced code.
$fruit = array("apples" =&#62; 'I like apples', "oranges" =&#62; 'I like oranges', "banana" [...]]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p><strong>Using <a title="http://uk3.php.net/manual/en/function.array.php" href="http://uk3.php.net/manual/en/function.array.php" target="_blank">arrays</a> in <a title="http://www.php.net" href="http://www.php.net" target="_blank">PHP</a> can be a very powerful technique of handling </strong><strong>data.</strong></p>
<p>If you are not familiar with arrays in <a title="http://www.php.net" href="http://www.php.net" target="_blank">PHP</a> then use simple code!</p>
<p><strong>Example of simple code.</strong></p>
<blockquote><p>$fruit['apples'] = 'I like apples';</p>
<p>$fruit['oranges'] = 'I like oranges';</p>
<p>$fruit['banana'] = 'I like bananas';</p></blockquote>
<p><strong>Example of advanced code.</strong></p>
<blockquote><p>$fruit = array("apples" =&gt; 'I like apples', "oranges" =&gt; 'I like oranges', "banana" =&gt; 'I like bananas');</p></blockquote>
<p>Using advanced code saves lines in the source code but if you are not familiar with arrays it could be harder to troubleshoot if you get parse errors.  Once you feel confident with <a title="http://uk3.php.net/manual/en/function.array.php" href="http://uk3.php.net/manual/en/function.array.php" target="_blank">arrays</a> then I would recommend using advanced code.</p>
<p><strong>Reading from <a title="http://uk3.php.net/manual/en/function.array.php" href="http://uk3.php.net/manual/en/function.array.php" target="_blank">arrays</a>.</strong></p>
<p><a title="http://uk3.php.net/manual/en/function.array.php" href="http://uk3.php.net/manual/en/function.array.php" target="_blank">Arrays</a> are very simple to read from.  Using our example code above, to see the value of Apples we would use</p>
<blockquote><p>echo $fruit['apples'];</p>
<p>this would return: I like apples</p></blockquote>
<p><strong>Looping through <a title="http://uk3.php.net/manual/en/function.array.php" href="http://uk3.php.net/manual/en/function.array.php" target="_blank">arrays</a></strong></p>
<p>Looping through <a title="http://uk3.php.net/manual/en/function.array.php" href="http://uk3.php.net/manual/en/function.array.php" target="_blank">arrays</a> is easy too, but this is where people usually get stuck.  Just look at it from a logical point of view.  We are going to use the foreach function to go through the <a title="http://uk3.php.net/manual/en/function.array.php" href="http://uk3.php.net/manual/en/function.array.php" target="_blank">array</a>.</p>
<blockquote><p>foreach($fruit as $key =&gt; $value) {</p>
<p style="padding-left: 30px;">echo $key . ' : ' . $value . '&lt;br /&gt;';</p>
<p>}</p>
<p>This would return:<br />
apples : I like apples<br />
oranges: I like oranges<br />
banana: I like bananas</p></blockquote>
<p>Using the foreach function above, think of $key as the name and $value as the information we assigned.</p>
<p><strong>If you would like any more information regarding <a title="http://uk3.php.net/manual/en/function.array.php" href="http://uk3.php.net/manual/en/function.array.php" target="_blank">arrays</a> then please leave a comment or visit the <a title="http://uk3.php.net/manual/en/function.array.php" href="http://uk3.php.net/manual/en/function.array.php" target="_blank">PHP manual by clicking here</a></strong></p>
<p class="addtoany_share_save">
    <a name="a2a_dd" onmouseover="a2a_show_dropdown(this)" onmouseout="a2a_onMouseOut_delay()" href="http://www.addtoany.com/bookmark?sitename=Colin%20Jensen&amp;siteurl=http%3A%2F%2Fwww.colinjensen.co.uk%2Fblog%2F&amp;linkname=Tutorial%20-%20How%20to%20use%20arrays%20in%20php&amp;linkurl=http%3A%2F%2Fwww.colinjensen.co.uk%2Fblog%2Fweb-related%2Fphp%2Ftutorial-how-to-use-arrays-in-php"><img src="http://www.colinjensen.co.uk/blog/wp-content/plugins/add-to-any/share_save_171_16.gif" width="171" height="16" border="0" alt="Share/Save/Bookmark"/></a>
    <script type="text/javascript">
		a2a_linkname="Tutorial - How to use arrays in php";
		a2a_linkurl="http://www.colinjensen.co.uk/blog/web-related/php/tutorial-how-to-use-arrays-in-php";
				a2a_show_title=1;    </script>
    <script type="text/javascript" src="http://www.addtoany.com/menu/page.js"></script>

	</p><!-- google_ad_section_end -->]]></content:encoded>
			<wfw:commentRss>http://www.colinjensen.co.uk/blog/web-related/php/tutorial-how-to-use-arrays-in-php/feed</wfw:commentRss>
		</item>
		<item>
		<title>How to stop spam - junk mail</title>
		<link>http://www.colinjensen.co.uk/blog/tips-and-tricks/how-to-stop-spam-junk-mail</link>
		<comments>http://www.colinjensen.co.uk/blog/tips-and-tricks/how-to-stop-spam-junk-mail#comments</comments>
		<pubDate>Wed, 25 Jun 2008 19:20:00 +0000</pubDate>
		<dc:creator>Colin Jensen</dc:creator>
		
		<category><![CDATA[Tips and Tricks]]></category>

		<category><![CDATA[buy soma]]></category>

		<category><![CDATA[buy tramadol]]></category>

		<category><![CDATA[buy viagra]]></category>

		<category><![CDATA[buy viagra online]]></category>

		<category><![CDATA[cheap viagra]]></category>

		<category><![CDATA[junk mail]]></category>

		<category><![CDATA[online casino]]></category>

		<category><![CDATA[spam]]></category>

		<category><![CDATA[stop spam]]></category>

		<category><![CDATA[tramadole]]></category>

		<category><![CDATA[tramadole online]]></category>

		<guid isPermaLink="false">http://www.colinjensen.co.uk/blog/?p=18</guid>
		<description><![CDATA[Sick of receiving emails with the following subjects: tramadole, buy tramadol, online casino, buy soma, buy viagra, buy viagra online, cheap viagra, tramadole online etc&#8230;
Everybody suffers from spam at some point, so here&#8217;s some tips on fighting spam.

Be very careful entering your email address on websites.  Some websites sell this information on to advertising company&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p><strong>Sick of receiving emails with the following subjects</strong>: tramadole, buy tramadol, online casino, buy soma, buy viagra, buy viagra online, cheap viagra, tramadole online etc&#8230;</p>
<p><strong>Everybody suffers from spam at some point</strong>, so here&#8217;s some tips on fighting spam.</p>
<ol>
<li>Be very careful entering your email address on websites.  Some websites sell this information on to advertising company&#8217;s who then spam your inbox.</li>
<li>Keep your personal/business email account separate. Get your self a free Hotmail account at <a title="Hotmail.com" href="http://www.hotmail.com" target="_blank">http://www.hotmail.com</a> and use it for filling in on-line forms.</li>
<li><a title="Free Gmail Account" href="http://www.gmail.com" target="_blank">Google&#8217;s Gmail</a> has the best Junk Mail filter I have ever seen! Creating an email address with Gmail is free and I would highly recommend this.</li>
<li><strong>RING THE INTERNET SERVICE PROVIDER. </strong>Ring your ISP whether it&#8217;s BT, Tiscal, Aol etc and see what they have to offer.  If they try to sell you anti-spam software then <strong>DO NOT ACCEPT</strong>.  Software based anti-spam filters work by looking at the emails once they are downloaded on your computer, we want it to be deleted <strong>BEFORE</strong> you download it!</li>
<li>If you own a domain based email address such as matt@mybusiness.com, contact who ever hosts the email and tell them your problem.  If they have access to the machine/server hosting your emails they should be able to install anti-spam software such as Spam Assassin.  Ask them about this.</li>
</ol>
<p>Please note this is just a small guide on how to prevent spam. If everything fails, <strong>why not just create a new email address?</strong></p>
<p class="addtoany_share_save">
    <a name="a2a_dd" onmouseover="a2a_show_dropdown(this)" onmouseout="a2a_onMouseOut_delay()" href="http://www.addtoany.com/bookmark?sitename=Colin%20Jensen&amp;siteurl=http%3A%2F%2Fwww.colinjensen.co.uk%2Fblog%2F&amp;linkname=How%20to%20stop%20spam%20-%20junk%20mail&amp;linkurl=http%3A%2F%2Fwww.colinjensen.co.uk%2Fblog%2Ftips-and-tricks%2Fhow-to-stop-spam-junk-mail"><img src="http://www.colinjensen.co.uk/blog/wp-content/plugins/add-to-any/share_save_171_16.gif" width="171" height="16" border="0" alt="Share/Save/Bookmark"/></a>
    <script type="text/javascript">
		a2a_linkname="How to stop spam - junk mail";
		a2a_linkurl="http://www.colinjensen.co.uk/blog/tips-and-tricks/how-to-stop-spam-junk-mail";
				a2a_show_title=1;    </script>
    <script type="text/javascript" src="http://www.addtoany.com/menu/page.js"></script>

	</p><!-- google_ad_section_end -->]]></content:encoded>
			<wfw:commentRss>http://www.colinjensen.co.uk/blog/tips-and-tricks/how-to-stop-spam-junk-mail/feed</wfw:commentRss>
		</item>
		<item>
		<title>The best media player for Windows Mobile</title>
		<link>http://www.colinjensen.co.uk/blog/windows-mobile/the-best-media-player-for-windows-mobile</link>
		<comments>http://www.colinjensen.co.uk/blog/windows-mobile/the-best-media-player-for-windows-mobile#comments</comments>
		<pubDate>Wed, 25 Jun 2008 14:12:02 +0000</pubDate>
		<dc:creator>Colin Jensen</dc:creator>
		
		<category><![CDATA[Windows Mobile]]></category>

		<category><![CDATA[best media player]]></category>

		<category><![CDATA[coreplayer download]]></category>

		<category><![CDATA[htc kaiser]]></category>

		<category><![CDATA[portable media center]]></category>

		<category><![CDATA[windows media mobile]]></category>

		<category><![CDATA[windows media player 10 mobile]]></category>

		<category><![CDATA[windows media player download for mobile]]></category>

		<category><![CDATA[windows media player mobile]]></category>

		<guid isPermaLink="false">http://www.colinjensen.co.uk/blog/?p=17</guid>
		<description><![CDATA[I have played with many different media players on my Windows Mobile device and so far the best I have come across is CorePlayer.
If you have a HTC Kaiser then you are most likely aware of the display drivers performance issues(If not click here).  CorePlayer has a special option to help target this problem and [...]]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p>I have played with many different media players on my Windows Mobile device and so far the best I have come across is <a title="http://www.coreplayer.com/" href="http://www.coreplayer.com/" target="_blank">CorePlayer</a>.</p>
<p>If you have a <a title="What is a HTC Kaiser?" href="http://tytnseries.htc.com/" target="_blank">HTC Kaiser</a> then you are most likely aware of the display drivers performance issues(<a title="http://www.htcclassaction.org/" href="http://www.htcclassaction.org/" target="_blank">If not click here</a>).  <a title="http://www.coreplayer.com/" href="http://www.coreplayer.com/" target="_blank">CorePlayer</a> has a special option to help target this problem and increase the performance and it really does help!</p>
<p>The lastest version of <a title="http://www.coreplayer.com/" href="http://www.coreplayer.com/" target="_blank">CorePlayer</a> comes with an in-built <a title="http://www.youtube.com" href="http://www.youtube.com" target="_blank">YouTube</a> browser that is really effective and easy to use.</p>
<p><a title="http://www.coreplayer.com/" href="http://www.coreplayer.com/" target="_blank">Click Here to download or view CorePlayer</a></p>
<p><img src="http://www.colinjensen.co.uk/blog/images/windows_mobile/coreplayer1.jpg" alt="Coreplayer YouTube browser" width="240" height="320" /><img src="http://www.colinjensen.co.uk/blog/images/windows_mobile/coreplayer2.jpg" alt="Detailed videos" width="240" height="320" /><img src="http://www.colinjensen.co.uk/blog/images/windows_mobile/coreplayer3.jpg" alt="Coreplayer playing a video" width="240" height="320" /><img src="http://www.colinjensen.co.uk/blog/images/windows_mobile/coreplayer4.jpg" alt="Coreplayer HTC Kaiser driver" width="240" height="320" /><img src="http://www.colinjensen.co.uk/blog/images/windows_mobile/coreplayer5.jpg" alt="Coreplayer Library" width="240" height="320" /></p>
<p class="addtoany_share_save">
    <a name="a2a_dd" onmouseover="a2a_show_dropdown(this)" onmouseout="a2a_onMouseOut_delay()" href="http://www.addtoany.com/bookmark?sitename=Colin%20Jensen&amp;siteurl=http%3A%2F%2Fwww.colinjensen.co.uk%2Fblog%2F&amp;linkname=The%20best%20media%20player%20for%20Windows%20Mobile&amp;linkurl=http%3A%2F%2Fwww.colinjensen.co.uk%2Fblog%2Fwindows-mobile%2Fthe-best-media-player-for-windows-mobile"><img src="http://www.colinjensen.co.uk/blog/wp-content/plugins/add-to-any/share_save_171_16.gif" width="171" height="16" border="0" alt="Share/Save/Bookmark"/></a>
    <script type="text/javascript">
		a2a_linkname="The best media player for Windows Mobile";
		a2a_linkurl="http://www.colinjensen.co.uk/blog/windows-mobile/the-best-media-player-for-windows-mobile";
				a2a_show_title=1;    </script>
    <script type="text/javascript" src="http://www.addtoany.com/menu/page.js"></script>

	</p><!-- google_ad_section_end -->]]></content:encoded>
			<wfw:commentRss>http://www.colinjensen.co.uk/blog/windows-mobile/the-best-media-player-for-windows-mobile/feed</wfw:commentRss>
		</item>
		<item>
		<title>Delete your computers history and temporary internet files</title>
		<link>http://www.colinjensen.co.uk/blog/tips-and-tricks/delete-your-computer-history-and-temporary-internet-files</link>
		<comments>http://www.colinjensen.co.uk/blog/tips-and-tricks/delete-your-computer-history-and-temporary-internet-files#comments</comments>
		<pubDate>Wed, 25 Jun 2008 11:56:17 +0000</pubDate>
		<dc:creator>Colin Jensen</dc:creator>
		
		<category><![CDATA[Tips and Tricks]]></category>

		<category><![CDATA[ccleaner]]></category>

		<category><![CDATA[computer]]></category>

		<category><![CDATA[computer cleanup]]></category>

		<category><![CDATA[delete]]></category>

		<category><![CDATA[delete cookies]]></category>

		<category><![CDATA[delete history]]></category>

		<category><![CDATA[delete temporary]]></category>

		<category><![CDATA[free]]></category>

		<category><![CDATA[free computer cleaner]]></category>

		<category><![CDATA[how to]]></category>

		<category><![CDATA[registry cleaner]]></category>

		<guid isPermaLink="false">http://www.colinjensen.co.uk/blog/?p=16</guid>
		<description><![CDATA[CCleaner is a free program that specializes in deleting all your computers history, temporary internet files and cookies. If you have never ran a clean up procedure before then you will be amazed in the amount of junk this will remove.
How to delete the temporary internet files, history and cookies.

Download CCleaner V2.08 installation here ( [...]]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p><a title="http://www.ccleaner.com/" href="http://www.ccleaner.com/" target="_blank">CCleaner</a> is a free program that specializes in deleting all your computers history, temporary internet files and cookies. If you have never ran a clean up procedure before then you will be amazed in the amount of junk this will remove.</p>
<p>How to delete the temporary internet files, history and cookies.</p>
<ol>
<li><a title="Download CCleaner" href="http://www.colinjensen.co.uk/blog/downloads/ccsetup208.exe" target="_blank">Download CCleaner V2.08 installation here</a> ( Latest version as of 25/06/2008 is v2.08 ) If you would like to check for the latest version then <a title="Download latest version of CCleaner" href="http://www.ccleaner.com/download/downloading" target="_blank">click here http://www.ccleaner.com/download/downloading</a></li>
<li>Once the file has downloaded, run the installation.<img src="http://www.colinjensen.co.uk/blog/images/ccleaner/ccleaner-install.jpg" alt="" width="503" height="386" /></li>
<li>Click Next &gt;</li>
<li>Accept the license agreement by clicking I Agree.</li>
<li>By default the installation will install <a title="http://www.ccleaner.com/" href="http://www.ccleaner.com/" target="_blank">CCleaner</a> into the program files, [<strong>RECOMMENDED</strong>] if you are happy with this click Next &gt;</li>
<li>The installation will try to install the Yahoo Tool bar and add some Windows Shell Extensions which are not required, However if you would like to support this great program then leave the Add <a title="http://www.ccleaner.com/" href="http://www.ccleaner.com/" target="_blank">CCleaner</a> Yahoo Tool bar ticked.  I personally would leave it not ticked as I hate unnecessary tool bars.<br />
<img src="http://www.colinjensen.co.uk/blog/images/ccleaner/untick.jpg" alt="" width="503" height="386" /></li>
<li>Click Install.</li>
<li>Click Finish - <a title="http://www.ccleaner.com/" href="http://www.ccleaner.com/" target="_blank">CCleaner</a> is now installed.</li>
<li>You can access <a title="http://www.ccleaner.com/" href="http://www.ccleaner.com/" target="_blank">CCleaner</a> from the Windows Desktop or from the Start Menu.</li>
<li>On Windows Desktop the icon will appear like this.<br />
<img src="http://www.colinjensen.co.uk/blog/images/ccleaner/icon.jpg" alt="CCleaner Icon" width="48" height="59" /></li>
<li>Double click <a title="http://www.ccleaner.com/" href="http://www.ccleaner.com/" target="_blank">CCleaner</a> on the Windows Desktop<img src="http://www.colinjensen.co.uk/blog/images/ccleaner/gui.jpg" alt="CCleaner Menu" /></li>
<li><strong>If you want to delete all history on the computer I would recommend ticking all the boxes, ignoring the warnings and then click Run Cleaner</strong></li>
</ol>
<p>If you let Internet Explorer remember search information, user names or passwords then I would recommend not ticking the &#8220;Autocomplete Form History&#8221; box.</p>
<p><a title="http://www.ccleaner.com/" href="http://www.ccleaner.com/" target="_blank">CCleaner</a> can also be used as a registry cleaner. Click the Registry icon in the menu to use this feature.</p>
<p>Thanks to <a title="http://www.piriform.com/" href="http://www.piriform.com/" target="_blank">Piriform Ltd.</a> for creating this great application.</p>
<p><strong>* CCleaner stands for Crap Cleaner <img src='http://www.colinjensen.co.uk/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </strong></p>
<p class="addtoany_share_save">
    <a name="a2a_dd" onmouseover="a2a_show_dropdown(this)" onmouseout="a2a_onMouseOut_delay()" href="http://www.addtoany.com/bookmark?sitename=Colin%20Jensen&amp;siteurl=http%3A%2F%2Fwww.colinjensen.co.uk%2Fblog%2F&amp;linkname=Delete%20your%20computers%20history%20and%20temporary%20internet%20files&amp;linkurl=http%3A%2F%2Fwww.colinjensen.co.uk%2Fblog%2Ftips-and-tricks%2Fdelete-your-computer-history-and-temporary-internet-files"><img src="http://www.colinjensen.co.uk/blog/wp-content/plugins/add-to-any/share_save_171_16.gif" width="171" height="16" border="0" alt="Share/Save/Bookmark"/></a>
    <script type="text/javascript">
		a2a_linkname="Delete your computers history and temporary internet files";
		a2a_linkurl="http://www.colinjensen.co.uk/blog/tips-and-tricks/delete-your-computer-history-and-temporary-internet-files";
				a2a_show_title=1;    </script>
    <script type="text/javascript" src="http://www.addtoany.com/menu/page.js"></script>

	</p><!-- google_ad_section_end -->]]></content:encoded>
			<wfw:commentRss>http://www.colinjensen.co.uk/blog/tips-and-tricks/delete-your-computer-history-and-temporary-internet-files/feed</wfw:commentRss>
		</item>
		<item>
		<title>Faceparty goes on strike!</title>
		<link>http://www.colinjensen.co.uk/blog/web-related/facepartycom-goes-on-strike</link>
		<comments>http://www.colinjensen.co.uk/blog/web-related/facepartycom-goes-on-strike#comments</comments>
		<pubDate>Tue, 24 Jun 2008 17:41:43 +0000</pubDate>
		<dc:creator>Colin Jensen</dc:creator>
		
		<category><![CDATA[Web Related]]></category>

		<category><![CDATA[24th June 2008]]></category>

		<category><![CDATA[faceparty strike]]></category>

		<category><![CDATA[faceparty.com]]></category>

		<category><![CDATA[strike]]></category>

		<guid isPermaLink="false">http://www.colinjensen.co.uk/blog/?p=15</guid>
		<description><![CDATA[Faceparty.com the social networking website, has gone on strike today against its users over people complaining about free features not being given to them -  Credits to Jack Thompson for pointing this out.
Click the image below to view what the Faceparty.com homepage said



Maybe the competition of Social networking sites is getting too much for Faceparty.com [...]]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p><a title="Faceparty.com" href="http://www.faceparty.com" target="_blank">Faceparty.com</a> the social networking website, has gone on strike today against its users over people complaining about free features not being given to them -  Credits to Jack Thompson for pointing this out.</p>
<p><strong><a title="Posted on 24/06/3008" href="http://www.colinjensen.co.uk/blog/images/fuck_the_haterz_large.gif" target="_blank">Click the image below to view what the Faceparty.com homepage said</a></strong><br />
<a title="Posted on 24/06/3008" href="http://www.colinjensen.co.uk/blog/images/fuck_the_haterz_large.gif" target="_blank"><br />
<img src="http://www.colinjensen.co.uk/blog/images/fuck_the_haterz.gif" alt="Faceparty.com's awesome English" /><br />
</a></p>
<p>Maybe the competition of Social networking sites is getting too much for <a title="Faceparty.com" href="http://www.faceparty.com" target="_blank">Faceparty.com</a> with the rising popularity of <a title="Facebook.com" href="http://www.facebook.com" target="_blank">Facebook</a>.</p>
<p class="addtoany_share_save">
    <a name="a2a_dd" onmouseover="a2a_show_dropdown(this)" onmouseout="a2a_onMouseOut_delay()" href="http://www.addtoany.com/bookmark?sitename=Colin%20Jensen&amp;siteurl=http%3A%2F%2Fwww.colinjensen.co.uk%2Fblog%2F&amp;linkname=Faceparty%20goes%20on%20strike%21&amp;linkurl=http%3A%2F%2Fwww.colinjensen.co.uk%2Fblog%2Fweb-related%2Ffacepartycom-goes-on-strike"><img src="http://www.colinjensen.co.uk/blog/wp-content/plugins/add-to-any/share_save_171_16.gif" width="171" height="16" border="0" alt="Share/Save/Bookmark"/></a>
    <script type="text/javascript">
		a2a_linkname="Faceparty goes on strike!";
		a2a_linkurl="http://www.colinjensen.co.uk/blog/web-related/facepartycom-goes-on-strike";
				a2a_show_title=1;    </script>
    <script type="text/javascript" src="http://www.addtoany.com/menu/page.js"></script>

	</p><!-- google_ad_section_end -->]]></content:encoded>
			<wfw:commentRss>http://www.colinjensen.co.uk/blog/web-related/facepartycom-goes-on-strike/feed</wfw:commentRss>
		</item>
		<item>
		<title>TomTom 7 for Windows Mobile</title>
		<link>http://www.colinjensen.co.uk/blog/windows-mobile/tomtom-7-for-windows-mobile</link>
		<comments>http://www.colinjensen.co.uk/blog/windows-mobile/tomtom-7-for-windows-mobile#comments</comments>
		<pubDate>Tue, 24 Jun 2008 16:36:14 +0000</pubDate>
		<dc:creator>Colin Jensen</dc:creator>
		
		<category><![CDATA[Windows Mobile]]></category>

		<category><![CDATA[TomTom 7]]></category>

		<category><![CDATA[tomtom screenshots]]></category>

		<category><![CDATA[xda-developers]]></category>

		<guid isPermaLink="false">http://www.colinjensen.co.uk/blog/?p=14</guid>
		<description><![CDATA[It has recently been reported over at xda-developers.com that TomTom 7 has been shipped with some HTC Diamond phones.  This has allowed users to extract the TomTom 7 and put it up for download.

Click here to view the article and download TomTom 7 for Windows Mobile
Resources
http://pocketnow.com/index.php?a=portal_detail&#38;t=news&#38;id=5471
http://forum.xda-developers.com/showthread.php?t=401679

    
    
		a2a_linkname="TomTom 7 [...]]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p>It has recently been reported over at <a title="http://forum.xda-developers.com/showthread.php?t=401679" href="http://forum.xda-developers.com/showthread.php?t=401679" target="_blank">xda-developers.com</a> that <a title="http://www.tomtom.com/" href="http://www.tomtom.com/" target="_blank">TomTom 7</a> has been shipped with some <a title="http://www.htc.com/www/product.aspx?id=46278" href="http://www.htc.com/www/product.aspx?id=46278" target="_blank">HTC Diamond phones</a>.  This has allowed users to extract the <a title="http://www.tomtom.com/" href="http://www.tomtom.com/" target="_blank">TomTom 7</a> and put it up for download.</p>
<p><img src="http://www.colinjensen.co.uk/blog/images/TomTom7.gif" alt="Screenshots of TomTom7" width="240" height="320" /></p>
<p><a title="http://forum.xda-developers.com/showthread.php?t=401679" href="http://forum.xda-developers.com/showthread.php?t=401679" target="_blank">Click here to view the article and download TomTom 7 for Windows Mobile</a></p>
<p><strong>Resources</strong></p>
<p><a title="http://pocketnow.com/index.php?a=portal_detail&amp;t=news&amp;id=5471" href="http://pocketnow.com/index.php?a=portal_detail&amp;t=news&amp;id=5471" target="_blank">http://pocketnow.com/index.php?a=portal_detail&amp;t=news&amp;id=5471</a></p>
<p><a title="http://forum.xda-developers.com/showthread.php?t=401679" href="http://forum.xda-developers.com/showthread.php?t=401679" target="_blank">http://forum.xda-developers.com/showthread.php?t=401679</a></p>
<p class="addtoany_share_save">
    <a name="a2a_dd" onmouseover="a2a_show_dropdown(this)" onmouseout="a2a_onMouseOut_delay()" href="http://www.addtoany.com/bookmark?sitename=Colin%20Jensen&amp;siteurl=http%3A%2F%2Fwww.colinjensen.co.uk%2Fblog%2F&amp;linkname=TomTom%207%20for%20Windows%20Mobile&amp;linkurl=http%3A%2F%2Fwww.colinjensen.co.uk%2Fblog%2Fwindows-mobile%2Ftomtom-7-for-windows-mobile"><img src="http://www.colinjensen.co.uk/blog/wp-content/plugins/add-to-any/share_save_171_16.gif" width="171" height="16" border="0" alt="Share/Save/Bookmark"/></a>
    <script type="text/javascript">
		a2a_linkname="TomTom 7 for Windows Mobile";
		a2a_linkurl="http://www.colinjensen.co.uk/blog/windows-mobile/tomtom-7-for-windows-mobile";
				a2a_show_title=1;    </script>
    <script type="text/javascript" src="http://www.addtoany.com/menu/page.js"></script>

	</p><!-- google_ad_section_end -->]]></content:encoded>
			<wfw:commentRss>http://www.colinjensen.co.uk/blog/windows-mobile/tomtom-7-for-windows-mobile/feed</wfw:commentRss>
		</item>
		<item>
		<title>Google Android for Windows Mobile</title>
		<link>http://www.colinjensen.co.uk/blog/windows-mobile/google-android-on-windows-mobile-6</link>
		<comments>http://www.colinjensen.co.uk/blog/windows-mobile/google-android-on-windows-mobile-6#comments</comments>
		<pubDate>Tue, 24 Jun 2008 16:00:52 +0000</pubDate>
		<dc:creator>Colin Jensen</dc:creator>
		
		<category><![CDATA[Windows Mobile]]></category>

		<category><![CDATA[android]]></category>

		<category><![CDATA[google android]]></category>

		<category><![CDATA[htc]]></category>

		<category><![CDATA[kaiser]]></category>

		<category><![CDATA[tytn II]]></category>

		<category><![CDATA[xda]]></category>

		<guid isPermaLink="false">http://www.colinjensen.co.uk/blog/?p=13</guid>
		<description><![CDATA[I have recently been testing Google Android on my HTC Kaiser mobile phone.
The HTC Kaiser may also be known as o2 XDA Stellar, MDA Vario III, HTC TyTN II etc.
It looks great however I cannot seem to get it to work with my wireless connection. So I am very limited to what I can do.  [...]]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p><img src="http://www.colinjensen.co.uk/blog/images/android.png" alt="Google Android" width="85" height="100" />I have recently been testing <a title="http://code.google.com/android/what-is-android.html" href="http://code.google.com/android/what-is-android.html" target="_blank">Google Android</a> on my <a title="What is a HTC Kaiser?" href="http://tytnseries.htc.com/">HTC Kaiser</a> mobile phone.</p>
<p>The <a title="What is a HTC Kaiser?" href="http://tytnseries.htc.com/">HTC Kaiser</a> may also be known as <a title="http://shop.o2.co.uk/mobile_phone/O2/Xda_Stellar" href="http://shop.o2.co.uk/mobile_phone/O2/Xda_Stellar" target="_blank">o2 XDA Stellar</a>, <a title="http://www.t-mobile.co.uk/shop/mobile-phones/phones/pay-monthly/t-mobile/mda-vario-iii/overview/" href="http://www.t-mobile.co.uk/shop/mobile-phones/phones/pay-monthly/t-mobile/mda-vario-iii/overview/" target="_blank">MDA Vario III</a>, <a title="http://www.tracyandmatt.co.uk/blogs/index.php/2007/09/07/htc_tytn_ii_review" href="http://www.tracyandmatt.co.uk/blogs/index.php/2007/09/07/htc_tytn_ii_review" target="_blank">HTC TyTN II</a> etc.</p>
<p>It looks great however I cannot seem to get it to work with my wireless connection. So I am very limited to what I can do.  There is many beta testers out there who have had much more success then I have and if you are interested in giving it a shot you can download all the relevant tools at the <a title="http://forum.xda-developers.com/showthread.php?t=396782" href="http://forum.xda-developers.com/showthread.php?t=396782" target="_blank">Xda-Developers forum</a>.  <a title="http://forum.xda-developers.com/showthread.php?t=396782" href="http://forum.xda-developers.com/showthread.php?t=396782" target="_blank">Click here to view the thread http://forum.xda-developers.com/showthread.php?t=396782</a></p>
<p>Here are some screenshots.</p>
<p><img src="http://www.colinjensen.co.uk/blog/images/android/android_browser_menu.png" alt="" width="332" height="492" /><img src="http://www.colinjensen.co.uk/blog/images/android/androidmenu.png" alt="" /></p>
<p><img src="http://www.colinjensen.co.uk/blog/images/android/android_home.png" alt="" width="333" height="493" /><img src="http://www.colinjensen.co.uk/blog/images/android/android_maps_menu.png" alt="Google Maps" /></p>
<p>For more screenshots visit here <a href="http://pics.roffnoppe.de/android-m5/" target="_blank">http://pics.roffnoppe.de/android-m5/</a></p>
<p><strong>Resources</strong></p>
<p><a title="http://forum.xda-developers.com/showthread.php?t=396782" href="http://forum.xda-developers.com/showthread.php?t=396782">http://forum.xda-developers.com/showthread.php?t=396782</a></p>
<p class="addtoany_share_save">
    <a name="a2a_dd" onmouseover="a2a_show_dropdown(this)" onmouseout="a2a_onMouseOut_delay()" href="http://www.addtoany.com/bookmark?sitename=Colin%20Jensen&amp;siteurl=http%3A%2F%2Fwww.colinjensen.co.uk%2Fblog%2F&amp;linkname=Google%20Android%20for%20Windows%20Mobile&amp;linkurl=http%3A%2F%2Fwww.colinjensen.co.uk%2Fblog%2Fwindows-mobile%2Fgoogle-android-on-windows-mobile-6"><img src="http://www.colinjensen.co.uk/blog/wp-content/plugins/add-to-any/share_save_171_16.gif" width="171" height="16" border="0" alt="Share/Save/Bookmark"/></a>
    <script type="text/javascript">
		a2a_linkname="Google Android for Windows Mobile";
		a2a_linkurl="http://www.colinjensen.co.uk/blog/windows-mobile/google-android-on-windows-mobile-6";
				a2a_show_title=1;    </script>
    <script type="text/javascript" src="http://www.addtoany.com/menu/page.js"></script>

	</p><!-- google_ad_section_end -->]]></content:encoded>
			<wfw:commentRss>http://www.colinjensen.co.uk/blog/windows-mobile/google-android-on-windows-mobile-6/feed</wfw:commentRss>
		</item>
		<item>
		<title>Knight Rider GPS System with authentic KITT voice</title>
		<link>http://www.colinjensen.co.uk/blog/gadgets/knight-rider-gps-system-with-authentic-kitt-voice</link>
		<comments>http://www.colinjensen.co.uk/blog/gadgets/knight-rider-gps-system-with-authentic-kitt-voice#comments</comments>
		<pubDate>Tue, 24 Jun 2008 13:08:10 +0000</pubDate>
		<dc:creator>Colin Jensen</dc:creator>
		
		<category><![CDATA[Gadgets]]></category>

		<category><![CDATA[gps]]></category>

		<category><![CDATA[gps system]]></category>

		<category><![CDATA[kitt voice]]></category>

		<category><![CDATA[knight rider]]></category>

		<category><![CDATA[William Daniels]]></category>

		<guid isPermaLink="false">http://www.colinjensen.co.uk/blog/?p=12</guid>
		<description><![CDATA[I used to LOVE watching Knight Rider as a kid and I still do now!  That is why I have posted an article on this great gadget.



Creator: MIO
It’s fun from the first time you hit the power switch,  KITT instantly asks you “Hello Michael, where do you want to go today?”
Using the authentic William [...]]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p>I used to LOVE watching Knight Rider as a kid and I still do now! <img src='http://www.colinjensen.co.uk/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> That is why I have posted an article on this great gadget.</p>
<p><img src="http://www.colinjensen.co.uk/blog/images/kit/front.jpg" alt="MIO.com" width="480" height="332" /></p>
<p><img src="http://www.colinjensen.co.uk/blog/images/kit/MIO_Knight_Rider_GPS_1.jpg" alt="mio.com" width="480" height="315" /></p>
<p><img src="http://www.colinjensen.co.uk/blog/images/kit/Mio_Knight_Rider_GPS_2.jpg" alt="mio.com" /></p>
<p>Creator: <a title="http://www.mio.com/" href="http://www.mio.com/" target="_blank">MIO</a></p>
<p>It’s fun from the first time you hit the power switch,  KITT instantly asks you “Hello Michael, where do you want to go today?”</p>
<p>Using the authentic William Daniels voice!</p>
<p>This unit is not available yet, price is expected to come in at £140.  <a title="http://www.mio.com/" href="http://www.mio.com/" target="_blank">Mio</a> are yet to release any actual hard details on the GPS’ capabilities - mapping, media playback, that sort of thing - since they know that all we care about is KITT&#8217;s voice.</p>
<p>For more information on this item <a title="http://www.mio.com/" href="http://www.mio.com/" target="_blank">Click Here</a></p>
<p><strong>Resources</strong></p>
<p><a title="http://www.slashgear.com/mio-knight-rider-gps-with-authentic-kitt-voice-2312200.php" href="http://www.slashgear.com/mio-knight-rider-gps-with-authentic-kitt-voice-2312200.php">http://www.slashgear.com/mio-knight-rider-gps-with-authentic-kitt-voice-2312200.php</a></p>
<p class="addtoany_share_save">
    <a name="a2a_dd" onmouseover="a2a_show_dropdown(this)" onmouseout="a2a_onMouseOut_delay()" href="http://www.addtoany.com/bookmark?sitename=Colin%20Jensen&amp;siteurl=http%3A%2F%2Fwww.colinjensen.co.uk%2Fblog%2F&amp;linkname=Knight%20Rider%20GPS%20System%20with%20authentic%20KITT%20voice&amp;linkurl=http%3A%2F%2Fwww.colinjensen.co.uk%2Fblog%2Fgadgets%2Fknight-rider-gps-system-with-authentic-kitt-voice"><img src="http://www.colinjensen.co.uk/blog/wp-content/plugins/add-to-any/share_save_171_16.gif" width="171" height="16" border="0" alt="Share/Save/Bookmark"/></a>
    <script type="text/javascript">
		a2a_linkname="Knight Rider GPS System with authentic KITT voice";
		a2a_linkurl="http://www.colinjensen.co.uk/blog/gadgets/knight-rider-gps-system-with-authentic-kitt-voice";
				a2a_show_title=1;    </script>
    <script type="text/javascript" src="http://www.addtoany.com/menu/page.js"></script>

	</p><!-- google_ad_section_end -->]]></content:encoded>
			<wfw:commentRss>http://www.colinjensen.co.uk/blog/gadgets/knight-rider-gps-system-with-authentic-kitt-voice/feed</wfw:commentRss>
		</item>
		<item>
		<title>Facebook overtakes Myspace</title>
		<link>http://www.colinjensen.co.uk/blog/web-related/facebook-overtakes-myspace</link>
		<comments>http://www.colinjensen.co.uk/blog/web-related/facebook-overtakes-myspace#comments</comments>
		<pubDate>Tue, 24 Jun 2008 11:42:50 +0000</pubDate>
		<dc:creator>Colin Jensen</dc:creator>
		
		<category><![CDATA[Web Related]]></category>

		<category><![CDATA[beats myspace]]></category>

		<category><![CDATA[comspace]]></category>

		<category><![CDATA[facebook]]></category>

		<category><![CDATA[facebook overtakes myspace]]></category>

		<category><![CDATA[hits]]></category>

		<category><![CDATA[myspace]]></category>

		<guid isPermaLink="false">http://www.colinjensen.co.uk/blog/?p=11</guid>
		<description><![CDATA[According to comScore, Facebook pulled in 123.9 million unique visitors in May, beating MySpace&#8217;s 114.6 million.  Facebook is growing at a rapid rate!
* comScore is an internet marketing research company that provides marketing data and services to many of the internet&#8217;s largest businesses.
Take a look at the statistics below. (Click the image to view a [...]]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p>According to <a title="WikiPedia on ComScore" href="http://en.wikipedia.org/wiki/ComScore" target="_blank">comScore</a>, <a title="facebook.com" href="http://www.facebook.com" target="_blank">Facebook</a> pulled in 123.9 million unique visitors in May, beating <a title="myspace.com" href="http://www.myspace.com" target="_blank">MySpace&#8217;s</a> 114.6 million.  Facebook is growing at a rapid rate!</p>
<p>* <strong><span><a title="WikiPedia on ComScore" href="http://en.wikipedia.org/wiki/ComScore" target="_blank">comScore</a> is an internet marketing research company that provides marketing data and services to many of the internet&#8217;s largest businesses.</span></strong></p>
<p>Take a look at the statistics below. (<strong>Click the image to view a larger copy</strong>)</p>
<p><a title="SnapShot of Facebook.com" href="http://siteanalytics.compete.com/facebook.com+myspace.com?metric=vel" target="_blank"><img src="http://www.colinjensen.co.uk/blog/images/facebook.jpg" alt="" /></a></p>
<p class="addtoany_share_save">
    <a name="a2a_dd" onmouseover="a2a_show_dropdown(this)" onmouseout="a2a_onMouseOut_delay()" href="http://www.addtoany.com/bookmark?sitename=Colin%20Jensen&amp;siteurl=http%3A%2F%2Fwww.colinjensen.co.uk%2Fblog%2F&amp;linkname=Facebook%20overtakes%20Myspace&amp;linkurl=http%3A%2F%2Fwww.colinjensen.co.uk%2Fblog%2Fweb-related%2Ffacebook-overtakes-myspace"><img src="http://www.colinjensen.co.uk/blog/wp-content/plugins/add-to-any/share_save_171_16.gif" width="171" height="16" border="0" alt="Share/Save/Bookmark"/></a>
    <script type="text/javascript">
		a2a_linkname="Facebook overtakes Myspace";
		a2a_linkurl="http://www.colinjensen.co.uk/blog/web-related/facebook-overtakes-myspace";
				a2a_show_title=1;    </script>
    <script type="text/javascript" src="http://www.addtoany.com/menu/page.js"></script>

	</p><!-- google_ad_section_end -->]]></content:encoded>
			<wfw:commentRss>http://www.colinjensen.co.uk/blog/web-related/facebook-overtakes-myspace/feed</wfw:commentRss>
		</item>
		<item>
		<title>NASA digs up ice on Mars and its evaporated!</title>
		<link>http://www.colinjensen.co.uk/blog/interesting/nasa-digs-up-ice-on-mars-and-it-evaporated</link>
		<comments>http://www.colinjensen.co.uk/blog/interesting/nasa-digs-up-ice-on-mars-and-it-evaporated#comments</comments>
		<pubDate>Mon, 23 Jun 2008 22:46:10 +0000</pubDate>
		<dc:creator>Colin Jensen</dc:creator>
		
		<category><![CDATA[Interesting]]></category>

		<category><![CDATA[ice evaporated]]></category>

		<category><![CDATA[ice on mars]]></category>

		<category><![CDATA[mars]]></category>

		<category><![CDATA[nasa]]></category>

		<category><![CDATA[opportunity rover]]></category>

		<category><![CDATA[pheonix spacecraft]]></category>

		<category><![CDATA[spirit rover]]></category>

		<category><![CDATA[water on mars]]></category>

		<guid isPermaLink="false">http://www.colinjensen.co.uk/blog/?p=10</guid>
		<description><![CDATA[Did you know NASA currently has two rovers (Spirit rover and Opportunity rover) and one lander (Phoenix Spacecraft) on Mars.
The Phoenix spacecraft landed on Mars on the 25th May 2008 and recently beamed back images of a trench dug up by its Robotic Arm.
The colour images were acquired by NASA&#8217;s Phoenix Mars Lander&#8217;s Surface Stereo [...]]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p><strong>Did you know</strong> NASA currently has two rovers (<a title="Spit Rover at Wikipedia" href="http://en.wikipedia.org/wiki/Spirit_rover" target="_blank">Spirit rover</a> and <a title="Opportunity rover at WikiPedia" href="http://en.wikipedia.org/wiki/Opportunity_rover" target="_blank">Opportunity rover</a>) and one lander (<a title="Phoenix Spacecraft at Wikipedia" href="http://en.wikipedia.org/wiki/Phoenix_Spacecraft" target="_blank">Phoenix Spacecraft</a>) on Mars.</p>
<p>The Phoenix spacecraft landed on Mars on the 25th May 2008 and recently beamed back images of a trench dug up by its Robotic Arm.</p>
<p>The colour images were acquired by NASA&#8217;s Phoenix Mars Lander&#8217;s Surface Stereo Imager on the 21st and 25th days of the mission, or Sols 20 and 24 (June 15 and 19, 2008).</p>
<p><strong>* A sol is a term used to refer to the duration of a solar day on Mars = 24 hours, 39 minutes, and 35.244 seconds</strong></p>
<p>These images show ice in the trench informally called &#8220;Dodo-Goldilocks&#8221; over the course of four days.<br />
In the lower left corner of the left image, a group of lumps is visible. In the right image, the lumps have disappeared, similar to the process of evaporation.</p>
<p><img src="http://www.colinjensen.co.uk/blog/images/mars/ice-mars.jpg" alt="Ice on mars!" width="516" height="578" /></p>
<p>To view more information regarding ice on Mars <a title="NASA - Phoenix Homepage" href="http://www.nasa.gov/mission_pages/phoenix/main/index.html" target="_blank">Click here</a></p>
<p><strong>Other Interesting facts about Mars</strong></p>
<p>The Spirit rover landed on Mars on the 4th January 2004 and it lasted 779 sols (This rover is no longer operation due to equipment failures, it can only be used to brush targets)</p>
<p>The Opportunity rover landed on Mars on the 25th January 2004 and is still functional however there is a lot of dust on its solar panels which is causing problems, it is also experiencing equipment failures.</p>
<p>Both Spirit and Opportunity took stunning photos of Mars.</p>
<p><strong>Click the image to view a larger version.</strong></p>
<p><a href="http://www.colinjensen.co.uk/blog/images/mars/large1.jpg" target="_blank"><img src="http://www.colinjensen.co.uk/blog/images/mars/small1.jpg" alt="Taken by Opportunity" width="600" height="244" /></a><br />
To view more photos including high definition photos of Mars <a title="http://en.wikipedia.org/wiki/Mars" href="http://en.wikipedia.org/wiki/Mars" target="_blank">Click here</a></p>
<p>To read more about <a title="Exploration of Mars" href="http://en.wikipedia.org/wiki/Exploration_of_Mars" target="_blank">Mars Exploration missions Click here</a></p>
<p><strong>Resources</strong></p>
<p><a title="http://www.nasa.gov/mission_pages/phoenix/main/index.html" href="http://www.nasa.gov/mission_pages/phoenix/main/index.html" target="_blank">http://www.nasa.gov/mission_pages/phoenix/main/index.html</a></p>
<p><a title="http://en.wikipedia.org/wiki/Exploration_of_Mars" href="http://en.wikipedia.org/wiki/Exploration_of_Mars" target="_blank">http://en.wikipedia.org/wiki/Exploration_of_Mars</a></p>
<p><a title="http://en.wikipedia.org/wiki/Mars" href="http://en.wikipedia.org/wiki/Mars" target="_blank">http://en.wikipedia.org/wiki/Mars</a></p>
<p><strong>All Materials are Copyright of their Respective Rightful Owners.</strong></p>
<p class="addtoany_share_save">
    <a name="a2a_dd" onmouseover="a2a_show_dropdown(this)" onmouseout="a2a_onMouseOut_delay()" href="http://www.addtoany.com/bookmark?sitename=Colin%20Jensen&amp;siteurl=http%3A%2F%2Fwww.colinjensen.co.uk%2Fblog%2F&amp;linkname=NASA%20digs%20up%20ice%20on%20Mars%20and%20its%20evaporated%21&amp;linkurl=http%3A%2F%2Fwww.colinjensen.co.uk%2Fblog%2Finteresting%2Fnasa-digs-up-ice-on-mars-and-it-evaporated"><img src="http://www.colinjensen.co.uk/blog/wp-content/plugins/add-to-any/share_save_171_16.gif" width="171" height="16" border="0" alt="Share/Save/Bookmark"/></a>
    <script type="text/javascript">
		a2a_linkname="NASA digs up ice on Mars and its evaporated!";
		a2a_linkurl="http://www.colinjensen.co.uk/blog/interesting/nasa-digs-up-ice-on-mars-and-it-evaporated";
				a2a_show_title=1;    </script>
    <script type="text/javascript" src="http://www.addtoany.com/menu/page.js"></script>

	</p><!-- google_ad_section_end -->]]></content:encoded>
			<wfw:commentRss>http://www.colinjensen.co.uk/blog/interesting/nasa-digs-up-ice-on-mars-and-it-evaporated/feed</wfw:commentRss>
		</item>
	</channel>
</rss>
