<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Adam V's Tumble Blog</title>
	<atom:link href="http://adamvstumbler.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://adamvstumbler.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Tue, 09 Feb 2010 05:21:58 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='adamvstumbler.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/6aa31aa0edc53696ee5cb906205e4999?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Adam V's Tumble Blog</title>
		<link>http://adamvstumbler.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://adamvstumbler.wordpress.com/osd.xml" title="Adam V&#8217;s Tumble Blog" />
		<item>
		<title>n-dimension generalized cross product code</title>
		<link>http://adamvstumbler.wordpress.com/2010/01/29/n-dimension-cross-product-code/</link>
		<comments>http://adamvstumbler.wordpress.com/2010/01/29/n-dimension-cross-product-code/#comments</comments>
		<pubDate>Fri, 29 Jan 2010 15:07:11 +0000</pubDate>
		<dc:creator>adamv</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://adamvstumbler.wordpress.com/2010/01/29/n-dimension-cross-product-code/</guid>
		<description><![CDATA[Note:  I suspect this code does not work.
Found this online, because it was out in public I&#8217;m assuming its okay to reshare.
Vector Vector::cross(const Vector *const v, u_int n_vectors)
{
	Vector r(n_vectors+1);
	SquareMatrix m(n_vectors);
	for (u_int i=0; i&#60;r.N; ++i)
	{
		for (u_int j=0; j&#60;r.N; ++j)
		{
			for (u_int k=0; k&#60;m.N; ++k)
			{
				if (j &#60; i)
				{
					m[k][j] = v[k][j];
				}
				else if (j &#62; i)
				{
					m[k][j-1] = v[k][j-1];
				}
			}
		}
		r.X[i] = [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=adamvstumbler.wordpress.com&blog=2865986&post=267&subd=adamvstumbler&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<br /><p><strong>Note:</strong>  I suspect this code does not work.</p>
<p>Found this online, because it was out in public I&#8217;m assuming its okay to reshare.</p>
<pre class="brush: plain;">Vector Vector::cross(const Vector *const v, u_int n_vectors)
{
	Vector r(n_vectors+1);
	SquareMatrix m(n_vectors);
	for (u_int i=0; i&lt;r.N; ++i)
	{
		for (u_int j=0; j&lt;r.N; ++j)
		{
			for (u_int k=0; k&lt;m.N; ++k)
			{
				if (j &lt; i)
				{
					m[k][j] = v[k][j];
				}
				else if (j &gt; i)
				{
					m[k][j-1] = v[k][j-1];
				}
			}
		}
		r.X[i] = m.determinant();
	}
	return r;
}</pre>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/adamvstumbler.wordpress.com/267/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/adamvstumbler.wordpress.com/267/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/adamvstumbler.wordpress.com/267/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/adamvstumbler.wordpress.com/267/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/adamvstumbler.wordpress.com/267/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/adamvstumbler.wordpress.com/267/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/adamvstumbler.wordpress.com/267/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/adamvstumbler.wordpress.com/267/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/adamvstumbler.wordpress.com/267/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/adamvstumbler.wordpress.com/267/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=adamvstumbler.wordpress.com&blog=2865986&post=267&subd=adamvstumbler&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://adamvstumbler.wordpress.com/2010/01/29/n-dimension-cross-product-code/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3e65b54f0986bce090a34cdffcdf64a9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">adamv</media:title>
		</media:content>
	</item>
		<item>
		<title>Dolphins: Second-Smartest Animals?</title>
		<link>http://adamvstumbler.wordpress.com/2010/01/24/dolphins-second-smartest-animals/</link>
		<comments>http://adamvstumbler.wordpress.com/2010/01/24/dolphins-second-smartest-animals/#comments</comments>
		<pubDate>Sun, 24 Jan 2010 13:21:24 +0000</pubDate>
		<dc:creator>adamv</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://adamvstumbler.wordpress.com/?p=265</guid>
		<description><![CDATA[THE GIST:     New research suggests that dolphins are second only to humans in smarts.     MRI scans indicate that these marine mammals are self-aware.     Researchers think dolphins are especially vulnerable to suffering and trauma.
via Discovery News.
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=adamvstumbler.wordpress.com&blog=2865986&post=265&subd=adamvstumbler&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<br /><p>THE GIST:     New research suggests that dolphins are second only to humans in smarts.     MRI scans indicate that these marine mammals are self-aware.     Researchers think dolphins are especially vulnerable to suffering and trauma.</p>
<p>via <a href="http://news.discovery.com/animals/dolphins-smarter-brain-function.html">Discovery News</a>.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/adamvstumbler.wordpress.com/265/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/adamvstumbler.wordpress.com/265/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/adamvstumbler.wordpress.com/265/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/adamvstumbler.wordpress.com/265/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/adamvstumbler.wordpress.com/265/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/adamvstumbler.wordpress.com/265/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/adamvstumbler.wordpress.com/265/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/adamvstumbler.wordpress.com/265/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/adamvstumbler.wordpress.com/265/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/adamvstumbler.wordpress.com/265/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=adamvstumbler.wordpress.com&blog=2865986&post=265&subd=adamvstumbler&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://adamvstumbler.wordpress.com/2010/01/24/dolphins-second-smartest-animals/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3e65b54f0986bce090a34cdffcdf64a9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">adamv</media:title>
		</media:content>
	</item>
		<item>
		<title>Top 10 Science Fiction Disappointments Of The Past Decade</title>
		<link>http://adamvstumbler.wordpress.com/2009/12/09/top-10-science-fiction-disappointments-of-the-past-decade/</link>
		<comments>http://adamvstumbler.wordpress.com/2009/12/09/top-10-science-fiction-disappointments-of-the-past-decade/#comments</comments>
		<pubDate>Wed, 09 Dec 2009 22:06:25 +0000</pubDate>
		<dc:creator>adamv</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://adamvstumbler.wordpress.com/?p=254</guid>
		<description><![CDATA[Disappointment sometimes seems the natural state of mind for science-fiction fans, but it&#38;apos;s because we have so much hope. We raise our hopes again and again, only to suffer crushing disappointment. Here are the 10 worst letdowns of the 2000s.Note: I&#38;apos;m not including the Star Wars prequels here, because the big letdown was The Phantom [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=adamvstumbler.wordpress.com&blog=2865986&post=254&subd=adamvstumbler&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<br /><p>Disappointment sometimes seems the natural state of mind for science-fiction fans, but it&amp;apos;s because we have so much hope. We raise our hopes again and again, only to suffer crushing disappointment. Here are the 10 worst letdowns of the 2000s.Note: I&amp;apos;m not including the Star Wars prequels here, because the big letdown was The Phantom Menace in 1999. After that, the other two movies couldn&amp;apos;t really be letdowns.</p>
<p>via <a href="http://io9.com/5420137/top-10-science-fiction-disappointments-of-the-past-decade/gallery/?skyline=true&amp;s=x">io9</a>.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/adamvstumbler.wordpress.com/254/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/adamvstumbler.wordpress.com/254/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/adamvstumbler.wordpress.com/254/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/adamvstumbler.wordpress.com/254/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/adamvstumbler.wordpress.com/254/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/adamvstumbler.wordpress.com/254/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/adamvstumbler.wordpress.com/254/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/adamvstumbler.wordpress.com/254/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/adamvstumbler.wordpress.com/254/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/adamvstumbler.wordpress.com/254/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=adamvstumbler.wordpress.com&blog=2865986&post=254&subd=adamvstumbler&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://adamvstumbler.wordpress.com/2009/12/09/top-10-science-fiction-disappointments-of-the-past-decade/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3e65b54f0986bce090a34cdffcdf64a9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">adamv</media:title>
		</media:content>
	</item>
		<item>
		<title>A History Channel Documentary from the Future: Beatles 3000</title>
		<link>http://adamvstumbler.wordpress.com/2009/12/01/a-history-channel-documentary-from-the-future-beatles-3000-funny-videos-cracked-com/</link>
		<comments>http://adamvstumbler.wordpress.com/2009/12/01/a-history-channel-documentary-from-the-future-beatles-3000-funny-videos-cracked-com/#comments</comments>
		<pubDate>Tue, 01 Dec 2009 16:12:43 +0000</pubDate>
		<dc:creator>adamv</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://adamvstumbler.wordpress.com/?p=252</guid>
		<description><![CDATA[A History Channel Documentary from the Future: Beatles 30001000 years ago today, the Beatles roamed the earth.
via Cracked.com.
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=adamvstumbler.wordpress.com&blog=2865986&post=252&subd=adamvstumbler&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<br /><p>A History Channel Documentary from the Future: Beatles 30001000 years ago today, the Beatles roamed the earth.</p>
<p>via <a href="http://www.cracked.com/video_18117_a-history-channel-documentary-from-future-beatles-3000.html">Cracked.com</a>.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/adamvstumbler.wordpress.com/252/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/adamvstumbler.wordpress.com/252/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/adamvstumbler.wordpress.com/252/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/adamvstumbler.wordpress.com/252/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/adamvstumbler.wordpress.com/252/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/adamvstumbler.wordpress.com/252/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/adamvstumbler.wordpress.com/252/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/adamvstumbler.wordpress.com/252/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/adamvstumbler.wordpress.com/252/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/adamvstumbler.wordpress.com/252/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=adamvstumbler.wordpress.com&blog=2865986&post=252&subd=adamvstumbler&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://adamvstumbler.wordpress.com/2009/12/01/a-history-channel-documentary-from-the-future-beatles-3000-funny-videos-cracked-com/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3e65b54f0986bce090a34cdffcdf64a9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">adamv</media:title>
		</media:content>
	</item>
		<item>
		<title>Sneaky banks need to be set straight</title>
		<link>http://adamvstumbler.wordpress.com/2009/11/17/sneaky-banks-need-to-be-set-straight/</link>
		<comments>http://adamvstumbler.wordpress.com/2009/11/17/sneaky-banks-need-to-be-set-straight/#comments</comments>
		<pubDate>Tue, 17 Nov 2009 02:49:12 +0000</pubDate>
		<dc:creator>adamv</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://adamvstumbler.wordpress.com/?p=249</guid>
		<description><![CDATA[There is also some noise that a new protection agency could stifle innovation. But is an over-the-limit fee really an innovation, or just a cheap trick designed to fool customers into believing a product costs one price when the majority of customers actually pay far more?
via Marketplace From American Public Media.
     [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=adamvstumbler.wordpress.com&blog=2865986&post=249&subd=adamvstumbler&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<br /><p>There is also some noise that a new protection agency could stifle innovation. But is an over-the-limit fee really an innovation, or just a cheap trick designed to fool customers into believing a product costs one price when the majority of customers actually pay far more?</p>
<p>via <a href="http://marketplace.publicradio.org/display/web/2009/11/16/pm-tyagi-commentary/">Marketplace From American Public Media</a>.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/adamvstumbler.wordpress.com/249/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/adamvstumbler.wordpress.com/249/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/adamvstumbler.wordpress.com/249/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/adamvstumbler.wordpress.com/249/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/adamvstumbler.wordpress.com/249/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/adamvstumbler.wordpress.com/249/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/adamvstumbler.wordpress.com/249/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/adamvstumbler.wordpress.com/249/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/adamvstumbler.wordpress.com/249/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/adamvstumbler.wordpress.com/249/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=adamvstumbler.wordpress.com&blog=2865986&post=249&subd=adamvstumbler&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://adamvstumbler.wordpress.com/2009/11/17/sneaky-banks-need-to-be-set-straight/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3e65b54f0986bce090a34cdffcdf64a9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">adamv</media:title>
		</media:content>
	</item>
		<item>
		<title>Ayn Rand&#8217;s Conservative Call Echoes Today</title>
		<link>http://adamvstumbler.wordpress.com/2009/11/02/ayn-rands-conservative-call-echoes-today/</link>
		<comments>http://adamvstumbler.wordpress.com/2009/11/02/ayn-rands-conservative-call-echoes-today/#comments</comments>
		<pubDate>Mon, 02 Nov 2009 16:00:33 +0000</pubDate>
		<dc:creator>adamv</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://adamvstumbler.wordpress.com/?p=247</guid>
		<description><![CDATA[But Rand, who preached the notion of absolute personal freedom and individualism, was a study in contradictions.Among her acolytes, she did not tolerate dissent.&#8221;What she would tell you, basically, is that she was right and you were not thinking properly if you did not agree with her,&#8221; Heller says.Rand&#8217;s longtime lover and student Nathaniel Branden [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=adamvstumbler.wordpress.com&blog=2865986&post=247&subd=adamvstumbler&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<br /><p>But Rand, who preached the notion of absolute personal freedom and individualism, was a study in contradictions.Among her acolytes, she did not tolerate dissent.&#8221;What she would tell you, basically, is that she was right and you were not thinking properly if you did not agree with her,&#8221; Heller says.Rand&#8217;s longtime lover and student Nathaniel Branden circulated a list of rules for her followers to absorb. One read: &#8220;Ayn Rand, by virtue of her philosophical genius, is the supreme arbiter in any issue pertaining to what is rational or moral.&#8221;</p>
<p>via <a href="http://www.npr.org/templates/story/story.php?storyId=114373264&amp;sc=fb&amp;cc=fp">NPR</a>.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/adamvstumbler.wordpress.com/247/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/adamvstumbler.wordpress.com/247/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/adamvstumbler.wordpress.com/247/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/adamvstumbler.wordpress.com/247/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/adamvstumbler.wordpress.com/247/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/adamvstumbler.wordpress.com/247/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/adamvstumbler.wordpress.com/247/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/adamvstumbler.wordpress.com/247/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/adamvstumbler.wordpress.com/247/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/adamvstumbler.wordpress.com/247/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=adamvstumbler.wordpress.com&blog=2865986&post=247&subd=adamvstumbler&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://adamvstumbler.wordpress.com/2009/11/02/ayn-rands-conservative-call-echoes-today/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3e65b54f0986bce090a34cdffcdf64a9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">adamv</media:title>
		</media:content>
	</item>
		<item>
		<title>On The Internet, Nobody Knows You&#8217;re Not In The USA</title>
		<link>http://adamvstumbler.wordpress.com/2009/10/31/on-the-internet-nobody-knows-youre-not-in-the-usa/</link>
		<comments>http://adamvstumbler.wordpress.com/2009/10/31/on-the-internet-nobody-knows-youre-not-in-the-usa/#comments</comments>
		<pubDate>Sat, 31 Oct 2009 18:30:42 +0000</pubDate>
		<dc:creator>adamv</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://adamvstumbler.wordpress.com/?p=245</guid>
		<description><![CDATA[A large number of web services are geographically restricted, such as  Hulu,  Pandora and  Spotify. The reasons are usually to do with content licensing restrictions, or because US visitors or visitors from other advanced economies are of a higher value from a monetization perspective. A web application can only guess at the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=adamvstumbler.wordpress.com&blog=2865986&post=245&subd=adamvstumbler&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<br /><p>A large number of web services are geographically restricted, such as  Hulu,  Pandora and  Spotify. The reasons are usually to do with content licensing restrictions, or because US visitors or visitors from other advanced economies are of a higher value from a monetization perspective. A web application can only guess at the location of a visitor based on an IP address and other information, such as browser language and regional settings.</p>
<p>via <a href="http://www.washingtonpost.com/wp-dyn/content/article/2009/10/05/AR2009100500411.html?dyn=popular">On The Internet, Nobody Knows You&#8217;re Not In The USA &#8211; washingtonpost.com</a>.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/adamvstumbler.wordpress.com/245/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/adamvstumbler.wordpress.com/245/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/adamvstumbler.wordpress.com/245/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/adamvstumbler.wordpress.com/245/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/adamvstumbler.wordpress.com/245/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/adamvstumbler.wordpress.com/245/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/adamvstumbler.wordpress.com/245/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/adamvstumbler.wordpress.com/245/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/adamvstumbler.wordpress.com/245/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/adamvstumbler.wordpress.com/245/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=adamvstumbler.wordpress.com&blog=2865986&post=245&subd=adamvstumbler&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://adamvstumbler.wordpress.com/2009/10/31/on-the-internet-nobody-knows-youre-not-in-the-usa/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3e65b54f0986bce090a34cdffcdf64a9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">adamv</media:title>
		</media:content>
	</item>
		<item>
		<title>How Effective Are Multi-Vitamins?</title>
		<link>http://adamvstumbler.wordpress.com/2009/09/10/how-effective-are-multi-vitamins-npr/</link>
		<comments>http://adamvstumbler.wordpress.com/2009/09/10/how-effective-are-multi-vitamins-npr/#comments</comments>
		<pubDate>Thu, 10 Sep 2009 04:21:44 +0000</pubDate>
		<dc:creator>adamv</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://adamvstumbler.wordpress.com/?p=243</guid>
		<description><![CDATA[A new study finds that popping a multivitamin pill everyday will not prevent cancer or heart disease. NPR&#8217;s Allison Aubrey joins me now to explain the study. And Allison, this was a long-term research project involving lots and lots of people. What did the scientists do?
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=adamvstumbler.wordpress.com&blog=2865986&post=243&subd=adamvstumbler&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<br /><p>A new study finds that popping a multivitamin pill everyday will not prevent cancer or heart disease. NPR&#8217;s Allison Aubrey joins me now to explain the study. And Allison, this was a long-term research project involving lots and lots of people. What did the scientists do?</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/adamvstumbler.wordpress.com/243/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/adamvstumbler.wordpress.com/243/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/adamvstumbler.wordpress.com/243/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/adamvstumbler.wordpress.com/243/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/adamvstumbler.wordpress.com/243/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/adamvstumbler.wordpress.com/243/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/adamvstumbler.wordpress.com/243/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/adamvstumbler.wordpress.com/243/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/adamvstumbler.wordpress.com/243/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/adamvstumbler.wordpress.com/243/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=adamvstumbler.wordpress.com&blog=2865986&post=243&subd=adamvstumbler&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://adamvstumbler.wordpress.com/2009/09/10/how-effective-are-multi-vitamins-npr/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3e65b54f0986bce090a34cdffcdf64a9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">adamv</media:title>
		</media:content>
	</item>
		<item>
		<title>A 50-Year Farm Bill</title>
		<link>http://adamvstumbler.wordpress.com/2009/09/03/a-50-year-farm-bill/</link>
		<comments>http://adamvstumbler.wordpress.com/2009/09/03/a-50-year-farm-bill/#comments</comments>
		<pubDate>Thu, 03 Sep 2009 14:23:00 +0000</pubDate>
		<dc:creator>adamv</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://adamvstumbler.wordpress.com/?p=241</guid>
		<description><![CDATA[For 50 or 60 years, we have let ourselves believe that as long as we have money we will have food. That is a mistake. If we continue our offenses against the land and the labor by which we are fed, the food supply will decline, and we will have a problem far more complex [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=adamvstumbler.wordpress.com&blog=2865986&post=241&subd=adamvstumbler&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<br /><p>For 50 or 60 years, we have let ourselves believe that as long as we have money we will have food. That is a mistake. If we continue our offenses against the land and the labor by which we are fed, the food supply will decline, and we will have a problem far more complex than the failure of our paper economy. The government will bring forth no food by providing hundreds of billons of dollars to the agribusiness corporations.</p>
<p>via <a href="http://www.nytimes.com/2009/01/05/opinion/05berry.html">NYTimes.com</a>.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/adamvstumbler.wordpress.com/241/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/adamvstumbler.wordpress.com/241/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/adamvstumbler.wordpress.com/241/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/adamvstumbler.wordpress.com/241/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/adamvstumbler.wordpress.com/241/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/adamvstumbler.wordpress.com/241/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/adamvstumbler.wordpress.com/241/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/adamvstumbler.wordpress.com/241/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/adamvstumbler.wordpress.com/241/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/adamvstumbler.wordpress.com/241/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=adamvstumbler.wordpress.com&blog=2865986&post=241&subd=adamvstumbler&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://adamvstumbler.wordpress.com/2009/09/03/a-50-year-farm-bill/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3e65b54f0986bce090a34cdffcdf64a9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">adamv</media:title>
		</media:content>
	</item>
		<item>
		<title>Making Mock Data Circular</title>
		<link>http://adamvstumbler.wordpress.com/2009/08/29/making-mock-data-circular/</link>
		<comments>http://adamvstumbler.wordpress.com/2009/08/29/making-mock-data-circular/#comments</comments>
		<pubDate>Sat, 29 Aug 2009 05:58:07 +0000</pubDate>
		<dc:creator>adamv</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://adamvstumbler.wordpress.com/?p=239</guid>
		<description><![CDATA[public class CircularIterator implements Iterator {
via Javalobby.
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=adamvstumbler.wordpress.com&blog=2865986&post=239&subd=adamvstumbler&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<br /><p>public class CircularIterator implements Iterator {</p>
<p>via <a href="http://java.dzone.com/articles/making-mock-data-circular">Javalobby</a>.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/adamvstumbler.wordpress.com/239/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/adamvstumbler.wordpress.com/239/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/adamvstumbler.wordpress.com/239/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/adamvstumbler.wordpress.com/239/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/adamvstumbler.wordpress.com/239/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/adamvstumbler.wordpress.com/239/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/adamvstumbler.wordpress.com/239/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/adamvstumbler.wordpress.com/239/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/adamvstumbler.wordpress.com/239/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/adamvstumbler.wordpress.com/239/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=adamvstumbler.wordpress.com&blog=2865986&post=239&subd=adamvstumbler&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://adamvstumbler.wordpress.com/2009/08/29/making-mock-data-circular/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3e65b54f0986bce090a34cdffcdf64a9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">adamv</media:title>
		</media:content>
	</item>
	</channel>
</rss>