<?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>if it&#039;s owən</title>
	<atom:link href="http://owened.net/feed" rel="self" type="application/rss+xml" />
	<link>http://owened.net</link>
	<description>it&#039;s probably awesome</description>
	<lastBuildDate>Sun, 07 Mar 2010 07:41:51 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Fixing things&#8230;</title>
		<link>http://owened.net/2010/03/07/fixing-things</link>
		<comments>http://owened.net/2010/03/07/fixing-things#comments</comments>
		<pubDate>Sun, 07 Mar 2010 07:41:51 +0000</pubDate>
		<dc:creator>Owen</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://owened.net/?p=670</guid>
		<description><![CDATA[So, a while back I set up my MythTV system to use PulseAudio because I thought that&#8217;s what I needed to get mulitple audio outputs happening on my HTPC. Turns out I was wrong. You see, ALSA is perfectly fine for software mixing. Even though I&#8217;m still not sure whether I actually need to use [...]]]></description>
			<content:encoded><![CDATA[<p>So, a while back I set up my MythTV system to use PulseAudio because I thought that&#8217;s what I needed to get mulitple audio outputs happening on my HTPC. Turns out I was wrong. You see, ALSA is perfectly fine for software mixing. Even though I&#8217;m still not sure whether I actually need to use software mixing, it&#8217;s what&#8217;s working for me at the moment.</p>
<p>The troubles I had with PulseAudio were numerous, and I should really have figured this out sooner, though I think I was too lazy to really think about it properly. I had setup PulseAudio with mpd; that was easy. With MythTV it wasn&#8217;t so easy. MythTV doesn&#8217;t support PA, and rightly so: compared to ALSA, for what MythTV wants to get done, PA plainly sucks. PA does not support AC3/Dolby Digital/DTS passthrough. PA also adds a lot of latency to the audio &#8211; depending on your hardware of course. On my system it was somewhere in the range of 100ms, or a little more. Which was too much for my A/V receivers built-in A/V sync function to deal with, anyway. The result of this? Any audio I got out of MythTV through PA to my A/V receiver worked normally ~80% of the time (though only stereo, so no DVD audio or 5.1 from digital television). The other 20% of the time, you&#8217;d get no audio at all, or you&#8217;d get extremely loud static hissing. It wasn&#8217;t very pleasant. All my Linux-bashing friends made sure to note this problem each and every time it occured while they were trying to watch something on my HTPC.</p>
<p>No more! The solution I have found is simple. After doing a little bit of reading and copying and pasting, ALSA is now correctly configured to handle AC3/DTS passthrough AND all other audio. The only drawback that I can see, which really isn&#8217;t that bad at all, is that MythTV cannot be in playback mode while mpd is trying to output, and vice-versa. I can&#8217;t think of a usecase of wanting to have music playing while a television show is on, so that&#8217;s OK by me.</p>
<p>I&#8217;ll dump my various config files below for future reference.</p>
<p>/etc/asound.conf</p>
<blockquote><p>pcm.dmixer {<br />
    type dmix<br />
    ipc_key 1024<br />
    ipc_key_add_uid false<br />
    ipc_perm 0666                       # mixing for all users<br />
    slave {<br />
        pcm &#8220;hw:0,1&#8243;<br />
        period_time 0<br />
        period_size 1024<br />
        buffer_size 8192<br />
        rate 44100<br />
    }<br />
    bindings {<br />
        0 0<br />
        1 1<br />
    }<br />
}</p>
<p>pcm.dsp0 {<br />
    type plug<br />
    slave.pcm &#8220;dmixer&#8221;<br />
}</p>
<p>pcm.!default {<br />
    type plug<br />
    slave.pcm &#8220;dmixer&#8221;<br />
}</p>
<p>pcm.default {<br />
   type plug<br />
   slave.pcm &#8220;dmixer&#8221;<br />
}</p>
<p>ctl.mixer0 {<br />
    type hw<br />
    card 0<br />
}
</p></blockquote>
<p>/etc/mpd.conf is simple:</p>
<blockquote><p>
audio_output {<br />
        type            &#8220;alsa&#8221;<br />
        name            &#8220;My ALSA Device&#8221;<br />
}
</p></blockquote>
<p>And my MythTV settings:</p>
<blockquote><p>Audio output device: ALSA:default<br />
Speakers configuration: 5.1<br />
Upconvert stereo to 5.1 surround (unticked; this is at your preference however)<br />
Digital output device: ALSA:iec958:{ AES0 0&#215;02 } (autodetected/populated by MythTV, yours should be too, otherwise use &#8216;aplay -l&#8217; on commandline to get your device name/number)<br />
Dolby Digital and DTS boxes both ticked<br />
Advanced Audio Configuration ticked; Overried SRC quality ticked, Sample Rate Conversion: best<br />
Aggressive Sound card buffering ticked</p></blockquote>
<p>The other issue I had with MythTV which I fixed today was that the menu button on my remote never seemed to work. I was puzzled and hunted through my MythTV lircrc. This is another thing which I&#8217;ve been wanting to fix for ages but never really put any effort into. The fix, again, was simple: the autogenerated lircrc file for MythTV had two identical entries for what MythTV was meant to do when the menu button was pushed. Erasing the duplicate entry in the file made it work. Wha-la!</p>
<p>And all this greatness achieved while being severely hungover. It&#8217;s amazing what you can do when you put your mind to it.</p>
]]></content:encoded>
			<wfw:commentRss>http://owened.net/2010/03/07/fixing-things/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Censorship on music can GET FUCKEDY FUCK FUCKED IN THE FUCKING ARSE WITH A FUCKING FUCK STICK! FUCK!!!!!!!!!</title>
		<link>http://owened.net/2010/02/27/censorship-on-music-can-get-fuckedy-fuck-fucked-in-the-fucking-arse-with-a-fucking-fuck-stick-fuck</link>
		<comments>http://owened.net/2010/02/27/censorship-on-music-can-get-fuckedy-fuck-fucked-in-the-fucking-arse-with-a-fucking-fuck-stick-fuck#comments</comments>
		<pubDate>Sat, 27 Feb 2010 11:38:31 +0000</pubDate>
		<dc:creator>Owen</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Annoyed]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[Rants]]></category>

		<guid isPermaLink="false">http://owened.net/?p=668</guid>
		<description><![CDATA[Ugh. I bought a three-pack of Korn albums in a music store a while ago, then I ripped them and forgot about them. Tonight, I think to myself, &#8220;ah, a bit of Korn for something different&#8221; &#8211; I&#8217;m listening to &#8216;Here to Stay&#8217; and I&#8217;m hearing strange audio artefacts, I&#8217;m thinking maybe it was a [...]]]></description>
			<content:encoded><![CDATA[<p>Ugh. I bought a three-pack of Korn albums in a music store a while ago, then I ripped them and forgot about them. Tonight, I think to myself, &#8220;ah, a bit of Korn for something different&#8221; &#8211; I&#8217;m listening to &#8216;Here to Stay&#8217; and I&#8217;m hearing strange audio artefacts, I&#8217;m thinking maybe it was a bad rip. Closer listen. It&#8217;s swear words only. WHAT THE FUCK! I&#8217;ve managed to buy some fucking retarded censored version where the swear words are jumbled up so to the casual listener, it still sounds like lyrics, but really it&#8217;s just garble. WHAT THE FUCK. ARG!</p>
<p>Words like &#8220;fuck&#8221; (OMG!) and &#8220;shit&#8221; (OMG!) are now garbled messes. Thank-you whoever fuckhead decided this was a good idea. You are a dickhead. A fuckbrain. A no-hoping moron. A fucking lunatic. A spastic deranged moron with a fucking shoe for a brain. Eat a bag of dicks.</p>
<p>*deep breath*</p>
<p>OK, I think I&#8217;m over it now. But censored music is still fucking stupid.</p>
]]></content:encoded>
			<wfw:commentRss>http://owened.net/2010/02/27/censorship-on-music-can-get-fuckedy-fuck-fucked-in-the-fucking-arse-with-a-fucking-fuck-stick-fuck/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fish tank: Stage 3</title>
		<link>http://owened.net/2010/02/03/fish-tank-stage-3</link>
		<comments>http://owened.net/2010/02/03/fish-tank-stage-3#comments</comments>
		<pubDate>Wed, 03 Feb 2010 00:21:44 +0000</pubDate>
		<dc:creator>Owen</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Cool stuff]]></category>
		<category><![CDATA[creative]]></category>
		<category><![CDATA[fish tank]]></category>

		<guid isPermaLink="false">http://owened.net/?p=666</guid>
		<description><![CDATA[After doing a little more reading about planting fish tanks, I realised that the state of my plants needed to be changed. I had planted them as they came from the shop &#8211; in bundles of 5-6 stems, and touching or protruding from the surface of the water.

You can see in the above picture the [...]]]></description>
			<content:encoded><![CDATA[<p>After doing a little more reading about planting fish tanks, I realised that the state of my plants needed to be changed. I had planted them as they came from the shop &#8211; in bundles of 5-6 stems, and touching or protruding from the surface of the water.</p>
<p><a href="http://owened.net/gallery/main.php?g2_view=core.DownloadItem&#038;g2_itemId=640&#038;g2_GALLERYSID=TMP_SESSION_ID_DI_NOISSES_PMT" rel="lightbox[g2image]" title="A view at night. The blue LEDs are a little blingy, but I like them (for the time being ... )" ><img src="http://owened.net/gallery/main.php?g2_view=core.DownloadItem&#038;g2_itemId=641&#038;g2_GALLERYSID=TMP_SESSION_ID_DI_NOISSES_PMT" width="150"  height="149"  alt="IMG_7937" title="A view at night. The blue LEDs are a little blingy, but I like them (for the time being ... )" class="g2image_centered" /></a></p>
<p>You can see in the above picture the three main groupings of plants.</p>
<p>What I did was this:</p>
<ol>
<li>Untie the lead (?) wire keeping the plant stems together at the bottom;</li>
<li>Sort the plant stems according to height, and then halve the tallest ones, taking care not to cut away new roots. These are generally easy to identify as pale white strands which protrude from joints in the plant stems;</li>
<li>I then removed any leaves which appeared to be dead or dying (easily identified by their lack of colour), and removed any leaves (whether dead or new) near the bottom of the plant; any leaves buried would only burden the plant as they contribute nothing toward photosynthesis;</li>
<li>Re-group the new plant cuttings with 2-3 stems per group, and replant, taking care to ensure the roots were covered by the substrate</li>
</ol>
<p>So, this is what my tank looks like now:<br />
<a href="http://owened.net/gallery/main.php?g2_view=core.DownloadItem&#038;g2_itemId=646&#038;g2_GALLERYSID=TMP_SESSION_ID_DI_NOISSES_PMT" rel="lightbox[g2image]" title="My tank after a rescape. I have cut most of the plants to halve their height (the recommended action to take when they reach above the water level) and replanted them" ><img src="http://owened.net/gallery/main.php?g2_view=core.DownloadItem&#038;g2_itemId=647&#038;g2_GALLERYSID=TMP_SESSION_ID_DI_NOISSES_PMT" width="150"  height="148"  alt="IMG_7939" title="My tank after a rescape. I have cut most of the plants to halve their height (the recommended action to take when they reach above the water level) and replanted them" class="g2image_centered" /></a></p>
<p>As you can see, there are now plants all across the tank horizontally. Until they grow and thicken the coverage, there is still not a lot of places to hide for my rasboras, so they will continue to hide at the back under the filter until I can provide them some more places to hide. I have read that the more places fish have to hide, the more likely they are to come out, as they know a safe place is not far away.</p>
<p>I will hopefully soon aquire some drift wood and river rocks to put in the tank. I&#8217;ll have to do some &#8216;research&#8217; (looking at other peoples&#8217; established tanks) to get a feel for tank layouts that not only look nice but also provide plenty of areas for the fish to enjoy.</p>
<p>The hardest part of setting up this fish tank has so far been my lack of patience. Most other personal projects that I work on only happen at the speed I can complete them or at the speed of my computer &#8211; this fish tank, however, requires I wait for mother nature (helped along in some respects) to do her thing. Hopefully I will learn to be patient! I will have to, or I risk wasting my time, and money, and worst of all, I risk killing my fish!</p>
<p>So far so good, however.</p>
]]></content:encoded>
			<wfw:commentRss>http://owened.net/2010/02/03/fish-tank-stage-3/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Fish tank: Stage 2</title>
		<link>http://owened.net/2010/01/31/fish-tank-stage-2</link>
		<comments>http://owened.net/2010/01/31/fish-tank-stage-2#comments</comments>
		<pubDate>Sun, 31 Jan 2010 11:56:33 +0000</pubDate>
		<dc:creator>Owen</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Cool stuff]]></category>
		<category><![CDATA[fish tank]]></category>

		<guid isPermaLink="false">http://owened.net/?p=662</guid>
		<description><![CDATA[I have introduced my first fish. Ashamedly, I will admit I can&#8217;t remember what they are. Something-tails; their tails are quite interesting.

Nothing much has changed; with the addition of fish, I have added a heater, and a bit of a blingy air stone.

The fish are doing fine. I can&#8217;t wait to get more! Though, I&#8217;ll [...]]]></description>
			<content:encoded><![CDATA[<p>I have introduced my first fish. Ashamedly, I will admit I can&#8217;t remember what they are. Something-tails; their tails are quite interesting.</p>
<p><a href="http://owened.net/gallery/main.php?g2_view=core.DownloadItem&#038;g2_itemId=634&#038;g2_GALLERYSID=TMP_SESSION_ID_DI_NOISSES_PMT" rel="lightbox[g2image]" title="Two of the five fish I bought, I can't recall their names at this time" ><img src="http://owened.net/gallery/main.php?g2_view=core.DownloadItem&#038;g2_itemId=635&#038;g2_GALLERYSID=TMP_SESSION_ID_DI_NOISSES_PMT" width="150"  height="150"  alt="IMG_7935" title="Two of the five fish I bought, I can't recall their names at this time" class="g2image_centered" /></a></p>
<p>Nothing much has changed; with the addition of fish, I have added a heater, and a bit of a blingy air stone.</p>
<p><a href="http://owened.net/gallery/main.php?g2_view=core.DownloadItem&#038;g2_itemId=637&#038;g2_GALLERYSID=TMP_SESSION_ID_DI_NOISSES_PMT" rel="lightbox[g2image]" title="The whole setup. I can't use the camera, obviously ;-P" ><img src="http://owened.net/gallery/main.php?g2_view=core.DownloadItem&#038;g2_itemId=638&#038;g2_GALLERYSID=TMP_SESSION_ID_DI_NOISSES_PMT" width="150"  height="150"  alt="IMG_7919" title="The whole setup. I can't use the camera, obviously ;-P" class="g2image_centered" /></a><a href="http://owened.net/gallery/main.php?g2_view=core.DownloadItem&#038;g2_itemId=640&#038;g2_GALLERYSID=TMP_SESSION_ID_DI_NOISSES_PMT" rel="lightbox[g2image]" title="A view at night. The blue LEDs are a little blingy, but I like them (for the time being ... )" ><img src="http://owened.net/gallery/main.php?g2_view=core.DownloadItem&#038;g2_itemId=641&#038;g2_GALLERYSID=TMP_SESSION_ID_DI_NOISSES_PMT" width="150"  height="149"  alt="IMG_7937" title="A view at night. The blue LEDs are a little blingy, but I like them (for the time being ... )" class="g2image_centered" /></a></p>
<p>The fish are doing fine. I can&#8217;t wait to get more! Though, I&#8217;ll have to actually wait a week or so to add any more.</p>
<p>One thing I&#8217;m quite annoyed about is that the tank looked clean before I set it up, but now that it&#8217;s full of water etc, I can see really very obvious previous high-water marks all through it, it&#8217;s gross.</p>
]]></content:encoded>
			<wfw:commentRss>http://owened.net/2010/01/31/fish-tank-stage-2/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fish tank: Stage 1</title>
		<link>http://owened.net/2010/01/31/fish-tank-stage-1</link>
		<comments>http://owened.net/2010/01/31/fish-tank-stage-1#comments</comments>
		<pubDate>Sat, 30 Jan 2010 22:41:46 +0000</pubDate>
		<dc:creator>Owen</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Cool stuff]]></category>
		<category><![CDATA[fish]]></category>
		<category><![CDATA[Fun]]></category>

		<guid isPermaLink="false">http://owened.net/?p=658</guid>
		<description><![CDATA[Stage 1 of my fish tank has been completed.
Today I purchased:

Aqua One 2&#215;24W &#8220;T8&#8243; fluorescent lighting ($140, the most expensive part so far)
Seachem biological stabliser; to combat &#8220;new tank syndrome&#8221;
General purpose plant fertiliser/nutrients
Three plants, of which I forget the names


I&#8217;m going to leave the tank sit for a week. I&#8217;m going to go to the [...]]]></description>
			<content:encoded><![CDATA[<p>Stage 1 of my fish tank has been completed.</p>
<p>Today I purchased:</p>
<ul>
<li>Aqua One 2&#215;24W &#8220;T8&#8243; fluorescent lighting ($140, the most expensive part so far)</li>
<li>Seachem biological stabliser; to combat &#8220;new tank syndrome&#8221;</li>
<li>General purpose plant fertiliser/nutrients</li>
<li>Three plants, of which I forget the names</li>
</ul>
<p><a href="http://owened.net/gallery/main.php?g2_view=core.DownloadItem&#038;g2_itemId=631&#038;g2_GALLERYSID=TMP_SESSION_ID_DI_NOISSES_PMT" rel="lightbox[g2image]" title="My new tank: 60cm x 30cm x 30cm</p>
<p>It's cloudy as the gravel settles. I did wash all the gravel before putting the water in, but apparently not well enough." ><img src="http://owened.net/gallery/main.php?g2_view=core.DownloadItem&#038;g2_itemId=632&#038;g2_GALLERYSID=TMP_SESSION_ID_DI_NOISSES_PMT" width="150"  height="148"  alt="IMG_7908" title="My new tank: 60cm x 30cm x 30cm</p>
<p>It's cloudy as the gravel settles. I did wash all the gravel before putting the water in, but apparently not well enough." class="g2image_centered" /></a></p>
<p><del datetime="2010-01-30T22:34:11+00:00">I&#8217;m going to leave the tank sit for a week</del>. I&#8217;m going to go to the fish shop today and buy&#8230; something. Although I purchased a biological stabliser to reduce the effects of <a href="http://www.overclockers.com.au/wiki/Aquariums#The_Nitrogen_Cycle">new tank syndrome</a> (tl;dr version: new tank syndrome is the lack of &#8220;good&#8221; bacteria in the tank which helps to cycle waste products from plants and fish to reusable products by the plants); I really should wait a while before introducing any fish to the tank. Though, if I buy a test kit from the fish shop and everything comes up good, I may as well go ahead and buy myself some fish today. Provided the water has cleared up, anyway.</p>
<p>As I&#8217;m in the middle of moving house, the tank is actually at my new place, so I will have to check with my new housemates if they&#8217;re able to feed any fish I buy.</p>
]]></content:encoded>
			<wfw:commentRss>http://owened.net/2010/01/31/fish-tank-stage-1/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Vista 64-bit Team Fortress 2 map change crash fix</title>
		<link>http://owened.net/2010/01/25/vista-64-bit-team-fortress-2-map-change-crash-fix</link>
		<comments>http://owened.net/2010/01/25/vista-64-bit-team-fortress-2-map-change-crash-fix#comments</comments>
		<pubDate>Mon, 25 Jan 2010 00:47:05 +0000</pubDate>
		<dc:creator>Owen</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Annoyed]]></category>
		<category><![CDATA[games]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://owened.net/2010/01/25/vista-64-bit-team-fortress-2-map-change-crash-fix</guid>
		<description><![CDATA[If you&#8217;re a Vista 64-bit user and your TF2 crashes every 3-5 map changes, I have a solution for you!
All you have to do is go into the Advanced Multiplayer options and tick the box next to &#8220;disable HTML MOTDs&#8221;; apparently a combination of the awesomeness of Vista 64-bit and IE7/8 causes the game to [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re a Vista 64-bit user and your TF2 crashes every 3-5 map changes, I have a solution for you!</p>
<p>All you have to do is go into the Advanced Multiplayer options and tick the box next to &#8220;disable HTML MOTDs&#8221;; apparently a combination of the awesomeness of Vista 64-bit and IE7/8 causes the game to occasionally crash when trying to load IE in the background to display a HTML MOTD.</p>
]]></content:encoded>
			<wfw:commentRss>http://owened.net/2010/01/25/vista-64-bit-team-fortress-2-map-change-crash-fix/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fish tank</title>
		<link>http://owened.net/2010/01/22/fish-tank</link>
		<comments>http://owened.net/2010/01/22/fish-tank#comments</comments>
		<pubDate>Fri, 22 Jan 2010 01:25:44 +0000</pubDate>
		<dc:creator>Owen</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://owened.net/?p=653</guid>
		<description><![CDATA[
Say hello to Sonic, the newest member of my household. He is a male Siamese Fighter (otherwise known as a Betta), and he lives in a novelty oversized wine glass on my coffee table.

When I was a kid, we had a small family fish tank (~60cm if I recall correctly) with a few mollys, snails [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://owened.net/gallery/main.php?g2_view=core.DownloadItem&#038;g2_itemId=583&#038;g2_GALLERYSID=610e558b7121c525cc0690d0ab24895b" rel="lightbox[g2image]" title="Sonic, my Siamese Fighter (male Betta)" ><img src="http://owened.net/gallery/main.php?g2_view=core.DownloadItem&#038;g2_itemId=584&#038;g2_GALLERYSID=610e558b7121c525cc0690d0ab24895b" width="150"  height="148"  alt="sonic-fish" title="Sonic, my Siamese Fighter (male Betta)" class="g2image_centered" /></a></p>
<p>Say hello to Sonic, the newest member of my household. He is a male Siamese Fighter (otherwise known as a Betta), and he lives in a novelty oversized wine glass on my coffee table.</p>
<p><a href="http://owened.net/gallery/main.php?g2_view=core.DownloadItem&#038;g2_itemId=586&#038;g2_GALLERYSID=610e558b7121c525cc0690d0ab24895b" rel="lightbox[g2image]" title="Sonic, my Siamese Fighter (male Betta) in his current home: novelty oversized wine glass filled with seashells, and a large sea shell hidey hole" ><img src="http://owened.net/gallery/main.php?g2_view=core.DownloadItem&#038;g2_itemId=587&#038;g2_GALLERYSID=610e558b7121c525cc0690d0ab24895b" width="147"  height="150"  alt="sonic-fish-home" title="Sonic, my Siamese Fighter (male Betta) in his current home: novelty oversized wine glass filled with seashells, and a large sea shell hidey hole" class="g2image_centered" /></a></p>
<p>When I was a kid, we had a small family fish tank (~60cm if I recall correctly) with a few mollys, snails and some other fish I haven&#8217;t been able to identify. I really enjoyed watching the fish go about their business; and the ambient nature of a thriving fish tank has always appealed to me. Though, after we upgraded our little friends to a larger tank, they all died (we suspect the new tank was not cleaned properly), and then I grew up and totally forgot about how much I loved having fish. Until now.</p>
<p>My sister got me this little present for my birthday, and it has re-ignited my interest in fish tanks. I did a little research on the Betta, and I&#8217;ve found that in order to live happily, he needs a proper tank. Many people keep these guys in tiny one-litre containers because they can live in them. Of course they can survive, but it&#8217;s akin to keeping a large dog in a small yard &#8211; they can be kept there, but not happily. So, I intend upon starting small, and if I catch the bug, I&#8217;ll get serious on this hobby.</p>
<p>I&#8217;m going to buy a second-hand fish tank, about 60cm, with a stand and some accessories, and some fish for Sonic to live with. </p>
<p><a href="http://owened.net/gallery/main.php?g2_view=core.DownloadItem&#038;g2_itemId=591&#038;g2_GALLERYSID=610e558b7121c525cc0690d0ab24895b" rel="lightbox[g2image]" title="Fish compatability chart - not hard and fast rules, but a guide" ><img src="http://owened.net/gallery/main.php?g2_view=core.DownloadItem&#038;g2_itemId=592&#038;g2_GALLERYSID=610e558b7121c525cc0690d0ab24895b" width="150"  height="150"  alt="g_fw_compchart" title="Fish compatability chart - not hard and fast rules, but a guide" class="g2image_centered" /></a></p>
<p>This handy-dandy fish compatability chart tells me there are about 4-5 other fish species that should all be able to get along well with each other. Although the Bettas are reknown for their violence toward other Bettas, it is generally accepted that they can live happily in a community tank with other fish as long as those other fish cannot be mistaken for another Betta. In fact, typically in a community tank even with other fish that don&#8217;t look like Bettas, the Bettas get the raw end of the deal: their large, flowing fins make them slow, and unable to escape from other fish who make like to nip at them! Even so, as with any community tank, the temperment of the individual fish inside it will ultimately decide their compatability. If it turns out that the fish I buy don&#8217;t get along, I can put Sonic back into his oversize wine glass until I upgrade the others to a larger tank, and then Sonic can have the 60cm tank to himself!</p>
<p>Until I get the tank in a few weeks after I move house, this is mainly just an idea on a blog. But I fully intend to make it a reality!</p>
]]></content:encoded>
			<wfw:commentRss>http://owened.net/2010/01/22/fish-tank/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>A response to Michael Atkinson&#8217;s form letter</title>
		<link>http://owened.net/2009/11/29/a-response-to-michael-atkinsons-form-letter</link>
		<comments>http://owened.net/2009/11/29/a-response-to-michael-atkinsons-form-letter#comments</comments>
		<pubDate>Sat, 28 Nov 2009 21:31:46 +0000</pubDate>
		<dc:creator>Owen</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Angry]]></category>
		<category><![CDATA[Annoyed]]></category>
		<category><![CDATA[Contemplative]]></category>
		<category><![CDATA[Politics]]></category>

		<guid isPermaLink="false">http://owened.net/?p=648</guid>
		<description><![CDATA[If you&#8217;re a friend of mine, you&#8217;re surely aware of the ridiculousness of Michael Atkinson&#8217;s current fight against an R18+ rating being introduced for video games in Australia. Currently we&#8217;re the only Western nation that does not have an R18+ or similar-style rating for video games, essentially putting us out of step with the rest [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re a friend of mine, you&#8217;re surely aware of the ridiculousness of Michael Atkinson&#8217;s current fight against an R18+ rating being introduced for video games in Australia. Currently we&#8217;re the only Western nation that does not have an R18+ or similar-style rating for video games, essentially putting us out of step with the rest of the world.</p>
<p>I <a href="http://owened.net/2009/09/17/left-4-dead-2-banned-in-australia-and-what-you-can-do-about-it">wrote a short and sweet</a> e-mail to Mr. Atkinson regarding his stance on the matter, and he responded to me with a <a href="http://owened.net/R18-Michael-Atkinson.pdf">form letter</a> that was also sent out to other Australians who contacted him (credit to a redditor who <a href="http://www.reddit.com/r/worldnews/comments/a4ov9/i_just_received_a_six_page_reply_from_the/">scanned and uploaded</a> this copy).</p>
<p>The letter essentially quoted a bunch of the same old tired statistics and was coupled with a healthy dose of Atkinson paranoia, logical fallacies and at the end, a rather roundabout way of saying &#8220;fuck you&#8221; to gamers Australia-wide.</p>
<p>I wrote a response, which is below, and <a href="http://owened.net/atkinson-letter.pdf">here</a>.</p>
<blockquote><p>
The Hon Michael Atkinson MP</p>
<p>11th Floor<br />
45 Pirie Street<br />
Adelaide SA 5000</p>
<p>Thank-you for your response to my e-mail concerning the lack of an R18+ classification for video games. It is certainly refreshing to see that an MP is willing to engage in discussion with individual members of the public, even if it is by form letter.</p>
<p>As your response has spanned several pages, I will quote the relevant section of your letter as I respond to it.</p>
<blockquote><p>	“Although some members are advocates of this classification, I believe other Attorneys-	General, like me, reject it. Hitherto, Attorneys-General have not agreed to create an R. 18+ 	category for computer games. Other Attorneys-General who are opposed to introducing an 	R. 18+ classification for computer games are content to let me be the lightening rod for the gamers.”</p></blockquote>
<p>If I were in your position, I would be quite annoyed. That aside, your belief that other Attorneys-General support your position is not verifiable by any publicly available information. Indeed, most news reports seem to put the blame for the lack of a discussion paper squarely on your shoulders. There are many, many references to this online, but the most important I think is a direct quote of Victorian Attorney-General Rob Hulls; &#8220;I fully support there being consultation on this issue, but ultimately SCAG is waiting for the South Australian attorney to agree to consult on the matter.&#8221;</p>
<blockquote><p>	“[...] With people travelling so readily between States and Territories, a State-based 	classification coding system would be unworkable and useless [...]”</p></blockquote>
<p>I agree, the only way to properly introduce the rating is nationally through the OFLC.</p>
<blockquote><p>	“I am baffled and worried about why proponents of R. 18+ games are putting up their 	hands and saying &#8216;Give us more cruel sex and extreme violence!&#8217;”</p></blockquote>
<p>This is the crux of the argument, and I think the major point of contention between yourself and gamers such as myself. The point of having an R18+ classification is not to allow access to explicit content, the point is to enable adults to make their own decisions about what is and is not suitable for themselves and their children.</p>
<p>In your letter, you go on to cite many examples of games that have been refused classification on the grounds of containing extreme violence or explicit sexual content. The examples cited are relevant to this discussion in an ancillary fashion, but to debate the validity of each and every game between yourself, myself, and the Australian public is obviously not a workable model. The main point of contention as I mentioned earlier is not one game in particular, it is the ability for adults to decide for themselves what games they want to play.</p>
<blockquote><p>	“[...] These are all activities that are illegal for individuals in the real world so why ask 	governments to give people the right to do them virtually?”</p></blockquote>
<p>Why ask governments to give people the right to watch films which contain illegal activity, or read books which contain illegal activity? It&#8217;s a rhetorical question, and you&#8217;re avoiding the issue by posing it.</p>
<blockquote><p>	“Given this data, I cannot fathom what State-enforced safeguards could exist to prevent R. 	18+ games being bought by households with children and how children can be stopped from 	using these games once the games are in the home. If adult gamers are keen to have R. 18+ 	games, I expect children would be just as keen.”</p></blockquote>
<p>Your inability to understand is a common theme in your stance on this issue. Here&#8217;s an easily enforced safeguard: require proof of age for purchase of games rated R18+. It works for alcohol, cigarettes and everything else, so why not games? </p>
<blockquote><p>	“Access to electronic games, once in the home, cannot be policed and therefore the games 	are easily accessible to children. If adults think they can devise a lock-out system to defeat 	children, tell &#8216;em they&#8217;re dreaming.”</p></blockquote>
<p>Replace the words “electronic games” with anything else (some examples: drugs, alcohol, cigarettes, pornography), and one is lead to ask, whose responsibility is it to protect children from explicit material? You&#8217;ve already answered my question:</p>
<blockquote><p>	“It is up to parents and responsible adults to ensure a game is appropriate for a minor 	whatever age he or she is.”</p></blockquote>
<p>All modern gaming systems have parental control safeguards in place that allow the restriction of games operation on the device.  It is possible to restrict a particular system, using a password, from playing games which are outside a parent-defined safe range. All of these systems require escalation to the relevant customer support agents to have “forgotten” parental control passwords reset (I.e., the child trying to circumvent the system would have to go to some lengths). This nullifies your assertion that parental controls are useless. </p>
<p>These systems are easy to use and setting them up is straightforward. There is no reason at all for parents not to make use of these systems if they are concerned about the material their children are able to access while playing electronic games. More to the point, introduction of an R18+ rating should have absolutely no effect on children what-so-ever. The Australian gaming public cannot understand how you are so ignorant of this fact. By definition, a person over the age of 18 <strong>is not a child</strong>, therefore the introduction of such a rating will have <strong>no effect upon children, as they are not legally allowed to view the material</strong>. </p>
<p>What happens if the safeguard does fail? You&#8217;ve answered that question:</p>
<blockquote><p>	“It is up to parents and responsible adults to ensure a game is appropriate for a minor 	whatever age he or she is.”</p></blockquote>
<p>A parent intervening in their child&#8217;s entertainment is normal; indeed it is expected of every responsible parent. You trying to govern in such a way as to protect the few children of irresponsible parents at the liberty of adults is unfair. “One bad apple spoils the cart” is an extreme oversimplification of the issue.</p>
<blockquote><p>	“What the present law does is to keep the most extreme material off the shelves. It is true 	that this restricts the adult liberty to a small degree, however, I am prepared to accept this 	infringement in the circumstances.”</p></blockquote>
<p>Once again we touch upon the crux of the argument: this is not about granting access to explicit material, it is about allowing adults to make their own decisions. You say that you are prepared to accept this infringement upon the liberty of an adult in order to protect children, despite the fact that this discussion and its potential outcome has no relevance at all to children. </p>
<blockquote><p>	“[...] There may be games some people consider too violent for M.A. 15+ but the solution is 	not to create a classification to permit even more violent games in Australia. [...]”</p></blockquote>
<p>This kind of blanketing of the ratings system does not serve the best interests of parents or young children. I would say, and many would agree with me, that the OFLC having to shoe-horn games into a smaller number of classification categories would only serve to make decisions more difficult which would lead to a higher rate of poor decisions. Essentially, games which should receive an R18+ style rating may indeed be passed as MA15+ even though there are elements of said games which are not suitable for this rating. An example recently discussed is Call of Duty: Modern Warfare 2:  during one scene the player takes on the role of a terrorist who is participating in an attack upon a commercial airport and has the <strong>option</strong> to kill innocent civilians. The fact that killing civilians is <strong>not required to fulfill the mission objectives</strong> is relevant, but despite that, this type of gameplay scenario really is better suited to adults.</p>
<blockquote><p>	“It is up to members of the Classification Board to apply the Guidelines correctly and not to 	try to defeat the Guidelines because they disagree with the outcome of the deliberations of 	elected officials in a democratic rule-of-law society.”</p></blockquote>
<p>Your lack of confidence in the OFLC is well-known after your interview with the Peter Mares of the ABC recently. Your approach to this is confusing. You say that the OFLC does not make correct decisions, as you admitted that the MA15+ rating of Modern Warfare 2 was inappropriate. Your criticism of the OFLC is unfounded: it is similar to asking a carpenter to produce a smooth wooden surface without using any high-grit sandpaper, or asking a painter to draw fine lines without a fine-tipped brush. Without the correct tools, neither the OFLC nor the carpenter and painter can do their job properly. Your argument here is circular: &#8216;the OFLC makes incorrect decisions with the current ratings system, therefore the OFLC will continue to make incorrect decisions with a new ratings system&#8217;. You are committing a logical fallacy. </p>
<p>You mentioned in your letter that recently the game Left 4 Dead 2 was given an RC rating. A resubmitted version in which much of the violence and gore was removed has been approved by the OFLC at MA15+. Do you know that the majority of Australian gamers who play this game today are actually playing the RC version? This has been achieved using two popular methods: buying the overseas version (typically with a credit card, so under 18&#8217;s need not apply), or, using a small computer programme to modify the game to enable the restricted content. This programme was created by an Australian gamer who was unhappy with the OFLCs decision and wanted to get the “full” version of the game. Any child with five minutes to spare can download this programme and enable the banned version of the game. What is my point? My point is that parents who made their decision about buying Left 4 Dead 2 for their children based on the rating MA15+ have done so under a false pretense provided for them by OFLC; the OFLC has failed in this instance.</p>
<p>You repeatedly contradict yourself.</p>
<blockquote><p>“[...] I am particularly concerned about the impact of this extreme content on children and 	vulnerable adults. […]</p></blockquote>
<p>But then you go on to state:</p>
<blockquote><p>	“It is up to parents and responsible adults to ensure a game is appropriate for a minor 	whatever age he or she is.”</p></blockquote>
<p>So, which is it? Can adults make decisions for themselves or not? Please note that “adults” and “parents” are not mutually exclusive groups as your language seems to imply.</p>
<blockquote><p>	“I am next up for election in March, 2010. The State District I represent is called Croydon. I 	would welcome advocates of R. 18+ computer games testing public acceptance of my policy 	by standing a candidate against me in that general election. I think you will find this issue 	has little traction with my constituents who are more concerned with real-life issues than 	home entertainment in imaginary worlds.”</p></blockquote>
<p>The Australian public is rising to your challenge. A group called “Gamers4Croydon” is in the process of establishing a competing candidate for this very election. Frankly, I am appalled by your lack of candour. Attempting to trivialise the discussion makes an example of your ignorance; summarising your “reasoned and considered” position with one of the most ignorant and illogical statements I&#8217;ve yet seen made on this topic only serves to bolster the arguments against your position. </p>
<p>You have demonstrated several times in this letter your lack of understanding of the subject at hand. Let&#8217;s take a look at the language you&#8217;ve used throughout: “I believe”, “I am baffled and worried”, “I expect”, “I imagine”, “I cannot fathom”, “To my mind”, etc. This type of language indicates that you are following your personal beliefs which I have shown to be created through partial erroneous thought. Worryingly, your use of terms which directly indicate your lack of understanding are also common. If you really have so little comprehension of the topic, then how is it that you can consider yourself suitable for the position of advising on it?</p>
<p>Not only are your arguments logically flawed, your evidence is dubious at best. There have been so many studies conducted on the effect of violent games on children and young adults with none conclusively proving anything on either side of the argument. Your platform stands entirely upon a single study of dubious nature.</p>
<p>I sincerely hope that the Gamers4Croydon group are successful and the next election in the seat of Croydon sees you removed from office. Whatever the outcome of the election, your views as expressed in this correspondence and in news media are outdated and narrow-minded and your methods of enforcing said views are ham-fisted at best.</p>
<p>Yours sincerely,
</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://owened.net/2009/11/29/a-response-to-michael-atkinsons-form-letter/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mythbuntu 9.10 + PulseAudio + IEC958 (S/PDIF)</title>
		<link>http://owened.net/2009/11/03/mythbuntu-9-10-pulseaudio-iec958-spdif</link>
		<comments>http://owened.net/2009/11/03/mythbuntu-9-10-pulseaudio-iec958-spdif#comments</comments>
		<pubDate>Tue, 03 Nov 2009 05:24:10 +0000</pubDate>
		<dc:creator>Owen</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[awesome]]></category>
		<category><![CDATA[Cool stuff]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Open source]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://owened.net/?p=627</guid>
		<description><![CDATA[Setting up PulseAudio on Mythtbuntu 9.10 is really quite easy.
sudo apt-get install pulseaudio
All of the GUI tools should be installed along with it, but if they aren&#8217;t, pop this into your console:
sudo apt-get install pavumeter paman padevchooser paprefs
padevchooser is being deprecated, but it will be supported at least until Mythbuntu 11.04. The first thing you&#8217;ll [...]]]></description>
			<content:encoded><![CDATA[<p>Setting up PulseAudio on Mythtbuntu 9.10 is really quite easy.<br />
<code>sudo apt-get install pulseaudio</code><br />
All of the GUI tools should be installed along with it, but if they aren&#8217;t, pop this into your console:<br />
<code>sudo apt-get install pavumeter paman padevchooser paprefs</code><br />
padevchooser is being deprecated, but it will be supported at least until Mythbuntu 11.04. The first thing you&#8217;ll want to do is launch padevchooser which will put an icon in your tray. From here, you can control all aspects of PulseAudio.</p>
<ol>
<li>Left-click the icon and select &#8216;Preferences&#8217;; click the checkbox next to &#8216;Start applet on session login&#8217; and close the dialogue.</li>
<li>Next, left-click the icon and select &#8216;Configure local sound server&#8217;; click the &#8216;Network Server&#8217; tab and check the boxes next to &#8216;Enable network access to local sound devices&#8217; and then &#8216;Don&#8217;t require authentication&#8217;. This allows applications to stream audio data direct to PulseAudio instead of through PulseAudio&#8217;s implementation of the ALSA API. This is necessary for all applications that support talking directly to PulseAudio.</li>
</ol>
<p>Next, you&#8217;ll want to open the Volume Control from the tray icon menu and select your output device on the Configuration tab. PulseAudio should have enumerated all of the available combinations on your system, so choose the option you want. If you&#8217;re using optical output to your A/V receiver or television, choose digital, SPDIF or IEC958.</p>
<p>Setting up mpd for use with PulseAudio is straightforward. Open your /etc/mpd.conf file and comment out all the configuration related to alsa, then scroll down a bit and you should see a commented-out section related to PulseAudio. Make your config look like the below, and restart mpd.<br />
<code><br />
# An example of an ALSA output:<br />
#<br />
#audio_output {<br />
#       type            "alsa"<br />
#       name            "My ALSA Device"<br />
#       device          "hw:0,1"        # optional<br />
#       format          "44100:16:2"    # optional<br />
#       mixer_device    "default"       # optional<br />
#       mixer_control   "PCM"           # optional<br />
#       mixer_index     "0"             # optional<br />
#}<br />
audio_output {<br />
        type            "pulse"<br />
        name            "My Pulse Output"<br />
#       server          "remote_server"         # optional<br />
#       sink            "remote_server_sink"    # optional<br />
}<br />
</code><br />
Next, you&#8217;ll need to setup MythTV. This is pretty straightforward, all I did was go through the General settings to the audio options menu and set the following options:</p>
<p><em>Update! MythTV trunk supports PulseAudio, so all you need to do is select &#8216;PulseAudio:default&#8217; as the audio output device.</em></p>
<ul>
<li>Output:ALSA:plughw:0,1 (0,1 being the card id, device id key, obtainable through the command &#8216;aplay -l&#8217;; you may have something different in your setup but you can freely edit this text field for the correct device)</li>
<li>Passthrough output device: Default</li>
<li>Max audio channels: Stereo</li>
<li>Upmix: passive</li>
<li>Enable AC3 to SPDIF passthrough: no (force AC3 decoding by MythTV if your receiver can&#8217;t do it)</li>
<li>Enable DTS to SPDIF passthrough: yes (pass Dolby/DTS to your receiver, for DVDs)</li>
</ul>
<p>And that&#8217;s it! All done. You should now have mpd and MythTV routable through PulseAudio which allows you to make use of the excellent <a href="http://projectm.sourceforge.net/">projectM</a> audio visualisation suite (basically an implementation of Milkdrop in OpenGL for Linux). Excellent for parties!</p>
<p>A note: This does actually output PCM 44.1Khz correctly. I was previously routing my audio through HDMI cable to the television, then from the television to the receiver. The TV was outputing a 48Khz signal; direct from the computer via optical, it&#8217;s a sweet 44.1Khz. Nice!</p>
]]></content:encoded>
			<wfw:commentRss>http://owened.net/2009/11/03/mythbuntu-9-10-pulseaudio-iec958-spdif/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Media Centre Musings (Part 5: Putting it all together)</title>
		<link>http://owened.net/2009/10/31/media-centre-musings-part-5-putting-it-all-together</link>
		<comments>http://owened.net/2009/10/31/media-centre-musings-part-5-putting-it-all-together#comments</comments>
		<pubDate>Sat, 31 Oct 2009 06:13:01 +0000</pubDate>
		<dc:creator>Owen</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[awesome]]></category>
		<category><![CDATA[Cool stuff]]></category>
		<category><![CDATA[Happy]]></category>
		<category><![CDATA[Tech-geek]]></category>

		<guid isPermaLink="false">http://owened.net/?p=615</guid>
		<description><![CDATA[This post is part one of a five-part series. Skip to related posts:

Media Centre Musings: Part 1 &#8211; The Theory
Media Centre Musings: Part 2 &#8211; The Plan
Media Centre Musings: Part 3 &#8211; Third Time&#8217;s the Charm
Media Centre Musings: Part 4 &#8211; Starting Implementation
Media Centre Musings: Part 5 &#8211; Putting it all Together

Probably the most epic [...]]]></description>
			<content:encoded><![CDATA[<p>This post is part one of a five-part series. Skip to related posts:</p>
<ol>
<li><a href="http://owened.net/2009/02/10/media-centre-musings-part-1-the-theory">Media Centre Musings: Part 1 &#8211; The Theory</a></li>
<li><a href="http://owened.net/2009/05/11/media-centre-musings-part-2-the-plan">Media Centre Musings: Part 2 &#8211; The Plan</a></li>
<li><a href="http://owened.net/2009/10/21/media-centre-musings-part-3-third-times-the-charm">Media Centre Musings: Part 3 &#8211; Third Time&#8217;s the Charm</a></li>
<li><a href="http://owened.net/2009/10/27/media-centre-musings-part-4-starting-implementation">Media Centre Musings: Part 4 &#8211; Starting Implementation</a></li>
<li><a href="http://owened.net/2009/10/31/media-centre-musings-part-5-putting-it-all-together">Media Centre Musings: Part 5 &#8211; Putting it all Together</a></li>
</ol>
<p>Probably the most epic assembly of consumer electronics I&#8217;ve experienced, and still not quite finished.</p>
<p>After I picked up the television and the PS3 on Sunday last week, I went out and bought most of the components for my HTPC on Monday. I unfortunately couldn&#8217;t assemble it that day because every local PC store had conveniently run out of stock on the case I wanted, so I had to wait for that to be sent to me. It arrived on Wednesday, and I assembled the HTPC, which was pretty straightforward because building PCs is my thing.</p>
<p>The <a href="http://www.antec.com/Believe_it/product1.php?id=NzE">Antec Micro Fusion 350</a> is, as with all other Antec cases, a very solidly put together affair with all of the things you&#8217;d expect and Antec case to have. Even though its name denotes it as being the smaller in Fusion class of HTPC cases, it suffers no functionality or convenience loss, even incorporating Antec&#8217;s dual chamber design.</p>
<p><a href="http://owened.net/gallery/main.php?g2_view=core.DownloadItem&#038;g2_itemId=539&#038;g2_GALLERYSID=a90850c2966876d5cd1e4dafbd6f5b2f" rel="lightbox[g2image]" title="31102009380.jpg" ><img src="http://owened.net/gallery/main.php?g2_view=core.DownloadItem&#038;g2_itemId=540&#038;g2_GALLERYSID=a90850c2966876d5cd1e4dafbd6f5b2f" width="150"  height="150"  alt="31102009380.jpg" title="31102009380.jpg" class="g2image_centered" /></a></p>
<p>In the above picture you can see pretty much everything: 96&#215;16 LCD just visible on the front, 750Gb Western Digital &#8216;Green Power&#8217; SATA disk in the foreground inside its own chamber, GeForce 9400GT graphics card and 2&#215;2Gb Corsair TwinX memory in the mid-ground, and the CPU cooler and exhaust fans of the motherboard chamber in the background.</p>
<p>I installed the 9.10RC of Mythbuntu onto the server and was totally lost. I have never used MythTV before, so I really had no idea what I was doing. Thankfully it comes with a lot of sane defaults and most of the functionality worked with minimal setup. I copied all of my media from an external backup disk into the appropriate directories and then started configuring the remote and the LCD.</p>
<p>As mentioned, I&#8217;ve no experience with any of this, so I was starting from scratch in all regards. After I spent nearly a half day mucking around with the remote and the LCD, following guides designed for Mythbuntu 9.04, I had aquired enough knowledge to realise that my setup was actually fully functional but was not working because I had selected the wrong presets. </p>
<p>So, now the remote works, but it is a little clumsy in my mind. What buttons from the devices&#8217; original remote do not exist on the Logitech remote are mapped via the softmenu keys which allows you to scroll through a list of functions and then choose what you want to do. The only criticism of the remote itself that I have is that it is very long and slender and the buttons are very hard to push. This means you nearly always need two hands to operate it because you can&#8217;t quite reach end-to-end and maintain a good enough grip to support the remote while pushing down the buttons at the extreme ends of the device at the same time. I will have to let loose the newbies to see if they can navigate the system without my assistance, and also to gather from them ideas on how to improve the control scheme. As of yet I have not implemented any direct control of the television from the PC and everything relies solely on the Logitech Harmony remote.</p>
<p>There&#8217;s little to say about the speakers and the receiver at this stage &#8211; the setup of both was very straightforward, although I did have a problem with the subwoofer not working initially. I took it back to Harvey Norman and they tested it on their demonstation system, where it worked perfectly fine. Confused, I assumed it must have been the cable, or worse, the subwoofer output of the receiver. Thankfully, the helpful sales guy at Harvey Norman gave me the high-quality cable from their demo system and told me to take it with me. &#8220;If it works with this cable,&#8221; he said as he handed it to me, &#8220;you can keep it. Just let me know.&#8221; It worked with the new cable.</p>
<p>There&#8217;s only been two things so far which my plan failed to account for: the S/PDIF output of the HTPC, and where to place the rear surround speakers. The latter was swimming in the back of my mind at various stages but I never put any solid thought into it. I solved the problem yesterday by going out and buying some universal satellite speaker stands which feel like they&#8217;re made from wrought iron. Thankfully though they are just perfect for mounting my speakers; the stands themselves are hollow so the speaker wiring can pass through to the bottom and leave the base unseen. As for the audio on the HTPC problem; the motherboard doesn&#8217;t have an onboard connector, only internal jumper pins. Currently I am passing the S/PDIF audio from the internal motherboard connector to the graphics card and through the HDMI cable to the television which then outputs it via optical cable to the receiver. However, in order to listen to music through the HTPC this requires the television to be turned on. Really not a great option considering the television draws about 265 watts of power when on. So I&#8217;ve ordered an S/PDIF dongle with both co-axial and optical connectors which should hopefully arrive soon, as when the XBox 360 gets here it&#8217;ll need the optical input on the receiver currently in use by the television.</p>
<p>This post is huge already. I think I will write up some reviews of all the components over the next few weeks to save novellising what I already have.</p>
<p>Here&#8217;s my working area during setup, the final setup, and the obligatory shot of me playing Team Fortress 2 on the setup. Not seen are the rear satellites just out of shot under the foreground.</p>
<p><a href="http://owened.net/gallery/main.php?g2_view=core.DownloadItem&#038;g2_itemId=529&#038;g2_GALLERYSID=a90850c2966876d5cd1e4dafbd6f5b2f" rel="lightbox[g2image]" title="29102009375.jpg" ><img src="http://owened.net/gallery/main.php?g2_view=core.DownloadItem&#038;g2_itemId=530&#038;g2_GALLERYSID=a90850c2966876d5cd1e4dafbd6f5b2f" width="150"  height="150"  alt="29102009375.jpg" title="29102009375.jpg" class="g2image_normal" /></a><a href="http://owened.net/gallery/main.php?g2_view=core.DownloadItem&#038;g2_itemId=545&#038;g2_GALLERYSID=a90850c2966876d5cd1e4dafbd6f5b2f" rel="lightbox[g2image]" title="31102009385.jpg" ><img src="http://owened.net/gallery/main.php?g2_view=core.DownloadItem&#038;g2_itemId=546&#038;g2_GALLERYSID=a90850c2966876d5cd1e4dafbd6f5b2f" width="150"  height="150"  alt="31102009385.jpg" title="31102009385.jpg" class="g2image_normal" /></a><a href="http://owened.net/gallery/main.php?g2_view=core.DownloadItem&#038;g2_itemId=533&#038;g2_GALLERYSID=a90850c2966876d5cd1e4dafbd6f5b2f" rel="lightbox[g2image]" title="31102009377.jpg" ><img src="http://owened.net/gallery/main.php?g2_view=core.DownloadItem&#038;g2_itemId=534&#038;g2_GALLERYSID=a90850c2966876d5cd1e4dafbd6f5b2f" width="150"  height="150"  alt="31102009377.jpg" title="31102009377.jpg" class="g2image_normal" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://owened.net/2009/10/31/media-centre-musings-part-5-putting-it-all-together/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
