<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>John Mee - Some programmer in Sydney</title>
	<atom:link href="http://johnmee.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://johnmee.com</link>
	<description>who doesn't have a tagline</description>
	<lastBuildDate>Sat, 04 Sep 2010 08:56:29 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>How to access iTunes store without a Credit Card</title>
		<link>http://johnmee.com/2010/09/bypass-itunes-credit-card-requirement/</link>
		<comments>http://johnmee.com/2010/09/bypass-itunes-credit-card-requirement/#comments</comments>
		<pubDate>Sat, 04 Sep 2010 08:47:42 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[geek]]></category>
		<category><![CDATA[iTunes]]></category>

		<guid isPermaLink="false">http://johnmee.com/2010/09/</guid>
		<description><![CDATA[A (temporary) discovery which bypasses iTunes&#8217; store&#8217;s requirement to enter a Credit Card. Might only work from Australia. For years I&#8217;ve refused to enter my Credit Card number into iTunes. I just relented (because I&#8217;m finally and totally tired of all my current music and might actually consider making a purchase). I&#8217;m intrigued to discover [...]]]></description>
		<wfw:commentRss>http://johnmee.com/2010/09/bypass-itunes-credit-card-requirement/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Django widget renderer render</title>
		<link>http://johnmee.com/2010/07/django-widget-renderer-render/</link>
		<comments>http://johnmee.com/2010/07/django-widget-renderer-render/#comments</comments>
		<pubDate>Fri, 09 Jul 2010 11:54:06 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[geek]]></category>
		<category><![CDATA[django]]></category>

		<guid isPermaLink="false">http://johnmee.com/?p=629</guid>
		<description><![CDATA[I got a little frustrated trying to find the &#8216;simple&#8217; answer to change the html which is generated by the various form field widgets. In this case the RadioSelect field generates radio buttons wrapped in an unordered list. It was annoying, and whilst I could resort to writing the html directly in the html; that&#8217;s [...]]]></description>
		<wfw:commentRss>http://johnmee.com/2010/07/django-widget-renderer-render/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to complete the BAS Online</title>
		<link>http://johnmee.com/2010/05/how-to-complete-your-bas-business-activity-statement-for-the-ato/</link>
		<comments>http://johnmee.com/2010/05/how-to-complete-your-bas-business-activity-statement-for-the-ato/#comments</comments>
		<pubDate>Wed, 12 May 2010 04:57:02 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[life]]></category>
		<category><![CDATA[tax]]></category>

		<guid isPermaLink="false">http://johnmee.com/?p=623</guid>
		<description><![CDATA[The Australian Tax Office (ATO) have a very tiresome mandatory requirement for all business&#8217;s to submit a form every 3 months. The effect of the &#8220;Business Activity Statement&#8221; (BAS) is to tell the ATO how much they should bill you for; and they will chase you hard for the money that you&#8217;ve just told them [...]]]></description>
		<wfw:commentRss>http://johnmee.com/2010/05/how-to-complete-your-bas-business-activity-statement-for-the-ato/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to configure an open samba share</title>
		<link>http://johnmee.com/2010/02/how-to-configure-an-open-samba-share/</link>
		<comments>http://johnmee.com/2010/02/how-to-configure-an-open-samba-share/#comments</comments>
		<pubDate>Wed, 10 Feb 2010 06:10:23 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[geek]]></category>
		<category><![CDATA[samba]]></category>

		<guid isPermaLink="false">http://www.johnmee.com/?p=617</guid>
		<description><![CDATA[I&#8217;m always battling to expose my linux virtual machines to my windows desktop. Here is a sample smb.conf which completely exposes a directory to a specific IP address: security = share hosts deny = ALL hosts allow = 192.168.1.99 [www] path = /var/www available = yes browsable = yes public = yes writable = yes [...]]]></description>
		<wfw:commentRss>http://johnmee.com/2010/02/how-to-configure-an-open-samba-share/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[Django] How to replace an image using ModelForm</title>
		<link>http://johnmee.com/2009/12/django-how-to-replace-an-image-using-modelform/</link>
		<comments>http://johnmee.com/2009/12/django-how-to-replace-an-image-using-modelform/#comments</comments>
		<pubDate>Mon, 14 Dec 2009 04:07:54 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[geek]]></category>
		<category><![CDATA[django]]></category>

		<guid isPermaLink="false">http://www.johnmee.com/?p=610</guid>
		<description><![CDATA[I have a user profile model which holds their &#8216;mugshot&#8217; image. I&#8217;m using modelForm to to present a profile update form. It was easy to build a working form, but now I need a couple of tweaks to the image: 1) it saves with the filename that the user provides; I rather dictate the filename [...]]]></description>
		<wfw:commentRss>http://johnmee.com/2009/12/django-how-to-replace-an-image-using-modelform/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Date formats and Django forms</title>
		<link>http://johnmee.com/2009/12/date-formats-and-django-forms/</link>
		<comments>http://johnmee.com/2009/12/date-formats-and-django-forms/#comments</comments>
		<pubDate>Sun, 13 Dec 2009 00:41:38 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[geek]]></category>
		<category><![CDATA[django]]></category>

		<guid isPermaLink="false">http://www.johnmee.com/?p=603</guid>
		<description><![CDATA[Date formats are something that US dominance remains unable to overcome. Whilst all software assumes a format of mm/dd/yyyy, all other nations of the world want to change that to their local preference. Django is no exception. Here&#8217;s the magic incantation to make Django 1.1 output and input dates in an Australian format. DATE_FORMAT = [...]]]></description>
		<wfw:commentRss>http://johnmee.com/2009/12/date-formats-and-django-forms/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>domainnamegroup.com.au is a scam</title>
		<link>http://johnmee.com/2009/12/domainnamegroupcomau-is-a-scam/</link>
		<comments>http://johnmee.com/2009/12/domainnamegroupcomau-is-a-scam/#comments</comments>
		<pubDate>Wed, 09 Dec 2009 23:55:48 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[geek]]></category>

		<guid isPermaLink="false">http://www.johnmee.com/?p=592</guid>
		<description><![CDATA[I got this letter in the mail recently. At first glance I thought, &#8220;oh, does my programmerforhire.com.au domain need renewal already?&#8221;&#8230; I have a sneaking suspicion that&#8217;s exactly the reaction this item was intended to provoke&#8230; I take pity on the general public. How would the average Joe Blow realise that this letter is not [...]]]></description>
		<wfw:commentRss>http://johnmee.com/2009/12/domainnamegroupcomau-is-a-scam/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>My errors always return to jQuery&#8217;s &#8220;success&#8221; function?</title>
		<link>http://johnmee.com/2009/12/my-errors-always-return-to-jquerys-success-function/</link>
		<comments>http://johnmee.com/2009/12/my-errors-always-return-to-jquerys-success-function/#comments</comments>
		<pubDate>Fri, 04 Dec 2009 05:49:23 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[geek]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://www.johnmee.com/?p=576</guid>
		<description><![CDATA[How do I tell my application that the query was unsuccessful when jQuery insists on always running the &#8220;success&#8221; function when it returns?? When we make an ajax call with jQuery the server&#8217;s response is consumed by the &#8220;success&#8221; function we&#8217;ve provided. &#8220;success&#8221;, in this case, refers to whether the server responded according to the [...]]]></description>
		<wfw:commentRss>http://johnmee.com/2009/12/my-errors-always-return-to-jquerys-success-function/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Age in years with python?</title>
		<link>http://johnmee.com/2009/11/age-in-years-with-python/</link>
		<comments>http://johnmee.com/2009/11/age-in-years-with-python/#comments</comments>
		<pubDate>Mon, 30 Nov 2009 02:17:56 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[geek]]></category>
		<category><![CDATA[django]]></category>
		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://www.johnmee.com/?p=568</guid>
		<description><![CDATA[Given someone&#8217;s date of birth how do I work out their age? This is actually less trivial than first appears because: the person&#8217;s age doesn&#8217;t increment until their birthday passes on the calendar that day is not always the same period of time after midnight on the 1st of January This solution works by asking [...]]]></description>
		<wfw:commentRss>http://johnmee.com/2009/11/age-in-years-with-python/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to convert a VMWare vmdk appliance to VirtualBox vdi</title>
		<link>http://johnmee.com/2009/03/how-to-convert-a-vmware-vmdk-appliance-to-virtualbox-vdi/</link>
		<comments>http://johnmee.com/2009/03/how-to-convert-a-vmware-vmdk-appliance-to-virtualbox-vdi/#comments</comments>
		<pubDate>Sun, 22 Mar 2009 10:59:08 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[geek]]></category>
		<category><![CDATA[virtual]]></category>

		<guid isPermaLink="false">http://lappy.johnmee.com/?p=566</guid>
		<description><![CDATA[There are loads of ready-built appliances for VMWare in .vmdk format but I use VirtualBox and there is never a release in .vdi form to be found. I&#8217;ve heard that virtualbox will run the vmware images&#8230; but is that true? I&#8217;m a little partial to the aging appliances over at virtualappliances.net but they come in [...]]]></description>
		<wfw:commentRss>http://johnmee.com/2009/03/how-to-convert-a-vmware-vmdk-appliance-to-virtualbox-vdi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
