<?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>Blog Without An Important Name &#187; Photos</title>
	<atom:link href="http://www.kallisti.net.nz/blog/category/photos/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.kallisti.net.nz/blog</link>
	<description>I am not an IP address! I am a free 'blog!</description>
	<lastBuildDate>Mon, 22 Jun 2009 05:02:52 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Awesome New Clothing</title>
		<link>http://www.kallisti.net.nz/blog/2007/04/awesome-new-clothing/</link>
		<comments>http://www.kallisti.net.nz/blog/2007/04/awesome-new-clothing/#comments</comments>
		<pubDate>Wed, 18 Apr 2007 14:18:49 +0000</pubDate>
		<dc:creator>Robin</dc:creator>
				<category><![CDATA[Photos]]></category>

		<guid isPermaLink="false">http://www.kallisti.net.nz/blog/2007/04/awesome-new-clothing/</guid>
		<description><![CDATA[I&#8217;d ordered some stuff from the US late last week, and it arrived today (faster than some headphones ordered within NZ about the same time, that still haven&#8217;t arrived &#8211; Post Haste seems unable to deliver anything at all ever). Here is the hoodie:

and here is the t-shirt:

For the uninitiated, these are both references to [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;d ordered some stuff from the US late last week, and it arrived today (faster than some headphones ordered within NZ about the same time, that still haven&#8217;t arrived &#8211; Post Haste seems unable to deliver anything at all ever). Here is the hoodie:</p>
<p><img id="image62" src="http://www.kallisti.net.nz/blog/wp-content/uploads/2007/04/hoodie.jpg" alt="Hoodie" /></p>
<p>and here is the t-shirt:</p>
<p><img id="image63" src="http://www.kallisti.net.nz/blog/wp-content/uploads/2007/04/tshirt.jpg" alt="t-shirt" /></p>
<p>For the uninitiated, these are both references to <a href="http://en.wikipedia.org/wiki/H.P._Lovecraft">H.P. Lovecraft&#8217;s</a> story <a href="http://en.wikipedia.org/wiki/At_the_Mountains_of_Madness">At the Mountains of Madness</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kallisti.net.nz/blog/2007/04/awesome-new-clothing/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Wonderful ad association</title>
		<link>http://www.kallisti.net.nz/blog/2007/02/wonderful-ad-association/</link>
		<comments>http://www.kallisti.net.nz/blog/2007/02/wonderful-ad-association/#comments</comments>
		<pubDate>Sat, 17 Feb 2007 05:27:09 +0000</pubDate>
		<dc:creator>Robin</dc:creator>
				<category><![CDATA[Photos]]></category>

		<guid isPermaLink="false">http://www.kallisti.net.nz/blog/2007/02/wonderful-ad-association/</guid>
		<description><![CDATA[For a while now, it&#8217;s been the thing to have computers associate ads with the content of the page they show up in. What computers can&#8217;t do so well yet is determine if a particular association is in bad taste or not. This inability leads to things like this:

]]></description>
			<content:encoded><![CDATA[<p>For a while now, it&#8217;s been the thing to have computers associate ads with the content of the page they show up in. What computers can&#8217;t do so well yet is determine if a particular association is in bad taste or not. This inability leads to things like this:</p>
<p><a href="http://www.kallisti.net.nz/~robin/snopes-dad.png"><img src="http://www.kallisti.net.nz/~robin/snopes-dad.png" alt="bad ad" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kallisti.net.nz/blog/2007/02/wonderful-ad-association/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fixing broken dates</title>
		<link>http://www.kallisti.net.nz/blog/2006/11/fixing-broken-dates/</link>
		<comments>http://www.kallisti.net.nz/blog/2006/11/fixing-broken-dates/#comments</comments>
		<pubDate>Thu, 23 Nov 2006 11:03:56 +0000</pubDate>
		<dc:creator>Robin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Photos]]></category>

		<guid isPermaLink="false">http://www.kallisti.net.nz/blog/2006/11/fixing-broken-dates/</guid>
		<description><![CDATA[When I was home over the weekend, I was working on helping my parents sort out the photos they took while they were in Europe. Doing this, I noticed that the date on the camera was out by a month. Being a stickler for correct metadata, I tried to figure out a way to fix [...]]]></description>
			<content:encoded><![CDATA[<p>When I was home over the weekend, I was working on helping my parents sort out the photos they took while they were in Europe. Doing this, I noticed that the date on the camera was out by a month. Being a stickler for correct metadata, I tried to figure out a way to fix this. This is the command line that I came up with. I&#8217;ve broken it into multiple lines here for clarity.</p>
<p><code>
<pre>for f in *.jpg ; do
    NEWDATE=`exiftool -CreateDate $f |
        perl -pe 's/.*: 2006:([^:]+):/sprintf "2006:%02d:", ($1+1)/e'`;
    echo $f: $NEWDATE;
    exiftool -CreateDate="$NEWDATE" -DateTimeOriginal="$NEWDATE" $f;
done</pre>
<p></code></p>
<p>This will modify the month field in the EXIF data of each file by increasing it by 1. It doesn&#8217;t handle wrap around or anything, I didn&#8217;t need to do that. The fanciest it gets is making sure there&#8217;s the correct number of zeros padding the number.</p>
<p>You don&#8217;t want to run this twice.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kallisti.net.nz/blog/2006/11/fixing-broken-dates/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>No longer a skeptic</title>
		<link>http://www.kallisti.net.nz/blog/2006/11/no-longer-a-skeptic/</link>
		<comments>http://www.kallisti.net.nz/blog/2006/11/no-longer-a-skeptic/#comments</comments>
		<pubDate>Tue, 14 Nov 2006 22:58:08 +0000</pubDate>
		<dc:creator>Robin</dc:creator>
				<category><![CDATA[Photos]]></category>

		<guid isPermaLink="false">http://www.kallisti.net.nz/blog/2006/11/no-longer-a-skeptic/</guid>
		<description><![CDATA[
Well, I&#8217;m forced to admit now that the evidence is undeniable. It has become clear that the moon landings were faked by NASA. Why else do you think they wouldn&#8217;t be able to find those &#8216;missing&#8217; tapes? More details on the fraud are here.
]]></description>
			<content:encoded><![CDATA[<div class="alignright" style="padding: 1em;"><a class="imagelink" href="http://www.kallisti.net.nz/blog/wp-content/uploads/2006/11/moonlanding03.jpg" title="Fake moon landing pic"><img id="image42" src="http://www.kallisti.net.nz/blog/wp-content/uploads/2006/11/moonlanding03.thumbnail.jpg" alt="Fake moon landing pic" /></a></div>
<p>Well, I&#8217;m forced to admit now that the evidence is undeniable. It has become clear that the moon landings were faked by NASA. Why else do you think they wouldn&#8217;t be able to find those &#8216;missing&#8217; tapes? <a href="http://www.stuffucanuse.com/fake_moon_landings/moon_landings.htm">More details on the fraud are here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kallisti.net.nz/blog/2006/11/no-longer-a-skeptic/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Are you ready for the alien invasion?</title>
		<link>http://www.kallisti.net.nz/blog/2006/06/are-you-ready-for-the-alien-invasion/</link>
		<comments>http://www.kallisti.net.nz/blog/2006/06/are-you-ready-for-the-alien-invasion/#comments</comments>
		<pubDate>Sun, 18 Jun 2006 05:19:59 +0000</pubDate>
		<dc:creator>Robin</dc:creator>
				<category><![CDATA[Photos]]></category>

		<guid isPermaLink="false">http://www.kallisti.net.nz/blog/2006/06/are-you-ready-for-the-alien-invasion/</guid>
		<description><![CDATA[I went for a walk today, and found a couple of interesting looking aliens. The first being a small-person-sized (and unusually dark) &#8220;grey&#8221; [click for larger images]:

The other clearly demonstrates why they have arrived: they want to strip the Earth of its resources!
.
]]></description>
			<content:encoded><![CDATA[<p>I went for a walk today, and found a couple of interesting looking aliens. The first being a small-person-sized (and unusually dark) &#8220;grey&#8221; [click for larger images]:<br />
<a href="http://www.kallisti.net.nz/gallery/misc06/IMGP0264"><img height="240" width="320" src="http://www.kallisti.net.nz/gallery/d/876-1/IMGP0264.jpg" alt="An alien on North Road"  /></a></p>
<p>The other clearly demonstrates why they have arrived: they want to strip the Earth of its resources!<br />
<a href="http://www.kallisti.net.nz/gallery/misc06/IMGP0267"><img height="240" width="320" src="http://www.kallisti.net.nz/gallery/d/885-1/IMGP0267.jpg" alt="An alien intent on raping the earth of its cheese spread!" /></a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kallisti.net.nz/blog/2006/06/are-you-ready-for-the-alien-invasion/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Napoleon Dynamite is here!</title>
		<link>http://www.kallisti.net.nz/blog/2006/05/napoleon-dynamite-is-here/</link>
		<comments>http://www.kallisti.net.nz/blog/2006/05/napoleon-dynamite-is-here/#comments</comments>
		<pubDate>Sat, 06 May 2006 10:28:24 +0000</pubDate>
		<dc:creator>Robin</dc:creator>
				<category><![CDATA[Photos]]></category>

		<guid isPermaLink="false">http://www.kallisti.net.nz/blog/?p=25</guid>
		<description><![CDATA[This week just past was apparently elections for the Otago University Students Association. Typically with these kinds of things, there is campaign advertising stuff stuck around the place. Those of you who have seen the movie Napoleon Dynamite will understand this that I saw today:

Also chalked on the ground were things such as &#8220;Pedro is [...]]]></description>
			<content:encoded><![CDATA[<p>This week just past was apparently elections for the Otago University Students Association. Typically with these kinds of things, there is campaign advertising stuff stuck around the place. Those of you who have seen the movie Napoleon Dynamite will understand this that I saw today:<br />
<a href="http://www.kallisti.net.nz/gallery/misc06/IMGP0084"><img width="450" height="336" src="http://www.kallisti.net.nz/gallery/d/837-1/IMGP0084.jpg" alt="Vote for Pedro!" /></a><br />
Also chalked on the ground were things such as &#8220;Pedro is an option&#8221;.</p>
<p>I wonder who won&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kallisti.net.nz/blog/2006/05/napoleon-dynamite-is-here/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tui ad modifications</title>
		<link>http://www.kallisti.net.nz/blog/2006/05/tui-ad-modifications/</link>
		<comments>http://www.kallisti.net.nz/blog/2006/05/tui-ad-modifications/#comments</comments>
		<pubDate>Fri, 05 May 2006 12:00:31 +0000</pubDate>
		<dc:creator>Robin</dc:creator>
				<category><![CDATA[Photos]]></category>

		<guid isPermaLink="false">http://www.kallisti.net.nz/blog/?p=24</guid>
		<description><![CDATA[Dunedin locals may be aware of the Tui ad on Albany St, on the side of Liquorland. It looks like it had been attacked by someone with a bit of wit. Here is what it said tonight:

The previous edit that I remember was turning &#8220;My new flatmate keeps giving me the eye&#8221; into &#8220;My new [...]]]></description>
			<content:encoded><![CDATA[<p>Dunedin locals may be aware of the Tui ad on Albany St, on the side of Liquorland. It looks like it had been attacked by someone with a bit of wit. Here is what it said tonight:<br />
<a href="http://www.kallisti.net.nz/gallery/misc06/IMGP0083"><img width="450" height="240" src="http://www.kallisti.net.nz/gallery/d/834-1/IMGP0083.jpg" /></a></p>
<p>The previous edit that I remember was turning &#8220;My new flatmate keeps giving me the eye&#8221; into &#8220;My new mate keeps giving me e&#8221;.</p>
<p><span style="font-weight: bold">Update: </span>as of Monday the 8th, it&#8217;s been painted over. Pity <img src='http://www.kallisti.net.nz/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.kallisti.net.nz/blog/2006/05/tui-ad-modifications/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
