<?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>Corey Gouker &#187; Uncategorized</title>
	<atom:link href="http://coreygo.com/index.php/category/uncategorized/feed/" rel="self" type="application/rss+xml" />
	<link>http://coreygo.com</link>
	<description>thoughts of the convoluted</description>
	<lastBuildDate>Tue, 07 Feb 2012 01:01:43 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>How to use IIS7 to rewrite URL&#8217;s and remove the www.</title>
		<link>http://coreygo.com/index.php/2009/04/29/how-to-use-iis7-to-rewrite-urls-and-remove-the-www/</link>
		<comments>http://coreygo.com/index.php/2009/04/29/how-to-use-iis7-to-rewrite-urls-and-remove-the-www/#comments</comments>
		<pubDate>Wed, 29 Apr 2009 19:31:08 +0000</pubDate>
		<dc:creator>Corey</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[IIS]]></category>
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://coreygo.com/?p=408</guid>
		<description><![CDATA[I&#8217;m not sure why, but I&#8217;ve grown to dislike the www. in front of websites. I think it&#8217;s because it&#8217;s pretty superfluous now. Sure one could just type coreygo and press CTRL+Enter and FF or IE adds everything in. But it&#8217;s nice to have a bit more control server side and ensure that everyone goes [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m not sure why, but I&#8217;ve grown to dislike the www. in front of websites. I think it&#8217;s because it&#8217;s pretty superfluous now. Sure one could just type coreygo and press CTRL+Enter and FF or IE adds everything in. But it&#8217;s nice to have a bit more control server side and ensure that everyone goes to the same URL. It&#8217;s also nice to prevent double entries in search engines and all that that entails.</p>
<p>If you&#8217;re using some LAMP type set up you could always just use mod_rewrite with .htaccess  and just do:</p>
<pre class="brush: plain; title: ; notranslate">RewriteEngine On
RewriteCond %{HTTP_HOST} ^www.example.com$ [NC]
RewriteRule ^(.*)$ http://example.com/$1 [R=301,L]</pre>
<p>IIS7 can actually import a .htaccess file and does a good job of converting them over. However if you just want to do the same thing from scratch the quickest way is to pop open the web.config for the website (you can create one if it doesn&#8217;t exist) and add the rewrite rules. Here&#8217;s my complete web.config as an example:</p>
<pre class="brush: xml; title: ; notranslate">&lt; ?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;
&lt;configuration&gt;
    &lt;system .webServer&gt;
        &lt;rewrite&gt;
            &lt;rules&gt;
                &lt;rule name=&quot;Redirect www.&quot; stopProcessing=&quot;true&quot;&gt;
                    &lt;match url=&quot;^(.*)&quot; ignoreCase=&quot;false&quot; /&gt;
                    &lt;conditions logicalGrouping=&quot;MatchAll&quot;&gt;
                        &lt;add input=&quot;{HTTP_HOST}&quot; negate=&quot;true&quot; pattern=&quot;^$&quot; ignoreCase=&quot;false&quot; /&gt;
                        &lt;add input=&quot;{HTTP_HOST}&quot; negate=&quot;true&quot; pattern=&quot;^coreygo.com&quot; /&gt;
                    &lt;/conditions&gt;
                    &lt;action type=&quot;Redirect&quot; url=&quot;http://coreygo.com/{R:1}&quot; redirectType=&quot;Permanent&quot; /&gt;
                &lt;/rule&gt;
            &lt;/rules&gt;
        &lt;/rewrite&gt;
    &lt;/system&gt;
&lt;/configuration&gt;</pre>
<p>Just replace coreygo.com with your own domain and that&#8217;s it. I&#8217;ve got the bindings set up for this site so there&#8217;s just www. but this would also redirect blogs. if that was included as a binding. There&#8217;s a way to make exceptions and such but for <a href="http://learn.iis.net/page.aspx/460/using-url-rewrite-module/">that head over to IIS.net</a> <img src='http://coreygo.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .</p>
]]></content:encoded>
			<wfw:commentRss>http://coreygo.com/index.php/2009/04/29/how-to-use-iis7-to-rewrite-urls-and-remove-the-www/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Am I missing something? Adamo v. MacBook&#8230;</title>
		<link>http://coreygo.com/index.php/2009/04/16/am-i-missing-something-adamo-v-macbook/</link>
		<comments>http://coreygo.com/index.php/2009/04/16/am-i-missing-something-adamo-v-macbook/#comments</comments>
		<pubDate>Fri, 17 Apr 2009 06:27:36 +0000</pubDate>
		<dc:creator>Corey</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Analysis]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Competition]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Industry]]></category>
		<category><![CDATA[Thoughts]]></category>

		<guid isPermaLink="false">http://coreygo.com/?p=369</guid>
		<description><![CDATA[Decided to sell my D430 with docking station today. I don&#8217;t have a clue how much it even cost me 3 years ago. It&#8217;s still a good laptop, I guess&#8230; I&#8217;m just tired of its plastic case and the general crud feel of it. I&#8217;ve punched the screen a few times out of frustration. I [...]]]></description>
			<content:encoded><![CDATA[<p>Decided to sell my D430 with docking station today. I don&#8217;t have a clue how much it even cost me 3 years ago. It&#8217;s still a good laptop, I guess&#8230; I&#8217;m just tired of its plastic case and the general crud feel of it. I&#8217;ve punched the screen a few times out of frustration.</p>
<p>I was browsing through my RSS feeds and noticed an Adamo video which was just horribly uncomfortably bad. I won&#8217;t even link to it. To see if it was just a fluke I went to the <a href="http://www.adamobydell.com/">Adamo website</a>. Unfortunately the same VP of design was in the video. To view it go to the Encounter bit then see how the story of lameness begins.</p>
<p>The odd thing was that while watching this video it totally reminded me of Apple&#8217;s <a href="http://www.apple.com/macbook/the-new-macbook/watch.html#medium">MacBook design video</a>. What really let me down about the Dell video was the tackiness. When you need lame models and stupid sets and crap to sell your laptop design, you&#8217;re on the path to failure. Apple&#8217;s video highlights the machine, the design, the engineering, pure and simple. The way Apple has done for ages.</p>
<p>As I watch the Apple video right now, I think it&#8217;s just dawned on me why Apple systems rock. This argument for me has nothing to do with Windows v. OSX, that&#8217;s irrelevant to me. Why my next system will be a Mac is because I get the feeling that their hardware has a tyrannical asshole genius dictating every minute detail.</p>
<p>When I watch the Dell video I get the feeling that attention to details wasn&#8217;t done because they&#8217;re insane about these things. It was done to play catch up to Apple, to say, see we can be cool and come out with good design if we want to.  That&#8217;s no way to convince me. Sure it&#8217;s Dell&#8217;s hottest machine ever, but the rest of it failed to deliver. Amusing to me as well is how the second best laptop Dell ever made, the X1, was actually a Samsung laptop rebranded but I digress.</p>
<p>Like the title suggests, I personally compared the Adamo to the 13&#8243; MacBook. I&#8217;d get the MacBook. Now I know it&#8217;s actually <a href="http://gizmodo.com/5205524/dell-adamo-full-review-macho-outside-sissy-inside">being compared to</a> the MacBook Air. This is definitely a good compare, while neither system have me wanting&#8230; if I were forced to pick one I almost think I&#8217;d still go with the Air. The Adamo&#8217;s only saving graces are the additional built in ports at the back (where ports should be imho). Otherwise the Air is cheaper, lighter, and faster. Whoa, *not* cheaper than a Mac?! WTF, ah, SSD, at this point in time &#8211; meh.</p>
<p>So with that, I guess I&#8217;m going to put my laptop up on Craigslist and hope I get somewhere. I think I&#8217;ll probably end up actually getting the 15&#8243; MacBook Pro if only because I can&#8217;t be arsed to install my own 7200RPM drive into the MacBook. Plus the 15&#8243; has a discrete nVidia GPU too. I just wish the display was 1920&#215;1200.</p>
<p>I wish I were an asshole genius. Then I really would dictate the perfect system.</p>
]]></content:encoded>
			<wfw:commentRss>http://coreygo.com/index.php/2009/04/16/am-i-missing-something-adamo-v-macbook/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Grr. Comcast techs need some serious training.</title>
		<link>http://coreygo.com/index.php/2009/03/06/grr-comcast-techs-need-some-serious-training/</link>
		<comments>http://coreygo.com/index.php/2009/03/06/grr-comcast-techs-need-some-serious-training/#comments</comments>
		<pubDate>Sat, 07 Mar 2009 01:46:03 +0000</pubDate>
		<dc:creator>Corey</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Rants]]></category>

		<guid isPermaLink="false">http://coreygo.com/?p=788</guid>
		<description><![CDATA[I&#8217;m not sure where I should begin. I recently upgraded from my 6/1Mbps Comcast service to a DOCSIS 3.0 enabled 22/5Mbps service. Ever since then it&#8217;s been a nightmare of visit after visit, I&#8217;m now on the 5th. In total I&#8217;ve probably had to take at least 20 hours off work just to be here [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m not sure where I should begin. I recently upgraded from my 6/1Mbps Comcast service to a DOCSIS 3.0 enabled 22/5Mbps service. Ever since then it&#8217;s been a nightmare of visit after visit, I&#8217;m now on the 5th. In total I&#8217;ve probably had to take at least 20 hours off work just to be here to witness the technician incopetence first hand.</p>
<p>The first visit was the install, he didn&#8217;t even run a speed test to confirm everything. The second visit they tried swapping the modem but apparently that replacement was bad. The third visit they sent a home service guy who didn&#8217;t even know the login for the modem. The fourth visit was the only good visit but that was because he was an office technician, not some field dude. This guy clearly knew what he was talking about and we got to the bottom of the problem quickly. It was the modem. What&#8217;s sad though is this guy had the best customer interaction of any of them yet he&#8217;s the one that the customers never get to talk to or see.</p>
<p>Now I&#8217;m writing this during my 5th visit. This guy has been up since 3AM. But it&#8217;s hardly an excuse. What should&#8217;ve been a very simple modem replacement has turned into a 3 hour wait. He didn&#8217;t even bring the replacement modem that was noted in the service request. Instead he&#8217;s made about a dozen calls and we&#8217;ve been waiting for some other tech to actually bring the modem. I&#8217;m pretty sure the guy that just showed up isn&#8217;t him, I think it&#8217;s his manager. But they&#8217;re still trying to figure out how to get into this modem despite it working fine through my router. Why they can&#8217;t just replace my modem and leave I don&#8217;t know. Sigh&#8230;</p>
<p>10 minutes later&#8230; Yep I was right &#8220;three&#8217;s a party we&#8217;ve got another guy coming&#8221;. Great&#8230; Do they have no concept that customer&#8217;s time, especially business customer&#8217;s time is valuable!?</p>
<p>The main problem I have with this guy is that he keeps getting things wrong. Example, first thing he did was pull up the info to look at the down and upstream channel. Everything was fine, it was locked at 64QAM like it should be. He reset some stuff, then made a few calls after he couldn&#8217;t get in, then that person said it was locked to 16QAM. They do more crap and 64QAM again like it was before, retest directly through the modem and now it&#8217;s getting 30/8, great&#8230; 5 minutes later it&#8217;s 30/1. Bad&#8230;</p>
<p>I&#8217;m already upstairs now just leaving them to do their thing since it&#8217;s actually rather annoying not being at work waiting for them to really just sit there. On the possitive side I think I just figured out the buzz from my receiver was being caused by interference from the power cord on the TV. Go figure&#8230;</p>
<p>3rd guy has arrived right now. He apparently knows what he&#8217;s doing, somewhat&#8230; Now they&#8217;re saying they need my laptop because they can only seem to get to the modem through my router&#8230; Ruh roh.</p>
<p>Okay so they&#8217;ve factory reset the modem and can now get into it finally. Getting the right speeds via dynamic IP so that&#8217;s good. He&#8217;s on the phone with a guy to push down a brand new created from scratch config file. Fingers crossed as it flashes and reboots. I really just want to go to work (surprising since it&#8217;s Friday and I should just say WFH at this point since it&#8217;s now 2:15).</p>
<pre style="padding-left: 30px;"><span style="font-family: courier new,courier;">Downstream Channel
Downstream Frequency 603.001465 MHz  597.000122 MHz
Lock Status    Locked    Locked
Modulation     256 QAM    256 QAM
Symbol Rate    5.360537Msym/sec  5.360537Msym/sec
Downstream Power   5.066157 dBmV   4.432274 dBmV
SNR      36.844 dB    37.093 dB   </span></pre>
<pre style="padding-left: 30px;"><span style="font-family: courier new,courier;">Upstream Channel
Upstream Frequency   37000000 Hz
Lock Status    Locked
Modulation     64QAM
Symbol Rate    5120 KSym/sec
Upstream Power    41.1800 dBmV
Channel ID     3</span></pre>
<p><img style="margin: 5px; float: left; border: 0px;" src="http://www.speedtest.net/result/424537164.png" alt="SpeedTest.net" width="300" height="135" />Yay, good speeds with a static IP!!!</p>
<p>Why on Earth did this take 5 visits!? Why on Earth did I have to miss 20 hours of work? And why couldn&#8217;t they have just solved this directly from their office?</p>
<p>The signals all looked good from the start, they could&#8217;ve tested from my box with a test modem to confirm everything. And most importantly they could&#8217;ve just created a brand new config file from the office!</p>
<p>How totally lame <img src='http://coreygo.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<div class="feedflare">
<a href="http://feeds2.feedburner.com/~ff/coreygo?a=Dri3dRoAt9s:DAgaFIj2Fy4:yIl2AUoC8zA"><img src="http://feeds2.feedburner.com/~ff/coreygo?d=yIl2AUoC8zA" border="0"/></a> <a href="http://feeds2.feedburner.com/~ff/coreygo?a=Dri3dRoAt9s:DAgaFIj2Fy4:D7DqB2pKExk"><img src="http://feeds2.feedburner.com/~ff/coreygo?i=Dri3dRoAt9s:DAgaFIj2Fy4:D7DqB2pKExk" border="0"/></a> <a href="http://feeds2.feedburner.com/~ff/coreygo?a=Dri3dRoAt9s:DAgaFIj2Fy4:F7zBnMyn0Lo"><img src="http://feeds2.feedburner.com/~ff/coreygo?i=Dri3dRoAt9s:DAgaFIj2Fy4:F7zBnMyn0Lo" border="0"/></a> <a href="http://feeds2.feedburner.com/~ff/coreygo?a=Dri3dRoAt9s:DAgaFIj2Fy4:V_sGLiPBpWU"><img src="http://feeds2.feedburner.com/~ff/coreygo?i=Dri3dRoAt9s:DAgaFIj2Fy4:V_sGLiPBpWU" border="0"/></a> <a href="http://feeds2.feedburner.com/~ff/coreygo?a=Dri3dRoAt9s:DAgaFIj2Fy4:qj6IDK7rITs"><img src="http://feeds2.feedburner.com/~ff/coreygo?d=qj6IDK7rITs" border="0"/></a> <a href="http://feeds2.feedburner.com/~ff/coreygo?a=Dri3dRoAt9s:DAgaFIj2Fy4:gIN9vFwOqvQ"><img src="http://feeds2.feedburner.com/~ff/coreygo?i=Dri3dRoAt9s:DAgaFIj2Fy4:gIN9vFwOqvQ" border="0"/></a>
</div>
<p><img src="http://feeds2.feedburner.com/~r/coreygo/~4/Dri3dRoAt9s" height="1" width="1"/></p>
]]></content:encoded>
			<wfw:commentRss>http://coreygo.com/index.php/2009/03/06/grr-comcast-techs-need-some-serious-training/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Another Roku SoundBridge Radio Dead</title>
		<link>http://coreygo.com/index.php/2009/03/06/another-roku-soundbridge-radio-dead/</link>
		<comments>http://coreygo.com/index.php/2009/03/06/another-roku-soundbridge-radio-dead/#comments</comments>
		<pubDate>Fri, 06 Mar 2009 17:49:14 +0000</pubDate>
		<dc:creator>Corey</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Bad Technology]]></category>
		<category><![CDATA[Rants]]></category>

		<guid isPermaLink="false">http://coreygo.com/?p=784</guid>
		<description><![CDATA[I bought my Roku SoundBridge Radio on 5/14/2007 for $300. About a month ago now in the middle of the night it just kept rebooting. It woke me up so I just unplugged it. The next day I go to plug it in again and it refuses to turn on. First thing I did was [...]]]></description>
			<content:encoded><![CDATA[<p>I bought my <a href="http://www.roku.com/products_soundbridgeradio.php" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.roku.com/products_soundbridgeradio.php');">Roku SoundBridge Radio</a> on 5/14/2007 for $300. About a month ago now in the middle of the night it just kept rebooting. It woke me up so I just unplugged it. The next day I go to plug it in again and it refuses to turn on. First thing I did was check the warranty, sadly it was only 1 year long. Next thing I did was check the <a href="http://forums.roku.com/viewforum.php?f=16" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://forums.roku.com/viewforum.php?f=16');">Roku Forums</a>&#8230;</p>
<p>Within 10 seconds it became apparent why the warranty was only 1 year and not 3 or 5. The first 5 <a href="http://forums.roku.com/viewtopic.php?t=19088" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://forums.roku.com/viewtopic.php?t=19088');">threads on the forum</a> were all for <a href="http://forums.roku.com/viewtopic.php?t=15299" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://forums.roku.com/viewtopic.php?t=15299');">dead SoundBridge Radio&#8217;s</a>, total view count on these threads is about 50K. The <a href="http://forums.roku.com/viewtopic.php?p=117547#117547" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://forums.roku.com/viewtopic.php?p=117547#117547');">root cause of the problem</a>? Faulty PSU&#8217;s which were inadequately designed. What&#8217;s amazing is just how many people really truly loved this product, including me. So much so that when they all started failing people tried fixing the units themselves and tried helping others figure out the problems. Some hardcore electrical engineering geekiness too. Hell, one guy even provided a <a href="http://www.flickr.com/photos/aaronferrucci/3318342504/in/set-72157614593223550/" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.flickr.com/photos/aaronferrucci/3318342504/in/set-72157614593223550/');">Flickr page showing</a> the fault capacitor. What&#8217;s depressing is that this WiFi network audio alarm radio costs a full $300, and yet they couldn&#8217;t even spare an extra 20 cents of profit per unit to use higher quality components to ensure customer satisfaction and product longevity. WTF!?</p>
<blockquote><p>As a professional engineer with many years experience I consider that the Soundbridge radio is a unit where the power supply is bound to fail on a regular basis. Because of the total lack of thermal management which is mainly due to the plastic box and tape around the box the components on the PSU, which is always on, run at an excessive temperature. Back of the envelope calculations suggest the mean time to failure will be in the order of 7 months! Even with the higher rated replacements I have only improved this figure by about a factor of three.</p>
</blockquote>
<p>I really loved my Roku, in fact I used to say how it was the one piece of technology in my life that &#8220;just worked&#8221;. It did exactly what I wanted and worked perfectly, sounded great too. Then this&#8230; What a shame. I&#8217;m guessing the little Roku&#8217;s aren&#8217;t as susceptible to this kind of failure, mainly because they&#8217;re much simpler in design and don&#8217;t require the same power. But I&#8217;m sure they&#8217;re just as poorly engineered none the less.</p>
<p>With that, let me say, I will never recommend or buy a Roku product again. I highly suggest you don&#8217;t either. Even if that $100 Roku Player looks tempting.</p>
<div class="feedflare">
<a href="http://feeds2.feedburner.com/~ff/coreygo?a=OzvbnwmT5Es:4uETNztoZH4:yIl2AUoC8zA"><img src="http://feeds2.feedburner.com/~ff/coreygo?d=yIl2AUoC8zA" border="0"/></a> <a href="http://feeds2.feedburner.com/~ff/coreygo?a=OzvbnwmT5Es:4uETNztoZH4:D7DqB2pKExk"><img src="http://feeds2.feedburner.com/~ff/coreygo?i=OzvbnwmT5Es:4uETNztoZH4:D7DqB2pKExk" border="0"/></a> <a href="http://feeds2.feedburner.com/~ff/coreygo?a=OzvbnwmT5Es:4uETNztoZH4:F7zBnMyn0Lo"><img src="http://feeds2.feedburner.com/~ff/coreygo?i=OzvbnwmT5Es:4uETNztoZH4:F7zBnMyn0Lo" border="0"/></a> <a href="http://feeds2.feedburner.com/~ff/coreygo?a=OzvbnwmT5Es:4uETNztoZH4:V_sGLiPBpWU"><img src="http://feeds2.feedburner.com/~ff/coreygo?i=OzvbnwmT5Es:4uETNztoZH4:V_sGLiPBpWU" border="0"/></a> <a href="http://feeds2.feedburner.com/~ff/coreygo?a=OzvbnwmT5Es:4uETNztoZH4:qj6IDK7rITs"><img src="http://feeds2.feedburner.com/~ff/coreygo?d=qj6IDK7rITs" border="0"/></a> <a href="http://feeds2.feedburner.com/~ff/coreygo?a=OzvbnwmT5Es:4uETNztoZH4:gIN9vFwOqvQ"><img src="http://feeds2.feedburner.com/~ff/coreygo?i=OzvbnwmT5Es:4uETNztoZH4:gIN9vFwOqvQ" border="0"/></a>
</div>
<p><img src="http://feeds2.feedburner.com/~r/coreygo/~4/OzvbnwmT5Es" height="1" width="1"/></p>
]]></content:encoded>
			<wfw:commentRss>http://coreygo.com/index.php/2009/03/06/another-roku-soundbridge-radio-dead/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Being ahead of the curve with Media Center</title>
		<link>http://coreygo.com/index.php/2009/03/04/being-ahead-of-the-curve-with-media-center/</link>
		<comments>http://coreygo.com/index.php/2009/03/04/being-ahead-of-the-curve-with-media-center/#comments</comments>
		<pubDate>Thu, 05 Mar 2009 03:05:29 +0000</pubDate>
		<dc:creator>Corey</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Boxee]]></category>
		<category><![CDATA[Ideas]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Media Center]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Rants]]></category>
		<category><![CDATA[TV]]></category>

		<guid isPermaLink="false">http://coreygo.com/?p=767</guid>
		<description><![CDATA[Below is an email I sent that I’ve modified just a bit to fit a discussion that’s been coming up pretty regularly. This email was in response to a thread that was started about how the Apple TV is doing, it was sent before the Boxee / Hulu removal announcement though that news doesn’t really [...]]]></description>
			<content:encoded><![CDATA[<p>Below is an email I sent that I’ve modified just a bit to fit a discussion that’s been coming up pretty regularly. This email was in response to a thread that was started about how the Apple TV is doing, it was sent before the Boxee / Hulu removal announcement though that news doesn’t really change any of this post for me.</p>
<blockquote><p>FWIW, I honestly think a lot of the sales this quarter were thanks to Boxee Alpha/Beta which quite frankly rocks on the Apple TV. I wouldn’t buy an Apple TV, but would now thanks to Boxee even in its early stages.</p>
<p>While Apple TV may only have ~400-500K units, I’m pretty sure every one of those users is using it as intended with a TV. On the other hand, Media Center has shipped what? 20M+ units last I remember seeing from the banners… But that’s just counting SKU’s that contained Media Center correct? Microsoft shouldn’t be concerned with that number when comparing, Microsoft should be looking at the number of users actually using the app and using TV. Usage data for the number of WMC PC’s connected to TV’s? Data for the number of unique guide downloads… IIRC it’s a heck of a lot closer to 500K than 20M <img src='http://coreygo.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .</p>
<p>Personally, when I moved to West Seattle I completely dropped all cable services and vowed not to pay Comcast again [except for my business Internet]. OCUR was great, it really was. Despite the royal pain the setup process was, thanks to Comcast’s inexperience with the technology, afterwards it was great and ran smoothly for me. At the end of the day though it just wasn’t worth the monthly service fees. And heck, I could only do OCUR because I was internal, not because I spent another $1K+ on a brand new PC. So the fallback would then become a tuner with NTSC/ATSC/QAM… Like many OEM’s are doing, I personally skipped over the TV Pack and went right to 7 so it’s only now that I could get digital content easily. Up until now though if I wanted to use Media Center as my TV source, as a normal consumer, I’d have to be using two clunky STB’s in combo with a dual tuner and the IR blasters and all that other junk. Not very elegant…</p>
<p>So like the growing few, I dumped the cable and bumped up my business Internet service speeds. $65/mo for 12/2Mbps… I use Hulu, Netflix, Joost, network sites, MTV, you name it. Combine that with P2P and there’s really no need to ever go back to cable. The one thing that makes me sad, really sad, is that Media Center doesn’t fit into this new TV ecosystem. It’s only now with 7 that it’s becoming a bit more compelling for users who don’t use tuners. Internet content through MSN and such is great but where’s the MCML from Hulu, Netflix, and all those? Where’s the rich metadata for my downloaded content? Where’s the social aspects as well?</p>
<p><a href="http://coreygo.com/wp-content/uploads/2009/03/screenshot001.jpg"><img class="alignleft size-thumbnail wp-image-768" title="Boxee Episode List" src="http://coreygo.com/wp-content/uploads/2009/03/screenshot001-150x150.jpg" alt="Boxee Episode List" width="150" height="150" /></a>One thing Boxee has done and done really well is create an experience around the way people use downloaded and online media making it incredibly easy to dump the wire. What really got me was when I loaded up Boxee the second day. I went in to watch some of the Arrested Development that auto downloaded via RSS. It parsed the share and sorted each show, then under that each season, then under that each episode. What’s more the thumb for every episode is perfect (<a title="Boxee Episode List" href="http://coreygo.com/wp-content/uploads/2009/03/screenshot001.jpg">see screenshot</a>). Going to more for the episode pulls up complete metadata. All it had to go on was TVArrested Development310 – Fakin’ It.avi there’s no other metadata, no XML files, no album art in the folder. It does this for my MKV movies too, MoviesWALL-EWALL-E.mkv and sure enough it has the art and metadata, no DVDID.xml, no pain.</p>
<p><a href="http://coreygo.com/wp-content/uploads/2009/03/screenshot002.jpg"><img class="size-thumbnail wp-image-769 alignright" title="Boxee Details for Episode" src="http://coreygo.com/wp-content/uploads/2009/03/screenshot002-150x150.jpg" alt="Boxee Details for Episode" width="150" height="150" /></a>Yes Boxee is Alpha, no, it doesn’t have any of the amazingly hard work that went into making it compatible with the multitude of tuners. It has a lot of usability and stability issues, it’s not gone through as many iterations as Media Center so it’s not as refined. But man, for an Alpha it’s bloody awesome, I highly suggest getting the Windows Alpha asap and give it a honest go, set up uTorrent with RSS, see if you could make the switch to a cableless life and live on the bleeding edge.</p>
<p>Honestly, I’ve loved Media Center since the days when it was only Freestyle. I supported it as a MVP for 6 years, 3 years on the eHome beta team, and will continue to support it. I’m just a bit bummed out by the fact that Media Center has failed to deliver on features that have been asked for since 2002. What is Microsoft going to do to remain competitive when Boxee goes mainstream and releases STB devices like the Apple TV? I’m happy to see the start of Internet content via MSN but where are the third party deals with the providers that people use now?</p>
<p>When I was sitting for 4 hours in Las Vegas International for Snowpocalypse 2008 to allow my plane to arrive; I busted out the iPhone, connected to the free WiFi, downloaded Joost and started watching The Fifth Element for free. It wasn’t a big TV and it wasn’t HD, but honestly it didn’t matter. I had the content and the experience was awesome and easy. How is Media Center going to deliver that same grin on people’s faces when the predominant source of content is the Internet and third party services?</p></blockquote>
<p>So there you have it… My little rant about why Media Center doesn’t fit me anymore. Writing this and discussing it further later made me realize that there’s actually nothing really wrong with Media Center at all, for your every day average person it’s great. Sure it could be a little simpler to get going like TiVo but as far as the ultimate experience, Media Center is definitely it. This will continue to be true so long as TV and movies continue to be delivered the way everyone has received this content for years. However I personally believe that as more people realize that dumping the wire is easy the trend to only use the Internet will continue. Plus to make things more interesting, analog broadcasts won’t necessarily continue from all the cable providers. They could very well move them over to encrypted QAM as far as I know. If this were to happen you’d need to rent a fugly STB for each tuner you planned on using. Even less elegant.</p>
<p>I realized that I’m just way ahead of the curve. I was watching TV on my PC with an old BT848 Hauppauge tuner back in 1997 then tried but failed to use WinTV. Then I used Media Center before it was Media Center, then OCUR came and went. Now I’ve completely ditched TV altogether and only stream with the Internet. If the past is any indication the wave should finally catch up with me in another 3 to 5 years, what I’ll be doing at that point is anybody’s guess.</p>
<div class="feedflare"><a href="http://feeds2.feedburner.com/~ff/coreygo?a=1SaRaiemjxg:SSQz6dI4Pyc:yIl2AUoC8zA"><img src="http://feeds2.feedburner.com/~ff/coreygo?d=yIl2AUoC8zA" border="0" alt="" /></a> <a href="http://feeds2.feedburner.com/~ff/coreygo?a=1SaRaiemjxg:SSQz6dI4Pyc:D7DqB2pKExk"><img src="http://feeds2.feedburner.com/~ff/coreygo?i=1SaRaiemjxg:SSQz6dI4Pyc:D7DqB2pKExk" border="0" alt="" /></a> <a href="http://feeds2.feedburner.com/~ff/coreygo?a=1SaRaiemjxg:SSQz6dI4Pyc:F7zBnMyn0Lo"><img src="http://feeds2.feedburner.com/~ff/coreygo?i=1SaRaiemjxg:SSQz6dI4Pyc:F7zBnMyn0Lo" border="0" alt="" /></a> <a href="http://feeds2.feedburner.com/~ff/coreygo?a=1SaRaiemjxg:SSQz6dI4Pyc:V_sGLiPBpWU"><img src="http://feeds2.feedburner.com/~ff/coreygo?i=1SaRaiemjxg:SSQz6dI4Pyc:V_sGLiPBpWU" border="0" alt="" /></a> <a href="http://feeds2.feedburner.com/~ff/coreygo?a=1SaRaiemjxg:SSQz6dI4Pyc:qj6IDK7rITs"><img src="http://feeds2.feedburner.com/~ff/coreygo?d=qj6IDK7rITs" border="0" alt="" /></a> <a href="http://feeds2.feedburner.com/~ff/coreygo?a=1SaRaiemjxg:SSQz6dI4Pyc:gIN9vFwOqvQ"><img src="http://feeds2.feedburner.com/~ff/coreygo?i=1SaRaiemjxg:SSQz6dI4Pyc:gIN9vFwOqvQ" border="0" alt="" /></a></div>
<p><img src="http://feeds2.feedburner.com/~r/coreygo/~4/1SaRaiemjxg" alt="" width="1" height="1" /></p>
]]></content:encoded>
			<wfw:commentRss>http://coreygo.com/index.php/2009/03/04/being-ahead-of-the-curve-with-media-center/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pray 2000-12? WTF? I don’t understand!?</title>
		<link>http://coreygo.com/index.php/2009/02/19/pray-2000-12-wtf-i-don%e2%80%99t-understand/</link>
		<comments>http://coreygo.com/index.php/2009/02/19/pray-2000-12-wtf-i-don%e2%80%99t-understand/#comments</comments>
		<pubDate>Thu, 19 Feb 2009 22:19:20 +0000</pubDate>
		<dc:creator>Corey</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Ideas]]></category>

		<guid isPermaLink="false">http://coreygo.com/?p=765</guid>
		<description><![CDATA[As I was driving the 90 on my way in to work this morning I couldn&#8217;t help but notice some crappy new Ford Taurus driving along with a huge American flag in the rear window, right next to it was this print out with a fat red border. As I got closer I noticed it [...]]]></description>
			<content:encoded><![CDATA[<p>As I was driving the 90 on my way in to work this morning I couldn&#8217;t help but notice some crappy new Ford Taurus driving along with a huge American flag in the rear window, right next to it was this print out with a fat red border. As I got closer I noticed it said Pray 2000-12. Umm, okay? I really can&#8217;t fathom why I should pray for any particular date, especially one that&#8217;s already passed. So I&#8217;m going to guess the lady meant Pray 2012. Or maybe it was 2000 minus 12 so 1988, which happened to be a leap year, other than that I don&#8217;t really see any <a href="http://en.wikipedia.org/wiki/1988#Events_of_1988" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://en.wikipedia.org/wiki/1988#Events_of_1988');">major events in that year</a>. So yeah, she definitely must&#8217;ve been talking about <a href="http://en.wikipedia.org/wiki/2012_Doomsday_Prediction" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://en.wikipedia.org/wiki/2012_Doomsday_Prediction');">the 2012 Doomsday Prediction</a>.</p>
<p>Then I actually started thinking. Why on Earth is this lady driving to work or wherever she&#8217;s driving. Why is she telling people ot pray for the doomsday? Why does anyone tell someone to pray for some supposed doomsday event that&#8217;s going to occur? I mean fuck, if I knew for certain that on 12/21/2012 the world were going to end, I&#8217;d just say screw it and have a blast. I&#8217;d quit work, travel the world, have the best 2 years of my life. Then towards the end in the last year, depending on what this apocalypse entails I&#8217;d probably just try and find an isolated corner of the planet to sit it out and be away from all the idiots who will be causing insanity. So seriously. WTF purpose is there for telling people to pray for 2012?</p>
<p>Of course the fact this lady printed out a sign for everyone to see and still left it saying 2000-12 must mean she&#8217;s lacking some basic mental faculties. So I suppose like praying, making this sign to let everyone else know that they should pray gives her a good feeling inside. More power to her I guess.</p>
<p>For me, I&#8217;ve just realized that this sort of thought process that I go through on my way in to work really does tell me there is no God and that I&#8217;ll never believe otherwise. I constantly try and put myelf in the other persons shoes and try to imagine their thought process and think like they do. But I can&#8217;t. No matter how hard I try I can&#8217;t fathom having this belief in a supreme being. Nor can I fathom having complete faith in some religion that likely didn&#8217;t even exist 200 years ago. Or a religion that&#8217;s based on interpretations of a book that&#8217;s based on beliefs and general understanding that comes from a time before the Earth wasn&#8217;t flat.</p>
<p>I&#8217;m not saying believing in God is a bad thing, by all means some people need that. I start becoming frustrated when people tie that belief to a religion. Why can&#8217;t people take a little more responsbility for themselves and decide religion is just taking that comfort level a step further.</p>
<p>Come to think of it though, this reminds me of <a href="http://www.ted.com/index.php/talks/elizabeth_gilbert_on_genius.html" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.ted.com/index.php/talks/elizabeth_gilbert_on_genius.html');">Elizabeth Gilbert&#8217;s talk at TED</a> on a different way to think about creative genius. Perhaps the reason why people adopt a faith in God and rely on religion is because they can&#8217;t deal with the disappointment of their own failure or the lack of their moral judgement. Or look to those beliefs as a way out of having to think about these things to which they really can never have the answer. Maybe this weight is too much to bear. I&#8217;ve certainly tried imagining the big bang and the begining of the Universe as well as a belief in God. Yet neither solution to the question really provides me with an answer I can say is fact. I guess I just have a problem with nothingness. I try and visualize this because I&#8217;m a visual person. It just doesn&#8217;t work for me. I try imagining the entire thing as a linear timeline, then non-linear. It just doesn&#8217;t work. Shit. How can there be something from nothing? What was before the bang or God? If it&#8217;s it&#8217;s non-linear than how did this even happen? If someone snapped their fingers than what started it all for them?</p>
<p>I fucking hate logic loops. Screw <a href="http://en.wikipedia.org/wiki/The_chicken_or_the_egg" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://en.wikipedia.org/wiki/The_chicken_or_the_egg');">the chicken and that damn egg</a> it came in.</p>
<div class="feedflare">
<a href="http://feeds2.feedburner.com/~f/coreygo?a=wvUuQUbU"><img src="http://feeds2.feedburner.com/~f/coreygo?d=41" border="0"/></a> <a href="http://feeds2.feedburner.com/~f/coreygo?a=zgLzJlV2"><img src="http://feeds2.feedburner.com/~f/coreygo?i=zgLzJlV2" border="0"/></a> <a href="http://feeds2.feedburner.com/~f/coreygo?a=Wiaw7AKE"><img src="http://feeds2.feedburner.com/~f/coreygo?i=Wiaw7AKE" border="0"/></a> <a href="http://feeds2.feedburner.com/~f/coreygo?a=9YeCOhfa"><img src="http://feeds2.feedburner.com/~f/coreygo?i=9YeCOhfa" border="0"/></a> <a href="http://feeds2.feedburner.com/~f/coreygo?a=kBxpKWjO"><img src="http://feeds2.feedburner.com/~f/coreygo?d=52" border="0"/></a> <a href="http://feeds2.feedburner.com/~f/coreygo?a=8qqoIIdC"><img src="http://feeds2.feedburner.com/~f/coreygo?i=8qqoIIdC" border="0"/></a>
</div>
<p><img src="http://feeds2.feedburner.com/~r/coreygo/~4/Q-IyiZhsfjY" height="1" width="1"/></p>
]]></content:encoded>
			<wfw:commentRss>http://coreygo.com/index.php/2009/02/19/pray-2000-12-wtf-i-don%e2%80%99t-understand/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>And I’m back… 6TB array up and running.</title>
		<link>http://coreygo.com/index.php/2009/02/13/and-i%e2%80%99m-back%e2%80%a6-6tb-array-up-and-running/</link>
		<comments>http://coreygo.com/index.php/2009/02/13/and-i%e2%80%99m-back%e2%80%a6-6tb-array-up-and-running/#comments</comments>
		<pubDate>Fri, 13 Feb 2009 07:10:24 +0000</pubDate>
		<dc:creator>Corey</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Home Life]]></category>

		<guid isPermaLink="false">http://coreygo.com/index.php/2009/02/12/and-im-back-6tb-array-up-and-running/</guid>
		<description><![CDATA[Hopefully no one actually noticed any down time. But the migration to the new array has so far gone smoothly and this is just a quick test to make sure the MySQL DB can continue to be written correctly and so on. I&#8217;m pretty sure the DB and IIS stuff is fine though, the paths [...]]]></description>
			<content:encoded><![CDATA[<p>Hopefully no one actually noticed any down time. But the migration to the new array has so far gone smoothly and this is just a quick test to make sure the MySQL DB can continue to be written correctly and so on. I&#8217;m pretty sure the DB and IIS stuff is fine though, the paths haven&#8217;t changed.</p>
<p>Yay, more space.</p>
<div class="feedflare">
<a href="http://feeds2.feedburner.com/~f/coreygo?a=qrrll3Aj"><img src="http://feeds2.feedburner.com/~f/coreygo?d=41" border="0"/></a> <a href="http://feeds2.feedburner.com/~f/coreygo?a=Qx72y78C"><img src="http://feeds2.feedburner.com/~f/coreygo?i=Qx72y78C" border="0"/></a> <a href="http://feeds2.feedburner.com/~f/coreygo?a=3DinxD51"><img src="http://feeds2.feedburner.com/~f/coreygo?i=3DinxD51" border="0"/></a> <a href="http://feeds2.feedburner.com/~f/coreygo?a=Vo7D6bsr"><img src="http://feeds2.feedburner.com/~f/coreygo?i=Vo7D6bsr" border="0"/></a> <a href="http://feeds2.feedburner.com/~f/coreygo?a=eEHCQkDI"><img src="http://feeds2.feedburner.com/~f/coreygo?d=52" border="0"/></a> <a href="http://feeds2.feedburner.com/~f/coreygo?a=2KTt4yjI"><img src="http://feeds2.feedburner.com/~f/coreygo?i=2KTt4yjI" border="0"/></a>
</div>
<p><img src="http://feeds2.feedburner.com/~r/coreygo/~4/6X8xjk123fs" height="1" width="1"/></p>
]]></content:encoded>
			<wfw:commentRss>http://coreygo.com/index.php/2009/02/13/and-i%e2%80%99m-back%e2%80%a6-6tb-array-up-and-running/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A little down time coming tomorrow evening.</title>
		<link>http://coreygo.com/index.php/2009/02/10/a-little-down-time-coming-tomorrow-evening/</link>
		<comments>http://coreygo.com/index.php/2009/02/10/a-little-down-time-coming-tomorrow-evening/#comments</comments>
		<pubDate>Wed, 11 Feb 2009 06:09:15 +0000</pubDate>
		<dc:creator>Corey</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Home Life]]></category>

		<guid isPermaLink="false">http://coreygo.com/?p=761</guid>
		<description><![CDATA[I&#8217;m honestly a bit surprised that the time has already come but sure enough I&#8217;ve run out of space on my home server which hosts this blog. I did have 8 * 500GB Seagate 7200.10&#8217;s in a RAID5 configuration formatted for a total of 3.17TB of space. I can&#8217;t remember when I actually first got [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m honestly a bit surprised that the time has already come but sure enough I&#8217;ve run out of space on my home server which hosts this blog. I did have 8 * 500GB Seagate 7200.10&#8217;s in a RAID5 configuration formatted for a total of 3.17TB of space. I can&#8217;t remember when I actually first got the volume set up and everything moved so I don&#8217;t really have a good idea of the average amount of new data per day. Regardless as of this moment I have 4.8GB free.</p>
<p>UPS just delivered the 4 * 1.5TB Seagate 7200.11&#8217;s today and I&#8217;m busily using robocopy to mirror all the data onto 1 of the 1.5TB drives and 1 spare 1.5TB I had spare. The scary thing is that the music content is over 600GB and the video content is over 1.2TB.</p>
<p>My plan is to hold the migrated data on the two separate drives and create the new RAID5 array with 3 drives then move the IIS data and the rest of the data back. Then adding the 4th 1.5TB to expand the entire set out to 6TB total, total amount of space should be 4.5TB or about 4.08TB formatted with NTFS. The extra .91TB of space should hopefully last long enough for me to be able to add 4 more 1.5TB drives next year.</p>
<p>Here&#8217;s hoping for a data loss free transition and little down time tomorrow while I create the new RAID volume. And here&#8217;s hoping I don&#8217;t use up the new drives as quickly not to mention have any issues with 7200.11 firmware <img src='http://coreygo.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .</p>
<div class="feedflare">
<a href="http://feeds2.feedburner.com/~f/coreygo?a=LkUwvXMc"><img src="http://feeds2.feedburner.com/~f/coreygo?d=41" border="0"/></a> <a href="http://feeds2.feedburner.com/~f/coreygo?a=tzvl4Idc"><img src="http://feeds2.feedburner.com/~f/coreygo?i=tzvl4Idc" border="0"/></a> <a href="http://feeds2.feedburner.com/~f/coreygo?a=sF7vtYAw"><img src="http://feeds2.feedburner.com/~f/coreygo?i=sF7vtYAw" border="0"/></a> <a href="http://feeds2.feedburner.com/~f/coreygo?a=2TCC8Jim"><img src="http://feeds2.feedburner.com/~f/coreygo?i=2TCC8Jim" border="0"/></a> <a href="http://feeds2.feedburner.com/~f/coreygo?a=KKQNlQtx"><img src="http://feeds2.feedburner.com/~f/coreygo?d=52" border="0"/></a> <a href="http://feeds2.feedburner.com/~f/coreygo?a=awXpnuNb"><img src="http://feeds2.feedburner.com/~f/coreygo?i=awXpnuNb" border="0"/></a>
</div>
<p><img src="http://feeds2.feedburner.com/~r/coreygo/~4/gG5wtxO4eO0" height="1" width="1"/></p>
]]></content:encoded>
			<wfw:commentRss>http://coreygo.com/index.php/2009/02/10/a-little-down-time-coming-tomorrow-evening/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Focus, execution, and delivering something amazing.</title>
		<link>http://coreygo.com/index.php/2009/02/07/focus-execution-and-delivering-something-amazing/</link>
		<comments>http://coreygo.com/index.php/2009/02/07/focus-execution-and-delivering-something-amazing/#comments</comments>
		<pubDate>Sat, 07 Feb 2009 19:32:08 +0000</pubDate>
		<dc:creator>Corey</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Ideas]]></category>
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://coreygo.com/?p=757</guid>
		<description><![CDATA[Taking my last post a bit further&#8230; Sure any smart phone can pull up bus times. But had we tried this with my old BlackJack II with Windows Mobile 6.1 we probably would&#8217;ve been waiting till 9:45 for it to return the same results. Either that or I would&#8217;ve gone down stairs, waited for the laptop [...]]]></description>
			<content:encoded><![CDATA[<p>Taking my last post a bit further&#8230; Sure any smart phone can pull up bus times. But had we tried this with my old BlackJack II with Windows Mobile 6.1 we probably would&#8217;ve been waiting till 9:45 for it to return the same results. Either that or I would&#8217;ve gone down stairs, waited for the laptop to come out of standby and then pull up the same results. I really loved my old Windows phone, but it just didn&#8217;t work the way you&#8217;d want it to. I could start the GPS at home, get to work and it still wouldn&#8217;t have a lock and that was with Google or Windows Live. I don&#8217;t think we would&#8217;ve even had been able to pull up the King County Metro site on that phone thanks to Internet Explorer.</p>
<p>Microsoft is really playing catch-up now. How the mobile team got so stagnant is beyond me. It really seems like nothing major has changed in their product for years. Unlike the Internet Explorer stagnation though this one goes way beyond that. Why? Well Windows Mobile has sold millions upon millions of units and gained a lot of market share. But for some crazy reason they&#8217;ve just let that go to waste and have let <a href="http://blogs.zdnet.com/microsoft/?p=1163" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://blogs.zdnet.com/microsoft/?p=1163');">Apple jump ahead</a> and lead the innovation party. Heck, it&#8217;s gotten so bad <a href="http://www.htc.com/www/product/touchdiamond/touchflo-3d.html" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.htc.com/www/product/touchdiamond/touchflo-3d.html');">HTC has had to come up with UI</a> to hide Windows to make the phone desirable. Of course there&#8217;s also Google now with Android, but I doubt they&#8217;re too worried about it. You know, at least not until more manufacturers jump from Windows Mobile to Android then Netbooks start shipping with WiFi and 3g with Android, then thin desktop clients&#8230;</p>
<p>Apple really does the entire end to end solution really well. Sure they force the Apple way or the highway but usually Apple&#8217;s way is pretty damn good. Google really does cloud services amazingly well. Sure they only really make money on the advertising but they&#8217;re not stupid. They&#8217;re building each piece of the puzzle little by little. At some point soon, they&#8217;ll be set to complete the picture and deliver something amazing that could potentially deliver a massive blow to Windows, Office, and Microsoft cloud services. <a href="http://www.techcrunch.com/2008/09/17/google-launches-audio-indexing/" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.techcrunch.com/2008/09/17/google-launches-audio-indexing/');">Google has been combining</a> pieces that&#8217;s just amazing.</p>
<p>The key difference between Apple, Google, and Microsoft? Honestly, I&#8217;m not sure, culture maybe, age in the case of Microsoft and Google. A dictator in the case of Microsoft and Apple. Who knows.</p>
<p>The thing I notice about Apple and Google though is that while Microsoft may have better business models to make more money on more things. Apple and Google are necessarily spreading themselves thin. Apple delivers a small product line really well and concentrates on a few things it can really deliver 100% on. Google makes strategic choices on where to concentrate resources to connect things. Neither company seems concerned with delivering products and services it really has no need to.</p>
<p>I mean I don&#8217;t see Apple going out to make their own maps service for the iPhone or their own stock service or their own search. Instead they partner with Google and Yahoo. When searching Google you&#8217;ll get links to 6 different services when searching for &#8220;<a href="http://www.google.com/search?hl=en&amp;safe=off&amp;rls=com.microsoft%3A*&amp;q=stock+MSFT" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.google.com/search?hl=en&amp;safe=off&amp;rls=com.microsoft%3A*&amp;q=stock+MSFT');">stock MSFT</a>&#8220;, you&#8217;ll get linked to a third party flight tracking service when searching for &#8220;<a href="http://www.google.com/search?hl=en&amp;safe=off&amp;rls=com.microsoft%3A*&amp;q=BA49" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.google.com/search?hl=en&amp;safe=off&amp;rls=com.microsoft%3A*&amp;q=BA49');">BA49</a>&#8220;. Or when you search for <a href="http://www.google.com/musica?aid=7ZazE0blASJ" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.google.com/musica?aid=7ZazE0blASJ');">Led Zeppelin</a> you&#8217;ll get an album listing with ways to purchase from multiple online stores and when you go to the song listing you&#8217;ll get linked to multiple lyrics websites.</p>
<p>When Microsoft does the latter what happens? <a href="http://search.live.com/results.aspx?q=Led+Zeppelin&amp;form=QBLH&amp;qs=n" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://search.live.com/results.aspx?q=Led+Zeppelin&amp;form=QBLH&amp;qs=n');">Well first</a> you go to live.com and get normal search results, if you click the first link for <a href="http://search.live.com/xrank/results.aspx?q=Led+Zeppelin&amp;p1=%5bGenericXRankAnswer+EntityType%3d%22musician%22%5d&amp;wf=XRankListEntity&amp;FORM=H5RE" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://search.live.com/xrank/results.aspx?q=Led+Zeppelin&amp;p1=%5bGenericXRankAnswer+EntityType%3d%22musician%22%5d&amp;wf=XRankListEntity&amp;FORM=H5RE');">xRank you get</a> to see some useful information and some search volume indicator thingy. Next if you want to dig further you <a href="http://music.msn.com/music/album/led-zeppelin/led-zeppelin-iv/" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://music.msn.com/music/album/led-zeppelin/led-zeppelin-iv/');">click on the album</a> but now you&#8217;re no longer on Live Search (or is it Windows Live Search), you&#8217;re on MSN Music (hello Mr. Butterfly). The option is presented to buy and download from Microsoft Zune which is good and multiple options are given to buy the CD from various online stores, also good. There&#8217;s even an option to compare prices. If you go to the track listing you can even hear samples, sweet&#8230; So what&#8217;s so bad about this?</p>
<p>Well, immediately this tells me there&#8217;s a lack of focus and execution. There&#8217;s a total of 3 products and services involved with that entire process, Live, MSN, and Zune. They all feel different and don&#8217;t share a seamless experience. Why is MSN Music delivering content that should be delivered directly by Zune?</p>
<p>There are so many places where efforts are duplicated, clear vision is lacking, and the execution is 20% off target. It&#8217;s frustrating to me as someone who really honestly cares and desires elegant perfection.</p>
<p>Microsoft has every piece of the puzzle needed. It can do amazing things when it needs to and definitely isn&#8217;t dead. What&#8217;s needed is a bit of a reset really. Time to refocus, clear the air, and start executing and connecting everything together in the right ways. I really just hope that it&#8217;ll happen soon.</p>
<p><a href="http://finance.google.com/finance?chdnp=1&amp;chdd=1&amp;chds=1&amp;chdv=1&amp;chvs=maximized&amp;chdeh=0&amp;chdet=1234034589071&amp;chddm=1000960&amp;cmpto=NASDAQ:GOOG;NASDAQ:AAPL&amp;cmptzos=-18000;-18000&amp;q=NASDAQ:MSFT&amp;ntsp=0" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://finance.google.com/finance?chdnp=1&amp;chdd=1&amp;chds=1&amp;chdv=1&amp;chvs=maximized&amp;chdeh=0&amp;chdet=1234034589071&amp;chddm=1000960&amp;cmpto=NASDAQ:GOOG;NASDAQ:AAPL&amp;cmptzos=-18000;-18000&amp;q=NASDAQ:MSFT&amp;ntsp=0');">MSFT</a> has been flat for 10 years. What the company needs is a real renaissance and to deliver 100% on its innovations. Microsoft has been ahead of the curve thanks to many products that were ahead of their time and thanks to MSR. Microsoft has many times entered new markets and gained popularity only to lose them later by the lack of follow through and evolution.</p>
<p>The software Microsoft makes is amazing, there&#8217;s no reason why that can&#8217;t continue.</p>
<div class="feedflare">
<a href="http://feeds2.feedburner.com/~f/coreygo?a=ZdkCtKkK"><img src="http://feeds2.feedburner.com/~f/coreygo?d=41" border="0"/></a> <a href="http://feeds2.feedburner.com/~f/coreygo?a=0OYbPJ8b"><img src="http://feeds2.feedburner.com/~f/coreygo?i=0OYbPJ8b" border="0"/></a> <a href="http://feeds2.feedburner.com/~f/coreygo?a=C5hyykub"><img src="http://feeds2.feedburner.com/~f/coreygo?i=C5hyykub" border="0"/></a> <a href="http://feeds2.feedburner.com/~f/coreygo?a=kg7QTntj"><img src="http://feeds2.feedburner.com/~f/coreygo?i=kg7QTntj" border="0"/></a> <a href="http://feeds2.feedburner.com/~f/coreygo?a=ilM2vp0Z"><img src="http://feeds2.feedburner.com/~f/coreygo?d=52" border="0"/></a> <a href="http://feeds2.feedburner.com/~f/coreygo?a=LNNfkAyF"><img src="http://feeds2.feedburner.com/~f/coreygo?i=LNNfkAyF" border="0"/></a>
</div>
<p><img src="http://feeds2.feedburner.com/~r/coreygo/~4/q8bMCu1-iEc" height="1" width="1"/></p>
]]></content:encoded>
			<wfw:commentRss>http://coreygo.com/index.php/2009/02/07/focus-execution-and-delivering-something-amazing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>When hardware and software get things just right… It’s magic.</title>
		<link>http://coreygo.com/index.php/2009/02/07/when-hardware-and-software-get-things-just-right%e2%80%a6-it%e2%80%99s-magic/</link>
		<comments>http://coreygo.com/index.php/2009/02/07/when-hardware-and-software-get-things-just-right%e2%80%a6-it%e2%80%99s-magic/#comments</comments>
		<pubDate>Sat, 07 Feb 2009 18:29:59 +0000</pubDate>
		<dc:creator>Corey</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Home Life]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Windows Mobile]]></category>

		<guid isPermaLink="false">http://coreygo.com/?p=754</guid>
		<description><![CDATA[Yesterday Morning I woke up around 7:30 or so and go ready for work. Erica woke up as I was about to leave. She reminded me, that I forgot to remind her, that I wouldn&#8217;t be able to carpool her in to work. Instead she&#8217;d have to take the bus in. Not wanting to get out of [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday Morning I woke up around 7:30 or so and go ready for work. Erica woke up as I was about to leave. She reminded me, that I forgot to remind her, that I wouldn&#8217;t be able to carpool her in to work. Instead she&#8217;d have to take the bus in. Not wanting to get out of a warm bed she went right for the iPhone sitting on the side table. She popped open Safari and went to King County Metro&#8217;s bus schedule to find her bus time. I got done brushing my teeth and noticed what was up.</p>
<p>Still wanting to beat the West Seattle Bridge to 5 north to 90 east traffic I just showed her instead how to use Google Maps on the phone. Quickly set the starting point as the current location, the end to her salon on California Ave. Swapping the directions to public transit, it showed the bus she&#8217;d normally take first thing. Then hitting the load more times showed all the times for the morning and the best time for her to catch the bus to arrive at work by 9:45.</p>
<p>Awesome, just awesome.</p>
<div class="feedflare">
<a href="http://feeds2.feedburner.com/~f/coreygo?a=zhWlC2Cb"><img src="http://feeds2.feedburner.com/~f/coreygo?d=41" border="0"/></a> <a href="http://feeds2.feedburner.com/~f/coreygo?a=FbQJQ7pC"><img src="http://feeds2.feedburner.com/~f/coreygo?i=FbQJQ7pC" border="0"/></a> <a href="http://feeds2.feedburner.com/~f/coreygo?a=cuzql4oR"><img src="http://feeds2.feedburner.com/~f/coreygo?i=cuzql4oR" border="0"/></a> <a href="http://feeds2.feedburner.com/~f/coreygo?a=lom1lQKs"><img src="http://feeds2.feedburner.com/~f/coreygo?i=lom1lQKs" border="0"/></a> <a href="http://feeds2.feedburner.com/~f/coreygo?a=eUBcWNAI"><img src="http://feeds2.feedburner.com/~f/coreygo?d=52" border="0"/></a> <a href="http://feeds2.feedburner.com/~f/coreygo?a=lwavp7G0"><img src="http://feeds2.feedburner.com/~f/coreygo?i=lwavp7G0" border="0"/></a>
</div>
<p><img src="http://feeds2.feedburner.com/~r/coreygo/~4/zadbuxkjfE0" height="1" width="1"/></p>
]]></content:encoded>
			<wfw:commentRss>http://coreygo.com/index.php/2009/02/07/when-hardware-and-software-get-things-just-right%e2%80%a6-it%e2%80%99s-magic/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Integrating Boxee with Media Center…</title>
		<link>http://coreygo.com/index.php/2009/01/25/integrating-boxee-with-media-center%e2%80%a6/</link>
		<comments>http://coreygo.com/index.php/2009/01/25/integrating-boxee-with-media-center%e2%80%a6/#comments</comments>
		<pubDate>Mon, 26 Jan 2009 05:05:08 +0000</pubDate>
		<dc:creator>Corey</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Boxee]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Media Center]]></category>

		<guid isPermaLink="false">http://coreygo.com/?p=750</guid>
		<description><![CDATA[My friend Mike over at Missing Remote came up with a little app to help integrate Boxee with Media Center. I helped him test it after another MVP, Andrew Cherry helped perfect it. I question whether Media Center is even needed with Boxee though, at least as long as I don&#8217;t use cable TV. For [...]]]></description>
			<content:encoded><![CDATA[<p>My friend Mike over at Missing Remote came up with a <a href="http://www.missingremote.com/index.php?option=com_content&amp;task=view&amp;id=3285&amp;Itemid=232" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.missingremote.com/index.php?option=com_content&amp;task=view&amp;id=3285&amp;Itemid=232');">little app to help integrate Boxee</a> with Media Center. I helped him test it after another MVP, Andrew Cherry helped perfect it. I question whether Media Center is even needed with Boxee though, at least as long as I don&#8217;t use cable TV.</p>
<p>For the second time in the last 4 years I&#8217;ve gone without TV. Since June I&#8217;ve only used online services to gather my TV content. Hulu, combined with Netflix, and a little EZTV has made it an extremely easy transition. Because of this and because of frustration getting Media Center to *fit the way I* consume and want to view all this content.</p>
<p>Since I&#8217;m no longer using a TV tuner there&#8217;s really no need to use it at all. As I said before, despite being Alpha, Boxee shows a lot of promise and is deliverying on things I&#8217;ve been waiting for in Media Center for the past 6 years. Example, thumbnails that actually work from the TV and movie content, integration with almost every online service I use, magical absorbition of my organized content despite the lack of any real metadata in the files, and so much more&#8230;</p>
<p>Even in Windows 7 I&#8217;m still wishing for most of the features boxee offers. It&#8217;s really something else. For now though it&#8217;s kind of nice using Boxee with Media Center after adding Mike&#8217;s app.</p>
<div class="feedflare">
<a href="http://feeds2.feedburner.com/~f/coreygo?a=mEQ89P1c"><img src="http://feeds2.feedburner.com/~f/coreygo?d=41" border="0"/></a> <a href="http://feeds2.feedburner.com/~f/coreygo?a=rPJ42nVC"><img src="http://feeds2.feedburner.com/~f/coreygo?i=rPJ42nVC" border="0"/></a> <a href="http://feeds2.feedburner.com/~f/coreygo?a=Z0izG4Wn"><img src="http://feeds2.feedburner.com/~f/coreygo?i=Z0izG4Wn" border="0"/></a> <a href="http://feeds2.feedburner.com/~f/coreygo?a=J45i5IT6"><img src="http://feeds2.feedburner.com/~f/coreygo?i=J45i5IT6" border="0"/></a> <a href="http://feeds2.feedburner.com/~f/coreygo?a=7bVJacvZ"><img src="http://feeds2.feedburner.com/~f/coreygo?d=52" border="0"/></a> <a href="http://feeds2.feedburner.com/~f/coreygo?a=Rs9hgZDs"><img src="http://feeds2.feedburner.com/~f/coreygo?i=Rs9hgZDs" border="0"/></a>
</div>
<p><img src="http://feeds2.feedburner.com/~r/coreygo/~4/MIPRNFUIzW0" height="1" width="1"/></p>
]]></content:encoded>
			<wfw:commentRss>http://coreygo.com/index.php/2009/01/25/integrating-boxee-with-media-center%e2%80%a6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Empty totes == no profit for Amazon Fresh?</title>
		<link>http://coreygo.com/index.php/2009/01/25/empty-totes-no-profit-for-amazon-fresh/</link>
		<comments>http://coreygo.com/index.php/2009/01/25/empty-totes-no-profit-for-amazon-fresh/#comments</comments>
		<pubDate>Sun, 25 Jan 2009 19:40:25 +0000</pubDate>
		<dc:creator>Corey</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Home Life]]></category>
		<category><![CDATA[Internet]]></category>

		<guid isPermaLink="false">http://coreygo.com/?p=746</guid>
		<description><![CDATA[I placed my first order from Amazon Fresh last night at 5:23pm, and this morning at 2AM I got an email saying it was on its way. At 9AM when I got up and opened the door there were four totes sitting right on my porch&#8230; Two green, two yellow. Awesome!!! Though when I brought [...]]]></description>
			<content:encoded><![CDATA[<p>I placed my first order from Amazon Fresh last night at 5:23pm, and this morning at 2AM I got an email saying it was on its way. At 9AM when I got up and opened the door there were four totes sitting right on my porch&#8230; Two green, two yellow. Awesome!!!</p>
<p>Though when I brought the totes in I realized something, they weren&#8217;t heavy at all and I barely ordered anything so why was I bringing in 4 totes? Well turns out Amazon is really paranoid about hurting any of your goods. I only ordered 8 items in this shipment with a total of $33.88 yet they managed to bring it all in 4 totes. One contained a foam core with two dry ice packs inside, this tote contained my frozen fake meat and frozen veg. Then another contained an ice pack inside this keep temp bag, that contained my tikka masala sauce, cucumber, and red leaf lettuce. Then the dry containers contained a bag of chips and a 12 pack of ginger ale respectively.</p>
<p>Totally insane&#8230; Everything was in plastic bags, 5 in total. Oh and the chips were by themselves in a paper bag inside a tote. I don&#8217;t get it, how is this environmentally friendly and more importantly to Amazon how is this economical for them? The items I purchased were all at the normal cost I buy stuff at in a QFC, Safeway, or Metropolitan Market&#8230; so how is this profitable for Amazon?</p>
<p>I understand they don&#8217;t want my bag of chips getting crushed by the Canada Dry but surely they could just use some divider thing to keep things in place. 4 totes seems insane for 8 items. If I were going to metro market I would&#8217;ve fit all of these things into a single reusable bag and carried the ginger ale in another hand.</p>
<p>Anyway, overall I&#8217;m really impressed, they delivered the next morning without me even hearing them and they have things that normally would require multiple trips to actually find and pick up. Oh and I special ordered some matcha green tea powder which is also shipping free in a separate order, I&#8217;ve not been able to find this stuff anywhere so that was pretty sweet as well. The lettuce and cucumber seem better than any of the crappy stuff I&#8217;d find at Safeway and is on par with the produce from Whole Foods.</p>
<p>So for people in the right zip code, I really don&#8217;t see a reason not to use Amazon Fresh. I guess just use it while it still exists since I&#8217;m really curious how on Earth they actually make money.</p>
<div class="feedflare">
<a href="http://feeds2.feedburner.com/~f/coreygo?a=qMGlOslR"><img src="http://feeds2.feedburner.com/~f/coreygo?d=41" border="0"/></a> <a href="http://feeds2.feedburner.com/~f/coreygo?a=DfjLrna2"><img src="http://feeds2.feedburner.com/~f/coreygo?i=DfjLrna2" border="0"/></a> <a href="http://feeds2.feedburner.com/~f/coreygo?a=8h2rmEb2"><img src="http://feeds2.feedburner.com/~f/coreygo?i=8h2rmEb2" border="0"/></a> <a href="http://feeds2.feedburner.com/~f/coreygo?a=T4i8gxnu"><img src="http://feeds2.feedburner.com/~f/coreygo?i=T4i8gxnu" border="0"/></a> <a href="http://feeds2.feedburner.com/~f/coreygo?a=Ypm3Gvb5"><img src="http://feeds2.feedburner.com/~f/coreygo?d=52" border="0"/></a> <a href="http://feeds2.feedburner.com/~f/coreygo?a=vZ3l2fJM"><img src="http://feeds2.feedburner.com/~f/coreygo?i=vZ3l2fJM" border="0"/></a>
</div>
<p><img src="http://feeds2.feedburner.com/~r/coreygo/~4/ebXNH91xc0g" height="1" width="1"/></p>
]]></content:encoded>
			<wfw:commentRss>http://coreygo.com/index.php/2009/01/25/empty-totes-no-profit-for-amazon-fresh/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Boxee Windows Alpha, my first 30 minutes…</title>
		<link>http://coreygo.com/index.php/2009/01/23/boxee-windows-alpha-my-first-30-minutes%e2%80%a6/</link>
		<comments>http://coreygo.com/index.php/2009/01/23/boxee-windows-alpha-my-first-30-minutes%e2%80%a6/#comments</comments>
		<pubDate>Fri, 23 Jan 2009 08:30:00 +0000</pubDate>
		<dc:creator>Corey</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Boxee]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Media Center]]></category>
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://coreygo.com/?p=738</guid>
		<description><![CDATA[It may only be Alpha but it&#8217;s got everything that&#8217;s missing from Media Center. I can browse and use all the online services that Media Center ignores. It works with EVERY file format that I care about, it takes in every format I care about. It automagically gathers metadata for every format I care about. [...]]]></description>
			<content:encoded><![CDATA[<p>It may only be Alpha but it&#8217;s got everything that&#8217;s missing from Media Center. I can browse and use all the online services that Media Center ignores. It works with EVERY file format that I care about, it takes in every format I care about. It automagically gathers metadata for every format I care about. How I&#8217;m not quite sure. At any rate, I&#8217;ve got my media organized as such: \RELATIVITYMediaVideos under that there&#8217;s TV and Movies. Under that I&#8217;ve got each movie in its own folder. I also have each TV series in its own folder with episodes titled 101 &#8211; Title.mkv as an example. In Media Center I have to have an xml file for each along with a Folder.jpg for things to appear right. In Boxee it just greps the folder and file to figure things out and pull the data.</p>
<p>Does this work? Yes. Is it perfect? No. However it&#8217;s exactly what I&#8217;ve been feeling like I&#8217;ve been missing from Media Center. I gave it every network path to all my media and it&#8217;s all in there and it&#8217;s all quite fast. Every movie has album art and reviews and more. Every TV series shows all the episodes I have along with the art, the episode name, synopsis and more.</p>
<p>Going to the Internet content for Music or Videos that&#8217;s even more amazing. It has access to most of  the sites I use, Hulu, MTV, Joost, NPR,  Last.fm. Content is actually easy to find and obtain the experience is pretty damned seemless between each service. I don&#8217;t even know where or how it gets all this, in the first 30 minutes I don&#8217;t even care, it just works.</p>
<p>I need to get to bed now, but let me just say this. Boxee isn&#8217;t perfect, it lacks the Microsoft and Apple quality and management control, however this also opens and frees it from those controls and allows it to be so much more than either company could allow. The fact it works with so many online services and works with P2P content natively is a testament to this fact. The downside is that there are bugs left and right at least while running the client on build 7000 of Win 7. The user interface controls are clumsy and nowhere near as refined or intituitive as Media Center in 7. That being said it&#8217;d be a toss up between the two as for which one I&#8217;d use on a 10&#8242; level. Why? Despite the effortless use of WMC it doesn&#8217;t work entertain me the way Boxee does. I installed Boxee and only Boxee, gave it my paths and it works with 100% of my content the way it already existed. I didn&#8217;t need to conform to its standards.</p>
<p>Now the part the folks in WMC should be worried about&#8230; Boxee may only be Alpha  and is super buggy, but it delivers on many fronts. And get this, it&#8217;s based on<a href="http://code.google.com/p/google-summer-of-code-2008-xbmc/" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://code.google.com/p/google-summer-of-code-2008-xbmc/');"> XBMC</a>. <a href="http://xbmc.org/wiki/?title=Google_Summer_of_Code_2008" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://xbmc.org/wiki/?title=Google_Summer_of_Code_2008');">XBMC was included in  Google&#8217;s</a> summer of code for 2008, it may be a stretch, but Google is indirectly helping fund the progression of this project.</p>
<p>In my personal view it is a leap ahead of WMC. Why? IMHO, broadcast TV services like Blu-Ray will succumb online distribution. It won&#8217;t happen in the next 3 years, maybe not even in the next 5 but combined with online advertising and the continued shifts in the marketplace it will become more and more mainstream. Sites like Hulu, NetFlix streaming, and YouTube all show people care less about the HDness of their content and more about the ease of access to the content they care about. Not to mention the fact I doubt many people could tell NetFlix and a SD DVD apart viewing it side by side on a 40&#8243; LCD. At any rate, I digress. The point of this paragraph is to say that TV tuners and the technological understanding required by WMC thanks to TV standards and digital TV requirements make it difficult choice for any geek requiring that GFAF/WAF.</p>
<p>Boxee does cater towards those that don&#8217;t bother with Comcast or DirecTV and instead choose free and legal Internet sources along with legally questionable P2P sources. This is something that Microsoft will never do at least with regards to the latter option. I think usage statistics will show the latter option is important to the masses including Mom&#8217;s and Pop&#8217;s.</p>
<p>Anyway, I guess that&#8217;s it for now. There&#8217;s more digging to be done. And damn it, I keep hitting the  key and Boxee keeps pissing me off. Where&#8217;s Win 7 WMC usage when I need it. <img src='http://coreygo.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<div class="feedflare">
<a href="http://feeds2.feedburner.com/~f/coreygo?a=AELkqOWE"><img src="http://feeds2.feedburner.com/~f/coreygo?d=41" border="0"/></a> <a href="http://feeds2.feedburner.com/~f/coreygo?a=Kf31h8y5"><img src="http://feeds2.feedburner.com/~f/coreygo?i=Kf31h8y5" border="0"/></a> <a href="http://feeds2.feedburner.com/~f/coreygo?a=JmFNNL1n"><img src="http://feeds2.feedburner.com/~f/coreygo?i=JmFNNL1n" border="0"/></a> <a href="http://feeds2.feedburner.com/~f/coreygo?a=QwD1jBDw"><img src="http://feeds2.feedburner.com/~f/coreygo?i=QwD1jBDw" border="0"/></a> <a href="http://feeds2.feedburner.com/~f/coreygo?a=2ReKG7zo"><img src="http://feeds2.feedburner.com/~f/coreygo?d=52" border="0"/></a> <a href="http://feeds2.feedburner.com/~f/coreygo?a=Gy0AI6cv"><img src="http://feeds2.feedburner.com/~f/coreygo?i=Gy0AI6cv" border="0"/></a>
</div>
<p><img src="http://feeds2.feedburner.com/~r/coreygo/~4/d2NmXg2Eq_0" height="1" width="1"/></p>
]]></content:encoded>
			<wfw:commentRss>http://coreygo.com/index.php/2009/01/23/boxee-windows-alpha-my-first-30-minutes%e2%80%a6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ergonomic nirvana quite possibly achieved at work. My back thanks me.</title>
		<link>http://coreygo.com/index.php/2009/01/19/ergonomic-nirvana-quite-possibly-achieved-at-work-my-back-thanks-me/</link>
		<comments>http://coreygo.com/index.php/2009/01/19/ergonomic-nirvana-quite-possibly-achieved-at-work-my-back-thanks-me/#comments</comments>
		<pubDate>Mon, 19 Jan 2009 19:37:46 +0000</pubDate>
		<dc:creator>Corey</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Hacking]]></category>
		<category><![CDATA[Ikea]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://coreygo.com/?p=723</guid>
		<description><![CDATA[Yay, finally monitors at the right height, elbows and knees at a 90° angle. This is great. I grabbed the 6.5&#8243; Capita legs from Ikea and the biggest Järpen shelf I could get my hands on. I think the cost was $15 for the shelf and $10 for the feet. Nothing like a quick 15 [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://coreygo.com/wp-content/uploads/2009/01/p-640-480-a4971037-8b28-490e-b877-39f92bd8bd71.jpeg" onclick=""><img class="size-full wp-image-364 alignleft" src="http://coreygo.com/wp-content/uploads/2009/01/p-640-480-a4971037-8b28-490e-b877-39f92bd8bd71.jpeg" alt="" width="225" height="300" /></a></p>
<p>Yay, finally monitors at the right height, elbows and knees at a 90° angle. This is great. I grabbed the 6.5&#8243; Capita legs from Ikea and the biggest Järpen shelf I could get my hands on. I think the cost was $15 for the shelf and $10 for the feet. Nothing like a quick 15 minute solution to hours of back and neck pain&#8230;</p>
<div class="feedflare">
<a href="http://feeds2.feedburner.com/~f/coreygo?a=jLIHoiU5"><img src="http://feeds2.feedburner.com/~f/coreygo?d=41" border="0"/></a> <a href="http://feeds2.feedburner.com/~f/coreygo?a=ecDRsxzu"><img src="http://feeds2.feedburner.com/~f/coreygo?i=ecDRsxzu" border="0"/></a> <a href="http://feeds2.feedburner.com/~f/coreygo?a=qkvHTFDi"><img src="http://feeds2.feedburner.com/~f/coreygo?i=qkvHTFDi" border="0"/></a> <a href="http://feeds2.feedburner.com/~f/coreygo?a=W2nXyAQP"><img src="http://feeds2.feedburner.com/~f/coreygo?i=W2nXyAQP" border="0"/></a> <a href="http://feeds2.feedburner.com/~f/coreygo?a=MFgnTEiP"><img src="http://feeds2.feedburner.com/~f/coreygo?d=52" border="0"/></a> <a href="http://feeds2.feedburner.com/~f/coreygo?a=wG1DLcjW"><img src="http://feeds2.feedburner.com/~f/coreygo?i=wG1DLcjW" border="0"/></a>
</div>
<p><img src="http://feeds2.feedburner.com/~r/coreygo/~4/E2STrNUdcWI" height="1" width="1"/></p>
]]></content:encoded>
			<wfw:commentRss>http://coreygo.com/index.php/2009/01/19/ergonomic-nirvana-quite-possibly-achieved-at-work-my-back-thanks-me/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ugh, I’m getting old…</title>
		<link>http://coreygo.com/index.php/2009/01/10/ugh-i%e2%80%99m-getting-old%e2%80%a6/</link>
		<comments>http://coreygo.com/index.php/2009/01/10/ugh-i%e2%80%99m-getting-old%e2%80%a6/#comments</comments>
		<pubDate>Sat, 10 Jan 2009 20:12:41 +0000</pubDate>
		<dc:creator>Corey</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Home Life]]></category>

		<guid isPermaLink="false">http://coreygo.com/index.php/2009/01/10/ugh-im-getting-old/</guid>
		<description><![CDATA[I just filled out a survey for my recent purchase at an Apple Store. Sigh&#8230; I just realized I&#8217;m getting old, it asked basic demographic questions. It saddens me to think I&#8217;m in the 25-34 range now. In other news I went to bed around midnight last night. This is a full 4 hours earlier [...]]]></description>
			<content:encoded><![CDATA[<p>I just filled out a survey for my recent purchase at an Apple Store. Sigh&#8230; I just realized I&#8217;m getting old, it asked basic demographic questions. It saddens me to think I&#8217;m in the 25-34 range now. In other news I went to bed around midnight last night. This is a full 4 hours earlier than I remember being used to when I was in that 18-24 age range.</p>
<div class="feedflare">
<a href="http://feeds2.feedburner.com/~f/coreygo?a=rqa050Nr"><img src="http://feeds2.feedburner.com/~f/coreygo?d=41" border="0"/></a> <a href="http://feeds2.feedburner.com/~f/coreygo?a=dWOU8LW6"><img src="http://feeds2.feedburner.com/~f/coreygo?i=dWOU8LW6" border="0"/></a> <a href="http://feeds2.feedburner.com/~f/coreygo?a=6ufbD2kI"><img src="http://feeds2.feedburner.com/~f/coreygo?i=6ufbD2kI" border="0"/></a> <a href="http://feeds2.feedburner.com/~f/coreygo?a=4j4MhFWt"><img src="http://feeds2.feedburner.com/~f/coreygo?i=4j4MhFWt" border="0"/></a> <a href="http://feeds2.feedburner.com/~f/coreygo?a=hij4DWnJ"><img src="http://feeds2.feedburner.com/~f/coreygo?d=52" border="0"/></a> <a href="http://feeds2.feedburner.com/~f/coreygo?a=TpL8Lrmx"><img src="http://feeds2.feedburner.com/~f/coreygo?i=TpL8Lrmx" border="0"/></a>
</div>
<p><img src="http://feeds2.feedburner.com/~r/coreygo/~4/V6JO4LpLT_c" height="1" width="1"/></p>
]]></content:encoded>
			<wfw:commentRss>http://coreygo.com/index.php/2009/01/10/ugh-i%e2%80%99m-getting-old%e2%80%a6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating a new site in WordPress really did take 5 minutes.</title>
		<link>http://coreygo.com/index.php/2009/01/10/creating-a-new-site-in-wordpress-really-did-take-5-minutes/</link>
		<comments>http://coreygo.com/index.php/2009/01/10/creating-a-new-site-in-wordpress-really-did-take-5-minutes/#comments</comments>
		<pubDate>Sat, 10 Jan 2009 19:49:01 +0000</pubDate>
		<dc:creator>Corey</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Home Life]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://coreygo.com/?p=719</guid>
		<description><![CDATA[Okay, maybe, not quite&#8230; but since I did already have PHP via FastCGI and MySQL working on my Server 2008 IIS7 and because I already had WordPress running here. It only took about 5 minutes for my to copy the base WordPress folder, type in the 3 lines to create the database, then change 3 lines [...]]]></description>
			<content:encoded><![CDATA[<p>Okay, maybe, not quite&#8230; but since I did already have PHP via FastCGI and MySQL working on my Server 2008 IIS7 and because I already had WordPress running here. It only took about 5 minutes for my to copy the base WordPress folder, type in the 3 lines to create the database, then change 3 lines in the wp-config.php. That was it. Done.</p>
<p>The result? My Mom gets a nice new website at <a href="http://gostainedglass.com" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://gostainedglass.com');">GoStainedGlass.com</a>. Now the really amazing thing here isn&#8217;t that WordPress took only 5 minutes for me to set up for her. It&#8217;s that I literally took ALL the content that was on her previous static website and converted it over to a dynamic RSS enabled site with about 4 hours worth of work.</p>
<p>Pages were created for the static content, and posts were created for the actual items. Categories serve as navigation points. The  tag served as a way to quickly import all her previous photos and have them linked correctly. While she still needs to go back in and provide a title and description for all the images, the important thing was that 100% of the content was moved and the new site went live in under 48 hours from when I first installed.</p>
<p>The only real caveat was the titles actually. I&#8217;m sure there&#8217;s probably some Plugin to do this, but it was a minor annoyance having to import photos with the actual post so they&#8217;d be attached right, oh I couldn&#8217;t figure out how to change the photos&#8217; attachment status either to switch to a different post.</p>
<p>I suppose the real test will be to see whether my Mom can now manage her own website, it should be easy enough. If not now that it&#8217;s not a total pain in the ass to add content to her site I might not be so lazy about it.</p>
<div class="feedflare">
<a href="http://feeds2.feedburner.com/~f/coreygo?a=vmoLO3DR"><img src="http://feeds2.feedburner.com/~f/coreygo?d=41" border="0"/></a> <a href="http://feeds2.feedburner.com/~f/coreygo?a=Sx2LDd4k"><img src="http://feeds2.feedburner.com/~f/coreygo?i=Sx2LDd4k" border="0"/></a> <a href="http://feeds2.feedburner.com/~f/coreygo?a=VxQQeRyM"><img src="http://feeds2.feedburner.com/~f/coreygo?i=VxQQeRyM" border="0"/></a> <a href="http://feeds2.feedburner.com/~f/coreygo?a=ulw9epy4"><img src="http://feeds2.feedburner.com/~f/coreygo?i=ulw9epy4" border="0"/></a> <a href="http://feeds2.feedburner.com/~f/coreygo?a=Y0wFLy3X"><img src="http://feeds2.feedburner.com/~f/coreygo?d=52" border="0"/></a> <a href="http://feeds2.feedburner.com/~f/coreygo?a=FtCSKeNA"><img src="http://feeds2.feedburner.com/~f/coreygo?i=FtCSKeNA" border="0"/></a>
</div>
<p><img src="http://feeds2.feedburner.com/~r/coreygo/~4/6MgR-l4f384" height="1" width="1"/></p>
]]></content:encoded>
			<wfw:commentRss>http://coreygo.com/index.php/2009/01/10/creating-a-new-site-in-wordpress-really-did-take-5-minutes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The more you know… rice cookers.</title>
		<link>http://coreygo.com/index.php/2009/01/05/the-more-you-know%e2%80%a6-rice-cookers/</link>
		<comments>http://coreygo.com/index.php/2009/01/05/the-more-you-know%e2%80%a6-rice-cookers/#comments</comments>
		<pubDate>Tue, 06 Jan 2009 05:20:35 +0000</pubDate>
		<dc:creator>Corey</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Comedy]]></category>
		<category><![CDATA[Home Life]]></category>
		<category><![CDATA[Ideas]]></category>

		<guid isPermaLink="false">http://coreygo.com/?p=713</guid>
		<description><![CDATA[I&#8217;m not sure why, but the inner geek in me was wondering how rice cookers work as I made some rice pilaf in my small but awesome cuisinart rice cooker. Someone and I forget who, said it had something to do with the weight. But turns out, according to this, that in fact, it does [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m not sure why, but the inner geek in me was wondering how rice cookers work as I made some rice pilaf in my small but awesome cuisinart rice cooker. Someone and I forget who, said it had something to do with the weight. But turns out, <a href="http://home.howstuffworks.com/rice-cooker.htm" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://home.howstuffworks.com/rice-cooker.htm');">according to this</a>, that in fact, it does not. Instead a rice cooker senses a rise in temperature above 212° Fahrenheit. Somehow this seems like one of those &#8220;duh, of course&#8221; sort of things. Then again I keep saying that for every time I hear about another iPhone dev making thousands on some crappy $.99 app.</p>
<div class="feedflare">
<a href="http://feeds2.feedburner.com/~f/coreygo?a=5cg0wbU6"><img src="http://feeds2.feedburner.com/~f/coreygo?d=41" border="0"/></a> <a href="http://feeds2.feedburner.com/~f/coreygo?a=02fITUS3"><img src="http://feeds2.feedburner.com/~f/coreygo?i=02fITUS3" border="0"/></a> <a href="http://feeds2.feedburner.com/~f/coreygo?a=wGomhMxB"><img src="http://feeds2.feedburner.com/~f/coreygo?i=wGomhMxB" border="0"/></a> <a href="http://feeds2.feedburner.com/~f/coreygo?a=U59ckrSG"><img src="http://feeds2.feedburner.com/~f/coreygo?i=U59ckrSG" border="0"/></a> <a href="http://feeds2.feedburner.com/~f/coreygo?a=YVvmQFbs"><img src="http://feeds2.feedburner.com/~f/coreygo?d=52" border="0"/></a> <a href="http://feeds2.feedburner.com/~f/coreygo?a=Pg1NqtiY"><img src="http://feeds2.feedburner.com/~f/coreygo?i=Pg1NqtiY" border="0"/></a>
</div>
<p><img src="http://feeds2.feedburner.com/~r/coreygo/~4/kG-CjuAt-KI" height="1" width="1"/></p>
]]></content:encoded>
			<wfw:commentRss>http://coreygo.com/index.php/2009/01/05/the-more-you-know%e2%80%a6-rice-cookers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to temporarily fix the Zune 30’s Z2K9 woes.</title>
		<link>http://coreygo.com/index.php/2008/12/31/how-to-temporarily-fix-the-zune-30%e2%80%99s-z2k9-woes/</link>
		<comments>http://coreygo.com/index.php/2008/12/31/how-to-temporarily-fix-the-zune-30%e2%80%99s-z2k9-woes/#comments</comments>
		<pubDate>Wed, 31 Dec 2008 21:12:34 +0000</pubDate>
		<dc:creator>Corey</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Solutions]]></category>
		<category><![CDATA[Zune]]></category>

		<guid isPermaLink="false">http://coreygo.com/?p=624</guid>
		<description><![CDATA[Since my warranty was already void as of 12/07, and because I already swapped the 30GB HDD for a 60GB HDD, I ended up opening the Zune, then reseating the cable from the battery to the main board which resets the Zune (it&#8217;s the little brown plastic piece on the right in the attached photo, the one [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://coreygo.com/wp-content/uploads/2008/12/n500011658_1300404_2677.jpg" onclick=""><img class="alignleft size-full wp-image-625" style="border: 0px;" title="Open Zune 30" src="http://coreygo.com/wp-content/uploads/2008/12/n500011658_1300404_2677.jpg" alt="Open Zune 30" width="103" height="137" /></a>Since my warranty was already void as of 12/07, and because I already swapped the 30GB HDD for a 60GB HDD, I ended up opening the Zune, then reseating the cable from the battery to the main board which resets the Zune (it&#8217;s the little brown plastic piece on the right in the attached photo, the one with the long cable going to it over the hard drive).</p>
<p>It seems as long as the Zune isn&#8217;t sync&#8217;d again with the software open it should function. I&#8217;m still in the process of testing this but I&#8217;m guessing jumping the clock forward to Jan 1, 2009 may let things pass over fine. But then again I don&#8217;t really suggest doing this after you get it working <img src='http://coreygo.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .</p>
<p><strong>Of course, I don&#8217;t suggest voiding the warranty by opening up your Zune either. Hopefully you won&#8217;t.</strong></p>
<p><strong>UPDATE:</strong> Now that we&#8217;re in good old 2009 the Zune has righted itself thanks to the infinite loop ending. All is right in the world and the final FAQ regarding <a href="http://www.zune.net/en-us/support/zune30.htm" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.zune.net/en-us/support/zune30.htm');">the Zune resurrection</a> has been posted on the proper <a href="http://www.zune.net/support" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.zune.net/support');">Zune support site</a>.</p>
<p><strong>UPDATE:</strong> <a href="http://gizmodo.com/5121618/how-to-revive-dead-zunes-30s" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://gizmodo.com/5121618/how-to-revive-dead-zunes-30s');">Gizmodo posting first on the reseat fix</a> though I don&#8217;t believe you need to unplug the hard drive so I advise against that. I also suggest waiting for the official solution to come from Zune support.</p>
<p><strong>UPDATE: </strong>From the <a href="http://forums.zune.net/408806/ShowPost.aspx" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://forums.zune.net/408806/ShowPost.aspx');">Zune forums</a>:</p>
<blockquote><p>Early this morning we were alerted by our customers that there was a widespread issue affecting our 2006 model Zune 30GB devices (a large number of which are still actively being used).  The technical team jumped on the problem immediately and isolated the issue: a bug in the internal clock driver related to the way the device handles a leap year.  The issue should be resolved over the next 24 hours as the time change moves to January 1, 2009.   We expect the internal clock on the Zune 30GB devices will automatically reset tomorrow (noon, GMT). By tomorrow you should allow the battery to fully run out of power before the unit can restart successfully then simply ensure that your device is recharged, then turn it back on.  If you’re a Zune Pass subscriber, you may need to sync your device with your PC to refresh the rights to the subscription content you have downloaded to your device.</p>
<p>Customers can continue to stay informed via the support page on zune.net (zune.net/support).</p>
<p>We know this has been a big inconvenience to our customers and we are sorry for that, and want to thank them for their patience.</p>
<p>Q:  Why is this issue isolated to the Zune 30 device?</p>
<p>It is a bug in a driver for a part that is only used in the Zune 30 device.</p>
<p>Q:  What fixes or patches are you putting in place to resolve this situation?</p>
<p>This situation should remedy itself over the next 24 hours as the time flips to January 1st.</p>
<p>Q:  What’s the timeline on a fix?</p>
<p>The issue Zune 30GB customers are experiencing today will self resolve as time changes to January 1.</p>
<p>Q:  Why did this occur at precisely 12:01 a.m. on December 31, 2008?</p>
<p>There is a bug in the internal clock driver causing the 30GB device to improperly handle the last day of a leap year.</p>
<p>Q:  What is Zune doing to fix this issue?</p>
<p>The issue should resolve itself.</p>
<p>Q:  Are you sure that this won’t happen to all 80, 120 or other flash devices?</p>
<p>This issue is related to a part that is only used in Zune 30 devices.</p>
<p>Q:  How many 30GB Zune devices are affected? How many Zune 30GB devices were sold?</p>
<p>All 30GB devices are potentially affected.</p>
</blockquote>
<p><strong>UPDATE: </strong>Over at <a href="http://www.zuneboards.com/forums/zune-news/38143-cause-zune-30-leapyear-problem-isolated.html" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.zuneboards.com/forums/zune-news/38143-cause-zune-30-leapyear-problem-isolated.html');">ZuneBoards.com</a>, a moderator has posted up <a href="http://pastie.org/349916" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://pastie.org/349916');">the source</a> and analysis for the cause of the bug on the Zune 30&#8217;s. Pretty interesting. In the end a minor mistake and a missed test case causing a major headache. Likely a simple firmware update will prevent the problem again next leap year. Granted I doubt any Zune 30&#8217;s will even be able to hold a charge by then:</p>
<blockquote>
<pre class="MsoNormal">year = ORIGINYEAR; /* = 1980 */

while (days &gt; 365)
{
    if (IsLeapYear(year))
    {
        if (days &gt; 366)
        {
            days -= 366;
            year += 1;
        }
    }
    else
    {
        days -= 365;
        year += 1;
    }
}</pre>
</blockquote>
<div class="feedflare">
<a href="http://feeds2.feedburner.com/~f/coreygo?a=l0VxLh2h"><img src="http://feeds2.feedburner.com/~f/coreygo?d=41" border="0"/></a> <a href="http://feeds2.feedburner.com/~f/coreygo?a=D1dEx5Zm"><img src="http://feeds2.feedburner.com/~f/coreygo?i=D1dEx5Zm" border="0"/></a> <a href="http://feeds2.feedburner.com/~f/coreygo?a=Pu1UUNUX"><img src="http://feeds2.feedburner.com/~f/coreygo?i=Pu1UUNUX" border="0"/></a> <a href="http://feeds2.feedburner.com/~f/coreygo?a=YRqNQzds"><img src="http://feeds2.feedburner.com/~f/coreygo?i=YRqNQzds" border="0"/></a> <a href="http://feeds2.feedburner.com/~f/coreygo?a=V6XTxS1Q"><img src="http://feeds2.feedburner.com/~f/coreygo?d=52" border="0"/></a> <a href="http://feeds2.feedburner.com/~f/coreygo?a=RorYai17"><img src="http://feeds2.feedburner.com/~f/coreygo?i=RorYai17" border="0"/></a>
</div>
<p><img src="http://feeds2.feedburner.com/~r/coreygo/~4/NDNzNfjI-8k" height="1" width="1"/></p>
]]></content:encoded>
			<wfw:commentRss>http://coreygo.com/index.php/2008/12/31/how-to-temporarily-fix-the-zune-30%e2%80%99s-z2k9-woes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What a difference a year makes…</title>
		<link>http://coreygo.com/index.php/2008/12/25/what-a-difference-a-year-makes%e2%80%a6/</link>
		<comments>http://coreygo.com/index.php/2008/12/25/what-a-difference-a-year-makes%e2%80%a6/#comments</comments>
		<pubDate>Thu, 25 Dec 2008 21:49:54 +0000</pubDate>
		<dc:creator>Corey</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Home Life]]></category>

		<guid isPermaLink="false">http://coreygo.com/index.php/2008/12/25/what-a-difference-a-year-makes/</guid>
		<description><![CDATA[Was just thinking that a year has made such a huge difference for me. Last night I made a small update to the blog via the iPhone, considering that the only Microsoft product in the entire process was Windows Server 2008, that&#8217;s saying something. There&#8217;s plenty of other things about this year that make it [...]]]></description>
			<content:encoded><![CDATA[<p>Was just thinking that a year has made such a huge difference for me. Last night I made a small update to the blog via the iPhone, considering that the only Microsoft product in the entire process was Windows Server 2008, that&#8217;s saying something. There&#8217;s plenty of other things about this year that make it great, for now I&#8217;ll just add a pic from the phone of slushy Seattle and say yay for progress.</p>
<p><a href="http://coreygo.com/wp-content/uploads/2008/12/p-640-480-40f7468a-384c-43af-bf70-3651d3c4222a.jpeg" onclick=""><img src="http://coreygo.com/wp-content/uploads/2008/12/p-640-480-40f7468a-384c-43af-bf70-3651d3c4222a.jpeg" alt="" width="225" height="300" class="alignnone size-full wp-image-364" /></a></p>
<div class="feedflare">
<a href="http://feeds2.feedburner.com/~f/coreygo?a=qYwSlEE1"><img src="http://feeds2.feedburner.com/~f/coreygo?d=41" border="0"/></a> <a href="http://feeds2.feedburner.com/~f/coreygo?a=2POQOY30"><img src="http://feeds2.feedburner.com/~f/coreygo?i=2POQOY30" border="0"/></a> <a href="http://feeds2.feedburner.com/~f/coreygo?a=CiIixslZ"><img src="http://feeds2.feedburner.com/~f/coreygo?i=CiIixslZ" border="0"/></a> <a href="http://feeds2.feedburner.com/~f/coreygo?a=UM0Uhdkg"><img src="http://feeds2.feedburner.com/~f/coreygo?i=UM0Uhdkg" border="0"/></a> <a href="http://feeds2.feedburner.com/~f/coreygo?a=TX9RN7Rd"><img src="http://feeds2.feedburner.com/~f/coreygo?d=52" border="0"/></a> <a href="http://feeds2.feedburner.com/~f/coreygo?a=szWklA6s"><img src="http://feeds2.feedburner.com/~f/coreygo?i=szWklA6s" border="0"/></a>
</div>
<p><img src="http://feeds2.feedburner.com/~r/coreygo/~4/Lv0Kfkk_NNQ" height="1" width="1"/></p>
]]></content:encoded>
			<wfw:commentRss>http://coreygo.com/index.php/2008/12/25/what-a-difference-a-year-makes%e2%80%a6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hello world! from Corey via WordPress.</title>
		<link>http://coreygo.com/index.php/2008/12/20/hello-world-from-corey-via-wordpress/</link>
		<comments>http://coreygo.com/index.php/2008/12/20/hello-world-from-corey-via-wordpress/#comments</comments>
		<pubDate>Sun, 21 Dec 2008 01:46:18 +0000</pubDate>
		<dc:creator>Corey</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Blog System]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.coreygo.com/?p=1</guid>
		<description><![CDATA[Welcome to WordPress. This is your first post. Well not quite. It&#8217;s the first post via WordPress for me. I&#8217;m not quite done migrating crap over and certainly haven&#8217;t picked a decent theme yet. There are just way way too many to pick from and sadly there&#8217;s no way to easily spot those that work [...]]]></description>
			<content:encoded><![CDATA[<p>Welcome to WordPress. This is your first post.</p>
<p>Well not quite. It&#8217;s the first post via WordPress for me. I&#8217;m not quite done migrating crap over and certainly haven&#8217;t picked a decent theme yet. There are just way way too many to pick from and sadly there&#8217;s no way to easily spot those that work with 2.7 so it&#8217;s been trial and error for me. I think ultimately I&#8217;ll just end up designing and creating my own theme. For now though this will do.</p>
<p>This will be short and sweet since it&#8217;s time to go outside and play in the snow <img src='http://coreygo.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> . Please update your RSS feeds to point to http://feeds.coreygo.com/coreygo, I&#8217;ll be setting a 301 redirect there shortly.</p>
<p>Yay, WordPress FTW.</p>
<div class="feedflare">
<a href="http://feeds2.feedburner.com/~f/coreygo?a=0s2dxLIg"><img src="http://feeds2.feedburner.com/~f/coreygo?d=41" border="0"/></a> <a href="http://feeds2.feedburner.com/~f/coreygo?a=srxvQMS6"><img src="http://feeds2.feedburner.com/~f/coreygo?i=srxvQMS6" border="0"/></a> <a href="http://feeds2.feedburner.com/~f/coreygo?a=1TbrXuQQ"><img src="http://feeds2.feedburner.com/~f/coreygo?i=1TbrXuQQ" border="0"/></a> <a href="http://feeds2.feedburner.com/~f/coreygo?a=qIkIasqn"><img src="http://feeds2.feedburner.com/~f/coreygo?i=qIkIasqn" border="0"/></a> <a href="http://feeds2.feedburner.com/~f/coreygo?a=1YpPuw0w"><img src="http://feeds2.feedburner.com/~f/coreygo?d=52" border="0"/></a> <a href="http://feeds2.feedburner.com/~f/coreygo?a=0TfPpt7j"><img src="http://feeds2.feedburner.com/~f/coreygo?i=0TfPpt7j" border="0"/></a>
</div>
<p><img src="http://feeds2.feedburner.com/~r/coreygo/~4/bZZXCtHTdZw" height="1" width="1"/></p>
]]></content:encoded>
			<wfw:commentRss>http://coreygo.com/index.php/2008/12/20/hello-world-from-corey-via-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>On migrating to WordPress from dasBlog&#8230;</title>
		<link>http://coreygo.com/index.php/2008/12/19/on-migrating-to-wordpress-from-dasblog/</link>
		<comments>http://coreygo.com/index.php/2008/12/19/on-migrating-to-wordpress-from-dasblog/#comments</comments>
		<pubDate>Fri, 19 Dec 2008 07:15:11 +0000</pubDate>
		<dc:creator>Corey</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Blog System]]></category>
		<category><![CDATA[Internet]]></category>

		<guid isPermaLink="false">http://blogs.coreygouker.com/2008/12/19/OnMigratingToWordPressFromDasBlog.aspx</guid>
		<description><![CDATA[I&#8217;m currently in the process of migrating from self-hosted dasBlog to a self-hosted WordPress site. I did set up a WordPress.com hosted blog but decided I wasn&#8217;t ready to give up as much control as I have grown accustomed to. I won&#8217;t say it&#8217;s been easy and it&#8217;s certainly not been a famous 5 minute [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m currently in the process of migrating from self-hosted dasBlog to a self-hosted WordPress site. I did set up a WordPress.com hosted blog but decided I wasn&#8217;t ready to give up as much control as I have grown accustomed to. I won&#8217;t say it&#8217;s been easy and it&#8217;s certainly not been a famous 5 minute installation. Maybe if I were already running PHP and mySQL, but certainly not with a clean install of Server 2008 and IIS7. Which I guess is one of the big reasons I used dasBlog for so long. It was simple and didn&#8217;t even need a database. Sadly dasBlog just doesn&#8217;t have as much going on as for as community contributions, updates, plugins, support, you name it. I was going to give Community Server a go but after a couples days with it I realized it was overkill.</p>
<p>So yep, I&#8217;m now going to use Server 2008, IIS7, FastCGI with PHP, and mySQL. Hey, at least it&#8217;s not LAMP, doubt it will ever be unless I stop hosting.</p>
<p>I do have the blog running and it&#8217;s great. But I did hit a few snags and found a bunch of resources that really helped. If I do everything right it should end up being seamless. URL Rewritting should hopefully have permalinks working fine along with existing RSS feeds and all that junk. We&#8217;ll see. I&#8217;m finally getting around to dumping all my domains and moving everything to <a href="http://www.coreygo.com/">coreygo.com</a> so feel free to head there now and subscribe there if you want.</p>
<p>Here&#8217;s the list of pages I used to get me going:</p>
<ul>
<li>Installing WordPress<br />
<a href="http://codex.wordpress.org/Installing_WordPress">http://codex.wordpress.org/Installing_WordPress</a></li>
<li>Installing Multiple Blogs (just in case I need to)<br />
<a href="http://codex.wordpress.org/Installing_Multiple_Blogs">http://codex.wordpress.org/Installing_Multiple_Blogs</a><br />
<a href="http://wordpress.org/support/topic/174688">http://wordpress.org/support/topic/174688</a></li>
<li>WordPress on IIS<br />
<a href="http://learn.iis.net/page.aspx/280/wordpress-on-iis/">http://learn.iis.net/page.aspx/280/wordpress-on-iis/</a></li>
<li>Setting Up a Database for a PHP Application on IIS<br />
<a href="http://learn.iis.net/page.aspx/300/setting-up-a-database-for-a-php-application-on-iis/">http://learn.iis.net/page.aspx/300/setting-up-a-database-for-a-php-application-on-iis/</a></li>
<li>Enabling Pretty Permalinks when hosting WordPress on IIS7<br />
<a href="http://learn.iis.net/page.aspx/466/enabling-pretty-permalinks-in-wordpress/">http://learn.iis.net/page.aspx/466/enabling-pretty-permalinks-in-wordpress/</a></li>
<li>Using FastCGI to Host PHP Applications on IIS 7.0<br />
<a href="http://learn.iis.net/page.aspx/246/using-fastcgi-to-host-php-applications-on-iis-70/">http://learn.iis.net/page.aspx/246/using-fastcgi-to-host-php-applications-on-iis-70/</a></li>
<li>Remember to set the PHP registry settings if you extract PHP from the ZIP<br />
<a href="http://www.thewebhostinghero.com/tutorials/windows2008-iis7-fastcgi-php.html">http://www.thewebhostinghero.com/tutorials/windows2008-iis7-fastcgi-php.html</a></li>
</ul>
<ul>
<li>Solved my 503 Service Unavailable issues by making sure to set this registry key: HKEY_LOCAL_MACHINE\SOFTWARE\PHP\IniFilePath = C:\PHP</li>
</ul>
<li>Support thread for &#8220;<em>Your PHP installation appears to be missing the MySQL extension which is required.</em>&#8221;<br />
<a href="http://wordpress.org/support/topic/164959">http://wordpress.org/support/topic/164959</a></li>
<li>Migrating from dasBlog to WordPress<br />
<a href="http://www.developerzen.com/2008/08/05/migrating-from-dasblog-to-wordpress/">http://www.developerzen.com/2008/08/05/migrating-from-dasblog-to-wordpress/</a> and<br />
<a href="http://www.vasanth.in/2009/02/20/steps-to-migrate-from-dasblog-to-wordpress/">http://www.vasanth.in/2009/02/20/steps-to-migrate-from-dasblog-to-wordpress/</a></li>
<p>Other than that normal troubleshooting and a lot more than 5 minutes. I also grabbed a bunch of plugins and a bunch of different themes to try out but that&#8217;s for another post. I am going to try the NextGen gallery plugin since it does EXIF and RSS but I need to make sure it&#8217;ll support just feeding it a directory of images for bulk additions. Oh and finally I need to update all my bloody categories since they&#8217;re lame. Plus finally 100 other things that I&#8217;m sure I&#8217;m forgetting.</p>
<p>That&#8217;s all for now, see you via WordPress shortly.</p>
]]></content:encoded>
			<wfw:commentRss>http://coreygo.com/index.php/2008/12/19/on-migrating-to-wordpress-from-dasblog/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to disable the annoying system Beep in Windows Vista.</title>
		<link>http://coreygo.com/index.php/2008/02/29/how-to-disable-the-annoying-system-beep-in-windows-vista/</link>
		<comments>http://coreygo.com/index.php/2008/02/29/how-to-disable-the-annoying-system-beep-in-windows-vista/#comments</comments>
		<pubDate>Fri, 29 Feb 2008 05:29:12 +0000</pubDate>
		<dc:creator>Corey</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Solutions]]></category>
		<category><![CDATA[Vista]]></category>

		<guid isPermaLink="false">http://blogs.coreygouker.com/2008/02/29/HowToDisableTheAnnoyingSystemBeepInWindowsVista.aspx</guid>
		<description><![CDATA[I was in a team meeting thing the other day and had my laptop out taking notes. Unfortunately despite the fact I always run with all system sounds off, I kept on getting the annoying system beep every so often. It was maybe coming from Outlook and holding down the backspace for too long. It happens [...]]]></description>
			<content:encoded><![CDATA[<p>I was in a team meeting thing the other day and had my laptop out taking notes. Unfortunately despite the fact I always run with all system sounds off, I kept on getting the annoying system beep every so often. It was maybe coming from Outlook and holding down the backspace for too long. It happens even if you mute the sound on the system, and heck, even if you disable the &#8220;System speaker&#8221; device in Device Manager which is listed under the System devices. And man is the beep loud, amusing really, since the mono speaker on my Dell Latitude D430 is barely audible but that bloody system beep is loud as hell and definitely attention grabbing.</p>
<p>So here&#8217;s how to disable the Beep, yes that&#8217;s actually what it&#8217;s called.</p>
<ol>
<li>Press <strong>WIN+R</strong></li>
<li>Type in <strong>devmgmt.msc</strong> and press <strong>Enter</strong>.</li>
<li>Click the <strong>View</strong> menu then click <strong>Show hidden devices</strong>.</li>
<li>Expand the <strong>Non-Plug and Play Drivers</strong> branch out.</li>
<li>Look for <strong>Beep</strong> and double-click the device to bring up the properties window.</li>
<li>Click on the <strong>Driver</strong> tab.</li>
<li>Under Current status, click <strong>Stop</strong>.</li>
<li>Under Startup type drop down switch the driver to <strong>Disabled</strong>.</li>
<li>Click <strong>OK</strong></li>
</ol>
<p>You&#8217;ll now have true silence from your desktop or laptop PC regardless of whatever crazy error messages pop up or however much spam gets delivered to your Inbox. Though this won&#8217;t help if you if you&#8217;ve got a bunch of 80mm fans running at 8000RPM still <img src='http://coreygo.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> . But that&#8217;s for another post&#8230; Tip though, voltage converters for fans or fans with a high CFM and low dB rating work amazingly well as do rubber grommets for fans and HDD&#8217;s and not to mention that Dynamat isn&#8217;t half bad for noise absorption as well.</p>
]]></content:encoded>
			<wfw:commentRss>http://coreygo.com/index.php/2008/02/29/how-to-disable-the-annoying-system-beep-in-windows-vista/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>Vista Sidebar Clock Gadget modified to double as a 24 hour clock.</title>
		<link>http://coreygo.com/index.php/2007/05/13/vista-sidebar-clock-gadget-modified-to-double-as-a-24-hour-clock/</link>
		<comments>http://coreygo.com/index.php/2007/05/13/vista-sidebar-clock-gadget-modified-to-double-as-a-24-hour-clock/#comments</comments>
		<pubDate>Sun, 13 May 2007 14:28:38 +0000</pubDate>
		<dc:creator>Corey</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Ideas]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Solutions]]></category>
		<category><![CDATA[Vista]]></category>

		<guid isPermaLink="false">http://blogs.coreygouker.com/2007/05/13/VistaSidebarClockGadgetModifiedToDoubleAsA24HourClock.aspx</guid>
		<description><![CDATA[This is a mod I did a while ago. I randomly use 24-hour time and sometimes my brain just doesn&#8217;t quite associate 20:05 as being 8:05pm and what not. Getting tired of figuring it out (yes I&#8217;m that lazy and don&#8217;t want to subtract 12) and having a Skagen wristwatch (I rarely wear it now) [...]]]></description>
			<content:encoded><![CDATA[<p><img style="PADDING-RIGHT: 5px; PADDING-LEFT: 5px; PADDING-BOTTOM: 5px; PADDING-TOP: 5px" src="http://coreygo.com/opendir/apps/clockgadget/CoreygoClock.png" border="0" alt="" align="left" />This is a mod I did a while ago. I randomly use 24-hour time and sometimes my brain just doesn&#8217;t quite associate 20:05 as being 8:05pm and what not. Getting tired of figuring it out (yes I&#8217;m that lazy and don&#8217;t want to subtract 12) and having a Skagen wristwatch (I rarely wear it now) that has both 12 and 24 on the face, I figured the Clock gadget in Vista should have a 24 hour face as well.</p>
<p>So <a href="http://coreygo.com/opendir/apps/clockgadget/CoreygoClock.gadget">click here to download it</a>.<br />
Note it is provided free without warranty or support.</p>
<p>I&#8217;ve been playing around with other ideas as well for new and modified gadgets so will post updates as they become available. Oh and while you&#8217;re downloading this 24 hour clock, also download the <a href="http://torrentfreak.com/utorrents-vista-sidebar-gadget/">uTorrent Gadget</a>&#8230; Works great, only thing missing it seems is the ability to set Labels for your torrents.</p>
<p><strong>UPDATE:</strong> This gadget has also been tested against Windows 7 and there are no issues to report.</p>
]]></content:encoded>
			<wfw:commentRss>http://coreygo.com/index.php/2007/05/13/vista-sidebar-clock-gadget-modified-to-double-as-a-24-hour-clock/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Hate annoying Flash ads? So do I! Try my new gadget, FlashBang&#8230;</title>
		<link>http://coreygo.com/index.php/2007/04/27/hate-annoying-flash-ads-so-do-i-try-my-new-gadget-flashbang/</link>
		<comments>http://coreygo.com/index.php/2007/04/27/hate-annoying-flash-ads-so-do-i-try-my-new-gadget-flashbang/#comments</comments>
		<pubDate>Fri, 27 Apr 2007 10:08:31 +0000</pubDate>
		<dc:creator>Corey</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Designing]]></category>
		<category><![CDATA[Ideas]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Rants]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://blogs.coreygouker.com/2007/04/27/HateAnnoyingFlashAdsSoDoITryMyNewGadgetFlashBang.aspx</guid>
		<description><![CDATA[Last night around 3AM I was browsing the web and listening to Dark Side pretty loudly. I suddenly heard a really loud gunshot come from my speakers that literally made my heart skip a beat. I look a bit lower on the page and notice a really annoying Flash movie ad that just starts playing [...]]]></description>
			<content:encoded><![CDATA[<p><img style="PADDING-RIGHT: 5px; PADDING-LEFT: 5px; PADDING-BOTTOM: 5px; PADDING-TOP: 5px" src="http://coreygo.com/opendir/apps/ieaddons/FlashBang48.jpg" align=left border=0/>Last night around 3AM I was browsing the web and listening to Dark Side pretty loudly. I suddenly heard a really loud gunshot come from my speakers that literally made my heart skip a beat. I look a bit lower on the page and notice a really annoying Flash movie ad that just starts playing without me doing a thing. That&#8217;s when I said enough is enough and decided to do something about it since it&#8217;s obvious people who&nbsp;create Flash will continually use sound without user interaction. Flash really needs to remember sound levels across sessions to prevent someone from giving themselves a heart attack. To prevent Flash ads from loading and playing sound as well taking over the top layer of a page I created <a href="http://coreygo.com/opendir/apps/ieaddons/FlashBangSetup.msi">FlashBang</a>. </p>
<p><a href="http://coreygo.com/opendir/apps/ieaddons/flashdisabledlarge.jpg"><img style="PADDING-RIGHT: 5px; PADDING-LEFT: 5px; PADDING-BOTTOM: 5px; PADDING-TOP: 5px" height=150 src="http://coreygo.com/opendir/apps/ieaddons/FlashDisabledSmall.png" width=250 align=right border=0/></a>FlashBang is a very simple application. Upon installation it adds an icon to your standard toolbar in Internet Explorer. Clicking the icon then toggles Flash on and off. The application accomplishes this by simply adding or removing a registry key. This is pretty much the same thing the new <a href="http://www.microsoft.com/windowsxp/using/web/sp2_addonmanager.mspx">Manage Add-ons</a> does in Internet Explorer with SP2 except it requires that you refresh the page for the changes to take affect. The plus is that it doesn&#8217;t require more than two clicks so&nbsp;enabling and disabling&nbsp;Flash is quick and easy. When you disable Flash you&#8217;ll see an icon in the lower right hand corner of the window as seen <a href="http://coreygo.com/opendir/apps/ieaddons/flashdisabledlarge.jpg">here</a>.</p>
<p>The system requirements are that you are running XP with <a href="http://www.microsoft.com/windowsxp/sp2/">Service Pack 2</a> <em>OR </em>Vista and have the <a href="http://msdn.microsoft.com/netframework/downloads/updates/">.NET Framework 1.1</a> or later installed and of course that you&#8217;re using Internet Explorer. The application is provided on a free of charge and free to distribute basis. I will gladly accept donations of any amount via PayPal.</p>
<p><a href="http://www.auroravisions.com/paypal.asp?donation=CojugoGadgets"><img alt="Make payments with PayPal - it's fast, free and secure!" src="https://www.paypal.com/en_US/i/btn/x-click-but04.gif" border=0/></a> </p>
<p><strong>Download: </strong><a href="http://coreygo.com/opendir/apps/ieaddons/FlashBangSetup.msi"><strong>FlashBang</strong></a><strong>&nbsp;(updated 4/27/2007 12:01AM, please uninstall previous versions first)</strong></p>
<p>If you have any questions or comments feel free. <img src='http://coreygo.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>UPDATE: Renamed from TorchFlash to FlashBang thanks to <a href="http://www.dylangreene.com/">Dylan Greene</a>.</p>
<p>Also, it looks like there is a minor bug in that if you have IE open while you&#8217;re installing FlashBang the icon won&#8217;t be activated in IE by default. Please be sure to close all IE windows before installing FlashBang. If you run into this little bug go to View then Toolbars then Customize, scroll the list and Add FlashBang to the toolbar.</p>
<p>If you&#8217;ve uninstalled FlashBang you can still Disable and Enable Flash using the Manage Add-ons feature of Internet Explorer found under the Tools menu. You may need to <a href="http://www.macromedia.com/">visit a site</a> which normally has Flash to see Flash pop into the list. Really though, this is all the app actually does to block Flash ads. Sadly it means disabling all other Flash and not just the ads. Other options include a nice big hosts file, or also use FireFox which has some other ways of blocking ads through CSS and such.
</p>
<p><strong>UPDATE:</strong> I&#8217;m releasing a minor update to FlashBang which will fix any issues regarding installation on a machine with only the .NET Framework 2.0 installed. At this point if you have 1.1.4322, 2.0.50727.0, or later installed, FlashBang should&nbsp;work without any issues. To check which version of the .NET Framework that you have installed run the following at a command prompt &#8221; reg query hklm\software\microsoft\asp.net &#8220;.
</p>
<p><strong>UPDATE:</strong> Now installing on Windows Vista! I had to update the Visual Studio installer to recognize Windows v6, aka Vista. FlashBang will now install on Vista without any known issues&#8230; well, other than the UAC stuff. I do NOT have $125 to get a cert to code sign these free apps since well, I&#8217;ve only had $5 donated thus far. Until I can get the app code signed anyone running UAC will be bugged while installing FlashBang, and bugged again when they go to toggle Flash on and off in IE. On the plus side, there is a check box in the Protected Mode prompt in IE to quit prompting about the app in the future. I suggest people check that box till I can get a cert and code sign my apps.</p>
]]></content:encoded>
			<wfw:commentRss>http://coreygo.com/index.php/2007/04/27/hate-annoying-flash-ads-so-do-i-try-my-new-gadget-flashbang/feed/</wfw:commentRss>
		<slash:comments>21</slash:comments>
		</item>
		<item>
		<title>Put a dimmer on Silverlight with my other new gadget, LightSwitch&#8230;</title>
		<link>http://coreygo.com/index.php/2007/04/27/put-a-dimmer-on-silverlight-with-my-other-new-gadget-lightswitch/</link>
		<comments>http://coreygo.com/index.php/2007/04/27/put-a-dimmer-on-silverlight-with-my-other-new-gadget-lightswitch/#comments</comments>
		<pubDate>Fri, 27 Apr 2007 07:03:08 +0000</pubDate>
		<dc:creator>Corey</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Designing]]></category>
		<category><![CDATA[Ideas]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Rants]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://blogs.coreygouker.com/2007/04/27/PutADimmerOnSilverlightWithMyOtherNewGadgetLightSwitch.aspx</guid>
		<description><![CDATA[To coincide with the release of the Vista installable FlashBang, I&#8217;m also releasing an app to complement it. Even though WPF/E has yet to really take off, I&#8217;m sure Silverlight will start gaining some momentum. In advance of that I&#8217;m releasing LightSwitch, which oddly enough does the same exact thing FlashBang does for Flash, but [...]]]></description>
			<content:encoded><![CDATA[<p><img style="PADDING-RIGHT: 5px; PADDING-LEFT: 5px; PADDING-BOTTOM: 5px; PADDING-TOP: 5px" src="http://coreygo.com/opendir/apps/ieaddons/LightSwitch48.jpg" align=left border=0/>To coincide with the release of the Vista installable <a href="http://blogs.coreygouker.com/CommentView.aspx?guid=ad5040f7-11ca-485e-a0eb-759cecd2d1c0">FlashBang</a>, I&#8217;m also releasing an app to complement it. Even though <a href="http://www.silverlight.net">WPF/E</a> has yet to really take off, I&#8217;m sure <a href="http://www.microsoft.com/silverlight/">Silverlight</a> will start gaining some momentum. In advance of that I&#8217;m releasing LightSwitch, which oddly enough does the same exact thing FlashBang does for Flash, but for Silverlight content. The system requirements are the same as FlashBang, and they are that you&#8217;ll be&nbsp;running XP with <a href="http://www.microsoft.com/windowsxp/sp2/">Service Pack 2</a> <em>OR </em>Windows Vista and have the <a href="http://msdn.microsoft.com/netframework/downloads/updates/">.NET Framework 1.1</a> or later installed and of course that you&#8217;re using Internet Explorer.<a href="http://coreygo.com/opendir/apps/ieaddons/flashdisabledlarge.jpg"><img style="PADDING-RIGHT: 5px; PADDING-LEFT: 5px; PADDING-BOTTOM: 5px; PADDING-TOP: 5px" height=150 src="http://coreygo.com/opendir/apps/ieaddons/FlashDisabledSmall.png" width=250 align=right border=0/></a>
</p>
<p>The application is provided on a free of charge and free to distribute basis. I will gladly accept donations of any amount via PayPal, and please note I do need the donations as both LightSwitch and FlashBang are both unsigned apps users of Vista will see unwarranted and nasty messages till I can afford a cert and get the apps code signed. So any funds that I receive will go towards the $125/yr that&#8217;s required to maintain the cert.</p>
<p><a href="http://www.auroravisions.com/paypal.asp?donation=CojugoGadgets"><img alt="Make payments with PayPal - it's fast, free and secure!" src="https://www.paypal.com/en_US/i/btn/x-click-but04.gif" border=0/></a> </p>
<p><strong>Download:&nbsp;</strong><a href="http://coreygo.com/opendir/apps/ieaddons/LightSwitchSetup.msi"><strong>LightSwitch</strong></a><strong>&nbsp;(updated 4/27/2007 12:01AM, please uninstall previous versions first)</strong></p>
<p>If you have any questions or comments feel free. <img src='http://coreygo.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Note also, it looks like there is a minor bug in that if you have IE open while you&#8217;re installing FlashBang or LightSwitch&nbsp;the icon won&#8217;t be activated in IE by default. Please be sure to close all IE windows before installing either app. If you run into this little bug go to View then Toolbars then Customize, scroll the list and Add FlashBang / LightSwitch to the toolbar.</p>
<p>If you&#8217;ve uninstalled&nbsp;either of the apps&nbsp;you can still Disable and Enable Flash&nbsp; and Silverlight using the Manage Add-ons feature of Internet Explorer found under the Tools menu. Really though, this is all the app actually does to block the content. Sadly it means disabling all other&nbsp;good content&nbsp;and not just the ads. Other options include a nice big hosts file, or also use FireFox which has some other ways of blocking ads through CSS and such.</p>
]]></content:encoded>
			<wfw:commentRss>http://coreygo.com/index.php/2007/04/27/put-a-dimmer-on-silverlight-with-my-other-new-gadget-lightswitch/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Similarities in 300&#8242;s Returns a King and Titus&#8217; Victorius Titus.</title>
		<link>http://coreygo.com/index.php/2007/03/10/similarities-in-300s-returns-a-king-and-titus-victorius-titus/</link>
		<comments>http://coreygo.com/index.php/2007/03/10/similarities-in-300s-returns-a-king-and-titus-victorius-titus/#comments</comments>
		<pubDate>Sat, 10 Mar 2007 10:41:24 +0000</pubDate>
		<dc:creator>Corey</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[Outside]]></category>

		<guid isPermaLink="false">http://blogs.coreygouker.com/2007/03/10/SimilaritiesIn300sReturnsAKingAndTitusVictoriusTitus.aspx</guid>
		<description><![CDATA[Saw 300 tonight, was totally awesome. If you&#8217;ve got an IMAX showing it, see it there. Certainly was cool. Anyway, I heard this one piece of the score and knew for sure I had heard it before. Got home, popped in the Titus DVD, tried not to get pulled in, then sure enough it&#8217;s basically [...]]]></description>
			<content:encoded><![CDATA[<p>Saw 300 tonight, was totally awesome. If you&#8217;ve got an IMAX showing it, see it there. Certainly was cool. Anyway, I heard this one piece of the score and knew for sure I had heard it before. Got home, popped in the Titus DVD, tried not to get pulled in, then sure enough it&#8217;s basically the same. <a href="http://www.auroravisions.com/opendir/blogstuff/300vTitus.mp3">Hear for yourself</a>, first the Titus version then 300&#8242;s. Then I searched for more info to see if there was some underlying classical music tones similar to Nike&#8217;s campaign with The Second Coming and Mozart&#8217;s Lacrimosa. You know sometimes this stuff comes from all over. So much sampling and borrowing is done in music today that it&#8217;s impossible to really know who&#8217;s actually done what. Heck I bet at the heart of it all they do it to make us do just that, try and remember exactly what came from what and it&#8217;ll stay with us. So congrats on a job well done.</p>
<p>The search ended up revealing this bit of <a href="http://www.soundtrack.net/features/article/?id=220">review</a>:</p>
<blockquote style="margin-right: 0px;" dir="ltr"><p>&#8220;Returns a King&#8221; brings in the first appearance of the powerful choral pieces Bates wrote for the film, though fans will note similarities to Elliott Goldenthal&#8217;s <em>Titus</em> score. The choir cues are impressive, sung in a phonetic language and epic on scale.</p></blockquote>
<p dir="ltr">Ya think!? I mean &#8220;note similarities&#8221;? You mean other than the few extra notes and more up to date recording? ROFL. Please. Rather than think that Bates&#8217; is copying Goldenthal&#8217;s score as well as using similar musical tactics as Zimmer, I&#8217;d rather think or hope I guess, that he&#8217;s paying homage to Titus and Gladiator. The former of which I happen to think was an underappreciated yet awesome film.</p>
<p dir="ltr">All that being said, see 300 in a theater, it was great.</p>
<p dir="ltr"><strong><a href="http://coreygo.com/wp-content/uploads/2007/03/300.jpg"><img class="alignleft size-thumbnail wp-image-856" title="300" src="http://coreygo.com/wp-content/uploads/2007/03/300-150x150.jpg" alt="" width="150" height="150" /></a>UPDATE:</strong> Looks like Warner Bros. has <a href="http://www.300ondvd.com/">released an official statement</a> saying sorry for their knowledge that the music was taken from Elliot&#8217;s Titus score&#8230; &#8220;Warner Bros. Pictures acknowledges and regrets that a number of the music cues for the score of &#8220;300&#8243; were derived from music composed by Academy Award winning composer Elliot Goldenthal for the motion picture &#8220;Titus.&#8221; Warner Bros. Pictures has great respect for Elliot, our longtime collaborator, and is pleased to have amicably resolved this matter.&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://coreygo.com/index.php/2007/03/10/similarities-in-300s-returns-a-king-and-titus-victorius-titus/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
<enclosure url="http://www.auroravisions.com/opendir/blogstuff/300vTitus.mp3" length="1164603" type="audio/mpeg" />
		</item>
		<item>
		<title>NewEgg getting happy with the goods, bringing the wow right now&#8230;</title>
		<link>http://coreygo.com/index.php/2007/01/24/newegg-getting-happy-with-the-goods-bringing-the-wow-right-now/</link>
		<comments>http://coreygo.com/index.php/2007/01/24/newegg-getting-happy-with-the-goods-bringing-the-wow-right-now/#comments</comments>
		<pubDate>Thu, 25 Jan 2007 04:47:05 +0000</pubDate>
		<dc:creator>Corey</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Internet]]></category>

		<guid isPermaLink="false">http://blogs.coreygouker.com/2007/01/24/NewEggGettingHappyWithTheGoodsBringingTheWowRightNow.aspx</guid>
		<description><![CDATA[Those of you wanting to jump right in to the pH balanced fun of Vista can now do so thanks to NewEgg. They&#8217;re now shipping those lovely holographic DVD&#8217;s of Vista, $200 gets you Vista Ultimate OEM. Those of you who want some decent use out of those 4GB+ systems and need 64-bit will have [...]]]></description>
			<content:encoded><![CDATA[<p>Those of you wanting to jump right in to the pH balanced fun of Vista can now do so thanks to NewEgg. They&#8217;re now shipping those <a href="http://www.newegg.com/Product/Product.asp?Item=N82E16832116213">lovely holographic DVD&#8217;s of Vista</a>, $200 gets you Vista Ultimate OEM. Those of you who want some decent use out of those 4GB+ systems and need 64-bit will have to wait just a little bit as they <a href="http://www.newegg.com/Product/Product.asp?Item=N82E16832116215">don&#8217;t have those DVD&#8217;s</a> in stock. Buying your OS through this channel is totally cool, buy some more RAM or another HDD and it&#8217;s all good. You&#8217;ll probably need it for Vista anyway. Or better yet buy yourself a nice NTSC/ATSC/QAM tuner and start using Media Center, it&#8217;s all there in Ultimate.</p>
<p>My honest advice though is that if your system is 2 years old you might as well just retire the system to the kids rig or spare PC and buy a new Dell or the like with Vista preloaded. You&#8217;ll have less to worry about with drivers and you&#8217;ll definitely have a better experience. Plus you should be able to buy an extra license for the home as well which is relatively cheap.</p>
<p>Finally, it really will be at least till the end of the year before Vista truly meets the XP quality levels, patches, real RTM drivers, super glue, super massive black holes, whatever it takes, but until the end of the year I probably won&#8217;t be surprised to hear quite a few horror stories and pain points. But you know if XP can really get up to snuff with SP2 there&#8217;s no reason Vista can&#8217;t either.</p>
<p>Enjoy your goods, and get ready for that &#8220;wow&#8221;&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://coreygo.com/index.php/2007/01/24/newegg-getting-happy-with-the-goods-bringing-the-wow-right-now/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Congratulations, you&#8217;ve installed DasBlog!</title>
		<link>http://coreygo.com/index.php/2005/07/20/congratulations-youve-installed-dasblog/</link>
		<comments>http://coreygo.com/index.php/2005/07/20/congratulations-youve-installed-dasblog/#comments</comments>
		<pubDate>Wed, 20 Jul 2005 14:00:00 +0000</pubDate>
		<dc:creator>Corey</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[dasBlog]]></category>

		<guid isPermaLink="false">http://blogs.coreygouker.com/2005/07/20/CongratulationsYouveInstalledDasBlog.aspx</guid>
		<description><![CDATA[Be sure to visit all the options under &#8220;Configuration&#8221; in the Admin Menu Bar above. There are 16 themes to choose from, and you can also create your own.  ]]></description>
			<content:encoded><![CDATA[<p>Be sure to visit all the options under &#8220;Configuration&#8221; in the Admin Menu Bar above. There are 16 themes to choose from, and you can also create your own.</p>
<p> </p>
]]></content:encoded>
			<wfw:commentRss>http://coreygo.com/index.php/2005/07/20/congratulations-youve-installed-dasblog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cable Management Nightmare</title>
		<link>http://coreygo.com/index.php/2005/02/25/cable-management-nightmare/</link>
		<comments>http://coreygo.com/index.php/2005/02/25/cable-management-nightmare/#comments</comments>
		<pubDate>Sat, 26 Feb 2005 05:41:39 +0000</pubDate>
		<dc:creator>Corey</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Home Life]]></category>

		<guid isPermaLink="false">http://blogs.coreygouker.com/2005/02/25/CableManagementNightmare.aspx</guid>
		<description><![CDATA[At work here in building 50 on campus, dead tired, though it&#8217;s not actually from work. It&#8217;s from the lack of sleep. Last night Jon and I moved my diminutive desk and computer set up from the extra room into the&#160;&#8221;central hub&#8221; of the apartment. I could&#8217;ve held off for a while but I figured [...]]]></description>
			<content:encoded><![CDATA[<p>At work here in building 50 on campus, dead tired, though it&#8217;s not actually from work. It&#8217;s from the lack of sleep. Last night Jon and I moved my diminutive desk and computer set up from the extra room into the&nbsp;&#8221;central hub&#8221; of the apartment. I could&#8217;ve held off for a while but I figured Jon didn&#8217;t really want to sleep on the futon in the&nbsp;living for another night. Plus <a href="http://blog.vanosdale.com/">Andy</a> will be moving in at some point in the near&nbsp;future. He recently took a SDET internship for MS working on Office PLEX. So at least now he&#8217;s got his room ready.</p>
<p>I&#8217;m quite scared about how much electronic equipment we&#8217;ll have in that &#8220;central hub&#8221; alone. There&#8217;s already over 1.3TB worth of hard disk storage. Within the next 3 &#8211; 6 months it&#8217;ll probably hit 3TB, plus whatever Andy brings. That&#8217;s a heck of a lot of storage. Anyway, last night really wasn&#8217;t that bad. Moved the 9&#8242; desk into the room where it&#8217;s nicely positioned in front of the fireplace, set up the Klipsch 5.1&#8242;s with the Creative DDTS-100&#8242;s with oh so gorgeous S/PDIF sound and stereo to 5.1 upmixing. At that point it hit 3AM and I hadn&#8217;t even finished setting up the Gateway 901x.</p>
<p>There&#8217;s been a lot of physical labour the past days here at work and I&#8217;m&nbsp;kind of not looking forward to doing all the cable management that is seriously required when one has this much equipment and doesn&#8217;t want things looking like a jungle. When I last did this, in San Jose, it took over 6 hours to complete. I get the feeling this will take longer, plus there is a certain little requirement of ambient lighting that one must take care to complete the set up. I think once I get done I&#8217;ll post the photos to my gallery along with&nbsp;<a href="http://blog.seanalexander.com">Sean&#8217;s</a> <a href="http://www.flickr.com/groups/mediacenter/pool/">Media Center Flickr Pool</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://coreygo.com/index.php/2005/02/25/cable-management-nightmare/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

