<?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>AlexCline.net &#187; Internet</title>
	<atom:link href="http://alexcline.net/category/internet/feed/" rel="self" type="application/rss+xml" />
	<link>http://alexcline.net</link>
	<description>The musings of a geek, cyclist, cinephile, yogi, diver, philosopher and gamer.</description>
	<lastBuildDate>Thu, 02 Feb 2012 19:13:32 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Stop PIPA/SOPA!</title>
		<link>http://alexcline.net/2012/01/05/stop-pipasopa/</link>
		<comments>http://alexcline.net/2012/01/05/stop-pipasopa/#comments</comments>
		<pubDate>Thu, 05 Jan 2012 20:51:45 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[Interesting Links]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Site updates]]></category>

		<guid isPermaLink="false">http://alexcline.net/?p=493</guid>
		<description><![CDATA[Happy New Year everyone! I just got notifications that all my domains were successfully transferred to my new registrar. I&#8217;m now using DynaDot which is a vocal opponent of SOPA. The reason I transferred was partially to promote anti-SOPA messages and also for privacy reasons. Hopefully I&#8217;ll be much happier with my new service. Check [...]]]></description>
			<content:encoded><![CDATA[<p>Happy New Year everyone!</p>
<p>I just got notifications that all my domains were successfully transferred to my new registrar.  I&#8217;m now using DynaDot which is a vocal opponent of SOPA.  The reason I transferred was partially to promote anti-SOPA messages and also for privacy reasons.  Hopefully I&#8217;ll be much happier with my new service.</p>
<p>Check out the video below for information about PIPA/SOPA and why you should join the fight to oppose these proposed laws.</p>
<p><iframe src="http://player.vimeo.com/video/31100268?title=0&#038;byline=0&#038;portrait=0" width="640" height="360" frameborder="0" webkitAllowFullScreen allowFullScreen class="aligncenter"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://alexcline.net/2012/01/05/stop-pipasopa/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing FreeNAS to a flash drive on a Mac</title>
		<link>http://alexcline.net/2011/02/25/installing-freenas-to-a-flash-drive-on-a-mac/</link>
		<comments>http://alexcline.net/2011/02/25/installing-freenas-to-a-flash-drive-on-a-mac/#comments</comments>
		<pubDate>Sat, 26 Feb 2011 03:45:34 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Interesting Links]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://alexcline.net/?p=300</guid>
		<description><![CDATA[I&#8217;m building a NAS and decided to use FreeNAS to deploy it (rather than buy a hardware solution). The installation instructions were easy enough though they didn&#8217;t include instructions on how to install FreeNAS onto a flash drive while running a Mac. I found a 512MB flash drive that was perfectly suitable for the install. [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m building a NAS and decided to use <a href="http://freenas.org/">FreeNAS</a> to deploy it (rather than buy a hardware solution).  The installation instructions were easy enough though they didn&#8217;t include instructions on how to install FreeNAS onto a flash drive while running a Mac.  I found a 512MB flash drive that was perfectly suitable for the install.<br />
<em>Note: The instructions below include terminal commands.  The command is presented with an example of expected output.</em></p>
<ol>
<li>Download the latest release of FreeNAS from the <a href="http://freenas.org/#downloads">downloads page</a>.  The version I downloaded was titled &#8216;FreeNAS-amd64-embedded-0.7.2.5543.img&#8217;.  Make sure you get the .img file, not the .iso.</li>
<li>Plug your flash drive into your computer and open a new terminal window.</li>
<li>Using diskutil, find the device node for your flash drive:
<pre class="brush: bash; title: ; notranslate">mac:~ alex$ diskutil list
/dev/disk0
   #:                  TYPE NAME                    SIZE       IDENTIFIER
   0: GUID_partition_scheme                        *500.1 GB   disk0
   1:                   EFI                         209.7 MB   disk0s1
   2:             Apple_HFS Macintosh HD            499.8 GB   disk0s2
/dev/disk1
   #:                  TYPE NAME                    SIZE       IDENTIFIER
   0:                       CDROM                  *512.5 MB   disk1</pre>
</li>
<li>The flash drive&#8217;s device node in the above output is /dev/disk1.  Now, unmount the drive:
<pre class="brush: bash; title: ; notranslate">mac:~ alex$ diskutil unmountDisk /dev/disk1
Unmount of all volumes on disk1 was successful</pre>
</li>
<li>Next, we&#8217;ll extract the image&#8217;s contents onto the flash drive.  <em>Warning: This will delete all of the data off of the drive.</em>
<pre class="brush: bash; title: ; notranslate">mac:~ alex$ sudo dd if=~/Downloads/FreeNAS-amd64-embedded-0.7.2.5543.img of=/dev/disk1
203632+0 records in
203632+0 records out
104259584 bytes transferred in 66.608632 secs (1565256 bytes/sec)</pre>
</li>
<li>Lastly, eject the drive.
<pre class="brush: bash; title: ; notranslate">$ diskutil eject /dev/disk1
Disk /dev/disk1 ejected</pre>
</li>
</ol>
<p>Now you can use the flash drive to boot off of and run your FreeNAS instance from.  Good times!</p>
]]></content:encoded>
			<wfw:commentRss>http://alexcline.net/2011/02/25/installing-freenas-to-a-flash-drive-on-a-mac/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MAMP?  More like LAMP.</title>
		<link>http://alexcline.net/2011/02/21/mamp-more-like-lamp/</link>
		<comments>http://alexcline.net/2011/02/21/mamp-more-like-lamp/#comments</comments>
		<pubDate>Mon, 21 Feb 2011 22:27:03 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[Interesting Links]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://alexcline.net/?p=294</guid>
		<description><![CDATA[So I was looking for web servers to run on my MBP. I came across MAMP which looks like a pretty good piece of software. While downloading I became curious if the MAMP team actually used MAMP servers. Checking the HTTP headers revealed the following: I&#8217;ll take that as a No. For the record, I [...]]]></description>
			<content:encoded><![CDATA[<p>So I was looking for web servers to run on my MBP.  I came across <a href="http://www.mamp.info/">MAMP</a> which looks like a pretty good piece of software.  While downloading I became curious if the MAMP team actually used MAMP servers.</p>
<p>Checking the HTTP headers revealed the following:</p>
<pre class="brush: plain; title: ; notranslate">
Server: Apache/2.2.4 (Linux/SUSE)
</pre>
<p>I&#8217;ll take that as a No.</p>
<p>For the record, I use the LAMP stack for my sites.  I am messing around with offline development and needed an environment.</p>
]]></content:encoded>
			<wfw:commentRss>http://alexcline.net/2011/02/21/mamp-more-like-lamp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MineDraft.net</title>
		<link>http://alexcline.net/2010/10/29/minedraft-net/</link>
		<comments>http://alexcline.net/2010/10/29/minedraft-net/#comments</comments>
		<pubDate>Fri, 29 Oct 2010 05:11:53 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[Interesting Links]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://alexcline.net/?p=223</guid>
		<description><![CDATA[I, like many other Minecrafters, have lots of wonderful ideas to share with the Minecraft community. Frequently, we share our ideas by starting Minecraft, building our idea and taking screenshots and videos. These images and videos are uploaded to imgur or youtube and the links are shared. I found this to be a bit of [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://minedraft.net"><img alt="MineDraft" src="http://minedraft.net/images/logo.png" title="MineDraft" class="aligncenter" width="720" height="108" /></a></p>
<p>I, like many other Minecrafters, have lots of wonderful ideas to share with the Minecraft community.  Frequently, we share our ideas by starting Minecraft, building our idea and taking screenshots and videos.  These images and videos are uploaded to <a href="http://imgur.com">imgur</a> or <a href="http://youtube.com">youtube</a> and the links are shared.  I found this to be a bit of a hassle.</p>
<p>Thus, <a href="http://minedraft.net">MineDraft</a> was born.  With MineDraft, you can create your ideas in a simple to use interface, create a link to the design and share it with your friends.  No more video editing or image cropping.  No need to upload anything.  Just draft and share.</p>
<p><a href="http://minedraft.net"><strong>MineDraft.net</strong></a></p>
<p><em>Check it out on <a href="http://www.reddit.com/r/Minecraft/comments/dxwdk/hey_rminecraft_i_created_minedraft_so_we_can/">Reddit</a> too!</em></p>
]]></content:encoded>
			<wfw:commentRss>http://alexcline.net/2010/10/29/minedraft-net/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Water: Blue Gold</title>
		<link>http://alexcline.net/2010/10/15/water-blue-gold/</link>
		<comments>http://alexcline.net/2010/10/15/water-blue-gold/#comments</comments>
		<pubDate>Fri, 15 Oct 2010 16:01:03 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Randomness]]></category>

		<guid isPermaLink="false">http://alexcline.net/?p=218</guid>
		<description><![CDATA[Back in college, I remember my Geography professor saying that potable water (water that is safe for drinking) is the most valuable resource humans have. That if you wanted to make a billion dollars and save the world, solve Earth&#8217;s water problems. Today is a day to reflect on that. Of all the water on [...]]]></description>
			<content:encoded><![CDATA[<p>Back in college, I remember my Geography professor saying that potable water (water that is safe for drinking) is the most valuable resource humans have.   That if you wanted to make a billion dollars and save the world, solve Earth&#8217;s water problems.  Today is a day to reflect on that.</p>
<p>Of all the water on the Earth, only 2.5% of it is suitable for drinking and less than 1% of that water is readily accessible to humans.  This means that approximately 1 in 8 people don&#8217;t have access to clean drinking water.  Here are some disheartening facts about water:</p>
<ul>
<li>More people have access to cell phones than to toilets. As a result, tons of untreated human waste make their way to water sources causing a litany of diseases, and even death.</li>
<li>The US, Mexico and China lead the world in bottled water consumption, with people in the US drinking an average of 200 bottles of water per person each year. Over 17 million barrels of oil are needed to manufacture those water bottles, 86 percent of which will never be recycled.</li>
<li>17% of the world&#8217;s population lack access to clean drinking water.  This is improved from 22% in 1990.</li>
<li>Water shortages near water bottling plants have been reported all over, including Wisconsin, New Hampshire, Florida and Texas.</li>
<li>Countries that have made decisions to not permit the privitization of water include Uruguay, Malaysia and India. </li>
<li>The NRDC tested 103 bottled waters and found over 25% were simply tap water Several tested failed the bacteria test.</li>
<li>1.5 million barrels of crude oil are used annually to produce the plastic used to bottle water.</li>
<li>90% of the cost of a bottle of water is for label, cap and bottle. </li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://alexcline.net/2010/10/15/water-blue-gold/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Diaspora Released to Developers</title>
		<link>http://alexcline.net/2010/09/16/diaspora-released-to-developers/</link>
		<comments>http://alexcline.net/2010/09/16/diaspora-released-to-developers/#comments</comments>
		<pubDate>Thu, 16 Sep 2010 06:14:13 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[Interesting Links]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://alexcline.net/?p=213</guid>
		<description><![CDATA[The Diaspora Team made available the first public release of the new Diaspora open source social networking platform. I spent a couple hours tonight installing and playing around with it. So far, it looks pretty good. It&#8217;s very usable though not without its bugs. Since it&#8217;s a developer release, bugs are expected, right? More information [...]]]></description>
			<content:encoded><![CDATA[<p>The <a href="http://www.joindiaspora.com/">Diaspora Team</a> made available the first public release of the new Diaspora open source social networking platform.  I spent a couple hours tonight installing and playing around with it.  So far, it looks pretty good.  It&#8217;s very usable though not without its bugs.  Since it&#8217;s a developer release, bugs are expected, right?</p>
<p>More information is here: <a href="http://www.joindiaspora.com/2010/09/15/developer-release.html">http://www.joindiaspora.com/2010/09/15/developer-release.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://alexcline.net/2010/09/16/diaspora-released-to-developers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress 3.0 Released</title>
		<link>http://alexcline.net/2010/06/17/wordpress-3-0-released/</link>
		<comments>http://alexcline.net/2010/06/17/wordpress-3-0-released/#comments</comments>
		<pubDate>Thu, 17 Jun 2010 20:30:46 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[Interesting Links]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Site updates]]></category>

		<guid isPermaLink="false">http://alexcline.net/?p=187</guid>
		<description><![CDATA[Blargh. I just finished the redesign of the site and the WordPress team goes and releases 3.0! What bastards! Why did they have to include all kinds of awesome features, like: custom backgrounds and headers shortlinks menus (no more file editing) post types taxonomies long-awaited merge of MU and WordPress It also includes a new [...]]]></description>
			<content:encoded><![CDATA[<p>Blargh.  I just finished the redesign of the site and the WordPress team goes and releases 3.0!  What bastards!  Why did they have to include all kinds of awesome features, like:</p>
<ul>
<li>custom backgrounds and headers</li>
<li>shortlinks</li>
<li>menus (no more file editing)</li>
<li>post types</li>
<li>taxonomies</li>
<li>long-awaited merge of MU and WordPress</li>
</ul>
<p>It also includes a new default theme called <em>Twenty Ten</em>.  It looks pretty sexy.</p>
<p>Hopefully I&#8217;ll get to upgrade everything soon.</p>
]]></content:encoded>
			<wfw:commentRss>http://alexcline.net/2010/06/17/wordpress-3-0-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Portal 2 Demo at E3!</title>
		<link>http://alexcline.net/2010/06/16/portal-2-demo-at-e3/</link>
		<comments>http://alexcline.net/2010/06/16/portal-2-demo-at-e3/#comments</comments>
		<pubDate>Wed, 16 Jun 2010 16:37:42 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[Gaming]]></category>
		<category><![CDATA[Interesting Links]]></category>
		<category><![CDATA[Internet]]></category>

		<guid isPermaLink="false">http://alexcline.net/?p=180</guid>
		<description><![CDATA[Portal 2 looks like it&#8217;s going to be wicked sweet! I can&#8217;t wait to play. Hmmm, maybe there&#8217;ll be a beta. I would love to be part of that! Part 1: www.youtube.com/watch?v=5THiN8szSKM Part 2: www.youtube.com/watch?v=Bq2mZoKkqMw Part 3: www.youtube.com/watch?v=mGlyQmmvj0w]]></description>
			<content:encoded><![CDATA[<p>Portal 2 looks like it&#8217;s going to be wicked sweet!  I can&#8217;t wait to play.</p>
<p>Hmmm, maybe there&#8217;ll be a beta.  I would love to be part of that!</p>
<p>Part 1:</p>
<p><a href="http://www.youtube.com/watch?v=5THiN8szSKM&#038;fmt=18">www.youtube.com/watch?v=5THiN8szSKM</a></p>
<p>Part 2:</p>
<p><a href="http://www.youtube.com/watch?v=Bq2mZoKkqMw&#038;fmt=18">www.youtube.com/watch?v=Bq2mZoKkqMw</a></p>
<p>Part 3:</p>
<p><a href="http://www.youtube.com/watch?v=mGlyQmmvj0w&#038;fmt=18">www.youtube.com/watch?v=mGlyQmmvj0w</a></p>
]]></content:encoded>
			<wfw:commentRss>http://alexcline.net/2010/06/16/portal-2-demo-at-e3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Thunderbird 2.x Movemail Account on Fedora Core 8</title>
		<link>http://alexcline.net/2008/02/01/thunderbird-2x-movemail-account-on-fedora-core-8/</link>
		<comments>http://alexcline.net/2008/02/01/thunderbird-2x-movemail-account-on-fedora-core-8/#comments</comments>
		<pubDate>Fri, 01 Feb 2008 18:55:37 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[Interesting Links]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://alex.elementfx.com/archives/2008/02/01/thunderbird-2x-movemail-account-on-fedora-core-8</guid>
		<description><![CDATA[Sadly, Fedora Core 8 doesn&#8217;t ship a packaged version of Thunderbird (2.0.0.9 as of this writing) that includes movemail capabilities. Movemail is the account type (in Thunderbird) that allows you to read mail from your local system (in /var/spool/mail/[username]). If you run cron jobs, you should be getting emails about the status of those jobs [...]]]></description>
			<content:encoded><![CDATA[<p>Sadly, Fedora Core 8 doesn&#8217;t ship a packaged version of Thunderbird (2.0.0.9 as of this writing) that includes movemail capabilities.  Movemail is the account type (in Thunderbird) that allows you to read mail from your local system (in /var/spool/mail/[username]).  If you run cron jobs, you should be getting emails about the status of those jobs in your local mail directory.  Instead of having to read them through the command line, I wanted to read them through Thunderbird.  Here&#8217;s a step-by-step on how to get it working:</p>
<ol>
<li>Download <a href="http://lxr.mozilla.org/mailnews/source/mailnews/base/ispdata/movemail.rdf?raw=1">movemail.rdf</a> from the Mozilla repository.  This includes the account type &#8216;Movemail&#8217;.</li>
<li>Save a copy of movemail.rdf to /usr/lib[64]/thunderbird-2.0.0.9/isp</li>
<li>Run the following: <code>chmod 777 /var/spool/mail</code></li>
<li>Restart Thunderbird</li>
<li>In Thunderbird when adding a new account, select Movemail as the type, and follow the directions as usual.</li>
</ol>
<p>All done!  Hopefully, future versions of the Thunderbird package in Fedora&#8217;s repo. will be updated to include movemail, but until then, this works.</p>
]]></content:encoded>
			<wfw:commentRss>http://alexcline.net/2008/02/01/thunderbird-2x-movemail-account-on-fedora-core-8/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Amazing cover of Outkast&#039;s Hey Ya</title>
		<link>http://alexcline.net/2006/08/19/103/</link>
		<comments>http://alexcline.net/2006/08/19/103/#comments</comments>
		<pubDate>Sat, 19 Aug 2006 20:23:16 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[Interesting Links]]></category>
		<category><![CDATA[Randomness]]></category>

		<guid isPermaLink="false">http://alex.elementfx.com/archives/2006/08/19/103/</guid>
		<description><![CDATA[What do you get when you mix a hippie with Andre 3000 in the desert? A great cover of Outkast&#8217;s Hey Ya. We&#8217;ve been checking out the best of the best for our new Southern Arizona guide that should be out later this week and came across this amazing video of Mat Weddle from the [...]]]></description>
			<content:encoded><![CDATA[<p>What do you get when you mix a hippie with Andre 3000 in the desert? A great cover of Outkast&#8217;s Hey Ya. We&#8217;ve been checking out the best of the best for our new Southern Arizona guide that should be out later this week and came across this amazing video of Mat Weddle from the local band Obadiah Parker playing in Tempe, Arizona. Enjoy.</p>
<p>Trackback: <a href="http://tripcart.typepad.com/tripcart_the_blog/2006/08/an_outkast_in_a.html">http://tripcart.typepad.com/tri&#8230;utkast_in_a.html</a><br />
Digg: <a href="http://digg.com/videos_music/awesome_accoustic_cover_of_outkast_s_hey_ya">http://digg.com/video&#8230;of_outkast_s_hey_ya</a></p>
]]></content:encoded>
			<wfw:commentRss>http://alexcline.net/2006/08/19/103/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

