<?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>The 9 Minute Snooze &#187; media center</title>
	<atom:link href="http://blog.9minutesnooze.com/tag/media-center/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.9minutesnooze.com</link>
	<description>Photography, Tech, and more</description>
	<lastBuildDate>Sat, 04 Feb 2012 23:03:58 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Get Hulu working on Boxee (again)</title>
		<link>http://blog.9minutesnooze.com/hulu-working-boxee/</link>
		<comments>http://blog.9minutesnooze.com/hulu-working-boxee/#comments</comments>
		<pubDate>Sun, 21 Nov 2010 16:51:46 +0000</pubDate>
		<dc:creator>Aaron</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[boxee]]></category>
		<category><![CDATA[fools]]></category>
		<category><![CDATA[htpc]]></category>
		<category><![CDATA[hulu]]></category>
		<category><![CDATA[idiots]]></category>
		<category><![CDATA[media center]]></category>
		<category><![CDATA[morons]]></category>

		<guid isPermaLink="false">http://blog.9minutesnooze.com/?p=309</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p>&lt;rant&gt;In a move that defies any reason, the short-sighted bonehead executives at Hulu (or perhaps NBC, but really&#8230;who cares?) decided that they don&#8217;t want advertising dollars from the thousands of Boxee and Boxee Box users, and instead, would prefer that people simply pirate their media instead since it is higher quality, easier to get, and has no advertisements.  Hey, guys at Hulu&#8230;wake up.  It&#8217;s not 2000 anymore.&lt;/rant&gt;  </p>
<p>Anyhow, <a href="http://forums.boxee.tv/showthread.php?t=22613">a very smart fellow</a> over at the Boxee Forums figured out how to work around the issue with a little bit of javascript&#8230;</p>
<p><strong>Disclaimer:</strong> This might make your computer explode, your network implode, and format your nodes.  I&#8217;m not responsible, nor is <a href="http://forums.boxee.tv/member.php?u=47501">jzongker</a> over on the Boxee Forums.</p>
<p>Simply save the following code as hulu.js (<a href="http://9minutesnooze.com/download/hulu.js">download link</a>) and put it in the following location:</p>
<table>
<tr>
<td>Mac</td>
<td>/Applications/Boxee.app/Contents/Resources/ Boxee/system/players/flashplayer/hulu.js</td>
</tr>
<tr>
<td>Linux</td>
<td>[Boxeepath]/system/players/flashplayer/hulu.js</td>
</tr>
<tr>
<td>Windows</td>
<td>probably [Boxeepath]\system\players\flashplayer\hulu.js in Program Files</td>
</tr>
<tr>
<td>Boxee Box</td>
<td>Apparently this technique does not work</td>
</tr>
</table>
<hr/>
<pre>boxee.browserWidth=1280;
boxee.browserHeight=720;
boxee.earlyTimers = true;
boxee.enableLog(true);

boxee.onInit = function() {
   browser.setConfigChar('general.useragent.override','Mozilla/5.0 (X11; U; Linux x86_64; en-US) AppleWebKit/540.0 (KHTML, like Gecko) Ubuntu/10.10 Chrome/9.1.0.0 Safari/540.0');
}

if (boxee.getVersion() &lt; 5)
   boxee.renderBrowser = true;

boxee.parseBoxeeTags = false;
boxee.autoChoosePlayer = false;

var current    = 0;
var h_width    = 720;
var h_bottom   = 23;
var started    = false;
var active     = false;
var duration   = false;
var is_paused  = false;
var alt_player = false;

boxee.onBack = function()  { boxee.onEnter(); }
boxee.onLeft = function()  { boxee.onEnter(); }
boxee.onRight = function() { boxee.onEnter(); }
boxee.onUp = function()    { boxee.onEnter(); }
boxee.onDown = function()  { boxee.onEnter(); }

wmodeFix = setInterval(function() {
   boxee.getWidgets().forEach(function(widget) {
      zorder_id = widget.getAttribute("id");
      if (zorder_id == 'banner_c')
         browser.execute('document.getElementById("'+zorder_id+'").style.zIndex = 99999;');
   });
}, 500);

