<?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/"
	>

<channel>
	<title>Moral-Flexibility.Net</title>
	<atom:link href="http://www.moral-flexibility.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.moral-flexibility.net</link>
	<description>The ramblings of a zombocalypse ready, hoplophile Canuck.</description>
	<pubDate>Mon, 29 Jun 2009 19:38:13 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Success! Now serving media&#8230; stage 1</title>
		<link>http://www.moral-flexibility.net/archives/2009/06/29/success-now-serving-media-stage-1/</link>
		<comments>http://www.moral-flexibility.net/archives/2009/06/29/success-now-serving-media-stage-1/#comments</comments>
		<pubDate>Mon, 29 Jun 2009 19:29:23 +0000</pubDate>
		<dc:creator>Mugwug</dc:creator>
		
		<category><![CDATA[Media Server]]></category>

		<guid isPermaLink="false">http://www.moral-flexibility.net/?p=1149</guid>
		<description><![CDATA[It didn&#8217;t work at all the last time I tried.
This time I mostly followed some online directions for installing a bare-bones Ubuntu media server running MediaTomb and modified things only slightly to get a result that more closely matched my requirements.
It worked (the third time I tried actually).
I celebrated my success by watching Without a [...]]]></description>
			<content:encoded><![CDATA[<p>It didn&#8217;t work at all the last time I tried.</p>
<p>This time I <i>mostly</i> followed some <a href="http://www.geek.com/articles/chips/feature-linux-media-server-using-ubuntu-810-2009065/">online directions for installing a bare-bones Ubuntu media server</a> running <a href="http://mediatomb.cc/">MediaTomb</a> and modified things only slightly to get a result that more closely matched my requirements.</p>
<p>It worked (the third time I tried actually).</p>
<p>I celebrated my success by watching <a href="http://www.imdb.com/title/tt0096454/">Without a Clue</a> streamed to my PS3 directly from the new media server I had just finished configuring (plus I had time to kill while copying everything over - who knew 100gig took a while to copy).</p>
<p>Instructions are saved for posterity below the cut (more for my reference than yours).</p>
<p><span id="more-1149"></span></p>
<p>To install webmin in three simple commands enter as root:</p>
<p>wget http://prdownloads.sourceforge.net/webadmin/webmin_1.470_all.deb</p>
<p>dpkg -i webmin_1.470_all.deb</p>
<p>apt-get install -f</p>
<p>Once all is done, point your browser to https://ip.of.box:10000 and you will be greeted with the webmin console.  You can login as root and nose around.</p>
<p>Enough with webmin for now, we’ll revisit that later.  As root, on the command line, you will need to install several additional packages.  These packages piece together your new server and contain the necessary components to start serving media to your devices across your network.</p>
<p>To install MediaTomb, perform these steps, we’ll worry about configuration later:</p>
<p>As root:<br />
apt-get install mediatomb vlc ubuntu-restricted-extras samba</p>
<p>This command installs the MediaTomb software, VLC, and all the restricted extras that include many codecs for handling various media such as MP3, mpeg, etc.  VLC is used by MediaTomb to transcode certain files as necessary on the fly as they are being accessed from your MediaTomb system.  Samba makes it possible for you to create an SMB share to a directory which you’ll create to hold all your stuff.  On my system, I setup the following directory:</p>
<p>/vol1</p>
<p>To do the same just:<br />
cd /<br />
mkdir vol1 &#038;&#038; chmod 777 vol1 &#038;&#038; chown uid:gid<br />
(where uid and gid is the name of the user ID and Group ID of a particular user)</p>
<p>If we do an ls command on my vol1 here’s what it looks like:</p>
<p>drwxrwxrwx   6 john john    48 2009-05-25 18:15 vol1</p>
<p>Next, you can use the Samba webmin module to set up read/write access to everyone on the vol1 directory.  This lets anyone on your network upload media files to your MediaTomb server.  Once the media files are uploaded, you just need to tell MediaTomb where your media is located.  This is done via any web browser on the network.  Since all my media is in vol1, I have a few directories under vol1:</p>
<p>drwxr-xr-x 21 john john 4096 2009-05-23 17:21 music<br />
drwxr-xr-x 58 john john 4096 2009-05-23 18:28 photographs<br />
drwxr-xr-x  2 john john   16 2009-05-23 16:49 playlists<br />
drwxr-xr-x  3 john john 4096 2009-06-01 18:59 videos</p>
<p>Once I tell MediaTomb that all my media lives under /vol1 recursively, it will then scan that parent location at regular intervals to add new media automatically as you add it later on.  You only have to do this part once.</p>
<p>Now let’s get MediaTomb configured so it will be up and running &#038; you can tell it where your media directory is.</p>
<p>The MediaTomb config file is located at:<br />
/etc/mediatomb/config.xml</p>
<p>Search for and make changes to the following lines:<br />
<code></p>
<p><accounts enabled=”yes” session-timeout=”30?><br />
<account user=”admin” password=”yourpassword”/></p>
<p><name>GX50</name></p>
<protocolinfo extend=”yes”/>< !– For PS3 support change to “yes” –><br />
< !– Uncomment the line below for PS3 divx support –></p>
<map from=”avi” to=”video/divx”/>
<p>< !– Uncomment the line below for D-Link DSM / ZyXEL DMA-1000 –></p>
<map from=”avi” to=”video/avi”/>
<transcoding enabled=”yes”>
<profile name=”vlcmpeg” enabled=”yes” type=”external”></profile></transcoding></accounts></code></p>
<p>When done, save the file.  Now restart MediaTomb by issuing the command:<br />
/etc/init.d/mediatomb restart</p>
<p>Once restarted, point your web browser at:</p>
<p>http://ip.of.server:49152</p>
<p>You will see the web based control panel for the MediaTomb engine.  Log in with the username and password you set in the config file.</p>
<p>Once logged in, click “Filesystem” at the top left of the window to generate the filesystem view.  After you see the filesystem folders, click the parent folder that has all your media goodness in it.  In my case it’s /vol1 so I highlighted that.  Now in the right pane, click the + symbol with the circling arrows around it (near the top right).</p>
<p>This will tell MediaTomb to regularly rescan and add new media as you add it automatically.  Now with all that done, simply copy your media goodness to the SMB share you created and shazam! it appears soon in the index when you browse the server from a PS3 console or other UPnP media playing device.</p>
<p>Here, we show you how the PS3 console browses content stored on your server:</p>
]]></content:encoded>
			<wfw:commentRss>http://www.moral-flexibility.net/archives/2009/06/29/success-now-serving-media-stage-1/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Kwasi-Lo-Tec Media Server?</title>
		<link>http://www.moral-flexibility.net/archives/2009/06/27/kwasi-lo-tec-media-server/</link>
		<comments>http://www.moral-flexibility.net/archives/2009/06/27/kwasi-lo-tec-media-server/#comments</comments>
		<pubDate>Sun, 28 Jun 2009 00:54:27 +0000</pubDate>
		<dc:creator>Mugwug</dc:creator>
		
		<category><![CDATA[Media Server]]></category>

		<guid isPermaLink="false">http://www.moral-flexibility.net/?p=1147</guid>
		<description><![CDATA[The most recent upgrade of my surveillance system was a surplused DVR unit which has rendered my home-built DVR largely superfluous, I&#8217;ve been considering using it as the basis for a home media distribution system but have been having some issues figuring out how I&#8217;ll be organizing this.
I&#8217;ve decided that I will install Mediatomb on [...]]]></description>
			<content:encoded><![CDATA[<p>The most recent upgrade of my surveillance system was a surplused DVR unit which has rendered my home-built DVR largely superfluous, I&#8217;ve been considering using it as the basis for a home media distribution system but have been having some issues figuring out how I&#8217;ll be organizing this.</p>
<p>I&#8217;ve decided that I will install Mediatomb on the computer (once we&#8217;ve covered a period of time running both DVR systems to make sure the new one is reliable) allowing for streaming video for UPnP devices on our home network, but for the televisions NOT equipped with UPnP I&#8217;ll be adding a cludge to allow us to access a library of movies and music from any TV in the house.</p>
<p>The plan is to make use of remote desktop features of Ubuntu, playing movies or music on the &#8220;server&#8221; will allow me to pipe the monitor (and audio) feed along another custom channel (like our surveillance system feed) and thus any TV in the house can whatever media is selected.</p>
<p>Truly MeTV. It won&#8217;t be as user friendly as I would like and will rely heavily on laptops/desktops to get the movie/music started, but once it&#8217;s rolling it should be easy enough to enjoy, no?</p>
<p>Someone have a better idea? I&#8217;m all ears.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.moral-flexibility.net/archives/2009/06/27/kwasi-lo-tec-media-server/feed/</wfw:commentRss>
		</item>
		<item>
		<title>One last Monkey jumping on the bed&#8230;</title>
		<link>http://www.moral-flexibility.net/archives/2009/06/03/one-last-monkey-jumping-on-the-bed/</link>
		<comments>http://www.moral-flexibility.net/archives/2009/06/03/one-last-monkey-jumping-on-the-bed/#comments</comments>
		<pubDate>Wed, 03 Jun 2009 23:59:26 +0000</pubDate>
		<dc:creator>Mugwug</dc:creator>
		
		<category><![CDATA[Baby Blogging]]></category>

		<guid isPermaLink="false">http://www.moral-flexibility.net/?p=1142</guid>
		<description><![CDATA[A typical Monday, Lisa and I sorta dragging around the house while Jilly races around like her diet consists entirely of sugar. A few warnings from Mommy and Daddy to be careful go largely unheeded.
The adventure culminates in a loud crash from the second floor, followed by a particular sort of howl that indicates this [...]]]></description>
			<content:encoded><![CDATA[<p>A typical Monday, Lisa and I sorta dragging around the house while Jilly races around like her diet consists entirely of sugar. A few warnings from Mommy and Daddy to be careful go largely unheeded.</p>
<p>The adventure culminates in a loud crash from the second floor, followed by a particular sort of howl that indicates this owee may require more than a quick kiss to set right.</p>
<p><center><img src="http://www.moral-flexibility.net/images/jillycast03jun09.jpg" width="500" alt="Jillians first cast"/></center></p>
<p>Initially we figured it for a sprain as there was no swelling or bruising, but a call from the school this morning suggested that the wrist had started to swell and Jilly was still favoring her right hand.</p>
<p>A quick departure from work followed by a trip to our GP, then to the General Hospital pretty much killed the day and resulted in a hot pink cast for poor Jilly.</p>
<p>She&#8217;s recovering well, as the photo indicates. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.moral-flexibility.net/archives/2009/06/03/one-last-monkey-jumping-on-the-bed/feed/</wfw:commentRss>
		</item>
		<item>
		<title>New Home Shopping - Mortgage Theoreticals</title>
		<link>http://www.moral-flexibility.net/archives/2009/05/31/new-home-shopping-mortgage-theoreticals/</link>
		<comments>http://www.moral-flexibility.net/archives/2009/05/31/new-home-shopping-mortgage-theoreticals/#comments</comments>
		<pubDate>Sun, 31 May 2009 16:16:08 +0000</pubDate>
		<dc:creator>Mugwug</dc:creator>
		
		<category><![CDATA[House Stuff]]></category>

		<guid isPermaLink="false">http://www.moral-flexibility.net/?p=1140</guid>
		<description><![CDATA[So, as usual I&#8217;ve done my homework and read everything I can find on the subject, I&#8217;m conversant with the array of mortgage products and I think I have the major players lending guidelines figured out.
I have some numbers in my head, but I want some sort of official confirmation. 
I call the mortgage broker [...]]]></description>
			<content:encoded><![CDATA[<p>So, as usual I&#8217;ve done my homework and read everything I can find on the subject, I&#8217;m conversant with the array of mortgage products and I think I have the major players lending guidelines figured out.</p>
<p>I have some numbers in my head, but I want some sort of official confirmation. </p>
<p>I call the mortgage broker recommended by my Mom, turns out the mortgage broker is now working for one of the big five banks. No biggie, I&#8217;m not ready to apply for financing yet, so I warn her that this is a meeting to discuss hypotheticals and to confirm my numbers, we&#8217;re not interested in proceeding further than that at this time.</p>
<p>No problem. We&#8217;ll see.</p>
<p>The day arrives and we attend the bank branch for our meeting. We&#8217;re kept waiting 15 minutes (for no readily apparent reason) and as we settle ourselves into a spartan office we&#8217;re asked for our bank cards.</p>
<p>Me:<i>&#8220;Oh, we&#8217;re not customers of Mega-Uber-Bank. We&#8217;re more like financial mercenaries, dealing with a variety of Financial Institutions.&#8221;</i><br />
Mortgage Guy:<i>&#8220;We do reward customer loyalty&#8230;&#8221;</i><br />
Me:<i>&#8220;I already receive completely free banking through my credit union, lets move on to the mortgage.&#8221;</i></p>
<p>Now. I had given advance warning that this was to be a hypothetical discussion as to mortgage size, bridge financing and all sorts of other little housy related stuff.</p>
<p>MG:<i>&#8220;I&#8217;ll just need to get your authorization to check&#8230;.&#8221;</i><br />
Me: <i>&#8220;No. I&#8217;m not prepared to generate more inquiries on our credit reports, I can tell you our credit scores and we can proceed on that basis.&#8221;</i><br />
MG:<i>&#8220;It&#8217;s not really a credit hit, we use Transunion which is hardly used for credit reports&#8221;</i><br />
Me:<i>&#8220;True. Just little companies like yours, American Express, MBNA and a few other wee financial outfits. No, no credit check. Sorry.&#8221;</i></p>
<p>The conversation proceeded from there, I told him our credit scores and gave him our current obligations, agreed that lying was singularly pointless and further agreed that this was a hypothetical number crunch as there was no file created.</p>
<p>In the end we had my numbers confirmed (although I had overestimated the available equity in our present home, failing to consider 80% LTV would be the max they would advance).</p>
<p>Ok, so now we have our ballpark, it&#8217;s time to prep our place for sale.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.moral-flexibility.net/archives/2009/05/31/new-home-shopping-mortgage-theoreticals/feed/</wfw:commentRss>
		</item>
		<item>
		<title>New Home Shopping - Establishing Parameters</title>
		<link>http://www.moral-flexibility.net/archives/2009/05/30/new-home-shopping-establishing-parameters/</link>
		<comments>http://www.moral-flexibility.net/archives/2009/05/30/new-home-shopping-establishing-parameters/#comments</comments>
		<pubDate>Sat, 30 May 2009 12:40:12 +0000</pubDate>
		<dc:creator>Mugwug</dc:creator>
		
		<category><![CDATA[House Stuff]]></category>

		<guid isPermaLink="false">http://www.moral-flexibility.net/?p=1136</guid>
		<description><![CDATA[I have to preface this with the statement that Lisa and I are more than a little risk averse. We are conservative in every aspect of our financial lives.
When we bought our current house we crunched the numbers, and figured out our maximum &#8220;affordable&#8221; price. We figured this was the number we could afford if [...]]]></description>
			<content:encoded><![CDATA[<p>I have to preface this with the statement that Lisa and I are more than a little risk averse. We are conservative in every aspect of our financial lives.</p>
<p>When we bought our current house we crunched the numbers, and figured out our maximum &#8220;affordable&#8221; price. We figured this was the number we could afford if we were both reduced to minimum wage jobs AND would still leave us off the &#8220;house poor&#8221; category.</p>
<p>Sound pessimistic? Yeah, probably, but that&#8217;s the way we roll. </p>
<p>Now, recently we had agreed amongst ourselves to explore the housing market and see if we could find something a little larger that we could occupy for years and years and that would address some concerns we have with our current home. My participation was a little reluctant as I love our current home and am loathe to pay closing costs and realtor fees.</p>
<p>The ceiling on cost was expanded for this exercise, although all calculations were made based on our present mortgage expense (changing our present <i>accelerated bi-weekly extra to principal</i> mortgage payment for an identically priced <i>single monthly non-accelerated non-extra to principal</i> mortgage payment) which increased the ceiling on purchase price approximately 100K from our present home.</p>
<p>Seem logical?</p>
<p>At the end of the day our mortgage payments would remain the same, but we&#8217;d be paying for 10 years more than with our current house (which presently has 12 years in payments left at the current rate).</p>
<p>Ok, so the basics had been thought out, next I needed professional verification or &#8220;proof of concept&#8221; to set my mind at ease. This meant meeting with a mortgage salesman, er&#8230;professional.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.moral-flexibility.net/archives/2009/05/30/new-home-shopping-establishing-parameters/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Still alive and kicking&#8217;ish&#8230;</title>
		<link>http://www.moral-flexibility.net/archives/2009/05/14/still-alive-and-kickingish/</link>
		<comments>http://www.moral-flexibility.net/archives/2009/05/14/still-alive-and-kickingish/#comments</comments>
		<pubDate>Thu, 14 May 2009 10:44:53 +0000</pubDate>
		<dc:creator>Mugwug</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.moral-flexibility.net/?p=1134</guid>
		<description><![CDATA[I&#8217;m still here, just feeling a little swamped recently.
The highlights are that my brother is visiting, we&#8217;re in the process of hunting for a new house (a long story in itself), we just bought a new TV (wow, 1080p really does make a difference!) and my brother gave me a toughbook in the hopes that [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m still here, just feeling a little swamped recently.</p>
<p>The highlights are that my brother is visiting, we&#8217;re in the process of hunting for a new house (a long story in itself), we just bought a new TV (wow, 1080p really does make a difference!) and my brother gave me a toughbook in the hopes that it might encourage my blogging efforts (so here we are).</p>
<p>There has been lots and lots of mucking around with technology, but as is customary we&#8217;re going to be headed for the range and hopefully I&#8217;ll be posting some gun pron instead of this sort of babble in the near future.</p>
<p>Thanks for your patience folks!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.moral-flexibility.net/archives/2009/05/14/still-alive-and-kickingish/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Central Distribution - Completed</title>
		<link>http://www.moral-flexibility.net/archives/2009/03/29/central-distribution-completed/</link>
		<comments>http://www.moral-flexibility.net/archives/2009/03/29/central-distribution-completed/#comments</comments>
		<pubDate>Sun, 29 Mar 2009 19:18:12 +0000</pubDate>
		<dc:creator>Mugwug</dc:creator>
		
		<category><![CDATA[Telco Distribution]]></category>

		<guid isPermaLink="false">http://www.moral-flexibility.net/?p=1121</guid>
		<description><![CDATA[Today involved a lot of wires. Corrected one problem involving the telco system, relocated the entire television distribution system halfway across the basement and then relocated all the old wiring to the new location (thankfully I had left plenty of slack when I made the temporary arrangement) and then crimped, stripped and drilled like mad.

The [...]]]></description>
			<content:encoded><![CDATA[<p>Today involved a lot of wires. Corrected one problem involving the telco system, relocated the entire television distribution system halfway across the basement and then relocated all the old wiring to the new location (thankfully I had left plenty of slack when I made the temporary arrangement) and then crimped, stripped and drilled like mad.</p>
<p><center><img src="http://www.moral-flexibility.net/images/hss2_telcocatv1.jpg" width="500" alt="Central distribution point for both telco, CATV and SATV"/></center></p>
<p>The final product is pretty slick. All the stuff tucked nicely out of the way and next to main electrical service, everything in the house wired to the nines so I don&#8217;t really see much need for expansion (although we have some room for it with one extension for both the telephone and television unused).</p>
<p>I&#8217;m proud of the finished result, but I am glad it&#8217;s done.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.moral-flexibility.net/archives/2009/03/29/central-distribution-completed/feed/</wfw:commentRss>
		</item>
		<item>
		<title>I love it when a plan comes together&#8230;</title>
		<link>http://www.moral-flexibility.net/archives/2009/03/28/i-love-it-when-a-plan-comes-together/</link>
		<comments>http://www.moral-flexibility.net/archives/2009/03/28/i-love-it-when-a-plan-comes-together/#comments</comments>
		<pubDate>Sat, 28 Mar 2009 14:43:31 +0000</pubDate>
		<dc:creator>Mugwug</dc:creator>
		
		<category><![CDATA[Telco Distribution]]></category>

		<guid isPermaLink="false">http://www.moral-flexibility.net/?p=1109</guid>
		<description><![CDATA[Wiring completed, old extensions removed and am running the new distribution board as the only extension off the main drop. I am still seeing some problems with my DSL connection, but I&#8217;ve got a few ideas as to how I might clear that up, and I think we can safely say that if these problems [...]]]></description>
			<content:encoded><![CDATA[<p>Wiring completed, old extensions removed and am running the new distribution board as the only extension off the main drop. I am still seeing some problems with my DSL connection, but I&#8217;ve got a few ideas as to how I might clear that up, and I think we can safely say that if these problems still exist then they are located on their side of the demarc.</p>
<p>The good news is that the new extensions and wiring function perfectly, so I get to spend a little while pulling the old wires out and removing the surface mounted outlets.</p>
<p><center><img src="http://www.moral-flexibility.net/images/hss2_telcodistrib3.jpg" width="500" height="637" alt=""/></center></p>
<p>Another consequence is that the wiring in the basement is becoming considerably less complicated.</p>
<p><center><img src="http://www.moral-flexibility.net/images/hss2_telcodistrib4.jpg" width="500" height="360" alt=""/></center></p>
<p>Cool, huh?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.moral-flexibility.net/archives/2009/03/28/i-love-it-when-a-plan-comes-together/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
