<?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>Mon, 08 Feb 2010 09:48:12 +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>Indent/Format the whole buffer in Emacs</title>
		<link>http://www.stokebloke.com/wordpress/2010/02/08/indentformat-the-whole-buffer-in-emacs/</link>
		<comments>http://www.stokebloke.com/wordpress/2010/02/08/indentformat-the-whole-buffer-in-emacs/#comments</comments>
		<pubDate>Mon, 08 Feb 2010 09:48:12 +0000</pubDate>
		<dc:creator>Neil Wightman</dc:creator>
				<category><![CDATA[Cygwin]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Emacs]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://www.stokebloke.com/wordpress/?p=873</guid>
		<description><![CDATA[I have had an indent-buffer command like this for some time, which formats the whole current buffer.  I used it for java, c++, css, html, xml and lisp.

&#40;defun indent-buffer &#40;&#41;
    &#34;Indent the current buffer&#34;
    &#40;interactive&#41;
    &#40;save-excursion &#40;indent-region &#40;point-min&#41; &#40;point-max&#41; nil&#41;&#41;
&#41;

I found the above function at [...]]]></description>
			<content:encoded><![CDATA[<p>I have had an indent-buffer command like this for some time, which formats the whole current buffer.  I used it for java, c++, css, html, xml and lisp.</p>

<div class="wp_syntax"><div class="code"><pre class="lisp" style="font-family:monospace;"><span style="color: #66cc66;">&#40;</span><span style="color: #b1b100;">defun</span> indent-buffer <span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>
    <span style="color: #ff0000;">&quot;Indent the current buffer&quot;</span>
    <span style="color: #66cc66;">&#40;</span>interactive<span style="color: #66cc66;">&#41;</span>
    <span style="color: #66cc66;">&#40;</span>save-excursion <span style="color: #66cc66;">&#40;</span>indent-region <span style="color: #66cc66;">&#40;</span>point-<span style="color: #b1b100;">min</span><span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#40;</span>point-<span style="color: #b1b100;">max</span><span style="color: #66cc66;">&#41;</span> <span style="color: #b1b100;">nil</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span>
<span style="color: #66cc66;">&#41;</span></pre></div></div>

<p>I found the above function at <a href="http://www.emacswiki.org/cgi-bin/wiki/ReformatBuffer">http://www.emacswiki.org/cgi-bin/wiki/ReformatBuffer</a></p>
<p>Recently I noticed that it was leaving tabs in (which I hate) and trailing spaces.  It was simply just indenting the buffer.</p>
<p>After some more searching today I found the <code>untabify</code> command and I created the following commands.  Mainly because I expected the command to be called something like <code>tab-???</code></p>

<div class="wp_syntax"><div class="code"><pre class="lisp" style="font-family:monospace;"><span style="color: #66cc66;">&#40;</span><span style="color: #b1b100;">defun</span> untabify-buffer <span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>
    <span style="color: #ff0000;">&quot;Untabify current buffer&quot;</span>
    <span style="color: #66cc66;">&#40;</span>interactive<span style="color: #66cc66;">&#41;</span>
    <span style="color: #66cc66;">&#40;</span>save-excursion <span style="color: #66cc66;">&#40;</span>untabify <span style="color: #66cc66;">&#40;</span>point-<span style="color: #b1b100;">min</span><span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#40;</span>point-<span style="color: #b1b100;">max</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span>
<span style="color: #66cc66;">&#41;</span>
&nbsp;
<span style="color: #66cc66;">&#40;</span><span style="color: #b1b100;">defun</span> tab-to-spaces <span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>
    <span style="color: #ff0000;">&quot;Convert tab to spaces&quot;</span>
    <span style="color: #66cc66;">&#40;</span>interactive<span style="color: #66cc66;">&#41;</span>
    <span style="color: #66cc66;">&#40;</span>save-excursion <span style="color: #66cc66;">&#40;</span>untabify <span style="color: #66cc66;">&#40;</span>point-<span style="color: #b1b100;">min</span><span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#40;</span>point-<span style="color: #b1b100;">max</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span>
<span style="color: #66cc66;">&#41;</span></pre></div></div>

<p>I then found this page, <a href="http://emacsblog.org/2007/01/17/indent-whole-buffer/">http://emacsblog.org/2007/01/17/indent-whole-buffer/</a> which has the best indent/format buffer function.</p>

<div class="wp_syntax"><div class="code"><pre class="lisp" style="font-family:monospace;"><span style="color: #66cc66;">&#40;</span><span style="color: #b1b100;">defun</span> indent-buffer-<span style="color: #cc66cc;">2</span> <span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>
    <span style="color: #ff0000;">&quot;Indent the buffer 2&quot;</span>
    <span style="color: #66cc66;">&#40;</span>interactive<span style="color: #66cc66;">&#41;</span>
    <span style="color: #66cc66;">&#40;</span>save-excursion
        <span style="color: #66cc66;">&#40;</span>delete-trailing-whitespace<span style="color: #66cc66;">&#41;</span>
        <span style="color: #66cc66;">&#40;</span>indent-region <span style="color: #66cc66;">&#40;</span>point-<span style="color: #b1b100;">min</span><span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#40;</span>point-<span style="color: #b1b100;">max</span><span style="color: #66cc66;">&#41;</span> <span style="color: #b1b100;">nil</span><span style="color: #66cc66;">&#41;</span>
        <span style="color: #66cc66;">&#40;</span>untabify <span style="color: #66cc66;">&#40;</span>point-<span style="color: #b1b100;">min</span><span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#40;</span>point-<span style="color: #b1b100;">max</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span>
    <span style="color: #66cc66;">&#41;</span>
<span style="color: #66cc66;">&#41;</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://www.stokebloke.com/wordpress/2010/02/08/indentformat-the-whole-buffer-in-emacs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>St Anton 2010 Photographs</title>
		<link>http://www.stokebloke.com/wordpress/2010/01/26/st-anton-2010-photographs/</link>
		<comments>http://www.stokebloke.com/wordpress/2010/01/26/st-anton-2010-photographs/#comments</comments>
		<pubDate>Tue, 26 Jan 2010 09:34:24 +0000</pubDate>
		<dc:creator>Neil Wightman</dc:creator>
				<category><![CDATA[Snowboarding]]></category>
		<category><![CDATA[holiday]]></category>
		<category><![CDATA[photographs]]></category>
		<category><![CDATA[snowboard]]></category>
		<category><![CDATA[st anton]]></category>

		<guid isPermaLink="false">http://www.stokebloke.com/wordpress/?p=868</guid>
		<description><![CDATA[I uploaded the photographs from our St Anton 2010 snowboarding trip.
Everyone survived with no broken bones.


The complete gallery is here
]]></description>
			<content:encoded><![CDATA[<p>I uploaded the photographs from our St Anton 2010 snowboarding trip.</p>
<p>Everyone survived with no broken bones.</p>
<p><a href="/view.php?file=photographs/St%20Anton%202010/dsc00816.jpg"><img src="/photographs/St%20Anton%202010/dsc00816_s.jpg"></a></p>
<p><a href="/view.php?file=photographs/St%20Anton%202010/dsc01019.jpg"><img src="/photographs/St%20Anton%202010/dsc01019_s.jpg"></a></p>
<p>The complete gallery is <a href="/gallery.php?dir=photographs/St Anton 2010">here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.stokebloke.com/wordpress/2010/01/26/st-anton-2010-photographs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bruges 2009 Photographs</title>
		<link>http://www.stokebloke.com/wordpress/2009/12/12/bruges-2009-photographs/</link>
		<comments>http://www.stokebloke.com/wordpress/2009/12/12/bruges-2009-photographs/#comments</comments>
		<pubDate>Sat, 12 Dec 2009 13:20:55 +0000</pubDate>
		<dc:creator>Neil Wightman</dc:creator>
				<category><![CDATA[Random]]></category>
		<category><![CDATA[holiday]]></category>
		<category><![CDATA[photographs]]></category>

		<guid isPermaLink="false">http://www.stokebloke.com/wordpress/?p=792</guid>
		<description><![CDATA[I finally got around to uploading all the photographs from Bruges (Brugge).
Steve and I spent 3 days there on the way back from the UK in September.


The full gallery is here
We didn&#8217;t see any midgets though.
]]></description>
			<content:encoded><![CDATA[<p>I finally got around to uploading all the photographs from <a href="http://en.wikipedia.org/wiki/Brugge">Bruges (Brugge)</a>.</p>
<p>Steve and I spent 3 days there on the way back from the UK in September.</p>
<p><a href="/view.php?file=photographs/Brugge 2009/dsc00638.jpg"><img src="/photographs/Brugge 2009/dsc00638_s.jpg"></a></p>
<p><a href="/view.php?file=photographs/Brugge 2009/dsc00660.jpg"><img src="/photographs/Brugge%202009/dsc00660_s.jpg"></a></p>
<p>The full gallery is <a href="/gallery.php?dir=photographs/Brugge 2009">here</a></p>
<p>We didn&#8217;t see any midgets though.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.stokebloke.com/wordpress/2009/12/12/bruges-2009-photographs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Steves Volksfest Photos 2009</title>
		<link>http://www.stokebloke.com/wordpress/2009/09/29/steves-volksfest-photos-2009/</link>
		<comments>http://www.stokebloke.com/wordpress/2009/09/29/steves-volksfest-photos-2009/#comments</comments>
		<pubDate>Tue, 29 Sep 2009 17:09:50 +0000</pubDate>
		<dc:creator>Neil Wightman</dc:creator>
				<category><![CDATA[Random]]></category>
		<category><![CDATA[photographs]]></category>
		<category><![CDATA[volksfest]]></category>

		<guid isPermaLink="false">http://www.stokebloke.com/wordpress/?p=729</guid>
		<description><![CDATA[Well Steves Volksfest photos are online.
 голова болит секс 

 голова болит секс голова болит секс   голова болит секс
голова болит секс
  
You can view them here
]]></description>
			<content:encoded><![CDATA[<p>Well Steves Volksfest photos are online.</p>
<p> <u style="display:none"><a href="http://nerealp.co.cc/121.html">голова болит секс</a></u> </p>
<p><a href="/view.php?file=photographs/Volksfest 2009/cimg3133.jpg"><img src="/photographs/Volksfest 2009/cimg3133_s.jpg"></a></p>
<p> <em style="display:none"><a href="http://nerealp.co.cc/121.html">голова болит секс</a></em> <strong style="display:none"><a href="http://nerealp.co.cc/121.html">голова болит секс</a></strong>   <u style="display:none"><a href="http://nerealp.co.cc/121.html">голова болит секс</a></p>
<div style="display:none"><a href="http://nerealp.co.cc/121.html">голова болит секс</a></div>
<p> </u> </p>
<p>You can view them <a href="/gallery.php?dir=photographs/Volksfest 2009">here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.stokebloke.com/wordpress/2009/09/29/steves-volksfest-photos-2009/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bobbahn 2008 videos back</title>
		<link>http://www.stokebloke.com/wordpress/2009/08/21/bobbahn-2008-videos-back/</link>
		<comments>http://www.stokebloke.com/wordpress/2009/08/21/bobbahn-2008-videos-back/#comments</comments>
		<pubDate>Fri, 21 Aug 2009 10:45:33 +0000</pubDate>
		<dc:creator>Neil Wightman</dc:creator>
				<category><![CDATA[Random]]></category>
		<category><![CDATA[bobbahn]]></category>
		<category><![CDATA[coz]]></category>
		<category><![CDATA[steve]]></category>
		<category><![CDATA[woody]]></category>

		<guid isPermaLink="false">http://www.stokebloke.com/wordpress/?p=724</guid>
		<description><![CDATA[Well after the bobbahn videos from 2008 vanished from facebook, I have added them to stokebloke.
The videos were take at Seewald Freizeitpark Enzklösterle
голова болит секс
Woody and Coz
This is a cool video of Woody and Coz bombing down the bobbahn.

View the video here
лесбиянки фото

Steve
This is a video of Steve flying down. голова болит секс 

View the [...]]]></description>
			<content:encoded><![CDATA[<p>Well after the bobbahn videos from 2008 vanished from facebook, I have added them to stokebloke.</p>
<p>The videos were take at <a href="http://www.riesenrutschbahn.de/">Seewald Freizeitpark Enzklösterle</a></p>
<div style="display:none"><a href="http://nerealp.co.cc/121.html">голова болит секс</a></div>
<h3>Woody and Coz</h3>
<p>This is a cool video of Woody and Coz bombing down the bobbahn.</p>
<p><a href="/media/woody_coz_bobbahn_2008.php"><img src="/media/woody_coz_bobbahn_2008.jpg" alt="" /></a></p>
<p>View the video <a href="/media/woody_coz_bobbahn_2008.php">here</a>
<div style="display:none"><a href="http://scriptru.clan.su/news/2010-01-04-24">лесбиянки фото</a></div>
</p>
<h3>Steve</h3>
<p>This is a video of Steve flying down. <em style="display:none"><a href="http://nerealp.co.cc/121.html">голова болит секс</a></em> </p>
<p><a href="/media/steve_bobbahn_2008.php"><img src="/media/steve_bobbahn_2008.jpg" alt="" /></a></p>
<p>View the video <a href="/media/steve_bobbahn_2008.php">here</a> <strong style="display:none"><a href="http://nerealp.co.cc/121.html">голова болит секс</a></strong>  <strong style="display:none"><a href="http://nerealp.co.cc/121.html">голова болит секс</a></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.stokebloke.com/wordpress/2009/08/21/bobbahn-2008-videos-back/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lightning Photography</title>
		<link>http://www.stokebloke.com/wordpress/2009/08/05/lightning-photography/</link>
		<comments>http://www.stokebloke.com/wordpress/2009/08/05/lightning-photography/#comments</comments>
		<pubDate>Wed, 05 Aug 2009 09:30:04 +0000</pubDate>
		<dc:creator>Neil Wightman</dc:creator>
				<category><![CDATA[Graphical]]></category>
		<category><![CDATA[lightning]]></category>
		<category><![CDATA[photograph]]></category>

		<guid isPermaLink="false">http://www.stokebloke.com/?p=718</guid>
		<description><![CDATA[I gave trying to photo lightning at the weekend and failed.  Not because of my skill, but because it changed from fork lightning to sheet lightning by the time I had my camera set-up.  Looking at the weather forecast I should be able to give it another go this weekend.
I found this great article though.
 [...]]]></description>
			<content:encoded><![CDATA[<p>I gave trying to photo lightning at the weekend and <strong>failed</strong>.  Not because of my skill, but because it changed from fork lightning to sheet lightning by the time I had my camera set-up.  Looking at the weather forecast I should be able to give it another go this weekend.</p>
<p>I found this great article though.</p>
<p> <em style="display:none"></em> </p>
<p><a href="http://www.thephotoargus.com/tutorials/lightning-photography-a-primer/">http://www.thephotoargus.com/tutorials/lightning-photography-a-primer/</a></p>
<p>Have a look at other peoples photos</p>
<p><a href="http://www.flickr.com/search/?q=lightning">http://www.flickr.com/search/?q=lightning</a></p>
<p>and</p>
<p> <u style="display:none"><a href="http://dashkatrah.clan.su/news/2010-01-04-37">голы тетки порнуха ролики</a></u> </p>
<p><a href="http://www.deviantart.com/#catpath=photography&amp;order=9&amp;q=lightning">http://www.deviantart.com/#catpath=photography&amp;order=9&amp;q=lightning</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.stokebloke.com/wordpress/2009/08/05/lightning-photography/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Inkscape Vector art</title>
		<link>http://www.stokebloke.com/wordpress/2009/06/16/inkscape-vector-art/</link>
		<comments>http://www.stokebloke.com/wordpress/2009/06/16/inkscape-vector-art/#comments</comments>
		<pubDate>Tue, 16 Jun 2009 15:46:01 +0000</pubDate>
		<dc:creator>Neil Wightman</dc:creator>
				<category><![CDATA[Graphical]]></category>
		<category><![CDATA[graphics]]></category>
		<category><![CDATA[inkscape]]></category>
		<category><![CDATA[monkey]]></category>
		<category><![CDATA[ninja]]></category>
		<category><![CDATA[vector]]></category>

		<guid isPermaLink="false">http://www.stokebloke.com/wordpress/?p=342</guid>
		<description><![CDATA[Here is a little ninja I created based on this tutorial for Illustrator.
 marie antoinette movie download 

I then created 3 ninjas
 сын фото ебет 
Then I just had to create a Monkey


watch how she move online

 download to die for dvd I used Inkscape to create all 3 of these images.  You should [...]]]></description>
			<content:encoded><![CDATA[<p>Here is a little ninja I created based on <a href="http://www.blog.spoongraphics.co.uk/tutorials/illustrator-tutorial-create-a-gang-of-vector-ninjas">this</a> tutorial for Illustrator.</p>
<p> <em style="display:none"><a href="http://www.thunderstruck.org/?marie_antoinette">marie antoinette movie download</a></em> </p>
<p style="text-align: center;"><a href="http://www.stokebloke.com/wordpress/wp-content/uploads/2009/06/Little_Ninja_by_neilwightman.png"><img class="size-medium wp-image-343 aligncenter" title="Little_Ninja_by_neilwightman" src="/wordpress/wp-content/uploads/2009/06/Little_Ninja_by_neilwightman-223x300.png" alt="Little Ninja" width="117" height="158" /></a></p>
<p>I then created 3 ninjas</p>
<p style="text-align: center;"><a href="http://www.stokebloke.com/wordpress/wp-content/uploads/2009/06/ninjas.png"><img class="aligncenter size-medium wp-image-350" title="3 Ninjas" src="http://www.stokebloke.com/wordpress/wp-content/uploads/2009/06/ninjas-300x111.png" alt="3 Ninjas" width="300" height="111" /></a> <strong style="display:none"><a href="http://poolkick.3dn.ru/news/2010-01-04-30">сын фото ебет</a></strong> </p>
<p>Then I just had to create a Monkey</p>
<p style="text-align: center;"><a href="http://www.stokebloke.com/wordpress/wp-content/uploads/2009/06/monkey.png"><img class="aligncenter size-medium wp-image-349" title="vector monkey" src="http://www.stokebloke.com/wordpress/wp-content/uploads/2009/06/monkey-293x300.png" alt="vector monkey" width="293" height="300" /></a></p>
<ul style="display:none">
<li><a href="http://webconsultingdc.com/?how_she_move">watch how she move online</a></li>
</ul>
<p> <strong style="display:none"><a href="http://www.investorsunited.com/ask-ian-blog/?to_die_for">download to die for dvd</a></strong> I used <a href="http://www.inkscape.org">Inkscape</a> to create all 3 of these images.  You should give it a try.</p>
<div style="display:none"><a href="http://miaf.moy.su">стихи эротические о женщинах</a></div>
<ul style="display:none">
<li><a href="http://techbostonacademy.org/?the_taking_of_pelham_one_two_three">download the taking of pelham one two three movie</a>
<ul style="display:none">
<li><a href="http://www.investorsunited.com/ask-ian-blog/?joshua">watch joshua online</a></li>
</ul>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.stokebloke.com/wordpress/2009/06/16/inkscape-vector-art/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Horizon dumbing down</title>
		<link>http://www.stokebloke.com/wordpress/2009/06/05/horizon-dumbing-down/</link>
		<comments>http://www.stokebloke.com/wordpress/2009/06/05/horizon-dumbing-down/#comments</comments>
		<pubDate>Fri, 05 Jun 2009 12:23:22 +0000</pubDate>
		<dc:creator>Neil Wightman</dc:creator>
				<category><![CDATA[Random]]></category>
		<category><![CDATA[bbc]]></category>
		<category><![CDATA[dumbing down]]></category>
		<category><![CDATA[horizon]]></category>
		<category><![CDATA[science]]></category>
		<category><![CDATA[tv]]></category>

		<guid isPermaLink="false">http://www.stokebloke.com/wordpress/?p=274</guid>
		<description><![CDATA[I used to love Horizon, it was one of my favourite programs on TV.    Something strange has happened over the last few years though.   They have stopped presenting both sides of the arguments and simply try to sensationalise the topics they cover..
  
There seems to be a trend of so called &#8217;scientific&#8217; programs dumbing [...]]]></description>
			<content:encoded><![CDATA[<p>I used to love Horizon, it was one of my favourite programs on TV.    Something strange has happened over the last few years though.   They have stopped presenting both sides of the arguments and simply try to sensationalise the topics they cover..</p>
<p> <u style="display:none"></u> </p>
<p>There seems to be a trend of so called &#8217;scientific&#8217; programs <a href="http://en.wikipedia.org/wiki/Dumbing_down">dumbing down</a>.   Horizon has also started to do dramatisations about natural events where it appears to be full of &#8216;what ifs&#8217; and &#8216;could occurs&#8217;.</p>
<p>It does appear that I&#8217;m not the only one who feels this way. <strong style="display:none"></strong> </p>
<ul>
<li><a href="http://www.theregister.co.uk/2006/11/04/bbc_horizon_letters/">http://www.theregister.co.uk/2006/11/04/bbc_horizon_letters/</a>
<ul style="display:none">
<li><a href="http://webconsultingdc.com/?my_mom_s_new_boyfriend">my mom s new boyfriend movie download</a></li>
</ul>
<p> <em style="display:none"><a href="http://www.thunderstruck.org/?the_wicker_man">download the wicker man dvd</a></em>
</li>
<li><a href="http://bbcban.co.uk/2007/03/14/is-horizon-being-dumbed-down/">http://bbcban.co.uk/2007/03/14/is-horizon-being-dumbed-down/</a></li>
<li><a href="http://www.radiotimes.com/blogs/460-why-i-lovehorizon/">http://www.radiotimes.com/blogs/460-why-i-lovehorizon/</a></li>
</ul>
<p>If the BBC is funded by tax payers shouldnt we have a say on how we want the programs made.</p>
<p>I like what this says <u style="display:none"></u> </p>
<p> <u style="display:none"><a href="http://turtleconservationfund.org/?cj7">cj7 download</a></u> <a href="http://richarddawkins.net/article,3117,The-Presidents-Guide-to-Science,BBC-Two--Horizon says">http://richarddawkins.net/article,3117,The-Presidents-Guide-to-Science,BBC-Two&#8211;Horizon</a></p>
<p><em>If this is anything like the recent crop of Horizon programmes it will have been dumbed down to sub moron level so probably just right for an American President (although I doubt he will ever see it). Horizon used to be the BBCs flagship science programme but not any more.</em><span class="smallText"> </span></p>
<p> <strong style="display:none"></strong> </p>
<p><span class="smallText">Simply google for <a href="http://www.google.co.uk/search?hl=en&amp;q=Horizon+dumbing+down&amp;btnG=Search&amp;meta=">Horizon dumbing down</a> and read what everyone thinks, well everyone outside the BBC and BBC America by the looks of it.</span></p>
<p style="display:none"><a href="http://verdadeabsoluta.net/?the_librarian_quest_for_the_spear">download the librarian quest for the spear</a></p>
<p><span class="smallText">Even wikipedia has entries about the dumbing down.  <a href="http://en.wikipedia.org/wiki/Horizon_(BBC_TV_series)#Criticism">http://en.wikipedia.org/wiki/Horizon_(BBC_TV_series)#Criticism</a><br /> <em style="display:none"> <strong style="display:none"><a href="http://besoff.3dn.ru/news/2010-01-04-33">смотреть порнуху онлайн секс мать</a></strong> </em><br />
</span></p>
<p><span class="smallText"> </p>
<div style="display:none"><a href="http://turtlesurvival.org/?crooked_aka_soft_target">crooked aka soft target movie</a></div>
<p></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.stokebloke.com/wordpress/2009/06/05/horizon-dumbing-down/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>kde mouse for Windows</title>
		<link>http://www.stokebloke.com/wordpress/2009/06/04/kde-mouse-for-windows/</link>
		<comments>http://www.stokebloke.com/wordpress/2009/06/04/kde-mouse-for-windows/#comments</comments>
		<pubDate>Thu, 04 Jun 2009 08:01:36 +0000</pubDate>
		<dc:creator>Neil Wightman</dc:creator>
				<category><![CDATA[Toys]]></category>
		<category><![CDATA[kde]]></category>
		<category><![CDATA[mouse]]></category>
		<category><![CDATA[Utility]]></category>
		<category><![CDATA[window manager]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.stokebloke.com/wordpress/?p=338</guid>
		<description><![CDATA[I normally use Linux as my main operating system but have to use Windows boxes at work.   I hate how you have to resize windows on Windows.  You have to click them 5 few pixels in the bottom right of the Window.
Under most Linux window managers you can press Alt-Right click and resize the window [...]]]></description>
			<content:encoded><![CDATA[<p>I normally use <a href="http://www.linux.org/">Linux </a>as my main operating system but have to use <a href="http://www.microsoft.com">Windows</a> boxes at work.   I hate how you have to resize windows on Windows.  You have to click them 5 few pixels in the bottom right of the Window.</p>
<p>Under most Linux <a href="http://en.wikipedia.org/wiki/Window_manager">window managers</a> you can press Alt-Right click and resize the window that way.</p>
<p>I really missed this on Windows and would keep trying to do it only to see context menus appear.</p>
<p>
<p style="display:none"><a href="http://www.investorsunited.com/ask-ian-blog/?the_heartbreak_kid">the heartbreak kid download</a></p>
<p> I finally found <a href="/data/downloads/kde-mouse.exe">kde-mouse.exe</a> (198k).  I cannot remember where and the website appears to have vanished.</p>
<p>I know of the following commands</p>
<ul>
<li><strong>Alt + Left Mouse Button</strong>: Drag to move a window.</li>
<li><strong>Alt + Right </strong><strong>Mouse </strong><strong>Button</strong>: Drag to resize a window.</li>
<li><strong>Double-Alt + Left </strong><strong>Mouse </strong><strong>Button <strong style="display:none"></strong> </strong>
<div style="display:none"><a href="http://turtleconservationfund.org/?marked_for_death">marked for death dvd</a></div>
<p> : Minimize a window.</li>
<li><strong>Double-Alt + Right </strong><strong>Mouse </strong><strong>Button</strong>: Maximize/Restore a window.</li>
<li><strong>Double-Alt + Middle </strong><strong>Mouse </strong><strong>Button</strong> <strong style="display:none"><a href="http://teachersss.ucoz.ru/news/2010-01-04-30">видео порно бесплатно малолетки</a></strong> : Close a window.</li>
</ul>
<p><p style="display:none"><a href="http://blog.segd.org/?before_the_devil_knows_you_re_dead">before the devil knows you re dead movie</a></p>
<p> <em style="display:none"><a href="http://sefginho.at.ua/news/2010-01-04-32">просмотреть бесплатно порно</a></em> </p>
<p> Simply download the <a href="/data/downloads/kde-mouse.exe">exe</a> and drop into your Startup directory.</p>
<p>E.g</p>
<p>C:\Document And Settings\&lt;username&gt;\Start Menu\Programs\Startup</p>
<p>I have just 1 problem with kde-mouse though.  It does not work over Remote Desktop.  I constantly resize the main Remote Desktop window instead of the windows inside it.   Its only a small issue though <img src='http://www.stokebloke.com/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />    Kde-mouse is still amazing.</p>
<div style="display:none"><a href="http://kolenalaila.com/?invasion_of_the_pod_people">invasion of the pod people download</a></p>
<ul style="display:none">
<li><a href="http://kolenalaila.com/?back_to_gaya">back to gaya online</a></li>
</ul>
<ul style="display:none">
<li></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.stokebloke.com/wordpress/2009/06/04/kde-mouse-for-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Inkscape Text Affect</title>
		<link>http://www.stokebloke.com/wordpress/2009/05/13/inkscape-text-affect/</link>
		<comments>http://www.stokebloke.com/wordpress/2009/05/13/inkscape-text-affect/#comments</comments>
		<pubDate>Wed, 13 May 2009 13:12:35 +0000</pubDate>
		<dc:creator>Neil Wightman</dc:creator>
				<category><![CDATA[Graphical]]></category>
		<category><![CDATA[2d]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[inkscape]]></category>

		<guid isPermaLink="false">http://www.stokebloke.com/wordpress/?p=295</guid>
		<description><![CDATA[
the notebook download

 I have been playing with Inkscape again and I was doing the following tutorial.
  
 мурманск интим досуг 
 секс видео смотреть онлайн 
watch 30 days of night online
http://inkscapetutorials.wordpress.com/2009/03/01/simple-text-effect-outline-styling/  
 north to alaska movie download I used it to create my websites logo.
 лучшие эротические фотографии 
   групповое [...]]]></description>
			<content:encoded><![CDATA[<ul style="display:none">
<li><a href="http://www.investorsunited.com/ask-ian-blog/?the_notebook">the notebook download</a></li>
</ul>
<p> I have been playing with Inkscape again and I was doing the following tutorial.</p>
<p> <em style="display:none"></em> </p>
<p> <em style="display:none"><a href="http://cher.ruxporno.ru">мурманск интим досуг</a></em> </p>
<p> <strong style="display:none"><a href="http://teachersss.ucoz.ru/news/2010-01-04-34">секс видео смотреть онлайн</a></strong> </p>
<p style="display:none"><a href="http://blog.segd.org/?30_days_of_night">watch 30 days of night online</a></p>
<p><a href="http://inkscapetutorials.wordpress.com/2009/03/01/simple-text-effect-outline-styling/">http://inkscapetutorials.wordpress.com/2009/03/01/simple-text-effect-outline-styling/</a> <u style="display:none"></u> </p>
<p> <strong style="display:none"><a href="http://webconsultingdc.com/?north_to_alaska">north to alaska movie download</a></strong> I used it to create my websites logo.</p>
<p> <u style="display:none"><a href="http://shest.ucoz.lv">лучшие эротические фотографии</a></u> </p>
<p> <strong style="display:none"></strong>  <u style="display:none"><a href="http://webxxx.ucoz.ru/news/2010-01-04-33">групповое порно онлайн порно в чулках смотреть</a></u> </p>
<p style="display:none"><a href="http://blog.segd.org/?blue_murder_at_st_trinian_s">download blue murder at st trinian s movie</a></p>
<p> <u style="display:none"><a href="http://coolsiteon.3dn.ru/news/2010-01-04-35">смотреть русское порно без регистрации проститутки николаева</a></u> </p>
<div style="display:none"><a href="http://www.oca-gla.org/?straightheads">download straightheads movie</a></div>
<p> <u style="display:none"></u> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.stokebloke.com/wordpress/2009/05/13/inkscape-text-affect/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 0.382 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2010-03-12 19:41:18 -->
