<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Ben Boyle lives here!</title>
	<atom:link href="http://spiii.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://spiii.wordpress.com</link>
	<description>Web developer, Dad, gamer, commuter, ranter, universal design advocate, fan of gadgets and sunshine!</description>
	<lastBuildDate>Sun, 04 Dec 2011 08:03:39 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='spiii.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Ben Boyle lives here!</title>
		<link>http://spiii.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://spiii.wordpress.com/osd.xml" title="Ben Boyle lives here!" />
	<atom:link rel='hub' href='http://spiii.wordpress.com/?pushpress=hub'/>
		<item>
		<title>when is a number not a number?</title>
		<link>http://spiii.wordpress.com/2011/12/04/numbers-are-numbers/</link>
		<comments>http://spiii.wordpress.com/2011/12/04/numbers-are-numbers/#comments</comments>
		<pubDate>Sun, 04 Dec 2011 04:01:25 +0000</pubDate>
		<dc:creator>spiii</dc:creator>
				<category><![CDATA[Forms]]></category>

		<guid isPermaLink="false">http://spiii.wordpress.com/?p=228</guid>
		<description><![CDATA[text inputs are still best for collecting some numbers on web forms—especially if the user might wish to enter non-numeric formatting characters such as spaces, dashes, letters. Serial numbers and credit card numbers are prime examples. Sometimes when designing a &#8230; <a href="http://spiii.wordpress.com/2011/12/04/numbers-are-numbers/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=spiii.wordpress.com&amp;blog=21611236&amp;post=228&amp;subd=spiii&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div class="summary"><code>text</code> inputs are still best for collecting some numbers on web forms—especially if the user might wish to enter non-numeric formatting characters such as spaces, dashes, letters. Serial numbers and credit card numbers are prime examples.</div>
<p>Sometimes when designing a web form, you need to ask the customer a question where their answer will be a number. Now with HTML5, browsers have started supporting a <a href="http://www.whatwg.org/specs/web-apps/current-work/multipage/number-state.html#number-state">number input field</a>: <code></code> Sounds like a perfect fit, right?</p>
<p>But wait a minute—are you really sure the “number” you are asking for really is a number? What is a <a href="http://en.wikipedia.org/wiki/Numbers_(disambiguation)">number</a> anyway? If you are rushing to use the HTML5 number input, a number is a “<a href="http://www.whatwg.org/specs/web-apps/current-work/multipage/common-microsyntaxes.html#valid-floating-point-number">valid floating point number</a>”.</p>
<p>You see there are lots of things we (humans) call “numbers”—but not all of them are valid floating point numbers. Below are 2 problems I have encountered with differing definition of numbers.</p>
<p><a href="http://spiii.files.wordpress.com/2011/12/img_1219.png"><img src="http://spiii.files.wordpress.com/2011/12/img_1219.png?w=200&#038;h=300" alt="Credit card number entry on Dominos mobile website, showing number formatting issue" title="Credit card number entry on Dominos mobile website" width="200" height="300" class="alignright size-medium wp-image-230" /></a></p>
<p>Recently I was ordering pizza from dominos on my iPhone. At the payment stage, I had to enter my <strong>credit card number</strong>. I like to enter it as it appears on my card—with spaces. It is easier to read and check this way. Imagine my surprise when I moved to the next field, and had the first 4 digits formatted as “4,111” and the rest of the digits thrown away. I had to tap out the digits again, and even then it was formatted as “4,111,111,111,111,111”. It worked, but—ugh. Don’t use <code>input type="number"</code> for credit card numbers.</p>
<p>We had a similar situation at work a couple of years back, with <abbr title="Australian Business Number">ABN</abbr>. An ABN is always displayed in the format: <code>53 004 085 616</code>.</p>
<p>Customers could enter their ABN how they wished (including spaces). I was surprised to find the confirmation and receipts screens showing the ABN with the spaces removed, like so: <code>53004085616</code>. I knew I had not coded the UI that way, and when I raised it as a bug I was told emphatically by a developer that an ABN was a <em>number</em> and that they were now storing it as such and this was how it should be.</p>
<p>There’s some truth in that. But when it comes to how data is presented to end users, the format should be designed for clarity. When there is an existing convention—as there is for ABN—displaying data in that familiar format is best. Happily we resolved the ABN disagreement with a little regexp that put the spaces in for the UI.</p>
<p>Next time you’re working with a number—think about what kind of number it really is.</p>
<table>
<caption>Suggested input types for different numbers</caption>
<thead>
<tr>
<th>Type of number</th>
<th>Suggested HTML5 input type</th>
<th>Why?</th>
</tr>
</thead>
<tbody>
<tr>
<td>Street address</td>
<td><code>text</code></td>
<td>Examples: 3A, 4/353</td>
</tr>
<tr>
<td>Postcode</td>
<td><code>text</code></td>
<td>May contain spaces or letters (varies by country)</td>
</tr>
<tr>
<td>Phone number</td>
<td><code>tel</code></td>
<td>Specifically for phone numbers</td>
</tr>
<tr>
<td>ABN</td>
<td><code>text</code></td>
<td>Contains spaces by convention</td>
</tr>
<tr>
<td>Credit card number</td>
<td><code>text</code></td>
<td>Contains spaces by convention</td>
</tr>
<tr>
<td>Serial number</td>
<td><code>text</code></td>
<td>Frequently contains letters or spaces</td>
</tr>
<tr>
<td>Dates</td>
<td>various <code>date</code> and <code>time</code> options</td>
<td>May contain dashes, slashes, words (month names)</td>
</tr>
<tr>
<td>other number</td>
<td><code>number</code></td>
<td>might be ok <img src='http://s1.wp.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </td>
</tr>
</tbody>
</table>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/spiii.wordpress.com/228/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/spiii.wordpress.com/228/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/spiii.wordpress.com/228/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/spiii.wordpress.com/228/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/spiii.wordpress.com/228/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/spiii.wordpress.com/228/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/spiii.wordpress.com/228/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/spiii.wordpress.com/228/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/spiii.wordpress.com/228/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/spiii.wordpress.com/228/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/spiii.wordpress.com/228/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/spiii.wordpress.com/228/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/spiii.wordpress.com/228/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/spiii.wordpress.com/228/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=spiii.wordpress.com&amp;blog=21611236&amp;post=228&amp;subd=spiii&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://spiii.wordpress.com/2011/12/04/numbers-are-numbers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/09e9086e16db4147b55f295dab8bd390?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">spiii</media:title>
		</media:content>

		<media:content url="http://spiii.files.wordpress.com/2011/12/img_1219.png?w=200" medium="image">
			<media:title type="html">Credit card number entry on Dominos mobile website</media:title>
		</media:content>
	</item>
		<item>
		<title>Complaint to federal government re ineligible for solar hot water rebate</title>
		<link>http://spiii.wordpress.com/2011/02/01/complaint-to-federal-government-re-ineligible-for-solar-hot-water-rebate/</link>
		<comments>http://spiii.wordpress.com/2011/02/01/complaint-to-federal-government-re-ineligible-for-solar-hot-water-rebate/#comments</comments>
		<pubDate>Tue, 01 Feb 2011 13:09:52 +0000</pubDate>
		<dc:creator>spiii</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://ultimate.benboyle.id.au/blog/?p=212</guid>
		<description><![CDATA[Hi, I received a letter today stating that we are ineligible for the solar hot water rebate because our application was submitted more than 2 months after the installation date. I am so angry about this, but I will try &#8230; <a href="http://spiii.wordpress.com/2011/02/01/complaint-to-federal-government-re-ineligible-for-solar-hot-water-rebate/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=spiii.wordpress.com&amp;blog=21611236&amp;post=212&amp;subd=spiii&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hi,</p>
<p>I received a letter today stating that we are ineligible for the solar hot water rebate because our application was submitted more than 2 months after the installation date. I am so angry about this, but I will try to keep calm and hope we can sort it out.</p>
<p>Firstly. We participated in the Queensland Government Solar Hot Water Program (now closed). We heard about it in 2009 and I posted in our application form on 19 October 2009. Lucky I kept a note about that.</p>
<p>We had an inspection and paid out $500 plus some extra fees (for piping and council I believe) to the retailer assigned us: Conergy. This was around Feb 2010. Sorry my records are flaky in this instance.</p>
<p>On the 14th of May I sent this tweet to the Qld Premier (Anna Bligh) asking why we had any action on our solar hot water installation. Here is the tweet: <a href="http://twitter.com/#!/bboyle/status/13969408212">http://twitter.com/#!/bboyle/status/13969408212</a></p>
<p>I didn&#8217;t expect much from this but Anna replied personally and we had Conergy ring us on 18 May and send Coastal Solar to install the system on Wednesday 26 May 2010.</p>
<p>Let us pause for a moment, and note how long it took for that to happen. The wheels turn slowly don&#8217;t they?</p>
<p>I wanted to send the application to you immediately. We had to approve a direct debit request with Queensland Government who can take $1600 any time should we not get the federal rebate. In fact we are only allowed 7 days to contact them from after you contacted us to advise them. I have already had to put them off once (called them on 20 December) to let them know I was waiting on a response from you! Let us pause again to note the time we are allowed here. It&#8217;s not much is it? You guys (governments!) sure expect a lot from the people, but don&#8217;t give much in return!! Back to the story…</p>
<p>I read the documentation carefully. We have the &#8220;Energy Efficient Homes Package Solar Hot Water Rebate Guidelines and application form&#8221; from the Australian Government. It was issued on 2 November 2009 and &#8220;applicable&#8221; until 30 June 2012 according to the inside cover. I can scan a copy for you if required. It states that we have six months to submit the application including proof of purchase to you, NOT two months as stated in your recent letter. It does state the Australian Government reserves the right to &#8220;change the rebate amount or any other aspect of the guidelines&#8221;—which I gather must have happened at some point. Please inform me when, why, and how this information was made available to customers likely to be affected. Did you inform the Queensland Government and expect them to inform us in turn?</p>
<p>Regardless, it is likely we missed the six months because we were waiting on a council inspection. It is also an eligibility requirement of your program that the hot water system is installed to relevant building standards, which includes the council inspection. If I had posted the application in at that time you could have claimed it was not eligible on those grounds.</p>
<p>In June/July, the council claimed not to have the necessary paperwork and I was unsuccessful in two attempts to follow this up with Moreton Bay Regional Council, Conergy and Coastal Solar. I do have an email from the council dated 29 June 2010 advising me that a council inspection was necessary. It was after that I had to call everyone to try to get that to happen. Since this occurred on the phone, I do not have accurate records. Conergy claimed Coastal Solar should have done the inspection, Coastal Solar said I needed a special number from the council before they did anything, and the council claimed they had no requests nor records of any plumbing work at our residence whatsoever. What can a person do in a situation like this I ask you?</p>
<p>On 31 October we noticed the hot water tank on the roof was leaking. We had Coastal Solar come back to repair it and asked about the inspection when their plumber was on site. This would have been early/mid November 2010. I can&#8217;t find any paperwork from that but I know we posted the application to you around that time—possibly you have my paperwork.</p>
<p>These are all my reasons why our application was delayed. It is extremely unfair that we should be left to foot a $1600 bill as a result. Our application was sent in as soon as we had the inspection sorted. Please contact me as soon as possible to discuss—I would very much like you to reconsider your stance on the eligibility of my application.</p>
<p>regards<br />
Ben Boyle<br />
<ins datetime="2011-02-02"></p>
<h2>Update 2 February 2011</h2>
<p>No reply from the federal government yet, but I called the Queensland Government and they knew all about this situation. Have given me an address to post information to—fingers crossed that works out. (Of course, atm, we’re all crossing our fingers that <a href="http://www.abc.net.au/news/events/cyclone-yasi/">Cyclone Yasi</a> does not do too much damage when it crosses the coast in the next couple of hours!)</p>
<p>I also found a few key dates in my iPhone SMS history:</p>
<dl>
<dt>25–26 May 2010</dt>
<dd>Our hot water system was installed over 2 days.</dd>
<dt>25 October 2010</dt>
<dd>We first noticed the pipes on the roof were leaking—and fixed them. We found them leaking again on 31 October and got help.</dd>
<dt>2 November 2010</dt>
<dd>Plumber fixed leak and did inspection—“He said he will send in a form saying he has done an inspection to the cab council. All we have to do is send in the white forms with proof of purchase to the fed govt.”</dd>
</dl>
<p></ins><ins datetime="2011-02-07"></p>
<h2>Update 7 Feb 2011</h2>
<p>Got my reply from the Australian Government today. It is decidedly not plain-English, but the gist is &#8220;no&#8221; and &#8220;contact the Queensland Government&#8221;―so it&#8217;s a good thing I already did that. Very disappointed to see them acting like a <a href="http://en.wikipedia.org/wiki/Monopoly">monopoly</a> in this manner, and hoping the Queensland Government behave differently.</p>
<blockquote><p>Dear Mr Boyle</p>
<p>Thank you for your query regarding the Australian Government’s Renewable Energy Bonus Scheme – Solar Hot Water Rebate (REBS).</p>
<p>On 19 February 2010 the Australian Government announced the new Renewable Energy Bonus Scheme (REBS).  This new Scheme replaced the Solar Hot Water Rebate which was discontinued as of close of business 19 February 2010.</p>
<p>As indicated in the program guidelines the Government reserves the right to make changes to the program at any time. However arrangements were put in place for people who installed, paid for or ordered their hot water systems prior to 20 February 2010.  Eligible solar or heat pump hot water systems installed prior to 20 February 2010 may have been assessed as eligible for a $1,600 rebate for solar hot water or $1,000 for a heat pump hot water system, if proof of purchase and installation prior to 20 February 2010 was included with the application.</p>
<p>Applications under these arrangements – including any supporting documentation &#8211; must have been received by the Department of Climate Change and Energy Efficiency by Friday, 14 May 2010.</p>
<p>Under the new REBS – Solar Hot Water Rebate applicants have two months (62 days) from installation to apply for the rebate.</p>
<p>As your rebate application was received after 14 May 2010 it was not eligible for the former Solar Hot Water Rebate.  It was also received after the two month (62 day) timeframe for submission of an application for REBS – Solar Hot Water Rebate.</p>
<p>Therefore as advised previously your application has been deemed ineligible for a rebate.</p>
<p>However the Government also provides an incentive to all households to install climate friendly hot water systems in the form of Renewable Energy Certificates (RECs). RECs are assigned by the Office of the Renewable Energy Regulator as part of the Renewable Energy Target scheme and reflect the deemed value of equivalent renewable energy generation over a ten year period. Solar and heat pump hot water systems are assigned a number of RECs and these are commonly bought back by the retailer through a discount of around $1,000 off the upfront cost of the system.</p>
<p>In addition to the environmental benefits of a solar or heat pump hot water system, households may also receive ongoing economic benefits through installation of such a system. Users of a solar or heat pump hot water system may reduce their energy bills by hundreds of dollars per year in comparison to using an electric storage hot water system. This saving is dependent on local climate and household hot water use patterns.</p>
<p>Please contact the Queensland Government’s Office of Clean Energy to discuss your contractual arrangements and any provisions available for people who have been affected by delayed receipts under the Queensland Solar Hot Water Program.</p>
<p><a href="http://www.cleanenergy.qld.gov.au/queensland_solar_hot_water_program.cfm">www.cleanenergy.qld.gov.au/…</a> or by phone: 13 25 23.</p>
<p>Regards</p>
<p>Household Water Rebates Section<br />
Department of Climate Change and Energy Efficiency<br />
GPO Box 854<br />
CANBERRA ACT 2601</p></blockquote>
<p></ins></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/spiii.wordpress.com/212/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/spiii.wordpress.com/212/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/spiii.wordpress.com/212/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/spiii.wordpress.com/212/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/spiii.wordpress.com/212/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/spiii.wordpress.com/212/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/spiii.wordpress.com/212/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/spiii.wordpress.com/212/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/spiii.wordpress.com/212/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/spiii.wordpress.com/212/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/spiii.wordpress.com/212/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/spiii.wordpress.com/212/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/spiii.wordpress.com/212/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/spiii.wordpress.com/212/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=spiii.wordpress.com&amp;blog=21611236&amp;post=212&amp;subd=spiii&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://spiii.wordpress.com/2011/02/01/complaint-to-federal-government-re-ineligible-for-solar-hot-water-rebate/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/09e9086e16db4147b55f295dab8bd390?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">spiii</media:title>
		</media:content>
	</item>
		<item>
		<title>Walking with gadgets and social media</title>
		<link>http://spiii.wordpress.com/2011/01/29/walking-with-gadgets-and-social-media/</link>
		<comments>http://spiii.wordpress.com/2011/01/29/walking-with-gadgets-and-social-media/#comments</comments>
		<pubDate>Sat, 29 Jan 2011 05:27:09 +0000</pubDate>
		<dc:creator>spiii</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://ultimate.benboyle.id.au/blog/?p=211</guid>
		<description><![CDATA[Ah the fun you can have with an iPhone, a couple of apps, a 3G connection to social media and a bus that sometimes doesn’t wait when the train is late. Burn 239Kcal walking 4.32km in 47½ minutes. Log it &#8230; <a href="http://spiii.wordpress.com/2011/01/29/walking-with-gadgets-and-social-media/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=spiii.wordpress.com&amp;blog=21611236&amp;post=211&amp;subd=spiii&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Ah the fun you can have with an iPhone, a couple of apps, a 3G connection to social media and a bus that sometimes doesn’t wait when the train is late.</p>
<p>Burn 239Kcal walking 4.32km in 47½ minutes. <a href="http://wearemothership.com/kinetic/route.php?r=244306831c595efa66fda36b8e2aa6d7/110128-1819-the-bus-didn-t-wait.kmz">Log it all with kinetic</a>.</p>
<p>Take some pictures as you walk and post &#8216;em all using instagram!<br />
<object type="application/x-shockwave-flash" width="400" height="300" data="http://www.flickr.com/apps/video/stewart.swf?v=1.161" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"> <param name="flashvars" value="photo_id=0&amp;photo_secret=0&amp;flickr_show_info_box=true"></param><param name="movie" value="http://www.flickr.com/apps/video/stewart.swf?v=1.161"></param><param name="bgcolor" value="#000000"></param><param name="allowFullScreen" value="true"></param><param name="wmode" value="opaque"></param><embed type="application/x-shockwave-flash" src="http://www.flickr.com/apps/video/stewart.swf?v=1.161" bgcolor="#000000" allowfullscreen="true" flashvars="photo_id=0&amp;photo_secret=0&amp;flickr_show_info_box=true" wmode="opaque" height="300" width="400"></embed></object></p>
<p>Keep an eye on your heart rate: <a href="http://twitter.com/#!/bboyle/status/30913499920080897">105 beats per minute when I was nearly home</a> (back down to 54bpm now).</p>
<p>And an oldie but goodie, listen to great music with the iPod!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/spiii.wordpress.com/211/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/spiii.wordpress.com/211/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/spiii.wordpress.com/211/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/spiii.wordpress.com/211/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/spiii.wordpress.com/211/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/spiii.wordpress.com/211/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/spiii.wordpress.com/211/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/spiii.wordpress.com/211/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/spiii.wordpress.com/211/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/spiii.wordpress.com/211/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/spiii.wordpress.com/211/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/spiii.wordpress.com/211/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/spiii.wordpress.com/211/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/spiii.wordpress.com/211/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=spiii.wordpress.com&amp;blog=21611236&amp;post=211&amp;subd=spiii&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://spiii.wordpress.com/2011/01/29/walking-with-gadgets-and-social-media/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/09e9086e16db4147b55f295dab8bd390?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">spiii</media:title>
		</media:content>
	</item>
		<item>
		<title>Complaint to Unitywater</title>
		<link>http://spiii.wordpress.com/2011/01/29/complaint-to-unitywater/</link>
		<comments>http://spiii.wordpress.com/2011/01/29/complaint-to-unitywater/#comments</comments>
		<pubDate>Sat, 29 Jan 2011 03:09:59 +0000</pubDate>
		<dc:creator>spiii</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://ultimate.benboyle.id.au/blog/?p=207</guid>
		<description><![CDATA[I&#8217;m getting pretty sick of all these expensive bills. TransLink cranked up their rates 15% this week—and still ran their train late so I had to walk home when a bus didn&#8217;t wait yesterday—and the combination of rates/water bills has &#8230; <a href="http://spiii.wordpress.com/2011/01/29/complaint-to-unitywater/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=spiii.wordpress.com&amp;blog=21611236&amp;post=207&amp;subd=spiii&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m getting pretty sick of all these expensive bills. TransLink cranked up their rates 15% this week—and still ran their train late so I had to walk home when a bus didn&#8217;t wait yesterday—and the combination of rates/water bills has been nasty for a while now. Particularly the water component, which has increased by 33%. So today I paid ¾ of my bill (what it was before the 33% hike) and I emailed <cite>ask.us@unitywater.com</cite> about it. Need to rant.</p>
<blockquote><p>Hi,</p>
<p>We received our quarterly bill yesterday. I have been comparing charges on these bills and rates notices to the charges we had before council separated the rates and water charges. The upshot, we pay almost $100 more per month for water and sewerage now—close to $400 where before it was close to $300. There has been no satisfactory explanation given for this price hike of 33%! (and I include the unitywater update spruiking your business and projects—how about you save money and DO NOT print it in the first place, and then pass those savings on.)</p>
<p>I have paid $300 towards my account and will not pay more until a satisfactory explanation of these price increase is given.</p>
<p>You have until 24 February to reply and allow me to pay my account by the due date, or we shall have a glorious and very public fight about why my account is in debt.</p>
<p>regards<br />
Ben</p></blockquote>
<p>Complaints about unity water (and other water suppliers) have been around for a bit. I don&#8217;t really know where it all went belly up. From what I gather the Queensland Government grabbed water utilities off councils, changed things around a bit, then put it back in council responsibility through new supplier organisations—such as Unitywater in our region. Hard to know what&#8217;s happened and who to blame, but Unitywater send the bills so I need to start with them.</p>
<p>Here&#8217;s some links for those interested:</p>
<ul>
<li><a href="http://www.unitywater.com/Contact-us/Account-charges-and-pricing-FAQs.aspx"><span class="title">Account charges and pricing</span><span class="meta"> (Unitywater)</span></a></li>
<li><a href="http://www.google.com.au/search?q=unity+water+bills">google search for <strong>unity water bills</strong></a></li>
<li><a href="http://www.parliament.qld.gov.au/view/EPetitions_qld/CurrentEPetition.aspx?PetNum=1521"><span class="title">New water entities&#8217; pricing arrangements</span><span class="meta"> (e-petition to Queensland Government)</span></a></li>
<li><a href="http://www.cabinet.qld.gov.au/mms/StatementDisplaySingle.aspx?id=72907"><span class="title">Water bill savings should be passed on to more Queenslanders</span><span class="meta"> (Minister for Natural Resources, Mines and Energy and Minister for Trade The Honourable Stephen Robertson, 8 December 2010)</span></a></li>
</ul>
<h2>Update 1: auto response</h2>
<blockquote><p>Thank you for your email. Unitywater encourages and values feedback from our customers and we thank you for your comments / enquiry. A Customer Service Officer will review your email and forward to the relevant Unitywater representative for attention or action within 20 working days.</p></blockquote>
<p>Wow—<strong>20 working days!</strong> Should hear back by 28 February then. By which time my bill is overdue. (No, I won&#8217;t call them. Phone calls cost money. There&#8217;s a principle here!)</p>
<p><ins datetime="2011-02-22"></p>
<h2>Update 2: the reply</h2>
<blockquote><p>As a result of increasing costs to provide high quality water supply and sewerage services in south east Queensland, charges have increased by 33%.</p></blockquote>
<blockquote><p>Unitywater is aware that a price increase of around 33% places pressure on both families and businesses, however we have to take into account the rising costs of bulk water supplied to us by the State Government and the cost to deliver clean safe drinking water and reliable sewerage systems throughout our catchment. We have been chartered with the responsibility of operating as cost-effectively as possible without compromising quality or safety standards.</p>
<p>We are also aligning charges across the region with the goal to establishing a fairer system of parity pricing for all our customers.</p></blockquote>
<p>Yup. I am pretty sure this is now true—everyone in the region got a whopping price increase!</p>
<blockquote><p>The increasing cost of bulk water which Unitywater purchases at a wholesale rate set by the State Government, owners of the Water Grid Manager. In 2010/11 bulk water prices increased by 21% in the Moreton Bay area and 26% in the Sunshine Coast region.</p></blockquote>
<blockquote><p>The Unitywater Board, appointed by the Moreton Bay and Sunshine Coast Councils, sets the fees and charges each financial year.</p></blockquote>
<blockquote><p>The South-East Queensland Water (Distribution and Retail Restructuring) and Natural Resources Provisions Act 2009, empowers Unitywater to fix charges and terms for services and facilities.</p></blockquote>
<blockquote><p>To protect consumers by ensuring efficient expenditure and fair pricing, an independent regulator, the Queensland Competition Authority (QCA) was established from 1 July, 2010. Unitywater is required to justify price setting to the QCA who is responsible for monitoring price regulation until 30 June 2013.  From 1 July 2013 their role will change to price regulation.</p></blockquote>
<p>I went to have a squiz at the Queensland Competition Authority—who, incidentally, share an acronym with the Queensland College of Art, where I studied Animation—and was shocked by the <a href="http://www.qca.org.au/water/2010SEQretail-price/">horrible sight of lists and lists of PDF documents to read</a>. No thanks.</p>
<p>Paid my bill. They did reply. Now to acceptance. As the tagline on the L4D2 campaign <a href="http://left4dead.wikia.com/wiki/Hard_Rain">Hard Rain</a> says: <em>Come Hell and High Water</em> (bills).</p>
<p>So that&#8217;s what I did. Played Hard Rain. Take that flood zombies!!<br />
<object type="application/x-shockwave-flash" width="400" height="300" data="http://www.flickr.com/apps/video/stewart.swf?v=1.161" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"> <param name="flashvars" value="photo_id=0&amp;photo_secret=0&amp;flickr_show_info_box=true"></param><param name="movie" value="http://www.flickr.com/apps/video/stewart.swf?v=1.161"></param><param name="bgcolor" value="#000000"></param><param name="allowFullScreen" value="true"></param><param name="wmode" value="opaque"></param><embed type="application/x-shockwave-flash" src="http://www.flickr.com/apps/video/stewart.swf?v=1.161" bgcolor="#000000" allowfullscreen="true" flashvars="photo_id=0&amp;photo_secret=0&amp;flickr_show_info_box=true" wmode="opaque" height="300" width="400"></embed></object></p>
<p>PS: I&#8217;ll take water bills over earthquakes any day. Hope NZ recovery goes well!<br />
</ins></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/spiii.wordpress.com/207/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/spiii.wordpress.com/207/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/spiii.wordpress.com/207/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/spiii.wordpress.com/207/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/spiii.wordpress.com/207/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/spiii.wordpress.com/207/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/spiii.wordpress.com/207/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/spiii.wordpress.com/207/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/spiii.wordpress.com/207/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/spiii.wordpress.com/207/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/spiii.wordpress.com/207/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/spiii.wordpress.com/207/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/spiii.wordpress.com/207/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/spiii.wordpress.com/207/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=spiii.wordpress.com&amp;blog=21611236&amp;post=207&amp;subd=spiii&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://spiii.wordpress.com/2011/01/29/complaint-to-unitywater/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/09e9086e16db4147b55f295dab8bd390?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">spiii</media:title>
		</media:content>
	</item>
		<item>
		<title>Assassin’s Creed II</title>
		<link>http://spiii.wordpress.com/2011/01/02/assassin%e2%80%99s-creed-ii/</link>
		<comments>http://spiii.wordpress.com/2011/01/02/assassin%e2%80%99s-creed-ii/#comments</comments>
		<pubDate>Sun, 02 Jan 2011 12:00:08 +0000</pubDate>
		<dc:creator>spiii</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://ultimate.benboyle.id.au/blog/?p=206</guid>
		<description><![CDATA[Last September I posted about Assassin’s Creed, which I picked up in the 2009 Christmas sales on Steam. In 2010, the sale I was waiting for came along and I picked up Assassin’s Creed II—and it is excellent! Kudos too, &#8230; <a href="http://spiii.wordpress.com/2011/01/02/assassin%e2%80%99s-creed-ii/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=spiii.wordpress.com&amp;blog=21611236&amp;post=206&amp;subd=spiii&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Last September <a href="/blog/2010/09/assassins-creed/">I posted about Assassin’s Creed</a>, which I picked up in the 2009 Christmas sales on Steam. In 2010, the sale I was waiting for came along and I picked up <a href="http://store.steampowered.com/app/33230/">Assassin’s Creed II</a>—and it is excellent! Kudos too, to <a href="http://www.ubi.com/au/">Ubisoft</a> for offering an additional discount to owners of the first Assassin’s Creed game, which I happily took advantage of!</p>
<object type="application/x-shockwave-flash" width="400" height="300" data="http://www.flickr.com/apps/video/stewart.swf?v=1.161" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"> <param name="flashvars" value="photo_id=0&amp;photo_secret=0&amp;flickr_show_info_box=true"></param><param name="movie" value="http://www.flickr.com/apps/video/stewart.swf?v=1.161"></param><param name="bgcolor" value="#000000"></param><param name="allowFullScreen" value="true"></param><param name="wmode" value="opaque"></param><embed type="application/x-shockwave-flash" src="http://www.flickr.com/apps/video/stewart.swf?v=1.161" bgcolor="#000000" allowfullscreen="true" flashvars="photo_id=0&amp;photo_secret=0&amp;flickr_show_info_box=true" wmode="opaque" height="300" width="400"></embed></object>
<p>All the fun stealth and conspiracy elements of the first game are here—in a beautifully rendered Renaissance setting, and with oodles more content. The first game took me 24 hours to reach the finalé. I’m 19 hours into ACII and don’t think I’ve hit the halfway point yet. Nice!</p>
<object type="application/x-shockwave-flash" width="400" height="300" data="http://www.flickr.com/apps/video/stewart.swf?v=1.161" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"> <param name="flashvars" value="photo_id=0&amp;photo_secret=0&amp;flickr_show_info_box=true"></param><param name="movie" value="http://www.flickr.com/apps/video/stewart.swf?v=1.161"></param><param name="bgcolor" value="#000000"></param><param name="allowFullScreen" value="true"></param><param name="wmode" value="opaque"></param><embed type="application/x-shockwave-flash" src="http://www.flickr.com/apps/video/stewart.swf?v=1.161" bgcolor="#000000" allowfullscreen="true" flashvars="photo_id=0&amp;photo_secret=0&amp;flickr_show_info_box=true" wmode="opaque" height="300" width="400"></embed></object>
<p>You start exploring the life of Ezio as a youth, before learning of his assassin heritage. You learn more of his life and motivation, but I won&#8217;t spoil that here. And fear not, Ezio masters the assassin arts with enviable speed!</p>
<object type="application/x-shockwave-flash" width="400" height="300" data="http://www.flickr.com/apps/video/stewart.swf?v=1.161" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"> <param name="flashvars" value="photo_id=0&amp;photo_secret=0&amp;flickr_show_info_box=true"></param><param name="movie" value="http://www.flickr.com/apps/video/stewart.swf?v=1.161"></param><param name="bgcolor" value="#000000"></param><param name="allowFullScreen" value="true"></param><param name="wmode" value="opaque"></param><embed type="application/x-shockwave-flash" src="http://www.flickr.com/apps/video/stewart.swf?v=1.161" bgcolor="#000000" allowfullscreen="true" flashvars="photo_id=0&amp;photo_secret=0&amp;flickr_show_info_box=true" wmode="opaque" height="300" width="400"></embed></object>
<p>Graphics definitely got a boost and look fantastic in 1080p—sadly, my 9800GTX (or more likely my 2.2GHz CPU) struggles a bit in some scenes, but not enough to spoil it. The story also has a boost. Continuing directly on from Assassin’s Creed, Desmond and Lucy (Veronica Mars) escape the Abstergo building and meet up with a couple of other modern assassins. Desmond then gets into their animus and from then on it’s all about reliving the life of his ancestor Ezio (he was reliving Altair in the first game).</p>
<object type="application/x-shockwave-flash" width="400" height="300" data="http://www.flickr.com/apps/video/stewart.swf?v=1.161" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"> <param name="flashvars" value="photo_id=0&amp;photo_secret=0&amp;flickr_show_info_box=true"></param><param name="movie" value="http://www.flickr.com/apps/video/stewart.swf?v=1.161"></param><param name="bgcolor" value="#000000"></param><param name="allowFullScreen" value="true"></param><param name="wmode" value="opaque"></param><embed type="application/x-shockwave-flash" src="http://www.flickr.com/apps/video/stewart.swf?v=1.161" bgcolor="#000000" allowfullscreen="true" flashvars="photo_id=0&amp;photo_secret=0&amp;flickr_show_info_box=true" wmode="opaque" height="300" width="400"></embed></object>
<p>This whole memory aspect has a nice Matrix style twist to the game. And it’s very clever—you can’t die in a memory, you can only lose synchronisation. This plot device also controls when new areas open up. Venture too far and the game will reset to put you back in sync with Ezio’s actions. I find this more believable than the closed bridges in GTA <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<object type="application/x-shockwave-flash" width="400" height="300" data="http://www.flickr.com/apps/video/stewart.swf?v=1.161" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"> <param name="flashvars" value="photo_id=0&amp;photo_secret=0&amp;flickr_show_info_box=true"></param><param name="movie" value="http://www.flickr.com/apps/video/stewart.swf?v=1.161"></param><param name="bgcolor" value="#000000"></param><param name="allowFullScreen" value="true"></param><param name="wmode" value="opaque"></param><embed type="application/x-shockwave-flash" src="http://www.flickr.com/apps/video/stewart.swf?v=1.161" bgcolor="#000000" allowfullscreen="true" flashvars="photo_id=0&amp;photo_secret=0&amp;flickr_show_info_box=true" wmode="opaque" height="300" width="400"></embed></object>
<p>Controls are still a little whacky, at least they aren’t named &#8220;button 4&#8243; anymore. I had to remap the action buttons so the XBox360 controller colours matched the icons on screen, which definitely helps. I haven’t done as many accidental assassinations so it must be better! Other icons are somewhat mysterious—it is hard remembering which buttons are on the triggers and bumpers. Right bumper is &#8220;high profile&#8221; though—hold it down to add wow factor!</p>
<object type="application/x-shockwave-flash" width="400" height="300" data="http://www.flickr.com/apps/video/stewart.swf?v=1.161" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"> <param name="flashvars" value="photo_id=0&amp;photo_secret=0&amp;flickr_show_info_box=true"></param><param name="movie" value="http://www.flickr.com/apps/video/stewart.swf?v=1.161"></param><param name="bgcolor" value="#000000"></param><param name="allowFullScreen" value="true"></param><param name="wmode" value="opaque"></param><embed type="application/x-shockwave-flash" src="http://www.flickr.com/apps/video/stewart.swf?v=1.161" bgcolor="#000000" allowfullscreen="true" flashvars="photo_id=0&amp;photo_secret=0&amp;flickr_show_info_box=true" wmode="opaque" height="300" width="400"></embed></object>
<p>Showmanship will earn notoriety faster though (and could they have found a more awkward word than notoriety?) The notoriety system is much better. Guards won’t bother you too much at first, but if you start leaping around or knifing folks like—well, like an assassin—folks will start to pay attention. After too many incidents, you will be notorious. Guards will become instantly suspicious of you. Unless of course, you blend in…</p>
<object type="application/x-shockwave-flash" width="400" height="300" data="http://www.flickr.com/apps/video/stewart.swf?v=1.161" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"> <param name="flashvars" value="photo_id=0&amp;photo_secret=0&amp;flickr_show_info_box=true"></param><param name="movie" value="http://www.flickr.com/apps/video/stewart.swf?v=1.161"></param><param name="bgcolor" value="#000000"></param><param name="allowFullScreen" value="true"></param><param name="wmode" value="opaque"></param><embed type="application/x-shockwave-flash" src="http://www.flickr.com/apps/video/stewart.swf?v=1.161" bgcolor="#000000" allowfullscreen="true" flashvars="photo_id=0&amp;photo_secret=0&amp;flickr_show_info_box=true" wmode="opaque" height="300" width="400"></embed></object>
<p>Blending is much the same, but no longer requires a conveniently placed group of monks. You can blend with any group of passersby, so long as you stay in their midst. Hiring courtesans is even more effective (not sure why!) with the added bonus that they are able to distract guards when needed. This is highly useful for stealing treasure from guarded rooms!</p>
<p>Actually, getting minions—the courtesans, mercenaries and thieves—to do your dirty work is highly viable! They money system is generous so hiring them when around is almost always a good bet. Better than getting Ezio into a mess all on his own…</p>
<object type="application/x-shockwave-flash" width="400" height="300" data="http://www.flickr.com/apps/video/stewart.swf?v=1.161" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"> <param name="flashvars" value="photo_id=0&amp;photo_secret=0&amp;flickr_show_info_box=true"></param><param name="movie" value="http://www.flickr.com/apps/video/stewart.swf?v=1.161"></param><param name="bgcolor" value="#000000"></param><param name="allowFullScreen" value="true"></param><param name="wmode" value="opaque"></param><embed type="application/x-shockwave-flash" src="http://www.flickr.com/apps/video/stewart.swf?v=1.161" bgcolor="#000000" allowfullscreen="true" flashvars="photo_id=0&amp;photo_secret=0&amp;flickr_show_info_box=true" wmode="opaque" height="300" width="400"></embed></object>
<p>Gone are the repetitive missions and dialogue. The game flows confidently, sending you between cities. A great number of missions contribute directly to the story in this game, but there are a few side missions—races, assassination jobs, and beating on unfaithful husbands.</p>
<object type="application/x-shockwave-flash" width="400" height="300" data="http://www.flickr.com/apps/video/stewart.swf?v=1.161" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"> <param name="flashvars" value="photo_id=0&amp;photo_secret=0&amp;flickr_show_info_box=true"></param><param name="movie" value="http://www.flickr.com/apps/video/stewart.swf?v=1.161"></param><param name="bgcolor" value="#000000"></param><param name="allowFullScreen" value="true"></param><param name="wmode" value="opaque"></param><embed type="application/x-shockwave-flash" src="http://www.flickr.com/apps/video/stewart.swf?v=1.161" bgcolor="#000000" allowfullscreen="true" flashvars="photo_id=0&amp;photo_secret=0&amp;flickr_show_info_box=true" wmode="opaque" height="300" width="400"></embed></object>
<p>More fun is when you find a pickpocket in the vicinity—you can chase him down and tackle him (non-lethal) and keep the money yourself! Believe me, you’ve earned it. Those rooftop chases are crazy hard sometimes! Yep, it&#8217;s renaissance Italy and it&#8217;s full of colourful characters. And, this time, subtitles!</p>
<object type="application/x-shockwave-flash" width="400" height="300" data="http://www.flickr.com/apps/video/stewart.swf?v=1.161" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"> <param name="flashvars" value="photo_id=0&amp;photo_secret=0&amp;flickr_show_info_box=true"></param><param name="movie" value="http://www.flickr.com/apps/video/stewart.swf?v=1.161"></param><param name="bgcolor" value="#000000"></param><param name="allowFullScreen" value="true"></param><param name="wmode" value="opaque"></param><embed type="application/x-shockwave-flash" src="http://www.flickr.com/apps/video/stewart.swf?v=1.161" bgcolor="#000000" allowfullscreen="true" flashvars="photo_id=0&amp;photo_secret=0&amp;flickr_show_info_box=true" wmode="opaque" height="300" width="400"></embed></object>
<p>There are more soldiers and weapons. Ezio wields dual hidden blades, a knife and sword. You can buy new weapons as you progress and briefly pickup dropped weapons too. In addition to daggers and swords, there are mauls, hammers, axes, smoke bombs and poison. And probably more I have yet to discover.</p>
<object type="application/x-shockwave-flash" width="400" height="300" data="http://www.flickr.com/apps/video/stewart.swf?v=1.161" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"> <param name="flashvars" value="photo_id=0&amp;photo_secret=0&amp;flickr_show_info_box=true"></param><param name="movie" value="http://www.flickr.com/apps/video/stewart.swf?v=1.161"></param><param name="bgcolor" value="#000000"></param><param name="allowFullScreen" value="true"></param><param name="wmode" value="opaque"></param><embed type="application/x-shockwave-flash" src="http://www.flickr.com/apps/video/stewart.swf?v=1.161" bgcolor="#000000" allowfullscreen="true" flashvars="photo_id=0&amp;photo_secret=0&amp;flickr_show_info_box=true" wmode="opaque" height="300" width="400"></embed></object>
<p>Enemies are armoured, some more than others, and use different fighting styles. The combat is simple to control, and effective, even with the added variety. Successfully execute a counter and you&#8217;ll be treated to a nice little cut scene of Ezio showcasing his leet skills. But there are new stealth takedowns too—from haystacks, underwater or rooftop edges.</p>
<span class='embed-youtube' style='text-align:center; display: block;'><iframe class='youtube-player' type='text/html' width='640' height='390' src='http://www.youtube.com/embed/qeuYtcXo99s?version=3&amp;rel=1&amp;fs=1&amp;showsearch=0&amp;showinfo=1&amp;iv_load_policy=1&amp;wmode=transparent' frameborder='0'></iframe></span>
<p>How you approach each task is up to you. Sandbox and stealth for the win! Can’t wait until we see Brotherhood on the PC later this year!</p>
<object type="application/x-shockwave-flash" width="400" height="300" data="http://www.flickr.com/apps/video/stewart.swf?v=1.161" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"> <param name="flashvars" value="photo_id=0&amp;photo_secret=0&amp;flickr_show_info_box=true"></param><param name="movie" value="http://www.flickr.com/apps/video/stewart.swf?v=1.161"></param><param name="bgcolor" value="#000000"></param><param name="allowFullScreen" value="true"></param><param name="wmode" value="opaque"></param><embed type="application/x-shockwave-flash" src="http://www.flickr.com/apps/video/stewart.swf?v=1.161" bgcolor="#000000" allowfullscreen="true" flashvars="photo_id=0&amp;photo_secret=0&amp;flickr_show_info_box=true" wmode="opaque" height="300" width="400"></embed></object>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/spiii.wordpress.com/206/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/spiii.wordpress.com/206/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/spiii.wordpress.com/206/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/spiii.wordpress.com/206/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/spiii.wordpress.com/206/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/spiii.wordpress.com/206/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/spiii.wordpress.com/206/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/spiii.wordpress.com/206/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/spiii.wordpress.com/206/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/spiii.wordpress.com/206/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/spiii.wordpress.com/206/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/spiii.wordpress.com/206/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/spiii.wordpress.com/206/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/spiii.wordpress.com/206/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=spiii.wordpress.com&amp;blog=21611236&amp;post=206&amp;subd=spiii&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://spiii.wordpress.com/2011/01/02/assassin%e2%80%99s-creed-ii/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/09e9086e16db4147b55f295dab8bd390?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">spiii</media:title>
		</media:content>
	</item>
		<item>
		<title>Feedback on the draft 2011 Caboolture line timetable</title>
		<link>http://spiii.wordpress.com/2010/12/05/feedback-on-the-draft-2011-caboolture-line-timetable/</link>
		<comments>http://spiii.wordpress.com/2010/12/05/feedback-on-the-draft-2011-caboolture-line-timetable/#comments</comments>
		<pubDate>Sun, 05 Dec 2010 07:10:20 +0000</pubDate>
		<dc:creator>spiii</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://ultimate.benboyle.id.au/blog/?p=204</guid>
		<description><![CDATA[Forgive the rant. Sometimes I like to check back on what I said later ~:) First up—I work in Brisbane city and commute daily from Morayfield. My feedback is based around this commute. Please note that &#8220;Connecting SEQ 2031&#8243; identified &#8230; <a href="http://spiii.wordpress.com/2010/12/05/feedback-on-the-draft-2011-caboolture-line-timetable/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=spiii.wordpress.com&amp;blog=21611236&amp;post=204&amp;subd=spiii&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Forgive the rant. Sometimes I like to check back on what I said later ~:)</p>
<blockquote><p>First up—I work in Brisbane city and commute daily from Morayfield. My feedback is based around this commute. Please note that &#8220;Connecting SEQ 2031&#8243; identified the following statistics for the Moreton region (including Morayfield):</p>
<ul>
<li>About 50% of work destinations are outside the local government area</li>
<li>Low public transport mode share of 6.2%</li>
<li>The average commute trip is 20.3 kilometres</li>
</ul>
<p><a href="http://www.connectingseq.qld.gov.au/Area/Moreton.aspx"> http://www.connectingseq.qld.gov.au/Area/Moreton.aspx</a>I can identify with this situation. I estimate I spend a little over over 90 mins per journey (walking, bus, train) door to door which is 3 hrs per day, 15 hrs per week (Mon-Fri working week). I&#8217;m not keen on any increase to this, even a 5 minute increase in a timetabled trip looks unpleasant to me.</p>
<p>I have been commuting daily from Morayfield to Brisbane CBD since March 2000. This new timetable is not an improvement. I am a little cranky that in January 2011 I will be paying the increased fare for lower quality service.<br />
Specifically:</p>
<ul>
<li>service are infrequent from Morayfield station after 7:24 am (I catch the 656 bus which arrives at 7:40 am (assuming no delay)</li>
<li>the 7:46 am all stations train from Morayfield now takes 2 minutes longer to reach Central. It stops at all the same stations and departs the same time—why the delay?</li>
<li>the 8:10 am express train from Morayfield is cancelled</li>
<li>the 5:22 pm Caboolture express train from Roma St leaves 4 minutes earlier (5:18 pm), forcing me to leave the office earlier (shaves a little more from what flex time I can work.) However, it is a positive that this train is now timetabled to arrive at Morayfield at 6:13 pm, rather than 6:16 pm. The 6:16 pm arrival has caused me a great deal of grief with the 656 bus, which is timetabled to leave at 6:15 pm (thankfully, the drivers usually wait for me.)</li>
</ul>
<p>If you want to win me over with this timetable change, add some extra express trains later in the morning, and ensure that 5:18 pm express always makes its timetabled 6:13 pm arrival at Morayfield station.</p>
<p>I found the press release (about more frequent trains) very misleading. There do not appear to be more trains at Morayfield when I would catch them, nor any that encourage me to alter my commuting habits (specifically to travel off-peak).</p>
<p>Express services now take 5 mins longer, in order to stop all stations from Northgate to the CBD. This is not a good change for commuters from Caboolture area—we already face longer trips and higher fares than CBD commuters, and have less choice (i.e. few bus services, no ferries, as alternatives). I am not pleased that this change helps inner city suburbs to the detriment of longer distance commuters. We also face a higher fare increase in January as the same percentage increase across the network translates into higher dollar amounts the farther one commutes.</p>
<p>This timetable does nothing to encourage off-peak travel. This is despite the qld government&#8217;s strategy to reduce peak congestion. Translink published a media release about this in 2009: <a href="http://www.translink.com.au/about-translink/reporting-and-publications/media-releases/release/72">http://www.translink.com.au/about-translink/reporting-and-publications/media-releases/release/72</a> and I quote &#8220;Flexible Workplace Program &#8211; $624,000 for the Flexible Workplace Program which promotes the uptake of flexible hours, compressed work weeks and telecommuting, with the aim of changing travel behaviour and helping to manage congestion.&#8221; This new timetable does not support the flexible workplace program. It makes the situation worse for travelling off-peak.</p>
<p>(n.b. not related to the timetable change, the definition of &#8220;off-peak&#8221; by translink is discriminatory. A commuter in an innercity suburb can leave home after 9 am and get to work soon after. If I cannot begin my journey until after 9 am from Morayfield, then I cannot be at work until after 10:30 am!! Bear in mind I must first catch a bus to the train station, so I may miss the 9:22 am train and then not arrive at work until after 11 am!!)</p>
<p>Personally, I would be keen to pursue travelling to work later—but not as late as 11 am. However this draft timetable makes the situation worse, not better. Specifically, the 8:10 am express service from Morayfield to City has been cancelled. The latest express service leaves at 7:27 am. Services only run every 20 mins from then, and every 30 mins from 8:22 am. This does not promote travelling off-peak, and does not come close to the misleading claims of &#8220;trains every 6 minutes&#8221; on the &#8220;caboolture line&#8221;. I read this timetable in there is no doubt in my mind I must travel during peak services—the delays between infrequent bus/train services plus lack of express services ensures the commuting time outside peak hours is not a viable option.</p>
<p>A am a little disappointed. I think there was a great opportunity here to do more to promote off-peak commuting as a viable alternative. I hope there is time to improve this timetable!</p>
<p>I would like a fast transport to the city. And I would like more frequent services after peak hours. You probably don&#8217;t see the demand for this, but there is a chicken and egg situation here to consider.</p>
<p>(I could add similar feedback for the 656 bus route, which runs infrequently after 7:25 am from my stop—and with the last service leaving the Morayfield station at 6:15 pm does not support commuters catching off-peak train services from the CBD.)</p></blockquote>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/spiii.wordpress.com/204/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/spiii.wordpress.com/204/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/spiii.wordpress.com/204/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/spiii.wordpress.com/204/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/spiii.wordpress.com/204/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/spiii.wordpress.com/204/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/spiii.wordpress.com/204/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/spiii.wordpress.com/204/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/spiii.wordpress.com/204/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/spiii.wordpress.com/204/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/spiii.wordpress.com/204/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/spiii.wordpress.com/204/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/spiii.wordpress.com/204/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/spiii.wordpress.com/204/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=spiii.wordpress.com&amp;blog=21611236&amp;post=204&amp;subd=spiii&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://spiii.wordpress.com/2010/12/05/feedback-on-the-draft-2011-caboolture-line-timetable/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/09e9086e16db4147b55f295dab8bd390?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">spiii</media:title>
		</media:content>
	</item>
		<item>
		<title>Halloween game on!</title>
		<link>http://spiii.wordpress.com/2010/10/31/halloween-game-on/</link>
		<comments>http://spiii.wordpress.com/2010/10/31/halloween-game-on/#comments</comments>
		<pubDate>Sun, 31 Oct 2010 04:47:24 +0000</pubDate>
		<dc:creator>spiii</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://ultimate.benboyle.id.au/blog/?p=203</guid>
		<description><![CDATA[It&#8217;s Halloween! Games developers have taken the chance to splurge a little with some holiday themed mayhem. Borderlands Not strictly released for this Halloween, the Zombie Island of Dr Ned DLC nonetheless delivers the thrills! Amidst the zombies is a &#8230; <a href="http://spiii.wordpress.com/2010/10/31/halloween-game-on/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=spiii.wordpress.com&amp;blog=21611236&amp;post=203&amp;subd=spiii&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s Halloween! Games developers have taken the chance to splurge a little with some holiday themed mayhem.</p>
<h2>Borderlands</h2>
<p>Not strictly released for this Halloween, the <cite>Zombie Island of Dr Ned</cite> DLC nonetheless delivers the thrills! Amidst the zombies is a placed called &#8220;Hallows End&#8221; where you&#8217;ll find the boss: Pumpkinhead!</p>
<figure>
<object type="application/x-shockwave-flash" width="400" height="300" data="http://www.flickr.com/apps/video/stewart.swf?v=1.161" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"> <param name="flashvars" value="photo_id=0&amp;photo_secret=0&amp;flickr_show_info_box=true"></param><param name="movie" value="http://www.flickr.com/apps/video/stewart.swf?v=1.161"></param><param name="bgcolor" value="#000000"></param><param name="allowFullScreen" value="true"></param><param name="wmode" value="opaque"></param><embed type="application/x-shockwave-flash" src="http://www.flickr.com/apps/video/stewart.swf?v=1.161" bgcolor="#000000" allowfullscreen="true" flashvars="photo_id=0&amp;photo_secret=0&amp;flickr_show_info_box=true" wmode="opaque" height="300" width="400"></embed></object></p>
<figcaption>Hallows End in Jakob&#8217;s Cove</figcaption>
</figure>
<figure>
<object type="application/x-shockwave-flash" width="400" height="300" data="http://www.flickr.com/apps/video/stewart.swf?v=1.161" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"> <param name="flashvars" value="photo_id=0&amp;photo_secret=0&amp;flickr_show_info_box=true"></param><param name="movie" value="http://www.flickr.com/apps/video/stewart.swf?v=1.161"></param><param name="bgcolor" value="#000000"></param><param name="allowFullScreen" value="true"></param><param name="wmode" value="opaque"></param><embed type="application/x-shockwave-flash" src="http://www.flickr.com/apps/video/stewart.swf?v=1.161" bgcolor="#000000" allowfullscreen="true" flashvars="photo_id=0&amp;photo_secret=0&amp;flickr_show_info_box=true" wmode="opaque" height="300" width="400"></embed></object></p>
<figcaption>Pumpkinhead boss</figcaption>
</figure>
<h2>Global Agenda</h2>
<p>A modest update to the Global Agenda MMO, restyling a raid map for added spookiness. Ghosts drift away with each kill, and the <strike>Dune</strike>Doom Commander boss has a pumpkin on his head. A range of holiday head flairs are on offer too.</p>
<figure>
<object type="application/x-shockwave-flash" width="400" height="300" data="http://www.flickr.com/apps/video/stewart.swf?v=1.161" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"> <param name="flashvars" value="photo_id=0&amp;photo_secret=0&amp;flickr_show_info_box=true"></param><param name="movie" value="http://www.flickr.com/apps/video/stewart.swf?v=1.161"></param><param name="bgcolor" value="#000000"></param><param name="allowFullScreen" value="true"></param><param name="wmode" value="opaque"></param><embed type="application/x-shockwave-flash" src="http://www.flickr.com/apps/video/stewart.swf?v=1.161" bgcolor="#000000" allowfullscreen="true" flashvars="photo_id=0&amp;photo_secret=0&amp;flickr_show_info_box=true" wmode="opaque" height="300" width="400"></embed></object></p>
<figcaption>Doom Commander (Dune Commander with pumpkin head)</figcaption>
</figure>
<figure>
<object type="application/x-shockwave-flash" width="400" height="300" data="http://www.flickr.com/apps/video/stewart.swf?v=1.161" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"> <param name="flashvars" value="photo_id=0&amp;photo_secret=0&amp;flickr_show_info_box=true"></param><param name="movie" value="http://www.flickr.com/apps/video/stewart.swf?v=1.161"></param><param name="bgcolor" value="#000000"></param><param name="allowFullScreen" value="true"></param><param name="wmode" value="opaque"></param><embed type="application/x-shockwave-flash" src="http://www.flickr.com/apps/video/stewart.swf?v=1.161" bgcolor="#000000" allowfullscreen="true" flashvars="photo_id=0&amp;photo_secret=0&amp;flickr_show_info_box=true" wmode="opaque" height="300" width="400"></embed></object></p>
<figcaption>&#8220;Skeletor&#8221; style head flair</figcaption>
</figure>
<h2>Team Fortress 2</h2>
<p>It&#8217;s the second annual halloween event and Valve have delivered the goods with a new map and a new boss. Boss? Yes, TF2 has it&#8217;s first boss in The Horseless Headless Horseman who&#8217;ll appear on the point and indiscriminately attack all players. Team up to take him down? Or take advantage of the confusion to score extra kills? You decide. Brilliantly chaotic!</p>
<figure>
<object type="application/x-shockwave-flash" width="400" height="300" data="http://www.flickr.com/apps/video/stewart.swf?v=1.161" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"> <param name="flashvars" value="photo_id=0&amp;photo_secret=0&amp;flickr_show_info_box=true"></param><param name="movie" value="http://www.flickr.com/apps/video/stewart.swf?v=1.161"></param><param name="bgcolor" value="#000000"></param><param name="allowFullScreen" value="true"></param><param name="wmode" value="opaque"></param><embed type="application/x-shockwave-flash" src="http://www.flickr.com/apps/video/stewart.swf?v=1.161" bgcolor="#000000" allowfullscreen="true" flashvars="photo_id=0&amp;photo_secret=0&amp;flickr_show_info_box=true" wmode="opaque" height="300" width="400"></embed></object></p>
<figcaption>The Horseless Headless Horseman</figcaption>
</figure>
<figure>
<object type="application/x-shockwave-flash" width="400" height="300" data="http://www.flickr.com/apps/video/stewart.swf?v=1.161" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"> <param name="flashvars" value="photo_id=0&amp;photo_secret=0&amp;flickr_show_info_box=true"></param><param name="movie" value="http://www.flickr.com/apps/video/stewart.swf?v=1.161"></param><param name="bgcolor" value="#000000"></param><param name="allowFullScreen" value="true"></param><param name="wmode" value="opaque"></param><embed type="application/x-shockwave-flash" src="http://www.flickr.com/apps/video/stewart.swf?v=1.161" bgcolor="#000000" allowfullscreen="true" flashvars="photo_id=0&amp;photo_secret=0&amp;flickr_show_info_box=true" wmode="opaque" height="300" width="400"></embed></object></p>
<figcaption>Tricksy spy cloaked as my scary sniper</figcaption>
</figure>
<h2>What did we learn from this?</h2>
<p>It is essential that spooky bosses in games wear pumpkins for heads.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/spiii.wordpress.com/203/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/spiii.wordpress.com/203/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/spiii.wordpress.com/203/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/spiii.wordpress.com/203/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/spiii.wordpress.com/203/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/spiii.wordpress.com/203/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/spiii.wordpress.com/203/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/spiii.wordpress.com/203/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/spiii.wordpress.com/203/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/spiii.wordpress.com/203/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/spiii.wordpress.com/203/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/spiii.wordpress.com/203/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/spiii.wordpress.com/203/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/spiii.wordpress.com/203/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=spiii.wordpress.com&amp;blog=21611236&amp;post=203&amp;subd=spiii&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://spiii.wordpress.com/2010/10/31/halloween-game-on/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/09e9086e16db4147b55f295dab8bd390?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">spiii</media:title>
		</media:content>
	</item>
		<item>
		<title>Bins and broadband—a letter to Moreton Bay Regional Council</title>
		<link>http://spiii.wordpress.com/2010/10/27/bins-and-broadband%e2%80%94a-letter-to-moreton-bay-regional-council/</link>
		<comments>http://spiii.wordpress.com/2010/10/27/bins-and-broadband%e2%80%94a-letter-to-moreton-bay-regional-council/#comments</comments>
		<pubDate>Wed, 27 Oct 2010 13:23:52 +0000</pubDate>
		<dc:creator>spiii</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://ultimate.benboyle.id.au/blog/?p=201</guid>
		<description><![CDATA[11 pm? Time to email the Moreton Bay Shire Council! Hi, Last July I was in Ayr and they had just introduced a new rubbish collection service. They had three bins: yellow lid, recycling (pretty much what we have) red &#8230; <a href="http://spiii.wordpress.com/2010/10/27/bins-and-broadband%e2%80%94a-letter-to-moreton-bay-regional-council/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=spiii.wordpress.com&amp;blog=21611236&amp;post=201&amp;subd=spiii&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>11 pm? Time to email the <a href="http://www.moretonbay.qld.gov.au/">Moreton Bay Shire Council</a>!</p>
<blockquote><p>Hi,</p>
<p>Last July I was in Ayr and they had just introduced a new rubbish collection service. They had three bins:</p>
<ol>
<li>yellow lid, recycling (pretty much what we have)</li>
<li>red lid, waste (everything we&#8217;d through in the regular wheelie bin)</li>
<li>green lid, garden clippings</li>
</ol>
<p>I thought it was a good idea and have been hoping something similar would be introduced here … have council any plans in regard to this?</p>
<p>Also, who is fixing our broadband? The infrastructure is terribly behind the times in Upper Caboolture. We only managed to connect ADSL last year and it it can only reach speeds around 0.5 Mbps. This is only a third of the possible speed of ADSL1, nowhere near the potential of ADSL2 or ADSL2+, and 200 times slower than the proposed 100 Mbps of the NBN.</p>
<p>It&#8217;s nice to hear Tassie and some regional places in Qld are getting NBN, but WHAT ABOUT US!!!?</p>
<p>thanks <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
Ben
</p></blockquote>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/spiii.wordpress.com/201/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/spiii.wordpress.com/201/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/spiii.wordpress.com/201/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/spiii.wordpress.com/201/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/spiii.wordpress.com/201/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/spiii.wordpress.com/201/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/spiii.wordpress.com/201/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/spiii.wordpress.com/201/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/spiii.wordpress.com/201/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/spiii.wordpress.com/201/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/spiii.wordpress.com/201/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/spiii.wordpress.com/201/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/spiii.wordpress.com/201/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/spiii.wordpress.com/201/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=spiii.wordpress.com&amp;blog=21611236&amp;post=201&amp;subd=spiii&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://spiii.wordpress.com/2010/10/27/bins-and-broadband%e2%80%94a-letter-to-moreton-bay-regional-council/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/09e9086e16db4147b55f295dab8bd390?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">spiii</media:title>
		</media:content>
	</item>
		<item>
		<title>Screen reader style test</title>
		<link>http://spiii.wordpress.com/2010/10/15/screen-reader-style-test/</link>
		<comments>http://spiii.wordpress.com/2010/10/15/screen-reader-style-test/#comments</comments>
		<pubDate>Fri, 15 Oct 2010 02:57:31 +0000</pubDate>
		<dc:creator>spiii</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://ultimate.benboyle.id.au/blog/?p=198</guid>
		<description><![CDATA[Some writing style/conventions for testing with screen readers: $15,000 $15 000 $15&#8201;000 $15 million $15m 75% 75 per cent seventy five per cent 13 74 68 13 HEALTH (13 43 25 84) 13 QGOV (13 74 68) (07) 3006 8746 &#8230; <a href="http://spiii.wordpress.com/2010/10/15/screen-reader-style-test/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=spiii.wordpress.com&amp;blog=21611236&amp;post=198&amp;subd=spiii&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Some writing style/conventions for testing with screen readers:</p>
<ul>
<li>$15,000</li>
<li>$15 000</li>
<li>$15&thinsp;000</li>
<li>$15 million</li>
<li>$15m</li>
<li>75%</li>
<li>75 per cent</li>
<li>seventy five per cent</li>
<li>13 74 68</li>
<li>13 HEALTH (13 43 25 84)</li>
<li>13 QGOV (13 74 68)</li>
<li>(07) 3006 8746</li>
<li>+61 7 3006 8746</li>
<li>30 km</li>
<li>30km</li>
<li>30&nbsp;km</li>
<li><span style="white-space:nowrap;">30 km</span></li>
<li><abbr title="Queensland University of Technology">QUT</abbr></li>
<li><abbr title="Queensland University of Technology">QUT</abbr></li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/spiii.wordpress.com/198/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/spiii.wordpress.com/198/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/spiii.wordpress.com/198/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/spiii.wordpress.com/198/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/spiii.wordpress.com/198/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/spiii.wordpress.com/198/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/spiii.wordpress.com/198/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/spiii.wordpress.com/198/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/spiii.wordpress.com/198/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/spiii.wordpress.com/198/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/spiii.wordpress.com/198/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/spiii.wordpress.com/198/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/spiii.wordpress.com/198/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/spiii.wordpress.com/198/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=spiii.wordpress.com&amp;blog=21611236&amp;post=198&amp;subd=spiii&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://spiii.wordpress.com/2010/10/15/screen-reader-style-test/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/09e9086e16db4147b55f295dab8bd390?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">spiii</media:title>
		</media:content>
	</item>
		<item>
		<title>Ubuntu 10.10</title>
		<link>http://spiii.wordpress.com/2010/10/13/ubuntu-10-10/</link>
		<comments>http://spiii.wordpress.com/2010/10/13/ubuntu-10-10/#comments</comments>
		<pubDate>Tue, 12 Oct 2010 14:03:09 +0000</pubDate>
		<dc:creator>spiii</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://ultimate.benboyle.id.au/blog/?p=196</guid>
		<description><![CDATA[Ubuntu 10.10, Maverick Meerkat, was released recently. Only 10/10/2010 of course. Probably at 10:10 and 10 seconds. But not in my timezone. I&#8217;ve run ubuntu for a number of years now to power my digital TV—using the MythBuntu variant. MythTV &#8230; <a href="http://spiii.wordpress.com/2010/10/13/ubuntu-10-10/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=spiii.wordpress.com&amp;blog=21611236&amp;post=196&amp;subd=spiii&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Ubuntu 10.10, <cite>Maverick Meerkat</cite>, was released recently. Only 10/10/2010 of course. Probably at 10:10 and 10 seconds. But not in my timezone. I&#8217;ve run ubuntu for a number of years now to power my digital TV—using the MythBuntu variant. MythTV + ubuntu = tasty!</p>
<p>This time I opted to once again install ubuntu as a dual boot on my desktop. I periodically like to do this to try out the new stuff, particularly some developer and multimedia tools. Invariably I miss steam and iTunes and head back into Windows (well, I quite like Windows7 too).</p>
<p>The new user experience is getting better, although still not on par with Windows 7. Windows 7, as I recall, you can kick off, walk off, and in about 30 mins (less I think) come back to your brand new OS. I did the same with ubuntu and returned to find it waiting for confirmation of my timezone. After I sat down to answer a few questions (user details) it was pretty quick.</p>
<p>Invariably I encounter a few issues during/after install, which involve trawling forums to find possible solutions, and trying them until one works. I&#8217;ve decided to note them down this time for posterity.</p>
<table>
<caption>Issues with my Ubuntu 10.10 installation</caption>
<thead>
<tr>
<th>Issue</th>
<th>Solution</th>
</tr>
</thead>
<tbody>
<tr>
<td>Couldn&#8217;t select IDE hard disk to install on</td>
<td>Solved: had to run a command to remove/turn off/purge something to do with RAID. Drive was displayed in the list then, and install worked fine.</td>
</tr>
<tr>
<td>Couldn&#8217;t get surround sound—centre and rear speakers silent</td>
<td>Solved: had to run alsamixer in terminal and raise volume on those speakers (they were set to nothing). The volume control widget in the panel should provide volume control sliders for this—I hope this UI issue is fixed next release. Small but important touch for newbies.</td>
</tr>
<tr>
<td>Couldn&#8217;t use Win+L shortcut to lock screen</td>
<td>Solved: change keyboard shortcuts in the settings menu. Nice! (I&#8217;m sure this has caused me grief in the past.)</td>
</tr>
</tbody>
</table>
<p>All in all, it&#8217;s getting pretty good. Got my nvidia driver and advanced graphics running fine. Found Chrome on the google website and installed it easily (easier than I remember doing .deb installs before). Got a few other apps down. Had a peek at the new included video editor—another win! Gave up trying to find a video editor in linux last time I poked around. Got rhythmbox playing my iTunes library music too. Also installed a startup editor that helps manage grub, including an easy fix to make Windows 7 the default boot.</p>
<p>MythTV version has been updated so I can&#8217;t connect to the backend (holding off upgrading that, don&#8217;t want no TV troubles!). Couldn&#8217;t get facebook authorised in the Gwibber social media app either, although twitter and ping.fm are fine. Chrome and Firefox both work fine, even on Farmville! That&#8217;s come a long way since the old days of no flash on 64-bit linux.</p>
<p>So far so good!</p>
<p>Download a live CD or the wubi installer and try <a href="http://www.ubuntu.com/">ubuntu</a> yourself (no install necessary).</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/spiii.wordpress.com/196/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/spiii.wordpress.com/196/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/spiii.wordpress.com/196/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/spiii.wordpress.com/196/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/spiii.wordpress.com/196/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/spiii.wordpress.com/196/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/spiii.wordpress.com/196/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/spiii.wordpress.com/196/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/spiii.wordpress.com/196/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/spiii.wordpress.com/196/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/spiii.wordpress.com/196/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/spiii.wordpress.com/196/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/spiii.wordpress.com/196/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/spiii.wordpress.com/196/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=spiii.wordpress.com&amp;blog=21611236&amp;post=196&amp;subd=spiii&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://spiii.wordpress.com/2010/10/13/ubuntu-10-10/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/09e9086e16db4147b55f295dab8bd390?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">spiii</media:title>
		</media:content>
	</item>
	</channel>
</rss>
