<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Scott Yang's Playground</title>
	
	<link>http://scott.yang.id.au</link>
	<description>Faith, Technology and Randomness in Life, According to Scott</description>
	<lastBuildDate>Thu, 12 Nov 2009 06:13:38 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/syp" /><feedburner:info uri="syp" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><geo:lat>-33.9250</geo:lat><geo:long>151.2228</geo:long><feedburner:browserFriendly>This is an XML content feed. It is intended to be viewed in a newsreader or syndicated to another site, subject to copyright and fair use.</feedburner:browserFriendly><item>
		<title>How to Run Multiple/Concurrent OpenOffice.org Instances on Windows</title>
		<link>http://scott.yang.id.au/2009/11/how-to-run-multipleconcurrent-openoffice-org-instances-on-windows/</link>
		<comments>http://scott.yang.id.au/2009/11/how-to-run-multipleconcurrent-openoffice-org-instances-on-windows/#comments</comments>
		<pubDate>Thu, 12 Nov 2009 06:13:38 +0000</pubDate>
		<dc:creator>scotty</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[OpenOffice.org]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://scott.yang.id.au/2009/11/how-to-run-multipleconcurrent-openoffice-org-instances-on-windows/</guid>
		<description><![CDATA[In one of the project at work we have been using OpenOffice.org running in headless mode to do document format conversions in the background, i.e. converting to and from various MS Office formats OpenDocument formats and PDF. One problem of using standalone OpenOffice.org installation as backend is that you can only run one instance at [...]]]></description>
			<content:encoded><![CDATA[<p>In one of the project at work we have been using <a href="http://www.openoffice.org/">OpenOffice.org</a> running in headless mode to do document format conversions in the background, i.e. converting to and from various MS Office formats OpenDocument formats and PDF. One problem of using standalone OpenOffice.org installation as backend is that you can only run one instance at a time. So while you can have a multi-user front end doing various processing, we used to be able to run document format conversion one at a time.</p>
<p>That sucks.</p>
<p>Here&#8217;s a trick to run multiple OpenOffice.org instances concurrently, all from one single installation, on Windows. Assuming the latest OpenOffice.org 3.x is installed. It&#8217;s actually pretty simple &#8212; just change the <code>USERPROFILE</code> environment variable! Or <code>HOME</code> on Linux/Solaris.</p>
<p>For example, in Java</p>
<pre class="code">
ProcessBuilder pb = new ProcessBuilder("c:\\Program Files\\OpenOffice.org 3\\program\\soffice.exe",
    "-accept=socket,host=localhost,port=7999;urp;StarOffice.ServiceManager",
    "-invisible", "-headless", "-nologo", "-nofirststartwizard");
Map&lt;String, String&gt; env = pb.environment();
if (windoze) {
    env.put("USERPROFILE", "c:\\temp\\12345");
} else {
    env.put("HOME", "/tmp/12345");
}
Process ooo = pb.start();
</pre>
<p>Yeah I am putting this here because the search result on Google is pretty junky. And I just realised that I have not blogged for yonks. Busy buys busy.</p>
]]></content:encoded>
			<wfw:commentRss>http://scott.yang.id.au/2009/11/how-to-run-multipleconcurrent-openoffice-org-instances-on-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress 2.8 “Baker” Released</title>
		<link>http://scott.yang.id.au/2009/06/wordpress-28-baker-released/</link>
		<comments>http://scott.yang.id.au/2009/06/wordpress-28-baker-released/#comments</comments>
		<pubDate>Thu, 11 Jun 2009 02:34:08 +0000</pubDate>
		<dc:creator>scotty</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://scott.yang.id.au/2009/06/wordpress-28-baker-released/</guid>
		<description><![CDATA[Got it on WordPress&#8217; Twitter status:
WordPress 2.8 &#8220;Baker&#8221; is now live to the world! http://bit.ly/wordpress28 (spread the good word)
Yup. It is here, and you can read more about the new features here. To upgrade to the latest version using subversion while Automattic haven&#8217;t tagged the 2.8 &#8211;

Go into your previously checked-out WordPress directory
Run svn switch [...]]]></description>
			<content:encoded><![CDATA[<p>Got it on <a href="http://twitter.com/wordpress/status/2111652227">WordPress&#8217; Twitter status</a>:</p>
<blockquote><p>WordPress 2.8 &#8220;Baker&#8221; is now live to the world! http://bit.ly/wordpress28 (spread the good word)</p></blockquote>
<p>Yup. It is <a href="http://wordpress.org/development/2009/06/wordpress-28/">here</a>, and you can read more about the new features <a href="http://codex.wordpress.org/Version_2.8">here</a>. To upgrade to the latest version using subversion while Automattic haven&#8217;t tagged the 2.8 &#8211;</p>
<ol>
<li>Go into your previously checked-out WordPress directory</li>
<li>Run <code>svn switch -r 11549 http://svn.automattic.com/wordpress/trunk/</code></li>
<li>Navigate to http://yourblob/wp-admin/upgrade.php</li>
</ol>
<p>Done! You are running WordPress 2.8! Of course some plugins and themes might not work but who cares. You are now using the latest and greatest :) Most new features are admin panel related, but the one that interests me the most is:</p>
<ul>
<li>Support timezones and automatic daylight savings time adjustment</li>
</ul>
<p>Yes &#8212; it&#8217;s about time!</p>
]]></content:encoded>
			<wfw:commentRss>http://scott.yang.id.au/2009/06/wordpress-28-baker-released/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Top 500 Sites in Australia According to Alexa</title>
		<link>http://scott.yang.id.au/2009/05/top-500-sites-in-australia-according-to-alexa/</link>
		<comments>http://scott.yang.id.au/2009/05/top-500-sites-in-australia-according-to-alexa/#comments</comments>
		<pubDate>Fri, 29 May 2009 04:10:08 +0000</pubDate>
		<dc:creator>scotty</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[alexa]]></category>
		<category><![CDATA[Australia]]></category>

		<guid isPermaLink="false">http://scott.yang.id.au/2009/05/top-500-sites-in-australia-according-to-alexa/</guid>
		<description><![CDATA[Need to analyse a list of top sites in Australia, and the following Python scripts helped me to get the site name + domain name off from Alexa with minimum effort:

#!/usr/bin/env python
import re, urllib
r = r'&#60;a  href="/siteinfo/(.*?)"  &#62;&#60;strong&#62;(.*?)&#60;/strong&#62;';
for i in range(25):
    u = 'http://www.alexa.com/topsites/countries;%d/AU' % i
    for [...]]]></description>
			<content:encoded><![CDATA[<p>Need to analyse a list of top sites in Australia, and the following Python scripts helped me to get the site name + domain name off <a href="http://www.alexa.com/topsites/countries/AU">from Alexa</a> with minimum effort:</p>
<pre class="code">
#!/usr/bin/env python
import re, urllib
r = r'&lt;a  href="/siteinfo/(.*?)"  &gt;&lt;strong&gt;(.*?)&lt;/strong&gt;';
for i in range(25):
    u = 'http://www.alexa.com/topsites/countries;%d/AU' % i
    for x, m in enumerate(re.findall(r, urllib.urlopen(u).read())):
        print '%d. %s (%s)' % (x + 1 + i * 20, m[1], m[0].strip())
</pre>
<p>YMMV. Considering how Alexa has been trying to obfuscate their HTML pages to prevent scrapping, I won&#8217;t be surprised that this script stops to work tomorrow&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://scott.yang.id.au/2009/05/top-500-sites-in-australia-according-to-alexa/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Tour de Googleplex, Sydney</title>
		<link>http://scott.yang.id.au/2009/04/tour-de-googleplex-sydney/</link>
		<comments>http://scott.yang.id.au/2009/04/tour-de-googleplex-sydney/#comments</comments>
		<pubDate>Thu, 30 Apr 2009 00:56:58 +0000</pubDate>
		<dc:creator>scotty</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Sydney]]></category>

		<guid isPermaLink="false">http://scott.yang.id.au/2009/04/tour-de-googleplex-sydney/</guid>
		<description><![CDATA[Saw this on Sydney Morning Herald yesterday &#8212; Google named Australia&#8217;s best place to work:

After its outstandingly successful parent company topped a 100 Best Places To Work survey conducted by the US magazine Fortune, Google Australia has claimed the No.1 spot in a similar Australian poll.
BRW, which conducted the study, said Google had created a [...]]]></description>
			<content:encoded><![CDATA[<p>Saw this on Sydney Morning Herald yesterday &#8212; <a href="http://www.smh.com.au/news/technology/biztech/google-named-australias-best-place-to-work/2009/04/29/1240982266605.html">Google named Australia&#8217;s best place to work</a>:</p>
<blockquote>
<p>After its outstandingly successful parent company topped a 100 Best Places To Work survey conducted by the US magazine Fortune, Google Australia has claimed the No.1 spot in a similar Australian poll.</p>
<p>BRW, which conducted the study, said Google had created a legendary corporate culture of perks, fun, appreciation and reward for its staff.</p>
</blockquote>
<p>I actually had a privilege to tour the new Googleplex in Pyrmont last Thursday for the Google Partners&#8217; Day. That was quite an experience. Read on to see what I have learnt on that day.</p>
<p><b>BLAH BLAH BLAH</b>. <em>&lt;Silenced due to an NDA I have to sign with Google&gt;</em>.</p>
<p>Well. I guess I <em>cannot</em> actually say what I saw on the Google Partners Day, but just a few things in point forms (which I hope would not violate the terms in NDA):</p>
<ul>
<li>
<p><b>Google Maps sucks</b> (on that day). The <a href="http://maps.google.com.au/maps?f=q&amp;hl=en&amp;q=48%20Pirrama%20Road%2C%20Pyrmont%2C%20NSW%202009%20Australia">Googleplex address on Google Maps</a> was actually around 500 metres North-West along Pirrama Road than what it actually is. It has already been fixed now (thanks Google), but I was trying to navigate myself to there, relying on Google Maps on my Nokia E71, and ended up right in front of a parkland. <em>Google Maps can&#8217;t navigate me to Googleplex</em>? Well, at least that was my excuse of being late on the day.</p>
</li>
<li>
<p><b>Great networking time</b> that you have opportunity talking to other Australia publishers &#8212; only if I was not that naive. Seriously, an engineer like me felt a bit out of place amongst the publishers, advertisers, agents, etc. I also skipped the after-event <del>drinking</del> networking time because I need to come back for MBF BST.</p>
<p>Still, I had a short chat with Guy &amp; Bevan from <a href="http://www.statelesssystems.com/">Stateless Systems</a> &#8212; great guys.</p>
</li>
<li>
<p><b>Seven plastic guitars</b> &#8212; that&#8217;s how many they have for Guitar Hero and Rock Band. Cool.</p>
</li>
<li>
<p><b>The best place to work in Australia</b>, only if you are a single unattached geek who prefer marrying social life with work. Lots of freedom there. Lots of gadgets. Lots of social events as far as I can tell. Good food and good coffee machine. Moreover I am pretty sure you will be working with some of the best geeks in Australia over there.</p>
<p>However if you are married with kids, have a different life outside work, other commitments (church activities for example) &#8212; I am not sure whether the Googler-style would be good.</p>
</li>
</ul>
<p>Interestingly in the SMH article, top 5 of greatest places to work are <b>all in Sydney</b>. Maybe it tells us more about the city than those companies :)</p>
]]></content:encoded>
			<wfw:commentRss>http://scott.yang.id.au/2009/04/tour-de-googleplex-sydney/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Last.fm Streaming Ceased to be Free</title>
		<link>http://scott.yang.id.au/2009/03/lastfm-streaming-ceased-to-be-free/</link>
		<comments>http://scott.yang.id.au/2009/03/lastfm-streaming-ceased-to-be-free/#comments</comments>
		<pubDate>Thu, 26 Mar 2009 11:04:17 +0000</pubDate>
		<dc:creator>scotty</dc:creator>
				<category><![CDATA[Quickies]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Free]]></category>
		<category><![CDATA[Last.fm]]></category>

		<guid isPermaLink="false">http://scott.yang.id.au/?p=1924</guid>
		<description><![CDATA[ Last.fm radio announcement &#8212; international radio listeners will require paid subscription, at €3 per month (although you also get 30 track free trial). The only part of the world that can continue to get free streaming are United States, United Kingdom and Germany. Darn. That means no more free Internet music radio for me [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://scott.yang.id.au/file/images/last-fm-scrobbler.jpg" width="100" height="59" alt="Last.fm" class="floaty"/> <a href="http://blog.last.fm/2009/03/24/lastfm-radio-announcement">Last.fm radio announcement &#8212; international radio listeners will require paid subscription</a>, at €3 per month (although you also get 30 track free trial). The only part of the world that can continue to get free streaming are United States, United Kingdom and Germany. Darn. That means no more free Internet music radio for me :( Oh wait. Last I counted I have 5 VPS in US. Maybe one of them could be used as a proxy to&#8230; Hmm. :)</p>
]]></content:encoded>
			<wfw:commentRss>http://scott.yang.id.au/2009/03/lastfm-streaming-ceased-to-be-free/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Internet Explorer 8 Released, Still no Animated GIF</title>
		<link>http://scott.yang.id.au/2009/03/internet-explorer-8-released-still-no-animated-gif/</link>
		<comments>http://scott.yang.id.au/2009/03/internet-explorer-8-released-still-no-animated-gif/#comments</comments>
		<pubDate>Fri, 20 Mar 2009 00:06:34 +0000</pubDate>
		<dc:creator>scotty</dc:creator>
				<category><![CDATA[Quickies]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://scott.yang.id.au/?p=1918</guid>
		<description><![CDATA[ Microsoft Internet Explorer 8 released to the public as of this morning, thanks to Nick for notifying me. Much better if you are a developer that needs to support the IE platform, or want gimmicks such as web slices. Too bad the animated GIFs is still not working, which I think would probably break [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://scott.yang.id.au/file/images/ie8.png" width="200" height="43" alt="Internet Explorer 8" class="floaty"/> <a href="http://www.microsoft.com/ie8">Microsoft Internet Explorer 8 released to the public</a> as of this morning, thanks to <a href="http://www.nickhodge.com/">Nick</a> for notifying me. <em>Much</em> better if you are a developer that needs to support the IE platform, or want gimmicks such as <a href="http://blog.ozbargain.com.au/2008/ozbargain-web-slice-for-internet-explorer-8/">web slices</a>. Too bad the animated GIFs is still not working, which I think would probably break quite a few web apps.</p>
]]></content:encoded>
			<wfw:commentRss>http://scott.yang.id.au/2009/03/internet-explorer-8-released-still-no-animated-gif/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Undo Send Available on Gmail</title>
		<link>http://scott.yang.id.au/2009/03/undo-send-available-on-gmail/</link>
		<comments>http://scott.yang.id.au/2009/03/undo-send-available-on-gmail/#comments</comments>
		<pubDate>Thu, 19 Mar 2009 23:01:48 +0000</pubDate>
		<dc:creator>scotty</dc:creator>
				<category><![CDATA[Quickies]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Gmail]]></category>
		<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://scott.yang.id.au/?p=1916</guid>
		<description><![CDATA[Undo Send &#8212; new in Gmail Labs, via Twitter. One feature that I wished that I have over the last 14 years of emailing. Back in the Thunderbird days, way too often press [Ctrl]-[Enter] instead of [Enter], which sent off an unfinished email. Too bad you only have 5 seconds to recall your mistakes.
]]></description>
			<content:encoded><![CDATA[<p><a href="http://gmailblog.blogspot.com/2009/03/new-in-labs-undo-send.html">Undo Send &#8212; new in Gmail Labs</a>, via <a href="http://twitter.com/google/status/1357137265">Twitter</a>. One feature that I wished that I have over the last 14 years of emailing. Back in the Thunderbird days, way too often press [Ctrl]-[Enter] instead of [Enter], which sent off an unfinished email. Too bad you only have 5 seconds to recall your mistakes.</p>
]]></content:encoded>
			<wfw:commentRss>http://scott.yang.id.au/2009/03/undo-send-available-on-gmail/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>EveryDNS Python API</title>
		<link>http://scott.yang.id.au/2009/03/everydns-python-api/</link>
		<comments>http://scott.yang.id.au/2009/03/everydns-python-api/#comments</comments>
		<pubDate>Thu, 19 Mar 2009 12:49:48 +0000</pubDate>
		<dc:creator>scotty</dc:creator>
				<category><![CDATA[Quickies]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[EveryDNS]]></category>
		<category><![CDATA[HostingFu]]></category>
		<category><![CDATA[Python]]></category>

		<guid isPermaLink="false">http://scott.yang.id.au/?p=1914</guid>
		<description><![CDATA[HostingFu &#8212; EveryDNS Python API and Command Shell. A Python library I wrote to provide API access to EveryDNS, a free DNS hosting service. Very useful if you need to change IP address to a few dozen DNS records.
]]></description>
			<content:encoded><![CDATA[<p><a href="http://hostingfu.com/article/everydns-python-api-and-command-shell">HostingFu &#8212; EveryDNS Python API and Command Shell</a>. A Python library I wrote to provide API access to <a href="http://www.everydns.net/">EveryDNS</a>, a free DNS hosting service. <em>Very</em> useful if you need to change IP address to a few dozen DNS records.</p>
]]></content:encoded>
			<wfw:commentRss>http://scott.yang.id.au/2009/03/everydns-python-api/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Debian 5 Lenny Web Server Setup Guide, for 64MB VPS</title>
		<link>http://scott.yang.id.au/2009/03/debian-5-lenny-web-server-setup-guide-for-64mb-vps/</link>
		<comments>http://scott.yang.id.au/2009/03/debian-5-lenny-web-server-setup-guide-for-64mb-vps/#comments</comments>
		<pubDate>Thu, 19 Mar 2009 12:46:44 +0000</pubDate>
		<dc:creator>scotty</dc:creator>
				<category><![CDATA[Quickies]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Hosting]]></category>
		<category><![CDATA[LowEndBox]]></category>

		<guid isPermaLink="false">http://scott.yang.id.au/?p=1912</guid>
		<description><![CDATA[LowEndBox &#8212; Yes you can run 18 static sites on a 64MB VPS at VPSLink. Step by step commands included to get a plain vanilla net-install Debian 5 Lenny VPS with only 64MB RAM, to run WordPress.
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.lowendbox.com/blog/yes-you-can-run-18-static-sites-on-a-64mb-link-1-vps/">LowEndBox &#8212; Yes you can run 18 static sites on a 64MB VPS</a> at VPSLink. Step by step commands included to get a plain vanilla net-install Debian 5 Lenny VPS with only 64MB RAM, to run WordPress.</p>
]]></content:encoded>
			<wfw:commentRss>http://scott.yang.id.au/2009/03/debian-5-lenny-web-server-setup-guide-for-64mb-vps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>At Physio This Morning</title>
		<link>http://scott.yang.id.au/2009/03/at-physio-this-morning/</link>
		<comments>http://scott.yang.id.au/2009/03/at-physio-this-morning/#comments</comments>
		<pubDate>Tue, 10 Mar 2009 10:47:17 +0000</pubDate>
		<dc:creator>scotty</dc:creator>
				<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://scott.yang.id.au/?p=1910</guid>
		<description><![CDATA[What happened yesterday morning at 5:30am

Anna called from her room that she wanted to go to the bathroom
Got out of bed, went to her room, and then carried her all the way to bathroom for wee.
Carried her all the way back to her room and put her to sleep.
Back to my own room. Laid down [...]]]></description>
			<content:encoded><![CDATA[<p>What happened yesterday morning at 5:30am</p>
<ul>
<li><a href="http://anna.yang.id.au/">Anna</a> called from her room that she wanted to go to the bathroom</li>
<li>Got out of bed, went to her room, and then carried her all the way to bathroom for wee.</li>
<li>Carried her all the way back to her room and put her to sleep.</li>
<li>Back to my own room. Laid down on my back&#8230;</li>
<li><b>&#8220;Ouch&#8221;</b></li>
</ul>
<p>Yeah. Somehow I injured my back &#8212; to a point that it was too painful to go to work yesterday. Vivian booked me to see the physio at Unigym this morning so I can at least have some &#8220;fix&#8221; before heading to work. It&#8217;s the same physio she visited last week, whom I have never met, nor knew that Vivian and I are related.</p>
<p>So this morning. After filling out the form, she said, &#8220;Oh, your wife and daughter been here before?&#8221; Yup, that would be <a href="http://elsie.yang.id.au/">Elsie</a>.</p>
<p>&#8220;Yeah?&#8221;</p>
<p>&#8220;She looks just like you!&#8221;</p>
<p>&#8220;Right&#8230; You haven&#8217;t seen the other one!&#8221;</p>
<p>Told Vivian about how others commented the similarity between Elsie and me when I got home this evening, and she wasn&#8217;t impressed :)</p>
<p>Anyway. At the end of the day, I need</p>
<ul>
<li>A lot of stretches throughout the day.</li>
<li>Frequent exercise during the week.</li>
<li>Good posture when sitting in front of computers.</li>
</ul>
<p>Or maybe I need to find a job that is not desk-bound&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://scott.yang.id.au/2009/03/at-physio-this-morning/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
