<?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>RickyRobinson.id.au</title>
	<atom:link href="http://rickyrobinson.id.au/feed" rel="self" type="application/rss+xml" />
	<link>http://rickyrobinson.id.au</link>
	<description>Hiding under the sheets</description>
	<lastBuildDate>Wed, 03 Feb 2010 04:11:39 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>RSpec: verifying model instance creation</title>
		<link>http://rickyrobinson.id.au/2010/02/03/rspec-verifying-model-instance-creation</link>
		<comments>http://rickyrobinson.id.au/2010/02/03/rspec-verifying-model-instance-creation#comments</comments>
		<pubDate>Wed, 03 Feb 2010 04:09:18 +0000</pubDate>
		<dc:creator>ricky</dc:creator>
				<category><![CDATA[Innovation]]></category>
		<category><![CDATA[rails]]></category>
		<category><![CDATA[rspec]]></category>

		<guid isPermaLink="false">http://rickyrobinson.id.au/?p=970</guid>
		<description><![CDATA[As a good little rspeccer, I try hard to write my specs to verify behaviour rather than any particular implementation of that behaviour, and, for the moment at least, I&#8217;m in the &#8220;isolate your controllers from the models&#8221; camp. If you&#8217;re not in that camp (i.e., you don&#8217;t mock and prefer to do functional testing [...]]]></description>
			<content:encoded><![CDATA[<p>As a good little rspeccer, I try hard to write my specs to verify behaviour rather than any particular implementation of that behaviour, and, for the moment at least, I&#8217;m in the &#8220;isolate your controllers from the models&#8221; camp. If you&#8217;re not in that camp (i.e., you don&#8217;t mock and prefer to do functional testing alone), this post probably won&#8217;t interest you. One case I often had problems with was model instance creation. There are just so many darn ways to create a new model instance! For a few examples:</p>
<pre class="brush: ruby;">
@order_item = OrderItem.new(:hi =&gt; &quot;hem&quot;, :ho =&gt; &quot;hum&quot;)
@order_item.save!

@order_item = order.order_items.create(:hi =&gt; &quot;hem&quot;, :ho =&gt; &quot;hum&quot;)

@order_item = OrderItem.some_custom_creation_method(:hi =&gt; &quot;hem&quot;, :ho =&gt; &quot;hum&quot;)
</pre>
<h2>The Problem</h2>
<p>When you&#8217;re writing your spec (up front, of course!), you don&#8217;t want to presume too much about how the implementation will unfold. So, do you stub the create method on the model class? But what if we implement using the new/save combo (as above)? Or, what if we create the model instance through an association?</p>
<h2>My Solution</h2>
<p>My first pass solution to this problem is the following, based on Matthew Heidemann&#8217;s <a title="Easy AR association stubbing - Ruby Forum" href="http://www.ruby-forum.com/topic/126993">association stubbing technique</a>:</p>
<pre class="brush: ruby;">
module Spec
  module Mocks
    module Methods
      def stub_creators!(association_name, klass, stubs = {}, valid = true)
        target_mock = Spec::Mocks::Mock.new(klass, {:save =&gt; valid, :valid? =&gt; valid}.merge!(stubs))
        target_mock.stub!(:save!).and_return do
          target_mock.save
          valid || raise(ActiveRecord::RecordNotSaved)
        end
        klass.stub!(:new).and_return(target_mock)
        klass.stub!(:create).and_return do
          target_mock.save
          target_mock
        end
        klass.stub!(:create!).and_return do
          target_mock.save!
          target_mock
        end
        mock_association = Spec::Mocks::Mock.new(association_name.to_s)
        mock_association.stub!(:create).and_return do
          target_mock.save
          target_mock
        end
        mock_association.stub!(:create!).and_return do
          target_mock.save!
          target_mock
        end
        mock_association.stub!(:build).and_return(target_mock)
        self.stub!(association_name).and_return(mock_association)
        target_mock
      end
    end
  end
end
</pre>
<h2>What this is doing</h2>
<p>The thinking here is that, when I write my spec, I don&#8217;t want to be concerned with whether the implementation takes the create, new/save, build/save, or other route. In my spec I just want to know that at some point the controller asked for a model instance to be created and saved. The above code, which I put in spec_helper.rb, allows my specs to do just that. Essentially, I stub <code>save</code> so that it returns true or false, depending upon the optional <code>valid</code> parameter, and the other creation stubs derive from that: <code>save!, create, create!</code> on the target association class and the association itself. I also stub out <code>new</code> and <code>build</code> for convenience. This code ensures that <code>save</code> is <em>always</em> called, even though we&#8217;ve stubbed out <code>create</code> etc. Now if I need to check that a controller action has caused a model instance to be created, I need only ever check that <code>save</code> is called.</p>
<h2>An example</h2>
<p>In my specs I call stub_creators! on an instance of the association <em>owner</em> (in our example, the association owner is Order), passing it the name of the association I want to stub (order_items), the model class of the association <em>target</em> (OrderItem), optional stubs for instances of the association target, and whether or not we want the returned model instance to be valid (defaults to true). With this in place, I can do this:</p>
<pre class="brush: ruby;">
describe OrdersController do
  before(:each)
    @current_user = mock_model(User, :login =&gt; &quot;me&quot;, :logged_in? =&gt; true)
    @order = @current_user.stub_creators!(:order_items, Order)
  end

  it &quot;should create a new order_item&quot; do
    @order.should_receive(:save).and_return(true)
    post 'create'
  end
end
</pre>
<p>And it doesn&#8217;t matter which route the implementation takes to create that model instance. As long as <code>save</code> is called at some point, I know the controller has triggered the creation of the instance somehow.</p>
<h2>Thoughts</h2>
<p>Now, while this seems to work for me, I don&#8217;t really know whether this is kosher. Is it a sensible approach to take? I haven&#8217;t tested this extensively; as I said, it&#8217;s a first pass. Also, there&#8217;s bound to be stuff missing from my solution (for example, it doesn&#8217;t handle <code>find_or_create_by_</code>). Can a similar approach be taken to the various ways to delete an object, too? I shall continue to experiment.</p>
]]></content:encoded>
			<wfw:commentRss>http://rickyrobinson.id.au/2010/02/03/rspec-verifying-model-instance-creation/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing nokogiri on Mac OS X</title>
		<link>http://rickyrobinson.id.au/2010/01/25/installing-nokogiri-on-mac-os-x</link>
		<comments>http://rickyrobinson.id.au/2010/01/25/installing-nokogiri-on-mac-os-x#comments</comments>
		<pubDate>Mon, 25 Jan 2010 12:50:12 +0000</pubDate>
		<dc:creator>ricky</dc:creator>
				<category><![CDATA[Random observations]]></category>

		<guid isPermaLink="false">http://rickyrobinson.id.au/?p=960</guid>
		<description><![CDATA[A quick search reveals that I&#8217;m not the only one who&#8217;s had difficulty installing the nokogiri Ruby gem on Mac OS X. The official docs recommend installing the fink or macports versions of libxml2, and so does this nokogiri tutorial over on the Engine Yard blog. I like macports. It&#8217;s a good way to stay [...]]]></description>
			<content:encoded><![CDATA[<p>A quick <a title="nokogiri libxml2 mac os x - Google Search" href="http://www.google.com.au/search?hl=en&amp;q=nokogiri+libxml2+mac+os+x">search</a> reveals that I&#8217;m not the only one who&#8217;s had difficulty installing the <a title="tenderlove's nokogiri at master - GitHub" href="http://github.com/tenderlove/nokogiri">nokogiri</a> Ruby gem on Mac OS X. The <a title="What to do if libxml2 is being a jerk - nokogiri - GitHub" href="http://wiki.github.com/tenderlove/nokogiri/what-to-do-if-libxml2-is-being-a-jerk">official docs</a> recommend installing the fink or macports versions of libxml2, and so does <a title="Getting Started with Nokogiri | Engine Yard Blog" href="http://www.engineyard.com/blog/2010/getting-started-with-nokogiri/">this nokogiri tutorial</a> over on the Engine Yard blog. I like macports. It&#8217;s a good way to stay up to date with the latest and greatest versions of everything, but I have this thing about trying to make things work with the libraries that come as standard on Mac OS X. I don&#8217;t know, maybe it&#8217;s that it reduces dependencies, or maybe I&#8217;m just strange.</p>
<p>Anyway, here&#8217;s how I got nokogiri to install under Snow Leopard without resorting to macports or fink:</p>
<pre class="brush: bash; gutter: false;">sudo gem install nokogiri -- --with-xml2-include=/usr/include/libxml2 --with-xml2-lib=/usr/lib --with-xslt-dir=/usr</pre>
<p>What&#8217;s weird is that, unless I&#8217;m mistaken, those paths are exactly where nokogiri should be looking for the relevant libxml2 files in the first place! I&#8217;m still to find out whether it all works as it&#8217;s supposed to. But installation is the first step! Let me know if it works for you.</p>
]]></content:encoded>
			<wfw:commentRss>http://rickyrobinson.id.au/2010/01/25/installing-nokogiri-on-mac-os-x/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Introducing Claire</title>
		<link>http://rickyrobinson.id.au/2009/11/06/introducing-claire</link>
		<comments>http://rickyrobinson.id.au/2009/11/06/introducing-claire#comments</comments>
		<pubDate>Fri, 06 Nov 2009 11:29:37 +0000</pubDate>
		<dc:creator>ricky</dc:creator>
				<category><![CDATA[My family and me]]></category>
		<category><![CDATA[claire]]></category>

		<guid isPermaLink="false">http://rickyrobinson.id.au/?p=803</guid>
		<description><![CDATA[Our daughter, Claire Elise, was born on October 29, 2009. Here&#8217;s a photo of her, and another with her proud family.

]]></description>
			<content:encoded><![CDATA[<p>Our daughter, Claire Elise, was born on October 29, 2009. Here&#8217;s a photo of her, and another with her proud family.</p>
<div class="wp-caption alignnone" style="width: 610px"><img title="claire-elise" src="http://rickyrobinson.id.au/wp-content/uploads/2009/11/claire-elise.jpg" alt="Claire Elise Robinson" width="600" height="400" /><p class="wp-caption-text">Claire Elise Robinson</p></div>
<div id="attachment_805" class="wp-caption alignleft" style="width: 650px"><a href="http://rickyrobinson.id.au/wp-content/uploads/2009/11/baby-sister8596.jpg"><img class="size-medium wp-image-805" title="baby-sister8596" src="http://rickyrobinson.id.au/wp-content/uploads/2009/11/baby-sister8596-640x426.jpg" alt="Big brother meets baby sister" width="640" height="426" /></a><p class="wp-caption-text">Big brother meets baby sister</p></div>
<p><br style="clear:both" /></p>
]]></content:encoded>
			<wfw:commentRss>http://rickyrobinson.id.au/2009/11/06/introducing-claire/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>iCal/Exchange Integration in Snow Leopard &#8211; Booking Shared Resources</title>
		<link>http://rickyrobinson.id.au/2009/10/02/icalexchange-integration-in-snow-leopard-booking-shared-resources</link>
		<comments>http://rickyrobinson.id.au/2009/10/02/icalexchange-integration-in-snow-leopard-booking-shared-resources#comments</comments>
		<pubDate>Fri, 02 Oct 2009 10:37:46 +0000</pubDate>
		<dc:creator>ricky</dc:creator>
				<category><![CDATA[Random observations]]></category>
		<category><![CDATA[exchange]]></category>
		<category><![CDATA[ical]]></category>
		<category><![CDATA[resources]]></category>

		<guid isPermaLink="false">http://rickyrobinson.id.au/2009/10/02/icalexchange-integration-in-snow-leopard-booking-shared-resources</guid>
		<description><![CDATA[So I&#8217;ve been using Snow Leopard for a few weeks now. Not too many changes on the surface. The integration of Exposé into the Dock is probably one of the more visible changes. But being in an organisation where Microsoft Exchange is the chosen communication and, dare I say it, collaboration platform, the Exchange support [...]]]></description>
			<content:encoded><![CDATA[<p>So I&#8217;ve been using Snow Leopard for a few weeks now. Not too many changes on the surface. The integration of Exposé into the Dock is probably one of the more visible changes. But being in an organisation where Microsoft Exchange is the chosen communication and, dare I say it, collaboration platform, the Exchange support in Mail, iCal and Address Book is really useful.</p>
<p>However, there was one thing I couldn&#8217;t figure out how to do: booking a shared resource, such as a meeting room or a car park. Today, we figured out how to do it, and, in hindsight, it should have been obvious.</p>
<p>To book a shared resource, create a calendar event in iCal as you normally would, making sure the event is created in your Exchange calendar as opposed to your personal (local) one. Then, in the invitees field, add the resource you wish to book. Start typing the name of the resource, and if your Exchange integration is working correctly (and your IT people have set up the resources in Exchange correctly), it should find the resource just as if you were adding a person as an invitee. Once you&#8217;ve added the resource, you should see a link that says &#8220;Available meeting times&#8230;&#8221;. Click it. This will show you when the resource is available and when it&#8217;s booked, as well as the availability of any other people you&#8217;ve added to the invitees field. Once you&#8217;ve done that, you&#8217;re good to go! Microsoft Outlook users will see that the resource has been booked (if they&#8217;ve added the resource as a Shared Calendar to their Outlook console).</p>
<div class="zemanta-pixie"><img class="zemanta-pixie-img" alt="" src="http://img.zemanta.com/pixy.gif?x-id=0d326a9d-4f1b-86bf-8343-8ab76d5f93dd" /></div>
]]></content:encoded>
			<wfw:commentRss>http://rickyrobinson.id.au/2009/10/02/icalexchange-integration-in-snow-leopard-booking-shared-resources/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Landing Pilot is the Non-Handling Pilot</title>
		<link>http://rickyrobinson.id.au/2009/08/30/the-landing-pilot-is-the-non-handling-pilot</link>
		<comments>http://rickyrobinson.id.au/2009/08/30/the-landing-pilot-is-the-non-handling-pilot#comments</comments>
		<pubDate>Sun, 30 Aug 2009 13:19:38 +0000</pubDate>
		<dc:creator>ricky</dc:creator>
				<category><![CDATA[Random observations]]></category>
		<category><![CDATA[quote]]></category>
		<category><![CDATA[reading]]></category>
		<category><![CDATA[software engineering]]></category>
		<category><![CDATA[tech]]></category>

		<guid isPermaLink="false">http://rickyrobinson.id.au/?p=795</guid>
		<description><![CDATA[The Landing Pilot is the Non-Handling Pilot until the &#8220;decision altitude&#8221; call, when the Handling Non-Landing Pilot hands the handling to the Non-Handling Landing Pilot, unless the latter calls &#8220;go-around&#8221;, in which case the Handling Non-Landing Pilot, continues Handling and the Non-Handling Landing Pilot continues non-handling until the next call of &#8220;land&#8221; or &#8220;go-around&#8221;, as [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>The Landing Pilot is the Non-Handling Pilot until the &#8220;decision altitude&#8221; call, when the Handling Non-Landing Pilot hands the handling to the Non-Handling Landing Pilot, unless the latter calls &#8220;go-around&#8221;, in which case the Handling Non-Landing Pilot, continues Handling and the Non-Handling Landing Pilot continues non-handling until the next call of &#8220;land&#8221; or &#8220;go-around&#8221;, as appropriate.</p>
<p>In view of the recent confusion over these rules, it was deemed necessary to restate them clearly.</p>
<p style="text-align: right"><em>&#8211; British Airways memorandum, quoted in </em>Pilot Magazine<em>, December 1996 (and in </em><a title="The Pragmatic Bookshelf | The Pragmatic Programmer" href="http://www.pragprog.com/the-pragmatic-programmer">The Pragmatic Programmer</a><em>, which is where I read it).<br />
</em></p>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://rickyrobinson.id.au/2009/08/30/the-landing-pilot-is-the-non-handling-pilot/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Citemine: a new way to do peer review and publishing</title>
		<link>http://rickyrobinson.id.au/2009/07/24/citemine-a-new-way-to-do-peer-review-and-publishing</link>
		<comments>http://rickyrobinson.id.au/2009/07/24/citemine-a-new-way-to-do-peer-review-and-publishing#comments</comments>
		<pubDate>Fri, 24 Jul 2009 01:32:55 +0000</pubDate>
		<dc:creator>ricky</dc:creator>
				<category><![CDATA[Innovation]]></category>
		<category><![CDATA[bibliometrics]]></category>
		<category><![CDATA[mechanism design]]></category>
		<category><![CDATA[open access]]></category>
		<category><![CDATA[peer review]]></category>
		<category><![CDATA[publishing]]></category>
		<category><![CDATA[reputation]]></category>
		<category><![CDATA[research]]></category>
		<category><![CDATA[scientometrics]]></category>

		<guid isPermaLink="false">http://rickyrobinson.id.au/?p=791</guid>
		<description><![CDATA[As you probably know, I&#8217;m a ubicomp researcher by day. However, on the side, NICTA&#8217;s allowed me to allocate some of my time to develop a new way for researchers to review and publish papers. We&#8217;ve deployed a very early proof-of-concept of our idea called Citemine. We think Citemine has several nice properties, including a [...]]]></description>
			<content:encoded><![CDATA[<p>As you probably know, I&#8217;m a <a title="Ubiquitous Computing - Wikipedia" href="http://en.wikipedia.org/wiki/Ubicomp">ubicomp</a> researcher by day. However, on the side, <a title="NICTA - Australia's ICT Research Centre of Excellence" href="http://nicta.com.au/">NICTA</a>&#8217;s allowed me to allocate some of my time to develop a new way for researchers to review and publish papers. We&#8217;ve deployed a very early proof-of-concept of our idea called <a title="Citemine" href="http://citemine.com/">Citemine</a>. We think Citemine has several nice properties, including a potentially more meaningful measure of research quality than existing indicators such as <em>h</em> index and raw citation counts. You can read all about the underlying mechanism in Citemine <a title="On the Design and Implementation of a Market Mechanism for Peer Review and Publishing" href="http://nicta.com.au/people/rrobinson/publications/citemine-paper.html">here</a>. Until we deploy a feedback mechanism for papers, please leave your comments about Citemine at the official <a title="First paper posted" href="http://blog.citemine.com/2009/06/21/first-paper-posted/">Citemine blog</a>.</p>
<p>Note that we&#8217;re experiencing a few difficulties with our Citemine production server environment, which means slow page loads from time to time. And it&#8217;s clearly lacking polish, but hopefully it serves its purpose as a proof-of-concept so that you can get a feel for what it&#8217;s all about. But please <em>do</em> read the paper. I&#8217;ve been told it&#8217;s a <q>fun</q> read.</p>
]]></content:encoded>
			<wfw:commentRss>http://rickyrobinson.id.au/2009/07/24/citemine-a-new-way-to-do-peer-review-and-publishing/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>The PACE framework for context-aware computing</title>
		<link>http://rickyrobinson.id.au/2009/06/26/the-pace-framework-for-context-aware-computing</link>
		<comments>http://rickyrobinson.id.au/2009/06/26/the-pace-framework-for-context-aware-computing#comments</comments>
		<pubDate>Fri, 26 Jun 2009 07:42:47 +0000</pubDate>
		<dc:creator>ricky</dc:creator>
				<category><![CDATA[Innovation]]></category>
		<category><![CDATA[dstc]]></category>
		<category><![CDATA[street computing]]></category>
		<category><![CDATA[ubicomp]]></category>

		<guid isPermaLink="false">http://rickyrobinson.id.au/?p=788</guid>
		<description><![CDATA[A long time ago, in a Cooperative Research Centre far, far away (well, actually, it used to be just across the road from where I&#8217;m writing this post, but it sadly met its demise), a small group of researchers worked on a ubiquitous computing project that came to be known as PACE: Pervasive Autonomic Context-aware [...]]]></description>
			<content:encoded><![CDATA[<p>A long time ago, in a Cooperative Research Centre far, far away (well, actually, it used to be just across the road from where I&#8217;m writing this post, but it sadly met its demise), a small group of researchers worked on a ubiquitous computing project that came to be known as <a title="DSTC PACE Project" href="http://www.itee.uq.edu.au/~pace/">PACE</a>: Pervasive Autonomic Context-aware Environments. This group produced a framework for context-aware computing, which was the subject of <a title="Karen Henricksen's Publications" href="http://henricksen.id.au/publications.html">many research papers</a> at Pervasive, PerCom, JPMC and elsewhere. For various reasons, the source code for PACE has only just now come out into the open. Yes, you can now <a title="SourceForge.net: PACE Framework" href="http://sourceforge.net/projects/pace-framework/">download the PACE framework</a> from SourceForge. Unfortunately, there won&#8217;t be a lot of support offered along with the code.</p>
]]></content:encoded>
			<wfw:commentRss>http://rickyrobinson.id.au/2009/06/26/the-pace-framework-for-context-aware-computing/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free internet access on the train in Brisbane</title>
		<link>http://rickyrobinson.id.au/2009/04/12/free-internet-access-on-the-train-in-brisbane</link>
		<comments>http://rickyrobinson.id.au/2009/04/12/free-internet-access-on-the-train-in-brisbane#comments</comments>
		<pubDate>Sun, 12 Apr 2009 09:14:19 +0000</pubDate>
		<dc:creator>ricky</dc:creator>
				<category><![CDATA[Innovation]]></category>
		<category><![CDATA[brisbane]]></category>
		<category><![CDATA[go card]]></category>
		<category><![CDATA[street computing]]></category>
		<category><![CDATA[tech]]></category>
		<category><![CDATA[transport]]></category>

		<guid isPermaLink="false">http://rickyrobinson.id.au/?p=783</guid>
		<description><![CDATA[Queensland Rail will be offering south-east Queensland commuters free wireless access to the internet from early 2010, according to the Minister for Transport, Rachel Nolan. This access will use spare capacity on the infrastructure used to transmit real-time video footage from surveillance cameras to QR&#8217;s control room at Central Station.
One thing from that story that [...]]]></description>
			<content:encoded><![CDATA[<p>Queensland Rail will be offering south-east Queensland commuters <a href="http://www.news.com.au/couriermail/story/0,27574,25321035-3102,00.html">free wireless access to the internet</a> from early 2010, according to the Minister for Transport, Rachel Nolan. This access will use spare capacity on the infrastructure used to transmit real-time video footage from surveillance cameras to QR&#8217;s control room at Central Station.</p>
<p>One thing from that story that caught my attention was this:</p>
<blockquote><p>She (Rachel Nolan) said people living near train lines or stations would not be able to tap into the free internet service because it would be &#8220;firewalled&#8221;.</p></blockquote>
<p>That would have to be one pretty intelligent firewall! Here are some <span style="font-style: italic;">actual</span> possibilities to guard against free-loaders. One not so attractive way to do it would be to set a limit on daily downloads. The theory is that there&#8217;s only so much you could download on the longest possible trip on the QR network in south-east Queensland (say, Gold Coast to Nambour, or something like that). The other more attractive solution, in my opinion, would be to tie usage to <span style="font-style: italic;">go</span> cards. Your internet session starts when you swipe on at the beginning of your journey, and it finishes when you swipe off. There&#8217;d be some kind of web-based login procedure like you get at hotels and elsewhere, where you enter your <span style="font-style: italic;">go</span> card number to gain access; or regular users could have the option of registering the MAC address of their wireless card with QR/Translink to skip the login procedure. Given that it still takes ages for a credit card top up to find its way onto my <span style="font-style: italic;">go</span> card, I don&#8217;t hold out much hope for QR/Translink being able to implement this particular solution within the already very optimistic time frame of early 2010. But I do think it&#8217;s a reasonable long term solution. It might even help Translink in their quest to move more commuters over to the <span style="font-style: italic;">go</span> card from paper tickets.</p>
<div class="zemanta-pixie"><img class="zemanta-pixie-img" src="http://img.zemanta.com/pixy.gif?x-id=f1d232c5-0828-8cc3-bda3-e8f4294258d0" alt="" /></div>
]]></content:encoded>
			<wfw:commentRss>http://rickyrobinson.id.au/2009/04/12/free-internet-access-on-the-train-in-brisbane/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Social Radar: Twitter on top</title>
		<link>http://rickyrobinson.id.au/2009/04/10/social-radar-twitter-on-top</link>
		<comments>http://rickyrobinson.id.au/2009/04/10/social-radar-twitter-on-top#comments</comments>
		<pubDate>Fri, 10 Apr 2009 04:33:39 +0000</pubDate>
		<dc:creator>ricky</dc:creator>
				<category><![CDATA[Innovation]]></category>
		<category><![CDATA[advertising]]></category>
		<category><![CDATA[branding]]></category>
		<category><![CDATA[metrics]]></category>
		<category><![CDATA[social networks]]></category>

		<guid isPermaLink="false">http://rickyrobinson.id.au/?p=779</guid>
		<description><![CDATA[There are many ways to measure brand awareness. As in most analyses, you shouldn&#8217;t rely on any single metric to determine which brands have most mindshare. Having said that, the Social Radar Top 50 Social Brands ranking is interesting. It measures conversations and web chatter. According to the ranking, Twitter comes out on top. Google [...]]]></description>
			<content:encoded><![CDATA[<p>There are many ways to measure brand awareness. As in most analyses, you shouldn&#8217;t rely on any single metric to determine which brands have most mindshare. Having said that, the <a title="Social Radar Top 50 Social Brands" href="http://infegy.com/buzzstudy/social-radar-top-50-social-brands-march-2009/">Social Radar Top 50 Social Brands</a> ranking is interesting. It measures <q cite="http://infegy.com/buzzstudy/the-new-rules-of-branding/">conversations and web chatter</q>. According to the ranking, <a title="Twitter" href="http://twitter.com/">Twitter</a> comes out on top. <a title="Google" href="http://www.google.com/">Google</a> comes in second, and <a title="Facebook" href="http://www.facebook.com/">Facebook</a> makes it into fifth place. One of Twitter&#8217;s major competitors, <a title="FriendFeed" href="http://friendfeed.com/">FriendFeed</a>, doesn&#8217;t even make it into the top 50 by this particular measure (did <a title="Scobleizer: Technology, innovation, and geek enthusiasm" href="http://scobleizer.com/">Scoble</a> back the wrong horse and <a title="Guy Kawasaki" href="http://www.guykawasaki.com/">Kawasaki</a> the right one?). But this ranking didn&#8217;t just include &#8220;social networking&#8221; brands. Rather, it was a survey of how frequently <em>any</em> brand was mentioned in a collection of <q cite="http://infegy.com/buzzstudy/the-new-rules-of-branding/">blog posts, news feeds, forums, social networks and Twitter posts</q>. Interestingly, such well known brands as Coke and McDonald&#8217;s fell outside the top 50. I imagine this is because these brands no longer have novelty value. They are ingrained in our culture. Really the only time we could be bothered blogging about these sorts of brands is when controversy strikes, or when someone makes a provocative movie like <a title="Super Size Me (2004)" href="http://www.imdb.com/title/tt0390521/"><em>Super Size Me</em></a>.</p>
<p>So what does this mean? It means that right now Twitter is <em>hot</em>. People are talking about it, and that&#8217;s the best that Biz Stone and company could hope for. The big question for Twitter is how to convert all the talk into more users, and ultimately revenue. If they do manage to do this, it would be nice to know how they did it!</p>
]]></content:encoded>
			<wfw:commentRss>http://rickyrobinson.id.au/2009/04/10/social-radar-twitter-on-top/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fleet Foxes &#8211; White Winter Hymnal</title>
		<link>http://rickyrobinson.id.au/2009/03/22/fleet-foxes-white-winter-hymnal</link>
		<comments>http://rickyrobinson.id.au/2009/03/22/fleet-foxes-white-winter-hymnal#comments</comments>
		<pubDate>Sun, 22 Mar 2009 12:21:46 +0000</pubDate>
		<dc:creator>ricky</dc:creator>
				<category><![CDATA[Random observations]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://rickyrobinson.id.au/2009/03/22/fleet-foxes-white-winter-hymnal</guid>
		<description><![CDATA[
Heard this song on the radio a while ago and couldn&#8217;t track it down. But today I caught it on ABC Local Radio, would you believe.

]]></description>
			<content:encoded><![CDATA[<div class="youtube-video"><object height="355" width="425"><param name="movie" value="http://www.youtube.com/v/DrQRS40OKNE"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/DrQRS40OKNE" type="application/x-shockwave-flash" wmode="transparent" height="355" width="425"></embed></object></div>
<p>Heard this song on the radio a while ago and couldn&#8217;t track it down. But today I caught it on ABC Local Radio, would you believe.</p>
<div class="zemanta-pixie"><img class="zemanta-pixie-img" src="http://img.zemanta.com/pixy.gif?x-id=96bce4fa-6562-4ed3-b763-ceda00781795" /></div>
]]></content:encoded>
			<wfw:commentRss>http://rickyrobinson.id.au/2009/03/22/fleet-foxes-white-winter-hymnal/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Jeffrey Ullman on the National Benefit</title>
		<link>http://rickyrobinson.id.au/2009/02/15/jeffrey-ullman-on-the-national-benefit</link>
		<comments>http://rickyrobinson.id.au/2009/02/15/jeffrey-ullman-on-the-national-benefit#comments</comments>
		<pubDate>Sun, 15 Feb 2009 09:31:12 +0000</pubDate>
		<dc:creator>ricky</dc:creator>
				<category><![CDATA[Innovation]]></category>
		<category><![CDATA[capitalism]]></category>
		<category><![CDATA[inside nicta]]></category>
		<category><![CDATA[national benefit]]></category>
		<category><![CDATA[ullman]]></category>

		<guid isPermaLink="false">http://rickyrobinson.id.au/?p=774</guid>
		<description><![CDATA[Once a year, NICTA&#8217;s external advisory boards, called ISAG/IBAG (International {Scientific, Business} Advisory Group), hold a meeting. There are some well known people on this panel, including Jeffrey D. Ullman, who is one of, if not the, most cited computer scientists. At the most recent ISAG/IBAG, the NICTA executive sought some advice on the potential [...]]]></description>
			<content:encoded><![CDATA[<p>Once a year, NICTA&#8217;s external advisory boards, called ISAG/IBAG (International {Scientific, Business} Advisory Group), hold a meeting. There are some well known people on this panel, including Jeffrey D. Ullman, who is one of, if not <em>the</em>, most cited computer scientists. At the most recent ISAG/IBAG, the NICTA executive sought some advice on the potential for conflict between the objectives of national benefit and commercialisation. Ullman&#8217;s answer was succinct, cutting and delivered with a dry wit that I have come to appreciate over the years since I&#8217;ve been at NICTA:</p>
<blockquote><p>National benefit versus private benefit&#8230; Hey, that&#8217;s what capitalism is designed to do, is to guarantee that there is no contradiction.</p></blockquote>
<p>The line got a delayed laugh, because it took the audience a few moments to realise that was all Professor Ullman had to say on the topic, and that he&#8217;d moved on to the next topic. People laughed, but he was serious, and more right than many would be willing to accept.</p>
]]></content:encoded>
			<wfw:commentRss>http://rickyrobinson.id.au/2009/02/15/jeffrey-ullman-on-the-national-benefit/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How do you like your coffee?</title>
		<link>http://rickyrobinson.id.au/2009/02/08/how-do-you-like-your-coffee</link>
		<comments>http://rickyrobinson.id.au/2009/02/08/how-do-you-like-your-coffee#comments</comments>
		<pubDate>Sun, 08 Feb 2009 03:46:26 +0000</pubDate>
		<dc:creator>ricky</dc:creator>
				<category><![CDATA[Eco-philo-pol]]></category>
		<category><![CDATA[cairns]]></category>
		<category><![CDATA[coffee]]></category>
		<category><![CDATA[fairtrade]]></category>
		<category><![CDATA[kuranda]]></category>
		<category><![CDATA[rainforest alliance]]></category>

		<guid isPermaLink="false">http://rickyrobinson.id.au/?p=752</guid>
		<description><![CDATA[While enjoying a fantastic cup of coffee courtesy of the Kuranda Coffee Republic up near Cairns, I remembered that I wanted to write something about the various &#8220;socially responsible&#8221; trade organisations, specifically those that have a strong association to the coffee trade. Of late, there are two main socially responsible trade systems vying for your [...]]]></description>
			<content:encoded><![CDATA[<p>While enjoying a fantastic cup of coffee courtesy of the <a title="Kuranda Coffee Republic" href="http://kurandacoffeerepublic.com.au/">Kuranda Coffee Republic</a> up near Cairns, I remembered that I wanted to write something about the various &#8220;socially responsible&#8221; trade organisations, specifically those that have a strong association to the coffee trade. Of late, there are two main socially responsible trade systems vying for your conscience and your dollar: Fair Trade and Rainforest Alliance.</p>
<p>Fair Trade is really a movement consisting of a number of principal organisations: <a title="Fairtrade Labelling Organizations" href="http://www.fairtrade.net/">Fairtrade Labelling Organizations International</a> (FLO), <a title="World Fair Trade Organization" href="http://en.wikipedia.org/wiki/World_Fair_Trade_Organization">World Fair Trade Organization</a>, <a title="Network of European Worldshops" href="http://en.wikipedia.org/wiki/Network_of_European_Worldshops">Network of European Worldshops</a> and <a title="European Fair Trade Association" href="http://en.wikipedia.org/wiki/European_Fair_Trade_Association">European Fair Trade Association</a>. While <em>Fair Trade</em> refers to the overall movement, <em>Fairtrade</em> refers to the certification given by FLO. In the rest of this article, I refer to <em>Fairtrade</em>, because when you&#8217;re in the supermarket shopping for coffee, that&#8217;s the label you will see. One of the defining features of Fairtrade is that it guarantees the coffee grower (or whatever the product happens to be; we&#8217;ll just be dealing with coffee in this article) a predetermined minimum price for his/her coffee.</p>
<p><img class="alignleft" title="Fairtrade" src="http://www.fairtrade.net/fileadmin/templates/gfx/logo.gif" alt="" width="96" height="96" />You can look at Fairtrade as being just like free trade, except that the coffee being sold has been sprinkled with a range of &#8220;socially responsible enhancements&#8221;. As mentioned, chief among these enhancements is the knowledge that the farmer who grows the coffee beans that end up in your mug gets at least an agreed minimum price for the coffee, and his/her farm workers are similarly guaranteed a minimum wage. The idea is that the consumer is paying a premium for a superior product, because the coffee has been produced in a way that yields greater benefits for the farmers who grow the coffee. So, in this respect, the price of Fairtrade coffee is set by supply and demand, just like non Fairtrade coffee. There is an ethical dilemma here, however. An important criticism of Fairtrade, and one that I believe is completely valid, is that Fairtrade artificially inflates the price of coffee, encouraging more people to grow coffee, thereby increasing supply and, in the long run, placing downward pressure on coffee prices (non-Fairtrade coffee). This, of course, results in farmers receiving less and less for the coffee they grow. The ethical dilemma is that Fairtrade coffee is marketed as being socially responsible and fair, but the question must be asked &#8220;fair to whom?&#8221; Certainly not to the farmer who sees the price of his coffee going down because all his mates have decided to try to get a piece of the action. The already oversupplied coffee market becomes even further oversupplied. Consumers with a social conscience, I believe, ought to think twice about Fairtrade &#8211; it might not be as fair or as socially responsible as you think. Besides, I wonder just how many consumers of Fairtrade coffee take the time to find out what this minimum wage is, and what this minimum wage could buy in the given farmer&#8217;s country.</p>
<p><a title="Rainforest Alliance" href="http://www.rainforest-alliance.org/">Rainforest Alliance</a> has different goals to that of Fairtrade. Its mission is to</p>
<blockquote cite="http://www.rainforest-alliance.org/about.cfm?id=mission"><p>&#8230;conserve biodiversity and ensure sustainable livelihoods by transforming land-use practices, business practices and consumer behavior.</p></blockquote>
<p><img class="alignleft" title="Rainforest Alliance Certified" src="http://www.rainforest-alliance.org/about/images/ra_seal2.jpg" alt="" width="89" height="82" />Rainforest Alliance certification means that goods (coffee in our case) are produced in an environmentally sustainable fashion, in adherence to the <a href="http://www.rainforest-alliance.org/agriculture.cfm?id=san">Sustainable Agriculture Network</a> standards. These standards set down criteria relating to water pollution, erosion, environmental and human health, wildlife habitat protection, waste, water efficiency, farm management and working conditions. An important distinction from Fairtrade is that there is no artificial minimum price set for the product. As such, there is no artificial incentive introduced for more farmers to produce coffee, and therefore no distortion of production levels and prices. For these reasons, I&#8217;d be more comfortable buying Rainforest Alliance Certified coffee than Fairtrade Certified coffee. Rainforest Alliance certification is gaining momentum, with some big corporations, no doubt trying to improve their image, serving up or packaging up Rainforest Alliance Certified coffee. These include <a title="McDonald's McCafé Rainforest Alliance Certified&amp;#8482; Coffee - Rainforest Alliance" href="http://www.mcdonalds.com.au/mccafe-sustainablecoffee/rainforest-alliance.asp">McDonald&#8217;s</a> and <a title="Agricultural Commodities Story" href="http://www.kraft.com/about/sustainability/agriculture.html">Kraft</a>.</p>
<p>Of course, there are other kinds of certification as well, including <a title="UTZ" href="http://www.utzcertified.org/">UTZ</a> and various organic certifications. There&#8217;s also direct trade, whereby a coffee roaster or boutique coffee shop establishes a relationship directly with a coffee grower. This allows the buyer to select a grower who meets their own set of ethical criteria. Because the buyer knows first hand how the coffee is produced, there is no formal certification required. See the <a title="Cooperative Coffees" href="http://coopcoffees.com/">Cooperative Coffees</a> site for <a title="Making Sense of Certification" href="http://coopcoffees.com/all_news/media/articles/making-sense-of-certification-2014-fair-trade-direct-trade-rainforest-alliance-utz-whole-trade-and-organic/">a good explanation of the most common kinds</a> of certifications.</p>
<p><img class="alignleft size-medium wp-image-765" style="margin-right: 0.5em" title="kuranda-coffee" src="http://rickyrobinson.id.au/wp-content/uploads/2009/02/kuranda-coffee-320x480.jpg" alt="kuranda-coffee" width="116" height="174" />Meanwhile, back at the Kuranda Coffee Republic, Mike just serves cups of great coffee, which are each <q cite="http://kurandacoffeerepublic.com.au/">works of art and feats of engineering</q>, with an ample helping of banter. His differentiation is that he sells only direct to people, spurning lucrative approaches by corporations. I guess you could call this <em>extreme</em> direct trade, so his coffee requires no further certification. It&#8217;s not about capitalism or not capitalism, he claims. It&#8217;s that he wants all of the beans he grows to be served with a &#8220;Hello, how&#8217;s it going&#8221; and a &#8220;Thanks for coming.&#8221; Sell to corporations, he argues, and you can&#8217;t be guaranteed that the shop assistant or barista will respect the beans and the experience. And here&#8217;s a tip: engage Mike in good conversation, say thanks for your coffee, and for your next cup he might just give you the discount he reserves for locals. Even at the standard price of $3 for a large cup, you&#8217;ll be hard pressed to find a better value coffee anywhere in Far North Queensland, or all of Queensland for that matter. Will I be going back to the Kuranda Coffee Republic next time I&#8217;m in Cairns? You bet.</p>
]]></content:encoded>
			<wfw:commentRss>http://rickyrobinson.id.au/2009/02/08/how-do-you-like-your-coffee/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Parents go north</title>
		<link>http://rickyrobinson.id.au/2009/01/26/parents-go-north</link>
		<comments>http://rickyrobinson.id.au/2009/01/26/parents-go-north#comments</comments>
		<pubDate>Mon, 26 Jan 2009 12:08:22 +0000</pubDate>
		<dc:creator>ricky</dc:creator>
				<category><![CDATA[My family and me]]></category>
		<category><![CDATA[cairns]]></category>
		<category><![CDATA[clifton beach]]></category>
		<category><![CDATA[dad]]></category>
		<category><![CDATA[flood]]></category>
		<category><![CDATA[mum]]></category>

		<guid isPermaLink="false">http://rickyrobinson.id.au/?p=750</guid>
		<description><![CDATA[My parents chose an &#8220;interesting&#8221; time to move to Cairns. It was the weekend of January 10-11, and Far North Queensland had been absolutely drenched by the storm systems accompanying Cyclone Charlotte. Cairns was isolated due to flooding, and parts of Cairns itself were underwater. The city, along with many other councils across the Far [...]]]></description>
			<content:encoded><![CDATA[<p>My parents chose an &#8220;interesting&#8221; time to move to Cairns. It was the weekend of January 10-11, and Far North Queensland had been absolutely drenched by the storm systems accompanying Cyclone Charlotte. Cairns was isolated due to flooding, and parts of Cairns itself were underwater. The city, along with many other councils across the Far North region, was <a title="Qld Govt activates disaster declarations in flooded north" href="http://www.abc.net.au/news/stories/2009/01/13/2464687.htm">declared a disaster area</a>. They set out in their car on the morning of the 11<sup>th</sup>, and arrived at their new house in Clifton Beach a day later than they were expecting on the 14<sup>th</sup>. The delay was caused by the flooding of the Seymour River north of Ingham, partly due to the storms and partly due to the massive king tides at the time. Anyway, after spending the night in Ingham, and then waiting for another seven hours the next day in a long convoy of cars on the Bruce Highway for the waters to subside to a safe level, they were finally on their way again. In the end, their removal truck beat them to their house, because trucks were allowed to cross the river many hours before cars were given the go-ahead. Even then, cars were towed through the water three at a time by a tow truck: one on top, one underneath, and one dragged along behind. My parents scored the top deck of the truck, and they remained in the car for the haul across the river. Quite exciting, apparently. When they eventually reached their house, they were happy to find everything in one piece, and not so much as a branch out of place.</p>
<p>We&#8217;re going to get the chance to see their new house for ourselves when we visit them in the near future. It will be Xander&#8217;s first flight. If it&#8217;s anything like his first train trip, he&#8217;ll have a ball. Just hope we can avoid the <a title="Dengue fever epidemic hits Cairns" href="http://www.abc.net.au/news/stories/2009/01/20/2470439.htm">Dengue fever epidemic</a> when we get there.</p>
]]></content:encoded>
			<wfw:commentRss>http://rickyrobinson.id.au/2009/01/26/parents-go-north/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Elm Haus Cafe</title>
		<link>http://rickyrobinson.id.au/2009/01/18/the-elm-haus-cafe</link>
		<comments>http://rickyrobinson.id.au/2009/01/18/the-elm-haus-cafe#comments</comments>
		<pubDate>Sun, 18 Jan 2009 13:06:01 +0000</pubDate>
		<dc:creator>ricky</dc:creator>
				<category><![CDATA[Devonshire tea review]]></category>
		<category><![CDATA[mount glorious]]></category>

		<guid isPermaLink="false">http://rickyrobinson.id.au/?p=739</guid>
		<description><![CDATA[
In my last article, I mentioned a little cafe in Mount Glorious called the Elm Haus. Well yesterday Karen and I made a special trip up the mountain to try their Devonshire tea, having left Xander with his grandparents. We&#8217;re delighted to say that it was well worth it.

It&#8217;s easy getting to the Elm Haus [...]]]></description>
			<content:encoded><![CDATA[<div class="mceTemp">
<p>In <a title="The ones Karen rejected" href="http://rickyrobinson.id.au/2009/01/03/the-ones-karen-rejected">my last article</a>, I mentioned a little cafe in Mount Glorious called the <a title="The Elm Haus Cafe" href="http://www.mtglorious.net/">Elm Haus</a>. Well yesterday Karen and I made a special trip up the mountain to try their Devonshire tea, having left Xander with his grandparents. We&#8217;re delighted to say that it was well worth it.</div>
<div class="mceTemp">
<p>It&#8217;s easy getting to the Elm Haus (or Elm House, depending upon which sign you read). If you&#8217;re driving from Brisbane, make your way to Mount Glorious via Samford Road, or for a more scenic drive, wind your way up Mount Nebo Road, which eventually joins Mount Glorious Road. Either way, drive through Mount Glorious Village until you see the Elm Haus Cafe on the right side of the road. (Click <a title="Google Street View" href="http://maps.google.com.au/maps?hl=en&amp;q=Mount+Glorious&amp;ie=UTF8&amp;split=0&amp;ll=-27.331248,152.760193&amp;spn=0,359.978371&amp;z=16&amp;layer=c&amp;cbll=-27.33133,152.760258&amp;panoid=8SU73qhtH025IVVGGEn3_w&amp;cbp=12,418.4406261861827,,0,9.748061004781793">here</a> to see the Elm Haus in Google Street View.)</div>
<div class="mceTemp">
<p>The cafe is nestled in a grove of tree ferns by the Maiala rainforest. This setting immediately conveys a sense of calm, a feeling enhanced by its cozy interior. Although it was a perfect day to sit on the deck outside among the tree ferns, Karen and I found a comfy couch inside to lounge on.</p>
<p>It&#8217;s counter service at the Elm Haus. We wasted no time in ordering two Devonshire teas &#8211; after all, that&#8217;s what we came for.</p></div>
<div id="attachment_743" class="wp-caption alignleft" style="width: 394px"><img class="size-full wp-image-743" title="A knight in shining armour" src="http://rickyrobinson.id.au/wp-content/uploads/2009/01/img_1781.jpg" alt="This armour is just one of the many curiosities on display at the Elm Haus" width="384" height="256" /><p class="wp-caption-text">This armour is just one of the many curiosities on display at the Elm Haus</p></div>
<div class="mceTemp">
<p>While waiting for our tea and scones, we wandered around looking at the various curios on display: an <a title="QWERTY" href="http://henricksen.id.au/2009/01/17/qwerty/">old typewriter</a>, this knight in shining armour, an array of preserved snakes and insects (in the nook off to one side, so they&#8217;re not in your face while you eat), and a host of other knick knacks. If you want, you can also play a game of chess, draughts or backgammon. In many respects, the Elm Haus shares a similar ambience with Three Monkeys in West End, despite the more open layout.</p>
<p>The Elm Haus resembles a church in its construction, with high ceilings and arch windows. Of course, it&#8217;s possible the Elm Haus <em>was</em> a church at some point in its life. The <a title="Asian Groove" href="http://www.putumayo.com/en/catalog_item.php?album_id=57">Putumayo CD</a> playing in the background certainly benefited from the acoustics of the place.</div>
<div id="attachment_740" class="wp-caption alignright" style="width: 394px"><img class="size-full wp-image-740" title="The whole Devonshire tea" src="http://rickyrobinson.id.au/wp-content/uploads/2009/01/img_1758.jpg" alt="The whole Devonshire tea" width="384" height="256" /><p class="wp-caption-text">The Devonshire tea</p></div>
<div class="mceTemp">
<p>With a Devonshire tea, presentation plays a big part, so I was encouraged when I saw the two scones neatly arranged on a plate with a little twin pot for the jam and cream. As usual, we ordered English breakfast tea. It was real leaf tea served in a small tea pot.</p>
<p>The Elm Haus Devonshire tea comes with two scones: one plain scone and one sultana scone. Both delicious. All the more so because they served us real cream, not that whipped stuff from a can, which some other establishments that shall not be named have deigned to serve us in the past.</p></div>
<div id="attachment_742" class="wp-caption alignleft" style="width: 266px"><img class="size-full wp-image-742" title="There's nothing like a good Devonshire tea" src="http://rickyrobinson.id.au/wp-content/uploads/2009/01/img_1765.jpg" alt="There's nothing like a good Devonshire tea" width="256" height="384" /><p class="wp-caption-text">There&#39;s nothing like a good Devonshire tea</p></div>
<div class="mceTemp">
<p>We were so comfortable at the Elm Haus that after our Devonshire tea we ordered some home made potato wedges to share, and I had a latte. I wouldn&#8217;t normally spoil a perfectly good Devonshire tea by having a latte straight after, but since we were hanging around, we needed to order <em>something</em>. Anyway, the latte was good, and you&#8217;ll be hard pressed to find better wedges anywhere!</p>
<p>Karen and I rate the Elm Haus&#8217;s Devonshire tea highly. In fact, we&#8217;d go so far as to say that it&#8217;s the best we&#8217;ve had in south-east Queensland so far, all things considered. Having eaten lunch at the Elm Haus previously, we can also vouch for the quality of the chicken pie and the house special burger. The friendly staff prepare your food quickly and with an eye for presentation (even the wedges looked a treat), and serve you with a smile.</p>
<p>So next time you&#8217;re in the D&#8217;aguilar Range, I heartily recommend that you stop off at the Elm Haus for good food and a relaxing time.</p></div>
]]></content:encoded>
			<wfw:commentRss>http://rickyrobinson.id.au/2009/01/18/the-elm-haus-cafe/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>The ones Karen rejected</title>
		<link>http://rickyrobinson.id.au/2009/01/03/the-ones-karen-rejected</link>
		<comments>http://rickyrobinson.id.au/2009/01/03/the-ones-karen-rejected#comments</comments>
		<pubDate>Sat, 03 Jan 2009 11:38:50 +0000</pubDate>
		<dc:creator>ricky</dc:creator>
				<category><![CDATA[My family and me]]></category>
		<category><![CDATA[mount glorious]]></category>
		<category><![CDATA[photos]]></category>

		<guid isPermaLink="false">http://rickyrobinson.id.au/?p=726</guid>
		<description><![CDATA[Karen has a very critical eye when it comes to photos, especially her own photos. In order to let a few more of her snaps see the light of day, I&#8217;ve created an album in my gallery called Karen&#8217;s Rejects. This also saves me from having to take my own pictures. It contains a small [...]]]></description>
			<content:encoded><![CDATA[<p>Karen has a very critical eye when it comes to photos, especially her own photos. In order to let a few more of her snaps see the light of day, I&#8217;ve created an album in my <a title="Ricky's Gallery" href="http://rickyrobinson.id.au/gallery/main.php">gallery</a> called <a title="Karen's Rejects" href="http://rickyrobinson.id.au/gallery/v/karens-rejects/">Karen&#8217;s Rejects</a>. This also saves me from having to take my own pictures. It contains a small selection of those photos that don&#8217;t make it onto her photo blog. Here are some that she took today at Mount Glorious.</p>
<p><a href="http://rickyrobinson.id.au/gallery/v/karens-rejects/IMG_0450.JPG.html"><img class="alignnone" title="Mailboxes at Mount Glorious." src="http://rickyrobinson.id.au/gallery/d/10414-2/IMG_0450.JPG" alt="" width="640" height="427" /></a></p>
<p><a href="http://rickyrobinson.id.au/gallery/v/karens-rejects/IMG_0379.JPG.html"><img class="alignnone" title="Trees of green" src="http://rickyrobinson.id.au/gallery/d/10408-2/IMG_0379.JPG" alt="" width="427" height="640" /></a></p>
<p><a href="http://rickyrobinson.id.au/gallery/v/karens-rejects/IMG_0372.JPG.html"><img class="alignnone" title="Green leaf amongst the brown ones" src="http://rickyrobinson.id.au/gallery/d/10405-2/IMG_0372.JPG" alt="" width="640" height="427" /></a></p>
<p>It was a wet, overcast day. But it made for a great drive up to Mount Glorious, which was shrouded in clouds. The atmosphere created by the fog as we drove through the rainforest was worth the trip alone. The Elm Haus Cafe was very inviting to the sodden traveller, and provided us with a homely lunchtime meal. We plan to revisit for Devonshire Tea sometime.</p>
]]></content:encoded>
			<wfw:commentRss>http://rickyrobinson.id.au/2009/01/03/the-ones-karen-rejected/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>ReCaptcha asking a bit much?</title>
		<link>http://rickyrobinson.id.au/2009/01/01/recaptcha-asking-a-bit-much</link>
		<comments>http://rickyrobinson.id.au/2009/01/01/recaptcha-asking-a-bit-much#comments</comments>
		<pubDate>Thu, 01 Jan 2009 10:01:18 +0000</pubDate>
		<dc:creator>ricky</dc:creator>
				<category><![CDATA[Random observations]]></category>
		<category><![CDATA[recaptcha]]></category>

		<guid isPermaLink="false">http://rickyrobinson.id.au/?p=722</guid>
		<description><![CDATA[
The ReCaptcha guys need to invent an algorithm that gives an estimate of the likelihood that a human could actually decipher a word, and then only present those above a certain threshold. That&#8217;s a different problem to the one of having a machine actually decipher the text, and I reckon it&#8217;s probably an easier one. [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-723" title="captcha" src="http://rickyrobinson.id.au/wp-content/uploads/2009/01/captcha.png" alt="captcha" width="300" height="57" /></p>
<p>The ReCaptcha guys need to invent an algorithm that gives an estimate of the likelihood that a human could actually decipher a word, and then only present those above a certain threshold. That&#8217;s a different problem to the one of having a machine <em>actually</em> decipher the text, and I reckon it&#8217;s probably an easier one. The ReCaptcha above is just plain silly.</p>
]]></content:encoded>
			<wfw:commentRss>http://rickyrobinson.id.au/2009/01/01/recaptcha-asking-a-bit-much/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Upgraded to WordPress 2.7</title>
		<link>http://rickyrobinson.id.au/2008/12/28/upgraded-to-wordpress-27</link>
		<comments>http://rickyrobinson.id.au/2008/12/28/upgraded-to-wordpress-27#comments</comments>
		<pubDate>Sun, 28 Dec 2008 11:14:26 +0000</pubDate>
		<dc:creator>ricky</dc:creator>
				<category><![CDATA[Random observations]]></category>
		<category><![CDATA[blog-meta]]></category>
		<category><![CDATA[comments]]></category>
		<category><![CDATA[friends]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://rickyrobinson.id.au/?p=704</guid>
		<description><![CDATA[So as per my last post, I&#8217;ve been playing around with my weblog a bit. I&#8217;ve upgraded to WordPress 2.7, which features a completely overhauled administration dashboard. In addition, threaded comments are now built into WordPress, so there&#8217;s no need for a plugin. I just needed to hack my theme a little bit to take [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://wordpress.org/"><img class="alignleft" style="border-width: 0pt; padding-right: 0.5em;alignleft" title="WordPress 2.7" src="http://wpdotorg.files.wordpress.com/2008/10/newpost.png" alt="WordPress 2.7" width="418" height="272" /></a>So as per my <a title="Re-organised weblog categories" href="http://rickyrobinson.id.au/2008/12/27/re-organised-weblog-categories">last post</a>, I&#8217;ve been playing around with my weblog a bit. I&#8217;ve upgraded to <a title="WordPress" href="http://wordpress.org/">WordPress</a> 2.7, which features a completely overhauled administration dashboard. In addition, threaded comments are now built into WordPress, so there&#8217;s no need for a plugin. I just needed to hack my theme a little bit to take advantage of this feature. I&#8217;ve done a minimal job, so threaded comments don&#8217;t look that great at the moment. I&#8217;ve added some test comments in the comments section below.</p>
<p>Another thing I&#8217;ve done is fully widgetize my blog. So everything that used to be hand-coded into the various PHP files that make up my theme is now a widget (Twitter feed, Google Analytics and so on). This makes everything much easier to maintain, and change, if I feel like it.</p>
<p>In related news, <a title="Erisian Consulting" href="http://www.erisian.com.au/">AJ</a> has <a title="Blosxom to WordPress" href="http://www.erisian.com.au/wordpress/2008/12/21/blosxom-to-wordpress">made the switch</a> to WordPress from Blosxom. I&#8217;m pretty sure he won&#8217;t look back. <a title="The Thin Line Gets Real Hosting" href="http://rickyrobinson.id.au/2005/07/30/the-thin-line-gets-real-hosting">I&#8217;ve been using WordPress since mid-2005</a>, and I reckon WordPress is getting better with every release (2.7 in particular is a pretty big step in the right direction, IMHO). It&#8217;s very well supported, has a large user community, and it just works. Fantastic.</p>
<p><em>Update 29 Dec, 2008</em>: I&#8217;m now using a variant of <a title="cdharrison.com" href="http://cdharrison.com/">Chris Harrison</a>&#8217;s threaded comment styling. He&#8217;s written a <a title="Stylizing Threaded/Nested Comments in Wordpress 2.7" href="http://cdharrison.com/2008/12/threaded-comments/">tutorial</a> on how to style your comments.</p>
]]></content:encoded>
			<wfw:commentRss>http://rickyrobinson.id.au/2008/12/28/upgraded-to-wordpress-27/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Re-organised weblog categories</title>
		<link>http://rickyrobinson.id.au/2008/12/27/re-organised-weblog-categories</link>
		<comments>http://rickyrobinson.id.au/2008/12/27/re-organised-weblog-categories#comments</comments>
		<pubDate>Sat, 27 Dec 2008 07:15:55 +0000</pubDate>
		<dc:creator>ricky</dc:creator>
				<category><![CDATA[Random observations]]></category>
		<category><![CDATA[blog-meta]]></category>
		<category><![CDATA[categories]]></category>
		<category><![CDATA[tags]]></category>

		<guid isPermaLink="false">http://rickyrobinson.id.au/?p=696</guid>
		<description><![CDATA[The list of categories on my weblog was slowly growing. So I overhauled them. I&#8217;ve reduced them to a set of six, and converted the others to tags. I noticed that, for a long time now, when it comes to publishing an article, I&#8217;ve been fighting the urge to add a new category. Now I [...]]]></description>
			<content:encoded><![CDATA[<p>The list of categories on my weblog was slowly growing. So I overhauled them. I&#8217;ve reduced them to a set of six, and converted the others to tags. I noticed that, for a long time now, when it comes to publishing an article, I&#8217;ve been fighting the urge to add a new category. Now I choose a single category for the post, if I can, and then just add a bunch of tags, which is pretty much whatever flies out the ends of my fingers as I type. If I can&#8217;t choose a category, it gets filed as a <a title="Random Observations" href="http://rickyrobinson.id.au/category/random-observations">Random Observation</a>, and tagged as just described. If you read The Thin Line web site as opposed to the RSS feed, you&#8217;ll notice a tag cloud on the left, and a much shorter list of categories. I don&#8217;t know whether this will help you navigate, but it removes a mental hurdle for me.</p>
]]></content:encoded>
			<wfw:commentRss>http://rickyrobinson.id.au/2008/12/27/re-organised-weblog-categories/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>When policing is not policing</title>
		<link>http://rickyrobinson.id.au/2008/12/26/when-policing-is-not-policing</link>
		<comments>http://rickyrobinson.id.au/2008/12/26/when-policing-is-not-policing#comments</comments>
		<pubDate>Fri, 26 Dec 2008 10:34:45 +0000</pubDate>
		<dc:creator>ricky</dc:creator>
				<category><![CDATA[Eco-philo-pol]]></category>
		<category><![CDATA[australia]]></category>

		<guid isPermaLink="false">http://rickyrobinson.id.au/?p=651</guid>
		<description><![CDATA[Nick Holmes a Court had his Blackberry forceably confiscated from his person by NSW police after he filmed them conducting a search. Apparently, the police had no right to do this, thank goodness. Holmes a Court twittered his experience minutes after the incident.
I&#8217;ve previously documented my thinking on issues of surveillance, though I hadn&#8217;t specifically [...]]]></description>
			<content:encoded><![CDATA[<p>Nick Holmes a Court had his <a title="BlackBerry seizure an 'abuse of police powers'" href="http://www.news.com.au/couriermail/story/0,23739,24844476-952,00.html">Blackberry forceably confiscated</a> from his person by NSW police after he filmed them conducting a search. Apparently, the police had no right to do this, thank goodness. Holmes a Court <a title="I got searched..." href="http://twitter.com/nickhac/status/1066888866">twittered his experience</a> minutes after the incident.</p>
<p>I&#8217;ve <a title="On surveillance" href="http://rickyrobinson.id.au/2007/04/25/on-surveillance">previously documented my thinking</a> on issues of surveillance, though I hadn&#8217;t specifically considered the situation where a member of the public films a police operation or an operation conducted by some other state agency. I think what I wrote in that article holds for this case, too. If anything, I&#8217;d expressly encourage this sort of surveillance. We still live in a free democracy, don&#8217;t we?</p>
]]></content:encoded>
			<wfw:commentRss>http://rickyrobinson.id.au/2008/12/26/when-policing-is-not-policing/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Herman&#8217;s Hermits &#8211; No milk today</title>
		<link>http://rickyrobinson.id.au/2008/12/22/hermans-hermits-no-milk-today</link>
		<comments>http://rickyrobinson.id.au/2008/12/22/hermans-hermits-no-milk-today#comments</comments>
		<pubDate>Mon, 22 Dec 2008 12:07:51 +0000</pubDate>
		<dc:creator>ricky</dc:creator>
				<category><![CDATA[Random observations]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://rickyrobinson.id.au/2008/12/22/hermans-hermits-no-milk-today</guid>
		<description><![CDATA[
Herman&#8217;s Hermits &#8211; No milk today
]]></description>
			<content:encoded><![CDATA[<div class="youtube-video"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="355" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="wmode" value="transparent" /><param name="src" value="http://www.youtube.com/v/ClQepFF-Sr0" /><embed type="application/x-shockwave-flash" width="425" height="355" src="http://www.youtube.com/v/ClQepFF-Sr0" wmode="transparent"></embed></object></div>
<p>Herman&#8217;s Hermits &#8211; No milk today</p>
]]></content:encoded>
			<wfw:commentRss>http://rickyrobinson.id.au/2008/12/22/hermans-hermits-no-milk-today/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Govt plans to halve homeless Australians</title>
		<link>http://rickyrobinson.id.au/2008/12/21/govt-plans-to-halve-homeless-australians</link>
		<comments>http://rickyrobinson.id.au/2008/12/21/govt-plans-to-halve-homeless-australians#comments</comments>
		<pubDate>Sun, 21 Dec 2008 09:32:02 +0000</pubDate>
		<dc:creator>ricky</dc:creator>
				<category><![CDATA[Eco-philo-pol]]></category>
		<category><![CDATA[australia]]></category>
		<category><![CDATA[fun]]></category>

		<guid isPermaLink="false">http://rickyrobinson.id.au/2008/12/21/govt-plans-to-halve-homeless-australians</guid>
		<description><![CDATA[Rather extreme measure I would have thought.

(AAP)
]]></description>
			<content:encoded><![CDATA[<p><a href="http://news.ninemsn.com.au/national/702336/govt-plans-to-halve-homeless-australians">Rather extreme measure I would have thought.</a></p>
<p><img style="max-width: 800px;" src="http://images.ninemsn.com.au/resizer.aspx?url=http://news.ninemsn.com.au/img/2008/national/2112_rudd2_a_lg.jpg&amp;width=310" alt="" /><br />
(AAP)</p>
]]></content:encoded>
			<wfw:commentRss>http://rickyrobinson.id.au/2008/12/21/govt-plans-to-halve-homeless-australians/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Thanks for your help</title>
		<link>http://rickyrobinson.id.au/2008/12/20/thanks-for-your-help</link>
		<comments>http://rickyrobinson.id.au/2008/12/20/thanks-for-your-help#comments</comments>
		<pubDate>Sat, 20 Dec 2008 03:17:12 +0000</pubDate>
		<dc:creator>ricky</dc:creator>
				<category><![CDATA[Innovation]]></category>
		<category><![CDATA[business]]></category>
		<category><![CDATA[entrepreneurship]]></category>
		<category><![CDATA[inside nicta]]></category>
		<category><![CDATA[research]]></category>
		<category><![CDATA[software engineering]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://rickyrobinson.id.au/?p=627</guid>
		<description><![CDATA[To those who responded to my plea for help by leaving a comment or responding out-of-band, thank you very much. We&#8217;ve settled on a name for our application, purchased the corresponding domain names and filed a trade mark application.
Will keep you posted as things evolve further. But just to give you an idea, we&#8217;ve already [...]]]></description>
			<content:encoded><![CDATA[<p>To those who responded to <a title="I need your help" href="http://rickyrobinson.id.au/2008/11/07/i-need-your-help">my plea for help</a> by leaving a comment or responding out-of-band, thank you very much. We&#8217;ve settled on a name for our application<em></em>, purchased the corresponding domain names and filed a trade mark application.</p>
<p>Will keep you posted as things evolve further. But just to give you an idea, we&#8217;ve already iterated through several &#8220;alpha&#8221; versions and expect to have a public beta ready by the end of February. Stay tuned for an explanation of what the service actually does.</p>
]]></content:encoded>
			<wfw:commentRss>http://rickyrobinson.id.au/2008/12/20/thanks-for-your-help/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Frameworks Are The Future of Design &#8211; A (Long) Presentation</title>
		<link>http://rickyrobinson.id.au/2008/12/09/frameworks-are-the-future-of-design-a-long-presentation</link>
		<comments>http://rickyrobinson.id.au/2008/12/09/frameworks-are-the-future-of-design-a-long-presentation#comments</comments>
		<pubDate>Tue, 09 Dec 2008 00:59:17 +0000</pubDate>
		<dc:creator>ricky</dc:creator>
				<category><![CDATA[Innovation]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[frameworks]]></category>
		<category><![CDATA[presentation]]></category>
		<category><![CDATA[street computing]]></category>

		<guid isPermaLink="false">http://rickyrobinson.id.au/2008/12/09/frameworks-are-the-future-of-design-a-long-presentation</guid>
		<description><![CDATA[Frameworks  Are The Future of Design

View SlideShare presentation or Upload your own. (tags: case_study ux)


]]></description>
			<content:encoded><![CDATA[<div id="__ss_638827" style="width: 425px; text-align: left;"><a style="margin: 12px 0pt 3px; font-family: Helvetica,Arial,Sans-serif; font-style: normal; font-variant: normal; font-weight: normal; font-size: 14px; line-height: normal; font-size-adjust: none; font-stretch: normal; display: block; text-decoration: underline;" title="Frameworks  Are The Future of Design" href="http://www.slideshare.net/moJoe/frameworks-are-the-future-of-design-presentation?type=powerpoint">Frameworks  Are The Future of Design</a></p>
<div class="youtube-video"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="355" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><param name="src" value="http://static.slideshare.net/swf/ssplayer2.swf?doc=frameworks-arethefuture3-1223296735874886-9&amp;stripped_title=frameworks-are-the-future-of-design-presentation" /><embed type="application/x-shockwave-flash" width="425" height="355" src="http://static.slideshare.net/swf/ssplayer2.swf?doc=frameworks-arethefuture3-1223296735874886-9&amp;stripped_title=frameworks-are-the-future-of-design-presentation" allowscriptaccess="always" allowfullscreen="true"></embed></object></div>
<div style="font-size: 11px; font-family: tahoma,arial; height: 26px; padding-top: 2px;">View SlideShare <a style="text-decoration: underline;" title="View Frameworks  Are The Future of Design on SlideShare" href="http://www.slideshare.net/moJoe/frameworks-are-the-future-of-design-presentation?type=powerpoint">presentation</a> or <a style="text-decoration: underline;" href="http://www.slideshare.net/upload?type=powerpoint">Upload</a> your own. (tags: <a style="text-decoration: underline;" href="http://slideshare.net/tag/case_study">case_study</a> <a style="text-decoration: underline;" href="http://slideshare.net/tag/ux">ux</a>)</div>
</div>
<p><img style="visibility: hidden; width: 0px; height: 0px;" src="http://counters.gigya.com/wildfire/IMP/CXNID=2000002.0NXC/bT*xJmx*PTEyMjg3ODQxNTgyNTcmcHQ9MTIyODc4NDI*NTk3OSZwPTEwMTkxJmQ9Jmc9MiZ*PSZvPTcxZWMxMDdiN2RiNjQ1NjI4ZjM*NjkzYzAyYTZiODdm.gif" border="0" alt="" width="0" height="0" /></p>
]]></content:encoded>
			<wfw:commentRss>http://rickyrobinson.id.au/2008/12/09/frameworks-are-the-future-of-design-a-long-presentation/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The SVNMate plugin for Textmate</title>
		<link>http://rickyrobinson.id.au/2008/12/03/the-svnmate-plugin-for-textmate</link>
		<comments>http://rickyrobinson.id.au/2008/12/03/the-svnmate-plugin-for-textmate#comments</comments>
		<pubDate>Wed, 03 Dec 2008 12:15:15 +0000</pubDate>
		<dc:creator>ricky</dc:creator>
				<category><![CDATA[Random observations]]></category>
		<category><![CDATA[inside nicta]]></category>
		<category><![CDATA[software engineering]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://rickyrobinson.id.au/2008/12/03/the-svnmate-plugin-for-textmate</guid>
		<description><![CDATA[For anyone who&#8217;s using Subversion through Textmate, you might be interest in Ciarán Walsh’s SVNMate plugin. It changes the icons for files and folders in the project drawer depending upon their SVN status. Very handy.
]]></description>
			<content:encoded><![CDATA[<p>For anyone who&#8217;s using Subversion through Textmate, you might be interest in <a href="http://ciaranwal.sh/2008/07/30/svnmate-update-for-subversion-15">Ciarán Walsh’s SVNMate plugin</a>. It changes the icons for files and folders in the project drawer depending upon their SVN status. Very handy.</p>
]]></content:encoded>
			<wfw:commentRss>http://rickyrobinson.id.au/2008/12/03/the-svnmate-plugin-for-textmate/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Rudd shop</title>
		<link>http://rickyrobinson.id.au/2008/11/26/the-rudd-shop</link>
		<comments>http://rickyrobinson.id.au/2008/11/26/the-rudd-shop#comments</comments>
		<pubDate>Wed, 26 Nov 2008 12:48:06 +0000</pubDate>
		<dc:creator>ricky</dc:creator>
				<category><![CDATA[Eco-philo-pol]]></category>

		<guid isPermaLink="false">http://rickyrobinson.id.au/?p=634</guid>
		<description><![CDATA[Have you seen the Kevin Rudd memorabilia store? It&#8217;s a hoot. My favourite items are the Kevin Rudd Decisive Action Doll, and the School Computer.
I certainly had a laugh, but one does have to wonder whether the Liberals might have found a better use of their limited funds&#8230;
Nah!
]]></description>
			<content:encoded><![CDATA[<p>Have you seen <a title="The Kevin Rudd memorabilia store?" href="http://ruddshop.com/">the Kevin Rudd memorabilia store</a>? It&#8217;s a hoot. My favourite items are the <a title="Kevin Rudd Decisive Action Doll" href="http://ruddshop.com/?Page=Toys&amp;Item=2">Kevin Rudd Decisive Action Doll</a>, and the <a title="School Computer" href="http://ruddshop.com/?Page=Misc&amp;Item=3">School Computer</a>.</p>
<p>I certainly had a laugh, but one does have to wonder whether the Liberals might have found a better use of their limited funds&#8230;</p>
<p>Nah!</p>
]]></content:encoded>
			<wfw:commentRss>http://rickyrobinson.id.au/2008/11/26/the-rudd-shop/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A most singular election</title>
		<link>http://rickyrobinson.id.au/2008/11/20/a-most-singular-election</link>
		<comments>http://rickyrobinson.id.au/2008/11/20/a-most-singular-election#comments</comments>
		<pubDate>Thu, 20 Nov 2008 11:49:26 +0000</pubDate>
		<dc:creator>ricky</dc:creator>
				<category><![CDATA[Eco-philo-pol]]></category>

		<guid isPermaLink="false">http://rickyrobinson.id.au/?p=629</guid>
		<description><![CDATA[It is a rare election that, by its outcome alone, achieves something so profound as the recent US presidential race. Ultimately, Barack Obama will, rightly, be judged by his accomplishments as the 44th President of the United States of America. He ascends to the presidency at a time of global economic turmoil; an era in [...]]]></description>
			<content:encoded><![CDATA[<p>It is a rare election that, by its outcome alone, achieves something so profound as the recent US presidential race. Ultimately, Barack Obama will, rightly, be judged by his accomplishments as the 44<sup>th</sup> President of the United States of America. He ascends to the presidency at a time of global economic turmoil; an era in which many scientists would have us believe our decisions and non-decisions will define the future of our planet and our place on it; and a decade that has seen the US and its allies engaged in wars on two fronts. It will not be an easy presidency.</p>
<p>Yet, for all that, his election in and of itself has given hope to millions of his fellow countrymen and women, and perhaps billions of people around the world who happen to share his skin colour. One gets the feeling that it is the kind of hope accompanied by equal parts relief and outright joy, particularly for those who have lived long enough to witness some of the various events in US history that each contributed to the moment of Barack Obama&#8217;s victory speech. What&#8217;s sad is that it has taken so long for this day to come. What&#8217;s sad is that the colour of someone&#8217;s skin still matters. History, too, is sure to remember him primarily as America&#8217;s first black president, regardless of what he achieves or fails to achieve over the next four or eight years.</p>
<p>Whether you agree with his politics or not (or, if like me, you feel there was so little depth to the presidential campaigns of both the major parties that it is nearly impossible to tell what policies will be pursued), you must admire Obama&#8217;s terrific achievement. To overcome McCain and Palin so definitively is an enormous feat; but to have first defeated the machine called Hillary and Bill Clinton is, when you think about it, incredible.</p>
<p>Living in a small country across the Pacific Ocean as I do, with any luck I will not be chastised for confessing that, perhaps more than anything, I look forward to being wowed by Barack Obama&#8217;s indisputably sublime oratory skills. A president with a command of the English language: how novel. Our very own prime minister might take a leaf out of the President-elect&#8217;s book, and infuse some inspiring words into his rather mundane speeches.</p>
]]></content:encoded>
			<wfw:commentRss>http://rickyrobinson.id.au/2008/11/20/a-most-singular-election/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>We will remember them</title>
		<link>http://rickyrobinson.id.au/2008/11/11/we-will-remember-them</link>
		<comments>http://rickyrobinson.id.au/2008/11/11/we-will-remember-them#comments</comments>
		<pubDate>Tue, 11 Nov 2008 01:00:26 +0000</pubDate>
		<dc:creator>ricky</dc:creator>
				<category><![CDATA[Random observations]]></category>
		<category><![CDATA[australia]]></category>

		<guid isPermaLink="false">http://rickyrobinson.id.au/?p=620</guid>
		<description><![CDATA[
Creative Commons Attribution-Share Alike 2.0 Generic
Updated especially for Clinton:

Creative Commons Attribution-Noncommercial-No Derivative Works 3.0 Unported
]]></description>
			<content:encoded><![CDATA[<p><a href="http://en.wikipedia.org/wiki/Image:RemembrancePoppies.jpg"><img class="aligncenter" title="Poppies" src="http://upload.wikimedia.org/wikipedia/commons/thumb/4/43/RemembrancePoppies.jpg/422px-RemembrancePoppies.jpg" alt="" width="422" height="600" /></a></p>
<p><a href="http://creativecommons.org/licenses/by-sa/2.0/">Creative Commons Attribution-Share Alike 2.0 Generic</a></p>
<p><span style="font-style: italic;">Updated especially for <a href="http://rickyrobinson.id.au/2008/11/11/we-will-remember-them#comment-1642">Clinton</a>:</span></p>
<p><a href="http://www.freefoto.com/"><img style="max-width: 800px; width: 419px; height: 283px;" src="http://rickyrobinson.id.au/wp-content/uploads/2008/11/poppies.jpg" alt="" /></a></p>
<p><a href="http://creativecommons.org/licenses/by-nc-nd/3.0/">Creative Commons Attribution-Noncommercial-No Derivative Works 3.0 Unported</a></p>
]]></content:encoded>
			<wfw:commentRss>http://rickyrobinson.id.au/2008/11/11/we-will-remember-them/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>I need your help</title>
		<link>http://rickyrobinson.id.au/2008/11/07/i-need-your-help</link>
		<comments>http://rickyrobinson.id.au/2008/11/07/i-need-your-help#comments</comments>
		<pubDate>Fri, 07 Nov 2008 04:41:53 +0000</pubDate>
		<dc:creator>ricky</dc:creator>
				<category><![CDATA[Innovation]]></category>
		<category><![CDATA[branding]]></category>
		<category><![CDATA[business]]></category>
		<category><![CDATA[inside nicta]]></category>
		<category><![CDATA[research]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://rickyrobinson.id.au/?p=618</guid>
		<description><![CDATA[Valued readers, would you be so kind as to lend 15 seconds of your time completing the following task for me, your humble host. I ask that, from among the five names below (which, for various reasons, all begin with the word &#8220;cite&#8221;), you choose the one name that you believe sounds the best. The [...]]]></description>
			<content:encoded><![CDATA[<p>Valued readers, would you be so kind as to lend 15 seconds of your time completing the following task for me, your humble host. I ask that, from among the five names below (which, for various reasons, all begin with the word &#8220;cite&#8221;), you choose the <strong>one </strong>name that you believe sounds the best. The one that rolls off your tongue most easily. The one that you think is, well, coolest. Please do not bother yourself with trying to guess the meaning of the name, or the purpose of this exercise (though many of you will no doubt have a good idea). I am after your immediate gut feeling response. Please leave your response as a comment on this post.</p>
<ul>
<li>Citemind</li>
<li>Citecloud</li>
<li>Citefish</li>
<li>Citecrowd</li>
<li>Citemarket</li>
</ul>
<p>I would be more than grateful if you could point your friends and colleagues at this blog entry, particularly if they are involved in writing research manuscripts.</p>
<p>Thank you!</p>
]]></content:encoded>
			<wfw:commentRss>http://rickyrobinson.id.au/2008/11/07/i-need-your-help/feed</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
		<item>
		<title>Movember</title>
		<link>http://rickyrobinson.id.au/2008/11/03/movember</link>
		<comments>http://rickyrobinson.id.au/2008/11/03/movember#comments</comments>
		<pubDate>Mon, 03 Nov 2008 01:01:37 +0000</pubDate>
		<dc:creator>ricky</dc:creator>
				<category><![CDATA[My family and me]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[personal]]></category>

		<guid isPermaLink="false">http://rickyrobinson.id.au/2008/11/03/movember</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<div style="text-align: center;"><a href="http://au.movember.com/"><img src="https://www.movember.com/assets/images/members/widgets/widget_walk.png" alt="Movember - Sponsor Me" border="0" /></a></div>
]]></content:encoded>
			<wfw:commentRss>http://rickyrobinson.id.au/2008/11/03/movember/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Ben on ubicomp: spot on</title>
		<link>http://rickyrobinson.id.au/2008/11/01/ben-on-ubicomp-spot-on</link>
		<comments>http://rickyrobinson.id.au/2008/11/01/ben-on-ubicomp-spot-on#comments</comments>
		<pubDate>Fri, 31 Oct 2008 21:53:24 +0000</pubDate>
		<dc:creator>ricky</dc:creator>
				<category><![CDATA[Innovation]]></category>
		<category><![CDATA[research]]></category>
		<category><![CDATA[street computing]]></category>
		<category><![CDATA[ubicomp]]></category>

		<guid isPermaLink="false">http://rickyrobinson.id.au/?p=611</guid>
		<description><![CDATA[True:
Often we seem to use the term Ubiquitous Computing to mean “computers everywhere” as if just having the hardware all over the place was a worthwhile end in itself.
But maybe a better meaning is “computing available when you want it in a way that makes sense for where you are and what you’re doing” which [...]]]></description>
			<content:encoded><![CDATA[<p><a title="Ubicomp doesn't mean what we think it means" href="httphttp://nnkh.tumblr.com/post/56874905/ubicomp-doesnt-mean-what-we-think-it-means">True</a>:</p>
<blockquote><p>Often we seem to use the term <em>Ubiquitous Computing</em> to mean “computers everywhere” as if just having the hardware all over the place was a worthwhile end in itself.</p>
<p>But maybe a better meaning is “computing available when you want it in a way that makes sense for where you are and what you’re doing” which is much harder to do than “computers everywhere”.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://rickyrobinson.id.au/2008/11/01/ben-on-ubicomp-spot-on/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
