<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>Posts on Jim Kalafut</title>
		<link>https://kalafut.net/posts/</link>
		<description>Recent content in Posts on Jim Kalafut</description>
		<generator>Hugo</generator>
		<language>en-us</language>
		
		
		
		
			<lastBuildDate>Mon, 19 May 2025 05:10:55 +0000</lastBuildDate>
		
			<atom:link href="https://kalafut.net/posts/index.xml" rel="self" type="application/rss+xml" />
			<item>
				<title>Good TV Intros</title>
				<link>https://kalafut.net/posts/good-tv-intros/</link>
				<pubDate>Mon, 19 May 2025 05:10:55 +0000</pubDate>
				<guid>https://kalafut.net/posts/good-tv-intros/</guid>
				<description>&lt;p&gt;I don&amp;rsquo;t watch much TV these days. I used to watch more, and have found that good intro/title sequences hold as many memories for me as the show.&lt;/p&gt;&#xA;&lt;p&gt;I remember dozens of fun (&lt;a href=&#34;https://www.youtube.com/watch?v=s2TyVQGoCYo&#34;&gt;Friends&lt;/a&gt;), catchy (&lt;a href=&#34;https://www.youtube.com/watch?v=_-OnRQ4P0VY&#34;&gt;The Jeffersons&lt;/a&gt;), cool (&lt;a href=&#34;https://www.youtube.com/watch?v=oNyXYPhnUIs&#34;&gt;Knight Rider&lt;/a&gt;, &lt;a href=&#34;https://www.youtube.com/watch?v=ULfmowbNlK0&#34;&gt;Airwolf&lt;/a&gt;, &lt;a href=&#34;https://www.youtube.com/watch?v=AepyGm9Me6w&#34;&gt;Hawaii Five O&lt;/a&gt;) themes from earlier, but the best intros are a bit more recent and manage to capture the vibe of a whole show in under two minutes.&lt;/p&gt;&#xA;&lt;p&gt;It wasn&amp;rsquo;t easy to pare it down to five, nor rank them, but here are mine:&lt;/p&gt;</description>
			</item>
			<item>
				<title>Happy 31st Birthday, Jar of Flies</title>
				<link>https://kalafut.net/posts/happy-31st-birthday-jar-of-flies/</link>
				<pubDate>Sat, 25 Jan 2025 17:06:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/happy-31st-birthday-jar-of-flies/</guid>
				<description>&lt;p&gt;&lt;img src=&#34;https://kalafut.net/img/alice-in-chains-jar-of-flies-1.jpg&#34; alt=&#34;&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Alice in Chains&amp;rsquo; &lt;a href=&#34;https://en.wikipedia.org/wiki/Jar_of_Flies&#34;&gt;Jar of Flies&lt;/a&gt; is one of my all time favorites! It reliably teleports me back the mid-90s, living in Lübeck, Germany. A completely different life.&lt;/p&gt;</description>
			</item>
			<item>
				<title>LLM Use In 2025</title>
				<link>https://kalafut.net/posts/2024-12-30-responsible-ai/</link>
				<pubDate>Mon, 30 Dec 2024 23:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2024-12-30-responsible-ai/</guid>
				<description>&lt;p&gt;The AI hype is real, and so are the AI benefits. I started using AI coding tools during the early days of GitHub Copilot and haven’t looked back. They’ve only gotten better in all respects. In 2024, there was a big surge in interest in &lt;a href=&#34;https://www.cursor.com&#34;&gt;Cursor&lt;/a&gt;, and I, too, used it up until recently. The functionality truly is amazing—almost creepily so. Only a year ago, you’d have to explicitly ask the AI what you wanted. Now, I can open a brand-new file, and Cursor will often provide the right bit of code based simply on what I’ve been working on recently. For things I’m not super familiar with, such as Tailwind, the productivity increase is probably 50x. I can give it an image of something and simply say, &amp;ldquo;Make this using HTML and Tailwind,&amp;rdquo; and it gets reasonably close.&lt;/p&gt;</description>
			</item>
			<item>
				<title>How to Watch &#34;Battlestar Galactica&#34; (Preserved)</title>
				<link>https://kalafut.net/posts/how-to-watch-battlestar-galactica-revived/</link>
				<pubDate>Wed, 17 Jul 2024 14:51:10 +0000</pubDate>
				<guid>https://kalafut.net/posts/how-to-watch-battlestar-galactica-revived/</guid>
				<description>&lt;p&gt;The article below is &lt;strong&gt;NOT&lt;/strong&gt; my creation. I&amp;rsquo;ve been searching for an abridged watch/rewatch guide for &amp;ldquo;Battlestar Galactica&amp;rdquo; without much success finding one. Months after I started a discussion on Reddit, someone replied with a link to a real gem of a guide from Choire Sicha on the now-defunct &lt;a href=&#34;https://en.wikipedia.org/wiki/The_Awl&#34;&gt;The Awl&lt;/a&gt;. The page lives on in the Internet Archive, but I wanted to make it a bit more discoverable for folks since crawlers probably won&amp;rsquo;t surface it. The only edits are light formatting.&lt;/p&gt;</description>
			</item>
			<item>
				<title>Should&#39;ve AUTOINCREMENTed</title>
				<link>https://kalafut.net/posts/shouldve-autoincremented/</link>
				<pubDate>Mon, 08 Jul 2024 06:26:14 +0000</pubDate>
				<guid>https://kalafut.net/posts/shouldve-autoincremented/</guid>
				<description>&lt;p&gt;The &lt;a href=&#34;https://www.sqlite.org/autoinc.html&#34;&gt;SQLite docs&lt;/a&gt; steer you away from AUTOINCREMENT:&lt;/p&gt;&#xA;&lt;blockquote&gt;&#xA;&lt;p&gt;The AUTOINCREMENT keyword imposes extra CPU, memory, disk space, and disk I/O overhead and &lt;strong&gt;should be avoided if not strictly needed. It is usually not needed.&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;/blockquote&gt;&#xA;&lt;p&gt;The short version of not using AUTOINCREMENT is that primary keys can be reused following their deletion. And the problems with not properly accounting for this just bit me. In my case, a cache in my app was referencing a user ID, which meant that following a user deletion and creation, the old cache data was associated with the new user 😬. Fortunately in this case it just meant a performance degradation (other guards rejected the cache hit), but it could have been worse.&lt;/p&gt;</description>
			</item>
			<item>
				<title>Living under the Thunderbolt 1000</title>
				<link>https://kalafut.net/posts/living-under-the-thunderbolt-t1000/</link>
				<pubDate>Mon, 10 Jun 2024 14:51:13 +0000</pubDate>
				<guid>https://kalafut.net/posts/living-under-the-thunderbolt-t1000/</guid>
				<description>&lt;p&gt;Behold the &lt;a href=&#34;https://en.wikipedia.org/wiki/Thunderbolt_(siren)&#34;&gt;Thunderbolt 1000&lt;/a&gt; siren:&lt;/p&gt;&#xA;&lt;p&gt;&lt;img src=&#34;https://kalafut.net/img/federal_signal_thunderbolt_1003_head.jpg&#34; alt=&#34;&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Midwesterners of a certain age will feel their blood run cold when its blower motor winds up and the siren starts blaring. I grew up in the 90s in Naperville, IL, less than 300&amp;rsquo; from one of these. Here&amp;rsquo;s exactly where it was perched, now featuring a different siren: &lt;a href=&#34;https://www.google.com/maps/@41.7477834,-88.1350469,3a,75y,289.31h,108.44t/data=!3m7!1e1!3m5!1snIR4zNMWkkKRo4ldX4hhqA!2e0!6shttps:%2F%2Fstreetviewpixels-pa.googleapis.com%2Fv1%2Fthumbnail%3Fpanoid%3DnIR4zNMWkkKRo4ldX4hhqA%26cb_client%3Dmaps_sv.share%26w%3D900%26h%3D600%26yaw%3D289.30785989636723%26pitch%3D-18.43564057003364%26thumbfov%3D90!7i16384!8i8192?coh=205410&amp;amp;entry=ttu%3E&#34;&gt;Google Streeview&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;I don&amp;rsquo;t know what the new one sounds like.&lt;/p&gt;&#xA;&lt;p&gt;The sound really was the stuff of nightmares—my nightmares! Tornado threats loomed large in my youth, and on multiple occasions I ended up driving through their aftermath (&lt;a href=&#34;https://en.wikipedia.org/wiki/Tornado_outbreak_of_June_7%E2%80%938,_1984&#34;&gt;Barneveld&lt;/a&gt;, &lt;a href=&#34;https://en.wikipedia.org/wiki/1990_Plainfield_tornado&#34;&gt;Plainfield&lt;/a&gt;). For a while, I had recurring tornado nightmares, and this siren always featured prominently. This makes sense since they&amp;rsquo;d run siren tests every month (oh, it&amp;rsquo;s &lt;em&gt;that&lt;/em&gt; Tuesday), and &lt;a href=&#34;https://www.naperville.il.us/services/naperville-fire-department/emergency-preparedness/be-informed/outdoor-warning-siren-system/&#34;&gt;apparently still do&lt;/a&gt;.&lt;/p&gt;</description>
			</item>
			<item>
				<title>Fossil SCM (again)</title>
				<link>https://kalafut.net/posts/fossil-scm-again/</link>
				<pubDate>Thu, 25 Apr 2024 18:48:38 +0000</pubDate>
				<guid>https://kalafut.net/posts/fossil-scm-again/</guid>
				<description>&lt;p&gt;I’ve been intrigued by &lt;a href=&#34;https://fossil-scm.org&#34;&gt;Fossil SCM&lt;/a&gt; and have written about it a couple of times (&lt;a href=&#34;https://kalafut.net/posts/2016-01-24-git-fast-import/&#34;&gt;2016&lt;/a&gt;, &lt;a href=&#34;https://kalafut.net/posts/2015-01-29-fossil-1/&#34;&gt;2015&lt;/a&gt;). The idea of a bundled solution for source control, ticketing, UI, etc., is appealing, so I’ve wanted to find a good opportunity to use Fossil in earnest. Plus, I&amp;rsquo;m a big SQLite fan, and that is inextricably linked to Fossil both as the storage subsystem, and that they&amp;rsquo;re from the same team.&lt;/p&gt;&#xA;&lt;p&gt;Late last year, I had the perfect project for it. Because it was going to be a closed source, there were none of the issues associated with it not being on GitHub. Furthermore, it was a good-sized project involving both a backend server component and a mobile app, and would benefit from consolidated management of source and project materials. It had been about 8 years since I last took a look at Fossil, and I was eager to see how it had changed.&lt;/p&gt;</description>
			</item>
			<item>
				<title>Premature Architecture</title>
				<link>https://kalafut.net/posts/premature-architecture/</link>
				<pubDate>Wed, 24 Apr 2024 17:47:54 +0000</pubDate>
				<guid>https://kalafut.net/posts/premature-architecture/</guid>
				<description>&lt;p&gt;A few months ago, I started learning &lt;a href=&#34;https://flutter.dev/&#34;&gt;Flutter&lt;/a&gt; to build an app I&amp;rsquo;d been thinking about for a while. I joined the various Flutter-centric communities and followed developers who were active in the space. Overall, I&amp;rsquo;ve thoroughly enjoyed both the framework and the community dialog. But one element jumped out right away: a tremendous amount of material put out in social media and spammy Medium posts bikeshedding over what I considered &amp;ldquo;big software&amp;rdquo; topics like architecture. I was taken aback since most of the Flutter usage was for building a mobile app, and it was often done by a single developer. Whatever gets these people over the finish line is what they needed, so all this Architecture discussion seemed like quite a distraction. There has been some pushback, for example, this excellent tweet thread:&lt;/p&gt;</description>
			</item>
			<item>
				<title>Intrinsic Value of My Non-Asian Upwork Account</title>
				<link>https://kalafut.net/posts/intrinsic-value-of-my-non-asian-upwork-account/</link>
				<pubDate>Mon, 15 Apr 2024 16:31:01 +0000</pubDate>
				<guid>https://kalafut.net/posts/intrinsic-value-of-my-non-asian-upwork-account/</guid>
				<description>&lt;p&gt;This email request is headed right to the Spam bin, but it was nonetheless interesting to see how the flattening of the world continues to take place, how rates level out, how folks work around regional imbalances, etc.:&lt;/p&gt;&#xA;&lt;blockquote&gt;&#xA;&lt;p&gt;I&amp;rsquo;m XXX from China and I found you on GitHub.&#xA;As a full-stack web developer, I have worked in my local company for a long time.&#xA;But I want to work as a freelancer on Upwork using the European Upwork account now.&lt;/p&gt;</description>
			</item>
			<item>
				<title>Truth Social: Bizarro World</title>
				<link>https://kalafut.net/posts/truth-social-bizarro-world/</link>
				<pubDate>Thu, 14 Mar 2024 16:30:44 +0000</pubDate>
				<guid>https://kalafut.net/posts/truth-social-bizarro-world/</guid>
				<description>&lt;p&gt;Most of the online places I visit are politically left-leaning. But I’m usually there for the content quality instead of the political persuasion. For example, the NYT is undeniably left-biased, but they do have news with extensive reporting and a lot of data and supporting references. When I visit Fox News, it is mostly just ads for catheters and testosterone therapy, plus some salacious Hollywood gossip. Even the comments complain about how little news is there. (Note: I’m specifically talking about the website. A select few Fox TV programs are pretty good.)&lt;/p&gt;</description>
			</item>
			<item>
				<title>Taking an SQL query from 2s to 4ms</title>
				<link>https://kalafut.net/posts/taking-an-sql-query-from-2s-to-4ms/</link>
				<pubDate>Wed, 14 Feb 2024 18:46:05 +0000</pubDate>
				<guid>https://kalafut.net/posts/taking-an-sql-query-from-2s-to-4ms/</guid>
				<description>&lt;p&gt;I don&amp;rsquo;t write much SQL and I rarely have to do performance optimization since systems are so fast relative to my data sizes. But I have a homegrown logging system that using SQLite files in the hundreds of MBs that started slowing down noticeably on queries. This wasn&amp;rsquo;t a big deal for usage, but it bugged me as to &lt;em&gt;why&lt;/em&gt; things were slower so I went digging into the offending query:&lt;/p&gt;</description>
			</item>
			<item>
				<title>The Dangerous Life of a Pedestrian in America</title>
				<link>https://kalafut.net/posts/the-dangerous-life-of-a-pedestrian-in-america/</link>
				<pubDate>Sat, 13 Jan 2024 16:39:03 +0000</pubDate>
				<guid>https://kalafut.net/posts/the-dangerous-life-of-a-pedestrian-in-america/</guid>
				<description>&lt;p&gt;Today, I was leaving the store and what drove by neatly captured America&amp;rsquo;s attitude towards pedestrians. It was an F350 outfitted with a heavily customized &amp;ldquo;Iron Cross&amp;rdquo; front bumper with actual spikes.&lt;/p&gt;&#xA;&lt;p&gt;&lt;img src=&#34;https://kalafut.net/img/bumper.jpg&#34; alt=&#34;&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;The above isn&amp;rsquo;t the actual truck, which I didn&amp;rsquo;t catch a photo of in time, but it looked similar (&lt;a href=&#34;https://www.reddit.com/r/Trucks/comments/10z8iea/thinking_about_mass_production_of_this_bumper/&#34;&gt;Reddit source&lt;/a&gt;). Why is he allowed to drive this thing in public? Easy: because he can.&lt;/p&gt;&#xA;&lt;p&gt;Given the country&amp;rsquo;s anemic pedestrian protection laws, someone wanting to drive a dangerous vehicle has wide latitude. We&amp;rsquo;re decades behind many countries in establishing basic protections and are fighting a pervasive attitude that pedestrians really don&amp;rsquo;t matter. It&amp;rsquo;s not just that the US is car-loving, and much urban planning revolves around it. Many folks are outright anti-pedestrian.&lt;/p&gt;</description>
			</item>
			<item>
				<title>Static Hosting with S3 and Cloudflare</title>
				<link>https://kalafut.net/posts/static-hosting-with-s3-and-cloudflare/</link>
				<pubDate>Fri, 05 Jan 2024 16:43:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/static-hosting-with-s3-and-cloudflare/</guid>
				<description>&lt;p&gt;I&amp;rsquo;ve used both AWS S3 and Cloudflare for a long time, often to deliver simple static hosting with a TLS posture. 99.9% of the time I&amp;rsquo;m just updating the content, but every few years I need to set up a brand new domain, and this gives me angst.&lt;/p&gt;&#xA;&lt;p&gt;The issue is that I always recall there being a hangup with root domains, and there are too many articles out there that make this more complicated than it needs to be. My goal is almost always to deliver something on &lt;code&gt;https://mysite.com&lt;/code&gt;, not &lt;code&gt;https://www.mysite.com&lt;/code&gt;. It isn&amp;rsquo;t 2000 anymore. But countless blog posts will tell you one or more of:&lt;/p&gt;</description>
			</item>
			<item>
				<title>Sneaky, Boogie Board</title>
				<link>https://kalafut.net/posts/sneaky-boogie-board/</link>
				<pubDate>Wed, 15 Nov 2023 06:01:35 +0000</pubDate>
				<guid>https://kalafut.net/posts/sneaky-boogie-board/</guid>
				<description>&lt;p&gt;&lt;a href=&#34;https://en.wikipedia.org/wiki/Boogie_board_(product)&#34;&gt;Boogie Boards&lt;/a&gt; are pretty handy for the kids. They’re durable and the batteries last forever. Well, &lt;em&gt;almost&lt;/em&gt; forever. We just had one die and I was dismayed to see “Battery not user replacable“ on the back. Throw this whole thing away?!?&lt;/p&gt;&#xA;&lt;p&gt;But there were four screws… Small, but Philips head, so I opened it up. A CR2025 battery was propped up, in a holder, ready to be replaced.&lt;/p&gt;&#xA;&lt;p&gt;I had a replacement on hand, and swapping it worked fine. It looks like the engineers wanted this to be user servicable, designed it such, but just couldn’t say it was.&lt;/p&gt;</description>
			</item>
			<item>
				<title>Spoilage Abounds</title>
				<link>https://kalafut.net/posts/spoilage-abounds/</link>
				<pubDate>Sun, 12 Nov 2023 07:28:54 +0000</pubDate>
				<guid>https://kalafut.net/posts/spoilage-abounds/</guid>
				<description>&lt;p&gt;I&amp;rsquo;m one of those people who gets really irritated when even the potential of a movie/TV spoiler arises, and consuming media is becoming very difficult. I just don&amp;rsquo;t get it. For a long time, reviewers, ranging from professionals to some random author in a forum, respected the rule that the viewer should be able to experience the production fully, with little to no foreshadowing of the plot, if that&amp;rsquo;s what they want. But today&amp;hellip; good luck navigating the news, discussion sites, streaming services, and media platforms.&lt;/p&gt;</description>
			</item>
			<item>
				<title>Happy Birthday, kalafut.net</title>
				<link>https://kalafut.net/posts/this-domain-can-legally-drink/</link>
				<pubDate>Fri, 03 Nov 2023 07:22:16 +0000</pubDate>
				<guid>https://kalafut.net/posts/this-domain-can-legally-drink/</guid>
				<description>&lt;p&gt;I just discovered that my kalafut.net domain had a birthday yesterday! It is now &lt;strong&gt;21&lt;/strong&gt; years old, first registered by me on 2002-11-02. That’s a long time ago!&lt;/p&gt;&#xA;&lt;p&gt;Owning a domain has been incredibly useful over the years. I’ve changed email providers multiple times and moved blogs all over the place, but the little piece of internet property that I staked out during the George W Bush administration always remained the same. And now it is even multi-generational: both of my kids have email addresses against it. To be clear, I don&amp;rsquo;t think they&amp;rsquo;ve written more than two emails in their lives, but &amp;hellip;@kalafut.net is nonetheless useful as an iCloud email address, and iMessage is something they very much do use.&lt;/p&gt;</description>
			</item>
			<item>
				<title>Sorry, NYT, I choose neither</title>
				<link>https://kalafut.net/posts/sorry-nyt-i-wont/</link>
				<pubDate>Wed, 11 Oct 2023 16:43:05 +0000</pubDate>
				<guid>https://kalafut.net/posts/sorry-nyt-i-wont/</guid>
				<description>&lt;p&gt;This is a close cousin to the renewal BS I &lt;a href=&#34;https://kalafut.net/posts/the-subscription-renewal-drill/&#34;&gt;wrote about previously&lt;/a&gt;. In this case we&amp;rsquo;re cutting back and ending a subscription outright:&lt;/p&gt;&#xA;&lt;p&gt;&lt;img src=&#34;https://kalafut.net/img/nyt_cancel.png&#34; alt=&#34;&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;&lt;strong&gt;I Just Want To Cancel&lt;/strong&gt;. I don&amp;rsquo;t want call anyone, and I don&amp;rsquo;t want to chat with anyone. Amazing that this dark pattern continues to legally survive. Fortunately &lt;a href=&#34;https://privacy.com&#34;&gt;privacy.com&lt;/a&gt; has my back, so having pulled the card now I&amp;rsquo;ll see these emails every day until NYT eventually gives up on me:&lt;/p&gt;</description>
			</item>
			<item>
				<title>Floss loops</title>
				<link>https://kalafut.net/posts/floss-loops/</link>
				<pubDate>Wed, 27 Sep 2023 17:54:18 +0000</pubDate>
				<guid>https://kalafut.net/posts/floss-loops/</guid>
				<description>&lt;p&gt;Flossing is important, as your dental hygienist has no doubt reminded you continuously. I really don’t mind the ritual of flossing, but the actual process used to really annoy me for many years until I found this One Weird Trick.&lt;/p&gt;&#xA;&lt;p&gt;The problem is that my teeth are quite tight, which means it takes a bit of tension to get the floss between them. Using normal floss this means that I have to have the ends wrapped tightly around my fingers for things not to slip. And to move along the floss as I go, this may mean an enormous length to get the job done each morning. I also didn’t like the little tourniquet on my fingers.&lt;/p&gt;</description>
			</item>
			<item>
				<title>All the Blog Posts</title>
				<link>https://kalafut.net/posts/all-the-blog-posts/</link>
				<pubDate>Tue, 19 Sep 2023 05:38:08 +0000</pubDate>
				<guid>https://kalafut.net/posts/all-the-blog-posts/</guid>
				<description>&lt;p&gt;I&amp;rsquo;ve &lt;em&gt;finally&lt;/em&gt; imported all of the previous blog posts (from the &lt;a href=&#34;https://kalafut.net/page/blogs&#34;&gt;other blogs&lt;/a&gt;) into the main index. This turned out to be not too painful, since all of the blogs were WordPress so the title and date were consistently placed in the HTML. The goal here was only to bring over those elements and surface them on the main page, with a little stub post that redirects to the original, statically preserved site.&lt;/p&gt;</description>
			</item>
			<item>
				<title>The Scourge of Tinted Windows</title>
				<link>https://kalafut.net/posts/the-scourge-of-tinted-windows/</link>
				<pubDate>Fri, 25 Aug 2023 17:50:51 +0000</pubDate>
				<guid>https://kalafut.net/posts/the-scourge-of-tinted-windows/</guid>
				<description>&lt;p&gt;Tinted car windows aren&amp;rsquo;t all bad. Our Highlander has them on the rear side windows, improving comfort and privacy. But tinted front windows are a real annoyance for me as someone not in that car. I don&amp;rsquo;t recall them being as common as they are now. The specific problems this causes:&lt;/p&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;&lt;strong&gt;I can&amp;rsquo;t see hand signals.&lt;/strong&gt; It is common for folks to try to be courteous and signal to convey &amp;ldquo;you go&amp;rdquo; somehow. If I can&amp;rsquo;t see the person, I must try to infer that (e.g., they&amp;rsquo;re sitting for a long time when it should be their turn). Confusion is dangerous.&lt;/li&gt;&#xA;&lt;li&gt;&lt;strong&gt;I can&amp;rsquo;t make eye contact.&lt;/strong&gt; When I&amp;rsquo;m walking, especially with the kids, I always want to make eye contact with the driver before crossing in front of them. This can be difficult or impossible even with minor window tint depending on the lighting, which makes crossing really nerve-wracking. For all I know, they could be looking at their phone, didn&amp;rsquo;t see us, and are about to look up and step on the gas.&lt;/li&gt;&#xA;&lt;li&gt;&lt;strong&gt;It is awkward when neighbors pass&lt;/strong&gt;, and I feel compelled to either wave unconditionally or try to avert eye contact because I have no idea what they&amp;rsquo;re doing.&lt;/li&gt;&#xA;&lt;/ol&gt;</description>
			</item>
			<item>
				<title>Pump It Up, Oregon</title>
				<link>https://kalafut.net/posts/pump-it-up-oregon/</link>
				<pubDate>Thu, 10 Aug 2023 02:04:24 +0000</pubDate>
				<guid>https://kalafut.net/posts/pump-it-up-oregon/</guid>
				<description>&lt;p&gt;Today, I pumped my own gas. In Oregon. It&amp;rsquo;s about damn time! After the better part of a century, Oregon has finally &lt;a href=&#34;https://apnews.com/article/oregon-gas-pump-station-new-jersey-selfserve-10d7a467ab0fd9c6d15f2cb2769b00ce&#34;&gt;eliminated its silly no-self-serve law&lt;/a&gt;.&lt;/p&gt;&#xA;&lt;p&gt;I﻿ needn&amp;rsquo;t explain why I&amp;rsquo;m happy about this, because &lt;a href=&#34;https://kalafut.net/posts/2014-01-07-put-that-nozzle-down&#34;&gt;I already have&lt;/a&gt;.&lt;/p&gt;</description>
			</item>
			<item>
				<title>The Subscription Renewal Drill</title>
				<link>https://kalafut.net/posts/the-subscription-renewal-drill/</link>
				<pubDate>Mon, 10 Jul 2023 03:43:20 +0000</pubDate>
				<guid>https://kalafut.net/posts/the-subscription-renewal-drill/</guid>
				<description>&lt;p&gt;It&amp;rsquo;s that time of year when a few of my news subscriptions come due. That means doing a little dance that saves me hundreds of dollars annually. That I have to go through this routine is borderline immoral, in my opinion. That periodicals will quietly renew for sometimes 5x the &amp;ldquo;promotional&amp;rdquo; rate does and should make people&amp;rsquo;s blood boil. And let&amp;rsquo;s name these rates for what they are: 1. the normal rate  2. the &amp;ldquo;can they abuse you?&amp;rdquo; rate. Fortunately, these shenanigans are easy to bypass.&lt;/p&gt;</description>
			</item>
			<item>
				<title>Pay to Play (Chess)</title>
				<link>https://kalafut.net/posts/pay-to-play/</link>
				<pubDate>Sun, 02 Jul 2023 16:08:24 +0000</pubDate>
				<guid>https://kalafut.net/posts/pay-to-play/</guid>
				<description>&lt;p&gt;It is summer break, so it is time to figure out how to keep the kids busy. This challenge has changed over the years. When they were younger, we&amp;rsquo;d rely on the summer programs offered by local daycare providers, and that would usually cover us for most of the day. Now it is a complicated, expensive patchwork work of camps. These schedules are all over the place, which usually means there are days or sometimes a whole week of downtime.&lt;/p&gt;</description>
			</item>
			<item>
				<title>Today Bankruptcy</title>
				<link>https://kalafut.net/posts/today-bankruptcy/</link>
				<pubDate>Sun, 27 Nov 2022 20:46:50 +0000</pubDate>
				<guid>https://kalafut.net/posts/today-bankruptcy/</guid>
				<description>&lt;p&gt;Despite &lt;a href=&#34;https://kalafut.net/posts/my-patience-for-things-is-running-low/&#34;&gt;my recent critique of Things&lt;/a&gt;, it is still my main task organization tool. One of the main views in the app is the &amp;ldquo;Today&amp;rdquo; view. This &lt;em&gt;should&lt;/em&gt; be my driver throughout the day, but because of how disorganized I am, it can sometimes become cluttered with a large number of aspirational tasks that I wanted to get to, but never did. What happens then is that instead of being an useful tool to keep my day on track, it is a superset of &amp;ldquo;nice to do&amp;rdquo; tasks. l then end up pushing tasks around based on what I &lt;em&gt;really&lt;/em&gt; want to do today. Not great. And once the list grows long enough, it can be downright depressing to open.&lt;/p&gt;</description>
			</item>
			<item>
				<title>Sherwood Sports</title>
				<link>https://kalafut.net/posts/sherwood-sports/</link>
				<pubDate>Fri, 11 Nov 2022 17:08:12 +0000</pubDate>
				<guid>https://kalafut.net/posts/sherwood-sports/</guid>
				<description>&lt;p&gt;Last month I released/announced &lt;a href=&#34;https://sherwoodsports.org&#34;&gt;Sherwood Sports&lt;/a&gt;. This was one of those simple ideas I&amp;rsquo;d thought about for a while, finally got going with assuming it would take hours or a few days, and ended up spending at least a couple of weeks on. It took some deliberate effort to actually ship it and not continue fiddling indefinitely.&lt;/p&gt;&#xA;&lt;p&gt;In this case &amp;ldquo;shipping&amp;rdquo; meant announcing the existence of the site on a local Facebook group. I don&amp;rsquo;t much care for Facebook nor use it often, but there are a couple of things for which it is the only option, and easily getting the word out to our little town is one of them.&lt;/p&gt;</description>
			</item>
			<item>
				<title>My Patience for &#34;Things&#34; is Running Low</title>
				<link>https://kalafut.net/posts/my-patience-for-things-is-running-low/</link>
				<pubDate>Thu, 15 Sep 2022 15:53:21 +0000</pubDate>
				<guid>https://kalafut.net/posts/my-patience-for-things-is-running-low/</guid>
				<description>&lt;p&gt;&lt;a href=&#34;https://culturedcode.com/things&#34;&gt;Things&lt;/a&gt; is one of the best designed apps for iOS and Mac, and it has been my task management app of choice for many years. I&amp;rsquo;ve been happy with it, and really enjoy its ergonomics vs. Todoist, which I was coming from. Yet my patience is running low.&lt;/p&gt;&#xA;&lt;p&gt;Things has clearly been actively developed, as shown in their excellent &lt;a href=&#34;https://culturedcode.com/things/support/articles/1100684/&#34;&gt;release notes&lt;/a&gt;. Yet I also feel it has stagnated in the areas I care about. There is often healthy discussion around when software can just be considered &amp;ldquo;done&amp;rdquo;, and how a lack of new marquee features doesn&amp;rsquo;t necessarily indicate a problem. My argument to that would be it is entirely dependent on the user as to what &lt;em&gt;they&lt;/em&gt; consider &amp;ldquo;done&amp;rdquo;, and the vendor needs to communicate their version of the status.&lt;/p&gt;</description>
			</item>
			<item>
				<title>Meet the New Site, Same As the Old Site</title>
				<link>https://kalafut.net/posts/meet-the-new-site-same-as-the-old-site/</link>
				<pubDate>Fri, 09 Sep 2022 16:12:14 +0000</pubDate>
				<guid>https://kalafut.net/posts/meet-the-new-site-same-as-the-old-site/</guid>
				<description>&lt;p&gt;While it may look the same, everything to build and deliver this site has changed. Here&amp;rsquo;s a look at what and why.&lt;/p&gt;&#xA;&lt;p&gt;I wrote about &lt;a href=&#34;https://kalafut.net/posts/2021-10-16-blogging-setup&#34;&gt;my blogging setup&lt;/a&gt; roughly a year ago, and in that post a couple of key motivations for the move to GitHub were:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Get away from relying on building on Mac and pushing to S3&lt;/li&gt;&#xA;&lt;li&gt;Leverage the GitHub UI for small edits&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;There were benefits from the change, but not to the extent I was hoping. For example, say I was out somewhere, took an interesting photo, and wanted to author a brief post with that picture. Doing that without a laptop is not easy. How do I upload the image via the GitHub UI, for example? And then I need to remember where assets go and the correct Markdown syntax to reference the file (which is probably some UUID name). This all felt like way more friction than my WordPress experience 15 years ago.&lt;/p&gt;</description>
			</item>
			<item>
				<title>Create React App Proxy Setup</title>
				<link>https://kalafut.net/posts/2022-07-15-create-react-app/</link>
				<pubDate>Fri, 15 Jul 2022 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2022-07-15-create-react-app/</guid>
				<description>&lt;p&gt;A Go/&lt;a href=&#34;https://gofiber.io&#34;&gt;Fiber&lt;/a&gt; side project I&amp;rsquo;m working on needs some interactive elements. I started making some additions&#xA;using &lt;a href=&#34;https://alpinejs.dev/&#34;&gt;AlpineJS&lt;/a&gt; and &lt;a href=&#34;https://htmx.org&#34;&gt;HTMX&lt;/a&gt;, but things grew to the point that I decided a dedicated JS view&#xA;library would be worthwhile. Usually I reach for the awesome and under-mentioned &lt;a href=&#34;https://mithril.js.org&#34;&gt;Mithril.js&lt;/a&gt;, but I&amp;rsquo;ve&#xA;not visited the world of React in many years, so I decided to start there instead.&lt;/p&gt;&#xA;&lt;p&gt;I was definitely impressed at how the very first guidance you get is tailored to your needs. I intended to just start&#xA;with &lt;a href=&#34;https://reactjs.org/docs/add-react-to-a-website.html&#34;&gt;adding a React element to a page&lt;/a&gt;,&#xA;and being able to browser-load both React and Babble (for JSX) was super simple.&#xA;But I knew that was just a &amp;ldquo;Hello World&amp;rdquo; phase and that I&amp;rsquo;ve have to face the complexity of Webpack, Parcel, Vite or whatever&#xA;is the rage these days. I wasn&amp;rsquo;t really looking forward to that.&lt;/p&gt;</description>
			</item>
			<item>
				<title>Monitoring Go apps with Distributed Tracing and OpenTelemetry</title>
				<link>https://kalafut.net/posts/2022-04-19-monitoring-go-apps/</link>
				<pubDate>Tue, 19 Apr 2022 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2022-04-19-monitoring-go-apps/</guid>
				<description>&lt;p&gt;&lt;em&gt;I&amp;rsquo;m a happy user of &lt;a href=&#34;https://bun.uptrace.dev/&#34;&gt;Bun&lt;/a&gt; and like the work being done at Uptrace. The following is a guest post&#xA;by them about their monitoring projects. Enjoy!&lt;/em&gt;&lt;/p&gt;&#xA;&lt;h2 id=&#34;what-is-tracing&#34;&gt;&#xA;  What is tracing?&#xA;  &lt;a class=&#34;heading-link&#34; href=&#34;#what-is-tracing&#34;&gt;&#xA;    &lt;i class=&#34;fa fa-link&#34; aria-hidden=&#34;true&#34; title=&#34;Link to heading&#34;&gt;&lt;/i&gt;&#xA;    &lt;span class=&#34;sr-only&#34;&gt;Link to heading&lt;/span&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://opentelemetry.uptrace.dev/guide/distributed-tracing.html&#34;&gt;Distributed tracing&lt;/a&gt; allows to&#xA;observe requests as they propagate through distributed systems, especially those built using a&#xA;microservices architecture.&lt;/p&gt;&#xA;&lt;p&gt;Tracing provides insights into your app performance along with any errors and logs. You immediately&#xA;see what conditions cause errors and how particular error affects app performance.&lt;/p&gt;</description>
			</item>
			<item>
				<title>Fixing Multi-Track Audio Playback for Plex on Samsung TVs</title>
				<link>https://kalafut.net/posts/2022-02-18-plex-audio/</link>
				<pubDate>Fri, 18 Feb 2022 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2022-02-18-plex-audio/</guid>
				<description>&lt;p&gt;A &lt;a href=&#34;https://www.reddit.com/r/PleX/comments/a9pvyt/samsung_plex_tv_app_audio_track_playback_issue/&#34;&gt;much&lt;/a&gt; &lt;a href=&#34;https://forums.plex.tv/t/bug-samsung-plex-and-changing-audio-track/215752&#34;&gt;complained about&lt;/a&gt; issue with the otherwise pretty decent Plex app for Samsung TVs is that despite giving you the impression that you&amp;rsquo;re choosing the audio track, the app actually only ever plays the first track. This is &lt;strong&gt;very&lt;/strong&gt; annoying, and not that uncommon with my collection which has a lot of foreign films&#xA;where the English track isn&amp;rsquo;t the first item. I played with some of the proposed solutions.&lt;/p&gt;&#xA;&lt;p&gt;&lt;strong&gt;Turning off Direct Play&lt;/strong&gt; was suggested, and does work for the audio bit, but it causes immense struggle for my little raspberry pi on high bitrate films, so this isn&amp;rsquo;t really an good option.&lt;/p&gt;</description>
			</item>
			<item>
				<title>A Thorny Cron Permission Issue</title>
				<link>https://kalafut.net/posts/2022-02-12-cron-permissions/</link>
				<pubDate>Sat, 12 Feb 2022 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2022-02-12-cron-permissions/</guid>
				<description>&lt;p&gt;I recently gave the &lt;a href=&#34;https://restic.net/&#34;&gt;restic&lt;/a&gt; backup tool a try and was impressed. To date I&amp;rsquo;ve just relied on Apple&amp;rsquo;s&#xA;Time Machine, but it seems to almost &lt;em&gt;always&lt;/em&gt; be backing or cleaning for no clear reason. I found that restic&amp;rsquo;s&#xA;scans of the things I wanted to back up completed within a minute. Sold on using it in earnest, I decided to automate it by adding a &lt;code&gt;cron&lt;/code&gt; job. This was met with&amp;hellip; no backups. The troubleshooting ensued:&#xA;Y&lt;/p&gt;</description>
			</item>
			<item>
				<title>Anki - Workload Management</title>
				<link>https://kalafut.net/posts/2022-01-10-anki-workload/</link>
				<pubDate>Mon, 10 Jan 2022 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2022-01-10-anki-workload/</guid>
				<description>&lt;p&gt;I&amp;rsquo;ve been [using Anki a lot more recently]({% post_url 2022-01-02-anki %}). Previously I was using it with very small decks, and I viewed the scheduling only from the lense of how well I remembered stuff. But as I use it with the kids at high volume, I&amp;rsquo;m seeing to power of it to manage a workload.&lt;/p&gt;&#xA;&lt;p&gt;One of the decks we use has over &lt;strong&gt;4000&lt;/strong&gt; cards in it. How does one tackle that, and how do you pace yourself? With Anki I&amp;rsquo;ve found that tuning the limits on the number of new and review cards quickly let us settle on a daily workload that was about right. And with accurate scoring into Anki (i.e. correctly answer its &amp;ldquo;how did you do?&amp;rdquo; question), we&amp;rsquo;re making good progress through that 4000. New cards every day, super easy cards are now up to 2 months away so we&amp;rsquo;re not wasting time, and problem cards are recurring every few days.&lt;/p&gt;</description>
			</item>
			<item>
				<title>Useful CLI Tools</title>
				<link>https://kalafut.net/posts/2022-01-08-useful-cli-tools/</link>
				<pubDate>Sat, 08 Jan 2022 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2022-01-08-useful-cli-tools/</guid>
				<description>&lt;p&gt;Great &lt;a href=&#34;https://twitter.com/amilajack/status/1479328649820000256&#34;&gt;list of CLI tools&lt;/a&gt; in the tweet and replies, though he could have done without the childish &amp;ldquo;dated cli tools that suck&amp;rdquo; flourish 🙄.&lt;/p&gt;</description>
			</item>
			<item>
				<title>Ringing in the new year with WWV</title>
				<link>https://kalafut.net/posts/2022-01-04-wwv-nye/</link>
				<pubDate>Tue, 04 Jan 2022 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2022-01-04-wwv-nye/</guid>
				<description>&lt;p&gt;A couple of years ago I published a &lt;a href=&#34;https://kalafut.net/posts/2019-02-12-wwv-simulator/&#34;&gt;WWV simulator&lt;/a&gt;. On average it gets about 40 hits a day. I only occasionally review the traffic stats, but did so tonight and noticed an interesting pattern over the past week:&lt;/p&gt;&#xA;&lt;p&gt;&lt;img src=&#34;https://kalafut.net/img/wwv-traffic.png&#34; alt=&#34;&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;The two taller spikes concide nicely with New Years Eve in UTC (left peak), and then a few hour later with the US east coast (right peak). I like the idea that a few folks decided to use my weekend (well, many weekends) project to ring in the new year. 🎉&lt;/p&gt;</description>
			</item>
			<item>
				<title>SEOpocalypse</title>
				<link>https://kalafut.net/posts/2022-01-03-seopocalypse/</link>
				<pubDate>Mon, 03 Jan 2022 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2022-01-03-seopocalypse/</guid>
				<description>&lt;p&gt;I&amp;rsquo;m delighted to &lt;a href=&#34;https://twitter.com/mwseibel/status/1477701120319361026&#34;&gt;see&lt;/a&gt;. &lt;a href=&#34;https://twitter.com/paulg/status/1477760548787920901&#34;&gt;folks&lt;/a&gt;. &lt;a href=&#34;https://news.ycombinator.com/item?id=29772136&#34;&gt;discussing&lt;/a&gt;. the sad state of search. I have little to add beyond Amen, 💯, yes the current state is complete shit. Searching for anything will inevitably have me trudging through pages of blogspam and repackaged content. Looking for that Postgres function syntax? Be prepared for paragraphs of:&lt;/p&gt;&#xA;&lt;blockquote&gt;&#xA;&lt;p&gt;As the world stores ever more information, technologies such as the Postgres database have become increasingly&amp;hellip; 😴 &amp;hellip; 6000 words later &amp;hellip; &lt;code&gt;gen_random_uuid ()&lt;/code&gt; 😍&lt;/p&gt;</description>
			</item>
			<item>
				<title>Anki</title>
				<link>https://kalafut.net/posts/2022-01-02-anki/</link>
				<pubDate>Sun, 02 Jan 2022 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2022-01-02-anki/</guid>
				<description>&lt;p&gt;I&amp;rsquo;ve been aware of and have occasionally used &lt;a href=&#34;https://apps.ankiweb.net/index.html&#34;&gt;Anki&lt;/a&gt; since it came out 15 years ago. Some folks are put off by the bare/crude design, but I never cared too much about that. What &lt;em&gt;did&lt;/em&gt; put me off was the enormous number of settings, and frustration with it wanting to delay cards to far into the future. But really, I was just lazy to learn the program, which is why I gave up so many times.&lt;/p&gt;</description>
			</item>
			<item>
				<title>Productivity tools in 2022</title>
				<link>https://kalafut.net/posts/2022-01-01-happy-new-year/</link>
				<pubDate>Sat, 01 Jan 2022 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2022-01-01-happy-new-year/</guid>
				<description>&lt;p&gt;Welcome to 2022!&lt;/p&gt;&#xA;&lt;p&gt;A long-ish holiday break and the start of a new year always has me thinking about my current setups. Hardware, software, schedule, habits, obligations, etc. Today I&amp;rsquo;m thinking a bit about the productivity tools I use and how well they&amp;rsquo;re working for me. Let&amp;rsquo;s run through them.&lt;/p&gt;&#xA;&lt;h2 id=&#34;mail-and-calendar&#34;&gt;&#xA;  Mail and Calendar&#xA;  &lt;a class=&#34;heading-link&#34; href=&#34;#mail-and-calendar&#34;&gt;&#xA;    &lt;i class=&#34;fa fa-link&#34; aria-hidden=&#34;true&#34; title=&#34;Link to heading&#34;&gt;&lt;/i&gt;&#xA;    &lt;span class=&#34;sr-only&#34;&gt;Link to heading&lt;/span&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&#xA;&lt;p&gt;This a pretty boring category because it is well constrained and working OK.&lt;/p&gt;</description>
			</item>
			<item>
				<title>Blogging setup in 2021</title>
				<link>https://kalafut.net/posts/2021-10-16-blogging-setup/</link>
				<pubDate>Sat, 16 Oct 2021 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2021-10-16-blogging-setup/</guid>
				<description>&lt;p&gt;I don&amp;rsquo;t write much here, but I occasionally write &lt;em&gt;something&lt;/em&gt; and have done so for over 15 years&#xA;&lt;a href=&#34;https://kalafut.net/blogs&#34;&gt;in various forms&lt;/a&gt;. For many years I used a self-hosted Wordpress installation. At the&#xA;time it was certainly fun to set up, comments were novel, and the interface was easy to use.&#xA;But once comments basically became a never ending spam magnet, there was little point in&#xA;having a VPS with PHP and MySQL just to serve some HTML. Since 2010 I&amp;rsquo;ve bounced around between&#xA;various static blogging packages. Pelican, Jekyll, Octopress, Hugo&amp;hellip; For a number of years I was using&#xA;Hugo and pushing to an S3 bucket.&lt;/p&gt;</description>
			</item>
			<item>
				<title>sqlc</title>
				<link>https://kalafut.net/posts/2020-12-31-sqlc/</link>
				<pubDate>Thu, 31 Dec 2020 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2020-12-31-sqlc/</guid>
				<description>&lt;p&gt;I won&amp;rsquo;t even bother to recollect anything about 2020 on this last day of year. On to something more&#xA;interesting: &lt;a href=&#34;https://sqlc.dev&#34;&gt;sqlc&lt;/a&gt;!&lt;/p&gt;&#xA;&lt;p&gt;Usually my data persistence needs in Go end up being one of:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Raw SQL with the help of &lt;a href=&#34;http://jmoiron.github.io/sqlx/&#34;&gt;sqlx&lt;/a&gt;&lt;/li&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://gorm.io&#34;&gt;GORM&lt;/a&gt;&lt;/li&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://github.com/etcd-io/bbolt&#34;&gt;BoltDB&lt;/a&gt; and wrappers such as &lt;a href=&#34;https://github.com/asdine/storm&#34;&gt;Storm&lt;/a&gt;&lt;/li&gt;&#xA;&lt;li&gt;just write out JSON&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;Of these, the I&amp;rsquo;m always most drawn to SQL. Once I get past the most basic prototype, I find I almost&#xA;always want the power of SQL. The problem is that even with sqlx, there is a hell of a lot of boilerplate&#xA;involved. I then become tired and reach for GORM for a while. I then become irritated at the amount of&#xA;time I spend learning GORM-isms.&lt;/p&gt;</description>
			</item>
			<item>
				<title>WWV Simulator</title>
				<link>https://kalafut.net/posts/2019-02-12-wwv-simulator/</link>
				<pubDate>Tue, 12 Feb 2019 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2019-02-12-wwv-simulator/</guid>
				<description>&lt;p&gt;I just released my &lt;a href=&#34;https://wwv.mcodes.org/&#34;&gt;WWV Simulator&lt;/a&gt; to the wild. This is something I&amp;rsquo;ve&#xA;toyed with making for a long time, but the threat of WWV and WWH&#xA;&lt;a href=&#34;https://www.voanews.com/a/time-may-be-running-out-for-millions-of-clocks/4554376.html&#34;&gt;being shut down&lt;/a&gt;&#xA;really spurred me into action. It was a fun project that had a number of unexpected chances to learn stuff:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;I learned more about Javascript audio than I ever expected. I thought I could simply play some clips using HTML 5 APIs, and that&amp;rsquo;s what I originally built, but then I found that it didn&amp;rsquo;t really work at all on mobile and had to basically rebuild the whole&#xA;thing using an audio library.&lt;/li&gt;&#xA;&lt;li&gt;My original strategy of just pasting together audio clips didn&amp;rsquo;t work out because of the seconds pulses&#xA;being overlaid at random places. This prompted writing a program to generate the pulses myself, remove them&#xA;from the original clips, and then overlays the recorded and synthesized audio.&lt;/li&gt;&#xA;&lt;li&gt;The complexity of the broadcast schedule was much greater than I thought.&lt;/li&gt;&#xA;&lt;li&gt;It was a great excuse to try out flexbox.&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;Most importantly, it&amp;rsquo;s done! These little projects are fun but they do need to wrap up properly, either being officially&#xA;shelved or published, lest they nag at you for continual tweaks. At 7am this morning I &lt;a href=&#34;https://news.ycombinator.com/item?id=19144003&#34;&gt;posted the thing to&#xA;Hacker News&lt;/a&gt; and can now be done with it!&lt;/p&gt;</description>
			</item>
			<item>
				<title>Apple Photos Dates</title>
				<link>https://kalafut.net/posts/2018-06-17-apple-photos-dates/</link>
				<pubDate>Sun, 17 Jun 2018 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2018-06-17-apple-photos-dates/</guid>
				<description>&lt;p&gt;The search for an acceptable digital photo management solution is neverending. Sometime I&amp;rsquo;ll write about that&#xA;whole process, but for now I want to capture one very annoying and important gotcha with the current system.&#xA;My current process has photos flowing through Apple Photos since they&amp;rsquo;re automatically uploaded from my iPhone.&#xA;Apple Photos is acting as a convenient queue, since the final resting places for these photos are:&lt;/p&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;an external USB HD&lt;/li&gt;&#xA;&lt;li&gt;Backblaze (auto backup from USB HD)&lt;/li&gt;&#xA;&lt;li&gt;Google Drive (auto backup as well)&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;p&gt;Once photos are where they need to be, I delete them from Apple Photos.&lt;/p&gt;</description>
			</item>
			<item>
				<title>JSON, MessagePack, Protobuf... LZMA don&#39;t care</title>
				<link>https://kalafut.net/posts/2017-12-10-storage-formats/</link>
				<pubDate>Sun, 10 Dec 2017 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2017-12-10-storage-formats/</guid>
				<description>&lt;p&gt;I&amp;rsquo;ve often come across comparisons between JSON, &lt;a href=&#34;https://msgpack.org&#34;&gt;MessagePack&lt;/a&gt; and &lt;a href=&#34;https://developers.google.com/protocol-buffers/&#34;&gt;Protocol Buffers&lt;/a&gt; (protobuf) for transfer and/or storage. The conclusion usually ends up being: after compression, it doesn&amp;rsquo;t matter. But when faced with the choice on my own project recently, I couldn&amp;rsquo;t help thinking that reduced verbosity on the input could only be a benefit. Plus is just seems only proper to tightly pack integers and binary data, remove formatting that only benefits humans, etc. So naturally I had to try all three.&lt;/p&gt;</description>
			</item>
			<item>
				<title>In Defense of Standalone GPS</title>
				<link>https://kalafut.net/posts/2017-11-26-pnd/</link>
				<pubDate>Sun, 26 Nov 2017 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2017-11-26-pnd/</guid>
				<description>&lt;p&gt;I started working at Garmin shortly after &lt;a href=&#34;http://googlemobile.blogspot.com/2009/10/announcing-google-maps-navigation-for.html&#34;&gt;Google announced&lt;/a&gt; the introduction of Google Maps on Android with free turn-by-turn directions. The effect on Garmin&amp;rsquo;s stock price was severe. Pundits quickly predicted the death of personal GPS navigation devices (PNDs) as smartphones offered a free, superior solution.  The introduction of these apps did permanently resize and refocus the PND market, but it definitely&#xA;didn’t destroy it. And these devices may still have an important purpose in your vehicle.&lt;/p&gt;</description>
			</item>
			<item>
				<title>Single-App Django Projects</title>
				<link>https://kalafut.net/posts/2017-08-06-django-init/</link>
				<pubDate>Sun, 06 Aug 2017 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2017-08-06-django-init/</guid>
				<description>&lt;p&gt;I&amp;rsquo;ve never benefitted from Django&amp;rsquo;s multi-app architecture and find the hijacking of a precious&#xA;project name pretty annoying. The details and a remedy are described well in&#xA;&lt;a href=&#34;https://zindilis.com/posts/django-anatomy-for-single-app/&#34;&gt;Single-App Django Project Anatomy&lt;/a&gt;.&lt;/p&gt;&#xA;&lt;p&gt;I&amp;rsquo;ve referred to this simple but easily-forgotten process of flattening the Django structure so&#xA;many times that I&amp;rsquo;ve finally automated the process described therein in a simple script: &lt;a href=&#34;https://gist.github.com/kalafut/42bd31b2fdbf7a225da94e320d3e29ba&#34;&gt;django_init&lt;/a&gt;&lt;/p&gt;</description>
			</item>
			<item>
				<title>Task Management Systems</title>
				<link>https://kalafut.net/posts/2017-07-03-task-management/</link>
				<pubDate>Mon, 03 Jul 2017 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2017-07-03-task-management/</guid>
				<description>&lt;p&gt;One thing I&amp;rsquo;ve learned from many years of using different task management approaches is to keep expectations in check. It is unlikely that any system or software is going to bring meaningful change to core problems of disorganization, lack of motivation, or just plain laziness. But that shouldn&amp;rsquo;t discourage one from trying different tools as part of the quest to get organized, get more done, or just get some peace of mind. Something is probably better than nothing.&lt;/p&gt;</description>
			</item>
			<item>
				<title>One Year</title>
				<link>https://kalafut.net/posts/2017-05-21-one-year/</link>
				<pubDate>Sun, 21 May 2017 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2017-05-21-one-year/</guid>
				<description>&lt;p&gt;I&amp;rsquo;m here to acknowledge that it has been exactly one year since my last post.&#xA;And that&amp;rsquo;s all I have to say about that.&lt;/p&gt;</description>
			</item>
			<item>
				<title>Staticizing WordPress</title>
				<link>https://kalafut.net/posts/2016-05-21-staticizing_wordpress/</link>
				<pubDate>Sat, 21 May 2016 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2016-05-21-staticizing_wordpress/</guid>
				<description>&lt;p&gt;I&amp;rsquo;m very happy to have just ticked off a really old to-do. I converted three old WordPress blogs to static&#xA;sites:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&lt;a href=&#34;http://nz.kalafut.net&#34;&gt;NZ Life&lt;/a&gt; (2005&amp;ndash;2007)&lt;/li&gt;&#xA;&lt;li&gt;&lt;a href=&#34;http://pd.kalafut.net&#34;&gt;Peoria Dispatch&lt;/a&gt; (2008&amp;ndash;2010)&lt;/li&gt;&#xA;&lt;li&gt;&lt;a href=&#34;http://pdg.kalafut.net&#34;&gt;Peoria Dispatch (Garden)&lt;/a&gt; (2009&amp;ndash;2010)&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;These sites aren&amp;rsquo;t just old, they&amp;rsquo;re in read-only mode and are virtually never visited by me nor&#xA;anyone else. They are also precious. They capture their respective periods better than photographs&#xA;alone, and I didn&amp;rsquo;t want to import or modernize them, since the design is an important part of the&#xA;capture. They look today basically the same as they did 10 years ago. But I also didn&amp;rsquo;t want them&#xA;sitting atop a complex, self-hosted WordPress installation. Having the content wrapped up in a MySQL&#xA;database and accompanying folder structure, and requiring a functioning WP installation to even get&#xA;to the posts, was terribly fragile. Remember: no one is going to these sites, so if they fail&#xA;somehow it might be too late before anything is noticed. I was amazed they even worked, and that I&#xA;could log in.&lt;/p&gt;</description>
			</item>
			<item>
				<title>Text-based Taxes</title>
				<link>https://kalafut.net/posts/2016-03-24-text_taxes/</link>
				<pubDate>Thu, 24 Mar 2016 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2016-03-24-text_taxes/</guid>
				<description>&lt;p&gt;It&amp;rsquo;s that time of year again: I start thinking about how inefficient the tax preparation&#xA;process is. And this is not targeted at the IRS (though it deserves it), but rather tax prep&#xA;software. Every year I think, &amp;ldquo;Why, when there are so few bits of actual data that I need to feed in,&#xA;does this take so damn long?&amp;rdquo; I think the answer is that I don&amp;rsquo;t fit the TurboTax/TaxAct profile very&#xA;well. I&amp;rsquo;m much closer to being the guy filling out the forms by hand with a copy of &lt;a href=&#34;http://www.amazon.com/dp/1119133920&#34;&gt;JK Lasser&lt;/a&gt; next to him,&#xA;but I also can&amp;rsquo;t stand the idea of doing&amp;ndash;and redoing&amp;ndash;all of that math by hand.&lt;/p&gt;</description>
			</item>
			<item>
				<title>Elm</title>
				<link>https://kalafut.net/posts/2016-02-03-elm/</link>
				<pubDate>Wed, 03 Feb 2016 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2016-02-03-elm/</guid>
				<description>&lt;p&gt;I&amp;rsquo;m in Malaysia for a couple of weeks (&lt;a href=&#34;https://en.wikipedia.org/wiki/Penang&#34;&gt;Penang&lt;/a&gt; to be precise, my wife&amp;rsquo;s home island).  It has been years since my last visit and this is the first time travelling here with the kids. It is also the first time I&amp;rsquo;ve had two weeks off of work in at least 5 years, so I&amp;rsquo;m only slowly used to getting used to having a reasonable amount of free time.&lt;/p&gt;&#xA;&lt;p&gt;My usual inclination is to try to either read a novel (something I rarely budget time for) or learn something new, programming-wise. A lot of projects I want to work on require more than a token amount of Javascript. Back in the apparently bad old days, I would write Javascript and include jQuery. There is substantial pressure to not do that now.  I&amp;rsquo;ve spent the last few years tracking and trying to selectively dive into various facets of Javascript and Framework maturation, but the ROI has been pretty poor. Javascript isn&amp;rsquo;t my job and all such learning costs precious free time. Having tools, libraries, and transpiled languages fall from favor remarkably quickly puts a real damper on my enthusiasm to learn the next hottest Javascript thing.&lt;/p&gt;</description>
			</item>
			<item>
				<title>Fossil to git</title>
				<link>https://kalafut.net/posts/2016-01-24-git-fast-import/</link>
				<pubDate>Sun, 24 Jan 2016 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2016-01-24-git-fast-import/</guid>
				<description>&lt;p&gt;A while back I &lt;a href=&#34;https://kalafut.net/posts/2015-01-29-fossil-1&#34;&gt;dabbled with Fossil SCM&lt;/a&gt;. I liked parts of it but ended up returning to git. During that experiment,&#xA;I created a fair bit of content in Fossil and wanted to get it out. I assumed this would be easy because I&amp;rsquo;d&#xA;used the Fossil &lt;code&gt;export&lt;/code&gt; command previously to create a &lt;code&gt;git-fast-import&lt;/code&gt;-compatible text file with all of the&#xA;repo contents. This time, however, I was met with this error upon import:&lt;/p&gt;</description>
			</item>
			<item>
				<title>In defense of DVDs</title>
				<link>https://kalafut.net/posts/2015-08-09-dvd-defense/</link>
				<pubDate>Sun, 09 Aug 2015 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2015-08-09-dvd-defense/</guid>
				<description>&lt;p&gt;I&amp;rsquo;ve just re-enabled my Netflix DVD service for the umpteenth time. Streaming is usually&#xA;enabled (though it&amp;rsquo;s of dubious usefulness), and whether I&amp;rsquo;m getting DVDs is a matter of how&#xA;much time I&amp;rsquo;m spending on movies at all.&lt;/p&gt;&#xA;&lt;p&gt;As a general rule, DVDs are the only way for me to watch the movies I want. I use various movie&#xA;recommendation sources and my wishlist is filled with things that are not available on streaming&#xA;services, at least not Netflix nor Amazon. As for torrents&amp;hellip; They&amp;rsquo;re usually left for the odd case where&#xA;I can&amp;rsquo;t buy, rent or stream the movie anywhere. I have a job and I don&amp;rsquo;t mind paying for stuff.&lt;/p&gt;</description>
			</item>
			<item>
				<title>Not Missing &#39;Mad Men&#39;</title>
				<link>https://kalafut.net/posts/2015-05-19-madmen/</link>
				<pubDate>Tue, 19 May 2015 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2015-05-19-madmen/</guid>
				<description>&lt;p&gt;So Mad Men is done. I&amp;rsquo;m glad. I didn&amp;rsquo;t think the show was nearly &lt;a href=&#34;http://www.newyorker.com/culture/cultural-comment/the-original-resonant-existentially-brilliant-mad-men-finale&#34;&gt;as good as others did&lt;/a&gt;. I started&#xA;becoming increasingly bored around season 3 or 4. Now I don&amp;rsquo;t have to think about it.&lt;/p&gt;&#xA;&lt;p&gt;But this really isn&amp;rsquo;t about Mad Men, but rather time and entertainment. I watch very little of anything. What I&#xA;do watch (usually a couple hours per week, tops), has for a long time been a mix of movies and TV series. I&amp;rsquo;ve seen some really&#xA;excellent TV in the past few years (The Wire, The Shield, Breaking Bad, Black Mirror, Sherlock, The Fall). But I&amp;rsquo;ve also started to question the&#xA;ROI of TV, even for the good shows.&lt;/p&gt;</description>
			</item>
			<item>
				<title>Tribute to a leader</title>
				<link>https://kalafut.net/posts/2015-03-25-tribute-to-a-leader/</link>
				<pubDate>Wed, 25 Mar 2015 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2015-03-25-tribute-to-a-leader/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://blog.kalafut.net/index.html%3Fp=339.html&#34;&gt;https://blog.kalafut.net/index.html%3Fp=339.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://blog.kalafut.net/index.html%3Fp=339.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Public speaking</title>
				<link>https://kalafut.net/posts/2015-02-23-public-speaking/</link>
				<pubDate>Mon, 23 Feb 2015 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2015-02-23-public-speaking/</guid>
				<description>&lt;p&gt;Useful, concise advice on public speaking, even for non-nerds.&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;http://dave.cheney.net/2015/02/17/practical-public-speaking-for-nerds&#34;&gt;Practical public speaking for Nerds&lt;/a&gt;&lt;/p&gt;</description>
			</item>
			<item>
				<title>Justice</title>
				<link>https://kalafut.net/posts/2015-02-19-justice/</link>
				<pubDate>Thu, 19 Feb 2015 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2015-02-19-justice/</guid>
				<description>&lt;p&gt;Federal Judge Paul Cassell, on administering a mandatory minimum sentence&#xA;to a 24 year old for three marijuana sales:&lt;/p&gt;&#xA;&lt;p&gt;&lt;em&gt;“If he had been an aircraft hijacker, he would have gotten 24 years in prison.&#xA;If he’s been a terrorist, he would have gotten 20 years in prison. If he was a&#xA;child rapist, he would have gotten 11 years in prison. And now I’m supposed to&#xA;give him a 55-year sentence? I mean, that’s just not right.”&lt;/em&gt;&lt;/p&gt;</description>
			</item>
			<item>
				<title>Train Big. Snow Fluffy.</title>
				<link>https://kalafut.net/posts/2015-02-07-train_snow/</link>
				<pubDate>Sat, 07 Feb 2015 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2015-02-07-train_snow/</guid>
				<description>&lt;p&gt;I&amp;rsquo;m usually the last to see viral videos, and even later to pass them on, but this battle of &lt;a href=&#34;https://www.youtube.com/watch?v=Yja2VmZOfdA&#34;&gt;train vs. snow&lt;/a&gt;&#xA;must be shared. It&amp;rsquo;s so good, Peter Jackson &lt;a href=&#34;https://www.youtube.com/watch?v=e9K7fueW4Bk#t=140&#34;&gt;stole the idea&lt;/a&gt; in &lt;em&gt;The Lord of the Rings&lt;/em&gt; (2001).&lt;/p&gt;&#xA;&lt;p&gt;It does prompt the question: why do locomotives need windows?&lt;/p&gt;</description>
			</item>
			<item>
				<title>Self-Imposed Sabbatical</title>
				<link>https://kalafut.net/posts/2015-02-05-self-imposed-sabbatical/</link>
				<pubDate>Thu, 05 Feb 2015 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2015-02-05-self-imposed-sabbatical/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://blog.kalafut.net/index.html%3Fp=333.html&#34;&gt;https://blog.kalafut.net/index.html%3Fp=333.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://blog.kalafut.net/index.html%3Fp=333.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Asian Grocery Stores</title>
				<link>https://kalafut.net/posts/2015-02-04-asian-grocery-stores/</link>
				<pubDate>Wed, 04 Feb 2015 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2015-02-04-asian-grocery-stores/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://blog.kalafut.net/index.html%3Fp=325.html&#34;&gt;https://blog.kalafut.net/index.html%3Fp=325.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://blog.kalafut.net/index.html%3Fp=325.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Infant car seats</title>
				<link>https://kalafut.net/posts/2015-02-03-car-seats/</link>
				<pubDate>Tue, 03 Feb 2015 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2015-02-03-car-seats/</guid>
				<description>&lt;p&gt;Make no mistake: installing an infant car seat can be strenuous work.&#xA;You need to achieve a fair amount of compression for the seat to stay put. This will&#xA;probably require sitting or standing on the seat while pulling hard on the&#xA;belt strap. If it seems easy, you&amp;rsquo;re probably not putting the seat in firmly enough.&lt;/p&gt;&#xA;&lt;p&gt;Besides adjusting your expectation of work, here are a couple of tips I&amp;rsquo;ve&#xA;discovered over the years:&lt;/p&gt;</description>
			</item>
			<item>
				<title>Have a Nexus 7? Get the Chrome Beta</title>
				<link>https://kalafut.net/posts/2015-02-01-chrome-beta/</link>
				<pubDate>Sun, 01 Feb 2015 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2015-02-01-chrome-beta/</guid>
				<description>&lt;p&gt;The Chrome browser on Nexus 7 has never had the &lt;em&gt;Close All Tabs&lt;/em&gt; function like its brother on the phone. This made no sense, was annoying, and &lt;a href=&#34;https://code.google.com/p/chromium/issues/detail?id=268157&#34;&gt;dragged on forever&lt;/a&gt;. Fortunately, the end is near. You can now download Chrome version 40 via the Chrome Beta app on &lt;a href=&#34;https://play.google.com/store/apps/details?id=com.chrome.beta&#34;&gt;Google Play&lt;/a&gt;.&lt;/p&gt;&#xA;&lt;p&gt;&lt;em&gt;Close All Tabs&lt;/em&gt; is accessed by long-pressing the usual tab close X.&lt;/p&gt;</description>
			</item>
			<item>
				<title>A First Look At Fossil SCM</title>
				<link>https://kalafut.net/posts/2015-01-29-fossil-1/</link>
				<pubDate>Thu, 29 Jan 2015 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2015-01-29-fossil-1/</guid>
				<description>&lt;p&gt;I&amp;rsquo;m in the process of taking a hard look at &lt;a href=&#34;http://www.fossil-scm.org/&#34;&gt;Fossil&lt;/a&gt; for source control. I&amp;rsquo;d heard&#xA;of it a long time ago, but only briefly considered it before getting swept up in the&#xA;rise of Mercurial and git. The only thing that put it back on the radar was a&#xA;brief mention in some Hacker News discussion, and a recent &lt;a href=&#34;http://twit.tv/show/floss-weekly/320&#34;&gt;FLOSS Weekly&#xA;episode&lt;/a&gt;.&lt;/p&gt;&#xA;&lt;p&gt;I used git daily at work and at home, and I know it well. I like it too, and it&amp;rsquo;s incredibly powerful.  The world has Github, which is both convenient super-productive,&#xA;so why spend time looking at Fossil? If it was just another DVCS with a different&#xA;different syntax, I&amp;rsquo;d probably not stay long. But it&amp;rsquo;s more that that, and the&#xA;differences from git are intriguing, so I&amp;rsquo;m trying it out in my workflow.&lt;/p&gt;</description>
			</item>
			<item>
				<title>RSS? You should probably try TTR</title>
				<link>https://kalafut.net/posts/2015-01-24-in-support-of-ttr/</link>
				<pubDate>Sat, 24 Jan 2015 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2015-01-24-in-support-of-ttr/</guid>
				<description>&lt;p&gt;As a long-time consumer of RSS feeds, I was shocked along with many others at&#xA;the fairly sudden termination of Google Reader. Though there wasn&amp;rsquo;t anything&#xA;extraordinarily special about GR for me, it did offer a clean, simple way to browse&#xA;feeds and have the status sync across devices. Like everyone else, I set about&#xA;finding a replacement, and was pretty sure I&amp;rsquo;d find one in short order that met my&#xA;expectations.&lt;/p&gt;</description>
			</item>
			<item>
				<title>Why Jekyll?</title>
				<link>https://kalafut.net/posts/2015-01-22-why-jekyll/</link>
				<pubDate>Thu, 22 Jan 2015 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2015-01-22-why-jekyll/</guid>
				<description>&lt;p&gt;I was recently asked why I switched from Octopress to Jekyll. I don&amp;rsquo;t have an interesting answer, because there weren&amp;rsquo;t any particularly strong reasons. The overarching goal was that of simplifying. For this blog, the idea of going with stock Jekyll hosted on Github pages is about the simplest way to write and publish a static blog. It certainly isn&amp;rsquo;t the &lt;em&gt;easiest&lt;/em&gt; way to have a blog, but for me, &amp;ldquo;simple&amp;rdquo; includes the idea that the blog content and structure is stored simply and accessibly. There are a million hosted blog sites that could have me writing in seconds with zero administration, but then I&amp;rsquo;d be uncomfortably tied to their platform.&lt;/p&gt;</description>
			</item>
			<item>
				<title>And Suddenly My Best Phone Is Junk</title>
				<link>https://kalafut.net/posts/2015-01-20-lollipop-pos/</link>
				<pubDate>Tue, 20 Jan 2015 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2015-01-20-lollipop-pos/</guid>
				<description>&lt;p&gt;I bought the Nexus 4 shortly after it came out. I&amp;rsquo;d been living through a few&#xA;bad years of the &lt;a href=&#34;http://phandroid.com/2013/04/30/htc-thunderbolt-apology/&#34;&gt;HTC Thunderbolt&lt;/a&gt;, which was probably the worst&#xA;phone I&amp;rsquo;ve owned. Aside from being a bad phone, Verizon was &lt;em&gt;extremely&lt;/em&gt;&#xA;slow about updates for that device. I recall waiting over a year just for Android 4.0.&#xA;Making a break from Verizon to a Nexus device sounded great, and having&#xA;only consumed a few reviews of the Nexus 4, I made the leap.&lt;/p&gt;</description>
			</item>
			<item>
				<title>Passing slices to variadic functions</title>
				<link>https://kalafut.net/posts/2015-01-18-slice-to-variadic-functions/</link>
				<pubDate>Sun, 18 Jan 2015 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2015-01-18-slice-to-variadic-functions/</guid>
				<description>&lt;p&gt;I knew about variadic functions, and the &amp;ldquo;&amp;hellip;&amp;rdquo; syntax, but I&amp;rsquo;d assumed that was&#xA;limited to the function declaration. When I tried to pass a slice of arguments&#xA;as the final parameter of a call to a variadic function, I got errors. The&#xA;answer is of course in the spec, but I didn&amp;rsquo;t find it quickly:&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;v := foo(bar, baz...)&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;So &amp;ldquo;&amp;hellip;&amp;rdquo; shows up again. Here&amp;rsquo;s the relevant section of the spec:&lt;/p&gt;</description>
			</item>
			<item>
				<title>Yet Another Todo List</title>
				<link>https://kalafut.net/posts/2015-01-17-yatl/</link>
				<pubDate>Sat, 17 Jan 2015 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2015-01-17-yatl/</guid>
				<description>&lt;p&gt;I&amp;rsquo;ve been thinking quite a bit about writing a todo application. Over the years I&amp;rsquo;ve used tons of them (who hasn&amp;rsquo;t), and I&amp;rsquo;ve formed my opinions about features, behaviors, appearances and architectures for this class of application. Now I want to roll my own.&lt;/p&gt;&#xA;&lt;p&gt;This is supposed to be a fun project that will hopefully be a useful project. Because it&amp;rsquo;s by me, for me, and controlled by me, I have thought about how much time will be spent tweaking the system instead of letting the system help me get stuff done. I&amp;rsquo;m not worried about that though, because I&amp;rsquo;m &lt;strong&gt;always&lt;/strong&gt; going to tweaking whatever system I&amp;rsquo;m using at the time&amp;ndash;no question. My hope is that my time is better spent improving a &lt;em&gt;product&lt;/em&gt; of my own, rather that using that time evaluating others&amp;rsquo; work and coming up with schemes to plug things together, move data to and fro, and otherwise smooth things out. It&amp;rsquo;s a chance to explore new technology, try out UI patterns for real (by using them daily), and hopefully build a thing that is, above all, something I&amp;rsquo;m happy with.&lt;/p&gt;</description>
			</item>
			<item>
				<title>Brokenmold: A New Hope</title>
				<link>https://kalafut.net/posts/2015-01-16-a-new-hope/</link>
				<pubDate>Fri, 16 Jan 2015 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2015-01-16-a-new-hope/</guid>
				<description>&lt;p&gt;My first post to this blog was a little over a year ago. I had hoped to post much more during the year, but that clearly didn&amp;rsquo;t happen. After reviewing things, I decided the only way to fix them was to change the blogging software. OK, not really. I&amp;rsquo;ll do no retrospective other than to say that post frequency was less than I wanted.&lt;/p&gt;&#xA;&lt;p&gt;But, I did change the blogging software! Here are a few reasons why the new setup should be &lt;em&gt;no worse&lt;/em&gt; than the previous one:&lt;/p&gt;</description>
			</item>
			<item>
				<title>Hello Jekyll</title>
				<link>https://kalafut.net/posts/2015-01-12-hello-jekyll/</link>
				<pubDate>Mon, 12 Jan 2015 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2015-01-12-hello-jekyll/</guid>
				<description>&lt;p&gt;I want to move this thing to Github, so say hello to &lt;a href=&#34;http://jekyllrb.com&#34;&gt;Jekyll&lt;/a&gt;. I&amp;rsquo;m not going&#xA;to bother waiting for things to settle into their final form before pushing it, so&#xA;enjoy a bunch of boilerplate Jekyll look, free, and content for a bit. It will at&#xA;least provide a modicum of incentive to wrap up the migration.&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;http://brokenmold.net/blog/2014/10/09/hello-konigspress/&#34;&gt;Königspress&lt;/a&gt;, we hardly knew ya.&lt;/p&gt;</description>
			</item>
			<item>
				<title>Hello Königspress</title>
				<link>https://kalafut.net/posts/2014-10-09-hello-konigspress/</link>
				<pubDate>Thu, 09 Oct 2014 22:19:55 -0700</pubDate>
				<guid>https://kalafut.net/posts/2014-10-09-hello-konigspress/</guid>
				<description>&lt;p&gt;Say hello to the &lt;a href=&#34;https://github.com/TheChymera/Koenigspress&#34;&gt;Königspress&lt;/a&gt; theme. Similiar to &lt;a href=&#34;https://github.com/elisehein/Pageturner&#34;&gt;Pageturner&lt;/a&gt;, but better (and maintained!).&lt;/p&gt;</description>
			</item>
			<item>
				<title>Chromecast and IGMP</title>
				<link>https://kalafut.net/posts/2014-05-16-chromecast-and-igmp/</link>
				<pubDate>Fri, 16 May 2014 23:01:54 -0700</pubDate>
				<guid>https://kalafut.net/posts/2014-05-16-chromecast-and-igmp/</guid>
				<description>&lt;p&gt;I bought a Chromecast shortly after it debut and enjoyed months of great service. Lately I&amp;rsquo;ve been&#xA;suffering through months of crappy service, and have spent a lot of time troubleshooting the thing.&lt;/p&gt;&#xA;&lt;p&gt;The main symptom: the Chromecast icon would drop off of apps shortly after connecting to them. This&#xA;was only occuring when I had the device plugged into the TV for some reason.&lt;/p&gt;&#xA;&lt;p&gt;There are a &lt;em&gt;lot&lt;/em&gt; of Chromecast support forums and I tried a ton of stuff the resulting in no change,&#xA;or a moment of hope followed by disappointment. Tonight I was reading an ASUS forum and just started&#xA;messing around with router settings on my RT-N56U and found that turning off the 5Ghz radio and turning&#xA;on &amp;ldquo;IGMP Snooping&amp;rdquo; for 2.4GHz has dramatically improved the stability of the connection.&lt;/p&gt;</description>
			</item>
			<item>
				<title>Meet Laura</title>
				<link>https://kalafut.net/posts/2014-05-05-meet-laura/</link>
				<pubDate>Mon, 05 May 2014 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2014-05-05-meet-laura/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://blog.kalafut.net/index.html%3Fp=316.html&#34;&gt;https://blog.kalafut.net/index.html%3Fp=316.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://blog.kalafut.net/index.html%3Fp=316.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Caveat when adding fragments via XML</title>
				<link>https://kalafut.net/posts/2014-04-20-caveat-when-adding-fragments-via-xml/</link>
				<pubDate>Sun, 20 Apr 2014 14:07:44 -0700</pubDate>
				<guid>https://kalafut.net/posts/2014-04-20-caveat-when-adding-fragments-via-xml/</guid>
				<description>&lt;p&gt;I spent an hour trying to figure our why, after replacing or removing a Fragment, the UI of the&#xA;fragment persisted (even though subsequent attempts to remove it would fail because it was&#xA;supposedly already gone).&lt;/p&gt;&#xA;&lt;p&gt;The answer was finally found at the bottom of the &lt;a href=&#34;http://developer.android.com/training/basics/fragments/creating.html&#34;&gt;Creating a Fragment&lt;/a&gt; lesson.&lt;/p&gt;&#xA;&lt;p&gt;&amp;ldquo;Note: When you add a fragment to an activity layout by defining the fragment in the layout XML file, you cannot remove the fragment at runtime. If you plan to swap your fragments in and out during user interaction, you must add the fragment to the activity when the activity first starts, as shown in the next lesson.&amp;rdquo;&lt;/p&gt;</description>
			</item>
			<item>
				<title>Don&#39;t let Emulators Kill Your Battery</title>
				<link>https://kalafut.net/posts/2014-04-18-dont-let-emulators-kill-your-battery/</link>
				<pubDate>Fri, 18 Apr 2014 08:32:46 -0700</pubDate>
				<guid>https://kalafut.net/posts/2014-04-18-dont-let-emulators-kill-your-battery/</guid>
				<description>&lt;p&gt;Few things on my Macbook Pro consume as much power, and make the whole housing heat up, like a running&#xA;emulator. I&amp;rsquo;m doing Android work and an emulator is essential, but I don&amp;rsquo;t like the power sapping side&#xA;effects. I could shut it down, but the start-up time is long enough to become a distraction. But I really&#xA;don&amp;rsquo;t need to &lt;em&gt;use&lt;/em&gt; it all the time that it&amp;rsquo;s powered up either.&lt;/p&gt;</description>
			</item>
			<item>
				<title>Write Code Every Day</title>
				<link>https://kalafut.net/posts/2014-04-10-write-code-every-day/</link>
				<pubDate>Thu, 10 Apr 2014 19:33:54 -0700</pubDate>
				<guid>https://kalafut.net/posts/2014-04-10-write-code-every-day/</guid>
				<description>&lt;p&gt;&lt;a href=&#34;http://ejohn.org/blog/write-code-every-day/&#34;&gt;http://ejohn.org/blog/write-code-every-day/&lt;/a&gt;&lt;/p&gt;</description>
			</item>
			<item>
				<title>The Strange World of Cable TV</title>
				<link>https://kalafut.net/posts/2014-03-26-the-strange-world-of-cable-tv/</link>
				<pubDate>Wed, 26 Mar 2014 23:45:38 -0700</pubDate>
				<guid>https://kalafut.net/posts/2014-03-26-the-strange-world-of-cable-tv/</guid>
				<description>&lt;p&gt;I just installed and activated a Comcast DVR. This was an annoying and time consuming process (Comcast doesn&amp;rsquo;t really know what equipment&#xA;they ship you, manuals are wrong, support is hopeless), but the real shock was when everything was done and working.&lt;/p&gt;&#xA;&lt;p&gt;I&amp;rsquo;m doing this for one reason: my parents will be staying with us for a little while, and they&amp;rsquo;re addicted to cable/satellite TV. It they don&amp;rsquo;t&#xA;get it, we&amp;rsquo;ll all be miserable.&lt;/p&gt;</description>
			</item>
			<item>
				<title>Before Baby Girl Arrives</title>
				<link>https://kalafut.net/posts/2014-02-16-before-baby-girl-arrives/</link>
				<pubDate>Sun, 16 Feb 2014 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2014-02-16-before-baby-girl-arrives/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://blog.kalafut.net/index.html%3Fp=308.html&#34;&gt;https://blog.kalafut.net/index.html%3Fp=308.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://blog.kalafut.net/index.html%3Fp=308.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>.viminfo permissions</title>
				<link>https://kalafut.net/posts/2014-02-08-dot-viminfo-permissions/</link>
				<pubDate>Sat, 08 Feb 2014 15:48:36 -0800</pubDate>
				<guid>https://kalafut.net/posts/2014-02-08-dot-viminfo-permissions/</guid>
				<description>&lt;p&gt;I wondered why my Vim command history wasn&amp;rsquo;t being preserved between sessions.&lt;/p&gt;&#xA;&lt;p&gt;Root cause: &lt;code&gt;~/.viminfo&lt;/code&gt;, for whatever&#xA;reason, was owned by root. I deleted it, restarted Vim, and all is now good.&lt;/p&gt;</description>
			</item>
			<item>
				<title>Locking down Postfix</title>
				<link>https://kalafut.net/posts/2014-02-06-locking-down-postfix/</link>
				<pubDate>Thu, 06 Feb 2014 20:07:36 -0800</pubDate>
				<guid>https://kalafut.net/posts/2014-02-06-locking-down-postfix/</guid>
				<description>&lt;p&gt;I run &lt;a href=&#34;http://www.postfix.org/&#34;&gt;Postfix&lt;/a&gt; on my VPS&amp;rsquo;s exclusively to send mail. They&amp;rsquo;re configured to route mail to&#xA;&lt;a href=&#34;http://www.mailgun.com/&#34;&gt;Mailgun&lt;/a&gt;, and I&amp;rsquo;ve made sure that they&amp;rsquo;re not an open relay. I also&#xA;receive a daily logwatch email and it doesn&amp;rsquo;t help to have a bunch of this:&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;Feb  4 18:31:47 alpha postfix/smtpd[14138]: connect from unknown[63.115.40.56]&#xA;Feb  4 18:31:47 alpha postfix/smtpd[14138]: NOQUEUE: reject: RCPT from unknown[63.115.40.56]: 554 5.7.1 &amp;lt;therichsheickc@&#xA;yahoo.com&amp;gt;: Relay access denied; from=&amp;lt;test@live.com&amp;gt; to=&amp;lt;therichsheickc@yahoo.com&amp;gt; proto=ESMTP helo=&amp;lt;[192.168.2.33]&amp;gt;&#xA;Feb  4 18:46:31 alpha postfix/smtpd[14153]: connect from client002.c039228.customers.cinergycom.net[69.196.196.138]&#xA;Feb  4 18:46:31 alpha postfix/smtpd[14153]: NOQUEUE: reject: RCPT from client002.c039228.customers.cinergycom.net[69.196&#xA;.196.138]: 554 5.7.1 &amp;lt;therichsheickc@yahoo.com&amp;gt;: Relay access denied; from=&amp;lt;test@live.com&amp;gt; to=&amp;lt;therichsheickc@yahoo.com&amp;gt;&#xA; proto=ESMTP helo=&amp;lt;[192.168.2.33]&amp;gt;&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;I had a couple of options. This first is to modify &lt;a href=&#34;http://www.postfix.org/master.5.html&#34;&gt;master.cf&lt;/a&gt; to deny SMTP access from &amp;ldquo;inet&amp;rdquo;. I tried it and it did work, but I didn&amp;rsquo;t really care for the solution since it didn&amp;rsquo;t gel that well with my Ansible configuration for the host. The other option was to just lock down port 25, period. I was down the road of re-re-re-acquainting myself with &lt;a href=&#34;http://en.wikipedia.org/wiki/Iptables&#34;&gt;iptables&lt;/a&gt;&amp;ndash;something I do seldom and immediate forget&amp;ndash;and then I came across&#xA;&lt;a href=&#34;https://help.ubuntu.com/community/UFW&#34;&gt;ufw&lt;/a&gt;. The cryptic iptables syntax is replaced with:&lt;/p&gt;</description>
			</item>
			<item>
				<title>Bootstrap 3 Grid</title>
				<link>https://kalafut.net/posts/2014-02-02-bootstrap-3-grid/</link>
				<pubDate>Sun, 02 Feb 2014 19:12:49 -0800</pubDate>
				<guid>https://kalafut.net/posts/2014-02-02-bootstrap-3-grid/</guid>
				<description>&lt;p&gt;If you&amp;rsquo;ve used Bootstrap 2.x and need a quick introduction to Bootstrap 3&amp;rsquo;s new&#xA;&amp;ldquo;mobile first&amp;rdquo; grid system, your best read is &lt;a href=&#34;http://www.helloerik.com/bootstrap-3-grid-introduction&#34;&gt;Erik Flower&amp;rsquo;s introduction&lt;/a&gt;.&lt;/p&gt;</description>
			</item>
			<item>
				<title>Baking for Chinese New Year</title>
				<link>https://kalafut.net/posts/2014-01-26-baking-for-chinese-new-year/</link>
				<pubDate>Sun, 26 Jan 2014 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2014-01-26-baking-for-chinese-new-year/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://blog.kalafut.net/index.html%3Fp=299.html&#34;&gt;https://blog.kalafut.net/index.html%3Fp=299.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://blog.kalafut.net/index.html%3Fp=299.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>On Ansible and Fabric</title>
				<link>https://kalafut.net/posts/2014-01-20-on-ansible-and-fabric/</link>
				<pubDate>Mon, 20 Jan 2014 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2014-01-20-on-ansible-and-fabric/</guid>
				<description>&lt;p&gt;It&amp;rsquo;s very easy for me to become paralyzed by the pursuit of a &amp;ldquo;best practice&amp;rdquo;. In some cases there&#xA;isn&amp;rsquo;t much risk. Coding conventions, for example. When the world has decided that &lt;code&gt;===&lt;/code&gt; is better than&#xA;&lt;code&gt;==&lt;/code&gt; most of the time in Javascript, I&amp;rsquo;m happy to go along with it. But other areas are trickier. I&#xA;can easily get really caught up in web framework and database choices. Another area is deployment,&#xA;but I&amp;rsquo;ve recently had an epiphany that I&amp;rsquo;ll decribe.&lt;/p&gt;</description>
			</item>
			<item>
				<title>Introducing Telix</title>
				<link>https://kalafut.net/posts/2014-01-11-introducing-telix/</link>
				<pubDate>Sat, 11 Jan 2014 13:22:41 -0800</pubDate>
				<guid>https://kalafut.net/posts/2014-01-11-introducing-telix/</guid>
				<description>&lt;p&gt;A few months ago I started a side project. A few days ago I actually got the thing working&#xA;in the most basic ways. It is a web application and I plan to launch it as a low cost (but &amp;gt; $0) service.&#xA;I have a lot more work ahead of me and plan to chronicle issues here. I&amp;rsquo;m keeping the details wrapped up for the time&#xA;being, but I&amp;rsquo;ll say this much:&lt;/p&gt;</description>
			</item>
			<item>
				<title>tmux &#43; iterm2</title>
				<link>https://kalafut.net/posts/2014-01-07-tmux-plus-iterm2/</link>
				<pubDate>Tue, 07 Jan 2014 21:34:40 -0800</pubDate>
				<guid>https://kalafut.net/posts/2014-01-07-tmux-plus-iterm2/</guid>
				<description>&lt;p&gt;Both &lt;a href=&#34;http://tmux.sourceforge.net/&#34;&gt;tmux&lt;/a&gt; and &lt;a href=&#34;http://www.iterm2.com/&#34;&gt;iterm2 &lt;/a&gt; are great, but the default interaction will have iterm&#xA;scrolling your entire tmux window off the screen which is probably not what you&#xA;want. To use iterm&amp;rsquo;s scrolling within tmux, visit &lt;code&gt;Preferences -&amp;gt; Profiles -&amp;gt; Terminal&lt;/code&gt; and check:&lt;/p&gt;&#xA;&lt;blockquote&gt;&#xA;&lt;p&gt;Save lines to scrollback when an app status bar is present&lt;/p&gt;&#xA;&lt;/blockquote&gt;&#xA;&lt;p&gt;Thanks to &lt;a href=&#34;http://dan.carley.co/blog/2013/01/11/tmux-scrollback-with-iterm2/&#34;&gt;Dan Carley&lt;/a&gt; for this tip.&lt;/p&gt;</description>
			</item>
			<item>
				<title>Put That Nozzle Down</title>
				<link>https://kalafut.net/posts/2014-01-07-put-that-nozzle-down/</link>
				<pubDate>Tue, 07 Jan 2014 20:10:39 -0800</pubDate>
				<guid>https://kalafut.net/posts/2014-01-07-put-that-nozzle-down/</guid>
				<description>&lt;p&gt;I&amp;rsquo;ve lived in Oregon for almost four years and love it. It&amp;rsquo;s definitely a big improvement&#xA;over Illinois. There are plenty of things that are a bit different from what I&amp;rsquo;m used to&#xA;which is part of what has made the move great, but then there are things that are just wrong.&#xA;Today I give you:&lt;/p&gt;&#xA;&lt;p&gt;ORS 480.315 - &lt;em&gt;it is in the public interest to maintain a prohibition on the self-service dispensing of Class 1 flammable liquids at retail.&lt;/em&gt;&lt;/p&gt;</description>
			</item>
			<item>
				<title>Z</title>
				<link>https://kalafut.net/posts/2014-01-05-z/</link>
				<pubDate>Sun, 05 Jan 2014 13:19:55 -0800</pubDate>
				<guid>https://kalafut.net/posts/2014-01-05-z/</guid>
				<description>&lt;p&gt;I spend fair amount of time on the command line, and one of the most useful tools I&amp;rsquo;ve come&#xA;across is a little script called &amp;lsquo;&lt;a href=&#34;https://github.com/rupa/z&#34;&gt;Z&lt;/a&gt;&amp;rsquo;. Here&amp;rsquo;s what it does in a nutshell:&lt;/p&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;Intercepts call to &lt;code&gt;cd&lt;/code&gt; and keeps track of where you&amp;rsquo;re &lt;code&gt;cd&lt;/code&gt;&amp;lsquo;ing to, when, and how often.&lt;/li&gt;&#xA;&lt;li&gt;Provides a &lt;code&gt;z&lt;/code&gt; command that accepts a flexible regex syntax and will &lt;code&gt;cd&lt;/code&gt; to the best directory&#xA;based on Z&amp;rsquo;s &amp;ldquo;frecency&amp;rdquo; algorithm:&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;blockquote&gt;&#xA;&lt;p&gt;Frecency is a portmanteau of &amp;lsquo;recent&amp;rsquo; and &amp;lsquo;frequency&amp;rsquo;. It is a weighted&#xA;rank  that depends on how often and how recently something occurred. As&#xA;far as I know, Mozilla came up with the term.&lt;/p&gt;</description>
			</item>
			<item>
				<title>2014</title>
				<link>https://kalafut.net/posts/2014-01-05-2014/</link>
				<pubDate>Sun, 05 Jan 2014 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2014-01-05-2014/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://blog.kalafut.net/index.html%3Fp=297.html&#34;&gt;https://blog.kalafut.net/index.html%3Fp=297.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://blog.kalafut.net/index.html%3Fp=297.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Server and a Movie</title>
				<link>https://kalafut.net/posts/2014-01-03-server-and-a-movie/</link>
				<pubDate>Fri, 03 Jan 2014 21:57:49 -0800</pubDate>
				<guid>https://kalafut.net/posts/2014-01-03-server-and-a-movie/</guid>
				<description>&lt;p&gt;After a couple hours of fun messing with &lt;a href=&#34;https://www.ansibleworks.com/&#34;&gt;ansible&lt;/a&gt; and &lt;a href=&#34;https://nodejs.org/&#34;&gt;node&lt;/a&gt; deployments, I&#xA;think the rest of Friday night would be better spent watching&#xA;&lt;a href=&#34;https://en.wikipedia.org/wiki/Grave_of_the_Fireflies&#34;&gt;Grave of the Fireflies&lt;/a&gt;.&lt;/p&gt;&#xA;&lt;p&gt;According to &lt;a href=&#34;https://www.imdb.com/title/tt0095327/reviews?ref_=tt_ov_rt&#34;&gt;reviews&lt;/a&gt;, I should&#xA;be a wreck in 90 minutes.&lt;/p&gt;&#xA;&lt;p&gt;&lt;strong&gt;Update:&lt;/strong&gt; yeah, it was depressing.&lt;/p&gt;&#xA;&lt;p&gt;&lt;img src=&#34;https://upload.wikimedia.org/wikipedia/en/a/a5/Grave_of_the_Fireflies_Japanese_poster.jpg&#34; alt=&#34;Poster&#34;&gt;&lt;/p&gt;</description>
			</item>
			<item>
				<title>zsh and Rake</title>
				<link>https://kalafut.net/posts/2014-01-04-zsh-and-rake/</link>
				<pubDate>Sat, 04 Jan 2014 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2014-01-04-zsh-and-rake/</guid>
				<description>&lt;p&gt;Octopress offers a ton of useful rake tasks, but they&amp;rsquo;re somewhat hobbled&#xA;if using &lt;a href=&#34;http://www.zsh.org/&#34;&gt;zsh&lt;/a&gt; due to globbing. There is an &lt;a href=&#34;https://github.com/imathis/octopress/issues/117&#34;&gt;easy fix&lt;/a&gt;:&lt;/p&gt;&#xA;&lt;p&gt;&lt;code&gt;alias rake=&amp;quot;noglob rake&amp;quot;&lt;/code&gt;&lt;/p&gt;</description>
			</item>
			<item>
				<title>Disabling some zsh helpers</title>
				<link>https://kalafut.net/posts/2014-01-02-disabling-some-zsh-helpers/</link>
				<pubDate>Thu, 02 Jan 2014 19:50:01 -0800</pubDate>
				<guid>https://kalafut.net/posts/2014-01-02-disabling-some-zsh-helpers/</guid>
				<description>&lt;p&gt;Two zsh features that are usually helpful but sometimes not: globbing, and autocorrect.&#xA;They&amp;rsquo;re easily disabled or restricted.&lt;/p&gt;&#xA;&lt;p&gt;Globbing can be a nuisance with some commands. For example, Octopress offers a host&#xA;of useful rake tasks such as:&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;rake new_post[&amp;quot;Disabling some zsh helpers&amp;quot;]&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;zsh will apply expansion rules to this command causing it to fail. To disable globbing for a single command,&#xA;prefix with it &lt;code&gt;noglob&lt;/code&gt;. Or make an alias for a command you never want to use with globbing:&lt;/p&gt;</description>
			</item>
			<item>
				<title>Determine a unique selector with Firefox</title>
				<link>https://kalafut.net/posts/2014-01-01-determine-a-using-html-node-with-firefox/</link>
				<pubDate>Wed, 01 Jan 2014 10:09:26 -0800</pubDate>
				<guid>https://kalafut.net/posts/2014-01-01-determine-a-using-html-node-with-firefox/</guid>
				<description>&lt;p&gt;I use &lt;a href=&#34;http://splinter.cobrateam.info/&#34;&gt;splinter&lt;/a&gt; to automate downloading information from banks and&#xA;brokerages. It works well. Those sites are usual horribly designed, outdated, and a royal pain to navigate.&#xA;Suffering through the one-time process of developing a script to automated dealing with them is well worth it.&lt;/p&gt;&#xA;&lt;p&gt;Usually the script development is simply done by inspecting DOM element ids or names. But some of these bank&#xA;sites are so bad, you&amp;rsquo;re left with trying to send a click event to an image buried in a table with little in&#xA;the way of navigation helpers. In this case, Firefox&amp;rsquo;s &lt;strong&gt;Copy Unique Selector&lt;/strong&gt; works well.  Just inspect the&#xA;element and access the function via the dropdown:&lt;/p&gt;</description>
			</item>
			<item>
				<title>An Exceptional First Post</title>
				<link>https://kalafut.net/posts/2013-12-31-an-exceptional-first-post/</link>
				<pubDate>Tue, 31 Dec 2013 09:01:32 -0800</pubDate>
				<guid>https://kalafut.net/posts/2013-12-31-an-exceptional-first-post/</guid>
				<description>&lt;p&gt;In 2005 &lt;a href=&#34;http://nz.kalafut.net/?p=3&#34;&gt;I started a blog&lt;/a&gt;. I was taken in by the blogger.com platform (though&#xA;quickly moved to Wordpress) and the surge in personal blogs, and it coincided with our big move to New&#xA;Zealand. The point of that blog was to document and share our overseas adventure, mainly with friends and&#xA;family. By all accounts that worked well.  People liked reading the blog, often left comments, and I very much&#xA;like having a diary of those years.&lt;/p&gt;</description>
			</item>
			<item>
				<title>Malaysian Curry Puffs (Karipap)</title>
				<link>https://kalafut.net/posts/2013-09-08-malaysian-curry-puffs-karipap/</link>
				<pubDate>Sun, 08 Sep 2013 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2013-09-08-malaysian-curry-puffs-karipap/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://blog.kalafut.net/index.html%3Fp=279.html&#34;&gt;https://blog.kalafut.net/index.html%3Fp=279.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://blog.kalafut.net/index.html%3Fp=279.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>The Wire</title>
				<link>https://kalafut.net/posts/2013-08-22-the-wire/</link>
				<pubDate>Thu, 22 Aug 2013 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2013-08-22-the-wire/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://blog.kalafut.net/index.html%3Fp=273.html&#34;&gt;https://blog.kalafut.net/index.html%3Fp=273.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://blog.kalafut.net/index.html%3Fp=273.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>There’s slow, and then there’s QSL slow</title>
				<link>https://kalafut.net/posts/2013-08-19-theres-slow-and-then-theres-qsl-slow/</link>
				<pubDate>Mon, 19 Aug 2013 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2013-08-19-theres-slow-and-then-theres-qsl-slow/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://blog.kalafut.net/index.html%3Fp=269.html&#34;&gt;https://blog.kalafut.net/index.html%3Fp=269.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://blog.kalafut.net/index.html%3Fp=269.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Facebook, You Win</title>
				<link>https://kalafut.net/posts/2013-07-24-facebook-you-win/</link>
				<pubDate>Wed, 24 Jul 2013 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2013-07-24-facebook-you-win/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://blog.kalafut.net/index.html%3Fp=245.html&#34;&gt;https://blog.kalafut.net/index.html%3Fp=245.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://blog.kalafut.net/index.html%3Fp=245.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>“No Such Agency”  Those were the days!</title>
				<link>https://kalafut.net/posts/2013-06-10-no-such-agency-those-were-the-days/</link>
				<pubDate>Mon, 10 Jun 2013 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2013-06-10-no-such-agency-those-were-the-days/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://blog.kalafut.net/index.html%3Fp=233.html&#34;&gt;https://blog.kalafut.net/index.html%3Fp=233.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://blog.kalafut.net/index.html%3Fp=233.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Strawberry Picking at Green Bridge</title>
				<link>https://kalafut.net/posts/2013-05-25-strawberry-picking-at-green-bridge/</link>
				<pubDate>Sat, 25 May 2013 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2013-05-25-strawberry-picking-at-green-bridge/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://blog.kalafut.net/index.html%3Fp=217.html&#34;&gt;https://blog.kalafut.net/index.html%3Fp=217.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://blog.kalafut.net/index.html%3Fp=217.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Ben’s Poem</title>
				<link>https://kalafut.net/posts/2013-05-24-bens-poem/</link>
				<pubDate>Fri, 24 May 2013 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2013-05-24-bens-poem/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://blog.kalafut.net/index.html%3Fp=201.html&#34;&gt;https://blog.kalafut.net/index.html%3Fp=201.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://blog.kalafut.net/index.html%3Fp=201.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Paris Day 5</title>
				<link>https://kalafut.net/posts/2013-05-06-paris-day-5/</link>
				<pubDate>Mon, 06 May 2013 00:04:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2013-05-06-paris-day-5/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://blog.kalafut.net/index.html%3Fp=191.html&#34;&gt;https://blog.kalafut.net/index.html%3Fp=191.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://blog.kalafut.net/index.html%3Fp=191.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Paris Day 4</title>
				<link>https://kalafut.net/posts/2013-05-06-paris-day-4/</link>
				<pubDate>Mon, 06 May 2013 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2013-05-06-paris-day-4/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://blog.kalafut.net/index.html%3Fp=187.html&#34;&gt;https://blog.kalafut.net/index.html%3Fp=187.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://blog.kalafut.net/index.html%3Fp=187.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Paris Day 3</title>
				<link>https://kalafut.net/posts/2013-05-02-paris-day-3/</link>
				<pubDate>Thu, 02 May 2013 00:02:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2013-05-02-paris-day-3/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://blog.kalafut.net/index.html%3Fp=184.html&#34;&gt;https://blog.kalafut.net/index.html%3Fp=184.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://blog.kalafut.net/index.html%3Fp=184.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Paris Day 2</title>
				<link>https://kalafut.net/posts/2013-05-02-paris-day-2/</link>
				<pubDate>Thu, 02 May 2013 00:01:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2013-05-02-paris-day-2/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://blog.kalafut.net/index.html%3Fp=182.html&#34;&gt;https://blog.kalafut.net/index.html%3Fp=182.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://blog.kalafut.net/index.html%3Fp=182.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Paris Day 1</title>
				<link>https://kalafut.net/posts/2013-05-02-paris-day-1/</link>
				<pubDate>Thu, 02 May 2013 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2013-05-02-paris-day-1/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://blog.kalafut.net/index.html%3Fp=180.html&#34;&gt;https://blog.kalafut.net/index.html%3Fp=180.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://blog.kalafut.net/index.html%3Fp=180.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Indian Fare on Sunday Night</title>
				<link>https://kalafut.net/posts/2013-04-21-indian-fare-on-sunday-night/</link>
				<pubDate>Sun, 21 Apr 2013 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2013-04-21-indian-fare-on-sunday-night/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://blog.kalafut.net/index.html%3Fp=171.html&#34;&gt;https://blog.kalafut.net/index.html%3Fp=171.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://blog.kalafut.net/index.html%3Fp=171.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Articles with Editorial Errors</title>
				<link>https://kalafut.net/posts/2013-04-15-articles-with-editorial-errors/</link>
				<pubDate>Mon, 15 Apr 2013 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2013-04-15-articles-with-editorial-errors/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://blog.kalafut.net/index.html%3Fp=160.html&#34;&gt;https://blog.kalafut.net/index.html%3Fp=160.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://blog.kalafut.net/index.html%3Fp=160.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>15 mins Dinner Plan</title>
				<link>https://kalafut.net/posts/2013-02-02-15-mins-dinner-plan/</link>
				<pubDate>Sat, 02 Feb 2013 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2013-02-02-15-mins-dinner-plan/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://blog.kalafut.net/index.html%3Fp=154.html&#34;&gt;https://blog.kalafut.net/index.html%3Fp=154.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://blog.kalafut.net/index.html%3Fp=154.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Aaron Swartz</title>
				<link>https://kalafut.net/posts/2013-01-13-aaron-swartz/</link>
				<pubDate>Sun, 13 Jan 2013 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2013-01-13-aaron-swartz/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://blog.kalafut.net/index.html%3Fp=144.html&#34;&gt;https://blog.kalafut.net/index.html%3Fp=144.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://blog.kalafut.net/index.html%3Fp=144.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Life post-Facebook, Nine Months On</title>
				<link>https://kalafut.net/posts/2012-12-26-life-post-facebook-nine-months-on/</link>
				<pubDate>Wed, 26 Dec 2012 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2012-12-26-life-post-facebook-nine-months-on/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://blog.kalafut.net/index.html%3Fp=130.html&#34;&gt;https://blog.kalafut.net/index.html%3Fp=130.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://blog.kalafut.net/index.html%3Fp=130.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>DIY Project 1:  Understairway storage</title>
				<link>https://kalafut.net/posts/2012-09-15-diy-project-1-understairway-storage/</link>
				<pubDate>Sat, 15 Sep 2012 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2012-09-15-diy-project-1-understairway-storage/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://blog.kalafut.net/index.html%3Fp=112.html&#34;&gt;https://blog.kalafut.net/index.html%3Fp=112.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://blog.kalafut.net/index.html%3Fp=112.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>PMP – Done – Checked</title>
				<link>https://kalafut.net/posts/2012-07-09-pmp-done-checked/</link>
				<pubDate>Mon, 09 Jul 2012 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2012-07-09-pmp-done-checked/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://blog.kalafut.net/index.html%3Fp=105.html&#34;&gt;https://blog.kalafut.net/index.html%3Fp=105.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://blog.kalafut.net/index.html%3Fp=105.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Taking leave</title>
				<link>https://kalafut.net/posts/2012-01-08-taking-leave/</link>
				<pubDate>Sun, 08 Jan 2012 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2012-01-08-taking-leave/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://blog.kalafut.net/index.html%3Fp=70.html&#34;&gt;https://blog.kalafut.net/index.html%3Fp=70.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://blog.kalafut.net/index.html%3Fp=70.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Back to the Blog</title>
				<link>https://kalafut.net/posts/2011-12-24-back-to-the-blog/</link>
				<pubDate>Sat, 24 Dec 2011 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2011-12-24-back-to-the-blog/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://blog.kalafut.net/index.html%3Fp=52.html&#34;&gt;https://blog.kalafut.net/index.html%3Fp=52.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://blog.kalafut.net/index.html%3Fp=52.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Chocolate Butter Cake with Brandy?</title>
				<link>https://kalafut.net/posts/2011-12-23-chocolate-butter-cake-with-brandy/</link>
				<pubDate>Fri, 23 Dec 2011 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2011-12-23-chocolate-butter-cake-with-brandy/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://blog.kalafut.net/index.html%3Fp=37.html&#34;&gt;https://blog.kalafut.net/index.html%3Fp=37.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://blog.kalafut.net/index.html%3Fp=37.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Last Post</title>
				<link>https://kalafut.net/posts/2010-06-04-last-post/</link>
				<pubDate>Fri, 04 Jun 2010 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2010-06-04-last-post/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://pd.kalafut.net/index.html%3Fp=463.html&#34;&gt;https://pd.kalafut.net/index.html%3Fp=463.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://pd.kalafut.net/index.html%3Fp=463.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Beginnings of a new adventure</title>
				<link>https://kalafut.net/posts/2010-05-12-beginnings-of-a-new-adventure/</link>
				<pubDate>Wed, 12 May 2010 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2010-05-12-beginnings-of-a-new-adventure/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://blog.kalafut.net/index.html%3Fp=16.html&#34;&gt;https://blog.kalafut.net/index.html%3Fp=16.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://blog.kalafut.net/index.html%3Fp=16.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Peoria to Salem</title>
				<link>https://kalafut.net/posts/2010-05-05-peoria-to-salem/</link>
				<pubDate>Wed, 05 May 2010 00:01:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2010-05-05-peoria-to-salem/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://pd.kalafut.net/index.html%3Fp=446&amp;amp;cpage=1.html&#34;&gt;https://pd.kalafut.net/index.html%3Fp=446&amp;amp;cpage=1.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://pd.kalafut.net/index.html%3Fp=446&amp;cpage=1.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Bye-bye Peoria</title>
				<link>https://kalafut.net/posts/2010-05-05-bye-bye-peoria/</link>
				<pubDate>Wed, 05 May 2010 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2010-05-05-bye-bye-peoria/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://pd.kalafut.net/index.html%3Fp=444.html&#34;&gt;https://pd.kalafut.net/index.html%3Fp=444.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://pd.kalafut.net/index.html%3Fp=444.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Last Night in P-town</title>
				<link>https://kalafut.net/posts/2010-05-04-last-night-in-p-town/</link>
				<pubDate>Tue, 04 May 2010 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2010-05-04-last-night-in-p-town/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://pd.kalafut.net/index.html%3Fp=441.html&#34;&gt;https://pd.kalafut.net/index.html%3Fp=441.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://pd.kalafut.net/index.html%3Fp=441.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>urBOOKS.org</title>
				<link>https://kalafut.net/posts/2010-03-09-urbooksorg/</link>
				<pubDate>Tue, 09 Mar 2010 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2010-03-09-urbooksorg/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://pd.kalafut.net/index.html%3Fp=436.html&#34;&gt;https://pd.kalafut.net/index.html%3Fp=436.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://pd.kalafut.net/index.html%3Fp=436.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Package from Home</title>
				<link>https://kalafut.net/posts/2010-02-14-package-from-home/</link>
				<pubDate>Sun, 14 Feb 2010 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2010-02-14-package-from-home/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://pd.kalafut.net/index.html%3Fp=431&amp;amp;cpage=1.html&#34;&gt;https://pd.kalafut.net/index.html%3Fp=431&amp;amp;cpage=1.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://pd.kalafut.net/index.html%3Fp=431&amp;cpage=1.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Freezing Rain</title>
				<link>https://kalafut.net/posts/2010-01-20-freezing-rain/</link>
				<pubDate>Wed, 20 Jan 2010 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2010-01-20-freezing-rain/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://pd.kalafut.net/index.html%3Fp=428.html&#34;&gt;https://pd.kalafut.net/index.html%3Fp=428.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://pd.kalafut.net/index.html%3Fp=428.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>HAPPY NEW YEAR!!! 2010</title>
				<link>https://kalafut.net/posts/2010-01-01-happy-new-year-2010/</link>
				<pubDate>Fri, 01 Jan 2010 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2010-01-01-happy-new-year-2010/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://pd.kalafut.net/index.html%3Fp=422.html&#34;&gt;https://pd.kalafut.net/index.html%3Fp=422.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://pd.kalafut.net/index.html%3Fp=422.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>4 months till Spring</title>
				<link>https://kalafut.net/posts/2009-12-15-4-months-till-spring/</link>
				<pubDate>Tue, 15 Dec 2009 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2009-12-15-4-months-till-spring/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://pdg.kalafut.net/index.html%3Fp=159.html&#34;&gt;https://pdg.kalafut.net/index.html%3Fp=159.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://pdg.kalafut.net/index.html%3Fp=159.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Parsnip</title>
				<link>https://kalafut.net/posts/2009-11-07-parsnip/</link>
				<pubDate>Sat, 07 Nov 2009 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2009-11-07-parsnip/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://pdg.kalafut.net/index.html%3Fp=150.html&#34;&gt;https://pdg.kalafut.net/index.html%3Fp=150.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://pdg.kalafut.net/index.html%3Fp=150.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Fall at Tanner’s Orchard</title>
				<link>https://kalafut.net/posts/2009-10-10-fall-at-tanners-orchard/</link>
				<pubDate>Sat, 10 Oct 2009 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2009-10-10-fall-at-tanners-orchard/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://pd.kalafut.net/index.html%3Fp=414&amp;amp;cpage=1.html&#34;&gt;https://pd.kalafut.net/index.html%3Fp=414&amp;amp;cpage=1.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://pd.kalafut.net/index.html%3Fp=414&amp;cpage=1.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Summer Collection</title>
				<link>https://kalafut.net/posts/2009-08-29-summer-collection/</link>
				<pubDate>Sat, 29 Aug 2009 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2009-08-29-summer-collection/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://pdg.kalafut.net/index.html%3Fp=129.html&#34;&gt;https://pdg.kalafut.net/index.html%3Fp=129.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://pdg.kalafut.net/index.html%3Fp=129.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Snapdragons from the garden</title>
				<link>https://kalafut.net/posts/2009-06-20-snapdragons-from-the-garden/</link>
				<pubDate>Sat, 20 Jun 2009 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2009-06-20-snapdragons-from-the-garden/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://pdg.kalafut.net/index.html%3Fp=119.html&#34;&gt;https://pdg.kalafut.net/index.html%3Fp=119.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://pdg.kalafut.net/index.html%3Fp=119.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Lilac in Spring</title>
				<link>https://kalafut.net/posts/2009-06-16-lilac-in-spring/</link>
				<pubDate>Tue, 16 Jun 2009 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2009-06-16-lilac-in-spring/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://pdg.kalafut.net/index.html%3Fp=116.html&#34;&gt;https://pdg.kalafut.net/index.html%3Fp=116.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://pdg.kalafut.net/index.html%3Fp=116.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>CAT CEO on “Meet the Press” tomorrow</title>
				<link>https://kalafut.net/posts/2009-05-30-cat-ceo-on-meet-the-press-tomorrow/</link>
				<pubDate>Sat, 30 May 2009 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2009-05-30-cat-ceo-on-meet-the-press-tomorrow/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://pd.kalafut.net/index.html%3Fp=407.html&#34;&gt;https://pd.kalafut.net/index.html%3Fp=407.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://pd.kalafut.net/index.html%3Fp=407.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Debbie Does Disaster</title>
				<link>https://kalafut.net/posts/2009-05-15-debbie-does-disaster/</link>
				<pubDate>Fri, 15 May 2009 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2009-05-15-debbie-does-disaster/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://pd.kalafut.net/index.html%3Fp=398.html&#34;&gt;https://pd.kalafut.net/index.html%3Fp=398.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://pd.kalafut.net/index.html%3Fp=398.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>A fond farewell to Netflix</title>
				<link>https://kalafut.net/posts/2009-05-06-a-fond-farewell-to-netflix/</link>
				<pubDate>Wed, 06 May 2009 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2009-05-06-a-fond-farewell-to-netflix/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://pd.kalafut.net/index.html%3Fp=386.html&#34;&gt;https://pd.kalafut.net/index.html%3Fp=386.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://pd.kalafut.net/index.html%3Fp=386.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>DTV Update</title>
				<link>https://kalafut.net/posts/2009-04-28-dtv-update/</link>
				<pubDate>Tue, 28 Apr 2009 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2009-04-28-dtv-update/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://pd.kalafut.net/index.html%3Fp=381.html&#34;&gt;https://pd.kalafut.net/index.html%3Fp=381.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://pd.kalafut.net/index.html%3Fp=381.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>The Peoria Tea Party</title>
				<link>https://kalafut.net/posts/2009-04-20-the-peoria-tea-party/</link>
				<pubDate>Mon, 20 Apr 2009 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2009-04-20-the-peoria-tea-party/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://pd.kalafut.net/index.html%3Fp=376.html&#34;&gt;https://pd.kalafut.net/index.html%3Fp=376.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://pd.kalafut.net/index.html%3Fp=376.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Eggs just right</title>
				<link>https://kalafut.net/posts/2009-04-19-eggs-just-right/</link>
				<pubDate>Sun, 19 Apr 2009 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2009-04-19-eggs-just-right/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://pd.kalafut.net/index.html%3Fp=370.html&#34;&gt;https://pd.kalafut.net/index.html%3Fp=370.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://pd.kalafut.net/index.html%3Fp=370.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Schock &amp; Colbert</title>
				<link>https://kalafut.net/posts/2009-04-16-schock-colbert/</link>
				<pubDate>Thu, 16 Apr 2009 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2009-04-16-schock-colbert/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://pd.kalafut.net/index.html%3Fp=364.html&#34;&gt;https://pd.kalafut.net/index.html%3Fp=364.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://pd.kalafut.net/index.html%3Fp=364.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Daffodils</title>
				<link>https://kalafut.net/posts/2009-04-12-daffodils/</link>
				<pubDate>Sun, 12 Apr 2009 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2009-04-12-daffodils/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://pdg.kalafut.net/index.html%3Fp=101.html&#34;&gt;https://pdg.kalafut.net/index.html%3Fp=101.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://pdg.kalafut.net/index.html%3Fp=101.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>The Digital Future (looking very retro)</title>
				<link>https://kalafut.net/posts/2009-04-07-the-digital-future-looking-very-retro/</link>
				<pubDate>Tue, 07 Apr 2009 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2009-04-07-the-digital-future-looking-very-retro/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://pd.kalafut.net/index.html%3Fp=359.html&#34;&gt;https://pd.kalafut.net/index.html%3Fp=359.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://pd.kalafut.net/index.html%3Fp=359.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Spring???</title>
				<link>https://kalafut.net/posts/2009-03-29-spring/</link>
				<pubDate>Sun, 29 Mar 2009 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2009-03-29-spring/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://pdg.kalafut.net/index.html%3Fp=93.html&#34;&gt;https://pdg.kalafut.net/index.html%3Fp=93.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://pdg.kalafut.net/index.html%3Fp=93.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Spring Is Here!!</title>
				<link>https://kalafut.net/posts/2009-03-22-spring-is-here/</link>
				<pubDate>Sun, 22 Mar 2009 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2009-03-22-spring-is-here/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://pdg.kalafut.net/index.html%3Fp=84.html&#34;&gt;https://pdg.kalafut.net/index.html%3Fp=84.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://pdg.kalafut.net/index.html%3Fp=84.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Heed NOAA weather warnings</title>
				<link>https://kalafut.net/posts/2009-03-08-heed-noaa-weather-warnings/</link>
				<pubDate>Sun, 08 Mar 2009 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2009-03-08-heed-noaa-weather-warnings/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://pd.kalafut.net/index.html%3Fp=343.html&#34;&gt;https://pd.kalafut.net/index.html%3Fp=343.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://pd.kalafut.net/index.html%3Fp=343.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>My lone flower from NZ</title>
				<link>https://kalafut.net/posts/2009-03-08-my-lone-flower-from-nz/</link>
				<pubDate>Sun, 08 Mar 2009 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2009-03-08-my-lone-flower-from-nz/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://pdg.kalafut.net/index.html%3Fp=71.html&#34;&gt;https://pdg.kalafut.net/index.html%3Fp=71.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://pdg.kalafut.net/index.html%3Fp=71.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>3/2/09</title>
				<link>https://kalafut.net/posts/2009-03-07-3209/</link>
				<pubDate>Sat, 07 Mar 2009 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2009-03-07-3209/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://pdg.kalafut.net/index.html%3Fp=54.html&#34;&gt;https://pdg.kalafut.net/index.html%3Fp=54.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://pdg.kalafut.net/index.html%3Fp=54.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Seedlings for Spring</title>
				<link>https://kalafut.net/posts/2009-03-07-seedlings-for-spring/</link>
				<pubDate>Sat, 07 Mar 2009 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2009-03-07-seedlings-for-spring/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://pdg.kalafut.net/index.html%3Fp=62.html&#34;&gt;https://pdg.kalafut.net/index.html%3Fp=62.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://pdg.kalafut.net/index.html%3Fp=62.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Twitter found childhood friend</title>
				<link>https://kalafut.net/posts/2009-03-07-twitter-found-childhood-friend/</link>
				<pubDate>Sat, 07 Mar 2009 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2009-03-07-twitter-found-childhood-friend/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://pd.kalafut.net/index.html%3Fp=339.html&#34;&gt;https://pd.kalafut.net/index.html%3Fp=339.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://pd.kalafut.net/index.html%3Fp=339.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Reading with RSS</title>
				<link>https://kalafut.net/posts/2009-03-01-reading-with-rss/</link>
				<pubDate>Sun, 01 Mar 2009 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2009-03-01-reading-with-rss/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://pd.kalafut.net/index.html%3Fp=332.html&#34;&gt;https://pd.kalafut.net/index.html%3Fp=332.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://pd.kalafut.net/index.html%3Fp=332.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Garden Redux</title>
				<link>https://kalafut.net/posts/2009-02-28-garden-redux/</link>
				<pubDate>Sat, 28 Feb 2009 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2009-02-28-garden-redux/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://pd.kalafut.net/index.html%3Fp=328.html&#34;&gt;https://pd.kalafut.net/index.html%3Fp=328.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://pd.kalafut.net/index.html%3Fp=328.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Meet our Pet Squirrel</title>
				<link>https://kalafut.net/posts/2009-02-27-meet-our-pet-squirrel/</link>
				<pubDate>Fri, 27 Feb 2009 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2009-02-27-meet-our-pet-squirrel/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://pdg.kalafut.net/index.html%3Fp=48&amp;amp;cpage=1.html&#34;&gt;https://pdg.kalafut.net/index.html%3Fp=48&amp;amp;cpage=1.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://pdg.kalafut.net/index.html%3Fp=48&amp;cpage=1.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Welcome to my garden</title>
				<link>https://kalafut.net/posts/2009-02-22-welcome-to-my-garden/</link>
				<pubDate>Sun, 22 Feb 2009 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2009-02-22-welcome-to-my-garden/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://pdg.kalafut.net/index.html%3Fp=43.html&#34;&gt;https://pdg.kalafut.net/index.html%3Fp=43.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://pdg.kalafut.net/index.html%3Fp=43.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Worst Google Logo Ever</title>
				<link>https://kalafut.net/posts/2009-02-14-worst-google-logo-ever/</link>
				<pubDate>Sat, 14 Feb 2009 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2009-02-14-worst-google-logo-ever/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://pd.kalafut.net/index.html%3Fp=313.html&#34;&gt;https://pd.kalafut.net/index.html%3Fp=313.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://pd.kalafut.net/index.html%3Fp=313.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>National Attention for CAT/Peoria</title>
				<link>https://kalafut.net/posts/2009-02-11-national-attention-for-catpeoria/</link>
				<pubDate>Wed, 11 Feb 2009 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2009-02-11-national-attention-for-catpeoria/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://pd.kalafut.net/index.html%3Fp=305.html&#34;&gt;https://pd.kalafut.net/index.html%3Fp=305.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://pd.kalafut.net/index.html%3Fp=305.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Name That Movie</title>
				<link>https://kalafut.net/posts/2009-02-07-name-that-movie/</link>
				<pubDate>Sat, 07 Feb 2009 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2009-02-07-name-that-movie/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://pd.kalafut.net/index.html%3Fp=299.html&#34;&gt;https://pd.kalafut.net/index.html%3Fp=299.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://pd.kalafut.net/index.html%3Fp=299.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Slowest Common Denominator</title>
				<link>https://kalafut.net/posts/2009-02-03-slowest-common-denominator/</link>
				<pubDate>Tue, 03 Feb 2009 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2009-02-03-slowest-common-denominator/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://pd.kalafut.net/index.html%3Fp=293.html&#34;&gt;https://pd.kalafut.net/index.html%3Fp=293.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://pd.kalafut.net/index.html%3Fp=293.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>A Sad Week for CAT Employees</title>
				<link>https://kalafut.net/posts/2009-01-31-a-sad-week-for-cat-employees/</link>
				<pubDate>Sat, 31 Jan 2009 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2009-01-31-a-sad-week-for-cat-employees/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://pd.kalafut.net/index.html%3Fp=274.html&#34;&gt;https://pd.kalafut.net/index.html%3Fp=274.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://pd.kalafut.net/index.html%3Fp=274.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>A little Chinese New Year Celebration</title>
				<link>https://kalafut.net/posts/2009-01-30-a-little-chinese-new-year-celebration/</link>
				<pubDate>Fri, 30 Jan 2009 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2009-01-30-a-little-chinese-new-year-celebration/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://pd.kalafut.net/index.html%3Fp=268.html&#34;&gt;https://pd.kalafut.net/index.html%3Fp=268.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://pd.kalafut.net/index.html%3Fp=268.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Happy Chinese New Year 2009</title>
				<link>https://kalafut.net/posts/2009-01-25-happy-chinese-new-year-2009/</link>
				<pubDate>Sun, 25 Jan 2009 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2009-01-25-happy-chinese-new-year-2009/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://pd.kalafut.net/index.html%3Fp=261.html&#34;&gt;https://pd.kalafut.net/index.html%3Fp=261.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://pd.kalafut.net/index.html%3Fp=261.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Meet My Nephew</title>
				<link>https://kalafut.net/posts/2009-01-19-meet-my-nephew/</link>
				<pubDate>Mon, 19 Jan 2009 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2009-01-19-meet-my-nephew/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://pd.kalafut.net/index.html%3Fp=257.html&#34;&gt;https://pd.kalafut.net/index.html%3Fp=257.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://pd.kalafut.net/index.html%3Fp=257.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Pumpkin, oh pumpkin in a can</title>
				<link>https://kalafut.net/posts/2008-11-22-pumpkin-oh-pumpkin-in-a-can/</link>
				<pubDate>Sat, 22 Nov 2008 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2008-11-22-pumpkin-oh-pumpkin-in-a-can/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://pd.kalafut.net/index.html%3Fp=208.html&#34;&gt;https://pd.kalafut.net/index.html%3Fp=208.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://pd.kalafut.net/index.html%3Fp=208.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Triple a-ha</title>
				<link>https://kalafut.net/posts/2008-11-18-triple-a-ha/</link>
				<pubDate>Tue, 18 Nov 2008 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2008-11-18-triple-a-ha/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://pd.kalafut.net/index.html%3Fp=201.html&#34;&gt;https://pd.kalafut.net/index.html%3Fp=201.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://pd.kalafut.net/index.html%3Fp=201.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Finally! Election 2008 is over</title>
				<link>https://kalafut.net/posts/2008-11-09-finally-election-2008-is-over/</link>
				<pubDate>Sun, 09 Nov 2008 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2008-11-09-finally-election-2008-is-over/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://pd.kalafut.net/index.html%3Fp=197.html&#34;&gt;https://pd.kalafut.net/index.html%3Fp=197.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://pd.kalafut.net/index.html%3Fp=197.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Pinch Me</title>
				<link>https://kalafut.net/posts/2008-11-04-pinch-me/</link>
				<pubDate>Tue, 04 Nov 2008 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2008-11-04-pinch-me/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://pd.kalafut.net/index.html%3Fp=193.html&#34;&gt;https://pd.kalafut.net/index.html%3Fp=193.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://pd.kalafut.net/index.html%3Fp=193.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>The Dispatch Endorsement</title>
				<link>https://kalafut.net/posts/2008-10-31-the-dispatch-endorsement/</link>
				<pubDate>Fri, 31 Oct 2008 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2008-10-31-the-dispatch-endorsement/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://pd.kalafut.net/index.html%3Fp=188.html&#34;&gt;https://pd.kalafut.net/index.html%3Fp=188.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://pd.kalafut.net/index.html%3Fp=188.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Just vote for my trucker platform, OK?</title>
				<link>https://kalafut.net/posts/2008-10-29-just-vote-for-my-trucker-platform-ok/</link>
				<pubDate>Wed, 29 Oct 2008 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2008-10-29-just-vote-for-my-trucker-platform-ok/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://pd.kalafut.net/index.html%3Fp=184.html&#34;&gt;https://pd.kalafut.net/index.html%3Fp=184.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://pd.kalafut.net/index.html%3Fp=184.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Laugh! (the Dow is down again)</title>
				<link>https://kalafut.net/posts/2008-10-22-laugh-the-dow-is-down-again/</link>
				<pubDate>Wed, 22 Oct 2008 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2008-10-22-laugh-the-dow-is-down-again/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://pd.kalafut.net/index.html%3Fp=178.html&#34;&gt;https://pd.kalafut.net/index.html%3Fp=178.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://pd.kalafut.net/index.html%3Fp=178.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Too much nature in the backyard?</title>
				<link>https://kalafut.net/posts/2008-09-28-too-much-nature-in-the-backyard/</link>
				<pubDate>Sun, 28 Sep 2008 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2008-09-28-too-much-nature-in-the-backyard/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://pd.kalafut.net/index.html%3Fp=163.html&#34;&gt;https://pd.kalafut.net/index.html%3Fp=163.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://pd.kalafut.net/index.html%3Fp=163.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Have you had a depressing week?</title>
				<link>https://kalafut.net/posts/2008-09-25-have-you-had-a-depressing-week/</link>
				<pubDate>Thu, 25 Sep 2008 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2008-09-25-have-you-had-a-depressing-week/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://pd.kalafut.net/index.html%3Fp=158.html&#34;&gt;https://pd.kalafut.net/index.html%3Fp=158.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://pd.kalafut.net/index.html%3Fp=158.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Great Idea [Fitbit]</title>
				<link>https://kalafut.net/posts/2008-09-20-great-idea-fitbit/</link>
				<pubDate>Sat, 20 Sep 2008 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2008-09-20-great-idea-fitbit/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://pd.kalafut.net/index.html%3Fp=156.html&#34;&gt;https://pd.kalafut.net/index.html%3Fp=156.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://pd.kalafut.net/index.html%3Fp=156.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>30 More Years?</title>
				<link>https://kalafut.net/posts/2008-09-18-30-more-years/</link>
				<pubDate>Thu, 18 Sep 2008 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2008-09-18-30-more-years/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://pd.kalafut.net/index.html%3Fp=151.html&#34;&gt;https://pd.kalafut.net/index.html%3Fp=151.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://pd.kalafut.net/index.html%3Fp=151.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Zeitgeist</title>
				<link>https://kalafut.net/posts/2008-09-17-zeitgeist/</link>
				<pubDate>Wed, 17 Sep 2008 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2008-09-17-zeitgeist/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://pd.kalafut.net/index.html%3Fp=148.html&#34;&gt;https://pd.kalafut.net/index.html%3Fp=148.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://pd.kalafut.net/index.html%3Fp=148.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>The Pickens Plan</title>
				<link>https://kalafut.net/posts/2008-09-07-the-pickens-plan/</link>
				<pubDate>Sun, 07 Sep 2008 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2008-09-07-the-pickens-plan/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://pd.kalafut.net/index.html%3Fp=142.html&#34;&gt;https://pd.kalafut.net/index.html%3Fp=142.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://pd.kalafut.net/index.html%3Fp=142.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Do you Freecycle?</title>
				<link>https://kalafut.net/posts/2008-09-05-do-you-freecycle/</link>
				<pubDate>Fri, 05 Sep 2008 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2008-09-05-do-you-freecycle/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://pd.kalafut.net/index.html%3Fp=129.html&#34;&gt;https://pd.kalafut.net/index.html%3Fp=129.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://pd.kalafut.net/index.html%3Fp=129.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Schocking</title>
				<link>https://kalafut.net/posts/2008-09-04-schocking/</link>
				<pubDate>Thu, 04 Sep 2008 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2008-09-04-schocking/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://pd.kalafut.net/index.html%3Fp=126.html&#34;&gt;https://pd.kalafut.net/index.html%3Fp=126.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://pd.kalafut.net/index.html%3Fp=126.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Labor Day Weekend</title>
				<link>https://kalafut.net/posts/2008-09-03-labor-day-weekend/</link>
				<pubDate>Wed, 03 Sep 2008 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2008-09-03-labor-day-weekend/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://pd.kalafut.net/index.html%3Fp=122.html&#34;&gt;https://pd.kalafut.net/index.html%3Fp=122.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://pd.kalafut.net/index.html%3Fp=122.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Spam Strikes</title>
				<link>https://kalafut.net/posts/2008-08-23-spam-strikes/</link>
				<pubDate>Sat, 23 Aug 2008 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2008-08-23-spam-strikes/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://pd.kalafut.net/index.html%3Fp=111.html&#34;&gt;https://pd.kalafut.net/index.html%3Fp=111.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://pd.kalafut.net/index.html%3Fp=111.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Annoyed by endless Subprime Mortgage News</title>
				<link>https://kalafut.net/posts/2008-07-29-annoyed-by-endless-subprime-mortgage-news/</link>
				<pubDate>Tue, 29 Jul 2008 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2008-07-29-annoyed-by-endless-subprime-mortgage-news/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://pd.kalafut.net/index.html%3Fp=85.html&#34;&gt;https://pd.kalafut.net/index.html%3Fp=85.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://pd.kalafut.net/index.html%3Fp=85.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Peoria in the news</title>
				<link>https://kalafut.net/posts/2008-07-26-peoria-in-the-news/</link>
				<pubDate>Sat, 26 Jul 2008 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2008-07-26-peoria-in-the-news/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://pd.kalafut.net/index.html%3Fp=71.html&#34;&gt;https://pd.kalafut.net/index.html%3Fp=71.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://pd.kalafut.net/index.html%3Fp=71.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>The silver lining in a Very Crappy market</title>
				<link>https://kalafut.net/posts/2008-07-14-the-silver-lining-in-a-very-crappy-market/</link>
				<pubDate>Mon, 14 Jul 2008 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2008-07-14-the-silver-lining-in-a-very-crappy-market/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://pd.kalafut.net/index.html%3Fp=34.html&#34;&gt;https://pd.kalafut.net/index.html%3Fp=34.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://pd.kalafut.net/index.html%3Fp=34.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Wall•E</title>
				<link>https://kalafut.net/posts/2008-07-05-walle/</link>
				<pubDate>Sat, 05 Jul 2008 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2008-07-05-walle/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://pd.kalafut.net/index.html%3Fp=33.html&#34;&gt;https://pd.kalafut.net/index.html%3Fp=33.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://pd.kalafut.net/index.html%3Fp=33.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Prius</title>
				<link>https://kalafut.net/posts/2008-07-01-prius/</link>
				<pubDate>Tue, 01 Jul 2008 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2008-07-01-prius/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://pd.kalafut.net/index.html%3Fp=28.html&#34;&gt;https://pd.kalafut.net/index.html%3Fp=28.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://pd.kalafut.net/index.html%3Fp=28.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Another color of Green</title>
				<link>https://kalafut.net/posts/2008-06-29-another-color-of-green/</link>
				<pubDate>Sun, 29 Jun 2008 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2008-06-29-another-color-of-green/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://pd.kalafut.net/index.html%3Fp=26.html&#34;&gt;https://pd.kalafut.net/index.html%3Fp=26.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://pd.kalafut.net/index.html%3Fp=26.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Purple Cone Flowers</title>
				<link>https://kalafut.net/posts/2008-06-22-purple-cone-flowers/</link>
				<pubDate>Sun, 22 Jun 2008 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2008-06-22-purple-cone-flowers/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://pd.kalafut.net/index.html%3Fp=19.html&#34;&gt;https://pd.kalafut.net/index.html%3Fp=19.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://pd.kalafut.net/index.html%3Fp=19.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>2008 Steamboat Classic (Part 2)</title>
				<link>https://kalafut.net/posts/2008-06-15-2008-steamboat-classic-part-2/</link>
				<pubDate>Sun, 15 Jun 2008 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2008-06-15-2008-steamboat-classic-part-2/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://pd.kalafut.net/index.html%3Fp=14.html&#34;&gt;https://pd.kalafut.net/index.html%3Fp=14.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://pd.kalafut.net/index.html%3Fp=14.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>2008 Steamboat Classic (Part 1)</title>
				<link>https://kalafut.net/posts/2008-06-12-2008-steamboat-classic-part-1/</link>
				<pubDate>Thu, 12 Jun 2008 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2008-06-12-2008-steamboat-classic-part-1/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://pd.kalafut.net/index.html%3Fp=13.html&#34;&gt;https://pd.kalafut.net/index.html%3Fp=13.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://pd.kalafut.net/index.html%3Fp=13.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Landscaping our backyard</title>
				<link>https://kalafut.net/posts/2008-06-06-landscaping-our-backyard/</link>
				<pubDate>Fri, 06 Jun 2008 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2008-06-06-landscaping-our-backyard/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://pd.kalafut.net/index.html%3Fp=6.html&#34;&gt;https://pd.kalafut.net/index.html%3Fp=6.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://pd.kalafut.net/index.html%3Fp=6.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Last Post</title>
				<link>https://kalafut.net/posts/2008-06-06-last-post/</link>
				<pubDate>Fri, 06 Jun 2008 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2008-06-06-last-post/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=241.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=241.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=241.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Welcome Back</title>
				<link>https://kalafut.net/posts/2008-06-04-welcome-back/</link>
				<pubDate>Wed, 04 Jun 2008 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2008-06-04-welcome-back/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://pd.kalafut.net/index.html%3Fp=3.html&#34;&gt;https://pd.kalafut.net/index.html%3Fp=3.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://pd.kalafut.net/index.html%3Fp=3.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Farewell NZ</title>
				<link>https://kalafut.net/posts/2007-10-08-farewell-nz/</link>
				<pubDate>Mon, 08 Oct 2007 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2007-10-08-farewell-nz/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=240.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=240.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=240.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>This Space for Rent</title>
				<link>https://kalafut.net/posts/2007-10-07-this-space-for-rent/</link>
				<pubDate>Sun, 07 Oct 2007 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2007-10-07-this-space-for-rent/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=239.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=239.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=239.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>A Convincing Start</title>
				<link>https://kalafut.net/posts/2007-09-09-a-convincing-start/</link>
				<pubDate>Sun, 09 Sep 2007 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2007-09-09-a-convincing-start/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=237.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=237.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=237.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Downsizing</title>
				<link>https://kalafut.net/posts/2007-09-08-downsizing/</link>
				<pubDate>Sat, 08 Sep 2007 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2007-09-08-downsizing/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=235.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=235.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=235.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Let the Games Begin!</title>
				<link>https://kalafut.net/posts/2007-09-08-let-the-games-begin/</link>
				<pubDate>Sat, 08 Sep 2007 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2007-09-08-let-the-games-begin/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=234.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=234.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=234.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Wellington</title>
				<link>https://kalafut.net/posts/2007-09-06-wellington/</link>
				<pubDate>Thu, 06 Sep 2007 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2007-09-06-wellington/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=232.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=232.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=232.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Napier</title>
				<link>https://kalafut.net/posts/2007-09-01-napier/</link>
				<pubDate>Sat, 01 Sep 2007 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2007-09-01-napier/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=221.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=221.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=221.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Good Luck, All Blacks</title>
				<link>https://kalafut.net/posts/2007-08-31-good-luck-all-blacks/</link>
				<pubDate>Fri, 31 Aug 2007 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2007-08-31-good-luck-all-blacks/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=215.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=215.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=215.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Taupo</title>
				<link>https://kalafut.net/posts/2007-08-31-taupo/</link>
				<pubDate>Fri, 31 Aug 2007 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2007-08-31-taupo/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=217.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=217.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=217.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Rotorua</title>
				<link>https://kalafut.net/posts/2007-08-30-rotorua/</link>
				<pubDate>Thu, 30 Aug 2007 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2007-08-30-rotorua/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=208.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=208.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=208.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>A Famous Photo at Last</title>
				<link>https://kalafut.net/posts/2007-08-29-a-famous-photo-at-last/</link>
				<pubDate>Wed, 29 Aug 2007 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2007-08-29-a-famous-photo-at-last/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=207.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=207.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=207.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Auckland City</title>
				<link>https://kalafut.net/posts/2007-08-27-auckland-city/</link>
				<pubDate>Mon, 27 Aug 2007 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2007-08-27-auckland-city/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=201.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=201.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=201.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>The Storm Before the Calm</title>
				<link>https://kalafut.net/posts/2007-08-24-the-storm-before-the-calm/</link>
				<pubDate>Fri, 24 Aug 2007 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2007-08-24-the-storm-before-the-calm/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=199.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=199.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=199.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>If you had $50 to spare.</title>
				<link>https://kalafut.net/posts/2007-08-20-if-you-had-50-to-spare/</link>
				<pubDate>Mon, 20 Aug 2007 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2007-08-20-if-you-had-50-to-spare/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=198.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=198.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=198.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Home in P-town</title>
				<link>https://kalafut.net/posts/2007-07-31-home-in-p-town/</link>
				<pubDate>Tue, 31 Jul 2007 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2007-07-31-home-in-p-town/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=197.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=197.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=197.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Farewell Aoteroa</title>
				<link>https://kalafut.net/posts/2007-07-10-farewell-aoteroa/</link>
				<pubDate>Tue, 10 Jul 2007 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2007-07-10-farewell-aoteroa/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=194.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=194.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=194.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Are You Geographically Impaired?</title>
				<link>https://kalafut.net/posts/2007-07-07-are-you-geographically-impaired/</link>
				<pubDate>Sat, 07 Jul 2007 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2007-07-07-are-you-geographically-impaired/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=195.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=195.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=195.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Farewell Aoteroa : Part 1</title>
				<link>https://kalafut.net/posts/2007-07-05-farewell-aoteroa-part-1/</link>
				<pubDate>Thu, 05 Jul 2007 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2007-07-05-farewell-aoteroa-part-1/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=193.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=193.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=193.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Hanging on by Thread</title>
				<link>https://kalafut.net/posts/2007-07-03-hanging-on-by-thread/</link>
				<pubDate>Tue, 03 Jul 2007 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2007-07-03-hanging-on-by-thread/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=192.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=192.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=192.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Friendly Feline?</title>
				<link>https://kalafut.net/posts/2007-06-13-friendly-feline/</link>
				<pubDate>Wed, 13 Jun 2007 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2007-06-13-friendly-feline/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=189.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=189.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=189.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>America’s Cup-date</title>
				<link>https://kalafut.net/posts/2007-06-07-americas-cup-date/</link>
				<pubDate>Thu, 07 Jun 2007 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2007-06-07-americas-cup-date/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=187.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=187.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=187.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Nor’wester Big Bad Wolf</title>
				<link>https://kalafut.net/posts/2007-06-05-norwester-big-bad-wolf/</link>
				<pubDate>Tue, 05 Jun 2007 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2007-06-05-norwester-big-bad-wolf/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=184.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=184.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=184.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Mum’s visit to NZ</title>
				<link>https://kalafut.net/posts/2007-06-04-mums-visit-to-nz/</link>
				<pubDate>Mon, 04 Jun 2007 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2007-06-04-mums-visit-to-nz/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=180.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=180.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=180.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Things We’ll Miss: Libraries</title>
				<link>https://kalafut.net/posts/2007-06-03-things-well-miss-libraries/</link>
				<pubDate>Sun, 03 Jun 2007 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2007-06-03-things-well-miss-libraries/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=178.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=178.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=178.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>The NZ Elite Compete</title>
				<link>https://kalafut.net/posts/2007-06-01-the-nz-elite-compete/</link>
				<pubDate>Fri, 01 Jun 2007 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2007-06-01-the-nz-elite-compete/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=175.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=175.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=175.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>“Sunshine”</title>
				<link>https://kalafut.net/posts/2007-05-06-sunshine/</link>
				<pubDate>Sun, 06 May 2007 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2007-05-06-sunshine/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=172.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=172.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=172.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Ronald McDonald House</title>
				<link>https://kalafut.net/posts/2007-04-23-ronald-mcdonald-house/</link>
				<pubDate>Mon, 23 Apr 2007 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2007-04-23-ronald-mcdonald-house/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=171.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=171.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=171.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>OExp: Australia Finale</title>
				<link>https://kalafut.net/posts/2007-04-14-oexp-australia-finale/</link>
				<pubDate>Sat, 14 Apr 2007 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2007-04-14-oexp-australia-finale/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=166.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=166.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=166.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>OExp: Cairns</title>
				<link>https://kalafut.net/posts/2007-04-13-oexp-cairns/</link>
				<pubDate>Fri, 13 Apr 2007 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2007-04-13-oexp-cairns/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=164.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=164.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=164.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Goe azjoe</title>
				<link>https://kalafut.net/posts/2007-04-04-goe-azjoe/</link>
				<pubDate>Wed, 04 Apr 2007 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2007-04-04-goe-azjoe/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=156.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=156.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=156.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>OExp: Alice Springs &amp; Ayers Rock</title>
				<link>https://kalafut.net/posts/2007-04-02-oexp-alice-springs-ayers-rock/</link>
				<pubDate>Mon, 02 Apr 2007 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2007-04-02-oexp-alice-springs-ayers-rock/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=149.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=149.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=149.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>OExp:Darwin</title>
				<link>https://kalafut.net/posts/2007-04-02-oexpdarwin/</link>
				<pubDate>Mon, 02 Apr 2007 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2007-04-02-oexpdarwin/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=153.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=153.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=153.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Friday News</title>
				<link>https://kalafut.net/posts/2007-03-30-friday-news/</link>
				<pubDate>Fri, 30 Mar 2007 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2007-03-30-friday-news/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=150.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=150.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=150.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>OExp:Adelaide</title>
				<link>https://kalafut.net/posts/2007-03-21-oexpadelaide/</link>
				<pubDate>Wed, 21 Mar 2007 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2007-03-21-oexpadelaide/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=148.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=148.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=148.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>OExp:Sydney:Photos</title>
				<link>https://kalafut.net/posts/2007-03-20-oexpsydneyphotos/</link>
				<pubDate>Tue, 20 Mar 2007 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2007-03-20-oexpsydneyphotos/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=147.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=147.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=147.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Word of the Day: lahar</title>
				<link>https://kalafut.net/posts/2007-03-19-word-of-the-day-lahar/</link>
				<pubDate>Mon, 19 Mar 2007 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2007-03-19-word-of-the-day-lahar/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=145.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=145.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=145.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>OExp: Melbourne (2nd Stop)</title>
				<link>https://kalafut.net/posts/2007-03-18-oexp-melbourne-2nd-stop/</link>
				<pubDate>Sun, 18 Mar 2007 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2007-03-18-oexp-melbourne-2nd-stop/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=144.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=144.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=144.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>OExp:Sydney (1st stop:Day 3,4)</title>
				<link>https://kalafut.net/posts/2007-03-14-oexpsydney-1st-stopday-34/</link>
				<pubDate>Wed, 14 Mar 2007 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2007-03-14-oexpsydney-1st-stopday-34/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=142.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=142.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=142.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>OExp: Sydney (1st Stop)</title>
				<link>https://kalafut.net/posts/2007-03-11-oexp-sydney-1st-stop/</link>
				<pubDate>Sun, 11 Mar 2007 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2007-03-11-oexp-sydney-1st-stop/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=138.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=138.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=138.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>A reason to pause, and then buy</title>
				<link>https://kalafut.net/posts/2007-03-10-a-reason-to-pause-and-then-buy/</link>
				<pubDate>Sat, 10 Mar 2007 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2007-03-10-a-reason-to-pause-and-then-buy/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=137.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=137.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=137.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Pictures of Taj Mahal &amp; Bandipur National Park</title>
				<link>https://kalafut.net/posts/2007-03-08-pictures-of-taj-mahal-bandipur-national-park/</link>
				<pubDate>Thu, 08 Mar 2007 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2007-03-08-pictures-of-taj-mahal-bandipur-national-park/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=134.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=134.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=134.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Surviving Buller</title>
				<link>https://kalafut.net/posts/2007-03-04-surviving-buller/</link>
				<pubDate>Sun, 04 Mar 2007 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2007-03-04-surviving-buller/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=132.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=132.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=132.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Happy Chinese New Year!</title>
				<link>https://kalafut.net/posts/2007-02-18-happy-chinese-new-year/</link>
				<pubDate>Sun, 18 Feb 2007 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2007-02-18-happy-chinese-new-year/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=131.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=131.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=131.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Sunshine in Christchurch!</title>
				<link>https://kalafut.net/posts/2007-02-14-sunshine-in-christchurch/</link>
				<pubDate>Wed, 14 Feb 2007 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2007-02-14-sunshine-in-christchurch/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=129.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=129.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=129.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Chinese New Year 2007</title>
				<link>https://kalafut.net/posts/2007-02-12-chinese-new-year-2007/</link>
				<pubDate>Mon, 12 Feb 2007 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2007-02-12-chinese-new-year-2007/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=128.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=128.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=128.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Going nowhere fast (er.. at all)</title>
				<link>https://kalafut.net/posts/2007-02-04-going-nowhere-fast-er-at-all/</link>
				<pubDate>Sun, 04 Feb 2007 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2007-02-04-going-nowhere-fast-er-at-all/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=127.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=127.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=127.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>The Agony of Victory</title>
				<link>https://kalafut.net/posts/2007-01-30-the-agony-of-victory/</link>
				<pubDate>Tue, 30 Jan 2007 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2007-01-30-the-agony-of-victory/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=125.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=125.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=125.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Comet McNaught</title>
				<link>https://kalafut.net/posts/2007-01-24-comet-mcnaught/</link>
				<pubDate>Wed, 24 Jan 2007 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2007-01-24-comet-mcnaught/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=123.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=123.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=123.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Happy New Year, So Long 2006</title>
				<link>https://kalafut.net/posts/2006-12-31-happy-new-year-so-long-2006/</link>
				<pubDate>Sun, 31 Dec 2006 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2006-12-31-happy-new-year-so-long-2006/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=93.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=93.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=93.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Ho! Ho! Ho! Merry Christmas</title>
				<link>https://kalafut.net/posts/2006-12-24-ho-ho-ho-merry-christmas/</link>
				<pubDate>Sun, 24 Dec 2006 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2006-12-24-ho-ho-ho-merry-christmas/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=91.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=91.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=91.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Backpacking in Auckland</title>
				<link>https://kalafut.net/posts/2006-12-08-backpacking-in-auckland/</link>
				<pubDate>Fri, 08 Dec 2006 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2006-12-08-backpacking-in-auckland/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=90.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=90.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=90.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>The Most Powerful News in Aotearoa?  I doubt it.</title>
				<link>https://kalafut.net/posts/2006-12-02-the-most-powerful-news-in-aotearoa-i-doubt-it/</link>
				<pubDate>Sat, 02 Dec 2006 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2006-12-02-the-most-powerful-news-in-aotearoa-i-doubt-it/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=89.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=89.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=89.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Kiwi Thanksgiving</title>
				<link>https://kalafut.net/posts/2006-11-25-kiwi-thanksgiving/</link>
				<pubDate>Sat, 25 Nov 2006 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2006-11-25-kiwi-thanksgiving/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=87.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=87.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=87.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Ohayo Kyoto</title>
				<link>https://kalafut.net/posts/2006-11-15-ohayo-kyoto/</link>
				<pubDate>Wed, 15 Nov 2006 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2006-11-15-ohayo-kyoto/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=86.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=86.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=86.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>A bunch of crock???</title>
				<link>https://kalafut.net/posts/2006-11-10-a-bunch-of-crock/</link>
				<pubDate>Fri, 10 Nov 2006 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2006-11-10-a-bunch-of-crock/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=84.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=84.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=84.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Happy Mid-term Election Day</title>
				<link>https://kalafut.net/posts/2006-11-07-happy-mid-term-election-day/</link>
				<pubDate>Tue, 07 Nov 2006 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2006-11-07-happy-mid-term-election-day/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=83.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=83.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=83.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>The Dominoes ad you won’t see</title>
				<link>https://kalafut.net/posts/2006-11-03-the-dominoes-ad-you-wont-see/</link>
				<pubDate>Fri, 03 Nov 2006 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2006-11-03-the-dominoes-ad-you-wont-see/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=82.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=82.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=82.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Christchurch Lifestyle</title>
				<link>https://kalafut.net/posts/2006-11-02-christchurch-lifestyle/</link>
				<pubDate>Thu, 02 Nov 2006 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2006-11-02-christchurch-lifestyle/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=80.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=80.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=80.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Fiji’s apparent pastime</title>
				<link>https://kalafut.net/posts/2006-11-01-fijis-apparent-pastime/</link>
				<pubDate>Wed, 01 Nov 2006 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2006-11-01-fijis-apparent-pastime/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=79.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=79.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=79.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>South Island Tour Part 2</title>
				<link>https://kalafut.net/posts/2006-10-28-south-island-tour-part-2/</link>
				<pubDate>Sat, 28 Oct 2006 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2006-10-28-south-island-tour-part-2/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=78.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=78.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=78.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>My Visit to Peoria</title>
				<link>https://kalafut.net/posts/2006-10-27-my-visit-to-peoria/</link>
				<pubDate>Fri, 27 Oct 2006 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2006-10-27-my-visit-to-peoria/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=76.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=76.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=76.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>South Island Tour Part 1</title>
				<link>https://kalafut.net/posts/2006-10-24-south-island-tour-part-1/</link>
				<pubDate>Tue, 24 Oct 2006 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2006-10-24-south-island-tour-part-1/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=75.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=75.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=75.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Thank You, Ngaira and Keith</title>
				<link>https://kalafut.net/posts/2006-10-10-thank-you-ngaira-and-keith/</link>
				<pubDate>Tue, 10 Oct 2006 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2006-10-10-thank-you-ngaira-and-keith/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=74.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=74.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=74.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>It’s just another nuke story</title>
				<link>https://kalafut.net/posts/2006-10-09-its-just-another-nuke-story/</link>
				<pubDate>Mon, 09 Oct 2006 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2006-10-09-its-just-another-nuke-story/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=73.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=73.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=73.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Photos</title>
				<link>https://kalafut.net/posts/2006-10-08-photos/</link>
				<pubDate>Sun, 08 Oct 2006 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2006-10-08-photos/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=71.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=71.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=71.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Movies</title>
				<link>https://kalafut.net/posts/2006-10-07-movies/</link>
				<pubDate>Sat, 07 Oct 2006 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2006-10-07-movies/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=68.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=68.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=68.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>New Blog Format!</title>
				<link>https://kalafut.net/posts/2006-10-07-new-blog-format/</link>
				<pubDate>Sat, 07 Oct 2006 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2006-10-07-new-blog-format/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=69.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=69.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=69.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>About</title>
				<link>https://kalafut.net/posts/2006-10-06-about/</link>
				<pubDate>Fri, 06 Oct 2006 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2006-10-06-about/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=2.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=2.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=2.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Titanic (or Close Encounters?)</title>
				<link>https://kalafut.net/posts/2006-09-27-titanic-or-close-encounters/</link>
				<pubDate>Wed, 27 Sep 2006 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2006-09-27-titanic-or-close-encounters/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=65.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=65.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=65.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Sopranos, almost</title>
				<link>https://kalafut.net/posts/2006-09-24-sopranos-almost/</link>
				<pubDate>Sun, 24 Sep 2006 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2006-09-24-sopranos-almost/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=64.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=64.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=64.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Port Hills (I)</title>
				<link>https://kalafut.net/posts/2006-09-18-port-hills-i/</link>
				<pubDate>Mon, 18 Sep 2006 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2006-09-18-port-hills-i/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=63.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=63.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=63.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Proof in the Paddock</title>
				<link>https://kalafut.net/posts/2006-09-13-proof-in-the-paddock/</link>
				<pubDate>Wed, 13 Sep 2006 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2006-09-13-proof-in-the-paddock/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=62.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=62.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=62.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>The Sky Is Falling</title>
				<link>https://kalafut.net/posts/2006-09-12-the-sky-is-falling/</link>
				<pubDate>Tue, 12 Sep 2006 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2006-09-12-the-sky-is-falling/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=60.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=60.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=60.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Update</title>
				<link>https://kalafut.net/posts/2006-09-12-update/</link>
				<pubDate>Tue, 12 Sep 2006 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2006-09-12-update/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=61.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=61.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=61.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Fiji micro-digest</title>
				<link>https://kalafut.net/posts/2006-07-29-fiji-micro-digest/</link>
				<pubDate>Sat, 29 Jul 2006 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2006-07-29-fiji-micro-digest/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=59.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=59.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=59.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Friday Treat</title>
				<link>https://kalafut.net/posts/2006-07-21-friday-treat/</link>
				<pubDate>Fri, 21 Jul 2006 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2006-07-21-friday-treat/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=58.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=58.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=58.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Real skiing just down the road</title>
				<link>https://kalafut.net/posts/2006-07-07-real-skiing-just-down-the-road/</link>
				<pubDate>Fri, 07 Jul 2006 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2006-07-07-real-skiing-just-down-the-road/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=57.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=57.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=57.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>My Loyal Companion</title>
				<link>https://kalafut.net/posts/2006-06-29-my-loyal-companion/</link>
				<pubDate>Thu, 29 Jun 2006 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2006-06-29-my-loyal-companion/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=56.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=56.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=56.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>It’s Snowing!!</title>
				<link>https://kalafut.net/posts/2006-06-12-its-snowing/</link>
				<pubDate>Mon, 12 Jun 2006 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2006-06-12-its-snowing/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=54.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=54.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=54.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Snow Part 2</title>
				<link>https://kalafut.net/posts/2006-06-12-snow-part-2/</link>
				<pubDate>Mon, 12 Jun 2006 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2006-06-12-snow-part-2/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=55.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=55.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=55.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>How much would you pay for this internet service?</title>
				<link>https://kalafut.net/posts/2006-06-11-how-much-would-you-pay-for-this-internet-service/</link>
				<pubDate>Sun, 11 Jun 2006 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2006-06-11-how-much-would-you-pay-for-this-internet-service/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=53.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=53.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=53.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>How much would you pay for this handbag?</title>
				<link>https://kalafut.net/posts/2006-06-05-how-much-would-you-pay-for-this-handbag/</link>
				<pubDate>Mon, 05 Jun 2006 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2006-06-05-how-much-would-you-pay-for-this-handbag/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=52.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=52.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=52.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Happy Mother’s Day</title>
				<link>https://kalafut.net/posts/2006-05-14-happy-mothers-day/</link>
				<pubDate>Sun, 14 May 2006 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2006-05-14-happy-mothers-day/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=51.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=51.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=51.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Taming of The Nevis</title>
				<link>https://kalafut.net/posts/2006-05-07-taming-of-the-nevis/</link>
				<pubDate>Sun, 07 May 2006 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2006-05-07-taming-of-the-nevis/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=50.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=50.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=50.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Outraged!</title>
				<link>https://kalafut.net/posts/2006-04-24-outraged/</link>
				<pubDate>Mon, 24 Apr 2006 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2006-04-24-outraged/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=49.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=49.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=49.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>We made it!</title>
				<link>https://kalafut.net/posts/2006-04-17-we-made-it/</link>
				<pubDate>Mon, 17 Apr 2006 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2006-04-17-we-made-it/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=48.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=48.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=48.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Mulling over Nevis</title>
				<link>https://kalafut.net/posts/2006-04-14-mulling-over-nevis/</link>
				<pubDate>Fri, 14 Apr 2006 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2006-04-14-mulling-over-nevis/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=47.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=47.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=47.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Our house</title>
				<link>https://kalafut.net/posts/2006-04-02-our-house/</link>
				<pubDate>Sun, 02 Apr 2006 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2006-04-02-our-house/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=46.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=46.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=46.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Skype Voicemail</title>
				<link>https://kalafut.net/posts/2006-03-26-skype-voicemail/</link>
				<pubDate>Sun, 26 Mar 2006 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2006-03-26-skype-voicemail/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=45.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=45.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=45.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>So I’m not the only one</title>
				<link>https://kalafut.net/posts/2006-03-21-so-im-not-the-only-one/</link>
				<pubDate>Tue, 21 Mar 2006 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2006-03-21-so-im-not-the-only-one/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=44.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=44.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=44.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Sporting times</title>
				<link>https://kalafut.net/posts/2006-03-18-sporting-times/</link>
				<pubDate>Sat, 18 Mar 2006 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2006-03-18-sporting-times/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=43.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=43.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=43.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Photos galore</title>
				<link>https://kalafut.net/posts/2006-03-15-photos-galore/</link>
				<pubDate>Wed, 15 Mar 2006 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2006-03-15-photos-galore/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=42.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=42.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=42.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Ping</title>
				<link>https://kalafut.net/posts/2006-03-14-ping/</link>
				<pubDate>Tue, 14 Mar 2006 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2006-03-14-ping/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=41.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=41.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=41.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>The Garden City</title>
				<link>https://kalafut.net/posts/2006-02-22-the-garden-city/</link>
				<pubDate>Wed, 22 Feb 2006 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2006-02-22-the-garden-city/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=40.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=40.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=40.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>A Worthwhile Diversion    *** Link Fixed***</title>
				<link>https://kalafut.net/posts/2006-02-14-a-worthwhile-diversion-link-fixed/</link>
				<pubDate>Tue, 14 Feb 2006 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2006-02-14-a-worthwhile-diversion-link-fixed/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=39.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=39.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=39.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>A Worthwhile Tax</title>
				<link>https://kalafut.net/posts/2006-02-14-a-worthwhile-tax/</link>
				<pubDate>Tue, 14 Feb 2006 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2006-02-14-a-worthwhile-tax/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=38.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=38.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=38.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Happy Birthday Angela!</title>
				<link>https://kalafut.net/posts/2006-02-11-happy-birthday-angela/</link>
				<pubDate>Sat, 11 Feb 2006 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2006-02-11-happy-birthday-angela/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=37.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=37.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=37.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Road Rules #1</title>
				<link>https://kalafut.net/posts/2006-02-09-road-rules-1/</link>
				<pubDate>Thu, 09 Feb 2006 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2006-02-09-road-rules-1/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=36.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=36.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=36.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>I’m bored.  I’d LOVE to be offended right about now…</title>
				<link>https://kalafut.net/posts/2006-02-08-im-bored-id-love-to-be-offended-right-about-now/</link>
				<pubDate>Wed, 08 Feb 2006 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2006-02-08-im-bored-id-love-to-be-offended-right-about-now/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=35.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=35.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=35.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>日本からこんにちは</title>
				<link>https://kalafut.net/posts/2006-02-01-%E6%97%A5%E6%9C%AC%E3%81%8B%E3%82%89%E3%81%93%E3%82%93%E3%81%AB%E3%81%A1%E3%81%AF/</link>
				<pubDate>Wed, 01 Feb 2006 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2006-02-01-%E6%97%A5%E6%9C%AC%E3%81%8B%E3%82%89%E3%81%93%E3%82%93%E3%81%AB%E3%81%A1%E3%81%AF/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=34.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=34.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=34.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Flying Solo in Christchurch</title>
				<link>https://kalafut.net/posts/2006-01-31-flying-solo-in-christchurch/</link>
				<pubDate>Tue, 31 Jan 2006 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2006-01-31-flying-solo-in-christchurch/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=33.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=33.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=33.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Painful pizza</title>
				<link>https://kalafut.net/posts/2006-01-21-painful-pizza/</link>
				<pubDate>Sat, 21 Jan 2006 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2006-01-21-painful-pizza/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=32.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=32.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=32.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>C’est La Vie in Akaroa</title>
				<link>https://kalafut.net/posts/2006-01-18-cest-la-vie-in-akaroa/</link>
				<pubDate>Wed, 18 Jan 2006 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2006-01-18-cest-la-vie-in-akaroa/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=31.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=31.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=31.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Off to Akaroa</title>
				<link>https://kalafut.net/posts/2006-01-13-off-to-akaroa/</link>
				<pubDate>Fri, 13 Jan 2006 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2006-01-13-off-to-akaroa/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=30.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=30.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=30.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Skype</title>
				<link>https://kalafut.net/posts/2006-01-11-skype/</link>
				<pubDate>Wed, 11 Jan 2006 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2006-01-11-skype/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=29.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=29.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=29.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>My better half</title>
				<link>https://kalafut.net/posts/2006-01-08-my-better-half/</link>
				<pubDate>Sun, 08 Jan 2006 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2006-01-08-my-better-half/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=28.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=28.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=28.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Finally a site feed</title>
				<link>https://kalafut.net/posts/2006-01-03-finally-a-site-feed/</link>
				<pubDate>Tue, 03 Jan 2006 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2006-01-03-finally-a-site-feed/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=27.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=27.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=27.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Go the Utrillo!</title>
				<link>https://kalafut.net/posts/2006-01-02-go-the-utrillo/</link>
				<pubDate>Mon, 02 Jan 2006 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2006-01-02-go-the-utrillo/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=26.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=26.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=26.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>A room with a view</title>
				<link>https://kalafut.net/posts/2006-01-01-a-room-with-a-view/</link>
				<pubDate>Sun, 01 Jan 2006 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2006-01-01-a-room-with-a-view/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=25.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=25.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=25.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Belated Blogs</title>
				<link>https://kalafut.net/posts/2005-12-29-belated-blogs/</link>
				<pubDate>Thu, 29 Dec 2005 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2005-12-29-belated-blogs/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=24.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=24.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=24.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Suffering buyer’s remorse, as always</title>
				<link>https://kalafut.net/posts/2005-12-27-suffering-buyers-remorse-as-always/</link>
				<pubDate>Tue, 27 Dec 2005 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2005-12-27-suffering-buyers-remorse-as-always/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=23.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=23.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=23.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>I still don’t know why it’s called Boxing Day</title>
				<link>https://kalafut.net/posts/2005-12-26-i-still-dont-know-why-its-called-boxing-day/</link>
				<pubDate>Mon, 26 Dec 2005 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2005-12-26-i-still-dont-know-why-its-called-boxing-day/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=22.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=22.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=22.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>A Canterburian Xmas</title>
				<link>https://kalafut.net/posts/2005-12-25-a-canterburian-xmas/</link>
				<pubDate>Sun, 25 Dec 2005 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2005-12-25-a-canterburian-xmas/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=21.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=21.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=21.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>I’ve heard it’s Xmas Eve</title>
				<link>https://kalafut.net/posts/2005-12-24-ive-heard-its-xmas-eve/</link>
				<pubDate>Sat, 24 Dec 2005 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2005-12-24-ive-heard-its-xmas-eve/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=20.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=20.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=20.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>A Slow Start</title>
				<link>https://kalafut.net/posts/2005-12-23-a-slow-start/</link>
				<pubDate>Fri, 23 Dec 2005 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2005-12-23-a-slow-start/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=19.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=19.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=19.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Made it, barely</title>
				<link>https://kalafut.net/posts/2005-12-22-made-it-barely/</link>
				<pubDate>Thu, 22 Dec 2005 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2005-12-22-made-it-barely/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=17.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=17.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=17.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Made it, completely</title>
				<link>https://kalafut.net/posts/2005-12-22-made-it-completely/</link>
				<pubDate>Thu, 22 Dec 2005 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2005-12-22-made-it-completely/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=18.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=18.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=18.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>DFW-&gt;LAX</title>
				<link>https://kalafut.net/posts/2005-12-21-dfw-lax/</link>
				<pubDate>Wed, 21 Dec 2005 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2005-12-21-dfw-lax/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=16.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=16.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=16.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>PIA-&gt;DFW</title>
				<link>https://kalafut.net/posts/2005-12-21-pia-dfw/</link>
				<pubDate>Wed, 21 Dec 2005 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2005-12-21-pia-dfw/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=15.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=15.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=15.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>The final Peorian hours</title>
				<link>https://kalafut.net/posts/2005-12-21-the-final-peorian-hours/</link>
				<pubDate>Wed, 21 Dec 2005 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2005-12-21-the-final-peorian-hours/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=14.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=14.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=14.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>A fine farewell gathering</title>
				<link>https://kalafut.net/posts/2005-12-18-a-fine-farewell-gathering/</link>
				<pubDate>Sun, 18 Dec 2005 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2005-12-18-a-fine-farewell-gathering/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=13.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=13.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=13.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>One by air, many by sea</title>
				<link>https://kalafut.net/posts/2005-12-16-one-by-air-many-by-sea/</link>
				<pubDate>Fri, 16 Dec 2005 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2005-12-16-one-by-air-many-by-sea/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=12.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=12.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=12.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>An unremarkable day</title>
				<link>https://kalafut.net/posts/2005-12-15-an-unremarkable-day/</link>
				<pubDate>Thu, 15 Dec 2005 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2005-12-15-an-unremarkable-day/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=11.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=11.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=11.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Day 2</title>
				<link>https://kalafut.net/posts/2005-12-14-day-2/</link>
				<pubDate>Wed, 14 Dec 2005 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2005-12-14-day-2/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=9.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=9.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=9.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Day 2 – Warehouse Bound</title>
				<link>https://kalafut.net/posts/2005-12-14-day-2-warehouse-bound/</link>
				<pubDate>Wed, 14 Dec 2005 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2005-12-14-day-2-warehouse-bound/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=8.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=8.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=8.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Our new home: Staybridge Suites!</title>
				<link>https://kalafut.net/posts/2005-12-14-our-new-home-staybridge-suites/</link>
				<pubDate>Wed, 14 Dec 2005 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2005-12-14-our-new-home-staybridge-suites/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=10.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=10.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=10.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Day 1 of Moving</title>
				<link>https://kalafut.net/posts/2005-12-13-day-1-of-moving/</link>
				<pubDate>Tue, 13 Dec 2005 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2005-12-13-day-1-of-moving/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=6.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=6.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=6.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Unexpected Exhaustion</title>
				<link>https://kalafut.net/posts/2005-12-13-unexpected-exhaustion/</link>
				<pubDate>Tue, 13 Dec 2005 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2005-12-13-unexpected-exhaustion/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=7.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=7.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=7.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Pop tart meals?</title>
				<link>https://kalafut.net/posts/2005-12-12-pop-tart-meals/</link>
				<pubDate>Mon, 12 Dec 2005 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2005-12-12-pop-tart-meals/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=5.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=5.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=5.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>Procrastination’s last stand</title>
				<link>https://kalafut.net/posts/2005-12-12-procrastinations-last-stand/</link>
				<pubDate>Mon, 12 Dec 2005 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2005-12-12-procrastinations-last-stand/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=4.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=4.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=4.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
			<item>
				<title>This blog is born.</title>
				<link>https://kalafut.net/posts/2005-12-11-this-blog-is-born/</link>
				<pubDate>Sun, 11 Dec 2005 00:00:00 +0000</pubDate>
				<guid>https://kalafut.net/posts/2005-12-11-this-blog-is-born/</guid>
				<description>&lt;p&gt;This pre-2014 post has been preserved as a static version of the original Wordpress post:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://nz.kalafut.net/index.html%3Fp=3.html&#34;&gt;https://nz.kalafut.net/index.html%3Fp=3.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;You&amp;rsquo;ll be redirected automatically&amp;hellip;&lt;/p&gt;&#xA;&lt;head&gt;&#xA;  &lt;meta http-equiv=&#34;refresh&#34; content=&#34;5;url=https://nz.kalafut.net/index.html%3Fp=3.html&#34;&gt;&#xA;&lt;/head&gt;</description>
			</item>
	</channel>
</rss>
