<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>John&#160;Wright&#039;s&#160;Microblog</title>
	<atom:link href="http://johnwright.me/microblog/feed" rel="self" type="application/rss+xml" />
	<link>http://johnwright.me/microblog</link>
	<description></description>
	<lastBuildDate>Wed, 08 Feb 2012 04:13:32 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>.htaccess rewrite rule regular expressions</title>
		<link>http://johnwright.me/microblog/mod-rewrite-regular-expression</link>
		<comments>http://johnwright.me/microblog/mod-rewrite-regular-expression#comments</comments>
		<pubDate>Wed, 08 Feb 2012 04:01:25 +0000</pubDate>
		<dc:creator>wrightmb</dc:creator>
				<category><![CDATA[Posts]]></category>

		<guid isPermaLink="false">http://johnwright.me/microblog/?p=273</guid>
		<description><![CDATA[mod_rewrite regular expressions This is good to remember when working with .htaccess and mod_rewrite to rewrite your urls in Apache. Text: . Any single character [chars] One of chars [^chars] None of chars text1&#124;text2 text1 or text2 Quantifiers: ? 0 or 1 of the preceding text * 0 or N of the preceding text (N [...]]]></description>
			<content:encoded><![CDATA[<p><a class="titlelink" href="http://johnwright.me/microblog/mod-rewrite-regular-expression" >mod_rewrite regular expressions</a></p>
<p>This is good to remember when working with .htaccess and mod_rewrite to rewrite your urls in Apache.</p>
<pre><strong>Text:</strong>
  <strong>.</strong> Any single character
  <strong>[</strong>chars<strong>]</strong> One  of chars
  <strong>[^</strong>chars<strong>]</strong> None of chars
  text1<strong>|</strong>text2 text1 or text2</pre>
<pre><strong>Quantifiers:</strong>
  <strong>?</strong> 0 or 1 of the preceding text
  <strong>*</strong> 0 or N of the preceding text (N &gt; 0)
  <strong>+</strong> 1 or N of the preceding text (N &gt; 1)</pre>
<pre><strong>Grouping:</strong>
  <strong>(</strong>text<strong>)</strong> Grouping of text</pre>
<pre><strong>Anchors:</strong>
  <strong>^</strong> Start of line anchor
  <strong>$</strong> End of line anchor</pre>
<pre><strong>Escaping:</strong>
  <strong><em>\</em></strong><em> char escape that particular ch</em>ar</pre>
<p>For more on mod_rewrite, check out <a href="http://www.widexl.com/tutorials/mod_rewrite.html" title="Mod Rewrite Guide" target="_blank" rel="external nofollow">this complete guide</a></p>
]]></content:encoded>
			<wfw:commentRss>http://johnwright.me/microblog/mod-rewrite-regular-expression/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP header cache forever</title>
		<link>http://johnwright.me/microblog/php-header-cache-forever</link>
		<comments>http://johnwright.me/microblog/php-header-cache-forever#comments</comments>
		<pubDate>Tue, 07 Feb 2012 23:05:12 +0000</pubDate>
		<dc:creator>wrightmb</dc:creator>
				<category><![CDATA[Posts]]></category>

		<guid isPermaLink="false">http://johnwright.me/microblog/?p=259</guid>
		<description><![CDATA[PHP code to cache a file forever (well almost) Sometimes you&#8217;d like a file or resource to be cached on the client (or somewhere in between your server and the client) for a long time. Forever would be good. Then if you need to update that resource, you can just rename it or add a [...]]]></description>
			<content:encoded><![CDATA[<p><a class="titlelink" href="http://johnwright.me/microblog/php-header-cache-forever" >PHP code to cache a file forever (well almost)</a></p>
<p>Sometimes you&#8217;d like a file or resource to be cached on the client (or somewhere in between your server and the client) for a long time. Forever would be good. Then if you need to update that resource, you can just rename it or add a &#8216;version&#8217; query string parameter to force it to be updated after your change. </p>
<p>If you&#8217;re serving this file via a PHP then you&#8217;ll need to set the HTTP headers. Here&#8217;s some code setting the php header to cache forever&#8230;</p>
<div class="codecolorer-container php default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br /></div></td><td><div class="php codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><a href="http://www.php.net/header"><span style="color: #990000;">header</span></a><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'Cache-Control: max-age=31556926'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<br />
<span style="color: #000088;">$etag</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'a_unique_version_string'</span><span style="color: #339933;">;</span><br />
<a href="http://www.php.net/header"><span style="color: #990000;">header</span></a><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'ETag: &quot;'</span><span style="color: #339933;">.</span><span style="color: #000088;">$etag</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'&quot;'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></div></td></tr></tbody></table></div>
<p>Well, actually the first line, sets the php header to cache for a year. The HTTP 1.1 spec recommends a max cache age of 1 year (I think). This is close enough to forever for me. </p>
<p>The next line is recommended also, this is php code to set the &#8220;ETag&#8221; HTTP header. ETag is basically like a version number for your resource. It should stay cached, on the internet (wherever that is) until you change it. Note: the value of ETag must have double quotes around it.</p>
<p>I like to do something like this &#8230; <br/></p>
<div class="codecolorer-container php default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br /></div></td><td><div class="php codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><a href="http://www.php.net/header"><span style="color: #990000;">header</span></a><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'ETag: &quot;'</span><span style="color: #339933;">.</span><span style="color: #000088;">$_GET</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">&quot;v&quot;</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'&quot;'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></div></td></tr></tbody></table></div>
<p><br/> then when I update the file I can change the version in the url like <br/></p>
<div class="codecolorer-container text default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br /></div></td><td><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">http://example.com/index.php?v=2</div></td></tr></tbody></table></div>
<p><br/></p>
<p>That&#8217;s it, this is as easy as it gets to using a php header to cache forever.</p>
]]></content:encoded>
			<wfw:commentRss>http://johnwright.me/microblog/php-header-cache-forever/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bootstrap by Twitter to create a WP Theme</title>
		<link>http://johnwright.me/microblog/bootstrap-twitter-to-create-a-wp-theme</link>
		<comments>http://johnwright.me/microblog/bootstrap-twitter-to-create-a-wp-theme#comments</comments>
		<pubDate>Fri, 16 Dec 2011 03:16:22 +0000</pubDate>
		<dc:creator>wrightmb</dc:creator>
				<category><![CDATA[Posts]]></category>

		<guid isPermaLink="false">http://johnwright.me/microblog/?p=248</guid>
		<description><![CDATA[Bootstrap by Twitter to create a WP Theme I created the current (as of 12/2011) WordPress theme for my site using Bootstrap from Twitter. This is a great CSS Framework. I&#8217;ve actually been wanting something like this for a while. One great thing about Bootstrap is, at minimum there&#8217;s just one CSS file to include [...]]]></description>
			<content:encoded><![CDATA[<p><a class="titlelink" href="http://johnwright.me/microblog/bootstrap-twitter-to-create-a-wp-theme" >Bootstrap by Twitter to create a WP Theme</a></p>
<p>I created the current (as of 12/2011) WordPress theme for my site using <a href="http://twitter.github.com/bootstrap/" title="Bootstrap from Twitter" rel="external nofollow">Bootstrap from Twitter</a>. This is a great CSS Framework. I&#8217;ve actually been wanting something like this for a while. One great thing about Bootstrap is, at minimum there&#8217;s just one CSS file to include to use it. This makes it quick and simple to setup and use!</p>
<p>There are more advanced features of it, many look interesting. It appears the entire CSS framework itself was based off of <a href="http://twitter.github.com/bootstrap/#less" title="Preboot and Less" rel="external nofollow"><strong>Preboot</strong> which is to used in conjuction with <strong>Less</strong></a>. I&#8217;ll be looking into using Bootstrap with Less as well as the other more advanced JavaScript features.</p>
<p>This all looks very interesting to me, as I&#8217;m considering making and releasing my first WordPress theme based on Bootstrap and a few other nice tools I&#8217;m aware of. This theme would have a few options which would make it customizable I&#8217;m thinking.</p>
]]></content:encoded>
			<wfw:commentRss>http://johnwright.me/microblog/bootstrap-twitter-to-create-a-wp-theme/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why Occupy Wall Street And Los Angeles?</title>
		<link>http://johnwright.me/microblog/why-occupy-wall-street-los-angeles</link>
		<comments>http://johnwright.me/microblog/why-occupy-wall-street-los-angeles#comments</comments>
		<pubDate>Fri, 21 Oct 2011 00:03:47 +0000</pubDate>
		<dc:creator>wrightmb</dc:creator>
				<category><![CDATA[Posts]]></category>

		<guid isPermaLink="false">http://johnwright.me/microblog/?p=226</guid>
		<description><![CDATA[Why Occupy Wall Street And Los Angeles? Since I first read about these protests, I had a feeling this would go somewhere. At the heart of these protests is the message &#8220;we are the people. we are losing a lot. we have lost a lot but we still have our voice and we can use [...]]]></description>
			<content:encoded><![CDATA[<p><a class="titlelink" href="http://johnwright.me/microblog/why-occupy-wall-street-los-angeles" title="Why ?">Why Occupy Wall Street And Los Angeles?</a></p>
<p><a href="http://johnwright.me/microblog/why-occupy-wall-street-los-angeles"><img src="http://johnwright.me/microblog/wp-content/uploads/2011/10/IMG_20111006_151149-300x225.jpg" alt="Occupy Los Angeles Day 6" title="Occupy Los Angeles Day 6" width="300" height="225" class="alignnone size-medium wp-image-227" /></a></p>
<p>Since I first read about these protests, I had a feeling this would go somewhere. At the heart of these protests is the message &#8220;we are the people. we are losing a lot. we have lost a lot but we still have our voice and we can use it until we are heard&#8221;. I think this is mostly about being heard. Yes we want change, yes we need change, but change is easier said than done. The message against corporate greed and corrupt politics is one that I think all Americans can appreciate (99% at least). <span id="more-226"></span></p>
<p>Remember when the bailout bank CEOs still got their $ Millions+ in bonuses? And the best Obama could do is say &#8220;Oops, sorry about that&#8221; to the taxpayers. Something needs to change. Now we have Solyndra to look at, $500 million+ in federal loans (taxpayer money) and now they&#8217;re bankrupt. A risky loan investment at taxpayer expense at best (and outright corruption at worst). </p>
<p>One protest sign says &#8220;I&#8217;m am the 99%, I don&#8217;t have a lobbyist&#8221;. We are so far removed from the fundamental principles of our government that those with enough money can &#8220;lobby&#8221; the people&#8217;s representatives to get the laws created (or removed) and passed through the government. The US is supposed to have a representative government where what the people want is what the representative should do. But those with the money can afford to &#8220;lobby&#8221; the peoples representatives to get their desires passed through the government. </p>
<p>Yet, I think the US is one of the best countries to live in despite it&#8217;s problems. Change is easier said than done but it has to start somewhere. I think the group of <a href="http://www.adbusters.org/blogs/adbusters-blog/occupywallstreet.html" title="How Occupy Wall Street Started" rel="external nofollow">Occupiers</a> is clear sound that we as a people are not happy with the status quo of the big corporations and government. While the economy continues to decline.</p>
<p>Lots more could be said, I invite you to comment and we can discuss this. </p>
<p><a href="http://johnwright.me/microblog/wp-content/uploads/2011/10/IMG_20111006_151102.jpg"><img src="http://johnwright.me/microblog/wp-content/uploads/2011/10/IMG_20111006_151102-300x225.jpg" alt="Occupy Los Angeles Day 6" title="Occupy Los Angeles Day 6" width="300" height="225" class="alignnone size-medium wp-image-230" /></a><a href="http://johnwright.me/microblog/wp-content/uploads/2011/10/IMG_20111006_151115.jpg"><img src="http://johnwright.me/microblog/wp-content/uploads/2011/10/IMG_20111006_151115-300x225.jpg" alt="" title="Occupy Los Angeles Day 6" width="300" height="225" class="alignnone size-medium wp-image-229" /></a><a href="http://johnwright.me/microblog/wp-content/uploads/2011/10/IMG_20111006_172744.jpg"><img src="http://johnwright.me/microblog/wp-content/uploads/2011/10/IMG_20111006_172744-300x225.jpg" alt="Occupy Los Angeles Day 6" title="Occupy Los Angeles Day 6" width="300" height="225" class="alignnone size-medium wp-image-228" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://johnwright.me/microblog/why-occupy-wall-street-los-angeles/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Stop Nesting Functions! (But Not All of Them) &#124; Nettuts</title>
		<link>http://johnwright.me/microblog/stop-nesting-functions-but-not-all-of-them-nettuts</link>
		<comments>http://johnwright.me/microblog/stop-nesting-functions-but-not-all-of-them-nettuts#comments</comments>
		<pubDate>Thu, 20 Oct 2011 19:20:03 +0000</pubDate>
		<dc:creator>wrightmb</dc:creator>
				<category><![CDATA[Links]]></category>

		<guid isPermaLink="false">http://johnwright.me/microblog/stop-nesting-functions-but-not-all-of-them-nettuts</guid>
		<description><![CDATA[Stop Nesting Functions! (But Not All of Them) &#124; Nettuts]]></description>
			<content:encoded><![CDATA[<p><a rel="nofollow external" class="titlelink" href="http://net.tutsplus.com/tutorials/javascript-ajax/stop-nesting-functions-but-not-all-of-them/?utm_source=feedburner">Stop Nesting Functions! (But Not All of Them) | Nettuts</a><br /><a rel="nofollow external" class="titleimglink" href="http://net.tutsplus.com/tutorials/javascript-ajax/stop-nesting-functions-but-not-all-of-them/?utm_source=feedburner"><img class="titleimg" alt="Stop Nesting Functions! (But Not All of Them) | Nettuts" src="http://johnwright.me/microblog/thumbalizr/index.php?url=http://net.tutsplus.com/tutorials/javascript-ajax/stop-nesting-functions-but-not-all-of-them/?utm_source=feedburner" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://johnwright.me/microblog/stop-nesting-functions-but-not-all-of-them-nettuts/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>App Makes Checking In With Parents a Game</title>
		<link>http://johnwright.me/microblog/app-makes-checking-in-with-parents-a-game</link>
		<comments>http://johnwright.me/microblog/app-makes-checking-in-with-parents-a-game#comments</comments>
		<pubDate>Thu, 20 Oct 2011 19:00:02 +0000</pubDate>
		<dc:creator>wrightmb</dc:creator>
				<category><![CDATA[Links]]></category>

		<guid isPermaLink="false">http://johnwright.me/microblog/app-makes-checking-in-with-parents-a-game</guid>
		<description><![CDATA[App Makes Checking In With Parents a Game]]></description>
			<content:encoded><![CDATA[<p><a rel="nofollow external" class="titlelink" href="http://mashable.com/2011/10/19/imok">App Makes Checking In With Parents a Game</a><br /><a rel="nofollow external" class="titleimglink" href="http://mashable.com/2011/10/19/imok"><img class="titleimg" alt="App Makes Checking In With Parents a Game" src="http://johnwright.me/microblog/thumbalizr/index.php?url=http://mashable.com/2011/10/19/imok" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://johnwright.me/microblog/app-makes-checking-in-with-parents-a-game/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Kinect adds Sesame Street and National Geographic to Xbox Live, makes motion control wholesome fun &#8212; Engadget</title>
		<link>http://johnwright.me/microblog/kinect-adds-sesame-street-and-national-geographic-to-xbox-live-makes-motion-control-wholesome-fun-engadget</link>
		<comments>http://johnwright.me/microblog/kinect-adds-sesame-street-and-national-geographic-to-xbox-live-makes-motion-control-wholesome-fun-engadget#comments</comments>
		<pubDate>Thu, 20 Oct 2011 18:39:24 +0000</pubDate>
		<dc:creator>wrightmb</dc:creator>
				<category><![CDATA[Links]]></category>

		<guid isPermaLink="false">http://johnwright.me/microblog/kinect-adds-sesame-street-and-national-geographic-to-xbox-live-makes-motion-control-wholesome-fun-engadget</guid>
		<description><![CDATA[Kinect adds Sesame Street and National Geographic to Xbox Live, makes motion control wholesome fun &#8212; Engadget]]></description>
			<content:encoded><![CDATA[<p><a rel="nofollow external" class="titlelink" href="http://www.engadget.com/2011/10/20/kinect-adds-sesame-street-and-national-geographic-to-xbox-live">Kinect adds Sesame Street and National Geographic to Xbox Live, makes motion control wholesome fun &#8212; Engadget</a><br /><a rel="nofollow external" class="titleimglink" href="http://www.engadget.com/2011/10/20/kinect-adds-sesame-street-and-national-geographic-to-xbox-live"><img class="titleimg" alt="Kinect adds Sesame Street and National Geographic to Xbox Live, makes motion control wholesome fun -- Engadget" src="http://johnwright.me/microblog/thumbalizr/index.php?url=http://www.engadget.com/2011/10/20/kinect-adds-sesame-street-and-national-geographic-to-xbox-live" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://johnwright.me/microblog/kinect-adds-sesame-street-and-national-geographic-to-xbox-live-makes-motion-control-wholesome-fun-engadget/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Where&#8217;s Google Making It&#8217;s Money?</title>
		<link>http://johnwright.me/microblog/wheres-google-making-its-money</link>
		<comments>http://johnwright.me/microblog/wheres-google-making-its-money#comments</comments>
		<pubDate>Wed, 20 Jul 2011 23:04:54 +0000</pubDate>
		<dc:creator>wrightmb</dc:creator>
				<category><![CDATA[Links]]></category>

		<guid isPermaLink="false">http://johnwright.me/microblog/wheres-google-making-its-money</guid>
		<description><![CDATA[Where&#8217;s Google Making It&#8217;s Money?]]></description>
			<content:encoded><![CDATA[<p><a rel="nofollow external" class="titlelink" href="http://www.wordstream.com/images/where-does-google-make-its-money.png">Where&#8217;s Google Making It&#8217;s Money?</a><br /><a rel="nofollow external" class="titleimglink" href="http://www.wordstream.com/images/where-does-google-make-its-money.png"><img class="titleimg" alt="Where's Google Making It's Money?" src="http://johnwright.me/microblog/thumbalizr/index.php?url=http://www.wordstream.com/images/where-does-google-make-its-money.png" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://johnwright.me/microblog/wheres-google-making-its-money/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fujitsu Tech Lets You Send Apps To Users At Specific Times And Places &#124; TechCrunch</title>
		<link>http://johnwright.me/microblog/fujitsu-tech-lets-you-send-apps-to-users-at-specific-times-and-places-techcrunch</link>
		<comments>http://johnwright.me/microblog/fujitsu-tech-lets-you-send-apps-to-users-at-specific-times-and-places-techcrunch#comments</comments>
		<pubDate>Wed, 20 Jul 2011 23:04:54 +0000</pubDate>
		<dc:creator>wrightmb</dc:creator>
				<category><![CDATA[Links]]></category>

		<guid isPermaLink="false">http://johnwright.me/microblog/fujitsu-tech-lets-you-send-apps-to-users-at-specific-times-and-places-techcrunch</guid>
		<description><![CDATA[Fujitsu Tech Lets You Send Apps To Users At Specific Times And Places &#124; TechCrunch]]></description>
			<content:encoded><![CDATA[<p><a rel="nofollow external" class="titlelink" href="http://techcrunch.com/2011/07/19/fujitsu-apps">Fujitsu Tech Lets You Send Apps To Users At Specific Times And Places | TechCrunch</a><br /><a rel="nofollow external" class="titleimglink" href="http://techcrunch.com/2011/07/19/fujitsu-apps"><img class="titleimg" alt="Fujitsu Tech Lets You Send Apps To Users At Specific Times And Places | TechCrunch" src="http://johnwright.me/microblog/thumbalizr/index.php?url=http://techcrunch.com/2011/07/19/fujitsu-apps" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://johnwright.me/microblog/fujitsu-tech-lets-you-send-apps-to-users-at-specific-times-and-places-techcrunch/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>standards.png (500×283)</title>
		<link>http://johnwright.me/microblog/standards-png-500%c3%97283</link>
		<comments>http://johnwright.me/microblog/standards-png-500%c3%97283#comments</comments>
		<pubDate>Wed, 20 Jul 2011 22:44:53 +0000</pubDate>
		<dc:creator>wrightmb</dc:creator>
				<category><![CDATA[Links]]></category>

		<guid isPermaLink="false">http://johnwright.me/microblog/standards-png-500%c3%97283</guid>
		<description><![CDATA[standards.png (500×283)]]></description>
			<content:encoded><![CDATA[<p><a rel="nofollow external" class="titlelink" href="http://imgs.xkcd.com/comics/standards.png">standards.png (500×283)</a><br /><a rel="nofollow external" class="titleimglink" href="http://imgs.xkcd.com/comics/standards.png"><img class="titleimg" alt="standards.png (500×283)" src="http://johnwright.me/microblog/thumbalizr/index.php?url=http://imgs.xkcd.com/comics/standards.png" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://johnwright.me/microblog/standards-png-500%c3%97283/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>160-Year-Old American Express Out-Innovates Google and Groupon &#124; TechCrunch</title>
		<link>http://johnwright.me/microblog/160-year-old-american-express-out-innovates-google-and-groupon-techcrunch</link>
		<comments>http://johnwright.me/microblog/160-year-old-american-express-out-innovates-google-and-groupon-techcrunch#comments</comments>
		<pubDate>Wed, 20 Jul 2011 22:44:53 +0000</pubDate>
		<dc:creator>wrightmb</dc:creator>
				<category><![CDATA[Links]]></category>

		<guid isPermaLink="false">http://johnwright.me/microblog/160-year-old-american-express-out-innovates-google-and-groupon-techcrunch</guid>
		<description><![CDATA[160-Year-Old American Express Out-Innovates Google and Groupon &#124; TechCrunch]]></description>
			<content:encoded><![CDATA[<p><a rel="nofollow external" class="titlelink" href="http://techcrunch.com/2011/07/19/160-year-old-american-express-out-innovates-google-and-groupon">160-Year-Old American Express Out-Innovates Google and Groupon | TechCrunch</a><br /><a rel="nofollow external" class="titleimglink" href="http://techcrunch.com/2011/07/19/160-year-old-american-express-out-innovates-google-and-groupon"><img class="titleimg" alt="160-Year-Old American Express Out-Innovates Google and Groupon | TechCrunch" src="http://johnwright.me/microblog/thumbalizr/index.php?url=http://techcrunch.com/2011/07/19/160-year-old-american-express-out-innovates-google-and-groupon" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://johnwright.me/microblog/160-year-old-american-express-out-innovates-google-and-groupon-techcrunch/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Most Expensive Keywords in Google AdWords (And How to Target Them in Your Search Campaigns) &#124; VentureFizz</title>
		<link>http://johnwright.me/microblog/the-most-expensive-keywords-in-google-adwords-and-how-to-target-them-in-your-search-campaigns-venturefizz</link>
		<comments>http://johnwright.me/microblog/the-most-expensive-keywords-in-google-adwords-and-how-to-target-them-in-your-search-campaigns-venturefizz#comments</comments>
		<pubDate>Wed, 20 Jul 2011 22:04:54 +0000</pubDate>
		<dc:creator>wrightmb</dc:creator>
				<category><![CDATA[Links]]></category>

		<guid isPermaLink="false">http://johnwright.me/microblog/the-most-expensive-keywords-in-google-adwords-and-how-to-target-them-in-your-search-campaigns-venturefizz</guid>
		<description><![CDATA[The Most Expensive Keywords in Google AdWords (And How to Target Them in Your Search Campaigns) &#124; VentureFizz]]></description>
			<content:encoded><![CDATA[<p><a rel="nofollow external" class="titlelink" href="http://venturefizz.com/blog/most-expensive-keywords-google-adwords-and-how-target-them-your-search-campaigns">The Most Expensive Keywords in Google AdWords (And How to Target Them in Your Search Campaigns) | VentureFizz</a><br /><a rel="nofollow external" class="titleimglink" href="http://venturefizz.com/blog/most-expensive-keywords-google-adwords-and-how-target-them-your-search-campaigns"><img class="titleimg" alt="The Most Expensive Keywords in Google AdWords (And How to Target Them in Your Search Campaigns) | VentureFizz" src="http://johnwright.me/microblog/thumbalizr/index.php?url=http://venturefizz.com/blog/most-expensive-keywords-google-adwords-and-how-target-them-your-search-campaigns" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://johnwright.me/microblog/the-most-expensive-keywords-in-google-adwords-and-how-to-target-them-in-your-search-campaigns-venturefizz/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Search Volume By Location &amp; Language: Data Visualization [ART]</title>
		<link>http://johnwright.me/microblog/google-search-volume-by-location-language-data-visualization-art</link>
		<comments>http://johnwright.me/microblog/google-search-volume-by-location-language-data-visualization-art#comments</comments>
		<pubDate>Fri, 06 May 2011 04:21:56 +0000</pubDate>
		<dc:creator>wrightmb</dc:creator>
				<category><![CDATA[Media]]></category>

		<guid isPermaLink="false">http://johnwright.me/microblog/?p=181</guid>
		<description><![CDATA[Google Search Volume By Location &#038; Language: Data Visualization [ART] This is nice, check it out after the break. Color coded by language. The location is marked by the lines and the line length corresponds to search volume. This is nice. This is using WebGL (might only be viewable in Chrome). GL in the browser [...]]]></description>
			<content:encoded><![CDATA[<p><a class="titlelink" href="http://johnwright.me/microblog/google-search-volume-by-location-language-data-visualization-art">Google Search Volume By Location &#038; Language: Data Visualization [ART]</a></p>
<p>This is nice, check it out after the break. <span id="more-181"></span></p>
<p><iframe src="http://data-arts.appspot.com/globe-search/embed" height="360" width="360"></iframe></p>
<p>Color coded by language. The location is marked by the lines and the line length corresponds to search volume. This is nice.</p>
<p>This is using WebGL (might only be viewable in Chrome). GL in the browser is looking good and this visualization is superb.</p>
]]></content:encoded>
			<wfw:commentRss>http://johnwright.me/microblog/google-search-volume-by-location-language-data-visualization-art/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Amazon, Lendle and the Danger of Using Open APIs: Tech News and Analysis «</title>
		<link>http://johnwright.me/microblog/amazon-lendle-and-the-danger-of-using-open-apis-tech-news-and-analysis-%c2%ab</link>
		<comments>http://johnwright.me/microblog/amazon-lendle-and-the-danger-of-using-open-apis-tech-news-and-analysis-%c2%ab#comments</comments>
		<pubDate>Tue, 22 Mar 2011 17:19:41 +0000</pubDate>
		<dc:creator>wrightmb</dc:creator>
				<category><![CDATA[Links]]></category>

		<guid isPermaLink="false">http://johnwright.me/microblog/amazon-lendle-and-the-danger-of-using-open-apis-tech-news-and-analysis-%c2%ab</guid>
		<description><![CDATA[Amazon, Lendle and the Danger of Using Open APIs: Tech News and Analysis «]]></description>
			<content:encoded><![CDATA[<p><a class="titlelink" href="http://gigaom.com/2011/03/22/amazon-lendle-and-the-dangers-of-using-someone-elses-api" rel="external nofollow">Amazon, Lendle and the Danger of Using Open APIs: Tech News and Analysis «</a><br /><a class="titleimglink" href="http://gigaom.com/2011/03/22/amazon-lendle-and-the-dangers-of-using-someone-elses-api" rel="external nofollow"><img class="titleimg" alt="Amazon, Lendle and the Danger of Using Open APIs: Tech News and Analysis «" src="http://johnwright.me/microblog/thumbalizr/index.php?url=http://gigaom.com/2011/03/22/amazon-lendle-and-the-dangers-of-using-someone-elses-api" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://johnwright.me/microblog/amazon-lendle-and-the-danger-of-using-open-apis-tech-news-and-analysis-%c2%ab/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DBpedia » Blog Archive » DBpedia Spotlight &#8211; Text Annotation Toolkit released</title>
		<link>http://johnwright.me/microblog/dbpedia-%c2%bb-blog-archive-%c2%bb-dbpedia-spotlight-text-annotation-toolkit-released</link>
		<comments>http://johnwright.me/microblog/dbpedia-%c2%bb-blog-archive-%c2%bb-dbpedia-spotlight-text-annotation-toolkit-released#comments</comments>
		<pubDate>Mon, 21 Feb 2011 19:11:44 +0000</pubDate>
		<dc:creator>wrightmb</dc:creator>
				<category><![CDATA[Links]]></category>

		<guid isPermaLink="false">http://johnwright.me/microblog/dbpedia-%c2%bb-blog-archive-%c2%bb-dbpedia-spotlight-text-annotation-toolkit-released</guid>
		<description><![CDATA[DBpedia » Blog Archive » DBpedia Spotlight &#8211; Text Annotation Toolkit released]]></description>
			<content:encoded><![CDATA[<p><a class="titlelink" href="http://blog.dbpedia.org/2011/02/15/63" rel="external nofollow">DBpedia » Blog Archive » DBpedia Spotlight &#8211; Text Annotation Toolkit released</a><br /><a class="titleimglink" href="http://blog.dbpedia.org/2011/02/15/63" rel="external nofollow"><img class="titleimg" alt="DBpedia » Blog Archive » DBpedia Spotlight - Text Annotation Toolkit released" src="http://johnwright.me/microblog/thumbalizr/index.php?url=http://blog.dbpedia.org/2011/02/15/63" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://johnwright.me/microblog/dbpedia-%c2%bb-blog-archive-%c2%bb-dbpedia-spotlight-text-annotation-toolkit-released/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Android Developers Blog: Android Layout Tricks #1</title>
		<link>http://johnwright.me/microblog/android-developers-blog-android-layout-tricks-1</link>
		<comments>http://johnwright.me/microblog/android-developers-blog-android-layout-tricks-1#comments</comments>
		<pubDate>Thu, 10 Feb 2011 23:13:50 +0000</pubDate>
		<dc:creator>wrightmb</dc:creator>
				<category><![CDATA[Links]]></category>

		<guid isPermaLink="false">http://johnwright.me/microblog/android-developers-blog-android-layout-tricks-1</guid>
		<description><![CDATA[Android Developers Blog: Android Layout Tricks #1]]></description>
			<content:encoded><![CDATA[<p><a class="titlelink" href="http://android-developers.blogspot.com/2009/02/android-layout-tricks-1.html" rel="external nofollow">Android Developers Blog: Android Layout Tricks #1</a><br /><a class="titleimglink" href="http://android-developers.blogspot.com/2009/02/android-layout-tricks-1.html" rel="external nofollow"><img class="titleimg" alt="Android Developers Blog: Android Layout Tricks #1" src="http://johnwright.me/microblog/thumbalizr/index.php?url=http://android-developers.blogspot.com/2009/02/android-layout-tricks-1.html" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://johnwright.me/microblog/android-developers-blog-android-layout-tricks-1/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Android Series: Custom ListView items and adapters &#124; Software Passion</title>
		<link>http://johnwright.me/microblog/android-series-custom-listview-items-and-adapters-software-passion</link>
		<comments>http://johnwright.me/microblog/android-series-custom-listview-items-and-adapters-software-passion#comments</comments>
		<pubDate>Thu, 10 Feb 2011 23:13:49 +0000</pubDate>
		<dc:creator>wrightmb</dc:creator>
				<category><![CDATA[Links]]></category>

		<guid isPermaLink="false">http://johnwright.me/microblog/android-series-custom-listview-items-and-adapters-software-passion</guid>
		<description><![CDATA[Android Series: Custom ListView items and adapters &#124; Software Passion]]></description>
			<content:encoded><![CDATA[<p><a class="titlelink" href="http://www.softwarepassion.com/android-series-custom-listview-items-and-adapters" rel="external nofollow">Android Series: Custom ListView items and adapters | Software Passion</a><br /><a class="titleimglink" href="http://www.softwarepassion.com/android-series-custom-listview-items-and-adapters" rel="external nofollow"><img class="titleimg" alt="Android Series: Custom ListView items and adapters | Software Passion" src="http://johnwright.me/microblog/thumbalizr/index.php?url=http://www.softwarepassion.com/android-series-custom-listview-items-and-adapters" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://johnwright.me/microblog/android-series-custom-listview-items-and-adapters-software-passion/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Net Neutrality Discussion And More&#8230;</title>
		<link>http://johnwright.me/microblog/net-neutrality-discussion-and-more</link>
		<comments>http://johnwright.me/microblog/net-neutrality-discussion-and-more#comments</comments>
		<pubDate>Sat, 27 Nov 2010 23:19:33 +0000</pubDate>
		<dc:creator>wrightmb</dc:creator>
				<category><![CDATA[Links]]></category>

		<guid isPermaLink="false">http://johnwright.me/microblog/?p=156</guid>
		<description><![CDATA[Net Neutrality Discussion And More&#8230; The net neutrality issue is a concern of mine because I really believe that the openness of the Internet in America (and the world) has opened many doors for so many people. I&#8217;d hate to see those doors closed. Even the creator of the World Wide Web Sir Tim Berners [...]]]></description>
			<content:encoded><![CDATA[<p><a class="titlelink" href="http://johnwright.me/microblog/net-neutrality-discussion-and-more">Net Neutrality Discussion And More&#8230;</a></p>
<p>The net neutrality issue is a concern of mine because I really believe that the openness of the Internet in America (and the world) has opened many doors for so many people. I&#8217;d hate to see those doors closed. </p>
<p>Even the creator of the World Wide Web Sir Tim Berners Lee is still active in defending the Internet as it currently is and leading the way for the next wave of innovation using web technologies. He highlights some of the freedoms net neutrality has brought in a recent article for Scientific American, <a href="http://www.scientificamerican.com/article.cfm?id=long-live-the-web" rel="external nofollow">Long Live the Web: A Call for Continued Open Standards and Neutrality</a> &#8230;</p>
<blockquote><p>These characteristics can seem obvious, self-maintaining or just unimportant, but they are why the next blockbuster Web site or the new homepage for your kid’s local soccer team will just appear on the Web without any difficulty. Universality is a big demand, for any system.</p>
<p>Decentralization is another important design feature. You do not have to get approval from any central authority to add a page or make a link. All you have to do is use three simple, standard protocols: write a page in the HTML (hypertext markup language) format, name it with the URI naming convention, and serve it up on the Internet using HTTP (hypertext transfer protocol). Decentralization has made widespread innovation possible and will continue to do so in the future.</p></blockquote>
<p>Recently a guest to <a href="http://johnwright.me/blog/">my blog</a> started a chat about net neutrality when they visited my <a href="http://johnwright.me/blog/net-neutrality-pros-and-cons-a-potentially-sticky-issue-opinion/">Net Neutrality Pros and Cons</a> opinion piece. I wanted to post it here to share it with anyone interested. Here it is&#8230; </p>
<p>Guest: Hello, do you have any good information on Bob Kahn on Net Neutrality?</p>
<p>John: I haven&#8217;t read this but I&#8217;m going to check it out&#8230; <a href="http://www.theregister.co.uk/2007/01/18/kahn_net_neutrality_warning/" rel="external nofollow">Father of internet warns against Net Neutrality</a></p>
<p>Guest: thanks I am currently writing a paper on Net neutrality and am having a hard time giving a strong opinion about it and also talking about net neutrality in other countries</p>
<p>John: I can blab about it real quick to try to give a jist&#8230;<br />
basically, the internet has been &#8220;neutral&#8221; for most of it&#8217;s existance and this has opened up opportunities to the little guy with little money to have a much farther reach than ever before&#8230;<br />
that&#8217;s why these startups can turn into the biggest companies in the world in matter of 10 years or lest (think Google)<br />
on the other hand. The ISPs own many of the actual hardware pipes that all this internet traffic is being transported on&#8230;<br />
they have been mostly &#8220;neutral&#8221; with that traffic.<br />
The idea behind net neutrality legislation is to force them to be neutral as the always have&#8230;<br />
(do we really want or need this? it&#8217;s not an easy question to answer)<br />
the ISPs could potentially (if not regulated to remain neutral) drastically change the landscape of the internet&#8230; even to the point that making so the little guy&#8230; doesn&#8217;t have the ability and reach to become great in this business playing field now<br />
which is rather scary&#8230;<br />
Not that they would change the internet that much, but potentially they could and make a bunch of money for themselves<br />
<span id="more-156"></span><br />
Guest: so should we be worried about internet service providers doing that?<br />
just so they could make money themselves?</p>
<p>John: so here comes the question of should we leave them free and see if the free market regulates them naturally (and risk the internet as we know it) or should we have them regulated by the government to keep it free and open&#8230;<br />
to answer your question &#8230;<br />
its hard to know what they will do, but they could potentially do something like this to make more money&#8230;<br />
They could make everyone like Google and others pay to be on there network&#8230; even the little guy like me. If I can&#8217;t afford it, I can&#8217;t make my site available to you and you would have never seen my site and found my views on this topic<br />
All of them could do this&#8230; so if I wanted to be on Verizon, I&#8217;d have to pay Verizon..<br />
if I wanted to be on At&#038;t , I have to pay At&#038;t.. Or maybe they just wouldn&#8217;t allow small websites like mine on there network at all<br />
Maybe my only option would be to have a profile on a bigger site like Facebook&#8230; and I couldn&#8217;t own and run my own blog indepentantly<br />
this could go for all small business websites as well<br />
&#8230; again not that they would do that ,, but they could, I mean they own the &#8220;roads&#8221; if you will, they could make me pay for every time someone visits my site on there network&#8230;<br />
That would drastically change things, because that part of the system is free right now<br />
I hope this helps</p>
<p>Guest: it helped SO much<br />
from a consumer stand point should we be for or against net neutrality?</p>
<p>John: I personally am for net neutrality legislation and I believe that ultimately it has benefited consumers well with all the free services and innovation through startups&#8230; the thing is , to allow ISPs to do things that aren&#8217;t in line with net neutrality principles and have freedom with no government oversite (which I also believe less government is good) would be a risky experiment that could result in diminishing or removing my ability (and yours) to impact the world through the internet ( and make money and a living through as well)<br />
I think, why risk what we&#8217;ve got going with the internet&#8230; they could make it better, but they could mess it up to the point where I loose the opportunies I currently have ( and thats bad for you as a consumer and for your opportunies too)</p>
]]></content:encoded>
			<wfw:commentRss>http://johnwright.me/microblog/net-neutrality-discussion-and-more/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>bieh.net » xkcd #576</title>
		<link>http://johnwright.me/microblog/bieh-net-%c2%bb-xkcd-576</link>
		<comments>http://johnwright.me/microblog/bieh-net-%c2%bb-xkcd-576#comments</comments>
		<pubDate>Sat, 20 Nov 2010 02:20:04 +0000</pubDate>
		<dc:creator>wrightmb</dc:creator>
				<category><![CDATA[Links]]></category>

		<guid isPermaLink="false">http://johnwright.me/microblog/bieh-net-%c2%bb-xkcd-576</guid>
		<description><![CDATA[bieh.net » xkcd #576This is so cool]]></description>
			<content:encoded><![CDATA[<p><a class="titlelink" href="http://bieh.net/2010/11/08/xkcd-576" rel="external nofollow">bieh.net » xkcd #576</a><br /><a class="titleimglink" href="http://bieh.net/2010/11/08/xkcd-576" rel="external nofollow"><img class="titleimg" alt="bieh.net » xkcd #576" src="http://johnwright.me/microblog/thumbalizr/index.php?url=http://bieh.net/2010/11/08/xkcd-576" /></a><br />This is so cool</p>
]]></content:encoded>
			<wfw:commentRss>http://johnwright.me/microblog/bieh-net-%c2%bb-xkcd-576/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>20 Things I Learned About Browsers and the Web</title>
		<link>http://johnwright.me/microblog/20-things-i-learned-about-browsers-and-the-web</link>
		<comments>http://johnwright.me/microblog/20-things-i-learned-about-browsers-and-the-web#comments</comments>
		<pubDate>Thu, 18 Nov 2010 23:40:07 +0000</pubDate>
		<dc:creator>wrightmb</dc:creator>
				<category><![CDATA[Links]]></category>

		<guid isPermaLink="false">http://johnwright.me/microblog/20-things-i-learned-about-browsers-and-the-web</guid>
		<description><![CDATA[20 Things I Learned About Browsers and the WebThis is really cool. HTML5 at it&#039;s best (for the moment) I look forward to the nice interfaces to come.]]></description>
			<content:encoded><![CDATA[<p><a class="titlelink" href="http://www.20thingsilearned.com/" rel="external nofollow">20 Things I Learned About Browsers and the Web</a><br />This is really cool. HTML5 at it&#039;s best (for the moment) I look forward to the nice interfaces to come.</p>
]]></content:encoded>
			<wfw:commentRss>http://johnwright.me/microblog/20-things-i-learned-about-browsers-and-the-web/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NASDAQ Continues the Data as a Service Trend</title>
		<link>http://johnwright.me/microblog/nasdaq-continues-the-data-as-a-service-trend</link>
		<comments>http://johnwright.me/microblog/nasdaq-continues-the-data-as-a-service-trend#comments</comments>
		<pubDate>Tue, 09 Nov 2010 23:40:05 +0000</pubDate>
		<dc:creator>wrightmb</dc:creator>
				<category><![CDATA[Links]]></category>

		<guid isPermaLink="false">http://johnwright.me/microblog/nasdaq-continues-the-data-as-a-service-trend</guid>
		<description><![CDATA[NASDAQ Continues the Data as a Service TrendI like this DaaS trend.]]></description>
			<content:encoded><![CDATA[<p><a class="titlelink" href="http://blog.programmableweb.com/2010/11/08/nasdaq-continues-the-data-as-a-service-trend/?utm_source=feedburner" rel="external nofollow">NASDAQ Continues the Data as a Service Trend</a><br /><a class="titleimglink" href="http://blog.programmableweb.com/2010/11/08/nasdaq-continues-the-data-as-a-service-trend/?utm_source=feedburner" rel="external nofollow"><img class="titleimg" alt="NASDAQ Continues the Data as a Service Trend" src="http://johnwright.me/microblog/thumbalizr/index.php?url=http://blog.programmableweb.com/2010/11/08/nasdaq-continues-the-data-as-a-service-trend/?utm_source=feedburner" /></a><br />I like this DaaS trend.</p>
]]></content:encoded>
			<wfw:commentRss>http://johnwright.me/microblog/nasdaq-continues-the-data-as-a-service-trend/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JS RDF API Prototype</title>
		<link>http://johnwright.me/microblog/js-rdf-api-prototype</link>
		<comments>http://johnwright.me/microblog/js-rdf-api-prototype#comments</comments>
		<pubDate>Tue, 09 Nov 2010 19:40:07 +0000</pubDate>
		<dc:creator>wrightmb</dc:creator>
				<category><![CDATA[Links]]></category>

		<guid isPermaLink="false">http://johnwright.me/microblog/js-rdf-api-prototype</guid>
		<description><![CDATA[JS RDF API Prototype]]></description>
			<content:encoded><![CDATA[<p><a class="titlelink" href="http://webr3.org/apps/play/api/lib" rel="external nofollow">JS RDF API Prototype</a><br /><a class="titleimglink" href="http://webr3.org/apps/play/api/lib" rel="external nofollow"><img class="titleimg" alt="JS RDF API Prototype" src="http://johnwright.me/microblog/thumbalizr/index.php?url=http://webr3.org/apps/play/api/lib" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://johnwright.me/microblog/js-rdf-api-prototype/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Intro to Semantic Web E-Commerce &#8211; Martin Hepp [SLIDECAST]</title>
		<link>http://johnwright.me/microblog/semantic-web-rdfa-good-relations-ontology-e-commerce-martin-hepp-presentation</link>
		<comments>http://johnwright.me/microblog/semantic-web-rdfa-good-relations-ontology-e-commerce-martin-hepp-presentation#comments</comments>
		<pubDate>Sat, 06 Nov 2010 19:09:04 +0000</pubDate>
		<dc:creator>wrightmb</dc:creator>
				<category><![CDATA[Media]]></category>

		<guid isPermaLink="false">http://johnwright.me/microblog/?p=139</guid>
		<description><![CDATA[Intro to Semantic Web E-Commerce &#8211; Martin Hepp [SLIDECAST] This is a major step toward the future of e-commerce on the web. Press play and go full screen for this great 15 minute beginners guide to what semantic web based RDFa ecommerce is all about and how it works. Now that Google supports the good [...]]]></description>
			<content:encoded><![CDATA[<p><a class="titlelink" href="http://johnwright.me/microblog/semantic-web-rdfa-good-relations-ontology-e-commerce-martin-hepp-presentation">Intro to Semantic Web E-Commerce &#8211; Martin Hepp [SLIDECAST]</a><br />
<span id="more-139"></span><br />
<object id="__sse765623" width="350" height="300"><param name="movie" value="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=goodrelationsoverviewfinal3key-1227044498468783-9&#038;rel=0&#038;stripped_title=a-short-introduction-to-semantic-webbased-ecommerce-the-goodrelations-vocabulary-presentation&#038;userName=mhepp" /><param name="allowFullScreen" value="true"/><param name="allowScriptAccess" value="always"/><embed name="__sse765623" src="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=goodrelationsoverviewfinal3key-1227044498468783-9&#038;rel=0&#038;stripped_title=a-short-introduction-to-semantic-webbased-ecommerce-the-goodrelations-vocabulary-presentation&#038;userName=mhepp" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="350" height="300"></embed></object></p>
<p><strong>This is a major step toward the future of e-commerce on the web.</strong></p>
<p>Press play and go full screen for this great 15 minute beginners guide to what semantic web based RDFa ecommerce is all about and how it works. Now that <a href="http://googlewebmastercentral.blogspot.com/2010/11/rich-snippets-for-shopping-sites.html" rel="external nofollow"><strong><em>Google</em></strong> supports the good relations ontology</a>, this intro is a must see for so many businesses. Very good, thanks <a href="http://www.heppnetz.de" rel="external nofollow">Martin Hepp</a> for all your hard work toward this! </p>
]]></content:encoded>
			<wfw:commentRss>http://johnwright.me/microblog/semantic-web-rdfa-good-relations-ontology-e-commerce-martin-hepp-presentation/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Facebook&#8217;s Mark Zuckerberg Shares Vision For Facebook And More [INTERVIEW]</title>
		<link>http://johnwright.me/microblog/facebooks-mark-zuckerberg-interviewed-by-scoble-talks-facebook-future</link>
		<comments>http://johnwright.me/microblog/facebooks-mark-zuckerberg-interviewed-by-scoble-talks-facebook-future#comments</comments>
		<pubDate>Sat, 06 Nov 2010 18:42:28 +0000</pubDate>
		<dc:creator>wrightmb</dc:creator>
				<category><![CDATA[Media]]></category>

		<guid isPermaLink="false">http://johnwright.me/microblog/?p=131</guid>
		<description><![CDATA[Facebook&#8217;s Mark Zuckerberg Shares Vision For Facebook And More [INTERVIEW] Some interesting conversation about the future and intersection of mobile/social and Facebook as a platform. Very good listen if you are interested in this space for business and where it&#8217;s going. Mark notes that Zynga market valuation is now bigger than EA is. That is [...]]]></description>
			<content:encoded><![CDATA[<p><a class="titlelink" href="http://johnwright.me/microblog/facebooks-mark-zuckerberg-interviewed-by-scoble-talks-facebook-future">Facebook&#8217;s Mark Zuckerberg Shares Vision For Facebook And More [INTERVIEW]</a><br />
<embed src="http://www.cinchcast.com/cinchplayerext.swf" flashvars="file=http:%2f%2fwww.cinchcast.com%2fCinchPlaylist.aspx%3FRecordingID%3D106370&#038;playermode=full&amp;autostart=false&amp;bufferlength=5&amp;volume=80&amp;callback=http://www.cinchcast.com/FlashPlayerCallback.aspx&#038;width=300&#038;height=200&#038;volume=80&#038;corner=rounded" menu="false" wmode="transparent" quality="high" name="106370" id="106370" width="400" height="200" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" allowScriptAccess="always"></embed></p>
<p>Some interesting conversation about the future and intersection of mobile/social and Facebook as a platform. Very good listen if you are interested in this space for business and where it&#8217;s going. </p>
<p>Mark notes that Zynga market valuation is now bigger than EA is. That is incredible! To think that the social platform that Facebook offers can enable that kind of growth for a startup/company. Amazing.</p>
]]></content:encoded>
			<wfw:commentRss>http://johnwright.me/microblog/facebooks-mark-zuckerberg-interviewed-by-scoble-talks-facebook-future/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>9 Best jQuery 3D Effect Plugins &#124; Java By Example &#124; Jquery,</title>
		<link>http://johnwright.me/microblog/9-best-jquery-3d-effect-plugins-java-by-example-jquery</link>
		<comments>http://johnwright.me/microblog/9-best-jquery-3d-effect-plugins-java-by-example-jquery#comments</comments>
		<pubDate>Thu, 28 Oct 2010 01:20:03 +0000</pubDate>
		<dc:creator>wrightmb</dc:creator>
				<category><![CDATA[Links]]></category>

		<guid isPermaLink="false">http://johnwright.me/microblog/9-best-jquery-3d-effect-plugins-java-by-example-jquery</guid>
		<description><![CDATA[9 Best jQuery 3D Effect Plugins &#124; Java By Example &#124; Jquery,]]></description>
			<content:encoded><![CDATA[<p><a class="titlelink" href="http://javabyexample.wisdomplug.com/web-programming/47-javascript/90-9-best-jquery-3d-effect-plugins.html" rel="external nofollow">9 Best jQuery 3D Effect Plugins | Java By Example | Jquery,</a><br /><a class="titleimglink" href="http://javabyexample.wisdomplug.com/web-programming/47-javascript/90-9-best-jquery-3d-effect-plugins.html" rel="external nofollow"><img class="titleimg" alt="9 Best jQuery 3D Effect Plugins | Java By Example | Jquery," src="http://johnwright.me/microblog/thumbalizr/index.php?url=http://javabyexample.wisdomplug.com/web-programming/47-javascript/90-9-best-jquery-3d-effect-plugins.html" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://johnwright.me/microblog/9-best-jquery-3d-effect-plugins-java-by-example-jquery/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

