
<?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>Martin Gardner.co.uk</title>
	<atom:link href="http://www.martin-gardner.co.uk/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.martin-gardner.co.uk</link>
	<description>Technology - Gadgets - Programing - Gaming - Reviews - Tutorials</description>
	<lastBuildDate>Sun, 21 Feb 2010 01:13:14 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to Get Your Wordpress Plugin To DROP TABLE From The Database</title>
		<link>http://www.martin-gardner.co.uk/how-to-get-your-wordpress-plugin-to-drop-table-from-the-database/</link>
		<comments>http://www.martin-gardner.co.uk/how-to-get-your-wordpress-plugin-to-drop-table-from-the-database/#comments</comments>
		<pubDate>Thu, 28 Jan 2010 00:10:52 +0000</pubDate>
		<dc:creator>Marty</dc:creator>
				<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.martin-gardner.co.uk/?p=1438</guid>
		<description><![CDATA[I&#8217;m going to show you an easy way, how to get rid of your database tables &#38; options when the plugin is deactivated, that&#8217;s if you want them deleted?


If you&#8217;ve ever made a plugin or thought about making a plugin for wordpress which includes its own set of database tables, then the chances are (like [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m going to show you an easy way, how to get rid of your database tables &amp; options when the plugin is deactivated, that&#8217;s if you want them deleted?<br />
<span id="more-1438"></span></p>
<blockquote style="line-height: 18px;"><p><a href="http://www.martin-gardner.co.uk/contact/"><img class="alignnone size-full wp-image-1440" style="margin: 0px 0px 10px 10px;" title="Wordpress - Do you need Help?" src="http://www.martin-gardner.co.uk/wp-content/uploads/2010/01/wordpress.jpg" alt="Wordpress - Do you need Help?" width="287" height="182" align="right" /></a></p>
<p>If you&#8217;ve ever <a href="http://www.martin-gardner.co.uk/wordpress/">made a plugin</a> or thought about <a href="http://codex.wordpress.org/Writing_a_Plugin">making a plugin for wordpress</a> which includes its own set of database tables, then the chances are (like most plug-ins) they wont remove the data when the plug-ins been de-activated.</p>
<p>In most cases this is to preserve the data in those tables, Just in case the user wants to reactivate the plugin with all the options still saved, or in other case&#8217;s, it&#8217;s just plain lazy?</p></blockquote>
<h2 style="color: #dc1000;">The Function</h2>
<pre class="brush: php;">
&lt;?php
function pluginUninstall() {
  global $wpdb;
  $thetable = $wpdb-&gt;prefix.&quot;your_table_name&quot;;
  //Delete any options that's stored also?
  //delete_option('wp_yourplugin_version');
  $wpdb-&gt;query(&quot;DROP TABLE IF EXISTS $thetable&quot;);
}
?&gt;
</pre>
<p>What you have to do is hook this Function into wordpress.<br />
So when the plugin is de-activated you want this code to run&#8230;</p>
<h2 style="color: #dc1000;">The Hook</h2>
<blockquote><p>To do this, we call&#8230;</p>
<p><strong>register_deactivation_hook($file, $function)</strong></p>
<p>This wordpress function takes 2 parameters in order for it to work&#8230;</p>
<ol>
<li>The File to be called</li>
<li>The Function to run</li>
</ol>
</blockquote>
<h2 style="color: #dc1000;">Example:</h2>
<p>If your plugin is located in either of following locations<br />
http://www.yourblog.com/wp-content/plugins/yourplugin.php or</p>
<p>http://www.yourblog.com/wp-content/plugins/yourplugin/plugin-name.php</p>
<p>then you can use this..</p>
<blockquote><p><strong>register_deactivation_hook( __FILE__, &#8216;pluginUninstall&#8217; );</strong></p></blockquote>
<p>The <strong><em>__FILE__</em></strong> will point to were your function is located, (The Current File your working in) and the 2nd part after the comma is the name of the function which is being passed, in this case were calling our <strong><em>pluginUninstall</em></strong> function, this will then remove all the options and tables that&#8217;s been added in the function.</p>
<h2 style="color: #dc1000;">Preserve Your Data</h2>
<p>If your plugin needs to/or you want it to, keep some form of data behind after its de-activated, then you can simply write another function to handle that request, maybe you have an admin options page for your plugin? on there you can add a small section with a form, this can just have a button, which when pressed it can run the function and remove whatever data you would like&#8230;</p>
<blockquote><p>You know of any other way? feel free to share!</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.martin-gardner.co.uk/how-to-get-your-wordpress-plugin-to-drop-table-from-the-database/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Easy Install Liteon Switch for 74850c, 83850v1, 83850v2, 93450 Read/Write to all Drives</title>
		<link>http://www.martin-gardner.co.uk/easy-install-liteon-switch-for-74850c-83850v1-83850v2-93450-readwrite-to-all-drives/</link>
		<comments>http://www.martin-gardner.co.uk/easy-install-liteon-switch-for-74850c-83850v1-83850v2-93450-readwrite-to-all-drives/#comments</comments>
		<pubDate>Fri, 15 Jan 2010 10:04:54 +0000</pubDate>
		<dc:creator>Marty</dc:creator>
				<category><![CDATA[Present]]></category>
		<category><![CDATA[liteon]]></category>
		<category><![CDATA[Xbox]]></category>
		<category><![CDATA[Xbox 360]]></category>

		<guid isPermaLink="false">http://www.martin-gardner.co.uk/?p=1385</guid>
		<description><![CDATA[A few days ago team-xecuter.com announced that they had designed a simple circuit to enable full firmware read/write on all versions of Liteon drive up to the very latest 93450.

The response was unprecedented – especially from installers who were given generous wholesale discounts by all of our resellers.
After reading an enormous amount of feedback we [...]]]></description>
			<content:encoded><![CDATA[<p>A few days ago <a href="http://team-xecuter.com/xecuter-lt-switch-enhanced-version/">team-xecuter.com</a> announced that they had designed a simple circuit to enable full firmware read/write on all versions of Liteon drive up to the very latest 93450.</p>
<p><span id="more-1385"></span><a href="http://www.mrmodchips.co.uk/catalog/product_info.php?ref=57&amp;products_id=785&amp;affiliate_banner_id=1" target="_blank"><img style="margin: 10px;" src="http://www.mrmodchips.co.uk/catalog/affiliate_show_banner.php?ref=57&amp;affiliate_pbanner_id=785" border="0" alt="Xecuter LT Switch - Liteon 74850 83850 93450 Read Write Switch *ENHANCED VERSION*" width="565" height="533" /></a></p>
<p>The response was unprecedented – especially from installers who were given generous wholesale discounts by all of our resellers.</p>
<p>After reading an enormous amount of feedback we made some extra changes to the design in time for shipping to resellers next week:</p>
<ul>
<li>* Redesigned circuit to give a cleaner filter when switching to Vendor mode. No more read errors !</li>
<li>* Enlarged solder points to give an easier flow to the Liteon PCB points – Noob friendly !</li>
<li>* Added Read/Write Mode LED (RED)</li>
<li>* Added Normal 360 Mode LED (Green)</li>
<li>* Upgrade the switch to a stronger more robust model</li>
<li>* Changed location of LED so they can be viewed when Liteon PCB is installed to its case</li>
<li>* Slight improvement to the PCB shape so it sits firmly and accurately in place when soldering.</li>
</ul>
<p><strong>Expected in store: 18/01/2010</strong></p>
<div style="margin-left: 85px;">
<div class="ngg-galleryoverview" id="ngg-gallery-6-1385">


	
	<!-- Thumbnails -->
		
	<div id="ngg-image-123" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.martin-gardner.co.uk/wp-content/gallery/xecuter-lt-switch/final_version-1.jpg" title=" " class="thickbox" rel="set_6" >
								<img title="final_version-1" alt="final_version-1" src="http://www.martin-gardner.co.uk/wp-content/gallery/xecuter-lt-switch/thumbs/thumbs_final_version-1.jpg" width="92" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-124" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.martin-gardner.co.uk/wp-content/gallery/xecuter-lt-switch/final_version-2.jpg" title=" " class="thickbox" rel="set_6" >
								<img title="final_version-2" alt="final_version-2" src="http://www.martin-gardner.co.uk/wp-content/gallery/xecuter-lt-switch/thumbs/thumbs_final_version-2.jpg" width="79" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-125" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.martin-gardner.co.uk/wp-content/gallery/xecuter-lt-switch/final_version-3.jpg" title=" " class="thickbox" rel="set_6" >
								<img title="final_version-3" alt="final_version-3" src="http://www.martin-gardner.co.uk/wp-content/gallery/xecuter-lt-switch/thumbs/thumbs_final_version-3.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-126" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.martin-gardner.co.uk/wp-content/gallery/xecuter-lt-switch/final_version-4.jpg" title=" " class="thickbox" rel="set_6" >
								<img title="final_version-4" alt="final_version-4" src="http://www.martin-gardner.co.uk/wp-content/gallery/xecuter-lt-switch/thumbs/thumbs_final_version-4.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-clear'></div>
 	
</div>

</div>
<p>Using this piece of hardware, you can flash Read/Write to any liteon drive,</p>
<p>including the newest 93450, Using the simple 6 solder points on the PCB</p>
<p>you can install this in under a min, ( after you get your case and dvd player all un-boxed :) )</p>
<p><a href="http://www.mrmodchips.co.uk/catalog/product_info.php?ref=57&amp;products_id=785&amp;affiliate_banner_id=1" target="_blank">Buy yours @ MrModchips &#8211; *ENHANCED VERSION*</a></p>
<h2>What else is for Sale?</h2>
<table>
<tbody>
<tr>
<td width="149" align="center" valign="top"><a href="http://www.mrmodchips.co.uk/catalog/product_info.php?ref=57&amp;products_id=689&amp;affiliate_banner_id=1" target="_blank"><br />
<img src="http://www.mrmodchips.co.uk/catalog/affiliate_show_banner.php?ref=57&amp;affiliate_pbanner_id=689" border="2" alt="Team Xecuter CK3 Connectivity Kit v3 Pro (Rev C Version)" width="118" height="118" /><br />
</a></td>
<td width="936" valign="top">
<h3>Team Xecuter CK3 Connectivity Kit v3 Pro (Rev C Version)</h3>
<p>New in this kit is the ability to extract the key from the new Liteon drives in order for you to be able to use another model drive which can be updated / repaired.<br />
Now supporting full USB !!</p>
<p><strong>Feature List: </strong></p>
<p>- USB Support (Liteon Key dumping)</p>
<p>- Powers ALL XBOX 360 DVD Drives</p>
<p>- Mode-B on Hitachi 59 &amp; Earlier (78/79 Require Slax Disc)</p>
<p>- Compatible with already released tools (dvdkey/dvdkey32/toolbox etc)</p>
<p>- Onboard ON/OFF Switch</p>
<p>- Onboard Eject Switch</p>
<p>- FREE 360 Hard Drive Adapter</p>
<p>- Effortlessly transfer files from your 360 hard drive to your PC without   opening up the case!</p>
<p>- FREE USB Cable</p>
<p>- High Build Quality</p>
<p>- Trusted Xecuter Design</p>
<p>- Noob Power Protection to prevent damage to the kit from incorrect dvd drive   power lead</p>
<p><a href="http://www.mrmodchips.co.uk/catalog/product_info.php?ref=57&#038;products_id=689&#038;affiliate_banner_id=1" target="_blank"><span style="color: #f00;">£17.99</span></a></td>
</tr>
<tr>
<td align="center" valign="top"><a href="http://www.mrmodchips.co.uk/catalog/product_info.php?ref=57&amp;products_id=759&amp;affiliate_banner_id=1" target="_blank"><br />
<img src="http://www.mrmodchips.co.uk/catalog/affiliate_show_banner.php?ref=57&amp;affiliate_pbanner_id=759" border="2" alt="TEAM XECUTER BLASTER CK3" width="118" height="118" /><br />
</a></td>
<td valign="top">
<h3>TEAM XECUTER BLASTER CK3</h3>
<p>The Xecuter Blaster CK3 is the latest version of the Blaster 360 series – new and improved with added support for the Liteon drives – we have also included a FREE CK3 Probe for the Liteon 74850C DVD drive and a FREE Xbox 360 Case Unlock Tool &amp; Screwdriver !</p>
<p>The Xecuter Blaster CK3 is an external switching device when, once fitted, allows you to flash your DVD Firmware without ever having to open up your Xbox 360 case ever again. In the era of constant firmware updates (35+ so far) this is an absolutely essential tool saving both time and effort, making the firmware update process a walk in the park.</p>
<p>A perfect ergonomic design means there is no soldering and no cutting of the external case – just plug ‘n’ go. You only ever have to open up your case once! No longer will you have to have your Xbox 360 in pieces all the time, no longer will you have to take the Xbox apart every time you need to update new features and functions or essential bug fixes.</p>
<p><a href="http://www.mrmodchips.co.uk/catalog/product_info.php?ref=57&amp;products_id=759&amp;affiliate_banner_id=1" target="_blank"><span style="color: #f00;">£37.49</span></a></td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://www.martin-gardner.co.uk/easy-install-liteon-switch-for-74850c-83850v1-83850v2-93450-readwrite-to-all-drives/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Beautiful Custom Design Wordpress Book</title>
		<link>http://www.martin-gardner.co.uk/a-beautiful-custom-design-wordpress-book/</link>
		<comments>http://www.martin-gardner.co.uk/a-beautiful-custom-design-wordpress-book/#comments</comments>
		<pubDate>Wed, 06 Jan 2010 14:33:50 +0000</pubDate>
		<dc:creator>Marty</dc:creator>
				<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.martin-gardner.co.uk/?p=1364</guid>
		<description><![CDATA[The Guys over at http://digwp.com have released there Beautiful Custom Design Book for wordpress&#8230; click on through for a full run down&#8230; or click here to go direct to the shop



400 Pages of Practical Information
There is much to learn about the World’s most popular publishing platform. From your first steps of learning about WordPress all [...]]]></description>
			<content:encoded><![CDATA[<p>The Guys over at <a href="http://digwp.com/" target="_blank">http://digwp.com</a> have released there <em>Beautiful Custom Design Book</em> for wordpress&#8230; click on through for a full run down&#8230; or click <a href="https://www.e-junkie.com/ecom/gb.php?cl=88539&amp;c=ib&amp;aff=100026" target="_blank">here</a> to go direct to the shop</p>
<p><span id="more-1364"></span><br />
<a href="https://www.e-junkie.com/ecom/gb.php?cl=88539&amp;c=ib&amp;aff=100026" target="_blank"><img src="http://digwp.com/images/digwp-728x90.jpg" width="600" height="70" border="0" /></a></p>
<p><a href="https://www.e-junkie.com/ecom/gb.php?cl=88539&amp;c=ib&amp;aff=100026" target="_blank"><img class="alignnone" style="padding: 10px 0 10px 10px;" title="Digging into Wordpress - The Book" src="http://digwp.com/images/digwpebook.gif" border="0" alt="" align="right" /></a></p>
<h3 style="color:#026EB6;">400 Pages of Practical Information</h3>
<p>There is much to learn about the World’s most popular publishing platform. From your first steps of learning about WordPress all the way through maintaining a site throughout the years, this book is packed with truly practical information.</p>
<h3 style="color:#026EB6;">Beautiful Custom Design</h3>
<p>Design-wise, Digging into WordPress is a beautiful book: every page of the book is printed with stunning digital-color precision on gloss-finish paper, with each of its eight chapters color-coded to provide quick and easy navigation. With its large, clear typography, each page is easy on the eyes and easy to read.</p>
<h3 style="color:#026EB6;">PDF Version</h3>
<p>All printed copies of the book include a PDF version that you can read on your computer (or you can buy the PDF version alone). We know it’s nice to have a real book to hold in your hands, but the PDF is also great for three big reasons:</p>
<ol>
<li><strong>Hyperlinked.</strong> All the many URL’s in the book you can just click to go to the web page referenced. There is also internal linking – you can click links in the table of contents to jump to those sections.</li>
<li><strong>Copy &amp; Paste code.</strong> Much easier to grab code via copy &amp; paste than retyping from scratch. Of course the page numbers in the book and PDF match, so if you are reading the book you can jump over to the PDF and go to that page to copy and paste. You’ll always know <em>exactly</em> where that code is.</li>
<li><strong>Search.</strong> The book has an appendix, but that’s never quite as good as just using your PDF readers search feature to find what you are looking for.</li>
</ol>
<p><a href="https://www.e-junkie.com/ecom/gb.php?cl=88539&amp;c=ib&amp;aff=100026" target="_blank"><img class="alignnone" style="padding: 10px 0 10px 10px;" title="Digging into Wordpress - The Book" src="http://digwp.com/images/250x250-Campaign.png" border="0" alt="" align="right" /></a></p>
<p><em><a title="Download Free Demo PDF" href="http://digwp.com/book-demo/Digging-Into-WP-DEMO.pdf" target="_blank">Download a free PDF sample of the book..</a></em><br />
<small>Features entire Table of Contents &amp; part of Chapter 3</small></p>
<h3 style="color:#026EB6;">A Lifetime Subscription</h3>
<p>When you buy this book, you will instantly get the most current version. But also, you are getting a lifetime subscription to all updated (PDF) copies of the book. Updates will automatically be emailed to you as they are released.</p>
<h3 style="color:#026EB6;">Spiral Bound!</h3>
<p>How many tech books do you wish would JUST FLIPPING ?!@!*! STAY FLAT while you are trying to reference them while at the computer.</p>
<h3 style="color:#026EB6;">Lots of Code Samples</h3>
<p>We go into depth about the anatomy of a WordPress theme. How they work, and how to write the code you need to do the things you want. This means real code that you can sink your teeth into, as well as copy and paste. Beyond theme building, we introduce many tricks your functions.php file can pull off and show you ways to increase performance and security through HTAccess.</p>
<p><em><a title="Learn more!" href="http://digwp.com/book/learn-more/" target="_blank">Learn more about Digging into WordPress..</a></em></p>
<h3 style="color:#026EB6;">Authors</h3>
<p>Written by Chris Coyier and Jeff Starr, who eat their own dog food when it comes to talking WordPress. Between them, nearly 100 WordPress sites manufactured.</p>
<p><em><a title="About the Authors" href="http://digwp.com/about/" target="_blank">Learn more about the authors..</a></em></p>
<h1 style="color:#026EB6;">Get the Book!</h1>
<p><a href="https://www.e-junkie.com/ecom/gb.php?cl=88539&amp;c=ib&amp;aff=100026" target="_blank"><img class="alignnone" title="Digging into Wordpress - The Book" src="http://digwp.com/images/realbook.png" border="0" alt="" /></a></p>
<p><a href="https://www.e-junkie.com/ecom/gb.php?cl=88539&amp;c=ib&amp;aff=100026" target="ejejcsingle" target="_blank">Click here to visit Sales @ Digging Into WordPress.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.martin-gardner.co.uk/a-beautiful-custom-design-wordpress-book/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Merry Christmas &amp; Happy New Year</title>
		<link>http://www.martin-gardner.co.uk/merry-christmas-happy-new-year/</link>
		<comments>http://www.martin-gardner.co.uk/merry-christmas-happy-new-year/#comments</comments>
		<pubDate>Wed, 16 Dec 2009 11:47:50 +0000</pubDate>
		<dc:creator>Marty</dc:creator>
				<category><![CDATA[Present]]></category>

		<guid isPermaLink="false">http://www.martin-gardner.co.uk/?p=1345</guid>
		<description><![CDATA[I would like to take this opportunity to wish all my readers a Very Merry Christmas for 2009 and all the best for 2010&#8230;
I&#8217;ll be away from this coming Friday the 18th Dec until January 5th 2010&#8230;
Wishing you all the best for the new year, lets hope its a good one for all&#8230;
Marty.
]]></description>
			<content:encoded><![CDATA[<p>I would like to take this opportunity to wish all my readers a Very Merry Christmas for 2009 and all the best for 2010&#8230;<br />
I&#8217;ll be away from this coming Friday the 18th Dec until January 5th 2010&#8230;</p>
<p>Wishing you all the best for the new year, lets hope its a good one for all&#8230;</p>
<p>Marty.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.martin-gardner.co.uk/merry-christmas-happy-new-year/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What will my robot of the future look like? Were the hell is it?</title>
		<link>http://www.martin-gardner.co.uk/what-will-my-robot-of-the-future-look-like-were-the-hell-is-it/</link>
		<comments>http://www.martin-gardner.co.uk/what-will-my-robot-of-the-future-look-like-were-the-hell-is-it/#comments</comments>
		<pubDate>Mon, 30 Nov 2009 11:56:24 +0000</pubDate>
		<dc:creator>Marty</dc:creator>
				<category><![CDATA[Future]]></category>
		<category><![CDATA[Robot]]></category>

		<guid isPermaLink="false">http://www.martin-gardner.co.uk/?p=1073</guid>
		<description><![CDATA[As a young lad growing up I&#8217;d often wonder to my self, what the future would be like, you know those kind of day dreams you had, when your sitting playing with your homemade Johnny 5 robot.


When I turned 9 years old, Short Circuit was released in the US, shortly after its release  my family [...]]]></description>
			<content:encoded><![CDATA[<p><strong style="font-size:14px; font-family:Georgia;">A</strong>s a young lad growing up I&#8217;d often wonder to my self, what the future would be like, you know those kind of day dreams you had, when your sitting playing with your homemade Johnny 5 robot.</p>
<p><span id="more-1073"></span></p>
<p><img class="alignright size-full wp-image-1076" title="J5" src="http://www.martin-gardner.co.uk/wp-content/uploads/2009/08/J5.jpg" alt="J5" width="90" height="90" align="right" /></p>
<p>When I turned 9 years old, <a title="Short Circuit - IMDB" href="http://www.imdb.com/title/tt0091949/" target="_blank">Short Circuit</a> was released in the US, shortly after its release  my family sat down to watch it on a fresh new pirate beta-max video; thanks go to our well connected sources working in the shipyards&#8230;</p>
<p>To my amazement.. I was watching this out of control robot; who was supposed to be  &#8220;Alive&#8221;&#8230; Now I wasn&#8217;t stupid; I knew it was a film(as a boy i loved movies and was fascinated how they were made.. bugged the hell out my dad!!), but in the back of my mind I knew after watching the film over 100 times, I wanted one of those robots, or &#8216;A robot&#8217; and thought to myself&#8230;.</p>
<blockquote>
<p style="text-align: center;"><strong>&#8220;</strong><strong>I cannie wait for the future.&#8221;<br />
&#8220;Well have all these mad robots flying us aboot, way big lasers on em..</strong>&#8220;</p>
</blockquote>
<p style="text-align: center;" align="center"><img class="size-full wp-image-1074 aligncenter" style="margin:0 auto;" title="robot-city" src="http://www.martin-gardner.co.uk/wp-content/uploads/2009/08/robot-city.jpg" alt="robot-city" width="450" height="249" align="center" /><br />
Very similar to what I though the future would look like.</p>
<p>So I made one, Which just happened to be made from a few old broken tanks, old meccano set and all the electrical toys you could find&#8230;, if they weren&#8217;t broke give me 5 mins and they&#8217;d be ripped to fuck&#8230; that was the main source for battery packs, lights and wires!</p>
<p>That was all well and good when I was 9&#8230;, but that was 23 years ago! now im sitting here at 32 wondering were the Hell is all the robots of the future?Â  this is the future.. Isn&#8217;t it? looking at the modern technology now-a-days and how far we &amp; technology has evolved over the last 2 decades bringing new innovations and inventions to the world everyday..</p>
<blockquote>
<p style="text-align: center;"><strong>I&#8217;d like a revolutionary new robot,<br />
packed to the rafters with amazing kick ass, out of the world features,<br />
but its not going to happen&#8230;</strong></p>
</blockquote>
<p>Clark Boyd over at the BBC wrote an interesting article back in April &#8211; <a title="Robots of the future unveiled" href="http://news.bbc.co.uk/1/hi/technology/8002850.stm" target="_blank">Robots of the future unveiled</a> One thing that grabbed my attention was the tag line.</p>
<blockquote><p><strong>Experts predict that an aging world population and continuing global military conflicts will be the two main drivers of robot design and function in the coming years.</strong></p></blockquote>
<p><img class="alignright size-medium wp-image-1089" title="iron-man-mark2" src="http://www.martin-gardner.co.uk/wp-content/uploads/2009/08/iron-man-mark2-192x300.jpg" alt="iron-man-mark2" width="192" height="300" />So basically, will we start seeing <a title="More info on Iron man " href="http://www.martin-gardner.co.uk/release-iron-man/" target="_blank">Iron man</a>, GI-Joe looking prototype robot suits in the coming years, were a person can wear a robot like a piece of clothing?</p>
<p>Man I sure hope so!! but I also think to myself&#8230; Not in this Life time? But what if?</p>
<p>With the recently released video of Toyota&#8217;s humanoid robot which reminds  more and more like the robot from I-Robot, which runs to fetch the woman&#8217;s inhaler.</p>
<p align="center"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/sv35ItWLBBk&amp;hl=en&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/sv35ItWLBBk&amp;hl=en&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p style="text-align: left;">This brings a new lease of life for the robot industry with cutting edge tech loaded to the gunnels with fancy bits and bobs, but!! were will it be in another 29 years? will I have the house trained bicentennial man? I doubt it! but im sure there&#8217;s plenty of smart people out there willing to try!</p>
<p align="center"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/z5YMEwX2-88&amp;hl=en_US&amp;fs=1&amp;rel=0&amp;color1=0x3a3a3a&amp;color2=0x999999" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/z5YMEwX2-88&amp;hl=en_US&amp;fs=1&amp;rel=0&amp;color1=0x3a3a3a&amp;color2=0x999999" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p style="text-align: left;">Id like my futuristic robot now please along with flying cars, intergalactic travel ports with multi-raced species</p>
<p style="text-align: left;">We all know that&#8217;s a good few years away yet&#8230;.</p>
<p style="text-align: left;">how long do you think it will be? Do you think we&#8217;ll see it in this life time?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.martin-gardner.co.uk/what-will-my-robot-of-the-future-look-like-were-the-hell-is-it/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MAG – Farmyard Party 2010</title>
		<link>http://www.martin-gardner.co.uk/mag-farmyard-party-2010/</link>
		<comments>http://www.martin-gardner.co.uk/mag-farmyard-party-2010/#comments</comments>
		<pubDate>Fri, 27 Nov 2009 22:28:16 +0000</pubDate>
		<dc:creator>Marty</dc:creator>
				<category><![CDATA[Present]]></category>

		<guid isPermaLink="false">http://www.martin-gardner.co.uk/?p=1279</guid>
		<description><![CDATA[The Farmyard Party 2010 dates have been posted, so get this in your calendar
&#8220;18/06/2010 until 20/06/2010&#8220;


BUY TICKETS HERE



The biggest and best motorcycle only rally in Europe. This year we have more covered areas than ever including the &#8216;Back Street Heroes&#8217; sponsored &#8216;BIG TOP&#8217; &#8211; a huge circus tent featuring all our main attractions. 
A BIGGER [...]]]></description>
			<content:encoded><![CDATA[<p>The Farmyard Party 2010 dates have been posted, so get this in your calendar<br />
<span style="margin:150px; padding:10px; color:#DB0000;">&#8220;<strong>18/06/2010 until 20/06/2010</strong>&#8220;</span><br />
<span id="more-1279"></span></p>
<p>
<h2 style="text-align:center;"><a href="http://www.farmyardparty.com/tickets/tickets.php?stage=2&#038;item=52">BUY TICKETS HERE</a></h2>
</p>
<div id="mag-countdown" style="border: 2px solid #ff9999; margin: 10px; padding: 10px; background: #000000; color: #ffffff;"><img class="alignright" style="border:2px solid #fff;" title="Flyover Helmsley" src="http://www.farmyardparty.com/img/photos/2009_07/fyp_pic__250X150.jpg" alt="" width="229" height="143" align="right" /><br />
<img src="http://www.mag-uk.org/images/logo.gif" alt="mag" /></p>
<p><em>The biggest and best motorcycle only rally in Europe. This year we have more covered areas than ever including the &#8216;Back Street Heroes&#8217; sponsored &#8216;BIG TOP&#8217; &#8211; a huge circus tent featuring all our main attractions. </em></p>
<p><em>A BIGGER blues tent, a dance tent, and a BIGGER 100% Biker tent! A huge Food Court marquee and sponsored ride-in custom show.</em></p>
<p><em>This is a bikers only event &#8211; strictly No Cars, No Vans, No Pedestrians, No excuses</em><br />
<h2>Farmyard Party 2010  <br />Next Party: 
<abbr title = "June 18th, 2010, 8:00 am" style="cursor:pointer; border-bottom:1px black dashed"><span id = 'x59108b744429d23c8e1a8e1383af3ee0'>in 3 months,  7 days,  879 minutes,  35 seconds</span></abbr></h2></p>
</div>
<p style="text-align:center;">
Visit the <a href="http://www.farmyardparty.com/en/homepage/a6269"><strong>Official Homepage here</strong></a>, Tickets are on sale Now!.</p>
<p>The 24th Annual MAG &#8211; Farmyard Party dates has been added to the MAG website.</p>
<blockquote style="border:2px solid #DB0000;">
<p style="text-align: center; color:#DB0000;"><strong>Friday, June 18, 2010 &#8211; Sunday, June 20, 2010</strong></p>
</blockquote>
<p>After last years successful event, the Dates for next years party has been posted, Im sure it will be an even bigger party than the year before, <a title="Farmyard party 2009 the aftermath" href="http://www.martin-gardner.co.uk/mag-farmyard-party-2009-the-aftermath/" target="_self">view the aftermath here</a>, with bigger tents, more bands, its sure to be an eventful weekend&#8230;</p>
<p>The small town of Helmsley will have around 8,000 bikers ascend on the small town which is home to the Helmsley Castle, which is a medieval castle situated in the market town, located in North Yorkshire, England.</p>
<p>The castle was first constructed in wood around 1120 by Walter l&#8217;Espec. Walter had no children and on his death in 1154 the castle passed to his sister Adelina who had married Peter de Roos.</p>
<p><strong>Location: </strong>Helmsley<br />
<strong>Web:</strong> <a href="http://www.farmyardparty.com/" target="_blank">http://www.farmyardparty.com</a></p>
<blockquote style="border:2px solid #DB0000;">
<h2>What Else Is On?</h2>
<p><img src="http://www.mag-uk.org/images/logo.gif" alt="MAG" title="MAG" style="background:#000; padding:10px;" align="right" /><strong>INTO THE VALLEY</strong><br />
30 April &#8211; 2 May 2010<br />
<a href="http://www.farmyardparty.com/en/valley/a6265">read more&#8230;</a></p>
<p><strong>FARMYARD PARTY</strong><br />
18-20 June 2010<br />
<a href="http://www.farmyardparty.com/en/farmyard/a6240">read more&#8230;</a></p>
<p><strong>YORKSHIRE PUDDING</strong><br />
6-8 August 2009<br />
<a href="http://www.farmyardparty.com/en/pudding/a6274">read more</a></p>
<p>Visit the <a href="http://www.mag-uk.org/en/index/a6296">Motorcycle Action Group</a> homepage for more info.</p>
</blockquote>
<h2>My Farmyard Aftermath: 2009</h2>
<p>you can read the whole farmyard aftermath 2009 <a href="http://www.martin-gardner.co.uk/mag-farmyard-party-2009-the-aftermath/">here</a><br />

<div class="ngg-galleryoverview" id="ngg-gallery-5-1279">


	
	<!-- Thumbnails -->
		
	<div id="ngg-image-47" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/19062009631-1024x768.jpg" title=" " class="thickbox" rel="set_5" >
								<img title="Nice big Chopper" alt="Nice big Chopper" src="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/thumbs/thumbs_19062009631-1024x768.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-38" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/19062009622-1024x768.jpg" title=" " class="thickbox" rel="set_5" >
								<img title="Stopped at Carlisle" alt="Stopped at Carlisle" src="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/thumbs/thumbs_19062009622-1024x768.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-39" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/19062009623-1024x768.jpg" title=" " class="thickbox" rel="set_5" >
								<img title="ohhh nice..." alt="ohhh nice..." src="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/thumbs/thumbs_19062009623-1024x768.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-40" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/19062009624-1024x768.jpg" title=" " class="thickbox" rel="set_5" >
								<img title="Honda VFR" alt="Honda VFR" src="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/thumbs/thumbs_19062009624-1024x768.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-41" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/19062009625-1024x768.jpg" title=" " class="thickbox" rel="set_5" >
								<img title="Clouds start to form" alt="Clouds start to form" src="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/thumbs/thumbs_19062009625-1024x768.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-42" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/19062009626-1024x768.jpg" title=" " class="thickbox" rel="set_5" >
								<img title="getting darker" alt="getting darker" src="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/thumbs/thumbs_19062009626-1024x768.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-43" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/19062009627-1024x768.jpg" title=" " class="thickbox" rel="set_5" >
								<img title="The sun starts to shine" alt="The sun starts to shine" src="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/thumbs/thumbs_19062009627-1024x768.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-44" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/19062009628-1024x768.jpg" title=" " class="thickbox" rel="set_5" >
								<img title="Custom Choper" alt="Custom Choper" src="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/thumbs/thumbs_19062009628-1024x768.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-45" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/19062009629-1024x768.jpg" title=" " class="thickbox" rel="set_5" >
								<img title="Say hello" alt="Say hello" src="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/thumbs/thumbs_19062009629-1024x768.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-46" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/19062009630-1024x768.jpg" title=" " class="thickbox" rel="set_5" >
								<img title="something on your head m8" alt="something on your head m8" src="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/thumbs/thumbs_19062009630-1024x768.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-48" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/19062009632-1024x768.jpg" title=" " class="thickbox" rel="set_5" >
								<img title="super nice" alt="super nice" src="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/thumbs/thumbs_19062009632-1024x768.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-49" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/19062009633-1024x768.jpg" title=" " class="thickbox" rel="set_5" >
								<img title="1 please" alt="1 please" src="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/thumbs/thumbs_19062009633-1024x768.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-50" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/19062009634-1024x768.jpg" title=" " class="thickbox" rel="set_5" >
								<img title="Old boy" alt="Old boy" src="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/thumbs/thumbs_19062009634-1024x768.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-51" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/19062009635-1024x768.jpg" title=" " class="thickbox" rel="set_5" >
								<img title="Cowboy Marty" alt="Cowboy Marty" src="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/thumbs/thumbs_19062009635-1024x768.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-52" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/19062009636-1024x768.jpg" title=" " class="thickbox" rel="set_5" >
								<img title="walk up" alt="walk up" src="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/thumbs/thumbs_19062009636-1024x768.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-53" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/19062009637-1024x768.jpg" title=" " class="thickbox" rel="set_5" >
								<img title="Rock tent early on" alt="Rock tent early on" src="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/thumbs/thumbs_19062009637-1024x768.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-54" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/19062009638-1024x768.jpg" title=" " class="thickbox" rel="set_5" >
								<img title="Smile please" alt="Smile please" src="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/thumbs/thumbs_19062009638-1024x768.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-55" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/19062009639-1024x768.jpg" title=" " class="thickbox" rel="set_5" >
								<img title="cheese" alt="cheese" src="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/thumbs/thumbs_19062009639-1024x768.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-56" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/19062009640-1024x768.jpg" title=" " class="thickbox" rel="set_5" >
								<img title="here we go.." alt="here we go.." src="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/thumbs/thumbs_19062009640-1024x768.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-57" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/19062009641-1024x768.jpg" title=" " class="thickbox" rel="set_5" >
								<img title="Howdy" alt="Howdy" src="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/thumbs/thumbs_19062009641-1024x768.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-58" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/19062009642-1024x768.jpg" title=" " class="thickbox" rel="set_5" >
								<img title="sneaky drink" alt="sneaky drink" src="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/thumbs/thumbs_19062009642-1024x768.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-59" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/19062009643-1024x768.jpg" title=" " class="thickbox" rel="set_5" >
								<img title="gleemin" alt="gleemin" src="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/thumbs/thumbs_19062009643-1024x768.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-60" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/19062009644-1024x768.jpg" title=" " class="thickbox" rel="set_5" >
								<img title="Shine on baby..." alt="Shine on baby..." src="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/thumbs/thumbs_19062009644-1024x768.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-61" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/19062009645-1024x768.jpg" title=" " class="thickbox" rel="set_5" >
								<img title="let the sun shine" alt="let the sun shine" src="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/thumbs/thumbs_19062009645-1024x768.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-62" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/19062009646-1024x768.jpg" title=" " class="thickbox" rel="set_5" >
								<img title="Still there" alt="Still there" src="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/thumbs/thumbs_19062009646-1024x768.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-63" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/19062009647-1024x768.jpg" title=" " class="thickbox" rel="set_5" >
								<img title="and again" alt="and again" src="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/thumbs/thumbs_19062009647-1024x768.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-64" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/19062009648-1024x768.jpg" title=" " class="thickbox" rel="set_5" >
								<img title="Big stage" alt="Big stage" src="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/thumbs/thumbs_19062009648-1024x768.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-65" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/19062009649-1024x768.jpg" title=" " class="thickbox" rel="set_5" >
								<img title="rocking out..." alt="rocking out..." src="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/thumbs/thumbs_19062009649-1024x768.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-66" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/19062009650-1024x768.jpg" title=" " class="thickbox" rel="set_5" >
								<img title="Marty boy hammered" alt="Marty boy hammered" src="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/thumbs/thumbs_19062009650-1024x768.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-67" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/19062009651-1024x768.jpg" title=" " class="thickbox" rel="set_5" >
								<img title="side view of big stage" alt="side view of big stage" src="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/thumbs/thumbs_19062009651-1024x768.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-68" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/19062009652-1024x768.jpg" title=" " class="thickbox" rel="set_5" >
								<img title="Marty boy hammered 2" alt="Marty boy hammered 2" src="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/thumbs/thumbs_19062009652-1024x768.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-69" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/19062009653-1024x768.jpg" title=" " class="thickbox" rel="set_5" >
								<img title="rave tent ravers" alt="rave tent ravers" src="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/thumbs/thumbs_19062009653-1024x768.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-70" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/21062009654-1024x768.jpg" title=" " class="thickbox" rel="set_5" >
								<img title="camp site" alt="camp site" src="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/thumbs/thumbs_21062009654-1024x768.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-71" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/21062009655-1024x768.jpg" title=" " class="thickbox" rel="set_5" >
								<img title="bikes at the site" alt="bikes at the site" src="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/thumbs/thumbs_21062009655-1024x768.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-72" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/21062009656-1024x768.jpg" title=" " class="thickbox" rel="set_5" >
								<img title="smokey fire" alt="smokey fire" src="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/thumbs/thumbs_21062009656-1024x768.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-73" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/21062009657-1024x768.jpg" title=" " class="thickbox" rel="set_5" >
								<img title="Exhaust fell off..." alt="Exhaust fell off..." src="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/thumbs/thumbs_21062009657-1024x768.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-74" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/21062009658-1024x768.jpg" title=" " class="thickbox" rel="set_5" >
								<img title="dam Exhaust....." alt="dam Exhaust....." src="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/thumbs/thumbs_21062009658-1024x768.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-75" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/i00007-1024x768.jpg" title=" " class="thickbox" rel="set_5" >
								<img title="nice ride" alt="nice ride" src="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/thumbs/thumbs_i00007-1024x768.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-76" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/i00008-1024x768.jpg" title=" " class="thickbox" rel="set_5" >
								<img title="walking up.." alt="walking up.." src="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/thumbs/thumbs_i00008-1024x768.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-77" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/i00009-1024x768.jpg" title=" " class="thickbox" rel="set_5" >
								<img title="more tents" alt="more tents" src="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/thumbs/thumbs_i00009-1024x768.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-78" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/i00010-1024x768.jpg" title=" " class="thickbox" rel="set_5" >
								<img title="big chopper" alt="big chopper" src="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/thumbs/thumbs_i00010-1024x768.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-79" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/i00011-1024x768.jpg" title=" " class="thickbox" rel="set_5" >
								<img title="All the bikes" alt="All the bikes" src="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/thumbs/thumbs_i00011-1024x768.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-80" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/i00012-1024x768.jpg" title=" " class="thickbox" rel="set_5" >
								<img title="For Sale" alt="For Sale" src="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/thumbs/thumbs_i00012-1024x768.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-81" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/i00013-1024x768.jpg" title=" " class="thickbox" rel="set_5" >
								<img title="Down boy.." alt="Down boy.." src="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/thumbs/thumbs_i00013-1024x768.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-82" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/i00014-1024x768.jpg" title=" " class="thickbox" rel="set_5" >
								<img title="i said get down!!" alt="i said get down!!" src="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/thumbs/thumbs_i00014-1024x768.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-83" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/i00015-1024x768.jpg" title=" " class="thickbox" rel="set_5" >
								<img title="Ok just a fell then.." alt="Ok just a fell then.." src="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/thumbs/thumbs_i00015-1024x768.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-84" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/i00016-1024x768.jpg" title=" " class="thickbox" rel="set_5" >
								<img title="walking about" alt="walking about" src="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/thumbs/thumbs_i00016-1024x768.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-85" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/i00031-1024x768.jpg" title=" " class="thickbox" rel="set_5" >
								<img title="nice lights" alt="nice lights" src="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/thumbs/thumbs_i00031-1024x768.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-86" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/i00032-1024x768.jpg" title=" " class="thickbox" rel="set_5" >
								<img title="Rocking out sum more" alt="Rocking out sum more" src="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/thumbs/thumbs_i00032-1024x768.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-87" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/i00041-1024x768.jpg" title=" " class="thickbox" rel="set_5" >
								<img title="Marty hammered again" alt="Marty hammered again" src="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/thumbs/thumbs_i00041-1024x768.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-88" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/i00042-1024x768.jpg" title=" " class="thickbox" rel="set_5" >
								<img title="view o me hat.." alt="view o me hat.." src="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/thumbs/thumbs_i00042-1024x768.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-89" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/i00043-1024x768.jpg" title=" " class="thickbox" rel="set_5" >
								<img title="The big stage again" alt="The big stage again" src="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/thumbs/thumbs_i00043-1024x768.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-90" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/i00066-1024x768.jpg" title=" " class="thickbox" rel="set_5" >
								<img title="check ma pic out marty.." alt="check ma pic out marty.." src="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/thumbs/thumbs_i00066-1024x768.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-91" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/i00075-1024x768.jpg" title=" " class="thickbox" rel="set_5" >
								<img title="going nuts" alt="going nuts" src="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/thumbs/thumbs_i00075-1024x768.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-92" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/i00076-1024x768.jpg" title=" " class="thickbox" rel="set_5" >
								<img title="Just before marty Stormed the stage" alt="Just before marty Stormed the stage" src="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/thumbs/thumbs_i00076-1024x768.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-93" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/i00077-1024x768.jpg" title=" " class="thickbox" rel="set_5" >
								<img title="Rock chicks, Whats the band called?" alt="Rock chicks, Whats the band called?" src="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/thumbs/thumbs_i00077-1024x768.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-94" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/i00078-1024x768.jpg" title=" " class="thickbox" rel="set_5" >
								<img title="tunes were banging.." alt="tunes were banging.." src="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/thumbs/thumbs_i00078-1024x768.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-95" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/i00079-1024x768.jpg" title=" " class="thickbox" rel="set_5" >
								<img title="move Boy!!" alt="move Boy!!" src="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/thumbs/thumbs_i00079-1024x768.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-96" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/i00080-1024x768.jpg" title=" " class="thickbox" rel="set_5" >
								<img title="Ah the boys" alt="Ah the boys" src="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/thumbs/thumbs_i00080-1024x768.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-97" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/i00017-1024x768.jpg" title=" " class="thickbox" rel="set_5" >
								<img title="Just great..." alt="Just great..." src="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/thumbs/thumbs_i00017-1024x768.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-98" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/i00018-1024x768.jpg" title=" " class="thickbox" rel="set_5" >
								<img title="this was amazing" alt="this was amazing" src="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/thumbs/thumbs_i00018-1024x768.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-99" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/i00030-1024x768.jpg" title=" " class="thickbox" rel="set_5" >
								<img title="just a great guitar player" alt="just a great guitar player" src="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/thumbs/thumbs_i00030-1024x768.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-100" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/i00081-1024x768.jpg" title=" " class="thickbox" rel="set_5" >
								<img title="were loving it" alt="were loving it" src="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/thumbs/thumbs_i00081-1024x768.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-101" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/i00082-1024x768.jpg" title=" " class="thickbox" rel="set_5" >
								<img title="Amsterdams smokers club" alt="Amsterdams smokers club" src="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/thumbs/thumbs_i00082-1024x768.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-102" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/i00083-1024x768.jpg" title=" " class="thickbox" rel="set_5" >
								<img title="say cheese!!" alt="say cheese!!" src="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/thumbs/thumbs_i00083-1024x768.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-103" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/i00084-1024x768.jpg" title=" " class="thickbox" rel="set_5" >
								<img title="amazing night" alt="amazing night" src="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/thumbs/thumbs_i00084-1024x768.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-104" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/i00085-1024x768.jpg" title=" " class="thickbox" rel="set_5" >
								<img title="rocking hard" alt="rocking hard" src="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/thumbs/thumbs_i00085-1024x768.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-105" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/i00086-1024x768.jpg" title=" " class="thickbox" rel="set_5" >
								<img title="Marty Hammered again again.." alt="Marty Hammered again again.." src="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/thumbs/thumbs_i00086-1024x768.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-106" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/i00087-1024x768.jpg" title=" " class="thickbox" rel="set_5" >
								<img title="Marty Sparkled" alt="Marty Sparkled" src="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/thumbs/thumbs_i00087-1024x768.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-107" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/i00094-1024x768.jpg" title=" " class="thickbox" rel="set_5" >
								<img title="Its all good..." alt="Its all good..." src="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/thumbs/thumbs_i00094-1024x768.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-108" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/i00095-1024x768.jpg" title=" " class="thickbox" rel="set_5" >
								<img title="No your no getting a drink.." alt="No your no getting a drink.." src="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/thumbs/thumbs_i00095-1024x768.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-109" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/i00096-1024x768.jpg" title=" " class="thickbox" rel="set_5" >
								<img title="is that a spot coming on." alt="is that a spot coming on." src="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/thumbs/thumbs_i00096-1024x768.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-110" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/i00099-1024x768.jpg" title=" " class="thickbox" rel="set_5" >
								<img title="Loving it big.." alt="Loving it big.." src="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/thumbs/thumbs_i00099-1024x768.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-111" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/i00100-1024x768.jpg" title=" " class="thickbox" rel="set_5" >
								<img title="Funny as fuk" alt="Funny as fuk" src="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/thumbs/thumbs_i00100-1024x768.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-112" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/i00101-1024x768.jpg" title=" " class="thickbox" rel="set_5" >
								<img title="no sure wits all this" alt="no sure wits all this" src="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/thumbs/thumbs_i00101-1024x768.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-114" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/i00146-1024x768.jpg" title=" " class="thickbox" rel="set_5" >
								<img title="The morning after" alt="The morning after" src="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/thumbs/thumbs_i00146-1024x768.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-115" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/i00147-1024x768.jpg" title=" " class="thickbox" rel="set_5" >
								<img title="getting it all going" alt="getting it all going" src="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/thumbs/thumbs_i00147-1024x768.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-116" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/i00148-1024x768.jpg" title=" " class="thickbox" rel="set_5" >
								<img title="ready to go once again.." alt="ready to go once again.." src="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/thumbs/thumbs_i00148-1024x768.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-117" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/i00149-1024x768.jpg" title=" " class="thickbox" rel="set_5" >
								<img title="!!!NEED MORE WOOD!!!" alt="!!!NEED MORE WOOD!!!" src="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/thumbs/thumbs_i00149-1024x768.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-118" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/i00102-1024x768.jpg" title=" " class="thickbox" rel="set_5" >
								<img title="No Comment" alt="No Comment" src="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/thumbs/thumbs_i00102-1024x768.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-119" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/i00103-1024x768.jpg" title=" " class="thickbox" rel="set_5" >
								<img title="Was this all good" alt="Was this all good" src="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/thumbs/thumbs_i00103-1024x768.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-120" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/dsc00009.jpg" title=" " class="thickbox" rel="set_5" >
								<img title="Helmsley Castle From the side" alt="Helmsley Castle From the side" src="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/thumbs/thumbs_dsc00009.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-121" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/dsc00010.jpg" title=" " class="thickbox" rel="set_5" >
								<img title="Helmsley Castle Walking to the town" alt="Helmsley Castle Walking to the town" src="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/thumbs/thumbs_dsc00010.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-122" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/dsc00011.jpg" title=" " class="thickbox" rel="set_5" >
								<img title="Helmsley Castle on the path to town" alt="Helmsley Castle on the path to town" src="http://www.martin-gardner.co.uk/wp-content/gallery/farmyardparty2009/thumbs/thumbs_dsc00011.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-clear'></div>
 	
</div>

</p>
<h2>Getting there</h2>
<p><iframe width="425" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.co.uk/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=helmsley&amp;sll=53.446881,-5.284464&amp;sspn=4.292902,9.876709&amp;ie=UTF8&amp;hq=&amp;hnear=Helmsley,+North+Yorkshire,+United+Kingdom&amp;t=h&amp;ll=54.272442,-1.046104&amp;spn=0.070167,0.145912&amp;z=12&amp;iwloc=A&amp;output=embed"></iframe><br /><small><a href="http://maps.google.co.uk/maps?f=q&amp;source=embed&amp;hl=en&amp;geocode=&amp;q=helmsley&amp;sll=53.446881,-5.284464&amp;sspn=4.292902,9.876709&amp;ie=UTF8&amp;hq=&amp;hnear=Helmsley,+North+Yorkshire,+United+Kingdom&amp;t=h&amp;ll=54.272442,-1.046104&amp;spn=0.070167,0.145912&amp;z=12&amp;iwloc=A" style="color:#0000FF;text-align:left">View Larger Map</a></small></p>
<p>If you&#8217;re going let me know&#8230;</p>
<p>I&#8217;m sure theirs plenty to look forward to this year&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.martin-gardner.co.uk/mag-farmyard-party-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Activate Windows 7 &amp; Remove Version Build Text</title>
		<link>http://www.martin-gardner.co.uk/activate-windows-7-remove-version-build-text/</link>
		<comments>http://www.martin-gardner.co.uk/activate-windows-7-remove-version-build-text/#comments</comments>
		<pubDate>Mon, 26 Oct 2009 00:33:58 +0000</pubDate>
		<dc:creator>Marty</dc:creator>
				<category><![CDATA[Present]]></category>
		<category><![CDATA[chew wga]]></category>
		<category><![CDATA[windows 7]]></category>

		<guid isPermaLink="false">http://www.martin-gardner.co.uk/?p=1264</guid>
		<description><![CDATA[Using Chew WGA 0.9 &#8211; The Windows 7 Patch&#8230;
You can Activate your version of Windows 7, &#38; remove the version build text, which is located, the bottom right hand side of your screen.



For my trials I used a version of Windows 7 Ultimate:

This would display the version build 7000, bottom right hand side of the [...]]]></description>
			<content:encoded><![CDATA[<p>Using Chew WGA 0.9 &#8211; The Windows 7 Patch&#8230;<br />
You can Activate your version of Windows 7, &amp; remove the version build text, which is located, the bottom right hand side of your screen.<br />
<span id="more-1264"></span></p>
<p style="text-align: center;"><img class="aligncenter" src="http://xxlimg.com/images/95265491419832508395.jpg" alt="Chew WGA 0.9" /></p>
<blockquote>
<p style="text-align: left;">For my trials I used a version of Windows 7 Ultimate:</p>
<ul>
<li>This would display the version build 7000, bottom right hand side of the screen,</li>
<li>Activate notice under it, to remind me every so often.</li>
<li> Run Chew WGA 0.9 &#8211; The Windows 7 Patch (download below).</li>
<li>The loading screen will appear and tell you that its working,</li>
<li>Then after a few seconds rather than the stated,  it would be finished and ready to reboot.</li>
<li> The version build and the activation notice was gone after re-boot.</li>
</ul>
<p style="text-align: left;">After you download the file, there is a PDF with instructions and information about education usage etc..<br />
but just double click the app to start</p>
</blockquote>
<h2>Features</h2>
<p>* all-language compatibility<br />
* works on Windows 7 all versions<br />
* compatible with 32-bit and 64-bit file-systems<br />
* no master boot record fiddling<br />
* no risk of PC bricking<br />
* very reliable patching mechanism<br />
* windows updates work<br />
* doesn’t use any keys<br />
* full uninstaller included<br />
* solid, clean, efficient coding<br />
* tamper resistant (protect by CGA – Chew Genuine Advantage seal)<br />
* hotfix resistant<br />
* the most reliable chew-wga version yet</p>
<p><a href="http://rapidshare.com/files/353543404/Chew-WGA_0.9_-_The_Windows_7_Patch.rar.html"><br />
<img class="alignright" title="Download version 1.0 Now" src="http://www.martin-gardner.co.uk/wp-content/uploads/2008/11/download_now.gif" alt="" width="226" height="44" align="right" /><br />
</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.martin-gardner.co.uk/activate-windows-7-remove-version-build-text/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My Yamaha Blaster 200c Quad</title>
		<link>http://www.martin-gardner.co.uk/my-yamaha-blaster-200c-quad/</link>
		<comments>http://www.martin-gardner.co.uk/my-yamaha-blaster-200c-quad/#comments</comments>
		<pubDate>Mon, 14 Sep 2009 18:20:54 +0000</pubDate>
		<dc:creator>Marty</dc:creator>
				<category><![CDATA[Present]]></category>

		<guid isPermaLink="false">http://www.martin-gardner.co.uk/?p=1235</guid>
		<description><![CDATA[I just had to show you guys my new Yamaha Blaster 200cc Quad&#8230;. Time to get Dirty!

Isn&#8217;t she a beauty..
Yamaha Blaster 200cc 2003 model (I think)
needed a new clutch, 5 min job for shugtech&#8230;
The Quads all loaded up with nerf bars, wide rear axle, Paul philips racing exhaust.
im still to pick up a rear brake [...]]]></description>
			<content:encoded><![CDATA[<p>I just had to show you guys my new Yamaha Blaster 200cc Quad&#8230;. Time to get Dirty!</p>
<p><span id="more-1235"></span></p>
<p>Isn&#8217;t she a beauty..</p>
<p>Yamaha Blaster 200cc 2003 model (I think)<br />
needed a new clutch, 5 min job for <a title="Shugtech Homepage" href="http://www.shugtech.co.uk" target="_blank">shugtech</a>&#8230;</p>
<p>The Quads all loaded up with nerf bars, wide rear axle, Paul philips racing exhaust.</p>
<p>im still to pick up a rear brake caliper &amp; front light, not sure whether to go with the hulk look again, since its got a nice purple frame to match the Hulks shorts&#8230;</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-1236" title="Yamaha blaster 200cc" src="http://www.martin-gardner.co.uk/wp-content/uploads/2009/09/blaster.jpg" alt="Yamaha blaster 200cc" width="600" height="450" /></p>
<p>Comments always welcome&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.martin-gardner.co.uk/my-yamaha-blaster-200c-quad/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How To List Wordpress Child Pages Only On That Parent Page</title>
		<link>http://www.martin-gardner.co.uk/how-to-list-wordpress-child-pages-only-on-that-parent-page/</link>
		<comments>http://www.martin-gardner.co.uk/how-to-list-wordpress-child-pages-only-on-that-parent-page/#comments</comments>
		<pubDate>Thu, 03 Sep 2009 13:56:42 +0000</pubDate>
		<dc:creator>Marty</dc:creator>
				<category><![CDATA[wordpress]]></category>
		<category><![CDATA[parent page]]></category>
		<category><![CDATA[post->post_parent]]></category>
		<category><![CDATA[sub page]]></category>
		<category><![CDATA[wp_list_pages()]]></category>

		<guid isPermaLink="false">http://www.martin-gardner.co.uk/?p=1220</guid>
		<description><![CDATA[How to create a dynamic list of page title links when you are on a page that has sub pages, ie: If using a gallery for a page, were each sub-page is a gallery of images

When you have multiple pages in your wordpress website, either using it as a blog or as a complete CMS, [...]]]></description>
			<content:encoded><![CDATA[<p>How to create a dynamic list of page title links when you are on a page that has sub pages, ie: If using a gallery for a page, were each sub-page is a gallery of images<br />
<span id="more-1220"></span><br />
When you have multiple pages in your wordpress website, either using it as a blog or as a complete CMS, this quick tip will help show you how to:</p>
<blockquote>
<p style="text-align: center; color:#DC1000;"><strong>Only show those child pages of the parent page,<br />
Only when you are on that Parent page!</strong></p>
</blockquote>
<p>Below is the HTML framework for our sidebar navigation&#8230;</p>
<ul>
<li>Gallery
<ul>
<li>page 1</li>
<li>page 2</li>
<li>page 3</li>
<li>page 4</li>
<li>page 5</li>
</ul>
</li>
</ul>
<pre class="brush: php;">
&lt;ul&gt;
   &lt;li&gt;Gallery
     &lt;ul&gt;
        &lt;li&gt;page 1&lt;/li&gt;
        &lt;li&gt;page 2&lt;/li&gt;
        &lt;li&gt;page 3&lt;/li&gt;
        &lt;li&gt;page 4&lt;/li&gt;
        &lt;li&gt;page 5&lt;/li&gt;
     &lt;/ul&gt;
   &lt;/li&gt;
&lt;/ul&gt;
</pre>
<blockquote><p>When on the &#8220;<strong>PARENT</strong>&#8221; page,</p>
<p>The code in the sidebar, navigation menu or page,<br />
will be populated with a list of Child Sub pages for THAT current PARENT page only&#8230;</p></blockquote>
<p>Copy the code below into your sidebar, and try it&#8230;</p>
<pre class="brush: php;">
  &lt;?php if ( is_page() ) {
      if($post-&gt;post_parent)
      $children = wp_list_pages('sort_column=menu_order&amp;title_li=&amp;child_of='.$post-&gt;post_parent.'&amp;echo=0');
else
      $children = wp_list_pages('sort_column=menu_order&amp;title_li=&amp;child_of='.$post-&gt;ID.'&amp;echo=0');
      if ($children) {
   ?&gt;
      &lt;div class=&quot;sidebar&quot;&gt;
&lt;h2&gt;Sub-pages of Current Page&lt;/h2&gt;
&lt;ul&gt;
      	&lt;?php echo $children; ?&gt;
      	&lt;/ul&gt;
      &lt;/div&gt;
   &lt;?php
} // End If Post
       } // End if is page
   ?&gt;
</pre>
<p>As long as your Page has at least one associated child page, the list will be shown, if there are no child pages then the menu will not be shown.. this is handy if you&#8217;re sidebar is quite packed with elements/ads, this will be generated only on that parent page&#8230;</p>
<p>you can check out the example on the <a href="http://www.shugtech.co.uk/gallery">Shugtech Gallery</a> website.<br />
Each Gallery Album is a child of Gallery, so each image gallery is a separate wp page were the list of other Albums available is on the right hand sidebar&#8230;</p>
<p>As always feedback is welcome..</p>
]]></content:encoded>
			<wfw:commentRss>http://www.martin-gardner.co.uk/how-to-list-wordpress-child-pages-only-on-that-parent-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Flash A Lite-On DG-16D2S 83850C Drive S4P9</title>
		<link>http://www.martin-gardner.co.uk/how-to-flash-a-lite-on-dg-16d2s-83850c-drive-s4p9/</link>
		<comments>http://www.martin-gardner.co.uk/how-to-flash-a-lite-on-dg-16d2s-83850c-drive-s4p9/#comments</comments>
		<pubDate>Sat, 29 Aug 2009 10:32:34 +0000</pubDate>
		<dc:creator>Marty</dc:creator>
				<category><![CDATA[Present]]></category>

		<guid isPermaLink="false">http://www.martin-gardner.co.uk/?p=1187</guid>
		<description><![CDATA[This Post will outline the process and procedure undertaken in order to flash the new Lite-on DG-16D2S, these drives have been reported as to be coming from the repair centers after your xbox has been refurbished.


Get what you need for your 360 @




&#160;
This method dosnt require the CK3 Probe/Spear Attachment tool..
Sentinelace over @ pothsprojects.com posted [...]]]></description>
			<content:encoded><![CDATA[<p>This Post will outline the process and procedure undertaken in order to flash the new Lite-on DG-16D2S, these drives have been reported as to be coming from the repair centers after your xbox has been refurbished.<br />
<span id="more-1187"></span></p>
<blockquote>
<h3 style="text-align:center;">Get what you need for your 360 @</h3>
<p align="center">
<a href="http://www.mrmodchips.co.uk/catalog/index.php?ref=57&#038;affiliate_banner_id=18" target="_blank"><img src="http://www.mrmodchips.co.uk/catalog/images/ck3_banner.gif" border="0" alt="Team Xecuter CK3"/></a>
</p>
</blockquote>
<p>&nbsp;</p>
<blockquote style="color: #dc1000; text-align: center;"><p>This method dosnt require the <a href="http://www.martin-gardner.co.uk/liteon-drive-key-dump-using-dvdkey32-and-xecuter-ck3-in-windows/"><span style="text-decoration: underline;">CK3 Probe/Spear</span></a> Attachment tool..</p></blockquote>
<p><a style="color: #aa0000;" title="pothsprojects" href="http://www.pothsprojects.com/viewtopic.php?f=102&amp;t=734">Sentinelace</a> over @ pothsprojects.com posted a good rundown on how you can de-crypt your lite-on key and flash your new firmware back to your lite-on drive&#8230;</p>
<p><span style="font-weight: bold;">Programs youâ€™ll need </span><br />
Jungle Flasher 1.65 &#8211; <a href="http://jungleflasher.net/downloads.html" target="_blank">Website</a>.<br />
Openkey &#8211; <a title="Download OpenKey V2.0" href="http://www.martin-gardner.co.uk/wp-content/uploads/2009/08/openkey_v0.2.rar" target="_blank">Download OpenKey V2.0</a><br />
L083info_32.exe &#8211; <a href="http://rapidshare.com/files/272961552/lo83.zip.html" target="_blank">Rapidshare</a></p>
<h2>Step 1</h2>
<ol>
<li>Connect the Lite-on to your pc like usual with the tray in half open mode.</li>
<li>Open JF 1.65 go to DVDKey 32 tab and click on the Create 83 Extract and click ok.</li>
<li>Once it tells you to â€œMove the tray to the full open positionâ€ with your hand pull the tray out fully then click ok.</li>
<li>Save the files.</li>
<li>Now in windows hit start run and type cmd.</li>
<li>Download openkey and save it to &#8220;<em><strong>c:\openkey</strong></em>&#8220;</li>
<li>Now in the command prompt type &#8220;<em><strong>cd c:\openkey</strong></em>&#8220;</li>
<li>Once inside the openkey directory type in &#8220;<em><strong>openkey.exe D608CG833907010F0.bin</strong></em>&#8221; then hit enter.</li>
<li>Your key should pop up in numbers and letters in groups of two write it down.</li>
</ol>
<blockquote>
<p style="text-align: center;"><span style="font-weight: bold; color: #bf0000;"><br />
If you get this error, then you have a bad key and need to use method 2</span></p>
<p style="text-align: center;"><span style="font-weight: bold; color: #bf0000;"><img class="aligncenter size-full wp-image-1188" title="liteon2" src="http://www.martin-gardner.co.uk/wp-content/uploads/2009/08/liteon2.JPG" alt="liteon2" width="400" height="117" /><br />
</span></p>
</blockquote>
<h2>METHOD 2</h2>
<p>If you got the error above, then you simply need to use the L083info_32.exe program to get the proper bin file.<br />
Check jungle flasher to see what port your SATA card is using for your drive.<br />
Example of what you would type:</p>
<blockquote>
<p style="text-align: center;"><span style="font-weight: bold;">LO83info_32 0fd00</span></p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-1190" title="liteonpower" src="http://www.martin-gardner.co.uk/wp-content/uploads/2009/08/liteonpower.jpg" alt="liteonpower" width="474" height="63" /></p>
</blockquote>
<p>You will then be presented with a bin file of something like <span style="font-weight: bold;">D609CG92690700FDF.bin</span></p>
<blockquote>
<p style="text-align: left;">At this point,<br />
go back to openkey and run it against your new bin file and you should get something like this:</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-1191" title="liteon3" src="http://www.martin-gardner.co.uk/wp-content/uploads/2009/08/liteon3.JPG" alt="liteon3" width="400" height="81" /></p>
</blockquote>
<p>At this point open jungle flasher back up.</p>
<blockquote><p><span style="font-weight: bold; text-align: center; color: #dc1000;">You may want to test with a spare drive first to make sure this works..<br />
to prevent bricking your drive!!</span></p></blockquote>
<p>Load Ixtreme as target and choose manual spoof. Paste the key that openkey gave you in the top and then type in the barcode key into the second box followed by 3 spaces. In the drop down choose Lite-on 83850C and hit okay.</p>
<p>Go to the MTKflash tab and write your drive as usual. Test and confirm your spoofed drive works. Once confirmed you can dump that firmware and send a lite-on erase and flash like you normally would a lite-on.</p>
<p>I myself have used this method to personally test a few lite-on drives, each time using an old benq drive just to test the key on first prior to flashing the original lite-on. as always feedback is always welcome.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.martin-gardner.co.uk/how-to-flash-a-lite-on-dg-16d2s-83850c-drive-s4p9/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
