<?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>Stokebloke Blog</title>
	<atom:link href="http://www.stokebloke.com/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.stokebloke.com/wordpress</link>
	<description></description>
	<lastBuildDate>Sat, 18 Feb 2012 15:52:27 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Nox under Wine / Fedora 16</title>
		<link>http://www.stokebloke.com/wordpress/2012/02/16/nox-under-wine-fedora-16/</link>
		<comments>http://www.stokebloke.com/wordpress/2012/02/16/nox-under-wine-fedora-16/#comments</comments>
		<pubDate>Thu, 16 Feb 2012 08:58:30 +0000</pubDate>
		<dc:creator>Neil Wightman</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[nox]]></category>
		<category><![CDATA[wine]]></category>

		<guid isPermaLink="false">http://www.stokebloke.com/wordpress/?p=1063</guid>
		<description><![CDATA[I decided to get Nox from gog.com cd ~ mkdir .wine-nox WINEPREFIX=~/.wine-nox/ wine ~/setup_nox.exe WINEPREFIX=~/.wine-nox/ winecfg and configure the wine desktop as exactly 1024&#215;768 Start nox WINEPREFIX=~/.wine-nox/ wine ~/.wine-nox/drive_c/Program\ Files/GOG.com/NOX/NOX.EXE After the intro go in to the settings and change the game screen size to 1024&#215;768. Now everything is running I created a bash script [...]]]></description>
				<content:encoded><![CDATA[<p>I decided to get <a href="http://www.gog.com/en/gamecard/nox">Nox from gog.com</a></p>
<pre>
cd ~
mkdir .wine-nox
WINEPREFIX=~/.wine-nox/ wine ~/setup_nox.exe
WINEPREFIX=~/.wine-nox/ winecfg
</pre>
<p>and configure the wine desktop as exactly 1024&#215;768</p>
<p>Start nox</p>
<pre>WINEPREFIX=~/.wine-nox/ wine ~/.wine-nox/drive_c/Program\ Files/GOG.com/NOX/NOX.EXE</pre>
<p>After the intro go in to the settings and change the game screen size to 1024&#215;768.</p>
<p>Now everything is running <img src='http://www.stokebloke.com/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<div id="attachment_1073" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.stokebloke.com/wordpress/wp-content/uploads/2012/02/nox1.jpg"><img src="http://www.stokebloke.com/wordpress/wp-content/uploads/2012/02/nox1-300x223.jpg" alt="" title="Nox Menu" width="300" height="223" class="size-medium wp-image-1073" /></a><p class="wp-caption-text">Nox Menu</p></div>
<div id="attachment_1073" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.stokebloke.com/wordpress/wp-content/uploads/2012/02/nox2.jpg"><img src="http://www.stokebloke.com/wordpress/wp-content/uploads/2012/02/nox2-300x232.jpg" alt="" title="Nox Game Screen Shot" width="300" height="232" class="aligncenter size-medium wp-image-1072" /></a><p class="wp-caption-text">Nox Screenshot</p></div>
<p>I created a bash script to start nox next time</p>
<pre>
#!/bin/bash
WINEPREFIX=~/.wine-nox/ wine ~/.wine-nox/drive_c/Program\ Files/GOG.com/NOX/NOX.EXE
</pre>
<p>I created the desktop file <code>~/.local/share/applications/nox.desktop</code> as this</p>
<pre>
[Desktop Entry]
Version=1.0
Type=Application
Encoding=UTF-8
Exec=/home/username/sbin/nox
Icon=/home/username/.wine-nox/drive_c/Program Files/GOG.com/NOX/NOX.ICO
StartupNotify=false
Categories=Game
Name=Nox
Comment=Nox
</pre>
<p>Additional info:</p>
<ul>
<li>kernel 3.2.2-1.fc16.i686.PAE
<li>wine 1.3.37
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.stokebloke.com/wordpress/2012/02/16/nox-under-wine-fedora-16/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Enabling bootchart with Fedora 16</title>
		<link>http://www.stokebloke.com/wordpress/2012/01/08/enabling-bootchart-with-fedora-16/</link>
		<comments>http://www.stokebloke.com/wordpress/2012/01/08/enabling-bootchart-with-fedora-16/#comments</comments>
		<pubDate>Sun, 08 Jan 2012 15:47:08 +0000</pubDate>
		<dc:creator>Neil Wightman</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[bootchart]]></category>
		<category><![CDATA[fedora]]></category>

		<guid isPermaLink="false">http://www.stokebloke.com/wordpress/?p=1054</guid>
		<description><![CDATA[To install bootchart under fedora simply run yum install bootchart Once installed you simply need to enable a grub entry to call it.  You just need to add the init=/sbin/bootchartd string to the end of the kernel settings. I actually copied the existing kernel entry and added it (incase I mistyped something) title Fedora (3.1.6-1.fc16.i686.PAE) [...]]]></description>
				<content:encoded><![CDATA[<p>To install bootchart under fedora simply run</p>
<pre>yum install bootchart</pre>
<p>Once installed you simply need to enable a grub entry to call it.  You just need to add the init=/sbin/bootchartd string to the end of the kernel settings.</p>
<p>I actually copied the existing kernel entry and added it (incase I mistyped something)</p>
<pre>title Fedora (3.1.6-1.fc16.i686.PAE) with bootchart
    root (hd2,0)
    kernel /vmlinuz-3.1.6-1.fc16.i686.PAE ro root=/dev/md126 rd_NO_LUKS rd_NO_LVM rd_NO_DM    LANG=en_US.UTF-8 SYSFONT=latarcyrheb-sun16 \
          KEYTABLE=de-latin1-nodeadkeys rhgb \
          quiet nouveau.modeset=0 rdblacklist=nouveau \
          <b>init=/sbin/bootchartd</b>
    initrd /initramfs-3.1.6-1.fc16.i686.PAE.img</pre>
<p>Now when I reboot and select this grub entry a bootchart file is written to <code>/var/log/bootchart.tgz</code></p>
<p>Then run the bootchart command to generate an image of the results.</p>
<p><a href="http://www.stokebloke.com/wordpress/wp-content/uploads/2012/01/bootchart.png"><img class="aligncenter size-medium wp-image-1055" title="bootchart fedora 16" src="http://www.stokebloke.com/wordpress/wp-content/uploads/2012/01/bootchart-139x300.png" alt="Bootchart results from my fedora 16 installation" width="139" height="300" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.stokebloke.com/wordpress/2012/01/08/enabling-bootchart-with-fedora-16/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fedora enable memtest</title>
		<link>http://www.stokebloke.com/wordpress/2012/01/05/fedora-enable-memtest/</link>
		<comments>http://www.stokebloke.com/wordpress/2012/01/05/fedora-enable-memtest/#comments</comments>
		<pubDate>Thu, 05 Jan 2012 08:38:47 +0000</pubDate>
		<dc:creator>Neil Wightman</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[grub]]></category>
		<category><![CDATA[memtest]]></category>

		<guid isPermaLink="false">http://www.stokebloke.com/wordpress/?p=1047</guid>
		<description><![CDATA[Well I started to have some strange crashes from some programs and this morning my PC just turned itself off. I really expected it to be a memory problem so I needed to enable memtest86+ on my new fedora installation. I quickly found http://fooninja.net/2011/05/05/loading-memtest-from-grub-fedora/ This is still valid. Simply append title Memtest86+ (4.10) root (hd0,4) [...]]]></description>
				<content:encoded><![CDATA[<p>Well I started to have some strange crashes from some programs and this morning my PC just turned itself off.</p>
<p>I really expected it to be a memory problem so I needed to enable <a href="http://www.memtest.org/">memtest86+ </a>on my new fedora installation.</p>
<p>I quickly found <a href="http://fooninja.net/2011/05/05/loading-memtest-from-grub-fedora/">http://fooninja.net/2011/05/05/loading-memtest-from-grub-fedora/</a></p>
<p>This is still valid.</p>
<p>Simply append</p>
<pre>title Memtest86+ (4.10)
    root (hd0,4)
    kernel --type=netbsd /elf-memtest86+-4.10</pre>
<p>to the end of the <code>/boot/grub/grub.conf</code> and reboot</p>
<p>Voilà errors <a href="http://www.stokebloke.com/wordpress/wp-content/uploads/2012/01/memtest.jpg"><img class="aligncenter size-medium wp-image-1048" title="Memtest failure" src="http://www.stokebloke.com/wordpress/wp-content/uploads/2012/01/memtest-300x200.jpg" alt="Memtest86+ screen shot" width="300" height="200" /></a>now I just need to figure out which memory to take out <img src='http://www.stokebloke.com/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.stokebloke.com/wordpress/2012/01/05/fedora-enable-memtest/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Disable resize grip in Ubuntu 11.04</title>
		<link>http://www.stokebloke.com/wordpress/2011/05/17/disable-resize-grip-in-ubuntu-11-04/</link>
		<comments>http://www.stokebloke.com/wordpress/2011/05/17/disable-resize-grip-in-ubuntu-11-04/#comments</comments>
		<pubDate>Tue, 17 May 2011 16:00:59 +0000</pubDate>
		<dc:creator>Neil Wightman</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[fix]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.stokebloke.com/wordpress/?p=1040</guid>
		<description><![CDATA[If you don&#8217;t like the big resize grip on emacs, firefox and many other applications you can disable them in Ubuntu 11.04. See http://www.omgubuntu.co.uk/2011/05/disable-the-resize-grip-in-ubuntu-11-04/ You simply need to add style "default-style" { GtkWindow::resize-grip-height = 0 GtkWindow::resize-grip-width = 0 } class "GtkWidget" style "default-style" to your ~/.gtkrc-2.0 file.]]></description>
				<content:encoded><![CDATA[<p>If you don&#8217;t like the big resize grip on emacs, firefox and many other applications you can disable them in Ubuntu 11.04.</p>
<p>See<br />
<a href="http://www.omgubuntu.co.uk/2011/05/disable-the-resize-grip-in-ubuntu-11-04/">http://www.omgubuntu.co.uk/2011/05/disable-the-resize-grip-in-ubuntu-11-04/</a></p>
<p>You simply need to add</p>
<pre>style "default-style"
{
  GtkWindow::resize-grip-height = 0
  GtkWindow::resize-grip-width = 0
}

class "GtkWidget" style "default-style"</pre>
<p>to your <code>~/.gtkrc-2.0<code> file.</code></code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.stokebloke.com/wordpress/2011/05/17/disable-resize-grip-in-ubuntu-11-04/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Netbeans log code template</title>
		<link>http://www.stokebloke.com/wordpress/2011/05/03/netbeans-log-code-template/</link>
		<comments>http://www.stokebloke.com/wordpress/2011/05/03/netbeans-log-code-template/#comments</comments>
		<pubDate>Tue, 03 May 2011 09:35:09 +0000</pubDate>
		<dc:creator>Neil Wightman</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[netbeans]]></category>

		<guid isPermaLink="false">http://www.stokebloke.com/wordpress/?p=1033</guid>
		<description><![CDATA[For some years I have been adding this code template to Netbeans. private static final Logger log = Logger.getLogger(${classVar editable="false" currClassName default="getClass()"}.class.getName()); You can add this by going to Netbeans->Tools Menu->Options->Editor->Code Templates dialog. Edit @ 29/08/2011 In newer Netbeans you must ensure that the &#8220;On Template Expansion:&#8221; is set to &#8220;Reformat text&#8221; else it gets [...]]]></description>
				<content:encoded><![CDATA[<p>For some years I have been adding this code template to Netbeans.</p>
<pre>
private static final Logger log = Logger.getLogger(${classVar editable="false" currClassName default="getClass()"}.class.getName());
</pre>
<p>You can add this by going to <code>Netbeans->Tools Menu->Options->Editor->Code Templates</code> dialog.</p>
<p><a href="/wordpress/wp-content/uploads/2011/05/nb_log_code_template.jpg"><img src="/wordpress/wp-content/uploads/2011/05/nb_log_code_template-300x216.jpg" alt="Netbeans Code Templates" title="nb_log_code_template" width="300" height="216" class="aligncenter size-medium wp-image-1034" /></a></p>
<p><i>Edit @ 29/08/2011</i><br />
In newer Netbeans you must ensure that the &#8220;On Template Expansion:&#8221; is set to &#8220;Reformat text&#8221; else it gets extra new lines added in the code template.</p>
<pre>
${no-format}private static final Logger log = Logger.getLogger(${classVar editable="false" currClassName default="getClass()"}.class.getName());
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.stokebloke.com/wordpress/2011/05/03/netbeans-log-code-template/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Disable Overlay Scrollbars in Ubuntu 11.04</title>
		<link>http://www.stokebloke.com/wordpress/2011/04/30/disable-overlay-scrollbars-in-ubuntu-11-04/</link>
		<comments>http://www.stokebloke.com/wordpress/2011/04/30/disable-overlay-scrollbars-in-ubuntu-11-04/#comments</comments>
		<pubDate>Sat, 30 Apr 2011 10:29:52 +0000</pubDate>
		<dc:creator>Neil Wightman</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[fix]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.stokebloke.com/wordpress/?p=1030</guid>
		<description><![CDATA[I updated my Ubuntu to 11.04 yesterday and really didn&#8217;t like the new scroll bars. After a little searching I found http://www.worthytips.com/14681/easily-disable-overlay-scrollbars.html http://www.matbra.com/en/2011/04/28/remover-ou-desabilitar-a-barra-de-rolagem-overlay-ubuntu-11-04/ and many more. Simply add the string &#8220;export LIBOVERLAY_SCROLLBAR=0&#8243; into the /etc/X11/Xsession.d/80overlayscrollbars file. E.g perform the following as root echo "export LIBOVERLAY_SCROLLBAR=0" &#62; /etc/X11/Xsession.d/80overlayscrollbars]]></description>
				<content:encoded><![CDATA[<p>I updated my Ubuntu to 11.04 yesterday and really didn&#8217;t like the new scroll bars.</p>
<p>After a little searching I found</p>
<ul>
<li>http://www.worthytips.com/14681/easily-disable-overlay-scrollbars.html</li>
<li>http://www.matbra.com/en/2011/04/28/remover-ou-desabilitar-a-barra-de-rolagem-overlay-ubuntu-11-04/</li>
<li>and many more.</li>
</ul>
<p>Simply add the string &#8220;export LIBOVERLAY_SCROLLBAR=0&#8243; into the /etc/X11/Xsession.d/80overlayscrollbars file.</p>
<p>E.g perform the following as root</p>
<pre>echo "export LIBOVERLAY_SCROLLBAR=0" &gt; /etc/X11/Xsession.d/80overlayscrollbars</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.stokebloke.com/wordpress/2011/04/30/disable-overlay-scrollbars-in-ubuntu-11-04/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Borderlands Clap Trap Loot Achievements</title>
		<link>http://www.stokebloke.com/wordpress/2011/02/25/borderlands-clap-trap-loot-achievements/</link>
		<comments>http://www.stokebloke.com/wordpress/2011/02/25/borderlands-clap-trap-loot-achievements/#comments</comments>
		<pubDate>Fri, 25 Feb 2011 08:46:53 +0000</pubDate>
		<dc:creator>Neil Wightman</dc:creator>
				<category><![CDATA[Games]]></category>
		<category><![CDATA[achievements]]></category>
		<category><![CDATA[borderlands]]></category>
		<category><![CDATA[dlc]]></category>
		<category><![CDATA[xbox 360]]></category>

		<guid isPermaLink="false">http://www.stokebloke.com/wordpress/?p=979</guid>
		<description><![CDATA[There are quite a few collector missions in the newest DLC for Borderlands. These are The Collector, The Lubricator, Bobble-Trap, It&#8217;s so realistic!, What a party! What a Party! For the What a party achievement you need to collect &#8220;Collect 3 panties, 5 fish in a bag, and 15 pizzas&#8221; The Lubricator For The Lubricator [...]]]></description>
				<content:encoded><![CDATA[<p>There are quite a few collector missions in the newest DLC for <a href="http://www.borderlandsthegame.com/">Borderlands</a>.  These are The Collector, The Lubricator, Bobble-Trap, It&#8217;s so realistic!, What a party!</p>
<h3>What a Party!</h3>
<div id="attachment_987" class="wp-caption alignleft" style="width: 74px"><a href="http://www.stokebloke.com/wordpress/wp-content/uploads/2011/02/ach_panties.png"><img class="size-full wp-image-987 " title="ach_panties" src="http://www.stokebloke.com/wordpress/wp-content/uploads/2011/02/ach_panties.png" alt="Borderlands What a party! Achievement" width="64" height="64" /></a><p class="wp-caption-text">Borderlands What a party! Achievement</p></div>
<p>For the What a party achievement you need to collect &#8220;Collect 3 panties, 5 fish in a bag, and 15 pizzas&#8221;</p>
<div id="attachment_994" class="wp-caption aligncenter" style="width: 222px"><a href="http://www.stokebloke.com/wordpress/wp-content/uploads/2011/02/game_pizza.jpg"><img class="size-medium wp-image-994 " title="game_pizza" src="http://www.stokebloke.com/wordpress/wp-content/uploads/2011/02/game_pizza-212x300.jpg" alt="Image of ingame pizza" width="212" height="300" /></a><p class="wp-caption-text">Image of ingame pizza</p></div>
<div id="attachment_991" class="wp-caption aligncenter" style="width: 260px"><a href="http://www.stokebloke.com/wordpress/wp-content/uploads/2011/02/game_panties.jpg"><img class="size-full wp-image-991 " title="game_panties" src="http://www.stokebloke.com/wordpress/wp-content/uploads/2011/02/game_panties.jpg" alt="Image of ingame panties" width="250" height="175" /></a><p class="wp-caption-text">Image of ingame panties</p></div>
<div id="attachment_993" class="wp-caption aligncenter" style="width: 260px"><a href="http://www.stokebloke.com/wordpress/wp-content/uploads/2011/02/game_clapfish.jpg"><img class="size-full wp-image-993 " title="game_clapfish" src="http://www.stokebloke.com/wordpress/wp-content/uploads/2011/02/game_clapfish.jpg" alt="Image of ingame clap fish" width="250" height="211" /></a><p class="wp-caption-text">Image of ingame clap fish</p></div>
<h3>The Lubricator</h3>
<div id="attachment_986" class="wp-caption alignleft" style="width: 74px"><a href="http://www.stokebloke.com/wordpress/wp-content/uploads/2011/02/ach_oil.png"><img class="size-full wp-image-986 " title="ach_oil" src="http://www.stokebloke.com/wordpress/wp-content/uploads/2011/02/ach_oil.png" alt="Borderlands The Lubricator Achievement" width="64" height="64" /></a><p class="wp-caption-text">Borderlands The Lubricator Achievement</p></div>
<p>For The Lubricator achievement you need to &#8220;Find 25 Oil Cans&#8221;</p>
<div id="attachment_990" class="wp-caption aligncenter" style="width: 260px"><a href="http://www.stokebloke.com/wordpress/wp-content/uploads/2011/02/game_oil.jpg"><img class="size-full wp-image-990" title="game_oil" src="http://www.stokebloke.com/wordpress/wp-content/uploads/2011/02/game_oil.jpg" alt="Image of ingame oil can" width="250" height="228" /></a><p class="wp-caption-text">Image of ingame oil can</p></div>
<h3>Bobble-Trap</h3>
<div id="attachment_984" class="wp-caption alignleft" style="width: 74px"><a href="http://www.stokebloke.com/wordpress/wp-content/uploads/2011/02/ach_bobble.png"><img class="size-full wp-image-984 " title="ach_bobble" src="http://www.stokebloke.com/wordpress/wp-content/uploads/2011/02/ach_bobble.png" alt="Borderlands Bobble-Trap Achievement" width="64" height="64" /></a><p class="wp-caption-text">Borderlands Bobble-Trap Achievement</p></div>
<p>For the Bobble-Trap achievement you need to &#8220;Collect 15 claptrap bobbleheads&#8221;</p>
<div id="attachment_988" class="wp-caption aligncenter" style="width: 152px"><a href="http://www.stokebloke.com/wordpress/wp-content/uploads/2011/02/game_bobble.jpg"><img class="size-full wp-image-988" title="game_bobble" src="http://www.stokebloke.com/wordpress/wp-content/uploads/2011/02/game_bobble.jpg" alt="Image of ingame bobblehead" width="142" height="250" /></a><p class="wp-caption-text">Image of ingame bobblehead</p></div>
<h3>Its so realistic</h3>
<div id="attachment_985" class="wp-caption alignleft" style="width: 74px"><a href="http://www.stokebloke.com/wordpress/wp-content/uploads/2011/02/ach_glasses.png"><img class="size-full wp-image-985 " title="ach_glasses" src="http://www.stokebloke.com/wordpress/wp-content/uploads/2011/02/ach_glasses.png" alt="Borderlands It's so realistic! Achievement" width="64" height="64" /></a><p class="wp-caption-text">Borderlands It&#39;s so realistic! Achievement</p></div>
<p>For the Its so realistic achievement you need to &#8220;Collect 5 3D Glasses&#8221;</p>
<div id="attachment_989" class="wp-caption aligncenter" style="width: 260px"><a href="http://www.stokebloke.com/wordpress/wp-content/uploads/2011/02/game_glasses.jpg"><img class="size-full wp-image-989" title="game_glasses" src="http://www.stokebloke.com/wordpress/wp-content/uploads/2011/02/game_glasses.jpg" alt="Image of ingame 3D glasses" width="250" height="81" /></a><p class="wp-caption-text">Image of ingame 3D glasses</p></div>
<p>The Collector is easy to complete for Tannis, but after I had completed playthrough 2 and hadn&#8217;t got any of the others.   I spent ages in the Hyperion Dump killing claptraps and never got anything apart from Gears and Motherboards.</p>
<p>I then gave up and realised I had missed some of the <a href="http://borderlands.wikia.com/wiki/SDU">SDU </a>missions.   I started to do playthrough 1 of the Claptrap&#8217;s New Robot Revolution, but being LV 69 it was very easy.</p>
<p>Once I got to the Interplanetary Ninja Assassin Claptrap (<a href="http://borderlands.wikia.com/wiki/MINAC">MINAC</a>) I killed it silly fast.</p>
<p>Then I had the idea of farming the MINAC area for claptraps, they keep respawning so fast and the MINAC could barely touch me.</p>
<p>I got my fastest <a title="Category:Combat Rifles" href="http://borderlands.wikia.com/wiki/Category:Combat_Rifles">Combat Rifles</a> which had a large magazine size.</p>
<p>Once you get to the MINAC take out all the guns and rocket launchers on the MINAC, once you have done this the fun starts.</p>
<p>There are only about 5 places where the MINAC stops and only a few routes it takes across the map.   At the start just follow the MINAC around, get close to the doors at the front and wait for them to open (try not to get run over but that is not really important, just annoying).  Once the doors open just fire your combat rifle in burst as the clap traps spawn.  You can kill about 10 quite quickly and they start to drop the loot.  Don&#8217;t bother picking things up yet, just keep following the MINAC around, and kill as many clap traps as you can once the doors open.</p>
<p>After a while you have piles of loot all over the place.   Then just run around and collect them all.  Hold X and you collect massive amounts in one go.  It took me about 30 mins to get all the collection based missions.</p>
<p>Doing this when you hit LV 69 is easy but I expect you can do it at lower levels too.</p>
<p>Also see these links for more information</p>
<ul>
<li>http://borderlands.wikia.com/wiki/The_Lubricator</li>
<li>http://borderlands.wikia.com/wiki/Bobble-Trap</li>
<li>http://borderlands.wikia.com/wiki/It%27s_so_realistic!</li>
<li>http://borderlands.wikia.com/wiki/What_a_party!</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.stokebloke.com/wordpress/2011/02/25/borderlands-clap-trap-loot-achievements/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>La Tania 2011 &#8211; Photographs online</title>
		<link>http://www.stokebloke.com/wordpress/2011/02/19/la-tania-2011-photographs-online/</link>
		<comments>http://www.stokebloke.com/wordpress/2011/02/19/la-tania-2011-photographs-online/#comments</comments>
		<pubDate>Sat, 19 Feb 2011 12:26:44 +0000</pubDate>
		<dc:creator>Neil Wightman</dc:creator>
				<category><![CDATA[Snowboarding]]></category>
		<category><![CDATA[holiday]]></category>
		<category><![CDATA[la tania]]></category>
		<category><![CDATA[mountain]]></category>
		<category><![CDATA[photographs]]></category>
		<category><![CDATA[snowboard]]></category>

		<guid isPermaLink="false">http://www.stokebloke.com/wordpress/?p=1006</guid>
		<description><![CDATA[I finally got around to blogging about the photographs from La Tania going online. They have actually been up for a few days, but I&#8217;ve been too busy to tell anyone. The photographs are available here Monty, Coz, Ben, Steve, Woody, Woodys Dad and I went. La Tania is a great place to stay in [...]]]></description>
				<content:encoded><![CDATA[<p>I finally got around to blogging about the photographs from La Tania going online.  They have actually been up for a few days, but I&#8217;ve been too busy to tell anyone.</p>
<p>The photographs are available <a href="/gallery.php?dir=photographs/La Tania 2011">here</a></p>
<p>Monty, Coz, Ben, Steve, Woody, Woodys Dad and I went.   La Tania is a great place to stay in 3 Valleys.</p>
<p><a href="/view.php?file=photographs/La Tania 2011/dsc02062_cleanup1.jpg"><img src="/photographs/La%20Tania%202011/dsc02062_cleanup1_s.jpg" alt="" /></a></p>
<p><a href="/view.php?file=photographs/La Tania 2011/dsc02063_cleanup1.jpg"><img src="/photographs/La%20Tania%202011/dsc02063_cleanup1_s.jpg" alt="" /></a></p>
<p><a href="/view.php?file=photographs/La Tania 2011/dsc02198.jpg"><img src="/photographs/La%20Tania%202011/dsc02198_s.jpg" alt="" /></a></p>
<p><a href="/view.php?file=photographs/La Tania 2011/img_6260.jpg"><img src="/photographs/La%20Tania%202011/img_6260_s.jpg" alt="" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.stokebloke.com/wordpress/2011/02/19/la-tania-2011-photographs-online/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Technic Lego 8052 &#8211; Container Truck</title>
		<link>http://www.stokebloke.com/wordpress/2011/01/05/technic-lego-8052-container-truck/</link>
		<comments>http://www.stokebloke.com/wordpress/2011/01/05/technic-lego-8052-container-truck/#comments</comments>
		<pubDate>Wed, 05 Jan 2011 13:20:14 +0000</pubDate>
		<dc:creator>Neil Wightman</dc:creator>
				<category><![CDATA[Toys]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Lego]]></category>
		<category><![CDATA[Toy]]></category>

		<guid isPermaLink="false">http://www.stokebloke.com/wordpress/?p=973</guid>
		<description><![CDATA[Well for Christmas this year my parents wanted to get me the Technic Lego 8052 &#8211; Container Truck. Unfortunately the shops had sold out in the UK, so they gave me the money and told me to buy it here, in Germany. Amazon shouldnt take long to deliver it.]]></description>
				<content:encoded><![CDATA[<p>Well for Christmas this year my parents wanted to get me the <a href="http://technic.lego.com/en-us//Products/new/8052.aspx">Technic Lego 8052 &#8211; Container Truck</a>.   Unfortunately the shops had sold out in the UK, so they gave me the money and told me to buy it here, in Germany.</p>
<div id="attachment_975" class="wp-caption aligncenter" style="width: 310px"><a href="/wordpress/wp-content/uploads/2011/01/lego-8052-container-truck.jpg"><img class="size-medium wp-image-975" title="lego-8052-container-truck" src="/wordpress/wp-content/uploads/2011/01/lego-8052-container-truck-300x204.jpg" alt="Lego 8052 Container Truck" width="300" height="204" /></a><p class="wp-caption-text">Lego 8052 Container Truck</p></div>
<div id="attachment_974" class="wp-caption aligncenter" style="width: 310px"><a href="/wordpress/wp-content/uploads/2011/01/8052_box_in.jpg"><img class="size-medium wp-image-974" title="8052_box_in" src="/wordpress/wp-content/uploads/2011/01/8052_box_in-300x210.jpg" alt="Lego 8053 Container Truck Box" width="300" height="210" /></a><p class="wp-caption-text">Lego 8053 Container Truck Box</p></div>
<p>Amazon shouldnt take long to deliver it.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.stokebloke.com/wordpress/2011/01/05/technic-lego-8052-container-truck/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Thunderbird mark message as read after reply</title>
		<link>http://www.stokebloke.com/wordpress/2010/10/14/thunderbird-mark-message-as-read-after-reply/</link>
		<comments>http://www.stokebloke.com/wordpress/2010/10/14/thunderbird-mark-message-as-read-after-reply/#comments</comments>
		<pubDate>Thu, 14 Oct 2010 08:55:54 +0000</pubDate>
		<dc:creator>Neil Wightman</dc:creator>
				<category><![CDATA[Random]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[thunderbird]]></category>

		<guid isPermaLink="false">http://www.stokebloke.com/wordpress/?p=959</guid>
		<description><![CDATA[Well it appears I am not the only person having a problem with thunderbirds marking emails as read. https://bugzilla.mozilla.org/show_bug.cgi?id=239782 http://markmail.org/message/u6js6hblklqy3ei4 This is how I use thunderbird I have disabled the &#8220;Automatically mark message as read&#8221; functionality so that I have to set messages as read.  If I don&#8217;t do this many emails were being marked [...]]]></description>
				<content:encoded><![CDATA[<p>Well it appears I am not the only person having a problem with thunderbirds marking emails as read.</p>
<p><a href="https://bugzilla.mozilla.org/show_bug.cgi?id=239782">https://bugzilla.mozilla.org/show_bug.cgi?id=239782</a></p>
<p><a href="http://markmail.org/message/u6js6hblklqy3ei4">http://markmail.org/message/u6js6hblklqy3ei4</a></p>
<p>This is how I use thunderbird</p>
<p>I have disabled the &#8220;Automatically mark message as read&#8221; functionality so that I have to set messages as read.  If I don&#8217;t do this many emails were being marked as read when I hadn&#8217;t really finished reading them or replied to them.</p>
<p>In my case I classify an email as read when I have replied to it or clicked the read button (they require no reply)</p>
<p>I just want Thunderbird to set the read flag when I reply to the email.</p>
<p>Also I normally view the email in the &#8220;Message pane (F8)&#8221;</p>
<p>After installing</p>
<p><a href="https://nic-nac-project.org/~kaosmos/changequote-en.html">https://nic-nac-project.org/~kaosmos/changequote-en.html</a></p>
<p><a href="/wordpress/wp-content/uploads/2010/10/mark_reply_read.jpg"><img class="aligncenter size-full wp-image-960" title="mark_reply_read" src="/wordpress/wp-content/uploads/2010/10/mark_reply_read.jpg" alt="" width="541" height="485" /></a></p>
<p>I get exactly what I want.   Thunderbird now sets emails as read, when I reply to the email.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.stokebloke.com/wordpress/2010/10/14/thunderbird-mark-message-as-read-after-reply/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>
