<?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>john.geek.nz - 38911 Basic Bytes Free</title>
	<atom:link href="http://www.john.geek.nz/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.john.geek.nz</link>
	<description>SQL Tips, Apple Tips and Randomness</description>
	<lastBuildDate>Thu, 10 Jun 2010 10:16:40 +0000</lastBuildDate>
	
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Combining two images with ImageMagick</title>
		<link>http://www.john.geek.nz/2010/06/combining-two-images-with-imagemagick/</link>
		<comments>http://www.john.geek.nz/2010/06/combining-two-images-with-imagemagick/#comments</comments>
		<pubDate>Wed, 09 Jun 2010 23:39:54 +0000</pubDate>
		<dc:creator>John Burns</dc:creator>
				<category><![CDATA[General Randomness]]></category>
		<category><![CDATA[PC Tips]]></category>

		<guid isPermaLink="false">http://www.john.geek.nz/?p=1592</guid>
		<description><![CDATA[To combine two images of the same size with ImageMagick, you simply do the following:
The following will overlay overlay.png on top of output.png

mogrify -draw &#34;image SrcOver 0,0 0,0 'overlay.png'&#34; output.png

While this one will overlay overlay.png on top of input.png and save it as output.png

convert input.png -draw &#34;image SrcOver 0,0 0,0 'overlay.png'&#34; output.png

You can download imagemagick [...]]]></description>
			<content:encoded><![CDATA[<p>To combine two images of the same size with ImageMagick, you simply do the following:</p>
<p>The following will overlay overlay.png on top of output.png</p>

<div class="wp_syntax"><div class="code"><pre class="dos" style="font-family:monospace;">mogrify -draw &quot;image SrcOver <span style="color: #cc66cc;">0</span>,<span style="color: #cc66cc;">0</span> <span style="color: #cc66cc;">0</span>,<span style="color: #cc66cc;">0</span> 'overlay.png'&quot; output.png</pre></div></div>

<p>While this one will overlay overlay.png on top of input.png and save it as output.png</p>

<div class="wp_syntax"><div class="code"><pre class="dos" style="font-family:monospace;">convert input.png -draw &quot;image SrcOver <span style="color: #cc66cc;">0</span>,<span style="color: #cc66cc;">0</span> <span style="color: #cc66cc;">0</span>,<span style="color: #cc66cc;">0</span> 'overlay.png'&quot; output.png</pre></div></div>

<p>You can download imagemagick from <a href="http://www.imagemagick.org/" target="_blank">http://www.imagemagick.org/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.john.geek.nz/2010/06/combining-two-images-with-imagemagick/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Selective colour replacement with imagemagick</title>
		<link>http://www.john.geek.nz/2010/06/selective-colour-replacement-with-imagemagick/</link>
		<comments>http://www.john.geek.nz/2010/06/selective-colour-replacement-with-imagemagick/#comments</comments>
		<pubDate>Mon, 07 Jun 2010 23:31:07 +0000</pubDate>
		<dc:creator>John Burns</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.john.geek.nz/?p=1590</guid>
		<description><![CDATA[Selective colour replacement is easy from the command line with imagemagick.
You can download imagemagick from http://www.imagemagick.org/
The following will replace all red (#FF0000) pixels with blue (#0000FF)

convert sourceimage.png -fill &#34;#FF0000&#34; -opaque &#34;#0000FF&#34; destimage.png

]]></description>
			<content:encoded><![CDATA[<p>Selective colour replacement is easy from the command line with imagemagick.</p>
<p>You can download imagemagick from <a href="http://www.imagemagick.org/" target="_blank">http://www.imagemagick.org/</a></p>
<p>The following will replace all red (#FF0000) pixels with blue (#0000FF)</p>

<div class="wp_syntax"><div class="code"><pre class="dos" style="font-family:monospace;">convert sourceimage.png -fill &quot;#FF0000&quot; -opaque &quot;#0000FF&quot; destimage.png</pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://www.john.geek.nz/2010/06/selective-colour-replacement-with-imagemagick/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Deleting folders recursively</title>
		<link>http://www.john.geek.nz/2010/06/deleting-folders-recursively/</link>
		<comments>http://www.john.geek.nz/2010/06/deleting-folders-recursively/#comments</comments>
		<pubDate>Wed, 02 Jun 2010 22:26:51 +0000</pubDate>
		<dc:creator>John Burns</dc:creator>
				<category><![CDATA[PC Tips]]></category>

		<guid isPermaLink="false">http://www.john.geek.nz/?p=1586</guid>
		<description><![CDATA[I needed recursively delete folders named .svn within a directory structure.
The following will allow you dto do this from a command prompt:

FOR /F &#34;tokens=*&#34; %G IN &#40;'DIR /B /AD /S .svn'&#41; DO RMDIR /S /Q %G

Remember, if you&#8217;re doing it from a batch file, you&#8217;ll need to double up the percent signs, thus:

FOR /F &#34;tokens=*&#34; [...]]]></description>
			<content:encoded><![CDATA[<p>I needed recursively delete folders named .svn within a directory structure.</p>
<p>The following will allow you dto do this from a command prompt:</p>

<div class="wp_syntax"><div class="code"><pre class="dos" style="font-family:monospace;"><span style="color: #00b100; font-weight: bold;">FOR</span> /F &quot;tokens=*&quot; <span style="color: #33cc33;">%</span><span style="color: #448888;">G</span> <span style="color: #00b100; font-weight: bold;">IN</span> <span style="color: #66cc66;">&#40;</span>'<span style="color: #b1b100; font-weight: bold;">DIR</span> /B /AD /S .svn'<span style="color: #66cc66;">&#41;</span> <span style="color: #00b100; font-weight: bold;">DO</span> <span style="color: #b1b100; font-weight: bold;">RMDIR</span> /S /Q <span style="color: #33cc33;">%</span><span style="color: #448888;">G</span></pre></div></div>

<p>Remember, if you&#8217;re doing it from a batch file, you&#8217;ll need to double up the percent signs, thus:</p>

<div class="wp_syntax"><div class="code"><pre class="dos" style="font-family:monospace;"><span style="color: #00b100; font-weight: bold;">FOR</span> /F &quot;tokens=*&quot; <span style="color: #33cc33;">%%</span><span style="color: #448888;">G</span> <span style="color: #00b100; font-weight: bold;">IN</span> <span style="color: #66cc66;">&#40;</span>'<span style="color: #b1b100; font-weight: bold;">DIR</span> /B /AD /S .svn'<span style="color: #66cc66;">&#41;</span> <span style="color: #00b100; font-weight: bold;">DO</span> <span style="color: #b1b100; font-weight: bold;">RMDIR</span> /S /Q <span style="color: #33cc33;">%%</span><span style="color: #448888;">G</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://www.john.geek.nz/2010/06/deleting-folders-recursively/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IIS 6- Setting up a write only FTP directory</title>
		<link>http://www.john.geek.nz/2010/04/iis-6-setting-up-a-write-only-ftp-directory/</link>
		<comments>http://www.john.geek.nz/2010/04/iis-6-setting-up-a-write-only-ftp-directory/#comments</comments>
		<pubDate>Mon, 26 Apr 2010 22:21:22 +0000</pubDate>
		<dc:creator>John Burns</dc:creator>
				<category><![CDATA[PC Tips]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://www.john.geek.nz/?p=1580</guid>
		<description><![CDATA[So, you want to set up a write only ftp directory on IIS?  One where you can upload files, but not list them?
Easy&#8230;

First, create a new user which you will log in as.
Make sure this user is explicitly denied access to all files and folders on the system.
Now, add the following &#8217;special&#8217; permissions to [...]]]></description>
			<content:encoded><![CDATA[<p>So, you want to set up a write only ftp directory on IIS?  One where you can upload files, but not list them?</p>
<p>Easy&#8230;<br />
<span id="more-1580"></span><br />
First, create a new user which you will log in as.<br />
Make sure this user is explicitly denied access to all files and folders on the system.<br />
Now, add the following &#8217;special&#8217; permissions to the directory you wish to make write only..</p>
<p><a href="http://www.john.geek.nz/wp-content/uploads/2010/04/writeonly_ftp.png"><img src="http://www.john.geek.nz/wp-content/uploads/2010/04/writeonly_ftp-221x300.png" alt="" title="writeonly_ftp" width="221" height="300" class="aligncenter size-medium wp-image-1584" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.john.geek.nz/2010/04/iis-6-setting-up-a-write-only-ftp-directory/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Super Cache plugin &#8211; Performance Benchmarking</title>
		<link>http://www.john.geek.nz/2010/04/wordpress-super-cache-plugin-performance-benchmarking/</link>
		<comments>http://www.john.geek.nz/2010/04/wordpress-super-cache-plugin-performance-benchmarking/#comments</comments>
		<pubDate>Sun, 25 Apr 2010 13:24:05 +0000</pubDate>
		<dc:creator>John Burns</dc:creator>
				<category><![CDATA[General Randomness]]></category>
		<category><![CDATA[Linux Tips]]></category>
		<category><![CDATA[PC Tips]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://www.john.geek.nz/?p=1562</guid>
		<description><![CDATA[I&#8217;ve been doing some performance tests on WordPress to see how much of a difference the WordPress Super Cache plugin made.
It turns out that the plugin makes a huge difference.
I kept increasing the rate of requests until the Disk IO rate was the same for both tests.  With the cache turned off, CPU usage [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been doing some performance tests on WordPress to see how much of a difference the <a href="http://wordpress.org/extend/plugins/wp-super-cache/" target="_blank">WordPress Super Cache plugin</a> made.</p>
<p>It turns out that the plugin makes a huge difference.<span id="more-1562"></span><br />
<div id="attachment_1564" class="wp-caption aligncenter" style="width: 224px"><a href="http://www.john.geek.nz/wp-content/uploads/2010/04/cache_graphs1.png"><img src="http://www.john.geek.nz/wp-content/uploads/2010/04/cache_graphs1-214x300.png" alt="" title="cache_graphs" width="214" height="300" class="size-medium wp-image-1564" /></a><p class="wp-caption-text">Resource usage comparison over two (highlighted) tests.  Cache is OFF on the left, ON on the right.</p></div></p>
<p>I kept increasing the rate of requests until the Disk IO rate was the same for both tests.  With the cache turned off, CPU usage went through the roof to 400% of my allocation while still only serving up pages at five megabits per second. With the cache enabled, CPU usage settled at 20% and the data rate peaked at over 45 Megabit/sec.</p>
<p>I&#8217;m very impressed with the results&#8230; It seems that with a moderate spec server, you&#8217;ll hit your disk and/or network limit before you run out of CPU or RAM.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.john.geek.nz/2010/04/wordpress-super-cache-plugin-performance-benchmarking/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wordpress not sending emails on ubuntu &#8211; nrcpts=0</title>
		<link>http://www.john.geek.nz/2010/04/wordpress-not-sending-emails-on-ubuntu-nrcpts0/</link>
		<comments>http://www.john.geek.nz/2010/04/wordpress-not-sending-emails-on-ubuntu-nrcpts0/#comments</comments>
		<pubDate>Thu, 22 Apr 2010 23:55:09 +0000</pubDate>
		<dc:creator>John Burns</dc:creator>
				<category><![CDATA[Linux Tips]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://www.john.geek.nz/?p=1521</guid>
		<description><![CDATA[So, you&#8217;re using sendmail to try and send emails from php/wordpress and it&#8217;s not working?
Are your mail logs (/var/log/mail.log) showing nrcpts=0 ??
Make sure the sendmail_path in your php.ini file (/etc/php5/apache2/php.ini) is set up correctly.
It should probably be&#8230;

1
sendmail_path = /usr/sbin/sendmail -t -i

]]></description>
			<content:encoded><![CDATA[<p>So, you&#8217;re using sendmail to try and send emails from php/wordpress and it&#8217;s not working?</p>
<p>Are your mail logs (/var/log/mail.log) showing nrcpts=0 ??</p>
<p>Make sure the sendmail_path in your php.ini file (/etc/php5/apache2/php.ini) is set up correctly.</p>
<p>It should probably be&#8230;</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="apache" style="font-family:monospace;">sendmail_path = /usr/sbin/sendmail -t -i</pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://www.john.geek.nz/2010/04/wordpress-not-sending-emails-on-ubuntu-nrcpts0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wordpress, Permalinks and 404 errors</title>
		<link>http://www.john.geek.nz/2010/04/wordpress-permalinks-and-404-errors/</link>
		<comments>http://www.john.geek.nz/2010/04/wordpress-permalinks-and-404-errors/#comments</comments>
		<pubDate>Thu, 22 Apr 2010 23:30:01 +0000</pubDate>
		<dc:creator>John Burns</dc:creator>
				<category><![CDATA[Linux Tips]]></category>

		<guid isPermaLink="false">http://www.john.geek.nz/?p=1495</guid>
		<description><![CDATA[This page has the permalink http://www.john.geek.nz/2010/04/wordpress-permalinks-and-404-errors But internally its default URL is http://www.john.geek.nz/?p=1495.
Permalinks help people see the topic of a page before it&#8217;s visited and generally mean that search engines will rank them higher too.
OK, so you&#8217;re getting 404&#8217;s as soon as you enable permalinks other than the default?

Firstly, make sure mod_rewrite is loaded.  [...]]]></description>
			<content:encoded><![CDATA[<p>This page has the permalink <a href="http://www.john.geek.nz/2010/04/wordpress-permalinks-and-404-errors">http://www.john.geek.nz/2010/04/wordpress-permalinks-and-404-errors</a> But internally its default URL is <a href="http://www.john.geek.nz/?p=1495">http://www.john.geek.nz/?p=1495</a>.</p>
<p>Permalinks help people see the topic of a page before it&#8217;s visited and generally mean that search engines will rank them higher too.</p>
<p>OK, so you&#8217;re getting 404&#8217;s as soon as you enable permalinks other than the default?<br />
<span id="more-1495"></span><br />
Firstly, make sure mod_rewrite is loaded.  The easiest way is to use the phpinfo() function.  This can be done by creating a php file containing the following code:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
<span style="color: #990000;">phpinfo</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>

<p>You can then check the output of the phpinfo() function to see if &#8216;mod_rewrite&#8217; in enabled.</p>
<p>If mod_rewrite is not enabled, you will need to enable it on the command line by typing:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;">a2enmod rewrite</pre></td></tr></table></div>

<p>You&#8217;ll then want to restart apache with</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>init.d<span style="color: #000000; font-weight: bold;">/</span>apache2 restart</pre></td></tr></table></div>

<p>If this doesn&#8217;t fix the problem, browse to the root of your website and check if the file &#8216;.htaccess&#8217; exists.<br />
If it doesn&#8217;t, create one by typing</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">touch</span> .htaccess</pre></td></tr></table></div>

<p>Make sure the .htaccess file is writeable with</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">chmod</span> .htaccess <span style="color: #000000;">755</span></pre></td></tr></table></div>

<p>If it&#8217;s still not working, check your apache config files.  The root directory of your website must have AllowOverride set to all.  For example, in the file /etc/apache2/sites-available/sitename</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
</pre></td><td class="code"><pre class="apache" style="font-family:monospace;">&lt;<span style="color: #000000; font-weight:bold;">Directory</span> /srv/www/&gt;
	<span style="color: #00007f;">AllowOverride</span> <span style="color: #00007f;">All</span>
&lt;/<span style="color: #000000; font-weight:bold;">Directory</span>&gt;</pre></td></tr></table></div>

<p>Just make sure the AllowOverride is set to All.  The other items should stay the same.</p>
<p>Restart apache and hopefully your 404 errors will be gone.</p>
<p>Tell me how it goes&#8230;..</p>
]]></content:encoded>
			<wfw:commentRss>http://www.john.geek.nz/2010/04/wordpress-permalinks-and-404-errors/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bear with me while I change servers</title>
		<link>http://www.john.geek.nz/2010/04/bear-with-me-while-i-change-servers/</link>
		<comments>http://www.john.geek.nz/2010/04/bear-with-me-while-i-change-servers/#comments</comments>
		<pubDate>Wed, 21 Apr 2010 23:08:04 +0000</pubDate>
		<dc:creator>John Burns</dc:creator>
				<category><![CDATA[General Randomness]]></category>

		<guid isPermaLink="false">http://www.john.geek.nz/?p=1492</guid>
		<description><![CDATA[I&#8217;ve taken the plunge, and this time I&#8217;m not doing it by halves.
I&#8217;m moving from my Windows Server 2003 physical co-located server to a Virtual Private Server (VPS) running Linux.
All of the websites have been transferred across, everything else is still to be moved over.
In the meantime, if you find any problems, or anything 404&#8217;s, [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve taken the plunge, and this time I&#8217;m not doing it by halves.</p>
<p>I&#8217;m moving from my Windows Server 2003 physical co-located server to a Virtual Private Server (VPS) running Linux.</p>
<p>All of the websites have been transferred across, everything else is still to be moved over.</p>
<p>In the meantime, if you find any problems, or anything 404&#8217;s, please flick me an email at b<a href="http://mailhide.recaptcha.net/d?k=01eMBcA0shvqZWhYiiReg3ig==&amp;c=R1ZFcO6DJya4El8IGhAbzw1H27x5uumjIEM6-a0nN3U=" onclick="window.open('http://mailhide.recaptcha.net/d?k=01eMBcA0shvqZWhYiiReg3ig==&amp;c=R1ZFcO6DJya4El8IGhAbzw1H27x5uumjIEM6-a0nN3U=', '', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=500,height=300'); return false;" title="Reveal this e-mail address">&#8230;</a>@john.geek.nz</p>
]]></content:encoded>
			<wfw:commentRss>http://www.john.geek.nz/2010/04/bear-with-me-while-i-change-servers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DateTimeUTC &#8211; Version 1.1</title>
		<link>http://www.john.geek.nz/2010/04/datetimeutc-version-1-1/</link>
		<comments>http://www.john.geek.nz/2010/04/datetimeutc-version-1-1/#comments</comments>
		<pubDate>Wed, 14 Apr 2010 22:04:39 +0000</pubDate>
		<dc:creator>John Burns</dc:creator>
				<category><![CDATA[PC Tips]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://www.john.geek.nz/?p=1490</guid>
		<description><![CDATA[I&#8217;ve been using DateTimeUTC for quite some time in batch files to get a nicely formatted date.
This is the first major revision of DateTimeUTC where you can now add or subtract from the current date.  This is very useful if you want yesterday&#8217;s date.
Get the latest version from here: DateTimeUTC
The main usage of the [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been using DateTimeUTC for quite some time in batch files to get a nicely formatted date.</p>
<p>This is the first major revision of DateTimeUTC where you can now add or subtract from the current date.  This is very useful if you want yesterday&#8217;s date.</p>
<p>Get the latest version from here: <a href='http://www.john.geek.nz/wp-content/uploads/2010/04/DateTimeUTC.zip'>DateTimeUTC</a></p>
<p>The main usage of the application is:</p>
<p>datetimeutc [-options]</p>
<p>Options:<br />
  -fFORMAT    Set output format<br />
  -z          Set output time to Local Time (Not UTC)<br />
  -help       View full online help</p>
<p>Example formats:<br />
  yyyyMMddTHHmmssZ                20081121T100227Z<br />
  &#8220;yyyy-MM-dd HH:mm:ss UTC&#8221;       2008-11-21 10:02:27 UTC<br />
  &#8220;dd MMMM yyyy&#8221;                  21 November 2008<br />
  ddd                             Fri<br />
  dddd                            Friday<br />
  fff                             (Milliseconds)</p>
<p>Use double quotes when the format includes a space<br />
Use backslashes to escape reserved character</p>
<p>Now, to add or subtract from the time, the format of the option is:<br />
-[timeunit][value]<br />
[timeunit] is one of YMdHms for Year, Month, Day, hour, Minute or Second<br />
[value] is an integer and can be positive or negative</p>
<p>The following will print the UTC time one day ago:<br />
datetimeutc -fyyyyMMddTHHmmssZ -d-1</p>
<p>Do get the output into a batch file, try this:<br />
for /f &#8220;usebackq&#8221; %%a in (`datetimeUTC.exe -fyyyyMMddTHHmmssZ`) do (set UTCdts=%%a%)<br />
echo %UTCdts%</p>
<p>Job done</p>
]]></content:encoded>
			<wfw:commentRss>http://www.john.geek.nz/2010/04/datetimeutc-version-1-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Live Renders of Earth</title>
		<link>http://www.john.geek.nz/2010/02/live-renders-of-earth/</link>
		<comments>http://www.john.geek.nz/2010/02/live-renders-of-earth/#comments</comments>
		<pubDate>Mon, 15 Feb 2010 02:26:58 +0000</pubDate>
		<dc:creator>John Burns</dc:creator>
				<category><![CDATA[General Randomness]]></category>

		<guid isPermaLink="false">http://www.john.geek.nz/?p=1488</guid>
		<description><![CDATA[I&#8217;ve recently come across the open source software Xplanet, which will render images of the globe with very realistic results.
I render them in 512&#215;256, 1024&#215;512, 2048&#215;1024 and 4096&#215;2048 resolutions.  The clouds information is obtained from weather satellites and is typically around three hours old.
I also use monthly map files so that the snow/ice on [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve recently come across the open source software <a href="http://xplanet.sourceforge.net/">Xplanet</a>, which will render images of the globe with very realistic results.</p>
<p>I render them in 512&#215;256, 1024&#215;512, 2048&#215;1024 and 4096&#215;2048 resolutions.  The clouds information is obtained from weather satellites and is typically around three hours old.</p>
<p>I also use monthly map files so that the snow/ice on the planet is more realistic.</p>
<p>Check out my real time renders at <a href="http://www.john.geek.nz/earth/">http://www.john.geek.nz/earth/</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.john.geek.nz/2010/02/live-renders-of-earth/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
