<?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 Cook</title>
	<atom:link href="http://simoncook.org/feed/" rel="self" type="application/rss+xml" />
	<link>http://simoncook.org</link>
	<description>The future is... on a CD? Now where&#039;s that blasted disc gone?</description>
	<lastBuildDate>Sun, 21 Feb 2010 21:40:48 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0-alpha</generator>
		<item>
		<title>Riddle of the Month&#8230; February 2010 (Infinity)</title>
		<link>http://simoncook.org/blog/2010/02/riddle-of-the-month-february-2010-infinity/</link>
		<comments>http://simoncook.org/blog/2010/02/riddle-of-the-month-february-2010-infinity/#comments</comments>
		<pubDate>Sun, 21 Feb 2010 21:28:58 +0000</pubDate>
		<dc:creator>Si</dc:creator>
				<category><![CDATA[Random]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[infinity]]></category>
		<category><![CDATA[maths]]></category>
		<category><![CDATA[riddle]]></category>

		<guid isPermaLink="false">http://simoncook.org/?p=415</guid>
		<description><![CDATA[If I get one of these a month, then it will be monthly. If I don&#8217;t then it will be just a one off. But here is your Riddle of the Month&#8230; Infinity
If Infinity = Infinity
and Infinity+1 = Infinity
and 0-Infinity = -Infinity
What is Infinity-Infinity?
Answers in the comments please.  
]]></description>
			<content:encoded><![CDATA[<a class="google_buzz"  
href="http://www.google.com/reader/link?url=http://simoncook.org/blog/2010/02/riddle-of-the-month-february-2010-infinity/&title=Riddle+of+the+Month&#8230;+February+2010+(Infinity)&srcURL=http://simoncook.org" target="_blank" rel="nofollow"><img
src="http://simoncook.org/wordpress/wp-content/plugins/google-buzz-button/images/google-buzz.png" alt="Google Buzz" /></a><p>If I get one of these a month, then it will be monthly. If I don&#8217;t then it will be just a one off. But here is your Riddle of the Month&#8230; <em>Infinity</em></p>
<p style="font-size: large; font-style: italic; font-variant: small-caps;">If Infinity = Infinity<br />
and Infinity+1 = Infinity<br />
and 0-Infinity = -Infinity<br />
What is Infinity-Infinity?</p>
<p>Answers in the comments please. <img src='http://simoncook.org/wordpress/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://simoncook.org/blog/2010/02/riddle-of-the-month-february-2010-infinity/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Pulling random data from /dev/random</title>
		<link>http://simoncook.org/blog/2010/02/pulling-random-data-from-devrandom/</link>
		<comments>http://simoncook.org/blog/2010/02/pulling-random-data-from-devrandom/#comments</comments>
		<pubDate>Wed, 17 Feb 2010 06:55:44 +0000</pubDate>
		<dc:creator>Si</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[/dev/random]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[password]]></category>
		<category><![CDATA[Random]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[shell]]></category>

		<guid isPermaLink="false">http://simoncook.org/?p=408</guid>
		<description><![CDATA[This is a shell script that will pull 5 random characters from /dev/random and print them out to standard output. It was created as the input component for a random password generator that I am currently writing.
Note on using /dev/random: as usual, using this source for entropy will give you pure randomness, though due to [...]]]></description>
			<content:encoded><![CDATA[<a class="google_buzz"  
href="http://www.google.com/reader/link?url=http://simoncook.org/blog/2010/02/pulling-random-data-from-devrandom/&title=Pulling+random+data+from+/dev/random&srcURL=http://simoncook.org" target="_blank" rel="nofollow"><img
src="http://simoncook.org/wordpress/wp-content/plugins/google-buzz-button/images/google-buzz.png" alt="Google Buzz" /></a><p>This is a shell script that will pull 5 random characters from /dev/random and print them out to standard output. It was created as the input component for a random password generator that I am currently writing.</p>
<p><strong>Note on using /dev/random</strong>: as usual, using this source for entropy will give you pure randomness, though due to the nature of the random source (see <a href="http://en.wikipedia.org/wiki//dev/random">Wikipedia entry on /dev/random</a>) the script may sometimes lock up and fail to generate a complete output, as it has run out of randomness. If you are intending to use this alot, then it is advised to use /dev/urandom that doesn&#8217;t block, although that comes at the cost of a small bit of entropy.<br />
<span id="more-408"></span></p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#!/bin/bash</span>
<span style="color: #666666; font-style: italic;"># Script for pulling x characters from a random source</span>
<span style="color: #666666; font-style: italic;">#   and prints them out to stdout</span>
<span style="color: #666666; font-style: italic;"># Version 1.0.0</span>
<span style="color: #666666; font-style: italic;"># By Simon Cook (http://simoncook.org)</span>
&nbsp;
<span style="color: #666666; font-style: italic;"># Fill in the two variables below</span>
<span style="color: #666666; font-style: italic;">#  &quot;entropy&quot; is the source of randomness</span>
<span style="color: #666666; font-style: italic;">#  &quot;chars&quot; is the number of chars we want</span>
<span style="color: #007800;">entropy</span>=<span style="color: #000000; font-weight: bold;">/</span>dev<span style="color: #000000; font-weight: bold;">/</span>random
<span style="color: #007800;">chars</span>=<span style="color: #000000;">5</span>
&nbsp;
<span style="color: #666666; font-style: italic;"># Pull x characters from source</span>
<span style="color: #007800;">i</span>=<span style="color: #000000;">0</span>
<span style="color: #000000; font-weight: bold;">while</span> <span style="color: #c20cb9; font-weight: bold;">read</span> <span style="color: #660033;">-r</span> <span style="color: #660033;">-n1</span> char
<span style="color: #000000; font-weight: bold;">do</span>
    <span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #660033;">-n</span> <span style="color: #ff0000;">&quot;<span style="color: #007800;">$char</span>&quot;</span>
    <span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #7a0874; font-weight: bold;">&#40;</span> i++ <span style="color: #7a0874; font-weight: bold;">&#41;</span><span style="color: #7a0874; font-weight: bold;">&#41;</span>
<span style="color: #000000; font-weight: bold;">if</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span> <span style="color: #ff0000;">&quot;<span style="color: #007800;">$i</span>&quot;</span> <span style="color: #660033;">-eq</span> <span style="color: #ff0000;">&quot;<span style="color: #007800;">$chars</span>&quot;</span> <span style="color: #7a0874; font-weight: bold;">&#93;</span>; <span style="color: #000000; font-weight: bold;">then</span>
   <span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;&quot;</span>
   <span style="color: #7a0874; font-weight: bold;">exit</span> <span style="color: #000000;">0</span>
<span style="color: #000000; font-weight: bold;">fi</span>
<span style="color: #000000; font-weight: bold;">done</span> <span style="color: #000000; font-weight: bold;">&amp;</span>lt; <span style="color: #ff0000;">&quot;<span style="color: #007800;">$entropy</span>&quot;</span></pre></div></div>

<p><strong> Licensing:</strong> This small script is released under the CC-GNU GPL licence.</p>
<p><!-- Creative Commons License --><br />
<a href="http://creativecommons.org/licenses/GPL/2.0/"><br />
<img src="http://creativecommons.org/images/public/cc-GPL-a.png" border="0" alt="CC-GNU GPL" /></a><!-- /Creative Commons License -->.</p>
]]></content:encoded>
			<wfw:commentRss>http://simoncook.org/blog/2010/02/pulling-random-data-from-devrandom/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>tchs.eu &#8211; The Little URL Shrinker that could</title>
		<link>http://simoncook.org/blog/2010/02/tchs-eu-the-little-url-shrinker-that-could/</link>
		<comments>http://simoncook.org/blog/2010/02/tchs-eu-the-little-url-shrinker-that-could/#comments</comments>
		<pubDate>Tue, 09 Feb 2010 22:55:21 +0000</pubDate>
		<dc:creator>Si</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[techious]]></category>
		<category><![CDATA[bit.ly]]></category>
		<category><![CDATA[pro]]></category>
		<category><![CDATA[Short URL]]></category>
		<category><![CDATA[tchs.eu]]></category>

		<guid isPermaLink="false">http://simoncook.org/?p=375</guid>
		<description><![CDATA[Right, well this will only be of interest to a few you, and even a smaller set of those will know what this is all about. Some time ago I created tchs.eu, a small URL shortener just like any other. Think of it as a Techious branded tinyurl.com. And for a while things were good. [...]]]></description>
			<content:encoded><![CDATA[<a class="google_buzz"  
href="http://www.google.com/reader/link?url=http://simoncook.org/blog/2010/02/tchs-eu-the-little-url-shrinker-that-could/&title=tchs.eu+&#8211;+The+Little+URL+Shrinker+that+could&srcURL=http://simoncook.org" target="_blank" rel="nofollow"><img
src="http://simoncook.org/wordpress/wp-content/plugins/google-buzz-button/images/google-buzz.png" alt="Google Buzz" /></a><p>Right, well this will only be of interest to a few you, and even a smaller set of those will know what this is all about. Some time ago I created tchs.eu, a small URL shortener just like any other. Think of it as a Techious branded tinyurl.com. And for a while things were good. But, as is the way with all good things in the tech world, good is not good enough. Things always need to be better than they currently are.</p>
<p>Then came along bitly.Pro, and all was better. It has more sophisticated tracking, allowed us to use it basically anywhere in any application. However there have been a few downsides to this. bitly.Pro accounts (from what I can tell) act just like any bit.ly account so <a href="http://bit.ly/mylink">http://bit.ly/mylink</a> and <a href="http://tchs.eu/mylink">http://tchs.eu/mylink</a> go to the same place. This does however mean that all previous tchs.eu links are now null and void. Sorry about that, that&#8217;s the cost for progress, but I&#8217;m about 99% sure that we&#8217;ll never have to do something like that again. Unless bit.ly goes bust or something, but I doubt that would happen.</p>
<p><span id="more-375"></span></p>
<p>Also, this currently means that only I have the power to create tchs.eu links. The way bitly.Pro accounts work is that a custom domain can be used by only one user account, any links I create automatically become tchs.eu links, but only I can create them. Though there is a fix to that, which you will be able to see soon. Thanks to the power of the bit.ly API (well any API really), I can create a nice little wrapper that gives any user (I decide) on the SpcookCMS platform access to create links without giving them my username and password. Woot!</p>
<p>So that&#8217;s the story about everything that&#8217;s happened to tchs.eu lately. But rest assured, any links created since Feb 1st 2010 will still work, and should still work for the forseeable future. Oh yeah, have a screenshot <img src='http://simoncook.org/wordpress/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<div id="attachment_376" class="wp-caption aligncenter" style="width: 636px"><a href="http://simoncook.org/uploads/2010/02/bitlypro.png" rel="lightbox[375]"><img class="size-large wp-image-376 " title="bitly.Pro Dashboard" src="http://simoncook.org/uploads/2010/02/bitlypro-782x1024.png" alt="bitly.Pro Dashboard" width="626" height="819" /></a><p class="wp-caption-text">bitly.Pro Dashboard</p></div>
<p>Note: For those interested, the tchs.eu link for this blog post is <a href="http://tchs.eu/ddyB23">http://tchs.eu/ddyB23</a> xD</p>
]]></content:encoded>
			<wfw:commentRss>http://simoncook.org/blog/2010/02/tchs-eu-the-little-url-shrinker-that-could/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Is that Tiberium in this product?</title>
		<link>http://simoncook.org/blog/2010/01/is-that-tiberium-in-this-product/</link>
		<comments>http://simoncook.org/blog/2010/01/is-that-tiberium-in-this-product/#comments</comments>
		<pubDate>Tue, 19 Jan 2010 22:29:22 +0000</pubDate>
		<dc:creator>Si</dc:creator>
				<category><![CDATA[Random]]></category>
		<category><![CDATA[CnC]]></category>
		<category><![CDATA[game]]></category>
		<category><![CDATA[sure]]></category>
		<category><![CDATA[tiberium]]></category>

		<guid isPermaLink="false">http://simoncook.org/?p=364</guid>
		<description><![CDATA[I came across this originally walking around Town, and thought &#8220;WTF is that Tiberium!?&#8221; and thought that maybe people here would be interested to see what looks like Tiberium in the real world. If you don&#8217;t know what Tiberium is, then I&#8217;m guessing you haven&#8217;t played any of the main Command &#38; Conquer games.
Note: Sorry [...]]]></description>
			<content:encoded><![CDATA[<a class="google_buzz"  
href="http://www.google.com/reader/link?url=http://simoncook.org/blog/2010/01/is-that-tiberium-in-this-product/&title=Is+that+Tiberium+in+this+product?&srcURL=http://simoncook.org" target="_blank" rel="nofollow"><img
src="http://simoncook.org/wordpress/wp-content/plugins/google-buzz-button/images/google-buzz.png" alt="Google Buzz" /></a><p>I came across this originally walking around Town, and thought &#8220;WTF is that Tiberium!?&#8221; and thought that maybe people here would be interested to see what looks like Tiberium in the real world. If you don&#8217;t know what Tiberium is, then I&#8217;m guessing you haven&#8217;t played any of the main Command &amp; Conquer games.</p>
<div id="attachment_363" class="wp-caption aligncenter" style="width: 596px"><a href="http://simoncook.org/uploads/2010/01/ohsh1ttiberium.png" rel="lightbox[364]"><img class="size-full wp-image-363 " title="ohsh1ttiberium" src="http://simoncook.org/uploads/2010/01/ohsh1ttiberium.png" alt="" width="586" height="454" /></a><p class="wp-caption-text">Is this Tiberium at the bottom of the image?</p></div>
<p>Note: Sorry to the people at Sure, I don&#8217;t mean to pull your products apart <img src='http://simoncook.org/wordpress/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<p><strong>Edit: </strong>Here&#8217;s a link about Tiberium on Wikipedia for those who don&#8217;t know. <a href="http://en.wikipedia.org/wiki/Tiberium">http://en.wikipedia.org/wiki/Tiberium</a></p>
]]></content:encoded>
			<wfw:commentRss>http://simoncook.org/blog/2010/01/is-that-tiberium-in-this-product/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Some Fun with A Telephoto Lens&#8230;</title>
		<link>http://simoncook.org/blog/2010/01/some-fun-with-a-telephoto-lens/</link>
		<comments>http://simoncook.org/blog/2010/01/some-fun-with-a-telephoto-lens/#comments</comments>
		<pubDate>Tue, 12 Jan 2010 17:37:17 +0000</pubDate>
		<dc:creator>Si</dc:creator>
				<category><![CDATA[Photos]]></category>
		<category><![CDATA[e-500]]></category>
		<category><![CDATA[olympus]]></category>
		<category><![CDATA[slr]]></category>
		<category><![CDATA[telephoto]]></category>
		<category><![CDATA[zoom]]></category>

		<guid isPermaLink="false">http://simoncook.org/?p=349</guid>
		<description><![CDATA[As promised in my previous thread&#8230; I was going to upload some pictures that I took with my dads SLR with its telephoto lens on. On here are only 800px resizes, but I think you can view bigger versions on my Flickr feed, or at the very least when I get my gallery back up [...]]]></description>
			<content:encoded><![CDATA[<a class="google_buzz"  
href="http://www.google.com/reader/link?url=http://simoncook.org/blog/2010/01/some-fun-with-a-telephoto-lens/&title=Some+Fun+with+A+Telephoto+Lens&#8230;&srcURL=http://simoncook.org" target="_blank" rel="nofollow"><img
src="http://simoncook.org/wordpress/wp-content/plugins/google-buzz-button/images/google-buzz.png" alt="Google Buzz" /></a><p>As promised in my previous thread&#8230; I was going to upload some pictures that I took with my dads SLR with its telephoto lens on. On here are only 800px resizes, but I think you can view bigger versions on my Flickr feed, or at the very least when I get my gallery back up and running you will see some nice images.</p>
<p>Comments either here or on the pics <img src='http://simoncook.org/wordpress/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>

<a href='http://simoncook.org/blog/2010/01/some-fun-with-a-telephoto-lens/p1123037/' title='I can see the Hospital from here'><img width="150" height="150" src="http://simoncook.org/wordpress/uploads/2010/01/P1123037-150x150.jpg" class="attachment-thumbnail" alt="" title="I can see the Hospital from here" /></a>
<a href='http://simoncook.org/blog/2010/01/some-fun-with-a-telephoto-lens/p1123092/' title='Snow Ball'><img width="150" height="150" src="http://simoncook.org/wordpress/uploads/2010/01/P1123092-150x150.jpg" class="attachment-thumbnail" alt="" title="Snow Ball" /></a>
<a href='http://simoncook.org/blog/2010/01/some-fun-with-a-telephoto-lens/p1123112/' title='Plant in front of house'><img width="150" height="150" src="http://simoncook.org/wordpress/uploads/2010/01/P1123112-150x150.jpg" class="attachment-thumbnail" alt="" title="Plant in front of house" /></a>
<a href='http://simoncook.org/blog/2010/01/some-fun-with-a-telephoto-lens/p1123140/' title='Close up of tree branches'><img width="150" height="150" src="http://simoncook.org/wordpress/uploads/2010/01/P1123140-150x150.jpg" class="attachment-thumbnail" alt="" title="Close up of tree branches" /></a>
<a href='http://simoncook.org/blog/2010/01/some-fun-with-a-telephoto-lens/p1123192/' title='Zoom up on Snow'><img width="150" height="150" src="http://simoncook.org/wordpress/uploads/2010/01/P1123192-150x150.jpg" class="attachment-thumbnail" alt="" title="Zoom up on Snow" /></a>
<a href='http://simoncook.org/blog/2010/01/some-fun-with-a-telephoto-lens/p1123219/' title='Berries'><img width="150" height="150" src="http://simoncook.org/wordpress/uploads/2010/01/P1123219-150x150.jpg" class="attachment-thumbnail" alt="" title="Berries" /></a>

]]></content:encoded>
			<wfw:commentRss>http://simoncook.org/blog/2010/01/some-fun-with-a-telephoto-lens/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The #uksnow of January 2010</title>
		<link>http://simoncook.org/blog/2010/01/the-uksnow-of-january-2010/</link>
		<comments>http://simoncook.org/blog/2010/01/the-uksnow-of-january-2010/#comments</comments>
		<pubDate>Tue, 12 Jan 2010 17:36:18 +0000</pubDate>
		<dc:creator>Si</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[Photos]]></category>
		<category><![CDATA[snow]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[uksnow]]></category>

		<guid isPermaLink="false">http://simoncook.org/?p=332</guid>
		<description><![CDATA[Now, living in the UK, along with a lot of people, there was  a bit of snow here. Apparently, it is the most in over 40 years. I say is, I mean it&#8217;s still going on. I think it&#8217;s quite fun, how a bit of snow causes so much havoc and problems for 99% [...]]]></description>
			<content:encoded><![CDATA[<a class="google_buzz"  
href="http://www.google.com/reader/link?url=http://simoncook.org/blog/2010/01/the-uksnow-of-january-2010/&title=The+#uksnow+of+January+2010&srcURL=http://simoncook.org" target="_blank" rel="nofollow"><img
src="http://simoncook.org/wordpress/wp-content/plugins/google-buzz-button/images/google-buzz.png" alt="Google Buzz" /></a><p>Now, living in the UK, along with a lot of people, there was  a bit of snow here. Apparently, it is the most in over 40 years. I say is, I mean it&#8217;s still going on. I think it&#8217;s quite fun, how a bit of snow causes so much havoc and problems for 99% of people here. 3mm I believe is all it takes to cause mayhem, so when over a foot falls overnight, hell most certainly breaks.</p>
<p>However, I have a few photos to share of the snow. I will categorise them based on the date I took them. Better versions are ok Flickr, and once I port my gallery here, they will also feature there, so hopefully it works out well.</p>
<p><strong>Gallery for: UKSnow &#8211; 5 Jan 2010 -&gt; 12 Jan 2010</strong></p>

<a href='http://simoncook.org/blog/2010/01/the-uksnow-of-january-2010/p1052462/' title='5 Jan &#039;10 - Snow on Car'><img width="150" height="150" src="http://simoncook.org/wordpress/uploads/2010/01/P1052462-150x150.jpg" class="attachment-thumbnail" alt="" title="5 Jan &#039;10 - Snow on Car" /></a>
<a href='http://simoncook.org/blog/2010/01/the-uksnow-of-january-2010/p1052476/' title='5 Jan &#039;10 - Snowy Field'><img width="150" height="150" src="http://simoncook.org/wordpress/uploads/2010/01/P1052476-150x150.jpg" class="attachment-thumbnail" alt="" title="5 Jan &#039;10 - Snowy Field" /></a>
<a href='http://simoncook.org/blog/2010/01/the-uksnow-of-january-2010/p1052514/' title='5 Jan &#039;10 - Snow Bear'><img width="150" height="150" src="http://simoncook.org/wordpress/uploads/2010/01/P1052514-150x150.jpg" class="attachment-thumbnail" alt="" title="5 Jan &#039;10 - Snow Bear" /></a>
<a href='http://simoncook.org/blog/2010/01/the-uksnow-of-january-2010/p1062571/' title='6 Jan &#039;10 - Early Morning Field'><img width="150" height="150" src="http://simoncook.org/wordpress/uploads/2010/01/P1062571-150x150.jpg" class="attachment-thumbnail" alt="" title="6 Jan &#039;10 - Early Morning Field" /></a>
<a href='http://simoncook.org/blog/2010/01/the-uksnow-of-january-2010/p1062611/' title='6 Jan &#039;10 - Snow Bush'><img width="150" height="150" src="http://simoncook.org/wordpress/uploads/2010/01/P1062611-150x150.jpg" class="attachment-thumbnail" alt="" title="6 Jan &#039;10 - Snow Bush" /></a>
<a href='http://simoncook.org/blog/2010/01/the-uksnow-of-january-2010/p1062640/' title='6 Jan &#039;10 - Snow Bear'><img width="150" height="150" src="http://simoncook.org/wordpress/uploads/2010/01/P1062640-150x150.jpg" class="attachment-thumbnail" alt="" title="6 Jan &#039;10 - Snow Bear" /></a>
<a href='http://simoncook.org/blog/2010/01/the-uksnow-of-january-2010/p1062737/' title='6 Jan &#039;10 - Snowy Tree'><img width="150" height="150" src="http://simoncook.org/wordpress/uploads/2010/01/P1062737-150x150.jpg" class="attachment-thumbnail" alt="" title="6 Jan &#039;10 - Snowy Tree" /></a>
<a href='http://simoncook.org/blog/2010/01/the-uksnow-of-january-2010/p1072838/' title='7 Jan &#039;10 - Snowy Ball'><img width="150" height="150" src="http://simoncook.org/wordpress/uploads/2010/01/P1072838-150x150.jpg" class="attachment-thumbnail" alt="" title="7 Jan &#039;10 - Snowy Ball" /></a>
<a href='http://simoncook.org/blog/2010/01/the-uksnow-of-january-2010/p1072878/' title='7 Jan &#039;10 - Snow Bear'><img width="150" height="150" src="http://simoncook.org/wordpress/uploads/2010/01/P1072878-150x150.jpg" class="attachment-thumbnail" alt="" title="7 Jan &#039;10 - Snow Bear" /></a>
<a href='http://simoncook.org/blog/2010/01/the-uksnow-of-january-2010/p1082905/' title='8 Jan &#039;10 - Snow Bear'><img width="150" height="150" src="http://simoncook.org/wordpress/uploads/2010/01/P1082905-150x150.jpg" class="attachment-thumbnail" alt="" title="8 Jan &#039;10 - Snow Bear" /></a>
<a href='http://simoncook.org/blog/2010/01/the-uksnow-of-january-2010/p1082923/' title='8 Jan &#039;10 - Snow Ball'><img width="150" height="150" src="http://simoncook.org/wordpress/uploads/2010/01/P1082923-150x150.jpg" class="attachment-thumbnail" alt="" title="8 Jan &#039;10 - Snow Ball" /></a>
<a href='http://simoncook.org/blog/2010/01/the-uksnow-of-january-2010/p1122932/' title='12 Jan &#039;10 - Snowy Field'><img width="150" height="150" src="http://simoncook.org/wordpress/uploads/2010/01/P1122932-150x150.jpg" class="attachment-thumbnail" alt="" title="12 Jan &#039;10 - Snowy Field" /></a>
<a href='http://simoncook.org/blog/2010/01/the-uksnow-of-january-2010/p1123024/' title='12 Jan &#039;10 - Snowy Road'><img width="150" height="150" src="http://simoncook.org/wordpress/uploads/2010/01/P1123024-150x150.jpg" class="attachment-thumbnail" alt="" title="12 Jan &#039;10 - Snowy Road" /></a>
<a href='http://simoncook.org/blog/2010/01/the-uksnow-of-january-2010/field_panorama_2_crop/' title='12 Jan &#039;10 - Panorama'><img width="150" height="139" src="http://simoncook.org/wordpress/uploads/2010/01/Field_Panorama_2_Crop-150x139.jpg" class="attachment-thumbnail" alt="" title="12 Jan &#039;10 - Panorama" /></a>
<a href='http://simoncook.org/blog/2010/01/the-uksnow-of-january-2010/field_panorama2/' title='7 Jan &#039;10 - Panorama'><img width="150" height="89" src="http://simoncook.org/wordpress/uploads/2010/01/Field_Panorama2-150x89.jpg" class="attachment-thumbnail" alt="" title="7 Jan &#039;10 - Panorama" /></a>

<p>I&#8217;ve also got some other pictures, but they are going in another post.</p>
]]></content:encoded>
			<wfw:commentRss>http://simoncook.org/blog/2010/01/the-uksnow-of-january-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My Blog</title>
		<link>http://simoncook.org/blog/2010/01/my-blog/</link>
		<comments>http://simoncook.org/blog/2010/01/my-blog/#comments</comments>
		<pubDate>Sat, 09 Jan 2010 16:19:35 +0000</pubDate>
		<dc:creator>Si</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[coming soon]]></category>
		<category><![CDATA[returning]]></category>
		<category><![CDATA[soon]]></category>

		<guid isPermaLink="false">http://www.spcook.co.uk/?p=274</guid>
		<description><![CDATA[Returning soon&#8230;
]]></description>
			<content:encoded><![CDATA[<a class="google_buzz"  
href="http://www.google.com/reader/link?url=http://simoncook.org/blog/2010/01/my-blog/&title=My+Blog&srcURL=http://simoncook.org" target="_blank" rel="nofollow"><img
src="http://simoncook.org/wordpress/wp-content/plugins/google-buzz-button/images/google-buzz.png" alt="Google Buzz" /></a><p>Returning soon&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://simoncook.org/blog/2010/01/my-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ChromiumOS Downloads</title>
		<link>http://simoncook.org/blog/2009/11/chromiumos-downloads/</link>
		<comments>http://simoncook.org/blog/2009/11/chromiumos-downloads/#comments</comments>
		<pubDate>Sun, 22 Nov 2009 15:45:31 +0000</pubDate>
		<dc:creator>Si</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[ChromeOS]]></category>

		<guid isPermaLink="false">http://www.spcook.co.uk/?p=267</guid>
		<description><![CDATA[Jumping on the ChromiumOS Downloads, I have built and compiled a version of ChromiumOS, the URL for viewing builds and downloading is available at http://www.spcook.co.uk/chromiumos
]]></description>
			<content:encoded><![CDATA[<a class="google_buzz"  
href="http://www.google.com/reader/link?url=http://simoncook.org/blog/2009/11/chromiumos-downloads/&title=ChromiumOS+Downloads&srcURL=http://simoncook.org" target="_blank" rel="nofollow"><img
src="http://simoncook.org/wordpress/wp-content/plugins/google-buzz-button/images/google-buzz.png" alt="Google Buzz" /></a><p>Jumping on the ChromiumOS Downloads, I have built and compiled a version of ChromiumOS, the URL for viewing builds and downloading is available at <a href="http://www.spcook.co.uk/chromiumos">http://www.spcook.co.uk/chromiumos</a></p>
]]></content:encoded>
			<wfw:commentRss>http://simoncook.org/blog/2009/11/chromiumos-downloads/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OMG AN UPDATE</title>
		<link>http://simoncook.org/blog/2009/10/omg-an-update/</link>
		<comments>http://simoncook.org/blog/2009/10/omg-an-update/#comments</comments>
		<pubDate>Mon, 26 Oct 2009 18:33:24 +0000</pubDate>
		<dc:creator>Si</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.spcook.co.uk/2009/10/omg-an-update</guid>
		<description><![CDATA[Well, the pre-cursor to an update. Just to let people know that watch this space, some cool stuff is coming  
No peeking now  
]]></description>
			<content:encoded><![CDATA[<a class="google_buzz"  
href="http://www.google.com/reader/link?url=http://simoncook.org/blog/2009/10/omg-an-update/&title=OMG+AN+UPDATE&srcURL=http://simoncook.org" target="_blank" rel="nofollow"><img
src="http://simoncook.org/wordpress/wp-content/plugins/google-buzz-button/images/google-buzz.png" alt="Google Buzz" /></a><p>Well, the pre-cursor to an update. Just to let people know that watch this space, some cool stuff is coming <img src='http://simoncook.org/wordpress/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>No peeking now <img src='http://simoncook.org/wordpress/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://simoncook.org/blog/2009/10/omg-an-update/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>A tale of a laptop (and Windows 7) Part 1</title>
		<link>http://simoncook.org/blog/2009/06/a-tale-of-a-laptop-and-windows-7-part-1/</link>
		<comments>http://simoncook.org/blog/2009/06/a-tale-of-a-laptop-and-windows-7-part-1/#comments</comments>
		<pubDate>Sat, 20 Jun 2009 15:24:21 +0000</pubDate>
		<dc:creator>Si</dc:creator>
				<category><![CDATA[Computer]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[7]]></category>
		<category><![CDATA[hp]]></category>
		<category><![CDATA[laptop]]></category>
		<category><![CDATA[performance]]></category>
		<category><![CDATA[tx2530]]></category>
		<category><![CDATA[vista]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://www.spcook.co.uk/2009/06/a-tale-of-a-laptop-and-windows-7-part-1</guid>
		<description><![CDATA[&#8212;   This is part 1 of a post that I will continue with when I have tested more    &#8212;
Well, as you may or not be aware, I recently bought a new laptop, a HP Pavilion tx2530. It doesn’t have multi-touch or any of the other naff that the latest TouchSmart [...]]]></description>
			<content:encoded><![CDATA[<a class="google_buzz"  
href="http://www.google.com/reader/link?url=http://simoncook.org/blog/2009/06/a-tale-of-a-laptop-and-windows-7-part-1/&title=A+tale+of+a+laptop+(and+Windows+7)+Part+1&srcURL=http://simoncook.org" target="_blank" rel="nofollow"><img
src="http://simoncook.org/wordpress/wp-content/plugins/google-buzz-button/images/google-buzz.png" alt="Google Buzz" /></a><p>&#8212;   <br />This is part 1 of a post that I will continue with when I have tested more    <br />&#8212;</p>
<p>Well, as you may or not be aware, I recently bought a new laptop, a HP Pavilion tx2530. It doesn’t have multi-touch or any of the other naff that the latest TouchSmart tx2 series has, but who uses multi-touch after two days of use anyway? It does however have single touch and pen input, as Windows keeps reminding me. It also has a Windows Experience Rating of 4.3, which isn’t bad for a laptop I reckon.</p>
<p><a href="http://simoncook.org/uploads/2009/06/laptop7system.png" rel="lightbox[255]"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="laptop7system" border="0" alt="laptop7system" src="http://simoncook.org/uploads/2009/06/laptop7system_thumb.png" width="244" height="185" /></a> <a href="http://simoncook.org/uploads/2009/06/laptop7wei.png" rel="lightbox[255]"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="laptop7wei" border="0" alt="laptop7wei" src="http://simoncook.org/uploads/2009/06/laptop7wei_thumb.png" width="244" height="185" /></a> </p>
<p>The laptop came with Windows Vista Home Premium, but hey there’s a release candidate of Windows 7 floating around here, so why don’t I install it? So that’s just what I did, and now I will discuss what works and what doesn’t.</p>
<h3></h3>
</p>
<h3>Installation</h3>
<p>First step of any system, installing the operating system. In case things went south, I decided to keep Windows Vista installed as well. This would allow me to at least have a working system if things went wrong. So the first thing I did was to take an 80GB chunk of the main hard drive and called it my Windows 7 install, as you can see in the image of <em>Computer</em>.</p>
<p><a href="http://simoncook.org/uploads/2009/06/laptop7mycomp.png" rel="lightbox[255]"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="laptop7mycomp" border="0" alt="laptop7mycomp" src="http://simoncook.org/uploads/2009/06/laptop7mycomp_thumb.png" width="244" height="184" /></a> </p>
<p>Now that has been installed, it’s time for some driver installs. But wait, Windows 7 isn’t released as RTM yet, so what drivers to go for? Well, Microsoft claim to have 100% compatibility with Vista drivers, so a nice trip to the HP Driver Download site to get some drivers. Looking down the list, I grabbed everything, apart from the ATI graphics drivers which were very out of date, so I grabbed some dedicated Windows 7 drivers from the AMD site. Good hour of installing, and only one catch, the drivers for the sound chipset wouldn’t install because I’m running an “old” version of Windows. Thankfully Windows Update is a dream so that just fixed that problem.&#160; Now that everything&#8217;s installed, lets see if it works.</p>
<h3></h3>
<h3>Testing Previous Features</h3>
<p>Now, the first thing that I need to make sure of, is that I have not lost any functionality by this move, but have indeed gained functionality, so I will test original features.</p>
<ol>
<li><strong>Sound buttons</strong>      <br />Now, as you may or may not be aware, the tx2530 has backlit buttons that are blue by default, but the mute button turns orange when the sound is muted. Before installing drivers, muting the sound did not cause the colour to change. After all the driver installs, this appears to work perfectly. Orange to blue and blue to orange, button or mute via windows, it all works. Not a stopper if it didn’t but nice that it does.</li>
<li><strong>Tablet and touch</strong>      <br />The main point of the laptop, the touch screen and (more importantly) the tablet. After testing in Windows Journal, the pressure sensitivity from the pen, the rubber on the pen, right click, having touch enabled, all works perfectly. However I have one problem with it, and that is pen flicks. Basically you use gestures, throw up and down to scroll up and down, left to go back, and right to go forward. But wait… in Windows 7, left is forward and right is back. Sorry that doesn’t make any sense at all!?!?!? This is easily fixed however by enabling the 8 directional pen flicks and changing them manually, but that is just weird how it is in reverse by default.</li>
<li><strong>Multimedia Remote</strong>      <br />This laptop comes with a tiny remote (that is almost guaranteed to be lost). Before the upgrade it used to control everything perfectly, it controls Windows Media Centre and also the QuickPlay software. After the new install, and mashing of every button on the remote, this still works perfectly, which is good.</li>
<li><strong>Screen Image Auto-rotate       <br /></strong>A feature that at times has been a pain when I haven’t wanted it to automatically rotate the screen around. But heck, its still useful if you want to switch to tablet mode and not want to rotate the laptop. Shutting the screen here causes the same correct effect to happen which is good.</li>
<li><strong>Other Features</strong>      <br />I have tested other features, but they are not worth of a full note, and all work perfectly. The SD Card, the monitor connection, TV out, network all work. I haven’t tested if the modem works, but then again I don’t use dialup or a modem for anything, so this really doesn’t need a test for me.</li>
</ol>
<p>Now that these have been checked, let’s see what’s new.</p>
<h3>New Items</h3>
<p>The first item is quite useful, the new tablet pc input screen. Firstly, the on screen keyboard has some nice effects, firstly the buttons look nicer, and they now have a nice effect when you press them, which makes it easier to tell if you have hit the wrong button.</p>
<p><a href="http://simoncook.org/uploads/2009/06/laptop7osk.png" rel="lightbox[255]"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="laptop7osk" border="0" alt="laptop7osk" src="http://simoncook.org/uploads/2009/06/laptop7osk_thumb.png" width="244" height="105" /></a> <a href="http://simoncook.org/uploads/2009/06/laptop7osk2.png" rel="lightbox[255]"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="laptop7osk2" border="0" alt="laptop7osk2" src="http://simoncook.org/uploads/2009/06/laptop7osk2_thumb.png" width="244" height="106" /></a> </p>
<p>The pen input differs from Vista as well by as you write it does text recognition on the words and shows it where your writing once was. There are new gestures to split and merge words, and the best feature (in my opinion is if you click on a word you can view it in character mode and change letters as you go.</p>
<p><a href="http://simoncook.org/uploads/2009/06/laptop7penwrite.png" rel="lightbox[255]"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="laptop7penwrite" border="0" alt="laptop7penwrite" src="http://simoncook.org/uploads/2009/06/laptop7penwrite_thumb.png" width="244" height="42" /></a> </p>
<h3></h3>
</p>
<h3>Summary of Part 1</h3>
<p>Is Windows 7 worth it on my laptop? I would say definitely. Installing this has been very good so far, and in Part 2 I will be comparing battery performance as well as other features in Windows that should <em>hopefully</em> make it worth the switch from Vista to 7.</p>
<p>&#160;</p>
<p>&#8212;   <br />This is the end of part one of this post and I will get back to this. But for now there is more Windows 7 testing to do on my laptop.</p>
]]></content:encoded>
			<wfw:commentRss>http://simoncook.org/blog/2009/06/a-tale-of-a-laptop-and-windows-7-part-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
