<?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>i reckon</title>
	<atom:link href="http://ireckon.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://ireckon.net</link>
	<description>but i&#039;m no authority</description>
	<lastBuildDate>Tue, 06 Mar 2012 06:07:04 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>VGA video with HDMI audio on the Acer Revo</title>
		<link>http://ireckon.net/2012/03/vga-video-with-hdmi-audio-on-the-acer-revo/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=vga-video-with-hdmi-audio-on-the-acer-revo</link>
		<comments>http://ireckon.net/2012/03/vga-video-with-hdmi-audio-on-the-acer-revo/#comments</comments>
		<pubDate>Tue, 06 Mar 2012 01:06:15 +0000</pubDate>
		<dc:creator>Mathew</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[guide]]></category>
		<category><![CDATA[HTPC]]></category>
		<category><![CDATA[ION]]></category>
		<category><![CDATA[OpenELEC]]></category>
		<category><![CDATA[Revo]]></category>
		<category><![CDATA[X.Org]]></category>
		<category><![CDATA[XBMC]]></category>

		<guid isPermaLink="false">http://ireckon.net/?p=422</guid>
		<description><![CDATA[This information is for a specific setup of the Acer AspireRevo 3700 with XBMC, but it shows that there is no hardware limitation and may provide hints for achieving the same result with other models and configurations. XBMC Since 2004 my original Xbox has served as a cheap entertainment centre. Until last week it was [...]]]></description>
			<content:encoded><![CDATA[<p><em>This information is for a specific setup of the Acer AspireRevo 3700 with XBMC, but it shows that there is no hardware limitation and may provide hints for achieving the same result with other models and configurations.</em></p>
<h2>XBMC</h2>
<p>Since 2004 my original Xbox has served as a cheap entertainment centre. Until last week it was running <a title="XBMC4Xbox" href="http://www.xbmc4xbox.org/" target="_blank">XBMC4Xbox</a>, a branch of <a title="XBMC" href="http://xbmc.org/" target="_blank">XBMC</a> that has been built specifically for the console since the main project began to target newer, beefier hardware. However, the Xbox struggles with most high definition content, so to play such files I was forced to use my PS3 and the excellent <a title="PS3 Media Server" href="http://www.ps3mediaserver.org/" target="_blank">PS3 Media Server</a>.</p>
<p>As great as that software is, using the PS3 for any kind of media management after being spoiled my XBMC is a pain. I recently bit the bullet and bought a net-top computer in order to install XBMC and use it to play all of my content. I chose the <a title="Revo 3700" href="http://us.acer.com/ac/en/US/content/model/PT.SEM02.011" target="_blank">Revo 3700</a> because it ticks a number of boxes &#8211; particularly its support for VGA-out. Most similar devices have dumped this feature, making them incompatible with my Sony Wega CRT.</p>
<p>XBMC comes in a number of flavours, but a third-party Linux distribution called <a title="OpenELEC" href="http://www.openelec.tv/" target="_blank">OpenELEC</a> appealed to me because it is built from scratch specifically for XBMC. It also provides a version compiled for the ION GPU used by the Revo. This means it boots quickly, runs efficiently, and is incredibly easy to install. For most setups this would have been the end of the story, but I had a specific configuration in mind.</p>
<h2>Configuration</h2>
<p>Although I require VGA for video, my Yamaha receiver takes HDMI and I was keen to take advantage of the <a href="http://www.tested.com/news/hdmi-vs-optical-vs-analog-audio-whats-the-best-connection/632/" target="_blank">benefits</a> it has over optical audio. This is where I ran into trouble &#8211; if the HDMI cable was connected the system would assume that it was being used for video, and would switch off the VGA.</p>
<p>OpenELEC allows the user to edit the X.Org configuration by creating an <a href="http://www.x.org/releases/X11R7.6/doc/man/man5/xorg.conf.5.xhtml" title="xorg.conf" target="_blank">xorg.conf</a> file in a specific config folder. I found that I could specify that the graphics device (an NVIDIA ION2) should use the CRT display, but when I did that the HDMI would be disabled entirely &#8211; the HDMI indicator on my receiver would turn off. It seems that in order to use the HDMI audio, X needs to send HDMI video, too.</p>
<p>What I&#8217;ve done is simply enable the NVIDIA feature &#8220;TwinView&#8221;, and set its orientation option to &#8220;clone&#8221; mode. This means that the same video is being sent to both the VGA and HDMI outputs. I&#8217;ve pasted my xorg.config file below; in most setups just the Device section would suffice but I was required to flesh it out a bit more to accommodate my TV.</p>
<pre class="brush: plain; title: ; notranslate"># X.Org configuration: /storage/.config/xorg.conf

# define the mode required by the TV
Section &quot;Modes&quot;
  Identifier &quot;modes&quot;
  Modeline   &quot;1280x720&quot; 74.250 1280 1330 1370 1650 720 725 730 750 +hsync +vsync
EndSection

# define the device and enable cloning
Section &quot;Device&quot;
  Identifier &quot;device&quot;
  Driver     &quot;nvidia&quot;
  Option     &quot;TwinView&quot; &quot;true&quot;
  Option     &quot;TwinViewOrientation&quot; &quot;Clone&quot;
EndSection

# define a monitor so that we can select the custom modes
Section &quot;Monitor&quot;
  Identifier &quot;monitor&quot;
  UseModes   &quot;modes&quot;
EndSection

# define the screen and select the mode
Section &quot;Screen&quot;
  Identifier &quot;screen&quot;
  Device     &quot;device&quot;
  Monitor    &quot;monitor&quot;
  SubSection &quot;Display&quot;
    Depth      24
    Modes      &quot;1280x720&quot;
  EndSubSection
EndSection</pre>
<h2>Extras</h2>
<p>X could not retrieve the TV&#8217;s <a title="EDID" href="http://en.wikipedia.org/wiki/Extended_display_identification_data" target="_blank">EDID</a>, so I had to define a <a title="Modeline" href="http://en.wikipedia.org/wiki/XFree86_Modeline" target="_blank">modeline</a> manually. I found this by connecting my PC to the TV and using <a title="PowerStrip" href="http://entechtaiwan.com/util/ps.shtm" target="_blank">PowerStrip</a> to set my desired resolution and calibration. The software then provided the &#8220;Modeline&#8221; above.</p>
<p>Finally, in order to use the correct sound device I had to set custom values in XBMC&#8217;s audio settings. These values were provided by Therio on the OpenELEC forums:</p>
<pre class="brush: plain; title: ; notranslate">Audio output:       HDMI
Output device:      custom -&gt; plughw:1,7
Passthrough device: custom -&gt; plughw:1,7</pre>
<p>Everything is now working perfectly.</p>
]]></content:encoded>
			<wfw:commentRss>http://ireckon.net/2012/03/vga-video-with-hdmi-audio-on-the-acer-revo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What the Brownlow Medal isn&#8217;t</title>
		<link>http://ireckon.net/2010/09/what-the-brownlow-medal-isnt/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=what-the-brownlow-medal-isnt</link>
		<comments>http://ireckon.net/2010/09/what-the-brownlow-medal-isnt/#comments</comments>
		<pubDate>Tue, 21 Sep 2010 14:04:43 +0000</pubDate>
		<dc:creator>Mathew</dc:creator>
				<category><![CDATA[Sport]]></category>
		<category><![CDATA[aaron sandilands]]></category>
		<category><![CDATA[afl]]></category>
		<category><![CDATA[aflca]]></category>
		<category><![CDATA[brownlow]]></category>
		<category><![CDATA[carlton]]></category>
		<category><![CDATA[chris judd]]></category>
		<category><![CDATA[collingwood]]></category>
		<category><![CDATA[dane swan]]></category>
		<category><![CDATA[eddie mcguire]]></category>
		<category><![CDATA[gary ablett]]></category>
		<category><![CDATA[joel selwood]]></category>
		<category><![CDATA[luke hodge]]></category>
		<category><![CDATA[voting]]></category>

		<guid isPermaLink="false">http://ireckon.net/?p=363</guid>
		<description><![CDATA[So, Chris Judd has won the 2010 Brownlow Medal over the favoured Dane Swan, and some people aren't very happy about it. I reckon this is because they misunderstand what the award is. It's not necessarily given to the best player of the year.]]></description>
			<content:encoded><![CDATA[<p>So, <a href="https://secure.wikimedia.org/wikipedia/en/wiki/Chris_Judd">Chris Judd</a> has won the 2010 <a href="https://secure.wikimedia.org/wikipedia/en/wiki/Brownlow_Medal">Chas Brownlow Trophy</a>, and some people aren&#8217;t very happy about it. I reckon this is because they misunderstand what the award is.</p>
<h4>The Brownlow Medal</h4>
<ul>
<li><strong>is</strong> an award given to an AFL player in recognition of a good season. It&#8217;s considered to be the highest individual award in the competition, which is more due to its history and status (not to mention how much the media loves to pump it up) than any other consideration.</li>
</ul>
<ul>
<li><strong>isn&#8217;t</strong> an accurate indication of the &#8220;best&#8221; player of the year. The winner is always among the best players and in some years we might agree that the winner was the very best, but that&#8217;s not too often.</li>
</ul>
<p>Chris Judd is a champion and his great year has been recognised. Good, he deserves it. I&#8217;ve always been a critic of the Brownlow, though &#8211; not of the medal itself, but of what it&#8217;s held up to be. Footy followers think that it should always be awarded to the best player of the year (and they always claim know who that player is!) but there are two big problems that hinder it from happening.</p>
<h4>Problem 1: The umpires cast the votes</h4>
<p>The umpires have a lot to do during a match, and they spend most of it chasing after the ball. Consequently they see a lot of action from the midfielders, and may miss some of the more subtle parts of the game. They also have a different interest in the game than the average viewer, and they&#8217;re charged with finding the &#8220;fairest and best&#8221; player of the match, so they probably take things other than sheer brilliance into account. Finally, the Brownlow is an individual medal in a team game, which is  always  problematic. Individual skill needs to be recognised, but I think the  way they execute their team plan should also be considered, and the umpire can&#8217;t  possibly  judge that.</p>
<h4>Problem 2: It has a poor voting system</h4>
<p>At the end of a game, the umpires allocate their 3-2-1 votes to three separate players. This is the case regardless of whether a match is marked by a big team effort, or whether a few players did all the work. There aren&#8217;t enough votes to go around &#8211; some good players miss out entirely, and sometimes three votes aren&#8217;t enough to measure the influence a player had on the game.</p>
<h4>The Solution</h4>
<p>We already have an award that does a pretty good job of finding the best player of the year, and it&#8217;s the <em><a href="http://aflca.com.au/">AFL Coaches Association</a> Champion Player of the Year</em>. What makes this award so good is that it addresses both of the above problems. It&#8217;s voted by the coaches, who have the perfect understanding of how well each player filled their given role. They also know which opposition players caused them the most problems. Although the flashier players will usually still get more votes, this opens it up a little more to the less glamorous roles, like defenders.</p>
<p>It also has a reasonable scoring system. Each coach picks five players to award votes on a 5-4-3-2-1 scale. That&#8217;s a total of thirty votes between the two coaches. Sometimes the two coaches&#8217; choices overlap, sometimes not. The high scoring system separates the best from the rest in a more definite way than the lower-scored Brownlow. It&#8217;s still not ideal, but it&#8217;s an improvement. It did a good job at ranking the best players this year:</p>
<blockquote><p><strong>2010 AFLCA Champion Player of the Year</strong><br />
114 &#8211; <a href="https://secure.wikimedia.org/wikipedia/en/wiki/Dane_Swan">Dane Swan</a> (Collingwood)<br />
88 &#8211; <a href="https://secure.wikimedia.org/wikipedia/en/wiki/Luke_Hodge">Luke Hodge</a> (Hawthorn)<br />
80 &#8211; <a href="https://secure.wikimedia.org/wikipedia/en/wiki/Joel_Selwood">Joel Selwood</a> (Geelong)<br />
75 &#8211; <a href="https://secure.wikimedia.org/wikipedia/en/wiki/Aaron_Sandilands">Aaron Sandilands</a> (Fremantle)<br />
71 &#8211; <a href="https://secure.wikimedia.org/wikipedia/en/wiki/Chris_Judd">Chris Judd</a> (Carlton)<br />
70 &#8211; <a href="https://secure.wikimedia.org/wikipedia/en/wiki/Gary_Ablett,_Jr.">Gary Ablett</a> (Geelong)</p></blockquote>
<p>But even the AFLCA put Judd in the top five for 2010, so those who claimed that Judd didn&#8217;t even deserve to make the <a href="https://secure.wikimedia.org/wikipedia/en/wiki/2010_All-Australian_team">All-Australian team</a> can get stuffed.</p>
<h4>Sad face</h4>
<p>The stature of the Brownlow drowns out the other awards, and so everyone &#8211; the public, the media, the players &#8211; puts their faith in the Brownlow and demands that it be awarded to the clear player of the year. We don&#8217;t always see eye-to-eye on who that player is, but in 2010 everyone seems to agree that it was <a href="https://secure.wikimedia.org/wikipedia/en/wiki/Dane_Swan">Dane Swan</a>, so the knockers have been more vocal than usual. Swan did have a great year, and Brownlow night must have been a terrible let-down given that the media had already awarded it to him. But that doesn&#8217;t make Judd any less a champion: he had a great year, and he deserves his award. It&#8217;s a shame to see people attacking him with their <a href="http://ireckon.net/uploads/2010/09/eddiebrownlow.jpg">disappointment</a>.</p>
<p>The Brownlow simply isn&#8217;t the award that the public wants it to be. It awards something unique &#8211; something you can&#8217;t quite <a href="http://ireckon.net/uploads/2010/09/pressurepoint.jpg">put your finger on</a> &#8211; and it would be great if people recognised and appreciated that. It would also be great if the coaches award was elevated to a higher importance to fill the &#8220;best player&#8221; void. The TV networks wouldn&#8217;t go much on it &#8211; the count would probably be decided earlier in the evening and the winner would rarely be a surprise &#8211; but the public would get the result they want. And maybe they&#8217;d stop knocking champions for their success.</p>
<p>But that probably won&#8217;t happen as long as there are Collingwood supporters.</p>
]]></content:encoded>
			<wfw:commentRss>http://ireckon.net/2010/09/what-the-brownlow-medal-isnt/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Converting .wtv to .mpg in Windows 7</title>
		<link>http://ireckon.net/2009/10/converting-wtv-to-mpg-in-windows-7/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=converting-wtv-to-mpg-in-windows-7</link>
		<comments>http://ireckon.net/2009/10/converting-wtv-to-mpg-in-windows-7/#comments</comments>
		<pubDate>Sun, 18 Oct 2009 06:26:54 +0000</pubDate>
		<dc:creator>Mathew</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[conversion]]></category>
		<category><![CDATA[dvr-ms]]></category>
		<category><![CDATA[ffmpeg]]></category>
		<category><![CDATA[mpeg]]></category>
		<category><![CDATA[mpeg2]]></category>
		<category><![CDATA[mpg]]></category>
		<category><![CDATA[PlayStation]]></category>
		<category><![CDATA[PS3 Media Centre]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[wtv]]></category>
		<category><![CDATA[WTVConverter]]></category>

		<guid isPermaLink="false">http://ireckon.net/?p=280</guid>
		<description><![CDATA[Batch conversion of WTV files to MPEG2 for better performance on the PlayStation 3.]]></description>
			<content:encoded><![CDATA[<p>I use a PlayStation 3 to watch TV programmes recorded in Windows 7.  The media sharing functionality in 7 is much better than in Vista, and it&#8217;s quite simple to share the Recorded TV folder and watch .wtv files on the PS3. However, I prefer to convert the .wtv files to .mpg, and use the excellent <a href="http://ps3mediaserver.org/" target="_blank">PS3 Media Centre</a> to serve them.  In my experience, .wtv files on the PS3 are:</p>
<ul>
<li>Slow: I find that fast-forwarding or using the &#8220;scene search&#8221; functionality lags much more than when watching .mpg files.</li>
<li>Not pretty: To my eye, .wtv files are blockier (on the PS3) than the .mpgs I create.</li>
<li>Bigger: 3.5 hours of HD Sunday Night Football creates a .wtv file of around 20GB. After converting to .mpg the file is about 18GB. This is trivial with the cost of storage at the moment, but it&#8217;s interesting nonetheless.</li>
</ul>
<p>The WTV format is relatively new, having replaced the DVR-MS format that Windows used previously. Windows 7 provides the functionality to convert .wtv files &#8220;back&#8221; to .dvr-ms files, and to do so is as easy as right-clicking the source file and selecting &#8220;Convert to dvr-ms Format&#8221;. This is crucial functionality since, while WTV is completely new, DVR-MS is based on the well-known ASF format. This makes it easy to retrieve the core MPEG2 data.</p>
<p>To produce a .mpg file from a .dvr-ms file, we can use <a href="http://ffmpeg.arrozcru.org/builds/" target="_blank">ffmpeg</a> from the command line:</p>
<pre class="brush: plain; title: ; notranslate">ffmpeg.exe -y -i &quot;showname.dvr-ms&quot; -vcodec copy -acodec copy -f dvd &quot;showname.mpg&quot;</pre>
<p>Here are the options explained (taken from ffmpeg&#8217;s documentation):</p>
<pre class="brush: plain; title: ; notranslate">-y                  overwrite output files
-i filename         input file name
-vcodec codec       force video codec ('copy' to copy stream)
-acodec codec       force audio codec ('copy' to copy stream)
-f fmt              force format</pre>
<p>Essentially I&#8217;m telling ffmpeg to copy the audio and video streams just as they are, and to put them into DVD format (MPEG2). It doesn&#8217;t perform any re-encoding, so it quickly produces a nice .mpg file that plays natively and perfectly on my PS3.</p>
<p>I quickly tired of having to complete a two-step process  to watch a TV show, and I wrote a batch script to do the lot at once. For each .wtv file in my Recorded TV folder, it will:</p>
<ul>
<li>Create a temporary .dvr-ms file from the .wtv file (using the core WTVConverter program provided by Windows 7)</li>
<li>Create a .mpg file from the .dvr-ms file (using ffmpeg)</li>
<li>Delete the .dvr-ms file</li>
<li>Move the .mpg file to a different directory</li>
</ul>
<p>To use this script just paste it into a .bat file and change the paths accordingly. You shouldn&#8217;t need to change the value of wtvconv.</p>
<pre class="brush: plain; title: ; notranslate">@echo off

set recordedtv=&quot;D:\Recorded TV\&quot;
set destfolder=&quot;D:\taped\&quot;
set ffmpeg=&quot;C:\programs\ffmpeg\ffmpeg.exe&quot;
set wtvconv=&quot;C:\Windows\ehome\WTVConverter.exe&quot;

for %%f in (%recordedtv%*.wtv) do (
%wtvconv% &quot;%%f&quot; &quot;%%f.dvr-ms&quot;
%ffmpeg% -y -i &quot;%%f.dvr-ms&quot; -vcodec copy -acodec copy -f dvd &quot;%%f.mpg&quot;
del &quot;%%f.dvr-ms&quot;
move &quot;%%f.mpg&quot; %destfolder%
)</pre>
<p>I have thought about having it delete the .wtv files, too, but I prefer to check that the conversion has worked before deleting them manually. On rare occasions the process has failed with no explanation, but simply running it again has done the trick.</p>
<p>A couple of caveats, now. I have found that recent versions of ffmpeg sometimes fail during conversion with &#8220;<em>error, non-monotone timestamps.</em>&#8221; I found a solution from <a href="http://multidisciplinary.wordpress.com/2008/12/19/convert-dvr-ms-to-mpg-using-ffmpeg/" target="_blank">another blogger</a>, who suggested downloading an older version from <a href="http://babgvant.com/files/folders/misc/entry4997.aspx" target="_blank">here</a>. I don&#8217;t know why or how, but this works for me.</p>
<p>Secondly &#8211; and seemingly only when converting high-def video &#8211; ffmpeg sometimes complains, &#8220;<em>packet too large, ignoring buffer limits to mux it</em>&#8220;, yet still appears to do the job correctly. I assume that this has something to do with the default buffer size used in DVD creation, but I haven&#8217;t found a way to fix it. It doesn&#8217;t seem to cause any problems, but for completeness&#8217; sake I&#8217;d like the solution. Please let me know if you can help!</p>
<p>Finally, I anticipate the question, &#8220;why don&#8217;t you just use a program that records directly to .mpg?&#8221; Well, I have. I&#8217;ve used <a href="http://www.gbpvr.com/" target="_blank">GB-PVR</a>, for example, and combined it with a variety of multiplexers. To my eyes the quality has never matched the output produced by Windows Media Centre. This has more to do with the multiplexers than the application, of course, but I also prefer using Media Centre to browse and schedule recordings. This is the best solution I&#8217;ve found to suit my preferences (so far).</p>
]]></content:encoded>
			<wfw:commentRss>http://ireckon.net/2009/10/converting-wtv-to-mpg-in-windows-7/feed/</wfw:commentRss>
		<slash:comments>22</slash:comments>
		</item>
		<item>
		<title>The Ashes urn is not a trophy</title>
		<link>http://ireckon.net/2009/08/the-ashes-urn-is-not-a-trophy/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=the-ashes-urn-is-not-a-trophy</link>
		<comments>http://ireckon.net/2009/08/the-ashes-urn-is-not-a-trophy/#comments</comments>
		<pubDate>Wed, 05 Aug 2009 06:09:11 +0000</pubDate>
		<dc:creator>Mathew</dc:creator>
				<category><![CDATA[Sport]]></category>
		<category><![CDATA[ashes]]></category>
		<category><![CDATA[australia]]></category>
		<category><![CDATA[cricket]]></category>
		<category><![CDATA[england]]></category>
		<category><![CDATA[mcc]]></category>
		<category><![CDATA[trophy]]></category>
		<category><![CDATA[urn]]></category>

		<guid isPermaLink="false">http://ireckon.net/?p=171</guid>
		<description><![CDATA[The much-celebrated urn was a private gift to former English captain Ivo Bligh. The misconception that it is a trophy for the test series is relatively recent.]]></description>
			<content:encoded><![CDATA[<p>Whenever Australia wins or retains <a href="http://en.wikipedia.org/wiki/The_Ashes" target="_blank">the Ashes</a>, people call for &#8220;the urn&#8221; to be sent home with the team, believing it to be a trophy. It&#8217;s an understandable assumption, but the urn&#8217;s history shows that they are incorrect.</p>
<p><a href="http://ireckon.net/uploads/2009/08/sportingtimes.jpg" target="_blank"><img class="alignleft size-thumbnail wp-image-210" style="margin-left: 10px; margin-right: 10px;" title="The Sporting Times 02/09/1882 (The Ashes)" src="http://ireckon.net/uploads/2009/08/sportingtimes-150x150.jpg" alt="The Sporting Times 02/09/1882 (The Ashes)" width="159" height="150" /></a></p>
<p>Most cricket fans know the story &#8211; after Australia beat England in an 1882 test match, a mock obituary appeared in <a href="http://en.wikipedia.org/wiki/The_Sporting_Times" target="_blank"><em>The Sporting Times</em></a> &#8220;in Affectionate Remembrance of English Cricket&#8221;. The final line of the obituary reads, &#8220;The body will be cremated and the Ashes taken to Australia&#8221;. Thus began one of the most enduring sports legends.</p>
<p>The obituary was a great joke, and English captain <a href="http://en.wikipedia.org/wiki/Ivo_Bligh,_8th_Earl_of_Darnley" target="_blank">Ivo Bligh</a> (later to become Lord Darnley) declared that he&#8217;d regain &#8220;the Ashes&#8221; when England toured Australia in 1882-83. He referred to &#8220;the Ashes&#8221; several times during the tour, and the Australian media ran with it. The term then fell out of use for twenty years before being cemented by English captain <a href="http://en.wikipedia.org/wiki/Plum_Warner" target="_blank">Plum Warner</a> when he published <em>How We Recovered The Ashes</em> in 1903.</p>
<p>The Ashes legend was forty-five years old when the general public became aware of a certain urn. The following poem, appearing in The Cricketers Annual in 1925, indicates as much:</p>
<blockquote><p>So here’s to <a href="http://en.wikipedia.org/wiki/Percy_Chapman" target="_blank">Chapman</a>, <a href="http://en.wikipedia.org/wiki/Patsy_Hendren" target="_blank">Hendren</a> and <a href="http://en.wikipedia.org/wiki/Jack_Hobbs" target="_blank">Hobbs</a>,<br />
<a href="http://en.wikipedia.org/wiki/Arthur_Gilligan" target="_blank">Gilligan</a>, <a href="http://en.wikipedia.org/wiki/Frank_Woolley" target="_blank">Woolley</a> and <a href="http://en.wikipedia.org/wiki/J._W._Hearne" target="_blank">Hearne</a>:<br />
May they bring back to the Motherland,<br />
The ashes which have no urn!</p></blockquote>
<p>(For the record, England <a href="http://en.wikipedia.org/wiki/English_cricket_team_in_Australia_in_1924%E2%80%9325" target="_blank">was thumped</a> 4-1.)</p>
<p>In 1927 Florence Bligh, widow of Ivo Bligh, gave the <a href="http://en.wikipedia.org/wiki/Marylebone_Cricket_Club" target="_blank">Marylebone Cricket Club</a> a small terracotta urn that had been given to her husband some years prior. Although the details are disputed it is believed that a group of Victorian women, picking up on the &#8220;ashes&#8221; term used by the media, awarded him the urn after England&#8217;s series victory in 1883.</p>
<p>The urn was a personal gift to Bligh, and was later a personal gift to the MCC. It is known as the &#8220;Darnley urn&#8221; to distinguish it from other, less celebrated urns that have surfaced over the years.</p>
<p>The Darnley urn was kept in the Long Room at <a href="http://en.wikipedia.org/wiki/Lord%27s_Cricket_Ground" target="_blank">Lord&#8217;s</a> until 1953, when it was moved to the MCC Museum at the same ground. Its prominence has led many to assume that the test series is named for it alone, and they believe it to be the trophy.  The Ashes, however, are metaphorical. It is an idea created by <em>The Sporting Times,</em> and one which grew in stature as it collected more stories. The Darnley urn is just one of those stories.</p>
<p><a href="http://ireckon.net/uploads/2009/08/darnleyurn.jpg" target="_blank"><img class="size-medium wp-image-211  alignright" style="margin-left: 10px; margin-right: 10px;" title="The Darnley Urn" src="http://ireckon.net/uploads/2009/08/darnleyurn-192x300.jpg" alt="The Darnley Urn" width="192" height="300" /></a></p>
<p>No doubt there are those who would read this and say, &#8220;so what?&#8221; Despite the history, they would claim that the Darnley urn has come to represent the Ashes for most people and should therefore be considered a trophy. I do not agree.</p>
<p>The urn is delicate and belongs in a museum so that it can be correctly maintained. The MCC respected the wishes of the Australian public and created a large replica trophy of Waterford Crystal to award to victorious teams. If we must have a trophy, this is more suitable than a 125-year-old terracotta artefact.</p>
<p>I don&#8217;t understand the attraction to trophies. I believe that the idea is more compelling than a trophy could ever be. <em>The death of English cricket!</em> What a notion! Since 1882 we&#8217;ve been playing tests to either regain England&#8217;s honour, or to rub her nose in it some more (depending on whose side you&#8217;re on). How simply marvellous. I doubt I&#8217;ll convince many of my fellow Australians to come around to my way of thinking; we&#8217;re too fixated on the physical, on ownership, on possession. If people know the history, though, we can debate these last points alone.</p>
]]></content:encoded>
			<wfw:commentRss>http://ireckon.net/2009/08/the-ashes-urn-is-not-a-trophy/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Australian copyright law is ridiculous</title>
		<link>http://ireckon.net/2009/07/australian-copyright-law-is-ridiculous/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=australian-copyright-law-is-ridiculous</link>
		<comments>http://ireckon.net/2009/07/australian-copyright-law-is-ridiculous/#comments</comments>
		<pubDate>Mon, 27 Jul 2009 13:12:44 +0000</pubDate>
		<dc:creator>Mathew</dc:creator>
				<category><![CDATA[Government]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[australia]]></category>
		<category><![CDATA[blu-ray]]></category>
		<category><![CDATA[cd]]></category>
		<category><![CDATA[copyright]]></category>
		<category><![CDATA[copyright amendment act]]></category>
		<category><![CDATA[drm]]></category>
		<category><![CDATA[dvd]]></category>
		<category><![CDATA[format-shift]]></category>
		<category><![CDATA[space-shift]]></category>
		<category><![CDATA[time-shift]]></category>

		<guid isPermaLink="false">http://ireckon.net/?p=67</guid>
		<description><![CDATA[Australian copyright law allows commercial CDs to be format-shifted (copied), but not DVDs or Blu-ray discs. Why?]]></description>
			<content:encoded><![CDATA[<p>For a number of years it was illegal for an Australian to tape the footy and watch it later. At one time it was also illegal to copy music from a CD and onto an iPod. This sort of innocuous activity (known as <em>format-shifting</em>) was eventually permitted by amendments to the <a href="http://www.comlaw.gov.au/ComLaw/Management.nsf/lookupindexpagesbyid/IP200401428?OpenDocument" target="_blank">Copyright Act 1968</a>. Mostly.</p>
<p>By<strong> Schedule 6, Part 2</strong><em> </em>of the <a href="http://www.comlaw.gov.au/ComLaw/Legislation/Act1.nsf/0/C8E557D7AAAED1F2CA257242000CE35D?OpenDocument" target="_blank">Copyright Amendment Act 2006</a>, <em>&#8220;Reproducing copyright material in different format for private use&#8221;</em>, the following activities are allowed:</p>
<ul>
<li><strong>&#8220;Recording broadcasts for replaying at more convenient time</strong>&#8221; (such as taping the footy)</li>
<li><strong>&#8220;Reproducing works in books, newspapers and periodical publications in different form for private use&#8221;</strong> (such as photocopying an article)</li>
<li><strong>&#8220;Reproducing photograph in different format for private use&#8221;</strong> (scanning a hard-copy photo or printing out a digital photo)</li>
<li><strong>&#8220;Copying sound recordings for private and domestic use&#8221;</strong> (ripping a CD onto an iPod)</li>
<li><strong>&#8220;Copying cinematograph film in different format for private use&#8221;</strong> (coping a film from a VHS tape onto a DVD)</li>
</ul>
<p>There is a glaring omission here &#8211; films on DVD and BD (blu-ray disc) are not mentioned. It&#8217;s still illegal to copy a film from a commercial DVD to another format or to another disc, even solely for your own use. If you have a portable video player (like an iPod or an iPhone) it&#8217;s illegal for you to rip films onto it. You are legally bound to watch the film through a DVD player.</p>
<p>Parents with young children might think to create a backup of their <em>Spongebob Squarepants</em> DVD, hiding the purchased copy safely out of the way lest their kids accidentally scratch or snap it. Some people may own <a href="http://en.wikipedia.org/wiki/Home_theater_PC" target="_blank">home theatre PCs</a>, and would like to copy their DVDs to its hard drive, allowing them to browse and play their entire collection from one location. Unfortunately, these are both illegal. When we buy a film on DVD we buy the right to watch it <em>only </em>via that DVD.</p>
<p>The law obviously recognises the value of format-shifting. It understands that there ought to be exceptions to copyright &#8211; for reasons of convenience, practicality, or protection of works &#8211; as long as it doesn&#8217;t hurt the copyright holder. It acknowledges that private use does not adversely affect the copyright holder&#8217;s capacity to make a buck (as might be the case if you were to sell bootleg copies). The law therefore allows us to put songs on our iPods, and I can&#8217;t see why it should be any different with DVDs or BDs. Surely the same principle should apply?</p>
<p>Perhaps it has something to do with the support that Apple&#8217;s iTunes enjoys from numerous music labels, and the lack of an equivalent service for films. One suspects that we wouldn&#8217;t have been allowed to rip CDs, either, if not for the existence of iPods.</p>
<p>It&#8217;s certainly not an oversight, because the Act drives the point home. DVDs and BDs often include some kind of <a href="http://en.wikipedia.org/wiki/Digital_rights_management" target="_blank">digital rights management</a> (DRM), to prevent us from copying our own discs. In <strong>Schedule 6, Part 2, Subdivision F</strong> of the <a href="http://www.comlaw.gov.au/ComLaw/Legislation/Act1.nsf/0/C8E557D7AAAED1F2CA257242000CE35D?OpenDocument" target="_blank">Copyright Amendment Act 2006</a>, &#8220;removing or altering electronic rights management information&#8221; is listed as in indictable offence (unless you have the permission of the copyright holder). Not only do the film studios block people from copying their films for private use, the Act gives their DRM mechanisms legal protection.</p>
<p>The difference between the private use rights of CDs and DVDs is inexplicable. My conclusion is that copyright law (or parts of it) is dictated by the big players in the film and music industries. In the words of <a href="http://twitter.com/twoscomplement" target="_blank">a friend</a>, &#8220;the people with the money and intent write the laws.&#8221; This is an unfortunate situation. <a href="http://en.wikipedia.org/wiki/Copyright" target="_blank">Copyright</a> exists to protect innovation, not to ensure that media conglomerates can sell the same person the same work again and again and again.</p>
<p>A reasonable person would have no moral or ethical problem with format-shifting media they&#8217;ve already bought. The Act itself acknowledges this by the way it treats CDs. That the same principle hasn&#8217;t been applied to other forms of optical media is disgraceful, as it suggests that film studios had their hands in the legislation.</p>
<p><em>For more information check out the <a href="http://www.copyright.org.au/information/cit004/wp0058" target="_blank">fact sheets</a> provided by the Australian Copyright Council.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://ireckon.net/2009/07/australian-copyright-law-is-ridiculous/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Unbricking a Seagate Barracuda</title>
		<link>http://ireckon.net/2009/05/unbricking-a-seagate-barracuda/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=unbricking-a-seagate-barracuda</link>
		<comments>http://ireckon.net/2009/05/unbricking-a-seagate-barracuda/#comments</comments>
		<pubDate>Wed, 13 May 2009 12:22:13 +0000</pubDate>
		<dc:creator>Mathew</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[7200.11]]></category>
		<category><![CDATA[BSY]]></category>
		<category><![CDATA[firmware]]></category>
		<category><![CDATA[hard drive]]></category>
		<category><![CDATA[hdd]]></category>
		<category><![CDATA[photos]]></category>
		<category><![CDATA[seagate]]></category>
		<category><![CDATA[unbrick]]></category>

		<guid isPermaLink="false">http://ireckon.net/?p=8</guid>
		<description><![CDATA[Unbricking a Seagate Barracuda 7200.11 hard drive that is afflicted with the BSY firmware error.]]></description>
			<content:encoded><![CDATA[<p>Recently, one of my hard disks &#8216;disappeared&#8217; from my computer &#8211; it was not being detected in the BIOS. It turned out that this was a known issue with my drive, and one for which Seagate had released a <a href="http://seagate.custkb.com/seagate/crm/selfservice/news.jsp?DocId=207931&amp;NewLang=en" target="_blank">firmware update</a>.</p>
<p>Unfortunately, the update could only be applied to functioning drives. Seagate will apply the fix to bricked drives for free, but I was reluctant to send my drive to them because I didn&#8217;t want to give strangers access to my personal information. I wanted to do it myself.</p>
<p>After a bit of a search I came across this <a href="http://www.msfn.org/board/index.php?showtopic=128807" target="_blank">enormous thread</a>. The first post has changed quite a bit since I first saw it &#8211; it initially contained a lot of true and false information, and the same followed in the rest of the thread. I spent some time cross-referencing the various opinions and experiences, and finally managed to unbrick my drive.</p>
<p>I had intended to provide a how-to here but I have since discovered that someone has <a href="http://sites.google.com/site/seagatefix/Home" target="_blank">already done it</a>. What I did was pretty much the same as the author of that guide, except that I used a USB cable instead of a serial adapter.</p>
<p>I found myself a Nokia data cable (DKU-5) and cut off the phone end. With the help of a multimeter I determined which wires were used for transmit, receive and ground, and connected them to some wires I cut off an internal CD-ROM cable. These wires were attached to jumper pins, which I was able to slot into the hard disk. The USB end plugged into my computer, and I was able to connect to my hard disk via <a href="http://www.chiark.greenend.org.uk/~sgtatham/putty/" target="_blank">putty</a>.</p>
<p>Apart from that, the steps I followed are identical to the guide above. I don&#8217;t recommend that people do it &#8211; if you have this problem and aren&#8217;t wearing a tinfoil hat, send it back to Seagate to safely recover your data.</p>
<p>Here are a few photos that I took during the operation.</p>

<a href='http://ireckon.net/2009/05/unbricking-a-seagate-barracuda/removecard/' title='Card on'><img width="150" height="150" src="http://ireckon.net/uploads/2009/05/removecard-150x150.jpg" class="attachment-thumbnail" alt="Removing the PCB board" title="Card on" /></a>
<a href='http://ireckon.net/2009/05/unbricking-a-seagate-barracuda/cardoff/' title='Card off'><img width="150" height="150" src="http://ireckon.net/uploads/2009/05/cardoff-150x150.jpg" class="attachment-thumbnail" alt="Board removed" title="Card off" /></a>
<a href='http://ireckon.net/2009/05/unbricking-a-seagate-barracuda/multimeter/' title='Multimeter'><img width="150" height="150" src="http://ireckon.net/uploads/2009/05/multimeter-150x150.jpg" class="attachment-thumbnail" alt="Checking which wires are which." title="Multimeter" /></a>
<a href='http://ireckon.net/2009/05/unbricking-a-seagate-barracuda/thetools/' title='Tools'><img width="150" height="150" src="http://ireckon.net/uploads/2009/05/thetools-150x150.jpg" class="attachment-thumbnail" alt="The full kit" title="Tools" /></a>
<a href='http://ireckon.net/2009/05/unbricking-a-seagate-barracuda/underdesk/' title='Under the desk'><img width="150" height="150" src="http://ireckon.net/uploads/2009/05/underdesk-150x150.jpg" class="attachment-thumbnail" alt="The mess" title="Under the desk" /></a>

]]></content:encoded>
			<wfw:commentRss>http://ireckon.net/2009/05/unbricking-a-seagate-barracuda/feed/</wfw:commentRss>
		<slash:comments>37</slash:comments>
		</item>
	</channel>
</rss>