boxee.onDocumentLoaded = function() {
   boxee.setMode(1);
   boxee.showNotification("[B]Press Enter to view full screen[/B]", ".", 500);
}

boxee.onEnter = function()
{
   boxee.setMode(0);

   if (boxee.getVersion() &lt; 5)       browser.execute('window.scrollTo(0,50);');    clearInterval(wmodeFix);    boxee.showNotification("[B]Switching to full screen...[/B]", ".", 2);    playerTimer = setInterval(function(){       if (!active) locatePlayer();       else updateProgress();    }, 1000) } function playerReference() {    id = boxee.getActiveWidget().getAttribute('id');    if (id.length &gt; 0)
      return 'document.'+id+'.';

   else if (alt_player != false)
      return alt_player;

   else
   {
      var locateMe = "(function(){objects=document.getElementsByTagName('embed'); for (var i in objects) { if (objects[i].getAttribute('src') == '"+boxee.getActiveWidget().getAttribute('src')+"') return i; }})()";
      locateMe = browser.execute(locateMe);
      if (locateMe &gt; 0)
      {
         alt_player = 'document.getElementsByTagName("embed")['+locateMe+'].';
         return alt_player;
      }
      else
         return 'document.player.';
   }
}

function updateProgress()
{
   if (!duration)
      duration = parseInt(browser.execute(playerReference()+'getDuration()')) / 1000;

   if (duration)
      boxee.setDuration(duration);

   current = parseInt(browser.execute(playerReference()+'getCurrentTime()')) / 1000;
   if (isNaN(current))
      alt_player = false;

   if (current &gt; 0 &amp;&amp; !started)
      started = true;

   progress = current / duration * 100;
   alert(progress);
   boxee.notifyCurrentTime(current);
   boxee.notifyCurrentProgress(progress);

   if (started &amp;&amp; progress &gt; 99.9)
      boxee.notifyPlaybackEnded();
}

function locatePlayer()
{
   boxee.getWidgets().forEach(function(widget) {
      flashvars = widget.getAttribute("flashvars");
      if (flashvars.indexOf('hulu.com/watch') != -1 &amp;&amp; flashvars.indexOf('bitrate=') != -1 &amp;&amp; !active) {
         active = true;
         boxee.renderBrowser = false;
         var crop = (widget.width - h_width) / 2;
         widget.setCrop(crop, 0, crop, h_bottom);
         boxee.notifyConfigChange(widget.width-(crop*2),widget.height-h_bottom);
         widget.setActive(true);
      }
   });

   if (active)
   {
      boxee.setCanPause(true);
      boxee.setCanSkip(true);
      boxee.setCanSetVolume(true);
   }

   return active;
}

boxee.onPause = function()
{
   is_paused = true;
   browser.execute(playerReference() + 'pauseVideo()')
}

boxee.onPlay = function()
{
   is_paused = false;
   browser.execute(playerReference() + 'resumeVideo()')
}

boxee.onSkip = function ()
{
   if (is_paused) return;
   update = (duration &lt; 3000) ? (current + 60) : (current + 120);
   browser.execute(playerReference() + 'seekVideo('+update+')');
}

boxee.onBigSkip = function ()
{
   if (is_paused) return;
   update = (duration &lt; 3000) ? (current + 180) : (current + 360);
   browser.execute(playerReference() + 'seekVideo('+update+')');
}

boxee.onBack = function ()
{
   if (is_paused) return;
   update = (duration &lt; 3000) ? (current - 60) : (current - 120);
   browser.execute(playerReference() + 'seekVideo('+update+')');
}

boxee.onBigBack = function ()
{
   if (is_paused) return;
   update = (duration &lt; 3000) ? (current - 180) : (current - 360);
   browser.execute(playerReference() + 'seekVideo('+update+')');
}

