<?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>impworks &#187; php</title>
	<atom:link href="http://www.impworks.co.uk/tag/php/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.impworks.co.uk</link>
	<description>Mark Caldwell&#039;s Personal Website</description>
	<lastBuildDate>Thu, 02 Feb 2012 23:20:48 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Removing a Category from WordPress 3.1 RSS Feed</title>
		<link>http://www.impworks.co.uk/2011/02/removing-a-category-from-wordpress-3-1-rss-feed/</link>
		<comments>http://www.impworks.co.uk/2011/02/removing-a-category-from-wordpress-3-1-rss-feed/#comments</comments>
		<pubDate>Sun, 27 Feb 2011 20:47:29 +0000</pubDate>
		<dc:creator>impworks</dc:creator>
				<category><![CDATA[My Stuff]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[feed]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[RSS]]></category>

		<guid isPermaLink="false">http://www.impworks.co.uk/?p=7871</guid>
		<description><![CDATA[I filter a category out of my WordPress RSS feed because it&#8217;s all my tweets from the week.  I want an archive (mostly for myself) but I don&#8217;t want to blast anyone following my RSS feed with them every week.  I&#8217;d been using code like this in functions.php in my theme to screen them&#8230; &#160; [...]]]></description>
			<content:encoded><![CDATA[<p>I filter a category out of my WordPress RSS feed because it&#8217;s all my tweets from the week.  I want an archive (mostly for myself) but I don&#8217;t want to blast anyone following my RSS feed with them every week.  I&#8217;d been using code like this in functions.php in my theme to screen them&#8230;</p>
<div id="wpshdo_1" class="wp-synhighlighter-outer"><div id="wpshdt_1" class="wp-synhighlighter-expanded"><table border="0" width="100%"><tr><td align="left" width="80%"><a name="#codesyntax_1"></a><a id="wpshat_1" class="wp-synhighlighter-title" href="#codesyntax_1"  onClick="javascript:wpsh_toggleBlock(1)" title="Click to show/hide code block">Source code</a></td><td align="right"><a href="#codesyntax_1" onClick="javascript:wpsh_code(1)" title="Show code only"><img border="0" style="border: 0 none" src="http://www.impworks.co.uk/wp-content/themes/impworks/wp-synhighlight/images/code.png" /></a>&nbsp;<a href="#codesyntax_1" onClick="javascript:wpsh_print(1)" title="Print code"><img border="0" style="border: 0 none" src="http://www.impworks.co.uk/wp-content/themes/impworks/wp-synhighlight/images/printer.png" /></a>&nbsp;</td></tr></table></div><div id="wpshdi_1" class="wp-synhighlighter-inner" style="display: block;"><pre class="php" style="font-family:monospace;"><ol><li class="li1"><div class="de1"><span class="kw2">function</span> myRSSFilter<span class="br0">&#40;</span><span class="re0">$query</span><span class="br0">&#41;</span> <span class="br0">&#123;</span></div></li><li class="li1"><div class="de1">    <span class="kw1">if</span> <span class="br0">&#40;</span><span class="re0">$query</span><span class="sy0">-&gt;</span><span class="me1">is_feed</span><span class="br0">&#41;</span> <span class="br0">&#123;</span></div></li><li class="li1"><div class="de1">        <span class="re0">$query</span><span class="sy0">-&gt;</span><span class="me1">set</span><span class="br0">&#40;</span><span class="st_h">'cat'</span><span class="sy0">,</span><span class="st_h">'-100'</span><span class="br0">&#41;</span><span class="sy0">;</span></div></li><li class="li1"><div class="de1">    <span class="br0">&#125;</span></div></li><li class="li1"><div class="de1">    <span class="kw1">return</span> <span class="re0">$query</span><span class="sy0">;</span></div></li><li class="li1"><div class="de1"><span class="br0">&#125;</span></div></li><li class="li1"><div class="de1">&nbsp;</div></li><li class="li1"><div class="de1">add_filter<span class="br0">&#40;</span><span class="st_h">'pre_get_posts'</span><span class="sy0">,</span><span class="st_h">'myRSSFilter'</span><span class="br0">&#41;</span><span class="sy0">;</span></div></li></ol></pre></div></div>
<p>&nbsp;</p>
<p>Where the category has an ID of 100 so you put -100 in the code.</p>
<p>This doesn&#8217;t work in WordPress 3.1 and I&#8217;d not come across a fix so I did a bit of experimenting and found that this code seems to remove the unwanted category from the feed&#8230;</p>
<div id="wpshdo_2" class="wp-synhighlighter-outer"><div id="wpshdt_2" class="wp-synhighlighter-expanded"><table border="0" width="100%"><tr><td align="left" width="80%"><a name="#codesyntax_2"></a><a id="wpshat_2" class="wp-synhighlighter-title" href="#codesyntax_2"  onClick="javascript:wpsh_toggleBlock(2)" title="Click to show/hide code block">Source code</a></td><td align="right"><a href="#codesyntax_2" onClick="javascript:wpsh_code(2)" title="Show code only"><img border="0" style="border: 0 none" src="http://www.impworks.co.uk/wp-content/themes/impworks/wp-synhighlight/images/code.png" /></a>&nbsp;<a href="#codesyntax_2" onClick="javascript:wpsh_print(2)" title="Print code"><img border="0" style="border: 0 none" src="http://www.impworks.co.uk/wp-content/themes/impworks/wp-synhighlight/images/printer.png" /></a>&nbsp;</td></tr></table></div><div id="wpshdi_2" class="wp-synhighlighter-inner" style="display: block;"><pre class="php" style="font-family:monospace;"><ol><li class="li1"><div class="de1"><span class="kw2">function</span> myRSSFilter<span class="br0">&#40;</span><span class="re0">$query</span><span class="br0">&#41;</span> <span class="br0">&#123;</span></div></li><li class="li1"><div class="de1">    <span class="kw1">if</span> <span class="br0">&#40;</span><span class="re0">$query</span><span class="sy0">-&gt;</span><span class="me1">is_feed</span><span class="br0">&#41;</span> <span class="br0">&#123;</span></div></li><li class="li1"><div class="de1">        <span class="re0">$query</span><span class="sy0">-&gt;</span><span class="me1">set</span> <span class="br0">&#40;</span><span class="st_h">'category__not_in'</span><span class="sy0">,</span> <span class="st_h">'100'</span> <span class="br0">&#41;</span><span class="sy0">;</span></div></li><li class="li1"><div class="de1">    <span class="br0">&#125;</span></div></li><li class="li1"><div class="de1">    <span class="kw1">return</span> <span class="re0">$query</span><span class="sy0">;</span></div></li><li class="li1"><div class="de1"><span class="br0">&#125;</span></div></li><li class="li1"><div class="de1">&nbsp;</div></li><li class="li1"><div class="de1">add_filter<span class="br0">&#40;</span><span class="st_h">'pre_get_posts'</span><span class="sy0">,</span><span class="st_h">'myRSSFilter'</span><span class="br0">&#41;</span><span class="sy0">;</span></div></li></ol></pre></div></div>
<p>&nbsp;</p>
<div id="_mcePaste" class="mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow: hidden;">
<pre><code>function myFilter($query) {
    if ($query-&gt;is_feed) {
        $query-&gt;set('cat','-99');
    }
return $query;
}<div id="wpshdo_3" class="wp-synhighlighter-outer"><div id="wpshdt_3" class="wp-synhighlighter-expanded"><table border="0" width="100%"><tr><td align="left" width="80%"><a name="#codesyntax_3"></a><a id="wpshat_3" class="wp-synhighlighter-title" href="#codesyntax_3"  onClick="javascript:wpsh_toggleBlock(3)" title="Click to show/hide code block">Source code</a></td><td align="right"><a href="#codesyntax_3" onClick="javascript:wpsh_code(3)" title="Show code only"><img border="0" style="border: 0 none" src="http://www.impworks.co.uk/wp-content/themes/impworks/wp-synhighlight/images/code.png" /></a>&nbsp;<a href="#codesyntax_3" onClick="javascript:wpsh_print(3)" title="Print code"><img border="0" style="border: 0 none" src="http://www.impworks.co.uk/wp-content/themes/impworks/wp-synhighlight/images/printer.png" /></a>&nbsp;</td></tr></table></div><div id="wpshdi_3" class="wp-synhighlighter-inner" style="display: block;"><pre class="php" style="font-family:monospace;"><ol><li class="li1"><div class="de1"><span class="kw2">function</span> myRSSFilter<span class="br0">&#40;</span><span class="re0">$query</span><span class="br0">&#41;</span> <span class="br0">&#123;</span></div></li><li class="li1"><div class="de1">    <span class="kw1">if</span> <span class="br0">&#40;</span><span class="re0">$query</span><span class="sy0">-&gt;</span><span class="me1">is_feed</span><span class="br0">&#41;</span> <span class="br0">&#123;</span></div></li><li class="li1"><div class="de1">        <span class="re0">$query</span><span class="sy0">-&gt;</span><span class="me1">set</span><span class="br0">&#40;</span><span class="st_h">'cat'</span><span class="sy0">,</span><span class="st_h">'-100'</span><span class="br0">&#41;</span><span class="sy0">;</span></div></li><li class="li1"><div class="de1">    <span class="br0">&#125;</span></div></li><li class="li1"><div class="de1">    <span class="kw1">return</span> <span class="re0">$query</span><span class="sy0">;</span></div></li><li class="li1"><div class="de1"><span class="br0">&#125;</span></div></li><li class="li1"><div class="de1">&nbsp;</div></li><li class="li1"><div class="de1">add_filter<span class="br0">&#40;</span><span class="st_h">'pre_get_posts'</span><span class="sy0">,</span><span class="st_h">'myRSSFilter'</span><span class="br0">&#41;</span><span class="sy0">;</span></div></li></ol></pre></div></div><br />
add_filter('pre_get_posts','myFilter');</pre>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.impworks.co.uk/2011/02/removing-a-category-from-wordpress-3-1-rss-feed/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>One Page Can Make a Difference</title>
		<link>http://www.impworks.co.uk/2010/08/one-page-can-make-a-difference/</link>
		<comments>http://www.impworks.co.uk/2010/08/one-page-can-make-a-difference/#comments</comments>
		<pubDate>Mon, 16 Aug 2010 19:03:45 +0000</pubDate>
		<dc:creator>impworks</dc:creator>
				<category><![CDATA[impworks]]></category>
		<category><![CDATA[impworks site news]]></category>
		<category><![CDATA[My Stuff]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[google index]]></category>
		<category><![CDATA[google webmaster tools]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[xml sitemap]]></category>

		<guid isPermaLink="false">http://www.impworks.co.uk/?p=6789</guid>
		<description><![CDATA[The original Knight Rider used to end with the refrain of Wilton Knight&#8217;s last words to Michael&#8230; One man can make a difference Tonight I thought I&#8217;d share how one page (and a tiny bit of PHP code for WordPress) made a difference to my site.  At least its made a difference for Google.  I&#8217;ll [...]]]></description>
			<content:encoded><![CDATA[<p>The original Knight Rider used to end with the refrain of Wilton Knight&#8217;s last words to Michael&#8230;</p>
<blockquote><p>One man can make a difference</p></blockquote>
<p>Tonight I thought I&#8217;d share how one page (and a tiny bit of PHP code for WordPress) made a difference to my site.  At least its made a difference for Google.  I&#8217;ll apologise for the over stretched Knight Rider references now.</p>
<p>I&#8217;d noticed in Google Webmaster tools that around five hundred of my site&#8217;s pages were no longer in the Google index that used to be.  I&#8217;m not sure if this was the result of Google&#8217;s Caffeine launch but the timing of the fall is quite close. I&#8217;d also seen a 5% drop in visits to the site but that could be just a random fluctuation in the numbers.</p>
<p>There are some pages I exclude deliberately using robot meta tags like tag index pages and category pages.  They don&#8217;t have any useful content so I didn&#8217;t want to risk a duplicate content penalty.  Even deducting those from the total number of missing pages and 300+ pages were no longer in the index.</p>
<p>A bit of investigation (the obligatory bit of any Knight Rider episode where Michael would wander round a warehouse filled with cardboard boxes with a torch) and deduction hinted that the missing pages were old blog posts.  The missing ones were buried deep in the blog.  They are in the XML sitemap but Google&#8217;s spider just wasn&#8217;t getting deep enough through links to think they should be in the index. I&#8217;d trusted the sitemap to keep real content in the index but it doesn&#8221;t seem to be doing that anymore.  The XML sitemap had become C.A.R.R. to my site&#8217;s K.I.T.T!</p>
<p>I can&#8217;t just drive into the back of the FLAG mobile unit and get Bonnie to fix the problem.  I had to come up with a solution for myself.  So I added a rather uninteresting <a href="/blog/too-many-ideas-contents/">Too Many Ideas Contents page</a> that lists every page on my blog by title.  It was pretty easy to set up in WordPress with a little bit of code in a plug-in&#8230;</p>
<div id="wpshdo_4" class="wp-synhighlighter-outer"><div id="wpshdt_4" class="wp-synhighlighter-expanded"><table border="0" width="100%"><tr><td align="left" width="80%"><a name="#codesyntax_4"></a><a id="wpshat_4" class="wp-synhighlighter-title" href="#codesyntax_4"  onClick="javascript:wpsh_toggleBlock(4)" title="Click to show/hide code block">Source code</a></td><td align="right"><a href="#codesyntax_4" onClick="javascript:wpsh_code(4)" title="Show code only"><img border="0" style="border: 0 none" src="http://www.impworks.co.uk/wp-content/themes/impworks/wp-synhighlight/images/code.png" /></a>&nbsp;<a href="#codesyntax_4" onClick="javascript:wpsh_print(4)" title="Print code"><img border="0" style="border: 0 none" src="http://www.impworks.co.uk/wp-content/themes/impworks/wp-synhighlight/images/printer.png" /></a>&nbsp;</td></tr></table></div><div id="wpshdi_4" class="wp-synhighlighter-inner" style="display: block;"><pre class="php" style="font-family:monospace;"><ol><li class="li1"><div class="de1"><span class="kw2">function</span> show_all_posts<span class="br0">&#40;</span><span class="re0">$atts</span><span class="br0">&#41;</span> <span class="br0">&#123;</span></div></li><li class="li1"><div class="de1">	<span class="re0">$posts</span> <span class="sy0">=</span> get_posts<span class="br0">&#40;</span><span class="st_h">'numberposts=-1&amp;orderby=title&amp;order=ASC'</span><span class="br0">&#41;</span><span class="sy0">;</span></div></li><li class="li1"><div class="de1">&nbsp;</div></li><li class="li1"><div class="de1">	<span class="kw1">foreach</span><span class="br0">&#40;</span><span class="re0">$posts</span> <span class="kw1">as</span> <span class="re0">$post</span><span class="br0">&#41;</span></div></li><li class="li1"><div class="de1">	<span class="br0">&#123;</span></div></li><li class="li1"><div class="de1">		<span class="re0">$text</span><span class="sy0">.=</span><span class="st_h">'&lt;li&gt;&lt;a href=&quot;'</span><span class="sy0">.</span><span class="re0">$post</span><span class="sy0">-&gt;</span><span class="me1">post_name</span><span class="sy0">.</span><span class="st_h">'&quot;&gt;'</span><span class="sy0">.</span><span class="re0">$post</span><span class="sy0">-&gt;</span><span class="me1">post_title</span><span class="sy0">.</span><span class="st_h">'&lt;/a&gt;&lt;/li&gt;'</span><span class="sy0">;</span></div></li><li class="li1"><div class="de1">	<span class="br0">&#125;</span></div></li><li class="li1"><div class="de1">&nbsp;</div></li><li class="li1"><div class="de1">	<span class="kw1">return</span> <span class="st_h">'&lt;ul&gt;'</span><span class="sy0">.</span><span class="re0">$text</span><span class="sy0">.</span><span class="st_h">'&lt;/ul&gt;'</span><span class="sy0">;</span></div></li><li class="li1"><div class="de1"><span class="br0">&#125;</span></div></li><li class="li1"><div class="de1">&nbsp;</div></li><li class="li1"><div class="de1">add_shortcode<span class="br0">&#40;</span><span class="st_h">'show_all_posts'</span><span class="sy0">,</span> <span class="st_h">'show_all_posts'</span><span class="br0">&#41;</span><span class="sy0">;</span></div></li></ol></pre></div></div>
<p>I dropped the <code>[show_all_posts]</code> shortcode into a page and magically the list appeared.</p>
<p>Then all I had left to do was wait and see if it worked&#8230;</p>
<p>The impact was like Michael hitting Turbo Boost &#8211; the day after I published the page Google indexed 500+ pages on my site rather than the 200 it was doing in June and July.  Its done that every day for a week now and the number of pages has actually risen slightly to a high of 617 pages.</p>
<p>The 300 missing pages are now back in Google&#8217;s index so I think I can safely say&#8230;</p>
<blockquote><p>One Page Can Make a Difference</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.impworks.co.uk/2010/08/one-page-can-make-a-difference/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Too Many Things</title>
		<link>http://www.impworks.co.uk/2009/05/too-many-things/</link>
		<comments>http://www.impworks.co.uk/2009/05/too-many-things/#comments</comments>
		<pubDate>Tue, 26 May 2009 20:58:00 +0000</pubDate>
		<dc:creator>impworks</dc:creator>
				<category><![CDATA[Life Stuff]]></category>
		<category><![CDATA[3d]]></category>
		<category><![CDATA[Kim Knox]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[Review]]></category>
		<category><![CDATA[Script]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Vue]]></category>
		<category><![CDATA[Writing]]></category>

		<guid isPermaLink="false">http://www.impworks.org/2009/05/too-many-things/</guid>
		<description><![CDATA[I think I need a few extra hours in the day &#8211; if I did each of the following would probably be its own post&#8230; Having finished a fascinating book on illegal gambling in the UK in the &#8217;50s I started reading the first volume of Michael Palins&#8217; diaries on Saturday and there a great [...]]]></description>
			<content:encoded><![CDATA[<p>
I think I need a few extra hours in the day &#8211; if I did each of the following would probably be its own post&#8230;
</p>
<p>
Having finished a fascinating book on illegal gambling in the UK in the &#8217;50s I started reading the first volume of Michael Palins&#8217; diaries on Saturday and there a great read&#8230;
</p>
<p>
One unfortunate combination of words set an idea for a humorous, slightly strange Murder Mystery short story idea off and I wrote the first four pages yesterday&#8230;
</p>
<p>
That stopped me finishing the longer game writing project thats so close to having a complete first draft its bugging me&#8230;
</p>
<p>
So I was going to tackle it in the evening but I got an e-mail with an offer from Cornucopia3D for <a href="http://www.cornucopia3d.com/purchase.php?item_id=7340&#038;affid=36822">GeoControl2</a> which I&#8217;ve been tempted by for a while.  So I ended up playing with that instead&#8230;
</p>
<p>
Plus Kim&#8217;s got a new novella out, <a href="http://www.jasminejade.com/ps-7259-50-flesh-and-shadows.aspx">Flesh and Shadows</a>, with a very cheesy cover but I&#8217;ll probably give it a read because despite the cover its supposed to be Science Fiction not Mills and Boon&#8230;
</p>
<p>
Oh and having decided not to take out a subscription to the new version of Pyramid magazine because now its themed of the first six issues I&#8217;d only found three I was interested in.  So inevitably the latest issue is one I wanted to pick up&#8230;
</p>
<p>
Then there&#8217;s the vue video tutorial from <a href="http://www.quadspinner.com/">Quadspinner</a> I want to write a review of for my <a href="http://vuenews.blogspot.com/">Vue News Blog</a>&#8230;
</p>
<p>
I&#8217;m just glad that The Wire (which is good but not as good as some of its exponents would like us to believe) is on three nights a week so I know when its finished its time to get some sleep or I don&#8217;t know how I&#8217;d know to end the day.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.impworks.co.uk/2009/05/too-many-things/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Two Ragnarok Articles almost Ready to Go</title>
		<link>http://www.impworks.co.uk/2009/03/two-ragnarok-articles-almost-ready-to-go/</link>
		<comments>http://www.impworks.co.uk/2009/03/two-ragnarok-articles-almost-ready-to-go/#comments</comments>
		<pubDate>Tue, 10 Mar 2009 20:00:00 +0000</pubDate>
		<dc:creator>impworks</dc:creator>
				<category><![CDATA[Wargaming]]></category>
		<category><![CDATA[Writing]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.impworks.org/2009/03/two-ragnarok-articles-almost-ready-to-go/</guid>
		<description><![CDATA[I&#8217;ve finished an article for Ragnarok, The PanzerfaÃ¼ste Song Book, porting the shanty rules from Strange Grogge to PanzerfaÃ¼ste and bringing the songs up to date. Needs a bit of checking before I send it off but hopefully its ok. I&#8217;ve also just finished a short article for Ragnarok for the game Slag!. Three new [...]]]></description>
			<content:encoded><![CDATA[<p>
I&#8217;ve finished an article for Ragnarok, The PanzerfaÃ¼ste Song Book, porting the shanty rules from Strange Grogge to PanzerfaÃ¼ste and bringing the songs up to date.  Needs a bit of checking before I send it off but hopefully its ok.
</p>
<p>
I&#8217;ve also just finished a short article for Ragnarok for the game <a href="http://www.rpgnow.com/product_info.php?products_id=1116&#038;affiliate_id=70054 ">Slag!</a>.  Three new systems and four ship designs using them.  Need to make graphics for each of the designs but otherwise done.  Frustratingly it would be done but when I finished the drawings last night the file not only failed to save but destroyed the earlier save in the process.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.impworks.co.uk/2009/03/two-ragnarok-articles-almost-ready-to-go/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Ragnarok 53</title>
		<link>http://www.impworks.co.uk/2009/02/ragnarok-53/</link>
		<comments>http://www.impworks.co.uk/2009/02/ragnarok-53/#comments</comments>
		<pubDate>Tue, 24 Feb 2009 22:32:00 +0000</pubDate>
		<dc:creator>impworks</dc:creator>
				<category><![CDATA[Writing]]></category>
		<category><![CDATA[Games]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[SFSFW]]></category>
		<category><![CDATA[Wargames]]></category>
		<category><![CDATA[Wargaming]]></category>

		<guid isPermaLink="false">http://www.impworks.org/2009/02/ragnarok-53/</guid>
		<description><![CDATA[Issue 53 of Ragnarok, the Society of Fantasy and Science Fiction Wargamings magazine, is out now and includes an article by me &#8211; When Ants Attack &#8211; for use with the game Tusk. This issue, and the last three back issues are also now available from Wargames Vault as PDFs.]]></description>
			<content:encoded><![CDATA[<p><img style="display:block; margin:0px auto 10px; text-align:center;width: 283px; height: 400px;" src="/wp-content/uploads/blogger/_VRY9SaGRtG4/SY70UBaDqmI/AAAAAAAAA90/p0Z8VwHsO34/s400/rag53lrg.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5300442436273941090" /></p>
<p>
Issue 53 of Ragnarok, the <a href="http://www.sfsfw.org/">Society of Fantasy and Science Fiction Wargamings</a> magazine, is out now and includes an article by me &#8211; When Ants Attack &#8211; for use with the game Tusk.
</p>
<p>
This issue, and the last three back issues are also now available from <a href="http://www.wargamevault.com/product_info.php?products_id=60067&#038;affiliate_id=70054 ">Wargames Vault</a> as PDFs.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.impworks.co.uk/2009/02/ragnarok-53/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Just Messin&#039; Around with Vue 7</title>
		<link>http://www.impworks.co.uk/2008/11/just-messin-around-with-vue-7/</link>
		<comments>http://www.impworks.co.uk/2008/11/just-messin-around-with-vue-7/#comments</comments>
		<pubDate>Tue, 11 Nov 2008 23:30:00 +0000</pubDate>
		<dc:creator>impworks</dc:creator>
				<category><![CDATA[Render of the Week]]></category>
		<category><![CDATA[Vue]]></category>
		<category><![CDATA[3d]]></category>
		<category><![CDATA[impworks]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[Picture]]></category>
		<category><![CDATA[ravenloft]]></category>

		<guid isPermaLink="false">http://www.impworks.org/2008/11/just-messin-around-with-vue-7/</guid>
		<description><![CDATA[I&#8217;ve just spent the evening messing around with Vue 7. Nothing really to show from tonight but I made the yet to be titled picture above last night. I&#8217;ve resized it for the web from a larger, print quality render and cropped it a little too. The ship is from Cornucopia 3D and the Water [...]]]></description>
			<content:encoded><![CDATA[<p><img style="display:block; margin:0px auto 10px; text-align:center;width: 400px; height: 332px;" src="http://www.impworks.co.uk/wp-content/uploads/blogger/_VRY9SaGRtG4/SRoeg5KHsdI/AAAAAAAAAsA/33LlvPRa3hw/s400/2-withmonsterandship.jpg" border="0" alt="" /></p>
<p>
I&#8217;ve just spent the evening messing around with <a href="http://www.e-onsoftware.com/">Vue 7</a>.  Nothing really to show from tonight but I made the yet to be titled picture above last night.  I&#8217;ve resized it for the web from a larger, print quality render and cropped it a little too.  The <a href="http://www.cornucopia3d.com/purchase.php?item_id=622">ship is from Cornucopia 3D</a> and the <a target="_BLANK" href="http://www.daz3d.com/i.x/3d-models/water-dragon/-/?item=5729&#038;cat=26&#038;refid=705697818">Water Dragon</a> from Daz.  Vaguely inspired by my long since finished nautical Ravenloft campaign.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.impworks.co.uk/2008/11/just-messin-around-with-vue-7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Did the Cliche Move for You?</title>
		<link>http://www.impworks.co.uk/2008/02/did-the-cliche-move-for-you/</link>
		<comments>http://www.impworks.co.uk/2008/02/did-the-cliche-move-for-you/#comments</comments>
		<pubDate>Wed, 27 Feb 2008 01:15:00 +0000</pubDate>
		<dc:creator>impworks</dc:creator>
				<category><![CDATA[Life Stuff]]></category>
		<category><![CDATA[earthquake]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.impworks.org/2008/02/did-the-cliche-move-for-you/</guid>
		<description><![CDATA[I wouldn&#8217;t be up this late but I&#8217;ve not been well and I can&#8217;t sleep. I was just doing the final rounds of checking on the flat when the whole building shook. At first I thought it was a Fire Engine going past outside at speed but from the way my inner ear was acting [...]]]></description>
			<content:encoded><![CDATA[<p>
I wouldn&#8217;t be up this late but I&#8217;ve not been well and I can&#8217;t sleep.  I was just doing the final rounds of checking on the flat when the whole building shook.  At first I thought it was a Fire Engine going past outside at speed but from the way my inner ear was acting like I&#8217;d just gone through a railway tunnel I realised that wasn&#8217;t right.  A quick google later and I found a <a href="http://earthquake.usgs.gov/earthquakes/dyfi/archives.php">USGS web site</a> with some information about an earthquake in Lincolnshire.  I&#8217;m going to try and go to bed again now while the Earths not moving&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.impworks.co.uk/2008/02/did-the-cliche-move-for-you/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Tonight I have mostly been playing with&#8230;</title>
		<link>http://www.impworks.co.uk/2007/12/tonight-i-have-mostly-been-playing-with/</link>
		<comments>http://www.impworks.co.uk/2007/12/tonight-i-have-mostly-been-playing-with/#comments</comments>
		<pubDate>Thu, 13 Dec 2007 22:51:00 +0000</pubDate>
		<dc:creator>impworks</dc:creator>
				<category><![CDATA[impworks]]></category>
		<category><![CDATA[WWW]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.impworks.org/2007/12/tonight-i-have-mostly-been-playing-with/</guid>
		<description><![CDATA[Tonight I have mostly been playing with the php5, the Zend Framework and the Gdata API. Nothing to show yet because I&#8217;m getting to grips with it although the impworks web site is now entirely php5 driven. Although thats not really very impressive as all I did was change a htaccess file so the php [...]]]></description>
			<content:encoded><![CDATA[<p>
Tonight I have mostly been playing with the <a href="http://www.php.net/">php5</a>, the <a href="http://framework.zend.com/">Zend Framework</a> and the <a href="http://code.google.com/apis/gdata/">Gdata API</a>.  Nothing to show yet because I&#8217;m getting to grips with it although the <a href="http://www.impworks.co.uk/">impworks web site</a> is now entirely php5 driven.  Although thats not really very impressive as all I did was change a htaccess file so the php extension runs php5 instead of php4.  Happily it all appears to be working without any hitches so far.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.impworks.co.uk/2007/12/tonight-i-have-mostly-been-playing-with/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wordless Wednesday</title>
		<link>http://www.impworks.co.uk/2007/11/wordless-wednesday-5/</link>
		<comments>http://www.impworks.co.uk/2007/11/wordless-wednesday-5/#comments</comments>
		<pubDate>Wed, 21 Nov 2007 00:02:00 +0000</pubDate>
		<dc:creator>impworks</dc:creator>
				<category><![CDATA[Liverpool]]></category>
		<category><![CDATA[impworks]]></category>
		<category><![CDATA[meme]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[Script]]></category>
		<category><![CDATA[Wordless Wednesday]]></category>

		<guid isPermaLink="false">http://www.impworks.org/2007/11/wordless-wednesday-5/</guid>
		<description><![CDATA[On the side of St. George&#8217;s Hall, Liverpool]]></description>
			<content:encoded><![CDATA[<p><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://www.impworks.co.uk/wp-content/uploads/blogger/_VRY9SaGRtG4/R0L_WHvIFzI/AAAAAAAAAXA/xqshYFjX9l0/s1600-h/DSCF0005-web.jpg"><img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://www.impworks.co.uk/wp-content/uploads/blogger/_VRY9SaGRtG4/R0L_WHvIFzI/AAAAAAAAAXA/xqshYFjX9l0/s400/DSCF0005-web.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5134947280654702386" /></a></p>
<p>On the side of <a href="http://www.visitliverpool.com/site/product-p8033">St. George&#8217;s Hall</a>, Liverpool</p>
<p><script type="text/javascript" src="http://www.blenza.com/linkies/autolink.php?owner=impworks&#038;postid=21November2007&amp;meme=ww"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.impworks.co.uk/2007/11/wordless-wednesday-5/feed/</wfw:commentRss>
		<slash:comments>25</slash:comments>
		</item>
		<item>
		<title>Thursday Thirteen #35</title>
		<link>http://www.impworks.co.uk/2007/11/thursday-thirteen-35/</link>
		<comments>http://www.impworks.co.uk/2007/11/thursday-thirteen-35/#comments</comments>
		<pubDate>Thu, 15 Nov 2007 00:01:00 +0000</pubDate>
		<dc:creator>impworks</dc:creator>
				<category><![CDATA[Meme]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[Mars]]></category>
		<category><![CDATA[meme]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[Thursday Thirteen]]></category>
		<category><![CDATA[TV]]></category>
		<category><![CDATA[WAI]]></category>

		<guid isPermaLink="false">http://www.impworks.org/2007/11/thursday-thirteen-35/</guid>
		<description><![CDATA[Thirteen songs Mark Caldwell found when sorting out old tapes recorded from the radio in my youth Boy Meets Girl &#8211; Waiting for a Star to Fall Bob Marley &#8211; Iron Lion Zion Beverly Craven &#8211; Promise me Tasmin Archer &#8211; Sleeping Satellite Jennifer Warnes &#8211; First We Take Manhattan Level 42 &#8211; Running in [...]]]></description>
			<content:encoded><![CDATA[<p><center><img src="http://intricateart.com/wp-content/uploads/thursdaythirteen300.jpg"/></center><br />
<center>Thirteen songs <strong>Mark Caldwell</strong> found when sorting out old tapes recorded from the radio in my youth</center></p>
<ol>
<li>
Boy Meets Girl &#8211; Waiting for a Star to Fall
</li>
<li>
Bob Marley &#8211;  Iron Lion Zion
</li>
<li>
Beverly Craven &#8211; Promise me
</li>
<li>
Tasmin Archer &#8211; <a href="http://www.youtube.com/watch?v=UuhDDx49TTw">Sleeping Satellite</a>
</li>
<li>
Jennifer Warnes &#8211; First We Take Manhattan
</li>
<li>
Level 42 &#8211; Running in the Family
</li>
<li>
Pearl Jam / Neil Young: <a href="http://www.youtube.com/watch?v=PTTsyk-pyd8">Rockin in the free world</a>
</li>
<li>
Michael McDonald &#8211; Sweet Freedom
</li>
<li>
Mark  Cohn â€“ Walking in Memphis
</li>
<li>
tanita tikaram &#8211; Good Tradition
</li>
<li>
Starship-Nothing´s Gonna Stop Us Now
</li>
<li>
John Farnham &#8211; You&#8217;re The Voice
</li>
<li>
Midnight Oil &#8211; Beds are Burning
</li>
</ol>
<p><strong>Links to other Thursday Thirteens!</strong></p>
<table class="blenza-table">
<tbody>
<tr>
<td class="blenza-td" align="left" valign="top" width="33%">1. working at home mom<br />2. <a href="http://popculturedish.blogspot.com/" target="_blank">Malcolm</a><br />3. <a href="http://onegalsmusings.blogspot.com/" target="_blank">The Gal Herself</a><br />4. <a href="http://www.chelleyoung.com/index.php/archive/thursday-thirteen-84-more-reasons-to-give-thanks/" target="_blank">Chelle Y.</a><br />5. <a href="http://comedyplus.blogspot.com" target="_blank">Comedy Plus</a><br />6. <a href="http://tinkerbell-nl.blogspot.com" target="_blank">Tink</a><br />7. greatfullivin<br />8. Yuriko<br />9. <a href="http://fondofsnape.com/" target="_blank">Janet</a><br />10. <a href="http://agentlemansdomain.typepad.com" target="_blank">nicholas</a><br />11. <a href="http://bendingthetwigs.blogspot.com/2007/11/tt-13-favorite-holiday-meal-dishes.html" target="_blank">Crimson Wife</a><br />12. <a href="http://westofmars.blogspot.com" target="_blank">Susan Helene Gottfried</a><br />13. <a href="http://whatworksforus.blogspot.com/" target="_blank">WorksForMom</a><br />14. SandyCarlson<br />15. <a href="http://ckgoplaces.blogspot.com/" target="_blank">CK Go Places</a><br />16. <a href="http://singleparentsunite.blogspot.com/" target="_blank">Lori</a></td>
<td class="blenza-td" align="left" valign="top" width="33%">17. <a href="http://rosedesrochers.todays-woman.net" target="_blank">Rose</a><br />18. <a href="http://rnning2wn2.blogspot.com" target="_blank">rhonda</a><br />19. <a href="http://journeywoman.typepad.com" target="_blank">Journeywoman</a><br />20. <a href="http://www.susiej.com/index.php/13-alternatives-to-toxic-toys/" target="_blank">susiej</a><br />21. <a href="http://thepinkflamingo.blogharbor.com/blog" target="_blank">The Pink Flamingo</a><br />22. SJR<br />23. <a href="http://wakelarunen.blogspot.com" target="_blank">Wakela Runen</a><br />24. <a href="http://serinahope.blogspot.com" target="_blank">Serina</a><br />25. <a href="http://www.redsoxmom.com/" target="_blank">Natalie</a><br />26. <a href="http://www.sandierpastures.com/thursday-thirteen/thursday-thirteen-18.html" target="_blank">Grace</a><br />27. <a href="http://its-a-raggedy-life.blogspot.com/" target="_blank">Raggedy</a><br />28. <a href="http://xakara.livejournal.com/" target="_blank">Xakara</a><br />29. <a href="http://emmyrose1028.blogspot.com/2007/11/thursday-thirteen-19.html" target="_blank">Emmyrose</a><br />30. Holly<br />31. <a href="http://www.nesthome.blogspot.com" target="_blank">Sharon</a><br />32. <a href="http://secretagentmama.com/" target="_blank">secret agent mama</a></td>
<td class="blenza-td" align="left" valign="top" width="33%">33. <a href="http://www.annaguirre.com/" target="_blank">Ann Aguirre</a><br />34. MamaLee<br />35. <a href="http://tillygreene.blogspot.com" target="_blank">Tilly Greene</a><br />36. <a href="http://marnini.wordpress.com/" target="_blank">Maribeth</a><br />37. <a href="http://lifeinthelostworld.blogspot.com/2007/11/my-favorite-13-mr.html" target="_blank">jayedee</a><br />38. <a href="http://eternal-flux.com" target="_blank">Leigh</a><br />39. <a href="http://xmomk03.blogspot.com" target="_blank">Samantha_K</a><br />40. <a href="http://sassyfrazz.blogspot.com/2007/11/thirteen-things-i-am-thankful-for.html" target="_blank">Sarah</a><br />41. <a href="http://cindyswanslife.blogspot.com" target="_blank">Cindy Swanson</a><br />42. <a href="http://www.darkdwarfblog.blogspot.com" target="_blank">darkdwarf</a><br />43. ellen b<br />44. <a href="http://www.nazarenefamilyservices.blogspot.com" target="_blank">Diana</a><br />45. <a href="http://katherine-claire.blogspot.com/" target="_blank">katherine.</a><br />46. <a href="http://bucknakedpolitics.typepad.com/buck_naked_politics/2007/11/post.html" target="_blank">damozel</a><br />47. <a href="http://www.stellasblog.com/" target="_blank">stella</a>
</td>
</tr>
</table>
<p><center>Get the Thursday Thirteen code here!</p>
<p>The purpose of the meme is to get to know everyone who participates a little bit better every Thursday. Visiting fellow Thirteeners is encouraged! If you participate, leave the link to your Thirteen in others comments. It&#8217;s easy, and fun! Be sure to update your Thirteen with links that are left for you, as well! I will link to everyone who participates and leaves a link to their 13 things. Trackbacks, pings, comment links accepted!<br />
<a href="http://technorati.com/tag/thursday-thirteen" rel="tag">View More Thursday Thirteen Participants</a><br /></center></p>
]]></content:encoded>
			<wfw:commentRss>http://www.impworks.co.uk/2007/11/thursday-thirteen-35/feed/</wfw:commentRss>
		<slash:comments>38</slash:comments>
		</item>
	</channel>
</rss>

