<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>TheJakeMarsh.com</title>
	
	<link>http://thejakemarsh.com</link>
	<description>Inside the mind of a geek</description>
	<lastBuildDate>Sat, 11 Jul 2009 00:07:33 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9-rare</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/thejakemarsh" type="application/rss+xml" /><item>
		<title>Screen-Scraping With CSS Selectors in PHP</title>
		<link>http://feedproxy.google.com/~r/thejakemarsh/~3/4zHtng0TLDI/</link>
		<comments>http://thejakemarsh.com/1982/#comments</comments>
		<pubDate>Wed, 08 Jul 2009 01:36:55 +0000</pubDate>
		<dc:creator>Jake Marsh</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Screen Scraping]]></category>
		<category><![CDATA[Selectors]]></category>

		<guid isPermaLink="false">http://thejakemarsh.com/?p=1982</guid>
		<description><![CDATA[When it comes to programming techniques, screen-scraping can be a complicated and annoying thing to deal with. I've dealt with it quite a bit in various projects, most recently my TV Library plugin for boxee. I use PHP to accomplish most of my screen scraping and its got a pretty great arsenal. However, if ease [...]]]></description>
			<content:encoded><![CDATA[<p>When it comes to programming techniques, screen-scraping can be a complicated and annoying thing to deal with. I've dealt with it quite a bit in various projects, most recently my <a href="http://thejakemarsh.com/1808/">TV Library plugin</a> for <a href="http://boxee.tv">boxee</a>. I use PHP to accomplish most of my screen scraping and its got a pretty great arsenal. However, if ease of use and simplicity is your goal, the built in tools and techniques won't be much help, they can be pretty convoluted and confusing. That's why I'm going to recommend a library called <a href="http://code.google.com/p/phpquery/">phpQuery</a>.</p>
<br />
<span id="more-1982"></span>
<p>phpQuery is, among other things, a PHP port of the JavaScript library jQuery. You front-end developers out there may already know where I'm going with this, but in-case you don't know, <a href="http://jquery.com/">jQuery</a> is known for many things, but is probably best known for its incredible support of CSS Selectors. CSS Selectors allow you to select HTML elements using the same syntax you'd use to style elements in a CSS Stylesheet. (Some of you more experienced readers will no-doubt be jumping to the comments section to complain about how I'm not even mentioning XPath, well I think XPath is overly complicated and can be extremely confusing to beginners. CSS Selectors are far more approachable. Also, I am of the mindset that if at anytime we can standardize on some type of well-tested technique in web development, we should.)</p>

<p>There could be entire books written about what CSS Selectors are and how to utilize them best, so I'm not going to go into too much detail here. If you want to learn about all the intricacies of CSS and jQuery style selectors, first look here: <a href="http://docs.jquery.com/Selectors">jQuery Docs: Selectors</a>, and if you're still confused, a simple Google search will likely yield all the information you'll need. But for now all you need to know is this: this is the easiest way to screen scrape anything. Ever. phpQuery will let you turn this:</p>


<code lang="php" height="400">
&lt;?php
	$url = &quot;http://www.nfl.com/teams/dallascowboys/roster?team=DAL&quot;;
	$raw = file_get_contents($url);

	$newlines = array(&quot;\t&quot;,&quot;\n&quot;,&quot;\r&quot;,&quot;\x20\x20&quot;,&quot;\0&quot;,&quot;\x0B&quot;);
	$content = str_replace($newlines, &quot;&quot;, html_entity_decode($raw));

	$start = strpos($content,'&lt;table cellpadding=&quot;2&quot; class=&quot;standard_table&quot;');
	$end = strpos($content,'&lt;/table&gt;',$start) + 8;

	$table = substr($content,$start,$end-$start);

	preg_match_all(&quot;|&lt;tr(.*)&lt;/tr&gt;|U&quot;,$table,$rows);
	foreach ($rows[0] as $row){
	    if ((strpos($row,'&lt;th')===false)){
	        preg_match_all(&quot;|&lt;td(.*)&lt;/td&gt;|U&quot;,$row,$cells);
	        $number = strip_tags($cells[0][0]);
	        $name = strip_tags($cells[0][1]);
	        $position = strip_tags($cells[0][2]);
	        echo &quot;{$position} - {$name} - Number {$number} &lt;br&gt;\n&quot;;
	    }
	}
?&gt;
</code>
<br />

<p>Into this:</p>

<code lang="php" height="210">
&lt;?php
	require(&quot;phpQuery/phpQuery.php&quot;);
	phpQuery::browserGet('http://www.nfl.com/teams/dallascowboys/roster?team=DAL', 'success1');
	function success1($browser) {
		foreach($browser['#result &gt; tbody &gt; tr'] as $player) {
			$player = pq($player)-&gt;find('td')-&gt;getStrings();
			print &quot;Player: #&quot; . $player[0] . &quot; - &quot; . $player[1] . &quot; - Position: &quot; . $player[2] . &quot;&lt;br /&gt;\n&quot;;
		}
	}
?&gt;
</code>

<p>Much nicer right? Yeah I thought so too. Give it a shot and let me know how it goes for you in the comments.</p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/thejakemarsh?a=4zHtng0TLDI:rEilBVlhC_c:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/thejakemarsh?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/thejakemarsh?a=4zHtng0TLDI:rEilBVlhC_c:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/thejakemarsh?i=4zHtng0TLDI:rEilBVlhC_c:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/thejakemarsh?a=4zHtng0TLDI:rEilBVlhC_c:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/thejakemarsh?i=4zHtng0TLDI:rEilBVlhC_c:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/thejakemarsh?a=4zHtng0TLDI:rEilBVlhC_c:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/thejakemarsh?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/thejakemarsh?a=4zHtng0TLDI:rEilBVlhC_c:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/thejakemarsh?i=4zHtng0TLDI:rEilBVlhC_c:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/thejakemarsh/~4/4zHtng0TLDI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://thejakemarsh.com/1982/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://thejakemarsh.com/1982/</feedburner:origLink></item>
		<item>
		<title>iPhone OS 3.0 Internet Tethering (How To Enable)</title>
		<link>http://feedproxy.google.com/~r/thejakemarsh/~3/du2RDRPor7U/</link>
		<comments>http://thejakemarsh.com/1896/#comments</comments>
		<pubDate>Thu, 19 Mar 2009 18:31:02 +0000</pubDate>
		<dc:creator>Jake Marsh</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://thejakemarsh.com/?p=1896</guid>
		<description><![CDATA[Disclaimer

BIG BOLD NOTE BEFORE TRYING THIS: This (very simple) guide is for those who are in the United States and on AT&#38;T. (Basically non hacked, legit iPhones that have been correctly and legally upgraded to iPhone OS 3.0 through the developer program. ALSO: Please do not yell/hate/twitterhate/complain/spam me about this not working for you, it [...]]]></description>
			<content:encoded><![CDATA[<h2>Disclaimer</h2>

<p><strong>BIG BOLD NOTE BEFORE TRYING THIS: </strong>This (very simple) guide is for those who are in the United States and on AT&amp;T. (Basically non hacked, legit iPhones that have been correctly and legally upgraded to iPhone OS 3.0 through the developer program. <strong>ALSO: </strong>Please do not yell/hate/twitterhate/complain/spam me about this not working for you, it worked for me, and I think the process is pretty standard as long as you have AT&#038;T, are on a legit iPhone plan and are running 3.0</p>
<br />

<span id="more-1896"></span>

<hr />

<h2>Steps</h2>

<ol>
	<li>Plug your iPhone into your Mac (I assume this works the same on PCs, but I only use Macs, so your milage may vary.</li>
	<li>Download this file: <a href="http://thejakemarsh.com/ATT_US.ipcc.zip">http://thejakemarsh.com/ATT_US.ipcc.zip</a>, and unzip, put it somewhere easy to find, like your Downloads or Desktop folder.</li>
	<li>Go into iTunes, select your iPhone in the Source List on the left.</li>
	<li>Hold down the option key (that's the "alt/option" key) and click "Check For Updates" - you should get a file chooser dialog.</li>
	<li>Find the ATT_US.ipcc file on your harddrive (Wherever you downloaded and unzipped it to), select it and click open.</li>
	<li>You should see a progress dialog saying "Updating Carrier Settings..."</li>
	<li>Your iPhone may hang for a split second, but once its done, unlock your iPhone and go to "Settings &gt; General &gt; Network &gt; Internet Tethering"</li>
	<li>Flip the slider to on.</li>
	<li>If you've done it correctly, your iPhone will momentarily disappear from the Source List in iTunes and a new "Network Interface" dialog will appear.</li>
	<li>Allow it to do its thing and if everything has gone according to plan, you should be able to disconnect from all other internet sources (Wifi, ethernet, etc) and still browse around and do whatever you like.</li>
</ol>

<hr />

<p>I haven't gotten it to successfully work over bluetooth yet, but if you wanted to try just pair your iPhone like any other mobile phone (using the "Bluetooth" panel in System Preferences) then click the cog icon, and click the "Connect to Network" option. I got an error every time I tried this, but it may work for you. Let me know</p>

<p>Please post your results in the comments as I'd like to find out as much as possible about all of this.</p>

<p>Thanks!</p>

<p>Oh and to entice you, here's some screenshots of it working <img src='http://thejakemarsh.com/wp-includes/images/smilies/face-smile.png' alt=':)' class='wp-smiley' /> </p>

<hr />

<h2>Screenshots</h2>

<p><img class="aligncenter size-full wp-image-1897" title="iphonetetherss001a" src="http://www.speedtest.net/result/432895032.png" alt="iphonetetherss001a" width="300" height="135" /></p>

<p><img class="aligncenter size-full wp-image-1897" title="iphonetetherss001" src="http://thejakemarsh.com/wp-content/uploads/2009/03/iphonetetherss001.jpg" alt="iphonetetherss001" width="320" height="480" /></p>

<p><img class="aligncenter size-full wp-image-1898" title="iphonetetherss002" src="http://thejakemarsh.com/wp-content/uploads/2009/03/iphonetetherss002.jpg" alt="iphonetetherss002" width="320" height="480" /></p>

<p><img class="aligncenter size-full wp-image-1899" title="iphonetetherss003" src="http://thejakemarsh.com/wp-content/uploads/2009/03/iphonetetherss003.jpg" alt="iphonetetherss003" width="320" height="480" /></p>

<p><img class="aligncenter size-full wp-image-1900" title="iphonetetherss004" src="http://thejakemarsh.com/wp-content/uploads/2009/03/iphonetetherss004.jpg" alt="iphonetetherss004" width="320" height="480" /></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/thejakemarsh?a=du2RDRPor7U:rUzd4EY-H4w:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/thejakemarsh?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/thejakemarsh?a=du2RDRPor7U:rUzd4EY-H4w:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/thejakemarsh?i=du2RDRPor7U:rUzd4EY-H4w:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/thejakemarsh?a=du2RDRPor7U:rUzd4EY-H4w:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/thejakemarsh?i=du2RDRPor7U:rUzd4EY-H4w:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/thejakemarsh?a=du2RDRPor7U:rUzd4EY-H4w:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/thejakemarsh?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/thejakemarsh?a=du2RDRPor7U:rUzd4EY-H4w:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/thejakemarsh?i=du2RDRPor7U:rUzd4EY-H4w:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/thejakemarsh/~4/du2RDRPor7U" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://thejakemarsh.com/1896/feed/</wfw:commentRss>
		<slash:comments>86</slash:comments>
		<feedburner:origLink>http://thejakemarsh.com/1896/</feedburner:origLink></item>
		<item>
		<title>TV Library Featured On CNET TV</title>
		<link>http://feedproxy.google.com/~r/thejakemarsh/~3/XQ6qBnokQLg/</link>
		<comments>http://thejakemarsh.com/1884/#comments</comments>
		<pubDate>Fri, 27 Feb 2009 16:42:23 +0000</pubDate>
		<dc:creator>Jake Marsh</dc:creator>
				<category><![CDATA[TV Library]]></category>
		<category><![CDATA[Videos]]></category>

		<guid isPermaLink="false">http://thejakemarsh.com/?p=1884</guid>
		<description><![CDATA[

]]></description>
			<content:encoded><![CDATA[<br />
<br />
<center><embed src="http://blip.tv/play/gbg28JFbAA" type="application/x-shockwave-flash" width="537" height="332" allowscriptaccess="always" allowfullscreen="true"></embed></center><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/thejakemarsh?a=XQ6qBnokQLg:vvHRqBKAqJ0:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/thejakemarsh?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/thejakemarsh?a=XQ6qBnokQLg:vvHRqBKAqJ0:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/thejakemarsh?i=XQ6qBnokQLg:vvHRqBKAqJ0:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/thejakemarsh?a=XQ6qBnokQLg:vvHRqBKAqJ0:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/thejakemarsh?i=XQ6qBnokQLg:vvHRqBKAqJ0:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/thejakemarsh?a=XQ6qBnokQLg:vvHRqBKAqJ0:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/thejakemarsh?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/thejakemarsh?a=XQ6qBnokQLg:vvHRqBKAqJ0:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/thejakemarsh?i=XQ6qBnokQLg:vvHRqBKAqJ0:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/thejakemarsh/~4/XQ6qBnokQLg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://thejakemarsh.com/1884/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://thejakemarsh.com/1884/</feedburner:origLink></item>
		<item>
		<title>TV Library 0.1: Miss Hulu On Boxee? Here’s your fix!</title>
		<link>http://feedproxy.google.com/~r/thejakemarsh/~3/utE1qp5PJ9A/</link>
		<comments>http://thejakemarsh.com/1808/#comments</comments>
		<pubDate>Wed, 18 Feb 2009 06:00:00 +0000</pubDate>
		<dc:creator>Jake Marsh</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[TV Library]]></category>

		<guid isPermaLink="false">http://thejakemarsh.com/?p=1808</guid>
		<description><![CDATA[


Where this a will, there's a way:
So with the recent news and events about Hulu content being taken off of Boxee because Hulu's content partners can't get their heads out of their butts and realize we don't live in 1993 anymore, I've decided to release an ALPHA, repeat, ALPHA version of a plugin/feed for Boxee [...]]]></description>
			<content:encoded><![CDATA[<br />
<br />
<img class="aligncenter size-full wp-image-1816" title="tjm_blogpost_header_babycomeback1" src="http://thejakemarsh.com/wp-content/uploads/2009/02/tjm_blogpost_header_babycomeback1.png" alt="tjm_blogpost_header_babycomeback1" width="535" height="184" />
<h2>Where this a will, there's a way:</h2>
<p>So with the <a href="http://blog.hulu.com/2009/2/18/doing-hard-things">recent news</a> and <a href="http://blog.boxee.tv/2009/02/18/the-hulu-situation/">events</a> about <a href="http://hulu.com">Hulu</a> content being taken off of <a href="http://boxee.tv">Boxee</a> because <a href="http://hulu.com">Hulu</a>'s content partners can't get their heads out of their butts and realize we don't live in 1993 anymore, I've decided to release an ALPHA, repeat, ALPHA version of a plugin/feed for <a href="http://boxee.tv">Boxee</a> that I've been working on in my spare time.</p>

<p>My plugin is not a replacement for <a href="http://hulu.com">Hulu</a> per say, but rather an additional way to watch all your favorite TV Shows online. It contains a large enough selection of content that it will hopefully hold you over until <a href="http://hulu.com">Hulu</a> returns to <a href="http://boxee.tv">Boxee</a>. The videos play from many different sources all over the web.</p>

<p>Some of the sources are: <strong> Veoh, YouTube, Google Video, Tudou, 56.com, Guba, </strong><a href="http://hulu.com"><strong>Hulu</strong></a><strong>, MegaVideo, YouKu, Tu.tv</strong></p>

<p><strong>NOTE 1:</strong> Not all of the videos inside this plugin will play, the sites listed above work just fine, but most others just aren't finished yet.</p>
<p><strong>NOTE 2:</strong> A lot of the vids will play automatically, if they don't for some reason, press play a few times and the vid should start up.</p>

<hr />
<img class="aligncenter size-full wp-image-1812" title="tjm_blogpost_header_tvlibrary" src="http://thejakemarsh.com/wp-content/uploads/2009/02/tjm_blogpost_header_tvlibrary.png" alt="tjm_blogpost_header_tvlibrary" width="535" height="184" />

<p>Continue reading by clicking this link for the installation/usage instructions:</p><br />
<br />
<span id="more-1808"></span>

<p style="text-align: center;"><strong>TV Library 0.1: Install How-To Instructions/Options</strong></p>
<p style="text-align: center;"></p>

<a href="#tvlib_plugin_instructions"><img class="aligncenter size-full wp-image-1813" title="tjm_blogpost_ss_tvlibrary_01" src="http://thejakemarsh.com/wp-content/uploads/2009/02/tjm_blogpost_ss_tvlibrary_01.png" alt="tjm_blogpost_ss_tvlibrary_01" width="535" height="334" /></a>

<a class="aligncenter" href="#tvlib_plugin_instructions"><img class="aligncenter size-full wp-image-1812" title="tjm_blogpost_header_tvlibrary" src="http://thejakemarsh.com/wp-content/uploads/2009/02/TJM_BlogPost_SS_tvlibplugin_download.png" alt="" /></a>
<p style="text-align: center;"><strong> - OR - </strong></p>

<p style="text-align: center;"><a href="#tvlib_rss_instructions"><img class="aligncenter size-full wp-image-1812" src="http://thejakemarsh.com/wp-content/uploads/2009/02/tjm_blogpost_ss_tvlibrss_step09.png" alt="" /></a>
<a class="aligncenter" href="#tvlib_rss_instructions"><img class="aligncenter size-full wp-image-1812" title="tjm_blogpost_header_tvlibrary" src="http://thejakemarsh.com/wp-content/uploads/2009/02/TJM_BlogPost_SS_tvlibrss_download.png" alt="" /></a>

<hr />
<a name="tvlib_plugin_instructions"></a>
<img class="aligncenter size-full wp-image-1812" src="http://thejakemarsh.com/wp-content/uploads/2009/02/install_plugin_header.png" alt="" />
<p style="text-align: center;">NOTE: These steps apply to people using <a href="http://boxee.tv">Boxee</a> on Mac OS X only</p>

<img class="aligncenter size-full wp-image-1812" src="http://thejakemarsh.com/wp-content/uploads/2009/02/tjm_blogpost_ss_tvlibplugin_step01.png" alt="" />
<p style="text-align: center;">Download this zip file: <strong><a href="http://thejakemarsh.com/boxee/download/">tvlibrary.zip</a></strong></p>

<img class="aligncenter size-full wp-image-1812" src="http://thejakemarsh.com/wp-content/uploads/2009/02/tjm_blogpost_ss_tvlibplugin_step02.png" alt="" /></strong>
<p style="text-align: center;">Extract it into a folder called "<strong>tvlibrary</strong>"</p>

<img class="aligncenter size-full wp-image-1812" src="http://thejakemarsh.com/wp-content/uploads/2009/02/tjm_blogpost_ss_tvlibplugin_step03.png" alt="" /></strong>
<p style="text-align: center;">Move this new "<strong>tvlibrary</strong>" folder into this folder:
<strong>/Username/Library/Application Support/BOXEE/UserData/apps/</strong>

<img class="aligncenter size-full wp-image-1812" src="http://thejakemarsh.com/wp-content/uploads/2009/02/tjm_blogpost_ss_tvlibplugin_step04.png" alt="" /></strong>
<p style="text-align: center;">Find the "sources.xml" file and open it in a text editor. It can be found here:
<strong>/<em>Username</em>/Library/Application Support/BOXEE/UserData/profiles/<em>username</em>/sources.xml</strong>

<img class="aligncenter size-full wp-image-1812" src="http://thejakemarsh.com/wp-content/uploads/2009/02/tjm_blogpost_ss_tvlibplugin_step05.png" alt="" /></strong>
<p style="text-align: center;">Look for the "<strong>&lt;video&gt;SOURCES&lt;/video&gt;</strong>" block and add this into it:</p>

[sourcecode language="xml"]
<source>
<name>TV Library</name>
<path>app://tvlibrary/</path>
<private>false</private>
</source>
[/sourcecode]

<p style="text-align: center;"><strong>Save the file, quit Boxee, re-open Boxee.</strong></p>

<img class="aligncenter size-full wp-image-1812" src="http://thejakemarsh.com/wp-content/uploads/2009/02/tjm_blogpost_ss_tvlibplugin_step06.png" alt="" /></strong>
<p style="text-align: center;"><strong>Go To Video &gt; Internet and run your new option.</strong></p>

<img class="aligncenter size-full wp-image-1812" src="http://thejakemarsh.com/wp-content/uploads/2009/02/tjm_blogpost_ss_tvlibplugin_step07.png" alt="" /></strong>
<p style="text-align: center;">The main view of shows inside the TV Library plugin. (NOTE: A LOT of the interface is UNFINISHED, INCOMPLETE and plain 'ol <strong>DOES NOT</strong> work. This is because TV Library is a hobby project so far for me and I haven't had time to put everything I want into the plugin just yet. It WILL be very polished and full-featured once I'm done. I'm only releasing it early (now) because of the recent <a href="http://hulu.com">Hulu</a>/<a href="http://boxee.tv">Boxee</a> developments.)</p>

<img class="aligncenter size-full wp-image-1812" src="http://thejakemarsh.com/wp-content/uploads/2009/02/tjm_blogpost_ss_tvlibplugin_step08.png" alt="" /></strong>
<p style="text-align: center;"><strong>A show's view in TV Library, again like I said, working but obviously unfinished.</strong></p>

<img class="aligncenter size-full wp-image-1812" src="http://thejakemarsh.com/wp-content/uploads/2009/02/tjm_blogpost_ss_tvlibplugin_step09.png" alt="" /></strong>
<p style="text-align: center;"><strong>An episode's view in TV Library, again, unfinished.</strong></p>

<h2><strong>Final Design Screenshots</strong></h2>
But so you don't lose faith in my l33t hack3r skills, here's some screen shots of what the app/plugin WILL look like once its finished:
<p style="text-align: center;"><img class="aligncenter size-full wp-image-1813" title="tjm_blogpost_ss_tvlibrary_01" src="http://thejakemarsh.com/wp-content/uploads/2009/02/tjm_blogpost_ss_tvlibrary_01.png" alt="tjm_blogpost_ss_tvlibrary_01" width="535" height="334" /></p>
<p style="text-align: center;"><strong>Show Page</strong></p>
<p style="text-align: center;"></p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-1814" title="tjm_blogpost_ss_tvlibrary_02" src="http://thejakemarsh.com/wp-content/uploads/2009/02/tjm_blogpost_ss_tvlibrary_02.png" alt="tjm_blogpost_ss_tvlibrary_02" width="535" height="334" /></p>
<p style="text-align: center;"><strong>Episode Page</strong></p>

<hr />
<a name="tvlib_rss_instructions"></a>
<img class="aligncenter size-full wp-image-1812" src="http://thejakemarsh.com/wp-content/uploads/2009/02/install_rss_header.png" alt="" />
<img class="aligncenter size-full wp-image-1812" src="http://thejakemarsh.com/wp-content/uploads/2009/02/tjm_blogpost_ss_tvlibrss_step01.png" alt="" />
<img class="aligncenter size-full wp-image-1812" src="http://thejakemarsh.com/wp-content/uploads/2009/02/tjm_blogpost_ss_tvlibrss_step02.png" alt="" /></strong>
<p style="text-align: center;">Open <a href="http://boxee.tv">Boxee</a> and go into <strong>Settings &gt; Media Sources &amp; Applications</strong></p>

<img class="aligncenter size-full wp-image-1812" src="http://thejakemarsh.com/wp-content/uploads/2009/02/tjm_blogpost_ss_tvlibrss_step03.png" alt="" /></strong>
<p style="text-align: center;">Click "<strong>Add Source Manually</strong>"</p>

<img class="aligncenter size-full wp-image-1812" src="http://thejakemarsh.com/wp-content/uploads/2009/02/tjm_blogpost_ss_tvlibrss_step04.png" alt="" /></strong>
<p style="text-align: center;">Give the source a name, i.e. "<strong>TV Library</strong>"</p>

<img class="aligncenter size-full wp-image-1812" src="http://thejakemarsh.com/wp-content/uploads/2009/02/tjm_blogpost_ss_tvlibrss_step05.png" alt="" /></strong>
<p style="text-align: center;">For the source's url, put this exactly: "<strong>rss://thejakemarsh.com/boxee</strong>"</p>

<img class="aligncenter size-full wp-image-1812" src="http://thejakemarsh.com/wp-content/uploads/2009/02/tjm_blogpost_ss_tvlibrss_step06.png" alt="" /></strong>
<p style="text-align: center;"><strong>Check the "Video" option.</strong></p>

<img class="aligncenter size-full wp-image-1812" src="http://thejakemarsh.com/wp-content/uploads/2009/02/tjm_blogpost_ss_tvlibrss_step07.png" alt="" /></strong>
<p style="text-align: center;"><strong>Click Done, you should see a "Media Source Successfully Added" notification.</strong></p>

<img class="aligncenter size-full wp-image-1812" src="http://thejakemarsh.com/wp-content/uploads/2009/02/tjm_blogpost_ss_tvlibrss_step08.png" alt="" /></strong>
<p style="text-align: center;">Open up <strong>Video &gt; Internet</strong> and click on your new option.</p>

<img class="aligncenter size-full wp-image-1812" src="http://thejakemarsh.com/wp-content/uploads/2009/02/tjm_blogpost_ss_tvlibrss_step09.png" alt="" /></strong>
<p style="text-align: center;">The "Big List" Of Shows (<strong>NOTE</strong>: The list can hang for a few seconds upon the first load because of the sheer volume of shows in the list. The plugin/app version of TV Library does NOT have this performance problem.)</p>

<img class="aligncenter size-full wp-image-1812" src="http://thejakemarsh.com/wp-content/uploads/2009/02/tjm_blogpost_ss_tvlibrss_step10.png" alt="" /></strong>
<p style="text-align: center;"><strong>The view inside of show, the list of episodes.</strong></p>

<img class="aligncenter size-full wp-image-1812" src="http://thejakemarsh.com/wp-content/uploads/2009/02/tjm_blogpost_ss_tvlibrss_step11.png" alt="" /></strong>
<p style="text-align: center;"><strong>The view of a single episodes and its list of ways to watch it.</strong></p>
<hr />
<p style="text-align: left;">Please let me know your thoughts, love, suggestions, hate, support requests (which I'll do my best to answer), etc. in the comments of this post or just <a href="http://twitter.com/jakemarsh">@reply me on twitter</a>, I'm <a href="http://twitter.com/jakemarsh">@jakemarsh</a>. Thanks for supporting television over the internet, and thanks for trying out my plugin.</p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/thejakemarsh?a=utE1qp5PJ9A:EKF7O6iZGhM:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/thejakemarsh?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/thejakemarsh?a=utE1qp5PJ9A:EKF7O6iZGhM:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/thejakemarsh?i=utE1qp5PJ9A:EKF7O6iZGhM:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/thejakemarsh?a=utE1qp5PJ9A:EKF7O6iZGhM:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/thejakemarsh?i=utE1qp5PJ9A:EKF7O6iZGhM:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/thejakemarsh?a=utE1qp5PJ9A:EKF7O6iZGhM:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/thejakemarsh?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/thejakemarsh?a=utE1qp5PJ9A:EKF7O6iZGhM:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/thejakemarsh?i=utE1qp5PJ9A:EKF7O6iZGhM:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/thejakemarsh/~4/utE1qp5PJ9A" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://thejakemarsh.com/1808/feed/</wfw:commentRss>
		<slash:comments>121</slash:comments>
		<feedburner:origLink>http://thejakemarsh.com/1808/</feedburner:origLink></item>
		<item>
		<title>Epic TJM Tattoo Adventure!</title>
		<link>http://feedproxy.google.com/~r/thejakemarsh/~3/vx9fTisadmw/</link>
		<comments>http://thejakemarsh.com/1704/#comments</comments>
		<pubDate>Sun, 01 Feb 2009 06:16:17 +0000</pubDate>
		<dc:creator>Jake Marsh</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://thejakemarsh.com/1704/</guid>
		<description><![CDATA[



So tonight was the best night ever, I was hanging out with some of my best friends ever, they play in this band called "THE HIT" (http://myspace.com/thehitrock) and we got a sudden inclination to go to the tattoo shop. Then, epicness ensued.




Here's the result.
Then my buddy @colinstevic got my logo tattooed on his leg.
The ULTIMATE [...]]]></description>
			<content:encoded><![CDATA[<br /><br />
<a href="http://thejakemarsh.com/1704/">
<img class="aligncenter size-full wp-image-1911" title="teaser" src="http://thejakemarsh.com/wp-content/uploads/2009/02/teaser.jpg" border="0" alt="teaser" width="535" height="290" /></a>

<p>So tonight was the best night ever, I was hanging out with some of my best friends ever, they play in this band called "<a href="http://myspace.com/thehitrock" target="_blank">THE HIT</a>" (<a href="http://myspace.com/thehitrock" target="_blank">http://myspace.com/thehitrock</a>) and we got a sudden inclination to go to the tattoo shop. Then, epicness ensued.</p>
<br /><br />
<span id="more-1704"></span>
<p style="clear: both"><a class="image-link" href="http://thejakemarsh.com/wp-content/uploads/2009/02/img-0004.jpg">
<img class="linked-to-original" style=" text-align: center; display: block; margin: 0 auto 10px;" src="http://thejakemarsh.com/wp-content/uploads/2009/02/img-9.jpg" alt="" width="344" height="459" /></a>
<p style="clear: both"><a class="image-link" href="http://thejakemarsh.com/wp-content/uploads/2009/02/img-0009.jpg"><img class="linked-to-original" style=" text-align: center; display: block; margin: 0 auto 10px;" src="http://thejakemarsh.com/wp-content/uploads/2009/02/img-4.jpg" alt="" width="344" height="459" /></a>Here's the result.</p>
<p style="clear: both"><a class="image-link" href="http://thejakemarsh.com/wp-content/uploads/2009/02/img-0010.jpg"><img class="linked-to-original" style=" text-align: center; display: block; margin: 0 auto 10px;" src="http://thejakemarsh.com/wp-content/uploads/2009/02/img-5.jpg" alt="" width="344" height="459" /></a>Then my buddy <a href="http://twitter.com/colinstevic" target="_blank">@colinstevic</a> got my logo tattooed on his leg.</p>
<p style="clear: both"><a class="image-link" href="http://thejakemarsh.com/wp-content/uploads/2009/02/img-0011.jpg"><img class="linked-to-original" style=" text-align: center; display: block; margin: 0 auto 10px;" src="http://thejakemarsh.com/wp-content/uploads/2009/02/img-6.jpg" alt="" width="344" height="459" /></a>The ULTIMATE test of friendship!</p>
<p style="clear: both"><a class="image-link" href="http://thejakemarsh.com/wp-content/uploads/2009/02/img-0012.jpg"><img class="linked-to-original" style=" text-align: center; display: block; margin: 0 auto 10px;" src="http://thejakemarsh.com/wp-content/uploads/2009/02/img-7.jpg" alt="" width="344" height="459" /></a>Here's what it came out like, he's a little bloody because he just got done.</p>
<p style="clear: both"><a class="image-link" href="http://thejakemarsh.com/wp-content/uploads/2009/02/img-0013.jpg"><img class="linked-to-original" style=" text-align: center; display: block; margin: 0 auto 10px;" src="http://thejakemarsh.com/wp-content/uploads/2009/02/img-8.jpg" alt="" width="344" height="459" /></a>Here's another shot.</p>
<p style="clear: both">Tonight ruled, I hope your nights were just as awesome as mine.</p>
<p style="clear: both"></p>

<br class="final-break" style="clear: both" /><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/thejakemarsh?a=vx9fTisadmw:hUZ1nd-d88w:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/thejakemarsh?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/thejakemarsh?a=vx9fTisadmw:hUZ1nd-d88w:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/thejakemarsh?i=vx9fTisadmw:hUZ1nd-d88w:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/thejakemarsh?a=vx9fTisadmw:hUZ1nd-d88w:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/thejakemarsh?i=vx9fTisadmw:hUZ1nd-d88w:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/thejakemarsh?a=vx9fTisadmw:hUZ1nd-d88w:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/thejakemarsh?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/thejakemarsh?a=vx9fTisadmw:hUZ1nd-d88w:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/thejakemarsh?i=vx9fTisadmw:hUZ1nd-d88w:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/thejakemarsh/~4/vx9fTisadmw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://thejakemarsh.com/1704/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		<feedburner:origLink>http://thejakemarsh.com/1704/</feedburner:origLink></item>
		<item>
		<title>Unsilent Night 2</title>
		<link>http://feedproxy.google.com/~r/thejakemarsh/~3/gBD2S_3vlE0/</link>
		<comments>http://thejakemarsh.com/1453/#comments</comments>
		<pubDate>Mon, 29 Dec 2008 17:23:03 +0000</pubDate>
		<dc:creator>Jake Marsh</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://thejakemarsh.com/1453/</guid>
		<description><![CDATA[This show ruled. You wish you had been there. Props to all my buds who were involved. Good job dudes.]]></description>
			<content:encoded><![CDATA[<p style="clear: both"><img src="http://thejakemarsh.com/wp-content/uploads/2008/12/2199j6h4.jpg" height="349" width="532" style=" text-align: center; display: block; margin: 0 auto 10px;" />This show ruled. You wish you had been there. Props to all my buds who were involved. Good job dudes.</p><br class="final-break" style="clear: both" /><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/thejakemarsh?a=gBD2S_3vlE0:9BND2-iPocE:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/thejakemarsh?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/thejakemarsh?a=gBD2S_3vlE0:9BND2-iPocE:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/thejakemarsh?i=gBD2S_3vlE0:9BND2-iPocE:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/thejakemarsh?a=gBD2S_3vlE0:9BND2-iPocE:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/thejakemarsh?i=gBD2S_3vlE0:9BND2-iPocE:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/thejakemarsh?a=gBD2S_3vlE0:9BND2-iPocE:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/thejakemarsh?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/thejakemarsh?a=gBD2S_3vlE0:9BND2-iPocE:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/thejakemarsh?i=gBD2S_3vlE0:9BND2-iPocE:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/thejakemarsh/~4/gBD2S_3vlE0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://thejakemarsh.com/1453/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://thejakemarsh.com/1453/</feedburner:origLink></item>
		<item>
		<title>My First iPhone Game: Triple Play Poker</title>
		<link>http://feedproxy.google.com/~r/thejakemarsh/~3/NQBj0Ik7MSI/</link>
		<comments>http://thejakemarsh.com/1317/#comments</comments>
		<pubDate>Thu, 13 Nov 2008 15:39:33 +0000</pubDate>
		<dc:creator>Jake Marsh</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[iPhone Projects]]></category>

		<guid isPermaLink="false">http://thejakemarsh.com/?p=1317</guid>
		<description><![CDATA[I've been working on a TON of iPhone applications and games lately. And as of this past Tuesday night, the very first of these got released on to the iTunes App Store. It's called "Triple Play Poker."
&#160;&#160;

Here's the obligatory game description and hype machine copy that explains what the game is all about: "With Triple [...]]]></description>
			<content:encoded><![CDATA[<p>I've been working on a TON of iPhone applications and games lately. And as of this past Tuesday night, the very first of these got released on to the iTunes App Store. It's called "Triple Play Poker."</p>
<a class="sslink" title="Challenge Mode" href="http://static.codeflare.com/images/product-tpdp-ss001.png"><img src="http://static.codeflare.com/images/product-tpdp-ss001-thumb.png" alt="" />&nbsp;</a><a class="sslink" title="Three Times A Charm" href="http://static.codeflare.com/images/product-tpdp-ss002.png"><img src="http://static.codeflare.com/images/product-tpdp-ss002-thumb.png" alt="" /></a><br /><br /><a class="sslink" title="Stat-tastic" href="http://static.codeflare.com/images/product-tpdp-ss003.png"><img src="http://static.codeflare.com/images/product-tpdp-ss003-thumb.png" alt="" /></a><a class="sslink" title="Resume-ified" href="http://static.codeflare.com/images/product-tpdp-ss004.png">&nbsp;</a><a class="sslink" title="Resume-ified" href="http://static.codeflare.com/images/product-tpdp-ss004.png"><img src="http://static.codeflare.com/images/product-tpdp-ss004-thumb.png" alt="" /></a><br />

<p>Here's the obligatory game description and hype machine copy that explains what the game is all about: "With Triple Play Poker™, you have the chance to play three poker hands at once with bets of up to five credits per hand. You can bet one credit per hand, one credit on all hands, or the max number of credits on all hands. You then tap Deal and the first hand is dealt to you face up. Based on what you were dealt, you tap which cards to hold and those cards are then held in all three hands. After holding the desired cards, you tap Draw and the rest of the cards are dealt. Since each hand is dealt from its own 52 card deck, you’re effectively playing three hands at once and you’ve got three chances to win big!"</p>

<p>I had a ton of fun making this game, and it was definitely a great learning&nbsp;experience&nbsp;for developing iPhone apps. I'd love to know anyone and everyone's thoughts on the gameplay, graphics, etc. So don't be shy! Let me know what you think of the game! Go ahead and post a comment below, or use the iTunes link below to review it on the App Store.</p>

<p><a href="http://codeflare.com/tripleplay/">Triple Play Poker</a> [CodeFlare]<br />
<a href="http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=295979471&amp;mt=8">Triple Play Poker App</a> [iTunes App Store- Link, will open iTunes]</p>
<br /><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/thejakemarsh?a=NQBj0Ik7MSI:WpOPnS5TbR0:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/thejakemarsh?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/thejakemarsh?a=NQBj0Ik7MSI:WpOPnS5TbR0:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/thejakemarsh?i=NQBj0Ik7MSI:WpOPnS5TbR0:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/thejakemarsh?a=NQBj0Ik7MSI:WpOPnS5TbR0:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/thejakemarsh?i=NQBj0Ik7MSI:WpOPnS5TbR0:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/thejakemarsh?a=NQBj0Ik7MSI:WpOPnS5TbR0:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/thejakemarsh?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/thejakemarsh?a=NQBj0Ik7MSI:WpOPnS5TbR0:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/thejakemarsh?i=NQBj0Ik7MSI:WpOPnS5TbR0:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/thejakemarsh/~4/NQBj0Ik7MSI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://thejakemarsh.com/1317/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		<feedburner:origLink>http://thejakemarsh.com/1317/</feedburner:origLink></item>
		<item>
		<title>Revision3 iPhone App (Work In Progress)</title>
		<link>http://feedproxy.google.com/~r/thejakemarsh/~3/Ekn1iVnLAKI/</link>
		<comments>http://thejakemarsh.com/1289/#comments</comments>
		<pubDate>Sat, 08 Nov 2008 03:49:16 +0000</pubDate>
		<dc:creator>Jake Marsh</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://thejakemarsh.com/?p=1289</guid>
		<description><![CDATA[
    

Today, I'm announcing that I'm working on a native iPhone application that will allow people to watch all of Revision3's content on the go. The goal is to have it be the quintessential be-all-end-all Rev3 content app. Many others have tried and come up short. I also want to make it [...]]]></description>
			<content:encoded><![CDATA[<br /><br />
<p><a style="display: inline;" title="Show Listings" href="http://farm4.static.flickr.com/3187/3012086962_c42f6a042a.jpg?v=0"><img src="http://farm4.static.flickr.com/3187/3012086962_c42f6a042a_m.jpg" alt="" /></a> <a style="display: inline;" title="Episode Listings" href="http://farm4.static.flickr.com/3041/3011251109_85ecfb48d1.jpg?v=0"><img src="http://farm4.static.flickr.com/3041/3011251109_85ecfb48d1_m.jpg" alt="" /></a> <a style="display: inline;" title="Episode Detail" href="http://farm4.static.flickr.com/3074/3011251135_4b2dd886af.jpg?v=0"><img src="http://farm4.static.flickr.com/3074/3011251135_4b2dd886af_m.jpg" alt="" /></a> <a style="display: inline;" title="Latest Releases" href="http://farm4.static.flickr.com/3179/3011251191_569449d44b.jpg?v=0"><img src="http://farm4.static.flickr.com/3179/3011251191_569449d44b_m.jpg" alt="" /></a> <a style="display: inline;" title="Release Schedule" href="http://farm4.static.flickr.com/3054/3011251165_03c918317a.jpg?v=0"><img src="http://farm4.static.flickr.com/3054/3011251165_03c918317a_m.jpg" alt="" /></a></p>
<br />
<p>Today, I'm announcing that I'm working on a native iPhone application that will allow people to watch all of Revision3's content on the go. The goal is to have it be the quintessential be-all-end-all Rev3 content app. Many others have tried and come up short. I also want to make it very social, so I want the complete opinions, advice, suggestions and hate mail from the Rev3 community and the internet as a whole so I can make it as perfect as possible right out of the gate. As for release dates and such, the project is about half to three-fourths done. The screen-shots shown above are what the app looks like currently but could and probably will change a bit by release.</p>

<p>Leave any suggestions/comments/concerns/hate/love in the comments please. I want to make the app great for everyone, so any and all input is welcome!</p>
<br /><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/thejakemarsh?a=Ekn1iVnLAKI:cMqPvNaBX64:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/thejakemarsh?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/thejakemarsh?a=Ekn1iVnLAKI:cMqPvNaBX64:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/thejakemarsh?i=Ekn1iVnLAKI:cMqPvNaBX64:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/thejakemarsh?a=Ekn1iVnLAKI:cMqPvNaBX64:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/thejakemarsh?i=Ekn1iVnLAKI:cMqPvNaBX64:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/thejakemarsh?a=Ekn1iVnLAKI:cMqPvNaBX64:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/thejakemarsh?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/thejakemarsh?a=Ekn1iVnLAKI:cMqPvNaBX64:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/thejakemarsh?i=Ekn1iVnLAKI:cMqPvNaBX64:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/thejakemarsh/~4/Ekn1iVnLAKI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://thejakemarsh.com/1289/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		<feedburner:origLink>http://thejakemarsh.com/1289/</feedburner:origLink></item>
		<item>
		<title>Who Put The ‘M’ Back In MTV?</title>
		<link>http://feedproxy.google.com/~r/thejakemarsh/~3/_sYoSE95D9A/</link>
		<comments>http://thejakemarsh.com/1252/#comments</comments>
		<pubDate>Tue, 28 Oct 2008 17:33:59 +0000</pubDate>
		<dc:creator>Jake Marsh</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://thejakemarsh.com/?p=1252</guid>
		<description><![CDATA[
Its been over 25 years since MTV launched onto television airwaves and changed the landscape of music forever. Some (most actually) would argue that recently there's been somewhat of a decline of actual "Music Videos" being played on the station and its sister networks. Well all those nay-sayers can say no more because MTV has [...]]]></description>
			<content:encoded><![CDATA[<center><img src="http://thejakemarsh.com/images/MTVMusic-Banner.png" /></center>
<p>Its been over 25 years since MTV launched onto television airwaves and changed the landscape of music forever. Some (most actually) would argue that recently there's been somewhat of a decline of actual "Music Videos" being played on the station and its sister networks. Well all those nay-sayers can say no more because MTV has dived head first back in to the Music Video business by launching <a href="http://mtvmusic.com">MTV Music.</a>&nbsp;A brand new video sharing site the likes of which has been a long time coming. Not only did MTV pull out all the stops and release their ENTIRE video catalog onto the internet for free on-demand streaming and embedding, they've also built in some awesome community and social features as well as an API for developers to take all this data and build cool apps on top of it.</p>
<br />
<p style="text-align: center;"><span id="more-1252"></span></p>
<p>So when I first got word that MTV had launched a music video site, I immediately imagined a bloated, ad-crazy, pre-and-post-roll-sponsored-video-spot-filled page. I immediately thought back to the experience of loading up MTVNews.com for the first time and waiting about 30 seconds for all of the ".aspx?blahblahblah" to load in all of its required JS libraries and so on. However, I was HAPPILY, I repeat VERY happily surprised when I ventured over and first pulled up MTVMusic.com</p>
<br />
<p>The first thing you'll notice about MTVMusic.com is all of the content. MTV has put up its ENTIRE music video catalog online. All catalogued, tagged, indexed and listed in searchable, stumble-able glory. And as if that wasn't enough, they've also made sure to include "Featured Content" sections. (Currently hosting sections like "Vintage Videos and "Monster Mash).</p>
<p><center><img src="http://thejakemarsh.com/images/MTVMusicSS001.png" /></center></p>
<p>To go along with all of this, they've also decided to put forth a valiant effort to include tons of social and community features in the service. </p>
<br />
<p></p>
<p><center><img src="http://thejakemarsh.com/images/MTVMusicSS002.png" /></center></p>
<p>When it comes to actually watching a music video, everything is pretty straight forward. With a player similar to the of online TV site Hulu, MTVMusic makes watching a lot of videos a breeze. Users can also comment on and discuss each video.</p>
<br />
<p></p>
<p><center><img src="http://thejakemarsh.com/images/MTVMusicSS003.png" /></center></p>
<p>Every user is also given a full social profile on the site. While currently this feature doesn't exactly serve a huge purpose, once traffic on the increases, I'm guessing it will get a lot of attention.</p>
<br />
<p></p>
<p><center><img src="http://thejakemarsh.com/images/MTVMusicSS004.png" /></center></p>
<p>One of the coolest things about the whole site is that they are providing a complete developer API, full XML access to the site's entire catalogue of videos.</p>
<br />

<p><center><img src="http://thejakemarsh.com/images/MTVMusicSS005.png" /></center></p>
<p>Here's an actual embedding video from the site, it is the first music video ever played on MTV when it launched on August 1st, 1981.</p>
<br />
<p><center><embed src="http://media.mtvnservices.com/mgid:uma:video:mtvmusic.com:18123" width="320" height="271" type="application/x-shockwave-flash" flashVars="dist=http://www.mtvmusic.com" allowFullScreen="true" AllowScriptAccess="never"></embed>
<div style="margin:0; text-align:center; width:320px;font-family:Arial,sans-serif;font-size:10px;"><a style="color:#000000;" href="http://www.mtv.com/music/artist/buggles/artist.jhtml">The Buggles</a> |<a style="color:#000000;" href="http://www.mtvmusic.com/">MTV Music</a></div></center></p>
<br />
<br />
<p>I recently sat down (virtually that is) with Sarah Strom, Community Coordinator for the new music video site. Here's some excerpts from our talk:</p>
<style type="text/css" media="screen">
	table.interview {
		font-size: 13px;
	}
	table.interview td {
		padding: 5px;
	}
	td.interviewperson {
		font-weight: bold;
		vertical-align: top;
	}
	tr.classJM {
		background-color: #fef8d3;
	}
	tr.classOther {
		background-color: #e0caaf;
	}
</style>
<table class="interview" cellpadding="0" cellspacing="0">
	<tr class="classJM">
		<td class="interviewperson">JM:</td><td>So what exactly was your role in this project?</td>
	</tr>
	<tr class="classOther">
		<td class="interviewperson">SS:</td><td>Well, I have had many roles in this project, my official title is Community coordinator for http://community.mtvmusic.com, but I have also acted as producer for the Featured Content on the site.</td>
	</tr>
	<tr class="classJM">
		<td class="interviewperson">JM:</td><td>Awesome, about how long have you guys been building this project?</td>
	</tr>
	<tr class="classOther">
		<td class="interviewperson">SS:</td><td>Years and years, I mean if you even look back on all the encoding that had to occur...</td>
	</tr>
	<tr class="classJM">
		<td class="interviewperson">JM:</td><td>Yeah I was just thinking "this must have taken years to put together", that brings me to my next question actually, can you tell me what kind of encoding is used in all the videos on the site? Is it H.264 - similar to YouTube? or did you guys come up with your own new brand of encoding for this massive job?</td>
	</tr>
	<tr class="classOther">
		<td class="interviewperson">SS:</td><td>We are currently re-encoding all the videos from 1981 and forward into h.264 in high quality, they should be available in January. Until then we have encoded them in Flash using the on2 codec.</td>
	</tr>
	<tr class="classJM">
		<td class="interviewperson">JM:</td><td>Oh wow, glad to hear H.264 is involved. I've noticed there's a ton of community and social features on the site, more so than one would probably expect from such a young project, what are some of the things you are hoping people will do? Or what are some of your favorite use cases for all the social tech that's built in to the site?</td>
	</tr>
	<tr class="classOther">
		<td class="interviewperson">SS:</td><td>Well we get many of our community features for free since we've adopted the Flux platform (also used on Tagworld) but the challenge is making sure the generic features make sense for a specific community targeted at just watching music videos. We really just want to get stream counts up at this point so any use case that involves sharing videos, recommending, commenting... The community IS the editorial voice for us. We as MTV have taken a step back and let our members do the VJing. To be honest most of the great use cases have yet to be implemented, for now, were rolling on an out of the box community ...for now.</td>
	</tr>
	<tr class="classJM">
		<td class="interviewperson">JM:</td><td>You say you're really focused on just getting people to watch videos, how open are you planning on staying? I imagine serving all these videos can't be cheap, are you guys planning on always allowing people to embed the content freely? Will there ever be ads inside the videos?</td>
	</tr>
	<tr class="classOther">
		<td class="interviewperson">SS:</td><td>Well it hasn't been cheap, thats for sure, but now we license the rights to the videos we have and at this point, we plan on allowing users to embed and share the content... Its important to us to give our users that freedom. As for the ads inside the videos, we really don't know yet. Its all kind of up in the air right now, one big experiment. We have gotten so much good press so far about it, and we are only in a soft launch. We aren't even sure who leaked it, but are super stoked about the feedback thus far.</td>
	</tr>
	<tr class="classJM">
		<td class="interviewperson">JM:</td><td>Do you guys have any plans or thoughts for allowing users, independent artists and/or musicians to submit their own videos to the ranks?</td>
	</tr>
	<tr class="classOther">
		<td class="interviewperson">SS:</td><td>Yes actually, looking at April '09, once we get all our artists pages working perfectly, we will then be adding independent artists into the mix... which im really excited for</td>
	</tr>
	<tr class="classJM">
		<td class="interviewperson">JM:</td><td>That's awesome! Glad to hear MTV is supporting the little guys, well I think that's about all the questions I had for you, I guess I'll let you go as I'm sure you super busy, one last "pressing" question though, what's your favorite video on the site right now?</td>
	</tr>
	<tr class="classOther">
		<td class="interviewperson">SS:</td><td>Oooh, tough tough question.... I am a huge music fan, and in working on this project, i too, like the users, have found that we have videos I didn't even know we had. I am a huge fan of, "Rock My Boat" by Dntel, but i am in love right now with "Land of Confusion" by Genesis, it cracks me up...</td>
	</tr>
	<tr class="classJM">
		<td class="interviewperson">JM:</td><td>Thanks again for helping me out with the story, keep rockin!</td>
	</tr>
</table>
<br />
<br />
<p>Wanna try it out already? - Be sure to head over to <a href="http://mtvmusic.com"><b>MTVMusic.com</b></a></p>
<p></p>
<p></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/thejakemarsh?a=_sYoSE95D9A:Mw61Be7cY7U:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/thejakemarsh?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/thejakemarsh?a=_sYoSE95D9A:Mw61Be7cY7U:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/thejakemarsh?i=_sYoSE95D9A:Mw61Be7cY7U:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/thejakemarsh?a=_sYoSE95D9A:Mw61Be7cY7U:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/thejakemarsh?i=_sYoSE95D9A:Mw61Be7cY7U:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/thejakemarsh?a=_sYoSE95D9A:Mw61Be7cY7U:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/thejakemarsh?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/thejakemarsh?a=_sYoSE95D9A:Mw61Be7cY7U:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/thejakemarsh?i=_sYoSE95D9A:Mw61Be7cY7U:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/thejakemarsh/~4/_sYoSE95D9A" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://thejakemarsh.com/1252/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://thejakemarsh.com/1252/</feedburner:origLink></item>
		<item>
		<title>Conspiracy Becomes Reality – The Truth About Mount Weather</title>
		<link>http://feedproxy.google.com/~r/thejakemarsh/~3/R-5oEY-cwGs/</link>
		<comments>http://thejakemarsh.com/1085/#comments</comments>
		<pubDate>Mon, 22 Sep 2008 01:51:14 +0000</pubDate>
		<dc:creator>Jake Marsh</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://thejakemarsh.com/?p=1085</guid>
		<description><![CDATA[


If you've never heard of Mount Weather, congratulations, you're part of 99.9% of Americans who haven't. Either because of the successes of those who would like to keep its secrecy intact or the failures of others to expose it, you've been left in the dark. To shed some light on the truth, please read on. [...]]]></description>
			<content:encoded><![CDATA[<br /><br />
<a href="http://thejakemarsh.com/1085/"><img src="http://thejakemarsh.com/images/Mount-Weather-Banner.png" alt="" /></a>

<p>If you've never heard of Mount Weather, congratulations, you're part of 99.9% of Americans who haven't. Either because of the successes of those who would like to keep its secrecy intact or the failures of others to expose it, you've been left in the dark. To shed some light on the truth, please read on. (Simply click the read on link below to continue reading).</p>
<br />
<br />
<span id="more-1085"></span>

<p>The land in the rolling hills of Northern Virginia is made out of native rock ringing broad acres of open fields. The roads are small and winding, a narrow turnpike that rolls over single-lane wood bridges. Old wood farmhouses, more ambitious homes faced with more of that native stone, sit far off the twisty road amid the hills. Sprinkled along the turnpike are several wee and very old towns - a general store, a church, and nothing more. For someone like me, from the suburbs, it's a dream. It's gentrified country.</p>

<p>Looking out any of the windows in some of the homes there, you will see a small mountain standing ten or fewer miles away. It's a long ridge, and its flanks are dotted by the occasional whitewashed farm  house, but it's mostly trees. But wait - what's that on the left there? No, farther left. It looks like a collection of buildings too big to be the farm of a country gentleman. And is that a <em>guard tower</em>?</p>

<p style="text-align: center;"><img src="http://thejakemarsh.com/images/Mount-Weather-001.png" alt="" align="center" /></p>

<p>It <em>is</em> a guard tower. It belongs to part of the government complex on <a href="http://ludb.clui.org/ex/i/VA3139/" target="new"><strong>Mount</strong> <strong>Weather</strong></a>, so named because the National <strong>Weather</strong> Bureau had a <a href="http://www.photolib.noaa.gov/historic/nws/wea01139.htm" target="new"> <strong>weather</strong> observatory on the mountain</a> a very long time ago. According to <a href="http://www.globalsecurity.org/wmd/facility/mt_weather.htm" target="new">this website</a>, there was an artillery range located at <strong>Mount</strong> <strong>Weather</strong> during WWI, and Calvin Coolidge considered making a summer White House at there. (The <strong>weather</strong> in the summer in that area is gloriously cool.) Then in 1936, the mountain passed to the Bureau of Mines, which began tunneling into the mountain to see what there was to see. The mountain is made of exceptionally hard Precambrian basalt, the hardest in the east, and that, coupled with concern over the <a href="http://en.wikipedia.org/wiki/Soviet_atomic_bomb" target="new">Russians' 1949 atomic bomb detonation</a>, is why the Eisenhower administration spent years tunneling into the mountain and creating what <a href="http://www.mountwashington.org/transcripts/2002/01/14.html" target="new">this site</a> calls "a kind of doomsday super-bunker."</p>

<p style="text-align: center;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="src" value="http://www.youtube.com/v/-S2J3i34XW8&amp;hl=en&amp;fs=1" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/-S2J3i34XW8&amp;hl=en&amp;fs=1" allowfullscreen="true"></embed></object>

<p><em><strong>"FEMA Underground"</strong> - A documentary about asteroid impacts included this FEMA interview that put its director of communications in the HOT SEAT. Note how he answers the questions.</em></p>

<p>A Cold War-era underground bunker? It's a <a href="http://www.abovetopsecret.com/pages/mountweather.html" target="new">conspiracy theorist's dream</a>! Beneath the mountain, it's <a href="http://www.informantnews.com/starshipgamma/underground/under3.html" target="new">said</a> that there is a hospital, office buildings (and sidewalks!), a freshwater lake, a TV station, a power station, water purification system, living quarters for those VIPs who get invited inside the mountain to <strong>weather</strong> a nuclear attack (pun intended), and a crematorium. Stories about <strong>Mount</strong> Weather's bunker and the <a href="http://www.lewrockwell.com/orig/young2.html" target="new">nefarious plan to shuffle political VIPs to underground facilities while the rest of us writhe and burn in a radioactive cloud</a> are delicious grist for those inclined to wear tin foil chapeax. <strong>Mount</strong> <strong>Weather</strong> has <a href="http://en.wikipedia.org/wiki/Seven_Days_in_May" target="new">found its way into pop culture (even as far back as the 1960s)</a>; heck, it <a href="http://www.themareks.com/xf/2002.shtml" target="new">even rated a mention on the X-Files back in the day</a>. And yes, it's gotten some attention from a couple of <a href="http://www.burlingtonnews.net/kerksburgufo.html" target="new">different factions</a> of the <a href="http://roswellproof.homestead.com/Lovekin.html" target="new">UFO folks.</a> It <a href="http://www.riehlworldview.com/carnivorous_conservative/2004/10/kerry_a_clear_a.html" target="new">isn't just left-wing loonies</a> who find the mountain intriguing; even <a href="http://www.newsmax.com/archives/articles/2001/11/6/163939.shtml" target="new">right wingers</a> and <a href="http://www.cuttingedge.org/News/n1569.cfm" target="new">the fundies</a> get into the tin foil hat-wearing in <strong>Mount</strong> <strong>Weather</strong> speculation.
</p>

<p style="text-align: center;"><img src="http://thejakemarsh.com/images/Mount-Weather-002.png" alt="" align="center" /></p>
<p>So how much of the buzz about <strong>Mount</strong> <strong>Weather</strong> is crazy conspiracy stuff, and how much of it is real? Well, <a href="http://en.wikipedia.org/wiki/Mount_Weather" target="new">it <em>does</em> exist</a>. Unlike the Naval Observatory, <a href="http://googlesightseeing.com/2005/05/29/mount-weather/#comments" target="new">there are even satellite pictures of it</a> (the long curves in the road leading <strong>up</strong> to it are theoretically to accommodate big trucks carrying large missiles, which apparently don't manage tight curves). I've driven by it and taken pictures (hastily, as rumor has it that guards will confiscate the cameras of anyone caught snapping pictures; the site is visible from a part of the Appalachian Trail, and it's said that hikers who have been caught sketching the site have had to surrender their sketch pads). On top of the ridge along a narrow but well-maintained road that runs beside and to the <strong>Mount</strong> <strong>Weather</strong> facility, acres of land are fenced off and marked as property of the U.S. Government. Through the trees and the fencing, you can catch glimpses of the complex of buildings.</p>

<p style="text-align: center;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="src" value="http://www.youtube.com/v/R40zwj4MUo4&amp;hl=en&amp;fs=1" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/R40zwj4MUo4&amp;hl=en&amp;fs=1" allowfullscreen="true"></embed></object></p>

<p style="text-align: center;"><em>Jamey Singleton from Local News Network 'WSLS' looks into the secrets surrounding Mount Weather, located in Northern Virginia, west of D.C.</em></p>

<p><strong>Mount</strong> <strong>Weather</strong> (also known as "High Rock") no doubt is part of the <a href="http://www.mises.org/story/739" target="new">Federal ARC surrounding the nation's capital</a> - underground sites in North Carolina, Virginia, West Virginia, Pennsylvania, and Maryland with contingency facilities for the government buried beneath the mountains. Among these are "Site R" (Raven Rock) in Pennsylvania, which operates as an underground Pentagon; a site in Culpeper, Virginia, set aside for the Federal Reserve; and the well-known <a href="http://www.greenbrier.com/site/leisure/leisure_default.aspx" target="new">Greenbrier Resort in West Virginia</a>, which <a href="http://www.atomictourist.com/green.htm" target="new">now offers tours of the bunker located beneath the resort</a>. Not all of these sites still operate as government bunkers, though <a href="http://www.theage.com.au/articles/2002/03/16/1015909912138.html" target="new">rumor has it that <strong>Mount</strong> <strong>Weather</strong> is <strong>one</strong> of Dick Cheney's favorite undisclosed locations</a>. Some say that on September 11, Cheney was whisked away into the bunker beneath the White House. Others insist that he was at <a href="http://www.windsofchange.net/archives/005088.php" target="new">Raven Rock</a>. But he may have <a href="http://amygdalagf.blogspot.com/2002/03/groundhog-day-im-little-tired-of.html"> spent that day at <strong>Mount</strong> <strong>Weather</strong></a>. Locals in the area report a long caravan of official cars making their way down Route 50 onto Route 601, the small (but well-maintained) road that leads to the <strong>Mount</strong> <strong>Weather</strong> facilities, on September 11. (I don't have a cite for that, unfortunately - it's word of mouth from locals to me.) <a href="http://www.thebulletin.org/article.php?art_ofn=nd01schwartz" target="new">Dennis Hastert is <strong>one</strong> of the government officials who likely wound <strong>up</strong> at <strong>Mount</strong> <strong>Weather</strong> on September 11.</a></p>

<p style="text-align: center;"><img src="http://thejakemarsh.com/images/Mount-Weather-003.png" alt="" align="center" /></p>

<p><strong>Mount</strong> <strong>Weather</strong> wasn't really known to anyone but the locals who helped make it what it is - most of whom remain quite closed-mouthed about it, according to a <a href="http://www.loudounmagazine.com/page.cfm?id=8" target="new">Loudoun Magazine article</a> that, unfortunately, is not available online (but I bought the mag and read the article, which was quite good). As a <a href="http://www.fas.org/nuke/guide/usa/c3i/cog.htm" target="new">Continuity of Government</a> site, <strong>Mount</strong> <strong>Weather</strong> was shrouded in secrecy for years <a href="http://en.wikipedia.org/wiki/TWA_Flight_514" target="new">until a plane crashed into the mountain in 1974 and skidded <strong>up</strong> the hillside onto <strong>Mount</strong> <strong>Weather</strong> property</a>. The wreath commemorating those killed in the crash is still there, tucked in a rocky niche by the side of the road under the trees.</p>

<p>After the initial revelation following the plane crash, <strong>Mount</strong> <strong>Weather</strong> was pretty much forgotten by all but the tin foiliest. But the events of September 11 and repeated references to Dick Cheney's undisclosed locations <a href="http://www.globalsecurity.org/org/news/2003/030325-shelters01.htm" target="new">renewed interest in Cold War bunker sites like <strong>Mount</strong> <strong>Weather</strong></a>.</p>

<p style="text-align: center;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="src" value="http://www.youtube.com/v/2aou6c2MOmg&amp;hl=en&amp;fs=1" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/2aou6c2MOmg&amp;hl=en&amp;fs=1" allowfullscreen="true"></embed></object></p>

<p style="text-align: center;"><em><strong>"Iron Mountain"</strong> - Mary Nam of Local News Station KOMO 4, profiles a facility referred to as Iron Mountain inner-workings in Pennsylvania.</em></p>

<p>That's all well and good, you say, but besides this tale being somewhat deliciously tin foily (for those of us inclined to enjoy a good conspiracy theory), why should I give a shit about <strong>Mount</strong> <strong>Weather</strong>?</p>

<p>Well, it's a main base of operations for <a href="http://www.fema.gov/rrr/weather.shtm" target="new">FEMA</a>. It's now called the <strong>Mount</strong> <strong>Weather</strong> Emergency Operations Center (<a href="http://coldwar-c4i.net/mt_weather/index.html" target="new">though it's been known by a number of names during its history</a>). When I was out there a couple of months ago, the <a href="http://xkred.com/data/pamela/images/mount_weather/sign.jpg" target="new">sign pointing to the facility</a> still said <em><strong>Mount</strong> <strong>Weather</strong> EAC</em>, which stands for "Emergency Assistance Center"). <a href="http://training.fema.gov/EMIWeb/EMICatalog1/intro/ConferenceandTrainingCenter.html" target="new">FEMA conducts training at the site</a> in classrooms and using both indoor and outdoor simulation areas.</p>

<p>FEMA doesn't just do training at <strong>Mount</strong> <strong>Weather</strong>, though. <a href="http://www.winchesterstar.com/TheWinchesterStar/990918/story_floyd.asp" target="new">When Hurricane Floyd was churning toward the East Coast, FEMA disaster relief operations were revving <strong>up</strong> not just in DC, but also at <strong>Mount</strong> <strong>Weather</strong></a>. It is entirely possible that FEMA's "response" to Hurricane Katrina was generated as much from <strong>Mount</strong> <strong>Weather</strong> as from DC. Who knows - maybe some of the people in <a href="http://www.dailykos.com/story/2006/3/1/194716/0679" target="new">those Katrina briefing tapes that recently resurfaced</a> were hunkered down underneath <strong>Mount</strong> <strong>Weather</strong>. And in February 2006, a <em>Newsweek</em> article <a href="http://www.msnbc.msn.com/id/11436344/site/newsweek" target="new">said:</a></p>

<p><blockquote><strong>One</strong> of the more disquieting questions to surface during congressional investigations into Hurricane Katrina concerns Mt. <strong>Weather</strong>, a huge government bunker under the Blue Ridge Mountains west of Washington, D.C.</p>

...

Known to government officials for many years as FEMA's "classified location," after the cold war ended Mt. <strong>Weather</strong> went semipublic, even hosting emergency-management seminars. But it also has remained a critical command post; in government jargon, Mt. <strong>Weather</strong> staffers are on duty 24/7/365.

But according to an e-mail sent by former FEMA chief Michael Brown last Aug. 30, some Mt. <strong>Weather</strong> personnel were not exactly on the ball on the day after Katrina hit the Gulf Coast. "I am ready [sic] to blow <strong>up</strong> IT support at the mountain," Brown told aides Brooks Altshuler and Patrick Rhode. "They can't seem to get me connected ... or even care about getting me connected."</blockquote></p>

<p>The article goes on with a quote from James Lee Witt saying that the <strong>Mount</strong> <strong>Weather</strong> personnel are some of the finest people he's ever worked with, and his saying that <strong>Mount</strong> <strong>Weather</strong> is a "'very important' center for government communications in a crisis." A spokesperson for FEMA said, in the article, that the communications issues Brownie experienced were minimal, but given <a href="http://www.nationaldefensemagazine.org/issues/2006/jan/inter-agency.htm" target="new">interagency communications SNAFUs during responses to both September 11 and Katrina</a>, it might be worth considering the possibility that the communications problems between Brownie and <strong>Mount</strong> <strong>Weather</strong> were large enough to cause problems in FEMA's Katrina response, and to entertain the notion that the FEMA spokesperson quoted in the article was doing a little whitewashing, as administration officials have been known to do.</p>

<p>If that isn't tin foily enough for you, there are plenty of <a href="http://www.loompanics.com/Articles/femaroad.htm" target="new">articles</a> that <a href="http://www.zetatalk.com/theword/tword12t.htm">talk about the evils of FEMA</a>. They <a href="http://www.sfbg.com/nessie/6.html" target="new">aren't from mainstream sources</a>, but some of them are <a href="http://www.rutherford.org/articles_db/commentary.asp?record_id=357" target="new">worth a read.</a> The last link there relates directly to Katrina and FEMA, and in it, you'll find references to the shadow government, which might actually be FEMA itself:</p>

<p><blockquote>Many critics believe that FEMA is a “shadow government” that will take over at any time. Because it is given very little media attention and essentially has no congressional accountability, there is very little we know about the official workings of FEMA. <strong>One</strong> thing is sure, FEMA does more than just provide relief after a natural disaster. Two separate but not necessarily mutually exclusive situations surrounding FEMA provide a better understanding of their power and the threat they may pose to civil liberties during a national emergency.

...

FEMA’s role at the facility is allegedly to establish a “back <strong>up</strong> government” in case of a national disaster. Supposedly there is also an Office of the Presidency at <strong>Mount</strong> <strong>Weather</strong>, which is appointed by FEMA and regularly receives top secret national security information from all Federal departments and agencies.</blockquote></p>

<p>That may strike some as being a little too shiny-hatted, but if you'd told me seven years ago that we'd be talking about a sitting president who insists on holding prisoners with no official prisoner status, black prisons, torturing prisoners, spying on Americans without a warrant... well, I would have said that all sounded as suspect as there being a shadow government hiding beneath a mountain that houses what used to be a Cold War bunker.</p>

<p>From the same article:</p>

<p><blockquote>The facility, for the most part, was a secret to everyone, including Congress, until a Senate Subcommittee on Constitutional Rights hearing in 1975. During this hearing, some minimal information about the various facilities surfaced, but the specifics of these facilities are still a secret.

Senators were rebuffed in their quest for information about <strong>Mount</strong> <strong>Weather</strong>. For example, testifying before the Senate Subcommittee, <strong>Air</strong> <strong>Force</strong> General Leslie W. Bray said, “I am not at liberty to describe precisely what is the role and the mission and the capability that we have at <strong>Mount</strong> <strong>Weather</strong>, or at any other precise location.” Douglas Lea, subcommittee staff director, made these comments: “I don’t understand what they are trying to hide out there. <strong>Mount</strong> <strong>Weather</strong> is just closed <strong>up</strong> to us. I don’t believe there’s been any effective Congressional control over the system.” To this day, Congress still has no oversight, budgetary or otherwise, on the <strong>Mount</strong> <strong>Weather</strong> facility.</blockquote></p>

<p>Well, you know, that sounds familiar. <strong>Congress without oversight?</strong> Hmmmm. Shall I pass you a roll of Reynolds so you can begin fashioning your own hat?</p>

<p><a href="http://forums.therandirhodesshow.com/index.php?showtopic=68221" target="new">Someone posted on Randi Rhodes' message board</a> with a quote from a <a href="http://www.amazon.com/gp/product/0929385225/102-1130345-8729725?v=glance&amp;n=283155" target="new">conspiracy theory book</a> with the following quote about FEMA:</p>

<p><blockquote>"I believe the plan to suspend the Constitution is directly tied to the underground facility called <strong>Mount</strong> <strong>Weather</strong> and to the Federal Emergency Management Agency (FEMA). <strong>Mount</strong> <strong>Weather</strong> is so shrouded in secrecy that 99.9% of Americans have never heard of it. FEMA, however, is another story. Remember Hurricane Hugo? Remember the federal agency (FEMA) that was sent to handle the emergency and was thrown out by the citizens because of gross incompetence? FEMA was incompetent, because “emergency management” is just a guise for its real purpose, which is to take over local, state and federal government in case of a national emergency. The only way FEMA could do such a thing is if the Constitution were suspended and martial law were declared. Therefore its very existence is proof positive that a plan to suspend the Constitution does in fact exist."</blockquote></p>

<p>You know, in the mid-nineties, it didn't occur to me to think that a president might try to subvert (or suspend) the Constitution, or might try to stay in power beyond his term. But these days, notions like that don't seem quite as <em>out there</em> as they used to, thanks to the way Bush has conducted himself since he came into office.</p>

<p>Of course, <a href="http://www.greatdreams.com/concentration.htm" target="new">some of the sites connecting <strong>Mount</strong> <strong>Weather</strong> with the looming monster that is FEMA</a> talk about the concentration camps that FEMA is building to intern people in the event of a... disaster or... emergency or... martial law or... fill in the blank. A number of <a href="http://www.conspiracyarchive.com/NWO/Heart_Mountain_FEMA.htm" target="new">the sites claiming that political dissidents will be locked <strong>up</strong> into FEMA/DHS-run camps</a> aren't particularly trustworthy sources. Then again, <a href="http://www.dailykos.com/story/2005/12/13/225536/77" target="new">the detention camps line of thought has found its way to dKos</a>. Also <a href="http://www.dailykos.com/story/2006/3/3/54438/46940" target="new">here</a> and <a href="http://www.dailykos.com/story/2006/2/3/23290/07607" target="new">here</a> and <a href="http://www.dailykos.com/story/2006/1/30/234854/651" target="new">here</a>. And <a href="http://www.dailykos.com/story/2006/1/8/17828/64576" target="new">some posit</a> that martial law might not be far away. Especially if the <a href="http://www.globalresearch.ca/index.php?context=viewArticle&amp;code=CHO20051004&amp;articleId=1041" target="new">avian flu thing happens in a big way</a>.</p>

<p>And, though I hate myself a little bit for wearing the foil hat here, given <a href="http://www.brendan-nyhan.com/blog/2006/01/bush_attacks_di.html" target="new">Bush's disdain for dissent</a> and whistleblowers and his hatred of having to acknowledge the reality-based world outside his bubble, it wouldn't entirely surprise me if those stories about Halliburton building detention centers were true. And it wouldn't entirely surprise me if Bush tried to stick dissenters - Quakers and more volatile liberal types (like me) alike - into these places. After all, this is the man who goes out of his way to make certain that "enemy combatants" qualify neither as prisoners of war (subject to Geneva Conventions rules) or detainees of the American criminal system (subject to the <a href="http://caselaw.lp.findlaw.com/data/constitution/amendment05/" target="new">Fifth Amendment</a>).</p>

<p>Maybe the fact that the sources of such theories generally aren't given much credibility has as much to do with the failures of the traditional media in doing its job as it does with the fact that we - and Congress - simply do not know what the <a href="http://www.dailykos.com/tag/secrecy" target="new">ultra-secretive Bush administration</a> is <strong>up</strong> most of the time. I don't necessarily think that all the conspiracy theory sites should be dismissed without a second glance (though I try to steer clear of the anti-Freemason crowd and the UFO folk and similar); we call them loony, but I try to remember that, to the right wingers, we're all loonies, and our prescience about what would happen with the Iraq war <a href="http://www.dailykos.com/story/2006/3/5/16341/86414" target="new">is still ignored by the right wing as being crackpottery</a>.</p>

<p>But let's leave off FEMA - as timely a subject as it is these days - and how it relates to <strong>Mount</strong> <strong>Weather</strong>. Hey, how 'bout we talk about that whole "Ignoring the Constitution" thing Bush does so well. I ran across a fascinating site called <a href="http://www.politicalfriendster.com/" target="new">Political Friendster</a>. And you know what? <a href="http://www.politicalfriendster.com/showPerson.php?id=3077&amp;name=Mount-Weather" target="new"><strong>Mount</strong> <strong>Weather</strong> is hooked <strong>up</strong> with several politicians and other entities and entries</a>.  <strong>One</strong> is <a href="http://www.politicalfriendster.com/showPerson.php?id=3078&amp;name=John-Varick-Tunney" target="new">former California senator John Varick Tunney</a>, who in 1975, according to <a href="http://www.totse.com/en/conspiracy/institutional_analysis/weathr.html" target="new">this article</a>,
<blockquote><strong>charged that <strong>Mount</strong> <strong>Weather</strong> held dossiers on 100,000 or more Americans. A sophisticated computer system gives the installation access to detailed information on the lives of virtually every American citizen, Tunney claimed. <strong>Mount</strong> <strong>Weather</strong> personnel stonewalled question after question in two Senate hearings</strong>.</p>

<p>"I don't understand what they're trying to hide out there," Douglas Lea, staff director of the Senate Subcommittee on Constitutional Rights, said. "<strong>Mount</strong> <strong>Weather</strong> is just closed <strong>up</strong> to us." Tunney complained that <strong>Mount</strong> <strong>Weather</strong> was "out of control."</blockquote>
And this was in the 1970s, long before the fact of Bush's warrant-less wiretapping was the awful reality that it is. Before lack of Congressional oversight was a daily and ongoing problem. Before Bush and Company began running amok. If <strong>Mount</strong> <strong>Weather</strong> and its ilk were out of control in the '70s, what kind of a monster might it be now, under this monstrous administration?</p>

<p>As it turns out, <a href="http://www.politicalfriendster.com/showPerson.php?id=2952&amp;name=Bush-Terrorist-Surveillance-Program" target="new">the Bush Terrorist Surveillance Program</a> is also connected to <strong>Mount</strong> <strong>Weather</strong> on Political Friendster. Whaddaya reckon some of us have dossiers stored under the mountain there? We know the administration runs secret spying programs against its own citizens; we know the administration keeps lists - like the No-Fly list; we know the administration has a zillion and <strong>one</strong> <a href="http://www.dailykos.com/tag/SECRET" target="new">secrets</a>. There are <a href="http://www.dailykos.com/tag/domestic%20spying" target="new">any number of diaries here at dKos about the domestic spying program</a> and <a href="http://www.dailykos.com/story/2006/2/15/153652/492" target="new">more domestic spying that we didn't know about when we found out about the first domestic spying program</a>. It's not just your garden-variety warrantless wiretapping, either. There's also datamining, like <a href="http://www.dailykos.com/tag/TIA" target="new">TIA</a>. Where are they storing all this information they're collecting? Entirely possible you've got records stashed under <strong>Mount</strong> <strong>Weather</strong>. Or me. All of us. If not under <strong>Mount</strong> <strong>Weather</strong>, maybe under some other mountain in the Federal ARC. <a href="http://www.anteon.com/offer/Systems_Integration/Case_Studies/index.aspx?id=241" target="new">Anteon maintains the FEMA information management system at <strong>Mount</strong> <strong>Weather</strong></a>; do they have a secret contract to manage databases containing information about Americans, a kind of "black database" not unlike the "black prisons" in Eastern Europe?</p>

<p>There are several reasons I posted this entry. The first is that so many things in the Bush administration seem linked - the FEMA screw-ups, DHS folding FEMA into its ... cape? The NSA warrantless wiretapping and how-ever-many-other spying and "datamining" operations the administration is running. Those things all seem related, and I find myself wondering if the warrantless spying is part of the reason that the traditional media isn't making more hay of the news coming out of this administration, given what they did with Clinton's blowjob debacle. Are the 'journalists" being blackmailed? (Or are they just inserting themselves into the news the way Judy Miller did?) Is the spying related to why so many of our elected officials are rolling over for Bush? Have they been spied on and blackmailed?</p>

<p>Even if the media and politicians haven't been compromised by the spying, it still has so much bearing on so many other things that have been shown to be wrong with this criminal administration. The spying is related to <a href="http://www.tpmcafe.com/story/2005/12/16/142620/20" target="new">John Bolton and the UN</a>, which in turn is <a href="http://www.huffingtonpost.com/arianna-huffington/plamegate-the-john-bolto_b_7648.html" target="new">related to Plamegate</a> and <a href="http://www.downingstreetmemo.com/" target="new">getting us into the Iraq debacle</a>. At any rate, so much of what we know about the Bush administration - what we know to be factual - is related and interconnected.</p>

<p><strong>Other Sources:</strong>
<ul>
	<li> Pollack, Richard, "The Mysterious Mountain," <span style="text-decoration: underline;">The Progressive</span>, March 1976, pages 12-16.</li>
	<li> Emerson, Steven, "America's Doomsday Project," <span style="text-decoration: underline;">US News and World Report</span>, 08/07/1989, pages 26-31.</li>
	<li> Walters, Robert, "Going Underground," <span style="text-decoration: underline;">Inquiry</span>, 2 February 1991, pages 12-16.</li>
	<li> Royce, Knut, "COG in US Nuclear Wheel," <span style="text-decoration: underline;">Baltimore News American</span>, 2 May 1983, page 1.</li>
	<li> Gup, Ted, "Doomsday Hideaway," <span style="text-decoration: underline;">Time</span>, 9 December 1991, pages 26-29.</li>
	<li> Gup, Ted, "The Doomsday Blueprints," <span style="text-decoration: underline;">Time</span>, 10 August 1992, pages 32-39.</li>
</ul></p>

<p><strong>Footnote:</strong> A lot of the content of this post came from a post I discovered in my research that had seemingly been posted but then deleted. So before everyone goes all nutzo on me for using someone else's words, just know that I'm aware of it and only used them so I could get the message out. If anyone knows who the original author was please let me know and I'll be sure to give them full credit where it is due.</p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/thejakemarsh?a=R-5oEY-cwGs:1rGhOeUJu9I:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/thejakemarsh?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/thejakemarsh?a=R-5oEY-cwGs:1rGhOeUJu9I:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/thejakemarsh?i=R-5oEY-cwGs:1rGhOeUJu9I:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/thejakemarsh?a=R-5oEY-cwGs:1rGhOeUJu9I:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/thejakemarsh?i=R-5oEY-cwGs:1rGhOeUJu9I:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/thejakemarsh?a=R-5oEY-cwGs:1rGhOeUJu9I:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/thejakemarsh?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/thejakemarsh?a=R-5oEY-cwGs:1rGhOeUJu9I:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/thejakemarsh?i=R-5oEY-cwGs:1rGhOeUJu9I:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/thejakemarsh/~4/R-5oEY-cwGs" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://thejakemarsh.com/1085/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		<feedburner:origLink>http://thejakemarsh.com/1085/</feedburner:origLink></item>
	</channel>
</rss>