boxee.onSetVolume = function(volume)
{
   browser.execute(playerReference() + 'setVolume('+volume/100+')');
}</pre>
]]></content:encoded>
			<wfw:commentRss>http://blog.9minutesnooze.com/hulu-working-boxee/feed/</wfw:commentRss>
		<slash:comments>41</slash:comments>
		</item>
		<item>
		<title>Mac Mini Media Center/HTPC</title>
		<link>http://blog.9minutesnooze.com/mac-mini-media-center-htpc-boxee/</link>
		<comments>http://blog.9minutesnooze.com/mac-mini-media-center-htpc-boxee/#comments</comments>
		<pubDate>Sat, 02 Jan 2010 23:12:33 +0000</pubDate>
		<dc:creator>Aaron</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[htpc]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[mac mini]]></category>
		<category><![CDATA[media center]]></category>
		<category><![CDATA[osx]]></category>

		<guid isPermaLink="false">http://blog.9minutesnooze.com/?p=88</guid>
		<description><![CDATA[Christmas came a little early for me this year and I bought myself a Mac Mini and accessories to be used as a media center for my living room television. I have been wanting to build a home media center/HTPC &#8230; <a href="http://blog.9minutesnooze.com/mac-mini-media-center-htpc-boxee/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://s-blog.9minutesnooze.com/wp-content/uploads/2009/12/IMG_4046.jpg"><img class="alignleft size-medium wp-image-125" title="Mac Mini &amp; Remote" src="http://s-blog.9minutesnooze.com/wp-content/uploads/2009/12/IMG_4046-300x199.jpg" alt="Mac Mini &amp; Remote" width="300" height="199" /></a>Christmas came a little early for me this year and I bought myself a Mac Mini and accessories to be used as a media center for my living room television.  I have been wanting to build a home media center/HTPC for some time now and have hemmed and hawed over it.  My basic requirements were that it would run something like Boxee, be easily administered remotely via SSH (read: UNIX), support Netflix and Hulu, and be usable by my non-technical (read: doesn&#8217;t work with computers for a living) wife.  I basically wanted a set-it and forget-it machine that could be run from the couch with a simple remote control.  Windows was not invited to my party, but for others would be completely capable for this task.</p>
<div id="attachment_126" class="wp-caption alignright" style="width: 310px"><a href="http://s-blog.9minutesnooze.com/wp-content/uploads/2009/12/IMG_4708.jpg"><img class="size-medium wp-image-126" title="Mac Mini in Media Cabinet" src="http://s-blog.9minutesnooze.com/wp-content/uploads/2009/12/IMG_4708-300x199.jpg" alt="Mac Mini in Media Cabinet" width="300" height="199" /></a><p class="wp-caption-text">Mac Mini in Media Cabinet</p></div>
<p>Originally, my plan was to purchase one of the many inexpensive ($200-300) media center PCs available or something like the <a href="http://www.dell.com/us/en/corp/desktops/inspiron-zino-hd/pd.aspx?refid=inspiron-zino-hd&amp;s=corp">Dell Zino</a>, which along with Linux, seemed like a perfect solution.  However, after much research and with the advice of some helpful coworkers, I learned that Netflix doesn&#8217;t work under Linux.  There may be some hacks out there to get it working, but honestly my day job is configuring and administering clusters of Linux machines and I really didn&#8217;t feel like giving myself headaches for my television.  So, after much deliberation I mentally justified the Apple tax and ponied up for a Mac Mini (with Snow Leopard).  Ok, it wasn&#8217;t <em>that</em> hard, given that I already own a 2006 15&#8243; MacBook Pro, a 24&#8243; iMac, and use a 15&#8243; MacBook Pro at work.  Somehow, I turned into an Apple Fanboy over the last couple years. </p>
<p>The configuration described below is the one I settled on based on my existing TV and sound system (both low-end, but adequate for me).  I&#8217;ve provided a bunch of links down below that go into more elaborate setups, including using the Mini as an over-the-air HD tuner and DVR.</p>
<h4>Hardware:</h4>
<ul>
<li><a href="http://www.apple.com/macmini/specs.html">Mac Mini (MC238LL) </a> [$599.00]</li>
<p>The Mac Mini is a late-2009 model, with a 2.26 GHz Intel Core 2 Duo processor, 160GB Internal HD, and 2GB of RAM&#8230;the most basic model they offer.  Because I have a corporateperks.com account, I was able to get this for $563.00.  <a href="http://www.amazon.com/o/ASIN/B002QQ8AJY">Amazon</a> has them for a little cheaper [$574.95 and no sales tax] than the Apple Store.</p>
<li><a href="http://store.apple.com/us/product/MC377LL/A">Apple Remote (MC377LL)</a> [$19.00]</li>
<p>It&#8217;s all aluminum and <a href="http://www.iospirit.com/blog/article/141/Review-Inside-the-new-Aluminum-Apple-Remote/">very sexy</a>.  Because of the corporateperks account, I was able to get this for $17.00.</p>
<li><a href="http://accessories.us.dell.com/sna/products/System_Drives/productdetail.aspx?c=us&amp;l=en&amp;s=bsd&amp;cs=04&amp;sku=A3098103">Western Digital Elements 1.5TB External HD (WDBAAU0015HBK) </a>[$99.99 via Holiday sale, regularly $119.99]</li>
</ul>
<h4>Cables/Adapters:</h4>
<ul>
<li>An HDMI Cable</li>
<p><a href="http://www.monoprice.com">Monoprice</a> has several of them starting as <a href="http://www.monoprice.com/products/product.asp?c_id=102&#038;cp_id=10240&#038;cs_id=1024007&#038;p_id=4053&#038;seq=1&#038;format=2">cheap as $3</a>.  For short runs, as long as the cable is up to spec, there is no difference in visual and audio quality between a $3 <a href="http://www.monoprice.com">Monoprice</a> cable and a $130 Monster cable (P.T. Barnum would be proud).</p>
<li><a href="http://www.monoprice.com/products/product.asp?c_id=104&amp;cp_id=10419&amp;cs_id=1041912&amp;p_id=4852&amp;seq=1&amp;format=2">Mini-DVI to HDMI Adapter </a> [$6.94]</li>
<li><a href="http://www.monoprice.com/products/product.asp?c_id=102&amp;cp_id=10218&amp;cs_id=1021804&amp;p_id=5598&amp;seq=1&amp;format=2">6FT 3.5mm Stereo Male to 2RCA Male Cable </a>[$3.24]</li>
<p>If you want digital audio to go over HDMI, you could get one of these instead of the MiniDVI-&gt;HDMI and 1/8&#8243;-&gt;RCA cables:</p>
<li><a href="http://www.monoprice.com/products/product.asp?c_id=104&amp;cp_id=10428&amp;cs_id=1042802&amp;p_id=5969&amp;seq=1&amp;format=2">Mini Displayport Male and USB Male Audio to HDMI Female Converting Adapter</a> [$37.94]</li>
</ul>
<p>I stupidly purchased a MiniDVI-&gt;DVI adapter so I could plug my monitor into the Mac Mini for setup, but the Mac Mini comes with this adapter already.  I was only a few bucks, but still&#8230;</p>
<h4>Software:</h4>
<ul>
<li><a href="http://www.boxee.tv">Boxee</a> or <a href="http://www.plexapp.com">Plex</a> [both FREE]</li>
<li><a href="http://www.iospirit.com/products/remotebuddy/">Remote Buddy</a> [19.99 € which is about $28] or <a href="http://www.gravityapps.com/sofacontrol/">SofaControl</a> [$15]</li>
<li><a href="http://www.macports.org">MacPorts</a> for all those missing standard UNIX command-line utilities that Apple forgot to include (wget, curl, watch, git, unrar, etc.)</li>
<li><a href="http://www.jinx.de/JollysFastVNC.html">JollysFastVNC</a> (not necessary if your WiFi connection is better than mine)</li>
<li><a href="http://www.iospirit.com/labs/candelair/">Candelair IR driver</a></li>
</ul>
<h4>Remote Control:</h4>
<p><a href="http://s-blog.9minutesnooze.com/wp-content/uploads/2009/12/IMG_4570-Edit.jpg"><img class="alignleft size-medium wp-image-120" title="Apple Remote" src="http://s-blog.9minutesnooze.com/wp-content/uploads/2009/12/IMG_4570-Edit-300x200.jpg" alt="Apple Remote" width="300" height="200" /></a>I chose to use the standard Apple Remote control since my primary usage of this machine will be to run <a href="http://boxee.tv">Boxee</a> and it doesn&#8217;t require a lot of functionality to use to the fullest.  The Apple Remote has 7 buttons &#8211; up, down, left, right, center, Menu, and Play/Pause.  If you want to completely live in the Boxee (or Plex) world, this is all you need, really.  However, I wanted to be able to start a few applications, have a virtual mouse, and perform a few other system-related tasks without the assistance of SSH or VNC, so I installed <a href="http://www.iospirit.com/products/remotebuddy/">Remote Buddy</a>.  It extends the functionality of the remote &#8211; you just hold the menu button for a second or so and a separate menu pops up that allows you to perform all sorts of tasks (called &#8220;Behaviours&#8221; in the Remote Buddy world&#8230;yes, they are British) such as opening applications, rebooting the system, adjusting the volume, and even operating the mouse cursor with the remote control.  These functions are very helpful particularly when Boxee crashes (which it seems to do quite frequently).   Remote Buddy has built in actions for many common media center applications, including Boxee, Plex, VLC, and even Firefox.</p>
<p>The Apple Remote supposedly doesn&#8217;t work very well with Snow Leopard, according to various reports and the Plex startup screen.  Not wanting to learn the hard way, I just installed the recommended <a href="http://www.iospirit.com/labs/candelair/">Candelair</a> IR driver.  This replaces the OSX IR Receiver driver and seems to work just great.  I believe this was addressed in a Snow Leopard Service Pack (10.6.2), but I haven&#8217;t bothered testing since the Candelair driver works well, is free, and is made by the same people who make <a href="http://www.iospirit.com/products/remotebuddy/">Remote Buddy</a>.</p>
<h4>Remote Access:</h4>
<p><div id="attachment_111" class="wp-caption alignright" style="width: 240px"><a href="http://s-blog.9minutesnooze.com/wp-content/uploads/2009/12/Screen-shot-2009-12-29-at-5.34.44-PM.png"><img class="size-full wp-image-111" title="Screen Sharing" src="http://s-blog.9minutesnooze.com/wp-content/uploads/2009/12/Screen-shot-2009-12-29-at-5.34.44-PM.png" alt="Screen Sharing Settings" width="230" height="321" /></a><p class="wp-caption-text">Screen Sharing Settings</p></div>For remote access, I use a combination of SSH and VNC.  Because I have a weak wireless 802.11g connection in the living room, the built-in Apple Screen Sharing.app wasn&#8217;t connecting properly to the Mac Mini.  After a good deal of troubleshooting, I came to the conclusion that it was a client-based problem and not the fault of the built-in VNC server on the Mac Mini.  Apple Screen Sharing is simply an extension on the VNC protocol, so I tried a number of VNC applications &#8211; <a href="http://www.jinx.de/JollysFastVNC.html">JollysFastVNC</a> was the best and even supported BonJour.  I had to dial down the Color Depth to 16 bit for things to work, but now it runs reasonably smooth.  To get JollysFastVNC to pass along all special characters (such as Cmd-Tab), I had to go to System Preferences->Universal Access and check  &#8220;Enable access for assistive devices&#8221; on the Mini.  On the client, I had to set Keyboard input to Immersive in JollysFastVNC.  Now, VNCing to the Mini is mostly seamless, though still kind of slow due to my poor wireless signal.</p>
<p>To enable Screen Sharing, SSH, and File Sharing,  go into Apple Menu-&gt;System Preferences-&gt;Sharing and check off Screen Sharing, File Sharing, and Remote login.  Make sure to apply the permissions most relevant to your setting.  It&#8217;s conveniences like this that lead me down the Mac Mini path versus a Linux-based solution. </p>
<h4>Storage:</h4>
<p>The 160GB local disk included with the Mac Mini was simply not enough for a media center storing 720p and 1080p HD content.  I looked into several options including the super-slick <a href="http://www.newertech.com/products/ministackv2_5.php">miniStack</a> which is the same form factor as the Mini, but ultimately I decided that the form factor and faster hard drive was just not important enough to justify the extra expense.  A co-worker sent me a deal at Dell.com for a bare-bones Western Digital Elements 1.5TB USB drive for $99 and I jumped on it.  It is quiet and fast enough for me.  Additionally, it doesn&#8217;t have any lights on it, so it is stealthy in my media cabinet.</p>
<h4>Configuration:</h4>
<p>Really, there was very little configuration involved.  The Mini correctly identified my video resolution and looked great on the TV.  All I  had to do to get things working was plug everything in and install the software.  To make sure everything started on boot, I went into the System Preferences->Accounts->Login Items pane and added  Remote Buddy and Boxee as Login items.  Now, when I restart the computer, everything comes up ready to go.  I also enabled Automatic login in the Accounts->Login Options preferences pane. </p>
<p><a href="http://s-blog.9minutesnooze.com/wp-content/uploads/2010/01/Screen-shot-2010-01-02-at-5.15.51-PM.png"><img src="http://s-blog.9minutesnooze.com/wp-content/uploads/2010/01/Screen-shot-2010-01-02-at-5.15.51-PM-300x102.png" alt="" title="Fixing Play/Pause Button" width="300" height="102" class="alignright size-medium wp-image-134" /></a>By default, the new Play/Pause button and the Select (middle) button on the new Apple Remote seem to have the exact same behavior.  This was annoying in Boxee because I had to click twice to pause running media.  After whining about it (and originally including it in the &#8220;Problems&#8221; section below), I discovered that Remote Buddy allows very granular control over the function of every button.  I went into Remote Buddy->Preferences->Mapping and under &#8220;Behaviours&#8221;->Boxee, I set Play/Pause to the Pause action.  This had the effect of working as both a Pause and an Un-pause button when watching media in Boxee.  Problem solved!</p>
<h4>Problems:</h4>
<ul>
<li>Fast Forward/Rewind Media &#8211; It&#8217;s difficult to fast forward or rewind media.  Local media skips ahead at least 1 minute (or 10 minutes if you use the second of the two fast forward options in Boxee), but to smoothly fast-forward or skip ahead only a few seconds doesn&#8217;t seem to work very well.  In streaming environments, such as Hulu and Netflix, fast-forwarding and rewinding is unreliable at best and just plain doesn&#8217;t work sometimes.</li>
<li>Boxee crashes.  A lot.  Mostly when using <a href="http://www.pandora.com">Pandora</a>.  It can be kind of annoying, but on the other hand, Boxee is free and still in Alpha.  The beta is supposed to be released to the public on January 7, 2010 and I am anxious to give it a try.</li>
</ul>
<h4>Resources:</h4>
<ul>
<li><a href="http://www.tuaw.com/2009/08/21/ultimate-mac-mini-htpc-guide-software/">Ultimate Mac mini HTPC Guide</a></li>
<li><a href="http://www.machtpc.com/">Mac HTPC</a></li>
<li><a href="http://www.123macmini.com/forums/viewforum.php?f=64">123macmini.com &#8211; Mac Mini HTPC</a></li>
<li><a href="http://www.tuaw.com/2009/07/24/behold-my-mac-mini-media-center/">Behold! My Mac mini media center</a></li>
<li><a href="http://karlo.org/2009/09/mac-mini-home-media-center.html">Howto: Building a Mac Mini Home Media Center</a></li>
</ul>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fblog.9minutesnooze.com%2Fmac-mini-media-center-htpc-boxee%2F&amp;title=Mac%20Mini%20Media%20Center%2FHTPC" id="wpa2a_2"><img src="http://blog.9minutesnooze.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://blog.9minutesnooze.com/mac-mini-media-center-htpc-boxee/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using apc (Feed is rejected)
Page Caching using apc
Database Caching 2/13 queries in 0.003 seconds using apc
Object Caching 788/803 objects using apc
Content Delivery Network via Amazon Web Services: CloudFront: s-blog.9minutesnooze.com

Served from: blog.9minutesnooze.com @ 2012-02-05 16:09:53 -->
