<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>A blog of learnings</title>
	<atom:link href="http://pintsizedcat.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://pintsizedcat.wordpress.com</link>
	<description>A small cat in a big world of learning</description>
	<lastBuildDate>Mon, 08 Aug 2011 13:36:51 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='pintsizedcat.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>A blog of learnings</title>
		<link>http://pintsizedcat.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://pintsizedcat.wordpress.com/osd.xml" title="A blog of learnings" />
	<atom:link rel='hub' href='http://pintsizedcat.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Euler &#8211; Problem 2</title>
		<link>http://pintsizedcat.wordpress.com/2010/04/01/euler-problem-2/</link>
		<comments>http://pintsizedcat.wordpress.com/2010/04/01/euler-problem-2/#comments</comments>
		<pubDate>Thu, 01 Apr 2010 13:25:34 +0000</pubDate>
		<dc:creator>pintsizedcat</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Project Euler]]></category>
		<category><![CDATA[Computers]]></category>
		<category><![CDATA[logic]]></category>
		<category><![CDATA[math]]></category>
		<category><![CDATA[maths]]></category>
		<category><![CDATA[puzzles]]></category>

		<guid isPermaLink="false">http://pintsizedcat.wordpress.com/?p=236</guid>
		<description><![CDATA[It&#8217;s been a couple of days since I finished Problem 1 of Project Euler and I did in fact finish Problem 2 the very next day. Unfortuantely, I must admit that I have been making some very basic maths quite complicated in the hopes of understanding how some people have solved Problem 2. Problem 2: [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pintsizedcat.wordpress.com&amp;blog=2944439&amp;post=236&amp;subd=pintsizedcat&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been a couple of days since I finished Problem 1 of <a href="http://projecteuler.net">Project Euler</a> and I did in fact finish Problem 2 the very next day. Unfortuantely, I must admit that I have been making some very basic maths quite complicated in the hopes of understanding how some people have solved Problem 2.</p>
<p><strong>Problem 2:</strong></p>
<blockquote><p>Each new term in the Fibonacci sequence is generated by adding the previous two terms. By starting with 1 and 2, the first 10 terms will be:<br />
1, 2, 3, 5, 8, 13, 21, 34, 55, 89, &#8230;<br />
Find the sum of all the even-valued terms in the sequence which do not exceed four million.</p></blockquote>
<p>At first this seems like an insurmountable task because four million is quite a large number and common sense leads us to believe that there will be hundreds of numbers in the Fibonacci sequence below four million. Fortunately this is a <a href="http://en.wikipedia.org/wiki/Paradox">paradox</a> as there are only a mear 33 numbers below four million in the Fibonacci sequence.</p>
<p>I spent quite some time looking for a formulae that would let me work out all the even numbers in the fibonacci sequence (i.e. even numbers are always three terms apart, so F(3n) is always an even number). Not being a mathematician and not having done any kind of maths for several years I gave up (I also do not have that much time on my hands) and found a <a href="http://www.maths.surrey.ac.uk/hosted-sites/R.Knott/Fibonacci/fibtable.html">list of Fibonacci numbers</a> and used a calculator to add up all the numbers below four million.</p>
<p>After getting the correct answer I did however look in to other peoples solutions, and there are some quite facinating solutions indeed. It&#8217;s made me learn about the <a href="http://en.wikipedia.org/wiki/Golden_Ratio">Golden Ratio</a> and how it links to the Fibonacci sequence, though I have not delved too far, see previous comment about not being a mathematician.</p>
<p>I&#8217;m going to very briefly go over one of the properties of the Fibonacci sequence and how it can be used to find the answer to this problem.</p>
<p><strong>Golden Ratio</strong></p>
<p>Something can be said to have the Golden Ratio if the ratio between two things is the same as the ratio between the larger of the two things and the sumation of the two things. Given that B is greater than A, B and A are in the Golden Ratio when:</p>
<blockquote><p>A:B = B:(A+B)</p></blockquote>
<p>This is also known as <a href="http://en.wikipedia.org/wiki/Phi_(letter)">Φ (phi)</a> and is the <a href="http://en.wikipedia.org/wiki/Irrational_number">irrational</a> (cannot be expressed as a proper fraction) number 1.6180339887&#8230;</p>
<p><strong>Fibonacci Sequence</strong><br />
This links to the Fibonacci sequence because the ratio between two consecutive terms in the Fibonacci sequence is close to the Golden Ratio (it is more complicated than this, but for our purposes this is all we need to know). I&#8217;m going to express Fibonacci numbers as Fib(n) where <em>n</em> is the term, so F(0) = 0, F(1) = 1, F(2) = 1, F(3) = 2&#8230; F(10) = 55.</p>
<p>The <em>n</em>th term of the Fibonacci sequence can be expressed as so:</p>
<blockquote><p>Fib(n) = Fib(n-1) + Fib(n-2)</p></blockquote>
<p>And so the Ratio between two consecutive terms <em>n</em> and <em>n-1</em> is as phi.</p>
<blockquote><p>Fib(n)/Fib(n-1) = Φ</p></blockquote>
<p>Eventually we want the ratio between three terms, because we know that even numbers are three terms apart.</p>
<blockquote><p>Fib(n)/Fib(n-3) = ?</p></blockquote>
<p>We can immediately infer that the ratio is going to be 3Φ because we know that the ratio between any Fibonacci number is going to be Φ, but for sake of argument I&#8217;ll show you what took me so long to work my head around. The ratio between three Fibonacci numbers is given by the following:</p>
<ol>
<li>Fib(n)/Fib(n-2)</li>
<li>( Fib(n) / (Fib(n-1) ) / ( Fib(n-2) / Fib(n-1) )</li>
</ol>
<p>Now this is the point where I got confused, how can the first part be transformed into the second part? I tried many different ways, thinking it was a ratio of ratios, or an inverse ratio of the ratio or some crazy things like that and finally someone on the irc channel #maths helped me out with the simple answer of &#8220;that&#8217;s how fractions work&#8221;. If you Divide top and bottom by Fib(n-1) then you get part 2. The use of this is because we know that Fib(n)/Fib(n-1) is Φ, and because Fib(n-2)/Fib(n-1) is basically the inverse of Fib(n)/Fib(n-1) it is 1/Φ. This gives us the last two steps which are a replacement</p>
<ol>
<li>(Φ)/(1/Φ) : Replace Fib(n)/Fib(n-1) and Fib(n-2/Fib(n-1) with Φ and 1/Φ respectively</li>
<li>2Φ : x/(1/Φ) can also be written as x * Φ.</li>
</ol>
<p>Finally, we want to know what Fib(n)/Fib(n-3) is, which can also be written like this:</p>
<blockquote><p>( Fib(n) / Fib(n-2) )/ ( Fib(n-3) / Fib(n-2) )</p></blockquote>
<ol>
<li>2Φ / (1 / Φ) : Fib(n) / Fib(n-2) = 2Φ (From earlier) and Fib(n-3) / Fib(n-2) is 1/Φ (From earlier).</li>
<li>3Φ : As earlier, x/(1/Φ) = x*Φ.</li>
</ol>
<p>And we&#8217;re done, we now know that even Fibonacci numbers are a ratio of 3Φ apart and use a calculator to work out the sum of all the even terms under four million.</p>
<p>There is one other solution that I don&#8217;t really understand that I might put some work into understanding, but I will have to see how much time I have, before that&#8230;</p>
<p><strong>Problem 3:</strong></p>
<blockquote><p>The prime factors of 13195 are 5, 7, 13 and 29.</p>
<p>What is the largest prime factor of the number 600851475143 ?</p></blockquote>
<br />Filed under: <a href='http://pintsizedcat.wordpress.com/category/computers/programming/'>Programming</a>, <a href='http://pintsizedcat.wordpress.com/category/computers/project-euler/'>Project Euler</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pintsizedcat.wordpress.com/236/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pintsizedcat.wordpress.com/236/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pintsizedcat.wordpress.com/236/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pintsizedcat.wordpress.com/236/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pintsizedcat.wordpress.com/236/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pintsizedcat.wordpress.com/236/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pintsizedcat.wordpress.com/236/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pintsizedcat.wordpress.com/236/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pintsizedcat.wordpress.com/236/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pintsizedcat.wordpress.com/236/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pintsizedcat.wordpress.com/236/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pintsizedcat.wordpress.com/236/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pintsizedcat.wordpress.com/236/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pintsizedcat.wordpress.com/236/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pintsizedcat.wordpress.com&amp;blog=2944439&amp;post=236&amp;subd=pintsizedcat&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pintsizedcat.wordpress.com/2010/04/01/euler-problem-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/40537ca7a5177b24051a5715f488cd3b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">pintsizedcat</media:title>
		</media:content>
	</item>
		<item>
		<title>Euler: Problem 1</title>
		<link>http://pintsizedcat.wordpress.com/2010/03/30/euler-problem-1/</link>
		<comments>http://pintsizedcat.wordpress.com/2010/03/30/euler-problem-1/#comments</comments>
		<pubDate>Tue, 30 Mar 2010 09:02:01 +0000</pubDate>
		<dc:creator>pintsizedcat</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Project Euler]]></category>
		<category><![CDATA[algorithms]]></category>
		<category><![CDATA[computer science]]></category>
		<category><![CDATA[Computers]]></category>
		<category><![CDATA[math]]></category>
		<category><![CDATA[modulo]]></category>
		<category><![CDATA[pseudo code]]></category>

		<guid isPermaLink="false">http://pintsizedcat.wordpress.com/?p=230</guid>
		<description><![CDATA[In a vain attempt to become productive and cultivate motivation and some kind of order into my otherwist Street Fighter 4 driven life I&#8217;m attempting to get all of the Project Euler puzzles done and to write a little bit about my solution and writing a better solution. In some, probably most, cases, I will [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pintsizedcat.wordpress.com&amp;blog=2944439&amp;post=230&amp;subd=pintsizedcat&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>In a vain attempt to become productive and cultivate motivation and some kind of order into my otherwist Street Fighter 4 driven life I&#8217;m attempting to get all of the <a href="http://projecteuler.net">Project Euler</a> puzzles done and to write a little bit about my solution and writing a better solution. In some, probably most, cases, I will also have to go through some theory of how I got to the solution.</p>
<p>The first puzzle has to do with finding the sum of a series of natural numbers. It&#8217;s very close to a question that I&#8217;ve added to our list of interview questions recently labelled <a href="http://www.codinghorror.com/blog/2007/02/why-cant-programmers-program.html">FizzBuzz</a>.</p>
<blockquote><p>Write a program that prints the numbers from 1 to 100. But for multiples of three print &#8220;Fizz&#8221; instead of the number and for the multiples of five print &#8220;Buzz&#8221;. For numbers which are multiples of both three and five print &#8220;FizzBuzz&#8221;.</p></blockquote>
<p>If you know how to program, or program on a regular basis the answer to this is quite straight forward and has the following steps.</p>
<ol>
<li>For each number, starting at 1 and ending with 100</li>
<li>If the number divided by three has zero remainder output Fizz
<ul>
<li>If the number divided by five ALSO has a zero remainder output Buzz</li>
</ul>
</li>
<li>If the number divided by five has zero remainder output Buzz</li>
<li>Otherwise, output the number</li>
</ol>
<p>What we can do here, is replace the outputting of Fizz and Buzz with a summation of that number giving us the following, simpler <a href="http://en.wikipedia.org/wiki/Pseudo_code">pseudo code</a> or flow.</p>
<ol>
<li>For each number, starting at 1 and ending with 100</li>
<li>If the number divided by three has zero remainder, add it to the &#8216;output&#8217;.</li>
<li>OR If the number divided by five has zero remainder, add it to the &#8216;output&#8217;.</li>
<li>Otherwise, do nothing.</li>
<li>After we reach 100, print &#8216;output&#8217;</li>
</ol>
<p>The more important thing about this is that we recognise the OR, a number that has a remainder of zero when divided by both five and three must not be added to the output twice.</p>
<p>The actual Project Euler first question is as follows:</p>
<blockquote><p>Find the sum of all the multiples of 3 or 5 below 1000.</p></blockquote>
<p>To solve this with a programming language it is beneficial to know about <a href="http://en.wikipedia.org/wiki/Modular_arithmetic">modulo arithmetic</a> and the <a href="http://en.wikipedia.org/wiki/Modular_arithmetic#Remainders">modulo operator</a>, but I don&#8217;t have time to go in to this at the moment.</p>
<p>In future I hope to go in to other peoples solutions and how optimization is brought into Project Euler.</p>
<br />Filed under: <a href='http://pintsizedcat.wordpress.com/category/computers/programming/'>Programming</a>, <a href='http://pintsizedcat.wordpress.com/category/computers/project-euler/'>Project Euler</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pintsizedcat.wordpress.com/230/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pintsizedcat.wordpress.com/230/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pintsizedcat.wordpress.com/230/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pintsizedcat.wordpress.com/230/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pintsizedcat.wordpress.com/230/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pintsizedcat.wordpress.com/230/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pintsizedcat.wordpress.com/230/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pintsizedcat.wordpress.com/230/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pintsizedcat.wordpress.com/230/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pintsizedcat.wordpress.com/230/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pintsizedcat.wordpress.com/230/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pintsizedcat.wordpress.com/230/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pintsizedcat.wordpress.com/230/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pintsizedcat.wordpress.com/230/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pintsizedcat.wordpress.com&amp;blog=2944439&amp;post=230&amp;subd=pintsizedcat&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pintsizedcat.wordpress.com/2010/03/30/euler-problem-1/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/40537ca7a5177b24051a5715f488cd3b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">pintsizedcat</media:title>
		</media:content>
	</item>
		<item>
		<title>KickAss</title>
		<link>http://pintsizedcat.wordpress.com/2010/03/26/kickass/</link>
		<comments>http://pintsizedcat.wordpress.com/2010/03/26/kickass/#comments</comments>
		<pubDate>Fri, 26 Mar 2010 22:29:19 +0000</pubDate>
		<dc:creator>pintsizedcat</dc:creator>
				<category><![CDATA[Comics]]></category>
		<category><![CDATA[Comic]]></category>
		<category><![CDATA[Film]]></category>
		<category><![CDATA[kickass]]></category>
		<category><![CDATA[movie]]></category>
		<category><![CDATA[nemesis]]></category>
		<category><![CDATA[Review]]></category>

		<guid isPermaLink="false">http://pintsizedcat.wordpress.com/?p=225</guid>
		<description><![CDATA[I had been meaning to read the KickAss comic for quite some time and with the release of the movie I took the jump and bought the graphic novel. Kickass, for those who don&#8217;t know is a comic about a kid who decides to don a lycra suit and mask to fight crime. Gets the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pintsizedcat.wordpress.com&amp;blog=2944439&amp;post=225&amp;subd=pintsizedcat&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I had been meaning to read the <a href="http://en.wikipedia.org/wiki/Kick-Ass">KickAss comic</a> for quite some time and with the release of the movie I took the jump and bought the graphic novel.</p>
<p>Kickass, for those who don&#8217;t know is a comic about a kid who decides to don a lycra suit and mask to fight crime. Gets the crap beaten out of him, and then the story goes on. The comic has been so popular that it has already been made in to a <a href="http://en.wikipedia.org/wiki/Kick-Ass_(film)">movie</a> that has just been released here in the UK.</p>
<p>In the beginning I found it to be really engaging, the characters were my type of people, geeky, inquisitive and witty.  I, and loads of others I assume, could relate to the comic geekery, the hoarding of comics and wonder at how no one could have tried to be a super hero (which still does beg the question, how has no one done this yet?).</p>
<p>The story progresses quite happily for quite some time and it&#8217;s predictable but interesting and new, then, out of nowhere it falls like shit from a plane.  Although I didn&#8217;t anticipate the twist I can see it being quite easy to predict and by the end I was pretty annoyed at how it had all gone.</p>
<p>I&#8217;m happy to say that the setup for the sequel made me want to vomit and cry with disapointment. I want to start reading it monthly but I don&#8217;t to start paying for it, I just hope that <a href="http://en.wikipedia.org/wiki/Nemesis_(Icon_Comics)">Nemesis</a> is a little better.</p>
<br />Filed under: <a href='http://pintsizedcat.wordpress.com/category/reviews/comics/'>Comics</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pintsizedcat.wordpress.com/225/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pintsizedcat.wordpress.com/225/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pintsizedcat.wordpress.com/225/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pintsizedcat.wordpress.com/225/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pintsizedcat.wordpress.com/225/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pintsizedcat.wordpress.com/225/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pintsizedcat.wordpress.com/225/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pintsizedcat.wordpress.com/225/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pintsizedcat.wordpress.com/225/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pintsizedcat.wordpress.com/225/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pintsizedcat.wordpress.com/225/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pintsizedcat.wordpress.com/225/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pintsizedcat.wordpress.com/225/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pintsizedcat.wordpress.com/225/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pintsizedcat.wordpress.com&amp;blog=2944439&amp;post=225&amp;subd=pintsizedcat&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pintsizedcat.wordpress.com/2010/03/26/kickass/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/40537ca7a5177b24051a5715f488cd3b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">pintsizedcat</media:title>
		</media:content>
	</item>
		<item>
		<title>From Novel to Movie Hell</title>
		<link>http://pintsizedcat.wordpress.com/2010/02/16/from-novel-to-movie-hell/</link>
		<comments>http://pintsizedcat.wordpress.com/2010/02/16/from-novel-to-movie-hell/#comments</comments>
		<pubDate>Tue, 16 Feb 2010 19:37:04 +0000</pubDate>
		<dc:creator>pintsizedcat</dc:creator>
				<category><![CDATA[Rants]]></category>
		<category><![CDATA[Comic]]></category>
		<category><![CDATA[from hell]]></category>
		<category><![CDATA[hawksmoor]]></category>
		<category><![CDATA[moore]]></category>
		<category><![CDATA[movie]]></category>
		<category><![CDATA[rant]]></category>

		<guid isPermaLink="false">http://pintsizedcat.wordpress.com/?p=223</guid>
		<description><![CDATA[I finished the From Hell Graphic Novel a few days ago and I&#8217;ve been reading through the appendix, which, I might add is taking me as long as reading through the main part. However, during the weekend I watched the movie again and it&#8217;s quite easy to see why Alan Moore would be so against [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pintsizedcat.wordpress.com&amp;blog=2944439&amp;post=223&amp;subd=pintsizedcat&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I finished the From Hell Graphic Novel a few days ago and I&#8217;ve been reading through the appendix, which, I might add is taking me as long as reading through the main part. However, during the weekend I watched the movie again and it&#8217;s quite easy to see why Alan Moore would be so against it.</p>
<p>The Graphic is so strict to a lot of historical events and takes a lot of references from what appear to be reputable sources, that for a movie to be made from it would either have to take a small part of the Graphic novel or would have to be a very long movie. It&#8217;s hard to give a blow by blow account of all the failings that happen in the movie as I&#8217;m not really that motivated to sit through the movie more than twice in a lifetime. At the fore is the mixture of Mr Abberline and Mr Lees characters and the introduction of Abberline being a opium fiend. Now that I think back I don&#8217;t remember there being much mention of the <a href="http://en.wikipedia.org/wiki/From_Hell_letter">letter</a> that inspires the name of the Graphic novel.</p>
<p>There is also no mention of <a href="http://en.wikipedia.org/wiki/Nicholas_Hawksmoor">Hawksmoor&#8217;s</a> churches which really are the main inspiration behind the Graphic novel.</p>
<p>Either way, just a short one, but the graphic novel is something that has inspired me to read a bit more about the ripper murders and masonry, etc.</p>
<br />Filed under: <a href='http://pintsizedcat.wordpress.com/category/computers/rants/'>Rants</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pintsizedcat.wordpress.com/223/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pintsizedcat.wordpress.com/223/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pintsizedcat.wordpress.com/223/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pintsizedcat.wordpress.com/223/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pintsizedcat.wordpress.com/223/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pintsizedcat.wordpress.com/223/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pintsizedcat.wordpress.com/223/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pintsizedcat.wordpress.com/223/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pintsizedcat.wordpress.com/223/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pintsizedcat.wordpress.com/223/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pintsizedcat.wordpress.com/223/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pintsizedcat.wordpress.com/223/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pintsizedcat.wordpress.com/223/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pintsizedcat.wordpress.com/223/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pintsizedcat.wordpress.com&amp;blog=2944439&amp;post=223&amp;subd=pintsizedcat&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pintsizedcat.wordpress.com/2010/02/16/from-novel-to-movie-hell/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/40537ca7a5177b24051a5715f488cd3b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">pintsizedcat</media:title>
		</media:content>
	</item>
		<item>
		<title>From Hell</title>
		<link>http://pintsizedcat.wordpress.com/2010/02/12/from-hell/</link>
		<comments>http://pintsizedcat.wordpress.com/2010/02/12/from-hell/#comments</comments>
		<pubDate>Fri, 12 Feb 2010 23:43:28 +0000</pubDate>
		<dc:creator>pintsizedcat</dc:creator>
				<category><![CDATA[Comics]]></category>
		<category><![CDATA[alan moore]]></category>
		<category><![CDATA[from hell]]></category>
		<category><![CDATA[jack the ripper]]></category>
		<category><![CDATA[london]]></category>
		<category><![CDATA[Review]]></category>

		<guid isPermaLink="false">http://pintsizedcat.wordpress.com/?p=221</guid>
		<description><![CDATA[My wonderful girlfriend (I have to say that because she is and because she&#8217;s sat next to me) bought me From Hell for Christmas. It&#8217;s been something that I&#8217;ve been meaning to read for a while after borrowing it from a friend and failing to read it. After failing to read it the first time [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pintsizedcat.wordpress.com&amp;blog=2944439&amp;post=221&amp;subd=pintsizedcat&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>My wonderful girlfriend (I have to say that because she is and because she&#8217;s sat next to me) bought me From Hell for Christmas. It&#8217;s been something that I&#8217;ve been meaning to read for a while after borrowing it from a friend and failing to read it.</p>
<p>After failing to read it the first time I went into my local Comic shop, <a href="http://goshlondon.blogspot.com/">Gosh Comics</a> (they&#8217;re awesome) and had a conversation with someone there about Alan Moore and his inability to write anything bad. It was at this point that I admitted to not finishing From Hell and was chastised for it. It was actually a little more complex than this and I came away feeling a little stupid.</p>
<p>Anyway, cutting to the chase, I have to say that I think From Hell is probably the best Graphic Novel I&#8217;ve read. I didn&#8217;t think I would like the artist style at first, a sort of haphazard mess of etchy lines. It really pulls you in though, from the quieter moments to the grusome hacky slashy ripper moments, it all comes together really nicely. Eddie Campbell is an exceptional artist and I have to say I&#8217;m looking forward to reading Alec a lot.</p>
<p>The rest is also really great, it drags you in and I think it helps that I&#8217;ve grown up and live in London. Being able to recognise parts of London in Campbell&#8217;s art and relate to all the places the murders took place. Learning about Hawksmoor&#8217;s churches and wondering how much of the whole thing is fact and how much is thought up from Alan Moore&#8217;s magnificent mind.</p>
<p>I&#8217;m really looking forward to reading the appendix and doing a bit of research into Hawksmoor, the murders and the masonic cut on the whole thing.</p>
<br />Filed under: <a href='http://pintsizedcat.wordpress.com/category/reviews/comics/'>Comics</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pintsizedcat.wordpress.com/221/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pintsizedcat.wordpress.com/221/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pintsizedcat.wordpress.com/221/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pintsizedcat.wordpress.com/221/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pintsizedcat.wordpress.com/221/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pintsizedcat.wordpress.com/221/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pintsizedcat.wordpress.com/221/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pintsizedcat.wordpress.com/221/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pintsizedcat.wordpress.com/221/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pintsizedcat.wordpress.com/221/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pintsizedcat.wordpress.com/221/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pintsizedcat.wordpress.com/221/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pintsizedcat.wordpress.com/221/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pintsizedcat.wordpress.com/221/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pintsizedcat.wordpress.com&amp;blog=2944439&amp;post=221&amp;subd=pintsizedcat&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pintsizedcat.wordpress.com/2010/02/12/from-hell/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/40537ca7a5177b24051a5715f488cd3b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">pintsizedcat</media:title>
		</media:content>
	</item>
		<item>
		<title>Why can&#8217;t I delete that file?</title>
		<link>http://pintsizedcat.wordpress.com/2009/09/02/why-cant-i-delete-that-file/</link>
		<comments>http://pintsizedcat.wordpress.com/2009/09/02/why-cant-i-delete-that-file/#comments</comments>
		<pubDate>Wed, 02 Sep 2009 10:51:13 +0000</pubDate>
		<dc:creator>pintsizedcat</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Misc]]></category>
		<category><![CDATA[access denied]]></category>
		<category><![CDATA[debugging]]></category>
		<category><![CDATA[diagnosis]]></category>
		<category><![CDATA[files]]></category>
		<category><![CDATA[handle]]></category>
		<category><![CDATA[programs]]></category>
		<category><![CDATA[unable to delete]]></category>

		<guid isPermaLink="false">http://pintsizedcat.wordpress.com/?p=211</guid>
		<description><![CDATA[Just a really quick post because I should be working, but I found this out just today and it&#8217;s really very useful. Whenever you get a file that you can&#8217;t delete you just want to throttle windows, or the application that&#8217;s holding the file under it&#8217;s selfish control. Well, you can find out what is [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pintsizedcat.wordpress.com&amp;blog=2944439&amp;post=211&amp;subd=pintsizedcat&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Just a really quick post because I should be working, but I found this out just today and it&#8217;s really very useful. Whenever you get a file that you can&#8217;t delete you just want to throttle windows, or the application that&#8217;s holding the file under it&#8217;s selfish control. Well, you can find out what is holding that file with a wonderful tool called <a href="http://technet.microsoft.com/en-us/sysinternals/bb896655.aspx">Handle</a>.</p>
<p>It is a command line tool but it&#8217;s very easy to use, simply type in the following and you&#8217;ll be told (in slightly verbose terms) what has a handle to what:</p>
<blockquote><p>handle</p></blockquote>
<p>You will get a lot of output, but you might see something like this</p>
<blockquote><p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
EXCEL.EXE pid: 3712 TRUMPET\hba</p>
<p>530: File  (R&#8211;)   C:\Documents and Settings\hba\Desktop\Book1.xls</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p></blockquote>
<p>This tells us that Excel.exe has a handle on the Book1.xls meaning we can&#8217;t do stuff to it. You can make your life easier by using the following command to save the output from Handle so you can go back over it later (the following command saves the output to C:/handle.txt).</p>
<blockquote><p>handle &gt; C:\handle.txt</p></blockquote>
<p>There you go then, that&#8217;s that, not so technical so sorry about that maybe it&#8217;ll do a more in depth one later.</p>
<br />Posted in Computers, Misc  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pintsizedcat.wordpress.com/211/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pintsizedcat.wordpress.com/211/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pintsizedcat.wordpress.com/211/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pintsizedcat.wordpress.com/211/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pintsizedcat.wordpress.com/211/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pintsizedcat.wordpress.com/211/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pintsizedcat.wordpress.com/211/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pintsizedcat.wordpress.com/211/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pintsizedcat.wordpress.com/211/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pintsizedcat.wordpress.com/211/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pintsizedcat.wordpress.com/211/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pintsizedcat.wordpress.com/211/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pintsizedcat.wordpress.com/211/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pintsizedcat.wordpress.com/211/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pintsizedcat.wordpress.com&amp;blog=2944439&amp;post=211&amp;subd=pintsizedcat&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pintsizedcat.wordpress.com/2009/09/02/why-cant-i-delete-that-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/40537ca7a5177b24051a5715f488cd3b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">pintsizedcat</media:title>
		</media:content>
	</item>
		<item>
		<title>Scientology &#8211; my main problem</title>
		<link>http://pintsizedcat.wordpress.com/2009/08/02/scientology-my-main-problem/</link>
		<comments>http://pintsizedcat.wordpress.com/2009/08/02/scientology-my-main-problem/#comments</comments>
		<pubDate>Sun, 02 Aug 2009 09:00:59 +0000</pubDate>
		<dc:creator>pintsizedcat</dc:creator>
				<category><![CDATA[CoS]]></category>
		<category><![CDATA[Psychology]]></category>
		<category><![CDATA[Religion]]></category>
		<category><![CDATA[Science]]></category>
		<category><![CDATA[Scientology]]></category>
		<category><![CDATA[Self Help]]></category>
		<category><![CDATA[belief]]></category>
		<category><![CDATA[church of scientology]]></category>
		<category><![CDATA[definition]]></category>
		<category><![CDATA[psychiatry]]></category>
		<category><![CDATA[selfhelp]]></category>

		<guid isPermaLink="false">http://pintsizedcat.wordpress.com/?p=204</guid>
		<description><![CDATA[It&#8217;s been a while since I&#8217;ve written or even thought about Scientology, but just today I read a post over on My Scientology Blog, which was actually the response to some questions asked by a reader. One line really jumped out at me when I read it and it was the following: The tools we [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pintsizedcat.wordpress.com&amp;blog=2944439&amp;post=204&amp;subd=pintsizedcat&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been a while since I&#8217;ve written or even thought about Scientology, but just today I read a post over on <a href="http://myscientology.blogspot.com/2009/08/some-questions-about-scientology.html">My Scientology Blog</a>, which was actually the response to some questions asked by a reader. One line really jumped out at me when I read it and it was the following:</p>
<blockquote><p>The tools we have in Scientology don&#8217;t require belief in order to work.</p></blockquote>
<p>My main problem with Scientology has always been that it categorizes itself as a religion and yet claims that you do not need to believe anything to be a part of it. So, how can it be a religion when we get the definition of religion from any dictionary it always contains the aspect of belief.</p>
<blockquote><p>Religion:</p>
<p>1. beliefs and worship: people&#8217;s beliefs and opinions concerning the existence, nature, and worship of a deity or deities, and divine involvement in the universe and human life</p>
<p>2. system: an institutionalized or personal system of beliefs and practices relating to the divine</p>
<p>3. personal beliefs or values: a set of strongly-held beliefs, values, and attitudes that somebody lives by</p></blockquote>
<p>From <a href="http://encarta.msn.com/dictionary_/religion.html">Encarta Dictionary</a>.</p>
<p>If Scientology was openly a Self-Help system, a set of products for bettering yourself, or even agreed that it&#8217;s comparable to Psychology and Psychiatry I wouldn&#8217;t have any qualm with it. The rub comes with it claiming it&#8217;s a religion, by this definition Science is a religion and so pharmaceutical companies are religious entities.</p>
<p>I just have to sort out a set of questions I can pose to a Scientology that will make them contradict themselves.</p>
<br />Posted in CoS, Psychology, Religion, Science, Scientology, Self Help  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pintsizedcat.wordpress.com/204/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pintsizedcat.wordpress.com/204/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pintsizedcat.wordpress.com/204/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pintsizedcat.wordpress.com/204/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pintsizedcat.wordpress.com/204/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pintsizedcat.wordpress.com/204/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pintsizedcat.wordpress.com/204/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pintsizedcat.wordpress.com/204/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pintsizedcat.wordpress.com/204/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pintsizedcat.wordpress.com/204/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pintsizedcat.wordpress.com/204/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pintsizedcat.wordpress.com/204/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pintsizedcat.wordpress.com/204/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pintsizedcat.wordpress.com/204/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pintsizedcat.wordpress.com&amp;blog=2944439&amp;post=204&amp;subd=pintsizedcat&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pintsizedcat.wordpress.com/2009/08/02/scientology-my-main-problem/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/40537ca7a5177b24051a5715f488cd3b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">pintsizedcat</media:title>
		</media:content>
	</item>
		<item>
		<title>Useful windows shortcuts</title>
		<link>http://pintsizedcat.wordpress.com/2009/08/01/useful-windows-shortcuts/</link>
		<comments>http://pintsizedcat.wordpress.com/2009/08/01/useful-windows-shortcuts/#comments</comments>
		<pubDate>Sat, 01 Aug 2009 13:20:48 +0000</pubDate>
		<dc:creator>pintsizedcat</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[helpful]]></category>
		<category><![CDATA[minimize]]></category>
		<category><![CDATA[shortcuts]]></category>
		<category><![CDATA[support]]></category>
		<category><![CDATA[tile]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[winxp]]></category>

		<guid isPermaLink="false">http://pintsizedcat.wordpress.com/?p=198</guid>
		<description><![CDATA[Im always looking for new Keyboard shortcuts and I found this rather special gem today in my rss feeds. Quickly position two windows side by side in WinXP. Ctrl+Shift+Esc: Opens TaskManager (I didn&#8217;t know this before, very useful shortcut instead of Alt+Ctrl+Del then &#8216;t&#8217;) Select two or more windows that you want side by side [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pintsizedcat.wordpress.com&amp;blog=2944439&amp;post=198&amp;subd=pintsizedcat&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Im always looking for new Keyboard shortcuts and I found this rather special gem today in my rss feeds.</p>
<p>Quickly position two windows side by side in WinXP.</p>
<ol>
<li><strong>Ctrl+Shift+Esc:</strong> Opens TaskManager (I didn&#8217;t know this before, very useful shortcut instead of Alt+Ctrl+Del then &#8216;t&#8217;)</li>
<li>Select two or more windows that you want side by side (can use Ctrl+Space for this plus up, down).</li>
<li><strong>Alt+W</strong> which opens the Windows menu.</li>
<li><strong>V</strong> to Tile Vertically, H to Tile Horizontally.</li>
</ol>
<p>Taken from <a href="http://blogs.msdn.com/oldnewthing/archive/2009/07/30/9852686.aspx">The Old New Thing</a> and I have a bunch of others that I use frequently.</p>
<p><strong>Windows Key + E:</strong> Opens Explorer window so you can navigate your hard drives.</p>
<p><strong>Windows Key + D:</strong> The first time it shows the desktop, the second time it restores the windows.</p>
<p><strong>Windows Key + M:</strong> Minimizes all windows.</p>
<p><strong>Windows Key + Shift + M:</strong> Same thing as the second time you press <strong>Windows Key + D</strong>, restores the minimized windows.</p>
<p><strong>Windows Key + L:</strong> Locks the workstation instead of Ctrl+Alt+Del then k.</p>
<p><strong>Windows Key + R:</strong> Opens the Run dialog, this can also be useful for navigating to a directory quickly.</p>
<p><strong>Windows Key + Tab:</strong> Same thing as <strong>Alt+Tab</strong> but on the TaskBar, except you have to press space for that application to gain focus.</p>
<p><strong>Alt+PrintScreen:</strong> Same thing as <strong>PrintScreen</strong> except it only copies the currently selected window.</p>
<p>So far this is really it without getting in to application specific shortcuts, hope this helps someone out there.</p>
<br />Posted in Computers  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pintsizedcat.wordpress.com/198/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pintsizedcat.wordpress.com/198/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pintsizedcat.wordpress.com/198/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pintsizedcat.wordpress.com/198/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pintsizedcat.wordpress.com/198/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pintsizedcat.wordpress.com/198/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pintsizedcat.wordpress.com/198/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pintsizedcat.wordpress.com/198/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pintsizedcat.wordpress.com/198/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pintsizedcat.wordpress.com/198/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pintsizedcat.wordpress.com/198/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pintsizedcat.wordpress.com/198/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pintsizedcat.wordpress.com/198/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pintsizedcat.wordpress.com/198/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pintsizedcat.wordpress.com&amp;blog=2944439&amp;post=198&amp;subd=pintsizedcat&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pintsizedcat.wordpress.com/2009/08/01/useful-windows-shortcuts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/40537ca7a5177b24051a5715f488cd3b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">pintsizedcat</media:title>
		</media:content>
	</item>
		<item>
		<title>Surfing Wikipedia</title>
		<link>http://pintsizedcat.wordpress.com/2009/07/22/surfing-wikipedia/</link>
		<comments>http://pintsizedcat.wordpress.com/2009/07/22/surfing-wikipedia/#comments</comments>
		<pubDate>Wed, 22 Jul 2009 22:00:00 +0000</pubDate>
		<dc:creator>pintsizedcat</dc:creator>
				<category><![CDATA[Misc]]></category>
		<category><![CDATA[Science]]></category>
		<category><![CDATA[dusseldorf]]></category>
		<category><![CDATA[germany]]></category>
		<category><![CDATA[interesting]]></category>
		<category><![CDATA[inversion]]></category>
		<category><![CDATA[meterology]]></category>
		<category><![CDATA[smog]]></category>
		<category><![CDATA[troposphere]]></category>
		<category><![CDATA[warm front]]></category>
		<category><![CDATA[weather]]></category>
		<category><![CDATA[wikipedia]]></category>

		<guid isPermaLink="false">http://pintsizedcat.wordpress.com/?p=193</guid>
		<description><![CDATA[I have just returned from a trip to Düsseldorf for work and I didn&#8217;t have any chance to post anything whilst there or even do much of surfing the internet. I managed to get a lot of artwork done and at some point I&#8217;ll be posting it, but I do not have time at the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pintsizedcat.wordpress.com&amp;blog=2944439&amp;post=193&amp;subd=pintsizedcat&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I have just returned from a trip to Düsseldorf for work and I didn&#8217;t have any chance to post anything whilst there or even do much of surfing the internet. I managed to get a lot of artwork done and at some point I&#8217;ll be posting it, but I do not have time at the moment to do such things.</p>
<p>For the moment I&#8217;m going to go on about something that I find quite interesting, mearly because I get trapped by it quite a bit and end up wasting hours on <a href="http://www.wikipedia.com">Wikipedia</a>. I&#8217;m being lazy so I won&#8217;t give it any kind of introduction I&#8217;ll just dive right in to my story. When due to fly back from Germany I realised that I didn&#8217;t know what Low Pressure meant in terms of weather systems and so I went about trying to find out. What I find facinating about this is that I can easily get lost in the swamp of information that is Wikipedia.</p>
<p>Generally when I&#8217;m <em>Browsing</em> Wikipedia, I will follow a link on a page if I don&#8217;t know what it is and it seems interesting enough to persue. Here&#8217;s my journey in Meterology.</p>
<p><a href="http://en.wikipedia.org/wiki/Meterology"><strong>Meterology</strong></a> &#8211; As we all know, or should know, Meterology is basically the study of weather, which is to say that it&#8217;s not just the study of when it will rain, shine, etc, but also the study of Meteorological phenomena including, but not limited to storm formation, tornados, etc. What one may not know and is that most of this all takes place in the <a href="http://en.wikipedia.org/wiki/Troposphere">Troposphere</a></p>
<p><a href="http://en.wikipedia.org/wiki/Troposphere"><strong>Troposphere</strong></a> &#8211; This is the part of the atmosphere you live in extending between 4 miles (over the poles) to 12 miles (in tropical regions) above the earth. It contains over 99% of the atmosphere&#8217;s water vapor and 75% of it&#8217;s mass.  The border between this layer and the <a href="http://en.wikipedia.org/wiki/Stratosphere">Stratosphere</a> (which we all know of because it&#8217;s where aeroplanes fly and it&#8217;s where most of the heat gets trapped by the ozone layer) is called the <a href="http://en.wikipedia.org/wiki/Tropopause">Tropopause</a> which is a <a href="http://en.wikipedia.org/wiki/Inversion_(meteorology)">temperature inversion</a>.</p>
<p><a href="http://en.wikipedia.org/wiki/Inversion_(meteorology)"><strong>Temperature Inversion</strong></a> &#8211;  I&#8217;ve never heard of this before and it turns out to be quite simple, though probably a lot more complex when it occurs. Inversion is just a difference from the regular way atmospheric properties change with altitude. So normally you get temperature decrease with altitude, but in some situations you get temperature increasing with altitude, as in the tropopause because in the Stratosphere temperature starts to increase with altitude. Inversion can lead to nasty pollution like smog getting trapped here and at low altitudes causing health issues, as happened in <a href="http://en.wikipedia.org/wiki/Great_Smog_of_1952">London in 1952</a> (I&#8217;d love to go off on a red herring about the London 1952 smog but it didn&#8217;t occur during my original search). Inversion can also surpress convection which if broken can lead to violent thunderstorms, but most interestingly Inversion can result in <a href="http://en.wikipedia.org/wiki/Freezing_rain">Freezing Rain</a>.</p>
<p><a href="http://en.wikipedia.org/wiki/Freezing_rain"><strong>Freezing Rain</strong></a> &#8211;  As rain falls, if it passes through air that is below freezing the raindrops become supercooled (which is when a liquid or gas goes below it&#8217;s freezing point without becoming a solid). When these supercooled raindrops impact a surface they freeze which can give trees a glazed look, cause branches to break under the weight and effect the flow of air over an aircraft.</p>
<p><img src="http://upload.wikimedia.org/wikipedia/commons/thumb/4/49/ICERAIN2.JPG/795px-ICERAIN2.JPG" alt="" width="350px" align="center" /></p>
<p>You can see I&#8217;m incredibly off track already, but I want to finish with <a href="http://en.wikipedia.org/wiki/Warm_front">Warm Fronts</a> which can be the cause of freezing rain.</p>
<p><a href="http://en.wikipedia.org/wiki/Warm_front"><strong>Warm Front</strong></a> &#8211; I&#8217;ve often heard the term though I&#8217;ve never really known what it is, a warm front occurs when a body of warm air moves towards a body of cold air (potentially with a below zero temperature). The warm air doesn&#8217;t have the density to mix with the cold air and so it drifts above it, which causes the warm air to expand and cool forming clouds (high cirrus). As more air cools in this region and forms clouds they thicken into cirrostratus and altostratus and once they have reached 2,500km from the earth&#8217;s surface rain can begin to fall from the nibostratus clouds.</p>
<p>I don&#8217;t know the names of the clouds but there aren&#8217;t any direct links in Wikipedia and it&#8217;s at this point that I realise I still don&#8217;t know what <a href="http://en.wikipedia.org/wiki/Low_pressure">Low Pressure</a> really means in terms of weather and I give up for another day. Maybe I&#8217;ll find out what Low and High pressure really mean for weather one day, but for now I&#8217;m off to bed.</p>
<br />Posted in Misc, Science  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pintsizedcat.wordpress.com/193/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pintsizedcat.wordpress.com/193/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pintsizedcat.wordpress.com/193/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pintsizedcat.wordpress.com/193/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pintsizedcat.wordpress.com/193/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pintsizedcat.wordpress.com/193/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pintsizedcat.wordpress.com/193/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pintsizedcat.wordpress.com/193/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pintsizedcat.wordpress.com/193/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pintsizedcat.wordpress.com/193/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pintsizedcat.wordpress.com/193/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pintsizedcat.wordpress.com/193/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pintsizedcat.wordpress.com/193/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pintsizedcat.wordpress.com/193/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pintsizedcat.wordpress.com&amp;blog=2944439&amp;post=193&amp;subd=pintsizedcat&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pintsizedcat.wordpress.com/2009/07/22/surfing-wikipedia/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/40537ca7a5177b24051a5715f488cd3b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">pintsizedcat</media:title>
		</media:content>

		<media:content url="http://upload.wikimedia.org/wikipedia/commons/thumb/4/49/ICERAIN2.JPG/795px-ICERAIN2.JPG" medium="image" />
	</item>
		<item>
		<title>Obama swats a fly and the internet hates PETA</title>
		<link>http://pintsizedcat.wordpress.com/2009/06/18/obama-swats-a-fly-and-the-internet-hates-peta/</link>
		<comments>http://pintsizedcat.wordpress.com/2009/06/18/obama-swats-a-fly-and-the-internet-hates-peta/#comments</comments>
		<pubDate>Thu, 18 Jun 2009 11:42:28 +0000</pubDate>
		<dc:creator>pintsizedcat</dc:creator>
				<category><![CDATA[rant]]></category>
		<category><![CDATA[anger]]></category>
		<category><![CDATA[fly swatting]]></category>
		<category><![CDATA[ninja]]></category>
		<category><![CDATA[obama]]></category>
		<category><![CDATA[peta]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://pintsizedcat.wordpress.com/?p=187</guid>
		<description><![CDATA[So it seems like if the president swats a fly the media look to create some kind of storm about it. You can read at the moment on many &#8216;reputable&#8217; news sources that PETA is throwing a hissy fit about Obama swatting a fly. This, however, is totally incorrect. Just the tiniest bit of searching [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pintsizedcat.wordpress.com&amp;blog=2944439&amp;post=187&amp;subd=pintsizedcat&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>So it seems like if the president swats a fly the media look to create some kind of storm about it. You can read at the moment on many &#8216;reputable&#8217; news sources that PETA is throwing a hissy fit about Obama swatting a fly. This, however, is totally incorrect. Just the tiniest bit of searching finds us at The PETA Files (I hate to make the joke but I&#8217;m sure there is someone in Peta who is a PETA File&#8230;). <a href="http://blog.peta.org/archives/2009/06/obama_and_the_f.php">Here</a> is the article that clearly states</p>
<blockquote><p>Believe it or not, we&#8217;ve actually been contacted by multiple media outlets wanting to know PETA&#8217;s official response to the executive insect execution.</p>
<p>In a nutshell, our position is this: He isn&#8217;t the Buddha, he&#8217;s a human being, and human beings have a long way to go before they think before they act.</p></blockquote>
<p>The media contact PETA, PETA give a generalised statement about human beings and the media twist it to make it look like PETA are saying bad about the President. Then everyone and his sister get hold of it and scream and shout till the cows come home.</p>
<p>Oh well, you decide, just for the record I don&#8217;t particularly like PETA and this is one of the only times I&#8217;ll ever be on their side!</p>
<br />Posted in rant  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pintsizedcat.wordpress.com/187/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pintsizedcat.wordpress.com/187/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pintsizedcat.wordpress.com/187/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pintsizedcat.wordpress.com/187/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pintsizedcat.wordpress.com/187/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pintsizedcat.wordpress.com/187/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pintsizedcat.wordpress.com/187/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pintsizedcat.wordpress.com/187/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pintsizedcat.wordpress.com/187/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pintsizedcat.wordpress.com/187/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pintsizedcat.wordpress.com/187/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pintsizedcat.wordpress.com/187/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pintsizedcat.wordpress.com/187/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pintsizedcat.wordpress.com/187/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pintsizedcat.wordpress.com&amp;blog=2944439&amp;post=187&amp;subd=pintsizedcat&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pintsizedcat.wordpress.com/2009/06/18/obama-swats-a-fly-and-the-internet-hates-peta/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/40537ca7a5177b24051a5715f488cd3b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">pintsizedcat</media:title>
		</media:content>
	</item>
	</channel>
</rss>
