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

<channel>
	<title>The Hive Archive</title>
	<atom:link href="http://hivearchive.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://hivearchive.com</link>
	<description>Matt Michie's rants, raves, and thoughts</description>
	<pubDate>Sun, 17 Aug 2008 17:53:04 +0000</pubDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<language>en</language>
			<item>
		<title>Seattle relieved to lose its high-tech toilets</title>
		<link>http://hivearchive.com/2008/08/17/seattle-relieved-to-lose-its-high-tech-toilets/</link>
		<comments>http://hivearchive.com/2008/08/17/seattle-relieved-to-lose-its-high-tech-toilets/#comments</comments>
		<pubDate>Sun, 17 Aug 2008 17:53:04 +0000</pubDate>
		<dc:creator>mmichie</dc:creator>
		
		<category><![CDATA[seattle]]></category>

		<guid isPermaLink="false">http://hivearchive.com/?p=161</guid>
		<description><![CDATA[
City officials have finally gotten rid of five high-tech self-cleaning toilets that cost Seattle $5 million — but sold online for just $12,549.
The city installed the modernistic stand-alone toilets four years ago, hoping they would provide tourists and the homeless a place to do their business while downtown. But the automated loos became better known [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>
City officials have finally gotten rid of five high-tech self-cleaning toilets that cost Seattle $5 million — but sold online for just $12,549.</p>
<p>The city installed the modernistic stand-alone toilets four years ago, hoping they would provide tourists and the homeless a place to do their business while downtown. But the automated loos became better known for drug use and prostitution than for relief.</p>
<p><a href="http://www.usatoday.com/news/offbeat/2008-08-15-seattle-toilets_N.htm">USA Today</a>
</p></blockquote>
<p>Oh you clever headline writer you.  It&#8217;s rather unfortunate that these didn&#8217;t work out.  I remember seeing similar public toilets in Paris.  This is a huge problem in downtown Seattle.  It is difficult to find a public restroom anywhere, much less if you look like a transient.  Living downtown, I have found a couple of strategic places that I can just jump into the bathroom without a code, or having to make a purchase, or being scrutinized before using it (and no I&#8217;m not telling where they are).</p>
<p>The one truly open to the public restrooms exist in the downtown Seattle Library.  The last time I walked in there, there were multiple homeless men practically camped in the bathroom, trying to wash up.  One was shaving in the mirror.  I have a lot of sympathy for their situation, but it was also a very uncomfortable place to be.  </p>
<p>There has to be a better way.</p>
]]></content:encoded>
			<wfw:commentRss>http://hivearchive.com/2008/08/17/seattle-relieved-to-lose-its-high-tech-toilets/feed/</wfw:commentRss>
		</item>
		<item>
		<title>BMW GINA Light Visionary Model: Premiere</title>
		<link>http://hivearchive.com/2008/08/15/bmw-gina-light-visionary-model-premiere/</link>
		<comments>http://hivearchive.com/2008/08/15/bmw-gina-light-visionary-model-premiere/#comments</comments>
		<pubDate>Fri, 15 Aug 2008 18:48:26 +0000</pubDate>
		<dc:creator>mmichie</dc:creator>
		
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://hivearchive.com/?p=157</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/kTYiEkQYhWY&#038;hl=en&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/kTYiEkQYhWY&#038;hl=en&#038;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="344"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://hivearchive.com/2008/08/15/bmw-gina-light-visionary-model-premiere/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Project Euler and Prime Factorization</title>
		<link>http://hivearchive.com/2008/06/20/project-euler-and-prime-factorization/</link>
		<comments>http://hivearchive.com/2008/06/20/project-euler-and-prime-factorization/#comments</comments>
		<pubDate>Fri, 20 Jun 2008 16:16:32 +0000</pubDate>
		<dc:creator>mmichie</dc:creator>
		
		<category><![CDATA[programming]]></category>

		<category><![CDATA[python]]></category>

		<category><![CDATA[math]]></category>

		<guid isPermaLink="false">http://hivearchive.com/?p=154</guid>
		<description><![CDATA[I have been doing some of the exercises at Project Euler lately.  Project Euler describes themselves as:

A series of challenging mathematical/computer programming problems that will require more than just mathematical insights to solve. Although mathematics will help you arrive at elegant and efficient methods, the use of a computer and programming skills will be [...]]]></description>
			<content:encoded><![CDATA[<p>I have been doing some of the exercises at <a href="http://projecteuler.net/">Project Euler</a> lately.  Project Euler describes themselves as:</p>
<blockquote><p>
A series of challenging mathematical/computer programming problems that will require more than just mathematical insights to solve. Although mathematics will help you arrive at elegant and efficient methods, the use of a computer and programming skills will be required to solve most problems.
</p></blockquote>
<p>It has been a lot of fun to code these up in my language du jour, Python.  There are a couple of problems that Python&#8217;s built in libraries have made trivial.  I have to admit the most enjoyable part for me is having problems that require efficiency in algorithm.  For the simpler problems, I usually just quickly hack together the &#8220;naive&#8221; brute force method, figure out that it doesn&#8217;t scale and then start investigating how I can fix it.  Doing this, you will exercise your mathematics, computer science and programming skills, something that a lot of programming doesn&#8217;t do. </p>
<p>I convinced my girlfriend to work with me on one of the exercises, and of course she picked one of the Prime Factorization problems.  The naive brute force algorithm would not be an option for the large composite number given, so we ended up hacking together a <a href="http://en.wikipedia.org/wiki/Sieve_of_Eratosthenes">Sieve of Eratosthenes</a>.  Ultimately, we got a version working, but it was still pretty inefficient, only returning the answer in about an hour.  An optimal version should be able to do it within seconds.  Obviously there is some &#8220;refactoring&#8221; to do. </p>
]]></content:encoded>
			<wfw:commentRss>http://hivearchive.com/2008/06/20/project-euler-and-prime-factorization/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Upgraded Wordpress to 2.5 with SVN</title>
		<link>http://hivearchive.com/2008/04/21/upgraded-wordpress-to-25-with-svn/</link>
		<comments>http://hivearchive.com/2008/04/21/upgraded-wordpress-to-25-with-svn/#comments</comments>
		<pubDate>Tue, 22 Apr 2008 03:36:19 +0000</pubDate>
		<dc:creator>mmichie</dc:creator>
		
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://hivearchive.com/?p=151</guid>
		<description><![CDATA[So my Wordpress got compromised again by spammers, I&#8217;ve upgraded to the latest and greatest and instituted new protection mechanisms as well as tracking Wordpress by SVN to make upgrades more painless.
Some stats:
You have 125 posts, 2 pages, 11 drafts, contained within 63 categories and 2 tags.
You are using WordPress Default theme with 3 widgets. [...]]]></description>
			<content:encoded><![CDATA[<p>So my Wordpress got compromised again by spammers, I&#8217;ve upgraded to the latest and greatest and instituted new protection mechanisms as well as tracking Wordpress by SVN to make upgrades more painless.</p>
<p>Some stats:</p>
<p>You have 125 posts, 2 pages, 11 drafts, contained within 63 categories and 2 tags.</p>
<p>You are using WordPress Default theme with 3 widgets. This is WordPress version 2.5.</p>
<p>Akismet has protected your site from 24,837 spam comments already, and there are 446 comments in your spam queue right now.</p>
]]></content:encoded>
			<wfw:commentRss>http://hivearchive.com/2008/04/21/upgraded-wordpress-to-25-with-svn/feed/</wfw:commentRss>
		</item>
		<item>
		<title>A real solution to PowerShell SSH Remoting</title>
		<link>http://hivearchive.com/2008/03/30/a-real-solution-to-powershell-ssh-remoting/</link>
		<comments>http://hivearchive.com/2008/03/30/a-real-solution-to-powershell-ssh-remoting/#comments</comments>
		<pubDate>Mon, 31 Mar 2008 05:05:55 +0000</pubDate>
		<dc:creator>mmichie</dc:creator>
		
		<category><![CDATA[microsoft]]></category>

		<category><![CDATA[security]]></category>

		<category><![CDATA[system administration]]></category>

		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://hivearchive.com/2008/03/30/a-real-solution-to-powershell-ssh-remoting/</guid>
		<description><![CDATA[Can&#8217;t wait for us to ship PowerShell Remoting?
Want remoting to use SSH?
Why wait for us?  /N software has just announced a beta of their NetCmdlets V2.0 which provides PowerShell remoting over SSH today!  They&#8217;ve had this for  a while and V2 updates (and improves) the usability of the cmdlets as well as [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>Can&#8217;t wait for us to ship PowerShell Remoting?</p>
<p>Want remoting to use SSH?</p>
<p>Why wait for us?  /N software has just announced a beta of their NetCmdlets V2.0 which provides PowerShell remoting over SSH today!  They&#8217;ve had this for  a while and V2 updates (and improves) the usability of the cmdlets as well as adding a bunch of new and exciting commands.</p>
<p>For example, chances are that you won&#8217;t ever see Microsoft ship the [get/send]-s3 cmdlets but /N software V2 does.  <img src='http://hivearchive.com/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />
</p></blockquote>
<p><a href="http://blogs.msdn.com/powershell/archive/2008/03/27/powershell-remoting-using-ssh.aspx">http://blogs.msdn.com/powershell/archive/2008/03/27/powershell-remoting-using-ssh.aspx</a></p>
<p>My <a href="http://hivearchive.com/2006/07/03/using-powershell-through-ssh/">blog post</a> from 2006 is currently the #1 Google Result for PowerShell SSH, but finally there is a good solution out there from /N software.  It also supports S3.  Very cool <img src='http://hivearchive.com/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
			<wfw:commentRss>http://hivearchive.com/2008/03/30/a-real-solution-to-powershell-ssh-remoting/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Craig Venter: On the verge of creating synthetic life</title>
		<link>http://hivearchive.com/2008/03/27/craig-venter-on-the-verge-of-creating-synthetic-life/</link>
		<comments>http://hivearchive.com/2008/03/27/craig-venter-on-the-verge-of-creating-synthetic-life/#comments</comments>
		<pubDate>Fri, 28 Mar 2008 05:13:22 +0000</pubDate>
		<dc:creator>mmichie</dc:creator>
		
		<category><![CDATA[science]]></category>

		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://hivearchive.com/2008/03/27/craig-venter-on-the-verge-of-creating-synthetic-life/</guid>
		<description><![CDATA[

Interesting video&#8230;  Feels strange to see CompSci intersecting so close to Biology.
]]></description>
			<content:encoded><![CDATA[<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="432" height="285" id="VE_Player" align="middle"><param name="movie" value="http://static.videoegg.com/ted/flash/loader.swf"><PARAM NAME="FlashVars" VALUE="bgColor=FFFFFF&#038;file=http://static.videoegg.com/ted/movies/CRAIGVENTER-2008_high.flv&#038;autoPlay=false&#038;fullscreenURL=http://static.videoegg.com/ted/flash/fullscreen.html&#038;forcePlay=false&#038;logo=&#038;allowFullscreen=true"><param name="quality" value="high"><param name="allowScriptAccess" value="always"><param name="bgcolor" value="#FFFFFF"><param name="scale" value="noscale"><param name="wmode" value="window"><embed src="http://static.videoegg.com/ted/flash/loader.swf" FlashVars="bgColor=FFFFFF&#038;file=http://static.videoegg.com/ted/movies/CRAIGVENTER-2008_high.flv&#038;autoPlay=false&#038;fullscreenURL=http://static.videoegg.com/ted/flash/fullscreen.html&#038;forcePlay=false&#038;logo=&#038;allowFullscreen=true" quality="high" allowScriptAccess="always" bgcolor="#FFFFFF" scale="noscale" wmode="window" width="432" height="285" name="VE_Player" align="middle" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"></object></p>
<p>
Interesting video&#8230;  Feels strange to see CompSci intersecting so close to Biology.</p>
]]></content:encoded>
			<wfw:commentRss>http://hivearchive.com/2008/03/27/craig-venter-on-the-verge-of-creating-synthetic-life/feed/</wfw:commentRss>
		</item>
		<item>
		<title>ZFS Source Tour</title>
		<link>http://hivearchive.com/2008/03/20/zfs-source-tour/</link>
		<comments>http://hivearchive.com/2008/03/20/zfs-source-tour/#comments</comments>
		<pubDate>Thu, 20 Mar 2008 06:33:30 +0000</pubDate>
		<dc:creator>mmichie</dc:creator>
		
		<category><![CDATA[software engineering]]></category>

		<category><![CDATA[solaris]]></category>

		<guid isPermaLink="false">http://hivearchive.com/2008/03/20/zfs-source-tour/</guid>
		<description><![CDATA[http://www.opensolaris.org/os/community/zfs/source/
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.opensolaris.org/os/community/zfs/source/">http://www.opensolaris.org/os/community/zfs/source/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://hivearchive.com/2008/03/20/zfs-source-tour/feed/</wfw:commentRss>
		</item>
		<item>
		<title>In Canada, Milk Comes in Bags</title>
		<link>http://hivearchive.com/2008/03/16/in-canada-milk-comes-in-bags/</link>
		<comments>http://hivearchive.com/2008/03/16/in-canada-milk-comes-in-bags/#comments</comments>
		<pubDate>Sun, 16 Mar 2008 22:55:54 +0000</pubDate>
		<dc:creator>mmichie</dc:creator>
		
		<category><![CDATA[humor]]></category>

		<category><![CDATA[random]]></category>

		<guid isPermaLink="false">http://hivearchive.com/2008/03/16/in-canada-milk-comes-in-bags/</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/mB4hPjRvzu4&#038;hl=en"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/mB4hPjRvzu4&#038;hl=en" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://hivearchive.com/2008/03/16/in-canada-milk-comes-in-bags/feed/</wfw:commentRss>
		</item>
		<item>
		<title>iband</title>
		<link>http://hivearchive.com/2008/02/21/iband/</link>
		<comments>http://hivearchive.com/2008/02/21/iband/#comments</comments>
		<pubDate>Thu, 21 Feb 2008 06:08:42 +0000</pubDate>
		<dc:creator>mmichie</dc:creator>
		
		<category><![CDATA[random]]></category>

		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://hivearchive.com/2008/02/21/iband/</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/Mh0VX74alwk&#038;rel=1"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/Mh0VX74alwk&#038;rel=1" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://hivearchive.com/2008/02/21/iband/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Tuscon Complete Launches</title>
		<link>http://hivearchive.com/2007/12/11/tuscon-complete-launches/</link>
		<comments>http://hivearchive.com/2007/12/11/tuscon-complete-launches/#comments</comments>
		<pubDate>Wed, 12 Dec 2007 03:50:56 +0000</pubDate>
		<dc:creator>mmichie</dc:creator>
		
		<category><![CDATA[friends]]></category>

		<guid isPermaLink="false">http://hivearchive.com/2007/12/11/tuscon-complete-launches/</guid>
		<description><![CDATA[My friend Richard has just launched his newest site: Tusconcomplete.com.  The goal is to collect all the little tidbits of Tuscon in one place. Check it out, it is powered by my all time favorite open source Wiki software, DokuWiki.
Congrats on the site launch, good luck dude!
]]></description>
			<content:encoded><![CDATA[<p>My friend Richard has just launched his newest site: <a href="http://www.tucsoncomplete.com">Tusconcomplete.com</a>.  The goal is to collect all the little tidbits of Tuscon in one place. Check it out, it is powered by my all time favorite open source Wiki software, DokuWiki.</p>
<p>Congrats on the site launch, good luck dude!</p>
]]></content:encoded>
			<wfw:commentRss>http://hivearchive.com/2007/12/11/tuscon-complete-launches/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
