<?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>Openswitch</title>
	<atom:link href="http://openswitch.org/feed/" rel="self" type="application/rss+xml" />
	<link>http://openswitch.org</link>
	<description>[IBM: prob. from railroading] An unresolved question, issue, or problem.</description>
	<lastBuildDate>Wed, 08 May 2013 12:06:40 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Instead of killing yourself</title>
		<link>http://openswitch.org/2013/05/08/instead-of-killing-yourself/</link>
		<comments>http://openswitch.org/2013/05/08/instead-of-killing-yourself/#comments</comments>
		<pubDate>Wed, 08 May 2013 12:06:40 +0000</pubDate>
		<dc:creator>bgray</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://openswitch.org/?p=325</guid>
		<description><![CDATA[This poem by Derrick Brown struck me solid today.  Not that I&#8217;m depressed, but that I&#8217;m not.  I&#8217;d cheerily add &#8220;before I started running&#8221; to the list. wait until a year from now where you say, “Holy fuck, I can’t believe I was going to kill myself before I etcetera’d… before I went skinny dipping [...]]]></description>
				<content:encoded><![CDATA[<p>This poem by Derrick Brown struck me solid today.  Not that I&#8217;m depressed, but that I&#8217;m not.  I&#8217;d cheerily add &#8220;before I started running&#8221; to the list.</p>
<p>wait until<br />
a year from now<br />
where you say,<br />
“Holy fuck,<br />
I can’t believe I was going to kill myself before I etcetera’d…<br />
before I went skinny dipping in Tennessee,<br />
made my own IPA,<br />
tried out for a game show,<br />
rode a camel drunk,<br />
skydived alone,<br />
learned to waltz with clumsy old people,<br />
photographed electric jellyfish,<br />
built a sailboat from trash,<br />
taught someone how to read,<br />
etc. etc. etc.”</p>
<p>The red washing<br />
down the bathtub<br />
can’t change the color of the sea<br />
at all.</p>
<p>by Derrick C. Brown</p>
]]></content:encoded>
			<wfw:commentRss>http://openswitch.org/2013/05/08/instead-of-killing-yourself/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setting up Mutt on Ubuntu 12.04</title>
		<link>http://openswitch.org/2013/04/24/setting-up-mutt-on-ubuntu-12-04/</link>
		<comments>http://openswitch.org/2013/04/24/setting-up-mutt-on-ubuntu-12-04/#comments</comments>
		<pubDate>Wed, 24 Apr 2013 00:23:21 +0000</pubDate>
		<dc:creator>bgray</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://openswitch.org/?p=306</guid>
		<description><![CDATA[Seeing as I&#8217;m always looking for something new to try with Linux I recently decided to have a go at installing and setting up Mutt on my Ubuntu 12.04 headless server.  My thought process as to why I chose a text-based email client went something like this: I wanted something secure I wanted to get [...]]]></description>
				<content:encoded><![CDATA[<p>Seeing as I&#8217;m always looking for something new to try with Linux I recently decided to have a go at installing and setting up Mutt on my Ubuntu 12.04 headless server.  My thought process as to why I chose a text-based email client went something like this:</p>
<ul>
<li>I wanted something secure</li>
<li>I wanted to get away from web-based applications (read: Gmail)</li>
<li>I still wanted to be able to view my email from work or from the road</li>
<li>I didn&#8217;t want to use anything like Squirrel Mail</li>
<li>I wanted to keep it simple</li>
</ul>
<p><span id="more-306"></span></p>
<p>It&#8217;s quite a tall order to fill, and a text-based solution like <a href="http://www.mutt.org/">Mutt</a> fit the bill wonderfully.  I thought about using something like Evolution or Thunderbird, but they&#8217;re difficult to check remotely unless I used a remote desktop application; and if I was going to use remote desktop I&#8217;d rather just use SSH. My solution involved installing Mutt on my headless Ubuntu server in my home, then configured it to use IMAP over SSL/TLS to procure email from my email host.</p>
<p>What I&#8217;m writing here does not include how to SSH into your Ubuntu box like I do, but only covers installing and configuring Mutt on Ubuntu 12.04.</p>
<h4>Install Mutt</h4>
<pre>sudo apt-get install mutt</pre>
<h4>Create the .muttrc file (config file)</h4>
<p>This file is not created by default when you install Mutt, so we&#8217;ll create it and then edit it.</p>
<pre>touch ~/.muttrc</pre>
<pre>vi ~/.muttrc</pre>
<h4>.muttrc contents</h4>
<p>Anyone new to Mutt (like me) would be forgiven for feeling a little overwhelmed by the sheer volume of configuration options in the <a href="http://linux.die.net/man/5/muttrc">man page</a>. I, However, merely wanted basic functionality to start with. I found a few people who had published their .muttrc files and I&#8217;ve shamelessly used them to create something that works for me. My .muttrc file is below and has been configured for my personal email host which happens to be <a href="http://asmallorange.com">A Small Orange</a>.</p>
<pre># A basic .muttrc for use with A Small Orange hosting

# Change the following six lines to match your account details
set imap_user = "MY_ADDRESS@domain.com"
set imap_pass = "MY_PASSWORD"
set smtp_url = "smtp://MY_ADDRESS@domain.com@mail.domain.com:587"
set smtp_pass = "MY_PASSWORD"
set from = "MY_ADDRESS@domain.com"
set realname = "MY NAME"

# Change the following line to a different editor if you prefer.
set editor = "nano"

# Basic config
set folder = "imaps://mail.domain.com:993"
set spoolfile = "+INBOX"
set imap_check_subscribed
set hostname = domain.com
set mail_check = 120
set timeout = 300
set imap_keepalive = 300
set postponed = "~/.Drafts"
set record = "~/.Sent Mail"
set header_cache=~/.mutt/cache/headers
set message_cachedir=~/.mutt/cache/bodies
set certificate_file=~/.mutt/certificates
set move = no
set include
set sort = 'threads'
set sort_aux = 'reverse-last-date-received'
set auto_tag = yes
set mail_check=60           # check for new mail every 60 seconds

ignore "Authentication-Results:"
ignore "DomainKey-Signature:"
ignore "DKIM-Signature:"
hdr_order Date From To Cc
alternative_order text/plain text/html *
auto_view text/html
bind editor &lt;Tab&gt; complete-query
bind editor ^T complete
bind editor &lt;space&gt; noop</pre>
<p>Please comment below with corrections or suggestions.</p>
]]></content:encoded>
			<wfw:commentRss>http://openswitch.org/2013/04/24/setting-up-mutt-on-ubuntu-12-04/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Motive</title>
		<link>http://openswitch.org/2013/01/19/motive/</link>
		<comments>http://openswitch.org/2013/01/19/motive/#comments</comments>
		<pubDate>Sat, 19 Jan 2013 03:41:55 +0000</pubDate>
		<dc:creator>bgray</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://openswitch.org/?p=289</guid>
		<description><![CDATA[Sitting for my first Microsoft exam on February 2nd: the 70-680.  Sometimes I wonder why I&#8217;m doing these exams.  Is it to learn more?  Sure.  Is it to &#8220;better myself as a person and contribute to society?&#8221;  Yeah, why not; we&#8217;ll throw that in there too.   But I&#8217;m sitting here, finishing the prep for [...]]]></description>
				<content:encoded><![CDATA[<p>Sitting for my first Microsoft exam on February 2nd: the 70-680.  Sometimes I wonder why I&#8217;m doing these exams.  Is it to learn more?  Sure.  Is it to &#8220;better myself as a person and contribute to society?&#8221;  Yeah, why not; we&#8217;ll throw that in there too.   But I&#8217;m sitting here, finishing the prep for yet another certification exam I can&#8217;t help but get a bit introspective and question my own motives.  Is it money?  Skill?  Bragging rights?  Hell, I don&#8217;t know.  Yes, no, who cares?  I&#8217;m half-convinced that I&#8217;m doing this just to prove to myself and everyone else that I can.</p>
<p>Update 3/11/13: I wanted to update here that I did, in fact, pass this exam.  It was substantially harder than any of the CompTIA exams.</p>
]]></content:encoded>
			<wfw:commentRss>http://openswitch.org/2013/01/19/motive/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cutting the cable: my story</title>
		<link>http://openswitch.org/2013/01/07/cutting-the-cable-my-story/</link>
		<comments>http://openswitch.org/2013/01/07/cutting-the-cable-my-story/#comments</comments>
		<pubDate>Tue, 08 Jan 2013 04:32:03 +0000</pubDate>
		<dc:creator>bgray</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://openswitch.org/?p=252</guid>
		<description><![CDATA[Money is tight for the Gray family, as it is for a great many families right now.   I wanted to find a way to cut the monthly bills down to a minimum.  I&#8217;m also a geek with a huge appetite for tinkering and doing things myself.   So in a move that satisfies both [...]]]></description>
				<content:encoded><![CDATA[<p><img class=" wp-image-267 alignright" alt="cut-cable" src="http://openswitch.org/wp-content/uploads/2013/01/cut-cable-300x225.jpg" width="180" height="135" />Money is tight for the Gray family, as it is for a great many families right now.   I wanted to find a way to cut the monthly bills down to a minimum.  I&#8217;m also a geek with a huge appetite for tinkering and doing things myself.   So in a move that satisfies both desires we&#8217;ve finally made the move to cut the cable&#8230; cable TV, that is.   Here&#8217;s how it went down:</p>
<p><span id="more-252"></span></p>
<h3>Step 1: Set up a media server</h3>
<p>I wrote previously about <a href="http://openswitch.org/2012/06/16/ubuntu-12-04-for-a-basic-home-server/">how to set up Ubuntu Server for a basic home file server</a>.  After that initial install I installed two more pieces of software.  The first is <a href="http://subsonic.org">Subsonic</a>, the second is <a href="http://plexapp.com">Plex</a>.  Subsonic is hands-down <em>the best</em> solution for music streaming that I&#8217;ve found, but it&#8217;s crap with video.  Plex, on the other hand, is by far the strongest choice for serving up video content, but it&#8217;s crap with music (lack of a playlist feature being the major deal breaker for me).  So I use both apps in tandem and utilize each in the area where they&#8217;re strongest.</p>
<p>Keep in mind I&#8217;m running these services on a PC with an Intel Core2-Duo processor and 2GB of RAM.  They&#8217;re very lightweight and well written.  As such, I can&#8217;t recommend them more highly.</p>
<p>Setting up the media server may take a while, especially if you&#8217;re not familiar with the technology involved.  But when you&#8217;re done you&#8217;ll have a centralized digital repository for all your movies and music.</p>
<h3>Step 2: Set up a Roku</h3>
<p>I needed some way to get the content from my media server to my TV, enter <a href="http://www.roku.com/">Roku</a>.  Roku is a little device that packs quite a punch when it comes to serving you media.  Its strength lies in the ability to install custom channels.  If you&#8217;ve ever used a Wii or a blue-ray player to connect to Netflix or other channels via the internet then you&#8217;re familiar with the concept of streaming video from an online provider (i.e. Netflix, Hulu, etc).</p>
<p>Roku will do the same but can take it a step further by allowing you to install channels that are non-standard.  Notable examples being the <a href="http://plexapp.com/roku/">Plex channel</a> and the <a href="http://www.subsonic.org/pages/apps.jsp#subsonicchannel">Subsonic channel</a>.  Install both on the Roku.  Configuring them is easy, really.</p>
<h3>Step 3: Subscribe to Netflix</h3>
<p>This step is optional, but recommended.  There are times when you want to stream content you don&#8217;t already have.  Of all the available channels I&#8217;ve found Netflix to be the most satisfactory.  Hulu Plus is pretty horrid and much of what Hulu can offer is provided better by Netflix and an HD TV antenna.</p>
<p>I&#8217;m looking forward to seeing what happens with the Redbox channel I&#8217;ve heard rumors about, but at the time of this writing it hasn&#8217;t dropped yet.</p>
<h3>Step 4: Set up an HD TV antenna</h3>
<p>If you&#8217;re going to cut the cable, you&#8217;ll miss out on some good local programming unless you get an antenna.  Now, the first thing people think of when someone mentions &#8220;TV antenna&#8221; is either the old-school tree style roof antenna or the rabbit ears that sat on top of the TV.  Today there are many types of antennas and they all have varying degrees of reception and difficulty in set-up.</p>
<p>I chose an indoor antenna instead of an outdoor unit for simplicity and ease of installation.  In the future there&#8217;s a good chance I&#8217;ll invest a little more in an outdoor antenna if it means better channel reception.</p>
<p>As it stands now I get all the major stations in my area in HD.  Namely I get ABC, NBC, CBS, GPB and a few other odds and ends.  It&#8217;s the basic spread but they all come in great.  The closer you live to your local major city the more channels you&#8217;re likely to receive.  Just be aware that you don&#8217;t need to spend hundreds of dollars on an antenna to get legitimately good reception.  My unit is in the sub-$100 range and does just fine.</p>
<p>Also understand that in addition to an antenna you may need a digital TV converter if you have an older television.  Mine is about 10 years old so I swung by WalMart and picked up an <a href="http://www.walmart.com/ip/RCA-Digital-TV-Converter-Box/17011350">RCA digital TV converter</a>.  It&#8217;s working like a champ.</p>
<h3>Step 5: Call the cable company</h3>
<p>The last thing to do is call your cable comany and drop the TV package they&#8217;re over-charging you for.  Obviously you&#8217;ll want to retain your internet for Netflix and, well, your internet access.  Just keep in mind that many times you can reduce your download speed without noticing much, if any, difference in your web surfing while still shrinking your internet bill every month.</p>
<p>Have you cut the cable?  Would you like to but don&#8217;t know how or are uncertain about something?  I&#8217;d love to hear about it, leave a comment below.</p>
]]></content:encoded>
			<wfw:commentRss>http://openswitch.org/2013/01/07/cutting-the-cable-my-story/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linus Torvalds on Steam for Linux</title>
		<link>http://openswitch.org/2013/01/06/linus-torvalds-on-steam-for-linux/</link>
		<comments>http://openswitch.org/2013/01/06/linus-torvalds-on-steam-for-linux/#comments</comments>
		<pubDate>Sun, 06 Jan 2013 16:58:14 +0000</pubDate>
		<dc:creator>bgray</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://openswitch.org/?p=236</guid>
		<description><![CDATA[Linus Torvalds gives us a glimpse into his thoughts on the recent release of Steam for Linux. It&#8217;s still in Beta at this point and I&#8217;m hoping it will stay in active development because I&#8217;m greatly enjoying gaming on my Ubuntu desktop. Fast forward to 45:23 to get to the part regarding Linux and Steam.]]></description>
				<content:encoded><![CDATA[<p>Linus Torvalds gives us a glimpse into his thoughts on the recent release of <a href="http://store.steampowered.com/about/">Steam for Linux</a>. It&#8217;s still in Beta at this point and I&#8217;m hoping it will stay in active development because I&#8217;m greatly enjoying gaming on my Ubuntu desktop.</p>
<p>Fast forward to 45:23 to get to the part regarding Linux and Steam.</p>
<p><iframe width="470" height="315" src="http://www.youtube.com/embed/PDEce3mtkRg" frameborder="0" allowfullscreen></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://openswitch.org/2013/01/06/linus-torvalds-on-steam-for-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 0.184 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2013-05-21 08:00:48 -->
