<?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>Photogabble &#187; google</title>
	<atom:link href="http://photogabble.co.uk/tag/google/feed" rel="self" type="application/rss+xml" />
	<link>http://photogabble.co.uk</link>
	<description>photoblog of simon dann</description>
	<lastBuildDate>Sun, 25 Dec 2011 14:19:43 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Googles quake2-gwt-port.</title>
		<link>http://photogabble.co.uk/featured/googles-quake2-gwt-port.html</link>
		<comments>http://photogabble.co.uk/featured/googles-quake2-gwt-port.html#comments</comments>
		<pubDate>Sat, 03 Apr 2010 20:08:14 +0000</pubDate>
		<dc:creator>simon</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Technical]]></category>
		<category><![CDATA[chromium]]></category>
		<category><![CDATA[Games]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[Quake]]></category>
		<category><![CDATA[quake2-gwt-port]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[webkit]]></category>

		<guid isPermaLink="false">http://photogabble.co.uk/?p=3461</guid>
		<description><![CDATA[Well I am so very glad that this was not a clever April Fools on Google&#8217;s part, because running quake 2 in your browser within the HTML5 canvas tag using a version of OpenGL amongst other cutting edge technologies, aside from being one more nail in flash&#8217;s coffin is absolutely amazing and something many &#8220;techies&#8221; [...]]]></description>
			<content:encoded><![CDATA[<p>Well I am so very glad that this was not a clever April Fools on Google&#8217;s part, because running quake 2 in your browser within the HTML5 canvas tag using a version of OpenGL amongst other cutting edge technologies, aside from being one more nail in flash&#8217;s coffin is absolutely amazing and something many &#8220;techies&#8221; have seen coming for a long time but up until now had now way of explaining it to the common man!</p>
<p>The <a href="http://code.google.com/p/quake2-gwt-port/wiki/BuildingAndRunning">quake2-gwt-port</a> was released yesterday April the 1st and like many I was dubious as to its reality due to it almost being something too good to be true, however after three hours of pain-staking building I managed to finally get it working. Due to the difficulties I encountered getting it working both under Debian with the 2.6.26-2-686 kernel and those simple problems found when doing the same within OSX, I have documented my findings here to help others in their quest at deciphering googles (at the moment) poor documentation on getting this to work!</p>
<h2>Disclaimer</h2>
<p>The information contained within this article is a journalised version of the notes I made while I went through the process of installing quake2-gwt-port, they have been published here for informal purposes only and you follow them at your own risk. I can not be held liable if your following the below in any way breaks your computer, just because it didn&#8217;t break mine, doesn&#8217;t mean it wont break yours. In other words getting this to work on your system can only really be done if you know what you are doing.</p>
<h2>Compiling quake2-gwt-port under Debian</h2>
<p>The first problem I ran into when attempting this under debian on my test server was the fact that java was not previously installed so running the following command quickly sorted that out, however it did take a few hours of searching and downloading 100MB+ files from the official JAVA website before I noticed that the second post on the google code page gave the answer.</p>
<p><tt>apt-get install openjdk-6-jdk</tt></p>
<p>Once java has been installed you need to install vorbis-tools and lame as these packages contain dependences that enable audio within the port, however while vorbis-tools will install through apt-get with no problems, the same can unfortunately not be said for lame. To get apt-get to install lame I had to update my /etc/apt/sources.list file with an additional source as documented within the <a title="Debian install lame multimedia codecs" href="http://wiki.debian.org/MultimediaCodecs">debian wiki here</a> and then run the following commands to update apt-get cache and install lame and vorbis-tools.</p>
<pre><code>apt-get update
apt-get install lame
apt-get install vorbis-tools
</code></pre>
<p>As a side-effect of the aforementioned additional source added to the <tt>apt-get</tt> sources list, <tt>apt-get</tt> kicks up the following fuss when you update it following the changes to <tt>/etc/apt/sources.list</tt>:</p>
<pre><code>W: GPG error: http://www.debian-multimedia.org lenny Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 07DC563D1F41B907
W: You may want to run apt-get update to correct these problems
</code></pre>
<p>I would ignore these, and simply remove the additional source from <tt>/etc/apt/sources.list</tt> once lame has been installed as we know it&#8217;s something we have done to cause the error, and its not stopped anything from working (yet, as far as I know).</p>
<p>Finally so that you can download the source from google code, you should also install <tt>mercurial</tt>, this can be done within debian and many other Linux distributions through the following <tt>apt-get</tt> command as <a title="How to install mercurial" href="http://mercurial.selenic.com/downloads/">documented here</a>.</p>
<pre><code>apt-get install mercurial</code></pre>
<p>For some reason on my version of debian the shell variable <tt>JAVA_HOME</tt> was not set up by the installation of Java (<tt>openjdk-6-jdk</tt>), therefore I had to crack open nano and edit <tt>/etc/profile</tt> to include the following just before the line that reads <tt>unmask 022</tt>:</p>
<pre><code>JAVA_HOME="/usr/lib/jvm/java-6-openjdk"
export JAVA_HOME</code></pre>
<p>If <tt>JAVA_HOME</tt> is not set then the compile process of Quake II will fail and you would have waisted 12 minutes waiting for the command line to tell you that.</p>
<p>Once you have followed the aforementioned you should now have the  following required packages installed <tt>mercurial, openjdk-6-jdk, </tt><tt>lame  and vorbis-tools.</tt> Your now ready to download and build Quake II for debian using the following simple steps:</p>
<ol>
<li>Load up your shell and <tt>cd</tt> into your home directory or other such workspace where your comfortable and run the following command to get a fresh copy of the code from google code:<br />
<tt>hg clone https://quake2-gwt-port.googlecode.com/hg/  quake2-gwt-port</tt></li>
<li><tt>cd</tt> into the newly formed <tt>quake2-gwt-port directory</tt></li>
<li>Run <tt>./build-dedicated-server</tt> this will build the tools and the client and server code.</li>
<li>Next Run <tt>./install-resources</tt> which will download, unpack, and convert the  original Quake II demo resources, for reasons of copyright respect these have to be downloaded from their source and cant be packaged on google code.</li>
<li>Due to a glitch in the way the above two commands install the code, you then have to copy the created <tt>gwtquake </tt>from <tt>maven-build/server/target/gwtquake/war/gwtquake</tt> to <tt>/war/gwtquake</tt> using the following command: <tt>cp -r maven-build/server/target/gwtquake/war/gwtquake war/qwtquake</tt></li>
<li>Everything is now ready to run using the command <tt>./run-dedicated-server [port]</tt></li>
</ol>
<p>On my debian set-up I encountered several [WARNING] notices during the resource install but those where mostly related to character encodings and did not halt or impair the install. As I installed this on my server I have not been able to test it works within a browser due to a lack of time, however the install under osx is a much simpler affair.</p>
<h2>Compiling quake2-gwt-port under OSX</h2>
<p><strong>Please Note</strong>: you must have OSX developer tools installed before you can compile anything.</p>
<p>As OSX does not come with <tt>vorbis-tools</tt> or <tt>lame</tt> installed you have to grab them yourself, fortunately with the fact that OSX is basically Linux with a pretty user interface doing so is very easy. To install the additional components required for the compiling of quake2-gwt-port under OSX I would recommend installing <a title="Get homebrew for OSX" href="http://github.com/mxcl/homebrew/tree/">homebrew</a>,over the much bloated MacPorts as given within the google code instructions. Installing homebrew is a very simple task indeed, first read through the online <a title="How to install Homebrew" href="http://wiki.github.com/mxcl/homebrew/installation">install instructions</a> so you know what your doing then simply run the following two lines of commands:</p>
<pre><code>sudo chown -R $USER /usr/local
curl -Lsf http://github.com/mxcl/homebrew/tarball/master | tar xvz -C/usr/local --strip 1
</code></pre>
<p>Once that has completed installing the required items for compiling the quake2-gwt-port is as simple as running the following lines of commands within OSX terminal:</p>
<pre><code>brew install vorbis-tools
brew install lame
brew install mercurial
</code></pre>
<p>Once that is done you can continue with the instructions 1 to 6 above under the debian install guide.</p>
<h2>Playing quake2-gwt-port under OSX</h2>
<p>Hopefully the install went smoothly and you are now ready to play with your new toy, unfortunately just sending any old browser to <tt>http://localhost:8080/GwtQuake.html</tt> wont work as almost all modern day browsers are not compatible with HTML5, or if they are its only half an implementation due to the protocols still being on the drawing board. Two browsers that are <a title="Compatible browsers with quake2-gwt-port" href="http://code.google.com/p/quake2-gwt-port/wiki/CompatibleBrowsers">compatible</a> with the <tt>quake2-gwt-port</tt> are Google&#8217;s own <a title="Download Chromium" href="http://build.chromium.org/buildbot/continuous/mac/LATEST/">Chromium</a> browser and <a title="Download Webkit" href="http://nightly.webkit.org/">Webkit</a> (click on links for download pages), which I presume to be the developers version of Safari due to its icon but I may be mistaken.</p>
<p>To get Webkit to play the game you first have to run the following command in terminal to enable webGL to be utilised by HTML5:</p>
<pre>
<code>defaults write com.apple.Safari WebKitWebGLEnabled -bool YES</code>
</pre>
<p>To get Chromium to play the game you have to first pass it a set of variables as you start it up, to do this, in your terminal <tt>cd</tt> to the applications folder where you have saved Chromium and run the following command to load Chromium with WebGL enabled:</p>
<pre><code>./Chromium.app/Contents/MacOS/Chromium --enable-webgl --no-sandbox
</code></pre>
<h2>Review of Game-play in Chromium and Webkit</h2>
<p>At the moment I am unable to get the game to run in Chromium with sound, however with Webkit while audio played amazingly well as did single player, when I set it up to run the demo it crashed every time. The performance in Webkit was also noticeably better than in Chromium, with Webkit hitting 40fps at one point while Chromium lagged behind with an average of just 10fps! I have included below some screen shots of each browser playing the game and shall post updates when I get the version installed on my server working multi-player with some systems in my house.</p>
<p><img class="aligncenter size-medium wp-image-3487" title="quake2-gwt-port working with webkit" src="http://photogabble.co.uk/wp-content/uploads/2010/04/GWTQuakeII_webkit-520x405.jpg" alt="quake2-gwt-port working with webkit" width="520" height="405" /></p>
<p><img class="aligncenter size-medium wp-image-3488" title="quake2-gwt-port working with chromium" src="http://photogabble.co.uk/wp-content/uploads/2010/04/GWTQuakeII_chromium-520x379.jpg" alt="quake2-gwt-port working with chromium" width="520" height="379" /></p>
<p>If you have attempted getting this to work, like the article or have  something to say, please add your comment below; I always try to respond  to all comments posted here.</p>
]]></content:encoded>
			<wfw:commentRss>http://photogabble.co.uk/featured/googles-quake2-gwt-port.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Adwords Vs Yell.com</title>
		<link>http://photogabble.co.uk/asides/google-adwords-vs-yell-com.html</link>
		<comments>http://photogabble.co.uk/asides/google-adwords-vs-yell-com.html#comments</comments>
		<pubDate>Mon, 17 Aug 2009 12:11:37 +0000</pubDate>
		<dc:creator>simon</dc:creator>
				<category><![CDATA[Asides]]></category>
		<category><![CDATA[adwords]]></category>
		<category><![CDATA[aside]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[yell]]></category>

		<guid isPermaLink="false">http://photogabble.co.uk/2009/08/17/google-adwords-vs-yell-com/</guid>
		<description><![CDATA[Google wants me to be paying £5.56 a day on googleads to keep a good click rate, yell.com charge £450 a year for an ad listing. Which is better value for money?]]></description>
			<content:encoded><![CDATA[<p>Google wants me to be paying £5.56 a day on googleads to keep a good click rate, yell.com charge £450 a year for an ad listing. Which is better value for money?</p>
]]></content:encoded>
			<wfw:commentRss>http://photogabble.co.uk/asides/google-adwords-vs-yell-com.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Photo</title>
		<link>http://photogabble.co.uk/damn-interesting/google-photo.html</link>
		<comments>http://photogabble.co.uk/damn-interesting/google-photo.html#comments</comments>
		<pubDate>Mon, 13 Oct 2008 17:00:18 +0000</pubDate>
		<dc:creator>simon</dc:creator>
				<category><![CDATA[Damn interesting]]></category>
		<category><![CDATA[Photography]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[google]]></category>

		<guid isPermaLink="false">http://photogabble.co.uk/?p=746</guid>
		<description><![CDATA[Found here yorityorit the above is a very interesting concept and something I may soon attempt to recreate myself. The idea of creating your own google images page not simply through coding html within the virtual domain but through physically making something untangable such as a webpage a physical object within the real world is [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a title="Google Photo" rel="lightbox[pics-1223646284]" href="http://photogabble.co.uk/wp-content/uploads/2008/10/3945.jpg"><img class="attachment wp-att-745 centered" src="http://photogabble.co.uk/wp-content/uploads/2008/10/3945.jpg" alt="" width="500" height="375" /></a></p>
<p>Found here <a href="http://yorityorit.blogspot.com/2007/08/its-google-world_05.html">yorityorit</a> the above is a very interesting concept and something I may soon attempt to recreate myself. The idea of creating your own google images page not simply through coding html within the virtual domain but through physically making something untangable such as a webpage a physical object within the real world is an interesting one. The website I found this on appears to have no link to original author so I cant say wether or not my interpretation is the authors original intentions, however I did feel it was important enough to share here with you  :heart:</p>
]]></content:encoded>
			<wfw:commentRss>http://photogabble.co.uk/damn-interesting/google-photo.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GooImaging</title>
		<link>http://photogabble.co.uk/damn-interesting/gooimaging.html</link>
		<comments>http://photogabble.co.uk/damn-interesting/gooimaging.html#comments</comments>
		<pubDate>Thu, 24 May 2007 15:50:17 +0000</pubDate>
		<dc:creator>simon</dc:creator>
				<category><![CDATA[Damn interesting]]></category>
		<category><![CDATA[Games]]></category>
		<category><![CDATA[game]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[googlewhack]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[search]]></category>

		<guid isPermaLink="false">http://www.photogabble.co.uk/2007/05/24/gooimaging/</guid>
		<description><![CDATA[Sorry no I couldn&#8217;t think up a better name for this game, I had been watching Dave Gormans googlewhack the other day and wondered if I could make a similar game for google image search. After playing around for ten minutes or so I came up with the following three simple rules: Search for any [...]]]></description>
			<content:encoded><![CDATA[<p>Sorry no I couldn&#8217;t think up a better name for this game, I had been watching Dave Gormans googlewhack the other day and wondered if I could make a similar game for google image search. After playing around for ten minutes or so I came up with the following three simple rules:</p>
<ol>
<li>Search for any name, male or female. One name only such as &#8220;Sam&#8221;, &#8220;Jess&#8221;, &#8220;Alex&#8221;, must have someone called after it.</li>
<li>Go to the page relevant to the number month you where born in. For me that&#8217;s page nine as I was born in September.</li>
<li>Choose the  number picture displayed coinciding with the day your where born on.  For me this is the 11th image shown.</li>
<li>*Must not be (if so go back one link):
<ol>
<li>Pornographic.</li>
<li>Non Human.</li>
</ol>
</li>
</ol>
<p>To make it more difficult you can have safe filter turned off and follow an additional fourth rule that the image must not be pornographic. Now you would think that such a simple game wouldn&#8217;t be very appealing and thus only a couple of minutes would have been wasted playing it. But to quite Dave Gorman nothing is that simple when it involves the internet and so I have wasted practically a whole day playing this silly game.</p>
<p>*After spending today playing the game I have added  fourth and fifth rules.<br />
<span id="more-386"></span></p>
<p>Now naturally I began playing this game by entering in my own name &#8220;Simon&#8221;. And I found the following image:</p>
<p style="text-align: center"><a href="http://photogabble.co.uk/wp-content/uploads/2007/05/simon-kirke-drums-poster.jpg" rel="lightbox[pics328]" title="Simon Kirke"><img src="http://photogabble.co.uk/wp-content/uploads/2007/05/simon-kirke-drums-poster.jpg" alt="Simon Kirke" class="imageframe imgaligncenter" height="355" width="450" /></a></p>
<p>This linked me to a cheesy <a href="http://www.freewebs.com/simonkirke/" title="Simon Kirke Fansite" target="_blank">Simon Kirke fansite</a> which didn&#8217;t give me any reason to hang around after the seccond time the mp3 looped on the page. Any page that thinks auto playing music to me, is not worth my time. However I had a game to play and wondered where I should go from here. Then I noticed the yellow copyright tag on the image, it gave a name and I knew what I should then do. I typed Lucy into google image search and the following came up.</p>
<p style="text-align: center"><a href="http://photogabble.co.uk/wp-content/uploads/2007/05/lucy-pinder-busting-out.jpg" rel="lightbox[pics328]" title="Lucy Pinder busting out"><img src="http://photogabble.co.uk/wp-content/uploads/2007/05/lucy-pinder-busting-out.jpg" alt="Lucy Pinder busting out" class="imageframe imgaligncenter" height="623" width="449" /></a></p>
<p>It would appear that female names are more likely to show images of women wearing very little, but I was lucky this time as the 11th image in was an image from <a href="http://tastefulcelebs.com/2006/07/27/lucy-pinder-lotta-cleavage/" title="Tasteful Celebs" target="_blank">Tasteful Celebs</a> and thus I was able to continue playing, but not before having a quick look through the page for another real name to use, I thought all was lost as the comments section only gave me names such as <span class="commentauthor">ajay</span> but then I saw at the bottom the name Dennis and continued to google images to check it out. By now I had come up with the hypothesis that I would find much more porn connected to female names than male names, thus the likelihood of me coming across a pornographic image and thus loosing the game increased with female names. I thought now I would see if I could make it to ten names in a row and see if my hypothesis was proven true or not, for now with current evidence it remained true as the name Dennis gave me this:</p>
<p style="text-align: center"><a href="http://photogabble.co.uk/wp-content/uploads/2007/05/dennis.jpg" rel="lightbox[pics328]" title="Dennis Womack"><img src="http://photogabble.co.uk/wp-content/uploads/2007/05/dennis.jpg" alt="Dennis Womack" class="imageframe imgaligncenter" height="297" width="450" /></a></p>
<p>The page is the self authored biography of the self confessed pipe smoker <a href="http://www.aspipes.org/bios/dennis.html" title="Dennis Womack" target="_blank">Dennis Womack</a>. Evidently this image is neither of a girl, or pornographic so I continued down the page in hope of another name from which to flow from. This was the first page I had come to on this journey which actually held my interest, the guy has a rather cool hobby collecting and smoking pipes is more classy that cigarettes and thus allowed (not sure if there are any health benefits but the smell of pipe tobacco doesn&#8217;t make me want to vomit like the cheap cigarette tobacco most smokers, smoke). After reading through the page a couple of times my eyes fell across the name of his wife &#8220;Syler&#8221; I had never heard of this name before but he said it was his wife&#8217;s so I took his word at face value and entered it into google hoping for clean images. I wasn&#8217;t that surprised to see that google images didn&#8217;t give me that great a choice, but at least it wasn&#8217;t porn. Unfortunately due to copyright constraints on the page and me not wanting to post a tiny thumbnail here you will have to <a href="http://nwitimes.mycapture.com/mycapture/enlarge.asp?userphoto=0&amp;image=12005153&amp;thispage=1" title="View the Image" target="_blank">go here</a> to see it, I got there from an index page of articles taken from the <a href="http://nwitimes.mycapture.com/mycapture/index.asp?viewall=yes&amp;view=yes&amp;groupingid=0&amp;event=&amp;thisPage=25" title="Northwest Indiana News" target="_blank">Northwest Indiana News</a> this gave me a host of names to choose from and as there wasn&#8217;t anything of much interest to me on that page I just grabbed the first name (&#8220;<font class="greyMYC">John&#8221;)</font> and entered it into google. This brought me to the <a href="http://www.stratford-upon-avon.co.uk/soaharv.htm" title="Harvard House &amp; a Brief History of John Harvard" target="_blank">following page</a> in Stratford-upon-Avons website and gave me the following image:</p>
<p style="text-align: center"><a href="http://photogabble.co.uk/wp-content/uploads/2007/05/john_harvard.jpg" rel="lightbox[pics328]" title="John Harvard"><img src="http://photogabble.co.uk/wp-content/uploads/2007/05/john_harvard.jpg" alt="John Harvard" class="imageframe imgaligncenter" height="450" width="272" /></a></p>
<p>By now I had become less interested in the content provided to me and more interested in finding 10 images linked in a row, so I scanned down the page for the first name to be mentioned and found &#8220;Robert&#8221;. This brought me to <a href="http://www.chaikin.force9.co.uk/robertbradford/robertbradfordindex.html" title="Robert Bradford, Artist" target="_blank">Robert Bradford&#8217;s personal website</a> and it would appear he is an Artist living in Cornwall and the image google gave me was of him and his wife Penny hanging a frame, not only was it a nice image but it gave me the seventh name for my journey.</p>
<p style="text-align: center"><a href="http://photogabble.co.uk/wp-content/uploads/2007/05/robert_penny.jpg" rel="lightbox[pics328]" title="Robert and Penny"><img src="http://photogabble.co.uk/wp-content/uploads/2007/05/robert_penny.jpg" alt="Robert and Penny" class="imageframe imgaligncenter" height="334" width="340" /></a></p>
<p>I held back for a second before entering it into google, so far I hadn&#8217;t landed on any porn images which was nice. But this was a female name and as my hypothesis predicted I had a higher chance of coming across an image which would end the game for me then and there. I took that chance and searched, finding this:</p>
<p style="text-align: center"><a href="http://photogabble.co.uk/wp-content/uploads/2007/05/pennypowerwealth_small.gif" rel="lightbox[pics328]" title="Penny"><img src="http://photogabble.co.uk/wp-content/uploads/2007/05/pennypowerwealth_small.gif" alt="Penny" class="imageframe imgaligncenter" height="273" width="330" /></a></p>
<p>Yes a graph! This wasn&#8217;t a picture of a girl called Penny, but a graph of her &#8220;Wealth Dynamics Profile&#8221; more of which can be seen <a href="http://www.ecademy.com/account.php?id=1001" title="Penny's Ecademy Page" target="_blank">here</a>. It would appear upon closer inspection of the page that she is the Founder of <a href="http://www.ecademy.com" title="Ecademy, connecting business people" target="_blank">Ecademy</a> a website created to connect business people. I decided that as the image was so far down the page, I would only focus on the &#8220;page area&#8221; it was on, saving me from reading through the entire page to find a name, the name given was her husbands (&#8220;<font class="sixty">Thomas&#8221;) and it gave me the following image:</font></p>
<p style="text-align: center"><a href="http://photogabble.co.uk/wp-content/uploads/2007/05/thomas_activity_ebay_400.jpg" rel="lightbox[pics328]" title="Thomas the Tank engine."><img src="http://photogabble.co.uk/wp-content/uploads/2007/05/thomas_activity_ebay_400.jpg" alt="Thomas the Tank engine." class="imageframe imgaligncenter" height="400" width="400" /></a></p>
<p>Thomas the tank engine, it was a dead end! There where no other names on the page, even the image itself didn&#8217;t give rise to any leads. I was stuck, could this be game over? Had I lost at the 8th hurdle? Cursing <a href="http://www.xs-stock.co.uk/product.php?xProd=1513" title="XS-Stock" target="_blank">xs-stock</a> I thought back to the inspiration for this journey, Dave&#8217;s Googlewhack adventure and thought hang on, when he got to a dead end he just turned back and followed another lead. So what was to stop me from doing that, it wasn&#8217;t in the three rules so that is exactly what I did, I turned back. My seventh GooImage was Pennys and I quickly scanned through the page for any other names than Thomas, I held high hopes as I didn&#8217;t want to have to go back all the way to five and build up from there. I didn&#8217;t have to search for long as right at the top of the page under her 50 words was the name &#8220;Hannah&#8221;. I held my breath as I searched google for it and breathed a sigh of relief as the following image popped up:</p>
<p style="text-align: center"><a href="http://photogabble.co.uk/wp-content/uploads/2007/05/hannah-ball-logo.jpg" rel="lightbox[pics328]" title="Hannah Ball Logo"><img src="http://photogabble.co.uk/wp-content/uploads/2007/05/hannah-ball-logo.jpg" alt="Hannah Ball Logo" class="imageframe imgaligncenter" height="449" width="450" /></a></p>
<p>It took me to a rather nasty looking <a href="http://www.hannahball.bucks.sch.uk/" title="Hannah Ball Infant School" target="_blank">web page</a>, not nasty as in content but the aesthetics made my eyes bleed, wasn&#8217;t surprising considering it had been designed in Microsoft FrontPage 5.0! I once again scanned the page for a name and saw it had been &#8220;designed&#8221; by a J Turner. A name being a name (first or last) I entered it into google and was happy to be faced with the following image as ninth in the chain:</p>
<p style="text-align: center"><a href="http://photogabble.co.uk/wp-content/uploads/2007/05/jack-turner-1985.jpg" rel="lightbox[pics328]" title="Jack Turner 1985"><img src="http://photogabble.co.uk/wp-content/uploads/2007/05/jack-turner-1985.jpg" alt="Jack Turner 1985" class="imageframe imgaligncenter" height="301" width="450" /></a></p>
<p>The image lead me to the homepage of <a href="http://www.turnersportscars.co.uk/t_home.html" title="Turner Sports Cars" target="_blank">Turner Sports Cars</a>. It was interesting to read and find out about a British built car I had never heard of. The image itself was of the man behind the design and building of the car, a car which was only built during the years 1949 to 1966. It was nice to read a little bit of history on such a beautiful car. To think if I hadn&#8217;t begun playing this game, I would never have seen this page. I found the next name and my tenth link in this chain at the bottom of the page, the name Russell was sat almost next to the image and without waiting any more I entered it into google and found the following:</p>
<p style="text-align: center"><a href="http://photogabble.co.uk/wp-content/uploads/2007/05/russell_wandadare1.gif" rel="lightbox[pics328]" title="Russell Wandadare"><img src="http://photogabble.co.uk/wp-content/uploads/2007/05/russell_wandadare1.gif" alt="Russell Wandadare" class="imageframe imgaligncenter" height="302" width="400" /></a></p>
<p>It wasn&#8217;t a picture of a person, rather a cartoon and the page in question was about the cartoonist <a href="http://lambiek.net/artists/r/russell_dan.htm" title="Dan Russell Cartoon" target="_blank">Dan <em>Russell</em></a>. It was also the tenth link in the chain. I have to admit that at this point I felt the game had been too easy I had got to ten in a row with only one set back, if I where to play it again I would need to make it more complex.  Also my hypothesis wasn&#8217;t proven either correct or incorrect as I had mostly received male names, this could be attributed to the fact that males dominate the internet but that would be a question to be answered another day. Instead I compiled the following diagram to show my journey and thought up two more rules to be added to the game.</p>
<p style="text-align: center"><a href="http://photogabble.co.uk/wp-content/uploads/2007/05/9links.gif" rel="lightbox[pics328]" title="9links"><img src="http://photogabble.co.uk/wp-content/uploads/2007/05/9links.gif" alt="9links" class="imageframe imgaligncenter" height="137" width="450" /></a></p>
<p>It was at this point I noticed something odd.  I had only done 9 links. I thought I had finished and won, but I hadn&#8217;t. I still had that 10th link to find. Fortunately this didn&#8217;t cause that big of a problem, the 9th link had provided me with many names to choose from and I went once again for the first in the page (Jim). Upon a very quick google I came across this:</p>
<p style="text-align: center"><a href="http://photogabble.co.uk/wp-content/uploads/2007/05/jim1.jpg" rel="lightbox[pics328]" title="Jim"><img src="http://photogabble.co.uk/wp-content/uploads/2007/05/jim1.jpg" alt="Jim" class="imageframe imgaligncenter" height="300" width="400" /></a></p>
<p>Not going to comment on the image, just glad it wasn&#8217;t porn. It looks like the page is from <a href="http://wordmunger.com/?m=200607" title="Word Munger" target="_blank">someone&#8217;s blog</a> describing a holiday they went on. For me it was a gold mine for names. However I had to take a break, spending this many consecutive hours on google does things to you. So that is where I leave the journey for now. 10 Links, 11 images 1 dead end. I wonder what tomorrow will bring.</p>
<p style="text-align: center"><a href="http://photogabble.co.uk/wp-content/uploads/2007/05/10links.gif" rel="lightbox[pics328]" title="10 Links"><img src="http://photogabble.co.uk/wp-content/uploads/2007/05/10links.gif" alt="10 Links" class="imageframe imgaligncenter" height="124" width="450" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://photogabble.co.uk/damn-interesting/gooimaging.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A short update</title>
		<link>http://photogabble.co.uk/life-happens/a-short-update.html</link>
		<comments>http://photogabble.co.uk/life-happens/a-short-update.html#comments</comments>
		<pubDate>Fri, 27 Apr 2007 03:02:46 +0000</pubDate>
		<dc:creator>simon</dc:creator>
				<category><![CDATA[Life Happens]]></category>
		<category><![CDATA[Website Update]]></category>
		<category><![CDATA[anti]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[hell]]></category>
		<category><![CDATA[spam]]></category>
		<category><![CDATA[supplemental]]></category>
		<category><![CDATA[template]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.photogabble.co.uk/2007/04/27/a-short-update/</guid>
		<description><![CDATA[I know I&#8217;m going to end up eating my words but I thought I would post a short update to let people know what&#8217;s going on. It&#8217;s quite obvious with any blog that when the blogger disappears for a short while without notice they are normally redesigning the blog or extremely busy or both as [...]]]></description>
			<content:encoded><![CDATA[<p>I know I&#8217;m going to end up eating my words but I thought I would post a short update to let people know what&#8217;s going on. It&#8217;s quite obvious with any blog that when the blogger disappears for a short while without notice they are normally redesigning the blog or extremely busy or both as in my case. I have had a lot of university work loaded on me the past two weeks and that load has only gone and quadrupled since taking on a film production with <a href="http://www.joeybrannigan.co.uk/">Joey Brannigan</a>. Alongside all this work I have been redesigning this blog from the ground up. It will be the first template that I will have actually finished writing and considering my earlier attempts it will most likely be, in my opinion the best; although it has to be expected that a few people may disagree.</p>
<p>I haven&#8217;t based my new design on any other template base as its been entirely coded from scratch. I predict that with the current degree of work I have to do the new design won&#8217;t be &#8220;live&#8221; for another week at least while I fix things, which is being made all the more difficult considering that the database for this wordpress install is extremely old dating back to the first version of wordpress! So it has collected a hell of a lot of extra baggage in that time. Unfortunately there are only three ways of fixing this that I know of. One is to start the blog again from scratch, something I am not prepared to do. While the long and tedious task of manually copying over 217 posts and more than 400 comments really is too much for me to contemplate. So I have chosen the easy route, or easier route; I am writing a PHP script to copy select bits of my wordpress database &#8211; most notably the posts, categories and comments tables as well as link tables. The script will then condition the data while its stored in an array before inserting it into my new fresh wordpress install. This new install has fixed a hell of a lot of bugs which I had been noticing in the admin of the blog, bugs which actually have no plausible answer as to why they have happened such as the feeds on the dashboard being shown in reverse date order &#8211; thus me only being able to see the oldest posts in the community <img src='http://photogabble.co.uk/wp-includes/images/smilies/icon_neutral.gif' alt=':|' class='wp-smiley' />  No one else seems to have had that problem except for me and I believe it to be a corruption within the config table.</p>
<p>Other advancements I am adding to the website are a full portfolio, about me and gallery for those of you who are interested in seeing what I have created, knowing more about me and viewing the photos I so lovingly capture and publish. There will also be an opportunity to hire me if you like my work.</p>
<p>Lastly or at least second to last, one third of the traffic to this blog is spam requests which is stupidly annoying and is causing undue stress on my server. Some of the spam waves have been able to knock my server out for hours which is not only against the law but an inconvenience to both myself and people who visit. I have been putting into place some counter measures to reduce the effect, these should hopefully be noticeable when the new theme is booted.</p>
<p>Lastly I read <a href="http://www.seomoz.org/blog/how-i-escaped-googles-supplemental-hell">this</a> about Google&#8217;s Supplemental Hell and have decided to add some counter measures to that in the new theme. I recommend you read that post and see what you can do to save your blog.</p>
<p>Oh and before I go, I know this is an amazingly long post or the irony. However I must also note that the new theme will most likely be available in a cut down form as a wordpress theme. I don&#8217;t know if I shall release it or not that all depends on how much interest I receive&#8230;</p>
<p>Good night.</p>
]]></content:encoded>
			<wfw:commentRss>http://photogabble.co.uk/life-happens/a-short-update.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Feedburner and Powerflakes</title>
		<link>http://photogabble.co.uk/life-happens/feedburner-and-powerflakes.html</link>
		<comments>http://photogabble.co.uk/life-happens/feedburner-and-powerflakes.html#comments</comments>
		<pubDate>Tue, 23 Jan 2007 01:42:59 +0000</pubDate>
		<dc:creator>simon</dc:creator>
				<category><![CDATA[Life Happens]]></category>
		<category><![CDATA[feed]]></category>
		<category><![CDATA[feedburner]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[homepage]]></category>
		<category><![CDATA[powerflakes]]></category>

		<guid isPermaLink="false">http://www.photogabble.co.uk/2007/01/23/feedburner-and-powerflakes/</guid>
		<description><![CDATA[As part of my continual aim to improve photogabble much to Soras delight I might add I have modified certain bits that she had recommended be changed. While doing so I discovered Feedburner, now don&#8217;t burn me I already knew of its existence I just never really checked it out much. However I saw their [...]]]></description>
			<content:encoded><![CDATA[<p>As part of my continual aim to improve photogabble much to Soras delight I might add I have modified certain bits that she had recommended be changed. While doing so I discovered <a href="http://www.feedburner.com">Feedburner</a>, now don&#8217;t burn me I already knew of its existence I just never really checked it out much. However I saw their little widget thing on a couple of website&#8217;s and thought it might very well make life easier for me and let me know statistics of people who view my content directly from feed. So I signed up, could say it was the fact that &nbsp;blogs I regularly check out; <a href="http://www.nostrich.net">nostrich</a>, <a href="http://jarkolicious.com">jarkolicious</a>, <a href="http://onestarrynight.com">onestarrynight</a> &amp; <a href="http://x1brettstuff.blogspot.com">x1brettstuff</a> all use Feedburner which led to my decision.</p>
<p>So yeah if you currently use my old feed links then don&#8217;t worry I set up the sexy little .htaccess file to automatically deal with old feed traffic, mostly to save me having to change anything in the website&#8217;s template except for adding the widget <img src='http://photogabble.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<h3><font face="Lucida Sans Unicode" color="#888888">Powerflakes</font></h3>
<p>Seeing as I visit my top five blogs every day to check if they have new stuff, it dawned on me that I should have a feed aggregator for my home page that would show up all my favorite subscribed website&#8217;s and let me know if there is any new posts. At first I tried Google home page but the design reminded me too much of 1999 all nasty and without style. In the end after looking about I decided upon <a href="http://www.pageflakes.com">Powerflakes</a>. It has a nice clean design and I can fit three columns on my monitor with ease so I can show all my regular blogs feeds in one page, fantastic! It is now my homepage and so everytime I open a new tab I can quickly check for any updates.</p>
]]></content:encoded>
			<wfw:commentRss>http://photogabble.co.uk/life-happens/feedburner-and-powerflakes.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

