<?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>Brian Roy &#187; Emerging Technology Practice</title>
	<atom:link href="http://briantroy.com/blog/category/emerging-technology-practice/feed/" rel="self" type="application/rss+xml" />
	<link>http://briantroy.com/blog</link>
	<description>The ramblings of an often lucid mind...</description>
	<lastBuildDate>Tue, 02 Nov 2010 21:53:47 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
	<atom:link rel='hub' href='http://briantroy.com/blog/?pushpress=hub'/>
		<item>
		<title>Big Data and Real Time &#8211; What I&#8217;ve Learned</title>
		<link>http://briantroy.com/blog/2010/10/22/big-data/</link>
		<comments>http://briantroy.com/blog/2010/10/22/big-data/#comments</comments>
		<pubDate>Fri, 22 Oct 2010 22:52:35 +0000</pubDate>
		<dc:creator>briantroy</dc:creator>
				<category><![CDATA[Analysis]]></category>
		<category><![CDATA[Emerging Technology Practice]]></category>
		<category><![CDATA[Innovation]]></category>
		<category><![CDATA[big data]]></category>
		<category><![CDATA[computer science]]></category>
		<category><![CDATA[engineering]]></category>

		<guid isPermaLink="false">http://briantroy.com/blog/?p=820</guid>
		<description><![CDATA[I&#8217;ve been thinking about writing a series of posts about Big Data for months now&#8230; which is entirely too much thinking an not enough doing, so here we go. And, by Big Data we mean&#8230; Wikipedia offers a very computer science oriented explanation of Big Data &#8211; but while the size of the dataset is [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fbriantroy.com%2Fblog%2F2010%2F10%2F22%2Fbig-data%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fbriantroy.com%2Fblog%2F2010%2F10%2F22%2Fbig-data%2F&amp;source=briantroy&amp;style=normal&amp;service=bit.ly&amp;service_api=justsignal%3AR_626c052845111fc600be065fde2532eb&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://briantroy.com/blog/wp-content/uploads/2010/10/imgres-11.jpeg"><img class="alignleft size-full wp-image-825" style="margin-right: 15px; border: 2px solid #dee5de;" title="real big time data" src="http://briantroy.com/blog/wp-content/uploads/2010/10/imgres-11.jpeg" alt="real big time data" width="225" height="224" /></a>I&#8217;ve been thinking about writing a series of posts about Big Data for months now&#8230; which is entirely too much thinking an not enough doing, so here we go.</p>
<h2>And, by Big Data we mean&#8230;</h2>
<p style="font-size: 13px;">Wikipedia offers a very computer science oriented <a href="http://en.wikipedia.org/wiki/Big_data">explanation of Big Data</a> &#8211; but while the size of the dataset is a factor in Big Data there are several others worth considering:</p>
<ul>
<li>The arrival pattern (how data is created in the large dataset)</li>
<li><a href="http://en.wikipedia.org/wiki/Dimension_(data_warehouse)">Dimensions</a> (how the data is grouped, sub-grouped and organized for analysis)</li>
<li><a href="http://en.wikipedia.org/wiki/Data_transformation">Transformation</a> (how the data is re-dimensioned or transformed to meet new analysis needs)</li>
<li>Consumption (how will the data be consumed by client applications and ultimately humans)</li>
</ul>
<p>Classically Big Data was regarded is extremely large datasets, usually acquired over a long period of time, involving historical data leveraged for predictive analysis of future events. In the simplest terms, we use hundreds of years of historical weather data to predict future weather. Big Data isn&#8217;t new, my first exposure to these concepts was in the early 1990&#8242;s dealing with Contact Center telecom and CTI (computer telephony integration) analytics and predictive analysis of future staffing needs in large footprint (3 to 5 thousand agent) contact centers.</p>
<p>Another example of the classic Big Data problem is the traditional large operational dataset. In the 90&#8242;s a 2 Terabyte dataset &#8211; like the one I worked with at Bank of America &#8211; was so massive that it created the need for a special computing solution. Today large operational datasets are measured in Petrabytes and are becoming fairly common. The primary challenges with these types of datasets is maintaining acceptable operational performance for the standard <a href="http://en.wikipedia.org/wiki/Create,_read,_update_and_delete">CRUD operations</a>.</p>
<p>There are Big Data storage models emerging and maturing today with the two default options being <a href="http://en.wikipedia.org/wiki/Hadoop">hadoop</a> &#8211; which relies on a distributed file system and distributed key value store systems such as <a href="http://cassandra.apache.org/">Cassandra</a> and <a href="http://couchdb.apache.org/">CouchDB</a>. These systems (referred to as <a href="http://en.wikipedia.org/wiki/NoSQL">NoSQL</a> solutions) differ from standard RDBMS systems in two important ways:</p>
<ul>
<li>The underlying organization of data is amorphous and does not implement relationships.</li>
<li>There is no support for <a href="http://en.wikipedia.org/wiki/Database_transaction">Transactional Integrity</a> (also know as <a href="http://en.wikipedia.org/wiki/ACID">ACID</a>).</li>
</ul>
<p>While all of these are interesting engineering problems, they still lack a crucial component. As a matter of fact, most conversations about Big Data fail to adequately address what is, perhaps, the most important problem with Big Data systems today.</p>
<h2>The Intersection of Real Time and Big Data</h2>
<p>Today&#8217;s big datasets are manageable in RDMBS systems. That being said, a significant amount of complexity is inserted in the managament process, most notably:</p>
<ul>
<li><a href="http://en.wikipedia.org/wiki/Shard_(database_architecture)">Database Sharding</a> and the complexity of managing multiple databases.</li>
<li>Downtime associated with Schema changes or complexity of CLOB fields used in a amorphous﻿ manner.</li>
</ul>
<p>Given that, large datasets that change slowly over time, or more accurately, those that have a relatively low volume of creates (including those that occur as a result of large transformations) as compared to read, update and delete can be managed using RDBM systems.</p>
<p>Where Real Time &#8211; specifically as related to Social Media, user generated content and other high create applications (such as the <a href="http://en.wikipedia.org/wiki/Large_Hadron_Collider">Large Hadron Collider</a>) &#8211; intersect with Big Data is &#8211; to me &#8211; the most interesting Big Data topic.</p>
<p>This model presents three distinct challenges:</p>
<ul>
<li>High data arrival &#8211; potentially hundreds of thousands of new objects &#8220;found&#8221; per second.</li>
<li>High transformation rate.</li>
<li>Real Time Client updates.</li>
</ul>
<p>The intersection of all three of these challenges was exactly the what we dealt with at justSignal. We needed to consistently collect hundreds of thousands of Social Media objects per second, generate hundreds of meta data elements (transformations) for each object, and make all of that data available in real time to our client applications. This view of Big Data is slightly different. In this view the size of the dataset &#8211; while still significant &#8211; isn&#8217;t as important as the challenges presented by a very high volume of CRUD operations over very short time slices.</p>
<p>The most important thing I&#8217;ve learned is that there is no silver bullet. While the traditional relational database isn&#8217;t effective in real time big data scenarios neither is a standalone Hadoop or Distributed Key Value Store. Essentially, you must evaluate each use case against the suite of technologies available and select the one best suited to that particular use case. Selecting a NoSQL solution for order processing &#8211; which has heavy ACID/Transactional requirements isn&#8217;t a good idea. However, staying with your RDBMS for high insert/transform data processing isn&#8217;t going to work either.</p>
<p>The approach we took at justSignal &#8211; which I will go into in more detail in a future post &#8211; was to create a unified data persistence layer designed to leverage the right long/short term data store (and sometimes more than one) based on the requirements of the application. This data persistance layer is made up of:</p>
<ul>
<li>MySQL</li>
<li>memcached</li>
<li>Cassandra</li>
<li>Beanstalkd</li>
</ul>
<p>Each plays a critical role in our ability to collect, transform, process and serve hundreds of thousands of social media mentions per minute.</p>
<p>More to follow&#8230;</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://www.shareaholic.com/api/share/?title=Big+Data+and+Real+Time+-+What+I%27ve+Learned&amp;link=http://briantroy.com/blog/2010/10/22/big-data/&amp;notes=I%27ve%20been%20thinking%20about%20writing%20a%20series%20of%20posts%20about%20Big%20Data%20for%20months%20now...%20which%20is%20entirely%20too%20much%20thinking%20an%20not%20enough%20doing%2C%20so%20here%20we%20go.%0D%0AAnd%2C%20by%20Big%20Data%20we%20mean...%0D%0AWikipedia%20offers%20a%20very%20computer%20science%20oriented%20explanation%20of%20Big%20Data%20-%20but%20while%20the%20size%20of%20the%20dataset%20is%20a&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=2&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://www.shareaholic.com/api/share/?title=Big+Data+and+Real+Time+-+What+I%27ve+Learned&amp;link=http://briantroy.com/blog/2010/10/22/big-data/&amp;notes=I%27ve%20been%20thinking%20about%20writing%20a%20series%20of%20posts%20about%20Big%20Data%20for%20months%20now...%20which%20is%20entirely%20too%20much%20thinking%20an%20not%20enough%20doing%2C%20so%20here%20we%20go.%0D%0AAnd%2C%20by%20Big%20Data%20we%20mean...%0D%0AWikipedia%20offers%20a%20very%20computer%20science%20oriented%20explanation%20of%20Big%20Data%20-%20but%20while%20the%20size%20of%20the%20dataset%20is%20a&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=3&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-evernote">
			<a href="http://www.shareaholic.com/api/share/?title=Big+Data+and+Real+Time+-+What+I%27ve+Learned&amp;link=http://briantroy.com/blog/2010/10/22/big-data/&amp;notes=I%27ve%20been%20thinking%20about%20writing%20a%20series%20of%20posts%20about%20Big%20Data%20for%20months%20now...%20which%20is%20entirely%20too%20much%20thinking%20an%20not%20enough%20doing%2C%20so%20here%20we%20go.%0D%0AAnd%2C%20by%20Big%20Data%20we%20mean...%0D%0AWikipedia%20offers%20a%20very%20computer%20science%20oriented%20explanation%20of%20Big%20Data%20-%20but%20while%20the%20size%20of%20the%20dataset%20is%20a&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=191&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Clip this to Evernote">Clip this to Evernote</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.shareaholic.com/api/share/?title=Big+Data+and+Real+Time+-+What+I%27ve+Learned&amp;link=http://briantroy.com/blog/2010/10/22/big-data/&amp;notes=I%27ve%20been%20thinking%20about%20writing%20a%20series%20of%20posts%20about%20Big%20Data%20for%20months%20now...%20which%20is%20entirely%20too%20much%20thinking%20an%20not%20enough%20doing%2C%20so%20here%20we%20go.%0D%0AAnd%2C%20by%20Big%20Data%20we%20mean...%0D%0AWikipedia%20offers%20a%20very%20computer%20science%20oriented%20explanation%20of%20Big%20Data%20-%20but%20while%20the%20size%20of%20the%20dataset%20is%20a&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=5&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.shareaholic.com/api/share/?title=Big+Data+and+Real+Time+-+What+I%27ve+Learned&amp;link=http://briantroy.com/blog/2010/10/22/big-data/&amp;notes=I%27ve%20been%20thinking%20about%20writing%20a%20series%20of%20posts%20about%20Big%20Data%20for%20months%20now...%20which%20is%20entirely%20too%20much%20thinking%20an%20not%20enough%20doing%2C%20so%20here%20we%20go.%0D%0AAnd%2C%20by%20Big%20Data%20we%20mean...%0D%0AWikipedia%20offers%20a%20very%20computer%20science%20oriented%20explanation%20of%20Big%20Data%20-%20but%20while%20the%20size%20of%20the%20dataset%20is%20a&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=257&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.shareaholic.com/api/share/?title=Big+Data+and+Real+Time+-+What+I%27ve+Learned&amp;link=http://briantroy.com/blog/2010/10/22/big-data/&amp;notes=I%27ve%20been%20thinking%20about%20writing%20a%20series%20of%20posts%20about%20Big%20Data%20for%20months%20now...%20which%20is%20entirely%20too%20much%20thinking%20an%20not%20enough%20doing%2C%20so%20here%20we%20go.%0D%0AAnd%2C%20by%20Big%20Data%20we%20mean...%0D%0AWikipedia%20offers%20a%20very%20computer%20science%20oriented%20explanation%20of%20Big%20Data%20-%20but%20while%20the%20size%20of%20the%20dataset%20is%20a&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=207&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.shareaholic.com/api/share/?title=Big+Data+and+Real+Time+-+What+I%27ve+Learned&amp;link=http://briantroy.com/blog/2010/10/22/big-data/&amp;notes=I%27ve%20been%20thinking%20about%20writing%20a%20series%20of%20posts%20about%20Big%20Data%20for%20months%20now...%20which%20is%20entirely%20too%20much%20thinking%20an%20not%20enough%20doing%2C%20so%20here%20we%20go.%0D%0AAnd%2C%20by%20Big%20Data%20we%20mean...%0D%0AWikipedia%20offers%20a%20very%20computer%20science%20oriented%20explanation%20of%20Big%20Data%20-%20but%20while%20the%20size%20of%20the%20dataset%20is%20a&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=88&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-mail">
			<a href="http://www.shareaholic.com/api/share/?title=Big%20Data%20and%20Real%20Time%20-%20What%20I%27ve%20Learned&amp;link=http://briantroy.com/blog/2010/10/22/big-data/&amp;notes=I%27ve%20been%20thinking%20about%20writing%20a%20series%20of%20posts%20about%20Big%20Data%20for%20months%20now...%20which%20is%20entirely%20too%20much%20thinking%20an%20not%20enough%20doing%2C%20so%20here%20we%20go.%0D%0AAnd%2C%20by%20Big%20Data%20we%20mean...%0D%0AWikipedia%20offers%20a%20very%20computer%20science%20oriented%20explanation%20of%20Big%20Data%20-%20but%20while%20the%20size%20of%20the%20dataset%20is%20a&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=201&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.shareaholic.com/api/share/?title=Big+Data+and+Real+Time+-+What+I%27ve+Learned&amp;link=http://briantroy.com/blog/2010/10/22/big-data/&amp;notes=I%27ve%20been%20thinking%20about%20writing%20a%20series%20of%20posts%20about%20Big%20Data%20for%20months%20now...%20which%20is%20entirely%20too%20much%20thinking%20an%20not%20enough%20doing%2C%20so%20here%20we%20go.%0D%0AAnd%2C%20by%20Big%20Data%20we%20mean...%0D%0AWikipedia%20offers%20a%20very%20computer%20science%20oriented%20explanation%20of%20Big%20Data%20-%20but%20while%20the%20size%20of%20the%20dataset%20is%20a&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=38&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-twitter">
			<a href="http://www.shareaholic.com/api/share/?title=Big+Data+and+Real+Time+-+What+I%27ve+Learned&amp;link=http://briantroy.com/blog/2010/10/22/big-data/&amp;notes=I%27ve%20been%20thinking%20about%20writing%20a%20series%20of%20posts%20about%20Big%20Data%20for%20months%20now...%20which%20is%20entirely%20too%20much%20thinking%20an%20not%20enough%20doing%2C%20so%20here%20we%20go.%0D%0AAnd%2C%20by%20Big%20Data%20we%20mean...%0D%0AWikipedia%20offers%20a%20very%20computer%20science%20oriented%20explanation%20of%20Big%20Data%20-%20but%20while%20the%20size%20of%20the%20dataset%20is%20a&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=%2524%257Btitle%257D%2B-%2B%2524%257Bshort_link%257D&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul><div style="clear: both;"></div><div class="shr-getshr" style="visibility:hidden;font-size:10px !important"><a target="_blank" href="http://www.shareaholic.com/?src=pub">Get Shareaholic</a></div><div style="clear: both;"></div></div>

]]></content:encoded>
			<wfw:commentRss>http://briantroy.com/blog/2010/10/22/big-data/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Let&#8217;s Get Serious &#8211; Social Media ROI</title>
		<link>http://briantroy.com/blog/2009/12/15/lets-get-serious-social-media-roi/</link>
		<comments>http://briantroy.com/blog/2009/12/15/lets-get-serious-social-media-roi/#comments</comments>
		<pubDate>Tue, 15 Dec 2009 19:15:01 +0000</pubDate>
		<dc:creator>briantroy</dc:creator>
				<category><![CDATA[Analysis]]></category>
		<category><![CDATA[Emerging Technology Practice]]></category>
		<category><![CDATA[Experimentation]]></category>
		<category><![CDATA[The Future]]></category>
		<category><![CDATA[Analytics]]></category>
		<category><![CDATA[ROI]]></category>
		<category><![CDATA[social media]]></category>
		<category><![CDATA[Social Media Analytics]]></category>

		<guid isPermaLink="false">http://briantroy.com/blog/2009/12/15/lets-get-serious-social-media-roi/</guid>
		<description><![CDATA[I&#8217;m honestly heartened by the sudden rash of efforts to create a methodology to determine ROI (return on investment) for Social Media efforts. It signals something very important for Social Media &#8211; the return of rationality to the debate. When you consider that a few short months ago the prevailing meme was that creating a [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fbriantroy.com%2Fblog%2F2009%2F12%2F15%2Flets-get-serious-social-media-roi%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fbriantroy.com%2Fblog%2F2009%2F12%2F15%2Flets-get-serious-social-media-roi%2F&amp;source=briantroy&amp;style=normal&amp;service=bit.ly&amp;service_api=justsignal%3AR_626c052845111fc600be065fde2532eb&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>I&#8217;m honestly heartened by the <a href="http://www.facebook.com/ROIofSocialMedia">sudden rash of efforts</a> to create a methodology to determine ROI (return on investment) for Social Media efforts. It signals something very important for Social Media &#8211; the return of rationality to the debate.</p>
<p><img style="margin-right: 10px; margin-bottom: 10px;" src="http://briantroy.com/blog/wp-content/uploads/2009/12/head-scratch.png" alt="head scratch.png" width="194" height="314" />When you consider that a few short months ago the prevailing meme was that <a href="http://aaronkim.wordpress.com/2009/02/19/roi-20-part-3-we-dont-need-a-social-media-roi-model/">creating a basis for your Social Media efforts in terms of ROI</a> was &#8220;doing it wrong&#8221; &#8211; it is impressive how far we&#8217;ve come. The realization that <a href="http://briantroy.com/blog/2009/09/14/the-business-of-social-media-better-decisions-not-better-reactions/">moral arguments and scare tactics</a> will only get you so far &#8211; and in many cases backfire &#8211; has led to an overwhelming need to create an ROI model.</p>
<p><em><strong>Unfortunately many of these efforts are not really after ROI &#8211; they are seeking to justify an already formed point of view.</strong></em></p>
<p>The reality is we simply don&#8217;t know if Social Media has a analytical, fact based ROI. That may sound odd coming from a guy who has bet his personal savings starting a <a href="http://justsignal.com">Social Media Engagement and Analytics company</a> &#8211; so let me explain both why the ROI hasn&#8217;t been proven and why I&#8217;m betting it will be.</p>
<p><span style="font-size: large;"><span style="font-size: 18px;">Social Media is a Niche Opportunity &#8211; Today</span></span></p>
<p>If you want to know why there is no fact based proven ROI for Social Media investments today, all you need to understand is that Social Media has been adopted in niches. It may be in the Marketing department, or used by your Digital Agency, or perhaps in your Customer Service department. Each of these adoptions was driven out of fear (we have to monitor this and deal with the negative) or the moral (we love our customers &#8211; so we are going to do this). The investment was negligible &#8211; and in most cases I&#8217;d bet it was funded right out of the operating budget of the organization where it was used.</p>
<p>These organizations are <a href="http://mashable.com/2009/06/11/delloutlet-two-million/">beginning to declare victory</a> and are being <a href="http://www.readwriteweb.com/archives/social_media_roi_dells_3m_on_twitter_and_four_bett.php">challenged to prove it</a>. This presents unique challenges, because Social Media runs on anecdotes, not analysis. Dell sells 3 million in product from Dell Outlet after offering those products on Twitter. That is a great anecdote &#8211; but it isn&#8217;t analysis. When you ask the critical questions:</p>
<ul>
<li>What would you have sold without Twitter?</li>
<li>Was that a 3MM increase in sales &#8211; or just 3MM net sales from those links?</li>
<li>How much did it cost to generate the 3MM in sales and how does that compare to email?</li>
<li>Is this repeatable &#8211; can it be replicated in other parts of the business &#8211; and how do you know?</li>
</ul>
<p>you quickly find that the anecdote doesn&#8217;t equate to ROI. It might&#8230; but it isn&#8217;t there yet.</p>
<p>These types of anecdotes are <span style="text-decoration: underline;"><em>justifications</em></span>. They are about proving the correctness of an already made assumption.</p>
<p>I&#8217;ve seen this movie before &#8211; it exactly parallels the pattern for CRM in the late 1990&#8242;s.</p>
<p><img src="http://briantroy.com/blog/wp-content/uploads/2009/12/technology-adoption-enterprise.png" alt="technology-adoption-enterprise.png" width="563" height="281" /></p>
<p>NOTE: For simplicity I&#8217;ve omitted the case where a technology/methodology has a niche ROI without broader adoption.</p>
<p>We are squarely in the middle of the justification phase for Social Media. This roughly corresponds to the height of the expectations (the big peak on the Gartner Magic Quadrant) and always directly precedes the Trough of Disillusionment. This is a recognizable and predictable pattern for adoption of new technologies and methodologies &#8211; and here is why.</p>
<p>The initial opportunity is too good to stay on the sidelines for some early adopter group. They &#8211; almost always within existing operating budgets and using the promise as a bulwark defense &#8211; adopt the technology/methodology. Once they believe they have seen tangible results they attempt to socialize the &#8220;win&#8221; outside the organization by creating justifications for what they&#8217;ve already done. These justifications bring broader scrutiny.</p>
<p>That scrutiny happens in two phases:</p>
<ol>
<li>Was it worth it?</li>
<li>Can it be done systemically &#8211; can I forecast a x% increase in metric z if I do this again.</li>
</ol>
<p>The second is ROI. A systemic way of proving that adoption generates a return. If, and only if, that can be proven will the technology escape the niche application and be applied on a broad scale.</p>
<p>Why does it work this way &#8211; because enterprises are first and foremost risk management systems. They systemically avoid large risks.</p>
<p><span style="font-family: 'Lucida Grande'; font-size: large;"><span style="font-size: 18px;">Why Will Social Media Attain Broad Adoption</span></span></p>
<p><span style="font-family: 'Lucida Grande';">The primary reasons I believe Social Media will in fact generate a valid ROI and attain broad adoption:</span></p>
<ol>
<li><span style="font-family: 'Lucida Grande';">It is measurable.</span></li>
<li><span style="font-family: 'Lucida Grande';">The unrecognized value far exceeds the recognized value.</span></li>
</ol>
<p><span style="font-family: 'Lucida Grande';"><span style="font-size: medium;"><span style="font-size: 14px;">Measurability</span></span></span></p>
<p><span style="font-family: 'Lucida Grande';">As you might imagine, it is very difficult to justify and create a systemic ROI for something that is exceptionally difficult to measure. Social Media is &#8211; in contrast &#8211; eminently measurable. Rational decisions must be made about what to measure &#8211; and <a href="http://briantroy.com/blog/2009/12/14/social-media-metrics-mean-nothing/">we need more focus on connecting those measures to the core business metrics</a> &#8211; but there is no <em>fundamental</em> barrier to creating valuable measures.</span></p>
<p><span style="font-family: 'Lucida Grande';"><span style="font-size: medium;"><span style="font-size: 14px;">The Value Proposition</span></span></span></p>
<p><span style="font-family: 'Lucida Grande';">Today, we&#8217;ve put all our Social Media eggs in the PR/Marketing basket. Even the small amount of credibility given to customer service via Social Media has been driven by the (C-Level Down) idea that customer service should &#8220;avert disasters&#8221; by monitoring Social Media and addressing customer issues. Make no mistake, this is customer service acting in a PR role &#8211; the goal isn&#8217;t to provide service so much as to avoid negative perceptions.</span></p>
<p><span style="font-family: 'Lucida Grande';">However, if you take one large step back and think about the opportunity Social Media presents &#8211; you can quickly see that <strong><em>the value proposition is in having a huge, open back channel to your market</em></strong>. We&#8217;ve had channels to our customers, and sometimes even our prospects &#8211; but this is bigger. It is the entire market for your product or service. You get to listen in on what they have to say about what they want and need. You can engage them to better understand their motivations. <span style="text-decoration: underline;"><strong>You can apply what you learn to create incremental improvements in every phase of your business</strong></span>.</span></p>
<p><span style="font-family: 'Lucida Grande';">Yes, you can send out special offers. Yes, you can address customer concerns. But the real return will come from having a robust back channel with your entire market; and the resulting market intelligence can &#8211; if you apply it &#8211; help you make every part of your business more appealing to your target market.</span></p>
<p><span style="font-family: 'Lucida Grande';">So let&#8217;s get serious about ROI. Let&#8217;s talk about how companies operate and win by continually tuning their processes to better address the needs of their target market. Let&#8217;s talk about how Social Media provides them a back channel to that market, a back channel that is an invaluable source of intelligence about the market.</span></p>
<p><span style="font-family: 'Lucida Grande';">Let&#8217;s talk about how a business that applies the intelligence gained via Social Media to all of their decision making processes is faster and more agile in addressing the needs of their market &#8211; and thereby wins market share.</span></p>
<p><span style="font-family: 'Lucida Grande';"><br />
</span></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://www.shareaholic.com/api/share/?title=Let%27s+Get+Serious+-+Social+Media+ROI&amp;link=http://briantroy.com/blog/2009/12/15/lets-get-serious-social-media-roi/&amp;notes=I%27m%20honestly%20heartened%20by%20the%20sudden%20rash%20of%20efforts%20to%20create%20a%20methodology%20to%20determine%20ROI%20%28return%20on%20investment%29%20for%20Social%20Media%20efforts.%20It%20signals%20something%20very%20important%20for%20Social%20Media%20-%20the%20return%20of%20rationality%20to%20the%20debate.%0D%0A%0D%0AWhen%20you%20consider%20that%20a%20few%20short%20months%20ago%20the%20prevaili&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=2&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://www.shareaholic.com/api/share/?title=Let%27s+Get+Serious+-+Social+Media+ROI&amp;link=http://briantroy.com/blog/2009/12/15/lets-get-serious-social-media-roi/&amp;notes=I%27m%20honestly%20heartened%20by%20the%20sudden%20rash%20of%20efforts%20to%20create%20a%20methodology%20to%20determine%20ROI%20%28return%20on%20investment%29%20for%20Social%20Media%20efforts.%20It%20signals%20something%20very%20important%20for%20Social%20Media%20-%20the%20return%20of%20rationality%20to%20the%20debate.%0D%0A%0D%0AWhen%20you%20consider%20that%20a%20few%20short%20months%20ago%20the%20prevaili&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=3&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-evernote">
			<a href="http://www.shareaholic.com/api/share/?title=Let%27s+Get+Serious+-+Social+Media+ROI&amp;link=http://briantroy.com/blog/2009/12/15/lets-get-serious-social-media-roi/&amp;notes=I%27m%20honestly%20heartened%20by%20the%20sudden%20rash%20of%20efforts%20to%20create%20a%20methodology%20to%20determine%20ROI%20%28return%20on%20investment%29%20for%20Social%20Media%20efforts.%20It%20signals%20something%20very%20important%20for%20Social%20Media%20-%20the%20return%20of%20rationality%20to%20the%20debate.%0D%0A%0D%0AWhen%20you%20consider%20that%20a%20few%20short%20months%20ago%20the%20prevaili&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=191&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Clip this to Evernote">Clip this to Evernote</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.shareaholic.com/api/share/?title=Let%27s+Get+Serious+-+Social+Media+ROI&amp;link=http://briantroy.com/blog/2009/12/15/lets-get-serious-social-media-roi/&amp;notes=I%27m%20honestly%20heartened%20by%20the%20sudden%20rash%20of%20efforts%20to%20create%20a%20methodology%20to%20determine%20ROI%20%28return%20on%20investment%29%20for%20Social%20Media%20efforts.%20It%20signals%20something%20very%20important%20for%20Social%20Media%20-%20the%20return%20of%20rationality%20to%20the%20debate.%0D%0A%0D%0AWhen%20you%20consider%20that%20a%20few%20short%20months%20ago%20the%20prevaili&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=5&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.shareaholic.com/api/share/?title=Let%27s+Get+Serious+-+Social+Media+ROI&amp;link=http://briantroy.com/blog/2009/12/15/lets-get-serious-social-media-roi/&amp;notes=I%27m%20honestly%20heartened%20by%20the%20sudden%20rash%20of%20efforts%20to%20create%20a%20methodology%20to%20determine%20ROI%20%28return%20on%20investment%29%20for%20Social%20Media%20efforts.%20It%20signals%20something%20very%20important%20for%20Social%20Media%20-%20the%20return%20of%20rationality%20to%20the%20debate.%0D%0A%0D%0AWhen%20you%20consider%20that%20a%20few%20short%20months%20ago%20the%20prevaili&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=257&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.shareaholic.com/api/share/?title=Let%27s+Get+Serious+-+Social+Media+ROI&amp;link=http://briantroy.com/blog/2009/12/15/lets-get-serious-social-media-roi/&amp;notes=I%27m%20honestly%20heartened%20by%20the%20sudden%20rash%20of%20efforts%20to%20create%20a%20methodology%20to%20determine%20ROI%20%28return%20on%20investment%29%20for%20Social%20Media%20efforts.%20It%20signals%20something%20very%20important%20for%20Social%20Media%20-%20the%20return%20of%20rationality%20to%20the%20debate.%0D%0A%0D%0AWhen%20you%20consider%20that%20a%20few%20short%20months%20ago%20the%20prevaili&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=207&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.shareaholic.com/api/share/?title=Let%27s+Get+Serious+-+Social+Media+ROI&amp;link=http://briantroy.com/blog/2009/12/15/lets-get-serious-social-media-roi/&amp;notes=I%27m%20honestly%20heartened%20by%20the%20sudden%20rash%20of%20efforts%20to%20create%20a%20methodology%20to%20determine%20ROI%20%28return%20on%20investment%29%20for%20Social%20Media%20efforts.%20It%20signals%20something%20very%20important%20for%20Social%20Media%20-%20the%20return%20of%20rationality%20to%20the%20debate.%0D%0A%0D%0AWhen%20you%20consider%20that%20a%20few%20short%20months%20ago%20the%20prevaili&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=88&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-mail">
			<a href="http://www.shareaholic.com/api/share/?title=Let%27s%20Get%20Serious%20-%20Social%20Media%20ROI&amp;link=http://briantroy.com/blog/2009/12/15/lets-get-serious-social-media-roi/&amp;notes=I%27m%20honestly%20heartened%20by%20the%20sudden%20rash%20of%20efforts%20to%20create%20a%20methodology%20to%20determine%20ROI%20%28return%20on%20investment%29%20for%20Social%20Media%20efforts.%20It%20signals%20something%20very%20important%20for%20Social%20Media%20-%20the%20return%20of%20rationality%20to%20the%20debate.%0D%0A%0D%0AWhen%20you%20consider%20that%20a%20few%20short%20months%20ago%20the%20prevaili&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=201&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.shareaholic.com/api/share/?title=Let%27s+Get+Serious+-+Social+Media+ROI&amp;link=http://briantroy.com/blog/2009/12/15/lets-get-serious-social-media-roi/&amp;notes=I%27m%20honestly%20heartened%20by%20the%20sudden%20rash%20of%20efforts%20to%20create%20a%20methodology%20to%20determine%20ROI%20%28return%20on%20investment%29%20for%20Social%20Media%20efforts.%20It%20signals%20something%20very%20important%20for%20Social%20Media%20-%20the%20return%20of%20rationality%20to%20the%20debate.%0D%0A%0D%0AWhen%20you%20consider%20that%20a%20few%20short%20months%20ago%20the%20prevaili&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=38&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-twitter">
			<a href="http://www.shareaholic.com/api/share/?title=Let%27s+Get+Serious+-+Social+Media+ROI&amp;link=http://briantroy.com/blog/2009/12/15/lets-get-serious-social-media-roi/&amp;notes=I%27m%20honestly%20heartened%20by%20the%20sudden%20rash%20of%20efforts%20to%20create%20a%20methodology%20to%20determine%20ROI%20%28return%20on%20investment%29%20for%20Social%20Media%20efforts.%20It%20signals%20something%20very%20important%20for%20Social%20Media%20-%20the%20return%20of%20rationality%20to%20the%20debate.%0D%0A%0D%0AWhen%20you%20consider%20that%20a%20few%20short%20months%20ago%20the%20prevaili&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=%2524%257Btitle%257D%2B-%2B%2524%257Bshort_link%257D&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul><div style="clear: both;"></div><div class="shr-getshr" style="visibility:hidden;font-size:10px !important"><a target="_blank" href="http://www.shareaholic.com/?src=pub">Get Shareaholic</a></div><div style="clear: both;"></div></div>

]]></content:encoded>
			<wfw:commentRss>http://briantroy.com/blog/2009/12/15/lets-get-serious-social-media-roi/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Video: Social Media in Corporations &#8211; and The Quesiton of Scale</title>
		<link>http://briantroy.com/blog/2008/12/19/video-social-media-in-corporations-and-the-quesiton-of-scale/</link>
		<comments>http://briantroy.com/blog/2008/12/19/video-social-media-in-corporations-and-the-quesiton-of-scale/#comments</comments>
		<pubDate>Fri, 19 Dec 2008 19:40:14 +0000</pubDate>
		<dc:creator>briantroy</dc:creator>
				<category><![CDATA[Business Model Innovation]]></category>
		<category><![CDATA[cosinity]]></category>
		<category><![CDATA[Emerging Technology Practice]]></category>
		<category><![CDATA[Vendors]]></category>
		<category><![CDATA[comcastcares]]></category>
		<category><![CDATA[customer experience]]></category>
		<category><![CDATA[customers]]></category>
		<category><![CDATA[friendfeed]]></category>
		<category><![CDATA[JustSignal]]></category>
		<category><![CDATA[marketing]]></category>
		<category><![CDATA[PR]]></category>
		<category><![CDATA[Radian6]]></category>
		<category><![CDATA[social media]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[value and price]]></category>

		<guid isPermaLink="false">http://briantroy.com/blog/2008/12/19/video-social-media-in-corporations-and-the-quesiton-of-scale/</guid>
		<description><![CDATA[David Alston of Radian6 stopped by yesterday and commented on this post. This video is a detailed explanation of my views on Social Media, Brand Monitoring, and operationalizing and scaling those things in companies. Video Blog 12-19-2008 &#124; The question of Scale &#38; Social Media for Brand Managment from Brian Roy on Vimeo. Share this [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fbriantroy.com%2Fblog%2F2008%2F12%2F19%2Fvideo-social-media-in-corporations-and-the-quesiton-of-scale%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fbriantroy.com%2Fblog%2F2008%2F12%2F19%2Fvideo-social-media-in-corporations-and-the-quesiton-of-scale%2F&amp;source=briantroy&amp;style=normal&amp;service=bit.ly&amp;service_api=justsignal%3AR_626c052845111fc600be065fde2532eb&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://twitter.com/davidalston">David Alston</a> of <a href="http://radian6.com">Radian6</a> stopped by yesterday and <a href="http://briantroy.com/blog/2008/12/12/being-in-the-conversation-social-media-and-you-brand/">commented on this post</a>.</p>
<p>This video is a detailed explanation of my views on Social Media, Brand Monitoring, and operationalizing and scaling those things in companies.</p>
<p><object width="549" height="309"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=2576062&amp;server=vimeo.com&amp;show_title=0&amp;show_byline=0&amp;show_portrait=0&amp;color=8f3b55&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=2576062&amp;server=vimeo.com&amp;show_title=0&amp;show_byline=0&amp;show_portrait=0&amp;color=8f3b55&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="549" height="309" /><br />
</object><br />
<a href="http://vimeo.com/2576062">Video Blog 12-19-2008 | The question of Scale &amp; Social Media for Brand Managment</a> from <a href="http://vimeo.com/briantroy">Brian Roy</a> on <a href="http://vimeo.com">Vimeo</a>.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://www.shareaholic.com/api/share/?title=Video%3A+Social+Media+in+Corporations+-+and+The+Quesiton+of+Scale&amp;link=http://briantroy.com/blog/2008/12/19/video-social-media-in-corporations-and-the-quesiton-of-scale/&amp;notes=David%20Alston%20of%20Radian6%20stopped%20by%20yesterday%20and%20commented%20on%20this%20post.%0AThis%20video%20is%20a%20detailed%20explanation%20of%20my%20views%20on%20Social%20Media%2C%20Brand%20Monitoring%2C%20and%20operationalizing%20and%20scaling%20those%20things%20in%20companies.%0A%20%20%0A%20%20%0A%20%20%0A%20%20%0A%0AVideo%20Blog%2012-19-2008%20%7C%20The%20question%20of%20Scale%20%26amp%3B%20Social%20Media%20for%20B&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=2&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://www.shareaholic.com/api/share/?title=Video%3A+Social+Media+in+Corporations+-+and+The+Quesiton+of+Scale&amp;link=http://briantroy.com/blog/2008/12/19/video-social-media-in-corporations-and-the-quesiton-of-scale/&amp;notes=David%20Alston%20of%20Radian6%20stopped%20by%20yesterday%20and%20commented%20on%20this%20post.%0AThis%20video%20is%20a%20detailed%20explanation%20of%20my%20views%20on%20Social%20Media%2C%20Brand%20Monitoring%2C%20and%20operationalizing%20and%20scaling%20those%20things%20in%20companies.%0A%20%20%0A%20%20%0A%20%20%0A%20%20%0A%0AVideo%20Blog%2012-19-2008%20%7C%20The%20question%20of%20Scale%20%26amp%3B%20Social%20Media%20for%20B&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=3&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-evernote">
			<a href="http://www.shareaholic.com/api/share/?title=Video%3A+Social+Media+in+Corporations+-+and+The+Quesiton+of+Scale&amp;link=http://briantroy.com/blog/2008/12/19/video-social-media-in-corporations-and-the-quesiton-of-scale/&amp;notes=David%20Alston%20of%20Radian6%20stopped%20by%20yesterday%20and%20commented%20on%20this%20post.%0AThis%20video%20is%20a%20detailed%20explanation%20of%20my%20views%20on%20Social%20Media%2C%20Brand%20Monitoring%2C%20and%20operationalizing%20and%20scaling%20those%20things%20in%20companies.%0A%20%20%0A%20%20%0A%20%20%0A%20%20%0A%0AVideo%20Blog%2012-19-2008%20%7C%20The%20question%20of%20Scale%20%26amp%3B%20Social%20Media%20for%20B&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=191&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Clip this to Evernote">Clip this to Evernote</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.shareaholic.com/api/share/?title=Video%3A+Social+Media+in+Corporations+-+and+The+Quesiton+of+Scale&amp;link=http://briantroy.com/blog/2008/12/19/video-social-media-in-corporations-and-the-quesiton-of-scale/&amp;notes=David%20Alston%20of%20Radian6%20stopped%20by%20yesterday%20and%20commented%20on%20this%20post.%0AThis%20video%20is%20a%20detailed%20explanation%20of%20my%20views%20on%20Social%20Media%2C%20Brand%20Monitoring%2C%20and%20operationalizing%20and%20scaling%20those%20things%20in%20companies.%0A%20%20%0A%20%20%0A%20%20%0A%20%20%0A%0AVideo%20Blog%2012-19-2008%20%7C%20The%20question%20of%20Scale%20%26amp%3B%20Social%20Media%20for%20B&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=5&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.shareaholic.com/api/share/?title=Video%3A+Social+Media+in+Corporations+-+and+The+Quesiton+of+Scale&amp;link=http://briantroy.com/blog/2008/12/19/video-social-media-in-corporations-and-the-quesiton-of-scale/&amp;notes=David%20Alston%20of%20Radian6%20stopped%20by%20yesterday%20and%20commented%20on%20this%20post.%0AThis%20video%20is%20a%20detailed%20explanation%20of%20my%20views%20on%20Social%20Media%2C%20Brand%20Monitoring%2C%20and%20operationalizing%20and%20scaling%20those%20things%20in%20companies.%0A%20%20%0A%20%20%0A%20%20%0A%20%20%0A%0AVideo%20Blog%2012-19-2008%20%7C%20The%20question%20of%20Scale%20%26amp%3B%20Social%20Media%20for%20B&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=257&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.shareaholic.com/api/share/?title=Video%3A+Social+Media+in+Corporations+-+and+The+Quesiton+of+Scale&amp;link=http://briantroy.com/blog/2008/12/19/video-social-media-in-corporations-and-the-quesiton-of-scale/&amp;notes=David%20Alston%20of%20Radian6%20stopped%20by%20yesterday%20and%20commented%20on%20this%20post.%0AThis%20video%20is%20a%20detailed%20explanation%20of%20my%20views%20on%20Social%20Media%2C%20Brand%20Monitoring%2C%20and%20operationalizing%20and%20scaling%20those%20things%20in%20companies.%0A%20%20%0A%20%20%0A%20%20%0A%20%20%0A%0AVideo%20Blog%2012-19-2008%20%7C%20The%20question%20of%20Scale%20%26amp%3B%20Social%20Media%20for%20B&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=207&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.shareaholic.com/api/share/?title=Video%3A+Social+Media+in+Corporations+-+and+The+Quesiton+of+Scale&amp;link=http://briantroy.com/blog/2008/12/19/video-social-media-in-corporations-and-the-quesiton-of-scale/&amp;notes=David%20Alston%20of%20Radian6%20stopped%20by%20yesterday%20and%20commented%20on%20this%20post.%0AThis%20video%20is%20a%20detailed%20explanation%20of%20my%20views%20on%20Social%20Media%2C%20Brand%20Monitoring%2C%20and%20operationalizing%20and%20scaling%20those%20things%20in%20companies.%0A%20%20%0A%20%20%0A%20%20%0A%20%20%0A%0AVideo%20Blog%2012-19-2008%20%7C%20The%20question%20of%20Scale%20%26amp%3B%20Social%20Media%20for%20B&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=88&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-mail">
			<a href="http://www.shareaholic.com/api/share/?title=Video%3A%20Social%20Media%20in%20Corporations%20-%20and%20The%20Quesiton%20of%20Scale&amp;link=http://briantroy.com/blog/2008/12/19/video-social-media-in-corporations-and-the-quesiton-of-scale/&amp;notes=David%20Alston%20of%20Radian6%20stopped%20by%20yesterday%20and%20commented%20on%20this%20post.%0AThis%20video%20is%20a%20detailed%20explanation%20of%20my%20views%20on%20Social%20Media%2C%20Brand%20Monitoring%2C%20and%20operationalizing%20and%20scaling%20those%20things%20in%20companies.%0A%20%20%0A%20%20%0A%20%20%0A%20%20%0A%0AVideo%20Blog%2012-19-2008%20%7C%20The%20question%20of%20Scale%20%26amp%3B%20Social%20Media%20for%20B&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=201&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.shareaholic.com/api/share/?title=Video%3A+Social+Media+in+Corporations+-+and+The+Quesiton+of+Scale&amp;link=http://briantroy.com/blog/2008/12/19/video-social-media-in-corporations-and-the-quesiton-of-scale/&amp;notes=David%20Alston%20of%20Radian6%20stopped%20by%20yesterday%20and%20commented%20on%20this%20post.%0AThis%20video%20is%20a%20detailed%20explanation%20of%20my%20views%20on%20Social%20Media%2C%20Brand%20Monitoring%2C%20and%20operationalizing%20and%20scaling%20those%20things%20in%20companies.%0A%20%20%0A%20%20%0A%20%20%0A%20%20%0A%0AVideo%20Blog%2012-19-2008%20%7C%20The%20question%20of%20Scale%20%26amp%3B%20Social%20Media%20for%20B&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=38&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-twitter">
			<a href="http://www.shareaholic.com/api/share/?title=Video%3A+Social+Media+in+Corporations+-+and+The+Quesiton+of+Scale&amp;link=http://briantroy.com/blog/2008/12/19/video-social-media-in-corporations-and-the-quesiton-of-scale/&amp;notes=David%20Alston%20of%20Radian6%20stopped%20by%20yesterday%20and%20commented%20on%20this%20post.%0AThis%20video%20is%20a%20detailed%20explanation%20of%20my%20views%20on%20Social%20Media%2C%20Brand%20Monitoring%2C%20and%20operationalizing%20and%20scaling%20those%20things%20in%20companies.%0A%20%20%0A%20%20%0A%20%20%0A%20%20%0A%0AVideo%20Blog%2012-19-2008%20%7C%20The%20question%20of%20Scale%20%26amp%3B%20Social%20Media%20for%20B&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=%2524%257Btitle%257D%2B-%2B%2524%257Bshort_link%257D&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul><div style="clear: both;"></div><div class="shr-getshr" style="visibility:hidden;font-size:10px !important"><a target="_blank" href="http://www.shareaholic.com/?src=pub">Get Shareaholic</a></div><div style="clear: both;"></div></div>

]]></content:encoded>
			<wfw:commentRss>http://briantroy.com/blog/2008/12/19/video-social-media-in-corporations-and-the-quesiton-of-scale/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Track coming back? JustSignal re-launch update.</title>
		<link>http://briantroy.com/blog/2008/12/17/track-coming-back-justsignal-re-launch-update/</link>
		<comments>http://briantroy.com/blog/2008/12/17/track-coming-back-justsignal-re-launch-update/#comments</comments>
		<pubDate>Thu, 18 Dec 2008 00:49:44 +0000</pubDate>
		<dc:creator>briantroy</dc:creator>
				<category><![CDATA[cosinity]]></category>
		<category><![CDATA[Emerging Technology Practice]]></category>
		<category><![CDATA[JustSignal]]></category>
		<category><![CDATA[social media]]></category>
		<category><![CDATA[track]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://briantroy.com/blog/2008/12/17/track-coming-back-justsignal-re-launch-update/</guid>
		<description><![CDATA[Another cold medication induced video blog today. Video Blog &#8211; 12-17-2008 &#124; Track News and JustSignal Re-Launch from Brian Roy on Vimeo. Link to Steve Gillmor&#8217;s post on Twitter Track By the way&#8230; however Vimeo selects the static frame that shows before you press play&#8230; It isn&#8217;t working for me. Share this on del.icio.us Digg [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fbriantroy.com%2Fblog%2F2008%2F12%2F17%2Ftrack-coming-back-justsignal-re-launch-update%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fbriantroy.com%2Fblog%2F2008%2F12%2F17%2Ftrack-coming-back-justsignal-re-launch-update%2F&amp;source=briantroy&amp;style=normal&amp;service=bit.ly&amp;service_api=justsignal%3AR_626c052845111fc600be065fde2532eb&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Another cold medication induced video blog today.</p>
<p>
<object width="400" height="300"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=2558674&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=2558674&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="400" height="300" /><br />
</object><br />
<a href="http://vimeo.com/2558674">Video Blog &#8211; 12-17-2008 | Track News and JustSignal Re-Launch</a> from <a href="http://vimeo.com/user1047620">Brian Roy</a> on <a href="http://vimeo.com">Vimeo</a>.<br />
<a href="http://www.techcrunchit.com/2008/12/17/why-track-will-be-back-fred-wilson-says-so/">Link to Steve Gillmor&#8217;s post on Twitter Track</a><br />
By the way&#8230; however Vimeo selects the static frame that shows before you press play&#8230; It isn&#8217;t working for me.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://www.shareaholic.com/api/share/?title=Track+coming+back%3F+JustSignal+re-launch+update.&amp;link=http://briantroy.com/blog/2008/12/17/track-coming-back-justsignal-re-launch-update/&amp;notes=Another%20cold%20medication%20induced%20video%20blog%20today.%0A%0A%20%20%0A%20%20%0A%20%20%0A%20%20%0A%0AVideo%20Blog%20-%2012-17-2008%20%7C%20Track%20News%20and%20JustSignal%20Re-Launch%20from%20Brian%20Roy%20on%20Vimeo.%0ALink%20to%20Steve%20Gillmor%27s%20post%20on%20Twitter%20Track%0ABy%20the%20way...%20however%20Vimeo%20selects%20the%20static%20frame%20that%20shows%20before%20you%20press%20play...%20It%20isn%27t%20worki&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=2&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://www.shareaholic.com/api/share/?title=Track+coming+back%3F+JustSignal+re-launch+update.&amp;link=http://briantroy.com/blog/2008/12/17/track-coming-back-justsignal-re-launch-update/&amp;notes=Another%20cold%20medication%20induced%20video%20blog%20today.%0A%0A%20%20%0A%20%20%0A%20%20%0A%20%20%0A%0AVideo%20Blog%20-%2012-17-2008%20%7C%20Track%20News%20and%20JustSignal%20Re-Launch%20from%20Brian%20Roy%20on%20Vimeo.%0ALink%20to%20Steve%20Gillmor%27s%20post%20on%20Twitter%20Track%0ABy%20the%20way...%20however%20Vimeo%20selects%20the%20static%20frame%20that%20shows%20before%20you%20press%20play...%20It%20isn%27t%20worki&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=3&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-evernote">
			<a href="http://www.shareaholic.com/api/share/?title=Track+coming+back%3F+JustSignal+re-launch+update.&amp;link=http://briantroy.com/blog/2008/12/17/track-coming-back-justsignal-re-launch-update/&amp;notes=Another%20cold%20medication%20induced%20video%20blog%20today.%0A%0A%20%20%0A%20%20%0A%20%20%0A%20%20%0A%0AVideo%20Blog%20-%2012-17-2008%20%7C%20Track%20News%20and%20JustSignal%20Re-Launch%20from%20Brian%20Roy%20on%20Vimeo.%0ALink%20to%20Steve%20Gillmor%27s%20post%20on%20Twitter%20Track%0ABy%20the%20way...%20however%20Vimeo%20selects%20the%20static%20frame%20that%20shows%20before%20you%20press%20play...%20It%20isn%27t%20worki&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=191&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Clip this to Evernote">Clip this to Evernote</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.shareaholic.com/api/share/?title=Track+coming+back%3F+JustSignal+re-launch+update.&amp;link=http://briantroy.com/blog/2008/12/17/track-coming-back-justsignal-re-launch-update/&amp;notes=Another%20cold%20medication%20induced%20video%20blog%20today.%0A%0A%20%20%0A%20%20%0A%20%20%0A%20%20%0A%0AVideo%20Blog%20-%2012-17-2008%20%7C%20Track%20News%20and%20JustSignal%20Re-Launch%20from%20Brian%20Roy%20on%20Vimeo.%0ALink%20to%20Steve%20Gillmor%27s%20post%20on%20Twitter%20Track%0ABy%20the%20way...%20however%20Vimeo%20selects%20the%20static%20frame%20that%20shows%20before%20you%20press%20play...%20It%20isn%27t%20worki&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=5&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.shareaholic.com/api/share/?title=Track+coming+back%3F+JustSignal+re-launch+update.&amp;link=http://briantroy.com/blog/2008/12/17/track-coming-back-justsignal-re-launch-update/&amp;notes=Another%20cold%20medication%20induced%20video%20blog%20today.%0A%0A%20%20%0A%20%20%0A%20%20%0A%20%20%0A%0AVideo%20Blog%20-%2012-17-2008%20%7C%20Track%20News%20and%20JustSignal%20Re-Launch%20from%20Brian%20Roy%20on%20Vimeo.%0ALink%20to%20Steve%20Gillmor%27s%20post%20on%20Twitter%20Track%0ABy%20the%20way...%20however%20Vimeo%20selects%20the%20static%20frame%20that%20shows%20before%20you%20press%20play...%20It%20isn%27t%20worki&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=257&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.shareaholic.com/api/share/?title=Track+coming+back%3F+JustSignal+re-launch+update.&amp;link=http://briantroy.com/blog/2008/12/17/track-coming-back-justsignal-re-launch-update/&amp;notes=Another%20cold%20medication%20induced%20video%20blog%20today.%0A%0A%20%20%0A%20%20%0A%20%20%0A%20%20%0A%0AVideo%20Blog%20-%2012-17-2008%20%7C%20Track%20News%20and%20JustSignal%20Re-Launch%20from%20Brian%20Roy%20on%20Vimeo.%0ALink%20to%20Steve%20Gillmor%27s%20post%20on%20Twitter%20Track%0ABy%20the%20way...%20however%20Vimeo%20selects%20the%20static%20frame%20that%20shows%20before%20you%20press%20play...%20It%20isn%27t%20worki&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=207&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.shareaholic.com/api/share/?title=Track+coming+back%3F+JustSignal+re-launch+update.&amp;link=http://briantroy.com/blog/2008/12/17/track-coming-back-justsignal-re-launch-update/&amp;notes=Another%20cold%20medication%20induced%20video%20blog%20today.%0A%0A%20%20%0A%20%20%0A%20%20%0A%20%20%0A%0AVideo%20Blog%20-%2012-17-2008%20%7C%20Track%20News%20and%20JustSignal%20Re-Launch%20from%20Brian%20Roy%20on%20Vimeo.%0ALink%20to%20Steve%20Gillmor%27s%20post%20on%20Twitter%20Track%0ABy%20the%20way...%20however%20Vimeo%20selects%20the%20static%20frame%20that%20shows%20before%20you%20press%20play...%20It%20isn%27t%20worki&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=88&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-mail">
			<a href="http://www.shareaholic.com/api/share/?title=Track%20coming%20back%3F%20JustSignal%20re-launch%20update.&amp;link=http://briantroy.com/blog/2008/12/17/track-coming-back-justsignal-re-launch-update/&amp;notes=Another%20cold%20medication%20induced%20video%20blog%20today.%0A%0A%20%20%0A%20%20%0A%20%20%0A%20%20%0A%0AVideo%20Blog%20-%2012-17-2008%20%7C%20Track%20News%20and%20JustSignal%20Re-Launch%20from%20Brian%20Roy%20on%20Vimeo.%0ALink%20to%20Steve%20Gillmor%27s%20post%20on%20Twitter%20Track%0ABy%20the%20way...%20however%20Vimeo%20selects%20the%20static%20frame%20that%20shows%20before%20you%20press%20play...%20It%20isn%27t%20worki&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=201&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.shareaholic.com/api/share/?title=Track+coming+back%3F+JustSignal+re-launch+update.&amp;link=http://briantroy.com/blog/2008/12/17/track-coming-back-justsignal-re-launch-update/&amp;notes=Another%20cold%20medication%20induced%20video%20blog%20today.%0A%0A%20%20%0A%20%20%0A%20%20%0A%20%20%0A%0AVideo%20Blog%20-%2012-17-2008%20%7C%20Track%20News%20and%20JustSignal%20Re-Launch%20from%20Brian%20Roy%20on%20Vimeo.%0ALink%20to%20Steve%20Gillmor%27s%20post%20on%20Twitter%20Track%0ABy%20the%20way...%20however%20Vimeo%20selects%20the%20static%20frame%20that%20shows%20before%20you%20press%20play...%20It%20isn%27t%20worki&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=38&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-twitter">
			<a href="http://www.shareaholic.com/api/share/?title=Track+coming+back%3F+JustSignal+re-launch+update.&amp;link=http://briantroy.com/blog/2008/12/17/track-coming-back-justsignal-re-launch-update/&amp;notes=Another%20cold%20medication%20induced%20video%20blog%20today.%0A%0A%20%20%0A%20%20%0A%20%20%0A%20%20%0A%0AVideo%20Blog%20-%2012-17-2008%20%7C%20Track%20News%20and%20JustSignal%20Re-Launch%20from%20Brian%20Roy%20on%20Vimeo.%0ALink%20to%20Steve%20Gillmor%27s%20post%20on%20Twitter%20Track%0ABy%20the%20way...%20however%20Vimeo%20selects%20the%20static%20frame%20that%20shows%20before%20you%20press%20play...%20It%20isn%27t%20worki&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=%2524%257Btitle%257D%2B-%2B%2524%257Bshort_link%257D&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul><div style="clear: both;"></div><div class="shr-getshr" style="visibility:hidden;font-size:10px !important"><a target="_blank" href="http://www.shareaholic.com/?src=pub">Get Shareaholic</a></div><div style="clear: both;"></div></div>

]]></content:encoded>
			<wfw:commentRss>http://briantroy.com/blog/2008/12/17/track-coming-back-justsignal-re-launch-update/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Paid Blog Posts &#8211; It is the 7th sign of the apocalypse.</title>
		<link>http://briantroy.com/blog/2008/12/16/paid-blog-posts-it-is-the-7th-sign-of-the-apocalypse/</link>
		<comments>http://briantroy.com/blog/2008/12/16/paid-blog-posts-it-is-the-7th-sign-of-the-apocalypse/#comments</comments>
		<pubDate>Wed, 17 Dec 2008 02:41:19 +0000</pubDate>
		<dc:creator>briantroy</dc:creator>
				<category><![CDATA[Business Model Innovation]]></category>
		<category><![CDATA[Emerging Technology Practice]]></category>
		<category><![CDATA[JustSignal]]></category>
		<category><![CDATA[paid blog posts]]></category>
		<category><![CDATA[social media]]></category>

		<guid isPermaLink="false">http://briantroy.com/blog/2008/12/16/paid-blog-posts-it-is-the-7th-sign-of-the-apocalypse/</guid>
		<description><![CDATA[Trying something new&#8230; my very first video blog post &#8211; fueled by cold medicine. Don&#8217;t say I didn&#8217;t warn you. Video Blog Post &#8211; 12-16-2008 &#124; Paid Blog Posts and JustSignal IM from Brian Roy on Vimeo. As promised here is the link to the FriendFeed Conversation about Paid Blog Posts. Here is the link [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fbriantroy.com%2Fblog%2F2008%2F12%2F16%2Fpaid-blog-posts-it-is-the-7th-sign-of-the-apocalypse%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fbriantroy.com%2Fblog%2F2008%2F12%2F16%2Fpaid-blog-posts-it-is-the-7th-sign-of-the-apocalypse%2F&amp;source=briantroy&amp;style=normal&amp;service=bit.ly&amp;service_api=justsignal%3AR_626c052845111fc600be065fde2532eb&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Trying something new&#8230; my very first video blog post &#8211; fueled by cold medicine. Don&#8217;t say I didn&#8217;t warn you.</p>
<p><object width="400" height="300"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=2548305&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=2548305&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="400" height="300" /><br />
</object><br />
<a href="http://vimeo.com/2548305">Video Blog Post &#8211; 12-16-2008 | Paid Blog Posts and JustSignal IM</a> from <a href="http://vimeo.com/user1047620">Brian Roy</a> on <a href="http://vimeo.com">Vimeo</a>.<br />
<br/><br/></p>
<p>As promised here is the link to the <a href="http://friendfeed.com/e/29efa2e1-47aa-db10-78ad-a1cabe47d6be/Are-Paid-Posts-now-acceptable-on-blogs/">FriendFeed Conversation about Paid Blog Posts</a>.</p>
<p>Here is the link to the <a href="http://www.cosinity.com:9080/forum/forums/show/13.page">JustSignal forums on cosinity.com</a></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://www.shareaholic.com/api/share/?title=Paid+Blog+Posts+-+It+is+the+7th+sign+of+the+apocalypse.&amp;link=http://briantroy.com/blog/2008/12/16/paid-blog-posts-it-is-the-7th-sign-of-the-apocalypse/&amp;notes=Trying%20something%20new...%20my%20very%20first%20video%20blog%20post%20-%20fueled%20by%20cold%20medicine.%20Don%27t%20say%20I%20didn%27t%20warn%20you.%0A%20%20%0A%20%20%0A%20%20%0A%20%20%0A%0AVideo%20Blog%20Post%20-%2012-16-2008%20%7C%20Paid%20Blog%20Posts%20and%20JustSignal%20IM%20from%20Brian%20Roy%20on%20Vimeo.%0A%0AAs%20promised%20here%20is%20the%20link%20to%20the%20FriendFeed%20Conversation%20about%20Paid%20Blog%20Posts.%0AHer&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=2&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://www.shareaholic.com/api/share/?title=Paid+Blog+Posts+-+It+is+the+7th+sign+of+the+apocalypse.&amp;link=http://briantroy.com/blog/2008/12/16/paid-blog-posts-it-is-the-7th-sign-of-the-apocalypse/&amp;notes=Trying%20something%20new...%20my%20very%20first%20video%20blog%20post%20-%20fueled%20by%20cold%20medicine.%20Don%27t%20say%20I%20didn%27t%20warn%20you.%0A%20%20%0A%20%20%0A%20%20%0A%20%20%0A%0AVideo%20Blog%20Post%20-%2012-16-2008%20%7C%20Paid%20Blog%20Posts%20and%20JustSignal%20IM%20from%20Brian%20Roy%20on%20Vimeo.%0A%0AAs%20promised%20here%20is%20the%20link%20to%20the%20FriendFeed%20Conversation%20about%20Paid%20Blog%20Posts.%0AHer&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=3&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-evernote">
			<a href="http://www.shareaholic.com/api/share/?title=Paid+Blog+Posts+-+It+is+the+7th+sign+of+the+apocalypse.&amp;link=http://briantroy.com/blog/2008/12/16/paid-blog-posts-it-is-the-7th-sign-of-the-apocalypse/&amp;notes=Trying%20something%20new...%20my%20very%20first%20video%20blog%20post%20-%20fueled%20by%20cold%20medicine.%20Don%27t%20say%20I%20didn%27t%20warn%20you.%0A%20%20%0A%20%20%0A%20%20%0A%20%20%0A%0AVideo%20Blog%20Post%20-%2012-16-2008%20%7C%20Paid%20Blog%20Posts%20and%20JustSignal%20IM%20from%20Brian%20Roy%20on%20Vimeo.%0A%0AAs%20promised%20here%20is%20the%20link%20to%20the%20FriendFeed%20Conversation%20about%20Paid%20Blog%20Posts.%0AHer&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=191&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Clip this to Evernote">Clip this to Evernote</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.shareaholic.com/api/share/?title=Paid+Blog+Posts+-+It+is+the+7th+sign+of+the+apocalypse.&amp;link=http://briantroy.com/blog/2008/12/16/paid-blog-posts-it-is-the-7th-sign-of-the-apocalypse/&amp;notes=Trying%20something%20new...%20my%20very%20first%20video%20blog%20post%20-%20fueled%20by%20cold%20medicine.%20Don%27t%20say%20I%20didn%27t%20warn%20you.%0A%20%20%0A%20%20%0A%20%20%0A%20%20%0A%0AVideo%20Blog%20Post%20-%2012-16-2008%20%7C%20Paid%20Blog%20Posts%20and%20JustSignal%20IM%20from%20Brian%20Roy%20on%20Vimeo.%0A%0AAs%20promised%20here%20is%20the%20link%20to%20the%20FriendFeed%20Conversation%20about%20Paid%20Blog%20Posts.%0AHer&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=5&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.shareaholic.com/api/share/?title=Paid+Blog+Posts+-+It+is+the+7th+sign+of+the+apocalypse.&amp;link=http://briantroy.com/blog/2008/12/16/paid-blog-posts-it-is-the-7th-sign-of-the-apocalypse/&amp;notes=Trying%20something%20new...%20my%20very%20first%20video%20blog%20post%20-%20fueled%20by%20cold%20medicine.%20Don%27t%20say%20I%20didn%27t%20warn%20you.%0A%20%20%0A%20%20%0A%20%20%0A%20%20%0A%0AVideo%20Blog%20Post%20-%2012-16-2008%20%7C%20Paid%20Blog%20Posts%20and%20JustSignal%20IM%20from%20Brian%20Roy%20on%20Vimeo.%0A%0AAs%20promised%20here%20is%20the%20link%20to%20the%20FriendFeed%20Conversation%20about%20Paid%20Blog%20Posts.%0AHer&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=257&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.shareaholic.com/api/share/?title=Paid+Blog+Posts+-+It+is+the+7th+sign+of+the+apocalypse.&amp;link=http://briantroy.com/blog/2008/12/16/paid-blog-posts-it-is-the-7th-sign-of-the-apocalypse/&amp;notes=Trying%20something%20new...%20my%20very%20first%20video%20blog%20post%20-%20fueled%20by%20cold%20medicine.%20Don%27t%20say%20I%20didn%27t%20warn%20you.%0A%20%20%0A%20%20%0A%20%20%0A%20%20%0A%0AVideo%20Blog%20Post%20-%2012-16-2008%20%7C%20Paid%20Blog%20Posts%20and%20JustSignal%20IM%20from%20Brian%20Roy%20on%20Vimeo.%0A%0AAs%20promised%20here%20is%20the%20link%20to%20the%20FriendFeed%20Conversation%20about%20Paid%20Blog%20Posts.%0AHer&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=207&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.shareaholic.com/api/share/?title=Paid+Blog+Posts+-+It+is+the+7th+sign+of+the+apocalypse.&amp;link=http://briantroy.com/blog/2008/12/16/paid-blog-posts-it-is-the-7th-sign-of-the-apocalypse/&amp;notes=Trying%20something%20new...%20my%20very%20first%20video%20blog%20post%20-%20fueled%20by%20cold%20medicine.%20Don%27t%20say%20I%20didn%27t%20warn%20you.%0A%20%20%0A%20%20%0A%20%20%0A%20%20%0A%0AVideo%20Blog%20Post%20-%2012-16-2008%20%7C%20Paid%20Blog%20Posts%20and%20JustSignal%20IM%20from%20Brian%20Roy%20on%20Vimeo.%0A%0AAs%20promised%20here%20is%20the%20link%20to%20the%20FriendFeed%20Conversation%20about%20Paid%20Blog%20Posts.%0AHer&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=88&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-mail">
			<a href="http://www.shareaholic.com/api/share/?title=Paid%20Blog%20Posts%20-%20It%20is%20the%207th%20sign%20of%20the%20apocalypse.&amp;link=http://briantroy.com/blog/2008/12/16/paid-blog-posts-it-is-the-7th-sign-of-the-apocalypse/&amp;notes=Trying%20something%20new...%20my%20very%20first%20video%20blog%20post%20-%20fueled%20by%20cold%20medicine.%20Don%27t%20say%20I%20didn%27t%20warn%20you.%0A%20%20%0A%20%20%0A%20%20%0A%20%20%0A%0AVideo%20Blog%20Post%20-%2012-16-2008%20%7C%20Paid%20Blog%20Posts%20and%20JustSignal%20IM%20from%20Brian%20Roy%20on%20Vimeo.%0A%0AAs%20promised%20here%20is%20the%20link%20to%20the%20FriendFeed%20Conversation%20about%20Paid%20Blog%20Posts.%0AHer&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=201&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.shareaholic.com/api/share/?title=Paid+Blog+Posts+-+It+is+the+7th+sign+of+the+apocalypse.&amp;link=http://briantroy.com/blog/2008/12/16/paid-blog-posts-it-is-the-7th-sign-of-the-apocalypse/&amp;notes=Trying%20something%20new...%20my%20very%20first%20video%20blog%20post%20-%20fueled%20by%20cold%20medicine.%20Don%27t%20say%20I%20didn%27t%20warn%20you.%0A%20%20%0A%20%20%0A%20%20%0A%20%20%0A%0AVideo%20Blog%20Post%20-%2012-16-2008%20%7C%20Paid%20Blog%20Posts%20and%20JustSignal%20IM%20from%20Brian%20Roy%20on%20Vimeo.%0A%0AAs%20promised%20here%20is%20the%20link%20to%20the%20FriendFeed%20Conversation%20about%20Paid%20Blog%20Posts.%0AHer&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=38&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-twitter">
			<a href="http://www.shareaholic.com/api/share/?title=Paid+Blog+Posts+-+It+is+the+7th+sign+of+the+apocalypse.&amp;link=http://briantroy.com/blog/2008/12/16/paid-blog-posts-it-is-the-7th-sign-of-the-apocalypse/&amp;notes=Trying%20something%20new...%20my%20very%20first%20video%20blog%20post%20-%20fueled%20by%20cold%20medicine.%20Don%27t%20say%20I%20didn%27t%20warn%20you.%0A%20%20%0A%20%20%0A%20%20%0A%20%20%0A%0AVideo%20Blog%20Post%20-%2012-16-2008%20%7C%20Paid%20Blog%20Posts%20and%20JustSignal%20IM%20from%20Brian%20Roy%20on%20Vimeo.%0A%0AAs%20promised%20here%20is%20the%20link%20to%20the%20FriendFeed%20Conversation%20about%20Paid%20Blog%20Posts.%0AHer&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=%2524%257Btitle%257D%2B-%2B%2524%257Bshort_link%257D&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul><div style="clear: both;"></div><div class="shr-getshr" style="visibility:hidden;font-size:10px !important"><a target="_blank" href="http://www.shareaholic.com/?src=pub">Get Shareaholic</a></div><div style="clear: both;"></div></div>

]]></content:encoded>
			<wfw:commentRss>http://briantroy.com/blog/2008/12/16/paid-blog-posts-it-is-the-7th-sign-of-the-apocalypse/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The myth of &#8220;everything&#8221; &#8211; Responses to my view of Track</title>
		<link>http://briantroy.com/blog/2008/11/13/the-myth-of-everything-responses-to-my-view-of-track/</link>
		<comments>http://briantroy.com/blog/2008/11/13/the-myth-of-everything-responses-to-my-view-of-track/#comments</comments>
		<pubDate>Thu, 13 Nov 2008 16:55:30 +0000</pubDate>
		<dc:creator>briantroy</dc:creator>
				<category><![CDATA[cosinity]]></category>
		<category><![CDATA[Emerging Technology Practice]]></category>
		<category><![CDATA[Experimentation]]></category>
		<category><![CDATA[Innovation]]></category>
		<category><![CDATA[The Future]]></category>
		<category><![CDATA[friendfeed]]></category>
		<category><![CDATA[identi.ca]]></category>
		<category><![CDATA[social media]]></category>
		<category><![CDATA[the myth of everything]]></category>
		<category><![CDATA[track]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://briantroy.com/blog/2008/11/13/the-myth-of-everything-responses-to-my-view-of-track/</guid>
		<description><![CDATA[My post yesterday &#8211; specifically regarding the Great Track Debate &#8211; received several responses on Twitter, identi.ca and friendfeed. Many of these &#8211; really all of them were positive &#8211; but the debate is far from settled. I learned something very important from one discussion in particular &#8211; that there is a myth that permeates [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fbriantroy.com%2Fblog%2F2008%2F11%2F13%2Fthe-myth-of-everything-responses-to-my-view-of-track%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fbriantroy.com%2Fblog%2F2008%2F11%2F13%2Fthe-myth-of-everything-responses-to-my-view-of-track%2F&amp;source=briantroy&amp;style=normal&amp;service=bit.ly&amp;service_api=justsignal%3AR_626c052845111fc600be065fde2532eb&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>My post yesterday &#8211; specifically regarding the <a href="http://briantroy.com/blog/2008/11/12/the-evolution-of-ffstream-and-the-great-track-debate/">Great Track Debate</a> &#8211; received several responses on <a href="http://twitter.com">Twitter</a>, <a href="http://identi.ca/">identi.ca</a> and <a href="http://friendfeed.com">friendfeed</a>. Many of these &#8211; really all of them were positive &#8211; but the debate is far from settled.</p>
<p>I learned something very important from one <a href="http://friendfeed.com/e/92b45bcb-1d10-ee3f-8c3a-6e117b089970/karoli-Take-a-look-at-my-blog-from-today-about/">discussion in particular</a> &#8211; that there is a myth that permeates the conversation. <span style="text-decoration: underline;"><em>The myth of &#8220;everything&#8221;</em></span>.</p>
<p>This myth is the adherence to two ideas:</p>
<ol>
<li>That somehow the &#8220;fire-hose&#8221; (<a href="http://briantroy.com/blog/2008/11/12/the-evolution-of-ffstream-and-the-great-track-debate/">as discussed here</a>) represents the complete information about any given topic &#8211; <span style="text-decoration: underline;"><em>t</em></span><em><span style="text-decoration: underline;">hat somehow the &#8220;fire-hose&#8221; is everything</span></em>.
<ol>
<li>At the root of it, this is the idea that everything is attainable.</li>
</ol>
</li>
<li>That &#8211; in order to monetize track &#8211; having everything is essential. For example, if you are trying to manage your brand you need <span style="text-decoration: underline;"><em>every reference to it in real-time</em></span>.
<ol>
<li>At the root of it, this is the idea that everything is required and valuable.</li>
</ol>
</li>
</ol>
<p>The reason I refer to these two ideas collectively as the &#8220;myth of everything&#8221; is because when they are clearly stated and examined they are immediately recognizable as inconsistent with reality.</p>
<p>So let&#8217;s take the two ideas one at a time and examine how tenuous their attachment to reality is.</p>
<p>First, that the &#8220;fire-hose&#8221; represents everything about any given topic. The fire-hose is the sum total of what is said on a given service. In order for that to be everything that service would need to be participated in by everyone. That is a hard enough hurdle to overcome, but there is more &#8211; <em>not only would it need to be everyone, it would need to be the only method by which they communicate their thoughts, ideas and feelings</em>.</p>
<p>Even if you were able to combine the fire-hose of every service available &#8211; every social networking site, every blog, every micro-blog, every IM service, every news site &#8211; you would still be far short of everything.</p>
<p>So the idea that track only becomes valuable when it can capture &#8220;everything&#8221; is a myth. <em><span style="text-decoration: underline;">Everything is unattainable</span></em>.</p>
<p>Second, that having everything is essential. Let&#8217;s suppose we were to allow that somehow everything was achievable. Even if it were would it be required? Would it provide value commensurate with the effort required to collect it?</p>
<p>Let&#8217;s evaluate this in terms of brand management. The assumption which underlies this is that it is required to respond in real time to every post which is misleading, false, or damaging. This assumption is flawed &#8211; the reality is that it is required to respond to a statistically relevant sample of those posts. You aren&#8217;t trying to refute every post &#8211; you are trying to move (or keep from moving) the average (or perhaps mean) opinion.</p>
<p>If any company were forced to staff enough positions to actively monitor and respond to every post made about them &#8211; they would immediately cease to be profitable. <em><span style="text-decoration: underline;">It isn&#8217;t scalable, and more importantly it isn&#8217;t required</span></em>.</p>
<p>This holds true equally for politics.</p>
<p>So the idea that track delivers value because having access to everything is required and the primary driver of value is a myth. <em><span style="text-decoration: underline;">Everything</span></em> <em><span style="text-decoration: underline;">is neither required nor valuable in real terms</span></em>.</p>
<p><strong><em>What the track community should be focused on &#8211; again IMHO &#8211; is not the fire-hose and the attendant myth of everything, but creating systems which can attain enough trackable scope to provide a statistically relevant sample of the posts in the social media universe.</em></strong></p>
<p>I understand that, emotionally, it feels good to tap into some perceived &#8220;everything&#8221; and refute any and all posts that you think are misleading, false, biased, or offensive. But this isn&#8217;t about what feels good &#8211; at the end of the day it will be about what is effective. And to be effective everything is neither required nor valuable.</p>
<p>These two conclusions &#8211; that everything is unattainable and that &#8211; even if attained &#8211; is neither required nor valuable should allow us to dispense with the &#8220;myth of everything&#8221; and return to the point of track:</p>
<ol>
<li>Real-Time Information Discovery</li>
<li>Real-Time Participation</li>
</ol>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://www.shareaholic.com/api/share/?title=The+myth+of+%22everything%22+-+Responses+to+my+view+of+Track&amp;link=http://briantroy.com/blog/2008/11/13/the-myth-of-everything-responses-to-my-view-of-track/&amp;notes=My%20post%20yesterday%20-%20specifically%20regarding%20the%20Great%20Track%20Debate%20-%20received%20several%20responses%20on%20Twitter%2C%20identi.ca%20and%20friendfeed.%20Many%20of%20these%20-%20really%20all%20of%20them%20were%20positive%20-%20but%20the%20debate%20is%20far%20from%20settled.%0AI%20learned%20something%20very%20important%20from%20one%20discussion%20in%20particular%20-%20that%20ther&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=2&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://www.shareaholic.com/api/share/?title=The+myth+of+%22everything%22+-+Responses+to+my+view+of+Track&amp;link=http://briantroy.com/blog/2008/11/13/the-myth-of-everything-responses-to-my-view-of-track/&amp;notes=My%20post%20yesterday%20-%20specifically%20regarding%20the%20Great%20Track%20Debate%20-%20received%20several%20responses%20on%20Twitter%2C%20identi.ca%20and%20friendfeed.%20Many%20of%20these%20-%20really%20all%20of%20them%20were%20positive%20-%20but%20the%20debate%20is%20far%20from%20settled.%0AI%20learned%20something%20very%20important%20from%20one%20discussion%20in%20particular%20-%20that%20ther&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=3&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-evernote">
			<a href="http://www.shareaholic.com/api/share/?title=The+myth+of+%22everything%22+-+Responses+to+my+view+of+Track&amp;link=http://briantroy.com/blog/2008/11/13/the-myth-of-everything-responses-to-my-view-of-track/&amp;notes=My%20post%20yesterday%20-%20specifically%20regarding%20the%20Great%20Track%20Debate%20-%20received%20several%20responses%20on%20Twitter%2C%20identi.ca%20and%20friendfeed.%20Many%20of%20these%20-%20really%20all%20of%20them%20were%20positive%20-%20but%20the%20debate%20is%20far%20from%20settled.%0AI%20learned%20something%20very%20important%20from%20one%20discussion%20in%20particular%20-%20that%20ther&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=191&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Clip this to Evernote">Clip this to Evernote</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.shareaholic.com/api/share/?title=The+myth+of+%22everything%22+-+Responses+to+my+view+of+Track&amp;link=http://briantroy.com/blog/2008/11/13/the-myth-of-everything-responses-to-my-view-of-track/&amp;notes=My%20post%20yesterday%20-%20specifically%20regarding%20the%20Great%20Track%20Debate%20-%20received%20several%20responses%20on%20Twitter%2C%20identi.ca%20and%20friendfeed.%20Many%20of%20these%20-%20really%20all%20of%20them%20were%20positive%20-%20but%20the%20debate%20is%20far%20from%20settled.%0AI%20learned%20something%20very%20important%20from%20one%20discussion%20in%20particular%20-%20that%20ther&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=5&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.shareaholic.com/api/share/?title=The+myth+of+%22everything%22+-+Responses+to+my+view+of+Track&amp;link=http://briantroy.com/blog/2008/11/13/the-myth-of-everything-responses-to-my-view-of-track/&amp;notes=My%20post%20yesterday%20-%20specifically%20regarding%20the%20Great%20Track%20Debate%20-%20received%20several%20responses%20on%20Twitter%2C%20identi.ca%20and%20friendfeed.%20Many%20of%20these%20-%20really%20all%20of%20them%20were%20positive%20-%20but%20the%20debate%20is%20far%20from%20settled.%0AI%20learned%20something%20very%20important%20from%20one%20discussion%20in%20particular%20-%20that%20ther&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=257&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.shareaholic.com/api/share/?title=The+myth+of+%22everything%22+-+Responses+to+my+view+of+Track&amp;link=http://briantroy.com/blog/2008/11/13/the-myth-of-everything-responses-to-my-view-of-track/&amp;notes=My%20post%20yesterday%20-%20specifically%20regarding%20the%20Great%20Track%20Debate%20-%20received%20several%20responses%20on%20Twitter%2C%20identi.ca%20and%20friendfeed.%20Many%20of%20these%20-%20really%20all%20of%20them%20were%20positive%20-%20but%20the%20debate%20is%20far%20from%20settled.%0AI%20learned%20something%20very%20important%20from%20one%20discussion%20in%20particular%20-%20that%20ther&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=207&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.shareaholic.com/api/share/?title=The+myth+of+%22everything%22+-+Responses+to+my+view+of+Track&amp;link=http://briantroy.com/blog/2008/11/13/the-myth-of-everything-responses-to-my-view-of-track/&amp;notes=My%20post%20yesterday%20-%20specifically%20regarding%20the%20Great%20Track%20Debate%20-%20received%20several%20responses%20on%20Twitter%2C%20identi.ca%20and%20friendfeed.%20Many%20of%20these%20-%20really%20all%20of%20them%20were%20positive%20-%20but%20the%20debate%20is%20far%20from%20settled.%0AI%20learned%20something%20very%20important%20from%20one%20discussion%20in%20particular%20-%20that%20ther&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=88&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-mail">
			<a href="http://www.shareaholic.com/api/share/?title=The%20myth%20of%20%22everything%22%20-%20Responses%20to%20my%20view%20of%20Track&amp;link=http://briantroy.com/blog/2008/11/13/the-myth-of-everything-responses-to-my-view-of-track/&amp;notes=My%20post%20yesterday%20-%20specifically%20regarding%20the%20Great%20Track%20Debate%20-%20received%20several%20responses%20on%20Twitter%2C%20identi.ca%20and%20friendfeed.%20Many%20of%20these%20-%20really%20all%20of%20them%20were%20positive%20-%20but%20the%20debate%20is%20far%20from%20settled.%0AI%20learned%20something%20very%20important%20from%20one%20discussion%20in%20particular%20-%20that%20ther&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=201&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.shareaholic.com/api/share/?title=The+myth+of+%22everything%22+-+Responses+to+my+view+of+Track&amp;link=http://briantroy.com/blog/2008/11/13/the-myth-of-everything-responses-to-my-view-of-track/&amp;notes=My%20post%20yesterday%20-%20specifically%20regarding%20the%20Great%20Track%20Debate%20-%20received%20several%20responses%20on%20Twitter%2C%20identi.ca%20and%20friendfeed.%20Many%20of%20these%20-%20really%20all%20of%20them%20were%20positive%20-%20but%20the%20debate%20is%20far%20from%20settled.%0AI%20learned%20something%20very%20important%20from%20one%20discussion%20in%20particular%20-%20that%20ther&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=38&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-twitter">
			<a href="http://www.shareaholic.com/api/share/?title=The+myth+of+%22everything%22+-+Responses+to+my+view+of+Track&amp;link=http://briantroy.com/blog/2008/11/13/the-myth-of-everything-responses-to-my-view-of-track/&amp;notes=My%20post%20yesterday%20-%20specifically%20regarding%20the%20Great%20Track%20Debate%20-%20received%20several%20responses%20on%20Twitter%2C%20identi.ca%20and%20friendfeed.%20Many%20of%20these%20-%20really%20all%20of%20them%20were%20positive%20-%20but%20the%20debate%20is%20far%20from%20settled.%0AI%20learned%20something%20very%20important%20from%20one%20discussion%20in%20particular%20-%20that%20ther&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=%2524%257Btitle%257D%2B-%2B%2524%257Bshort_link%257D&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul><div style="clear: both;"></div><div class="shr-getshr" style="visibility:hidden;font-size:10px !important"><a target="_blank" href="http://www.shareaholic.com/?src=pub">Get Shareaholic</a></div><div style="clear: both;"></div></div>

]]></content:encoded>
			<wfw:commentRss>http://briantroy.com/blog/2008/11/13/the-myth-of-everything-responses-to-my-view-of-track/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>The evolution of FFStream and the Great Track Debate</title>
		<link>http://briantroy.com/blog/2008/11/12/the-evolution-of-ffstream-and-the-great-track-debate/</link>
		<comments>http://briantroy.com/blog/2008/11/12/the-evolution-of-ffstream-and-the-great-track-debate/#comments</comments>
		<pubDate>Wed, 12 Nov 2008 21:27:15 +0000</pubDate>
		<dc:creator>briantroy</dc:creator>
				<category><![CDATA[cosinity]]></category>
		<category><![CDATA[Emerging Technology Practice]]></category>
		<category><![CDATA[Experimentation]]></category>
		<category><![CDATA[Innovation]]></category>
		<category><![CDATA[The Future]]></category>
		<category><![CDATA[friendfeed]]></category>
		<category><![CDATA[information discovery]]></category>
		<category><![CDATA[social media]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[useful technology]]></category>
		<category><![CDATA[walled garden]]></category>

		<guid isPermaLink="false">http://briantroy.com/blog/2008/11/12/the-evolution-of-ffstream-and-the-great-track-debate/</guid>
		<description><![CDATA[As those of you who follow me on twitter or friendfeed know FFStream &#8211; which I began discussing in this post &#8211; has evolved into FF-Filtered. The changes are not dramatic, but they are significant. FF-Filtered is now focused on providing &#8220;your friendfeed &#8211; filtered&#8221; &#8211; and as that implies what it does is filter [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fbriantroy.com%2Fblog%2F2008%2F11%2F12%2Fthe-evolution-of-ffstream-and-the-great-track-debate%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fbriantroy.com%2Fblog%2F2008%2F11%2F12%2Fthe-evolution-of-ffstream-and-the-great-track-debate%2F&amp;source=briantroy&amp;style=normal&amp;service=bit.ly&amp;service_api=justsignal%3AR_626c052845111fc600be065fde2532eb&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://ff-filtered.cosinity.com"><img src="http://briantroy.com/blog/wp-content/uploads/2008/11/ff-filtered-twitter.png" alt="ff-filtered-twitter.png" width="254" height="57" /></a>As those of you who follow me on <a href="http://twitter.com/briantroy">twitter</a> or <a href="http://friendfeed.com/briantroy">friendfeed</a> know FFStream &#8211; which I began discussing in <a href="http://briantroy.com/blog/2008/10/25/friendfeed-to-xmpp-bridge-why-how-and-the-plan/">this post</a> &#8211; has evolved into FF-Filtered. The changes are not dramatic, but they are significant.</p>
<p>FF-Filtered is now focused on providing &#8220;your friendfeed &#8211; filtered&#8221; &#8211; and as that implies what it does is filter your friendfeed (home feed to be specific) by a list of keywords. If these keywords match the post title, comment, or user you receive the update in real time &#8211; in the browser or via IM, including GTalk, Jabber, AIM and Yahoo.</p>
<p>It isn&#8217;t track &#8211; as I&#8217;ve been repeatedly and vehemently told by the &#8220;community&#8221; over the last 5 days &#8211; more on that later.</p>
<p>Additionally &#8211; for the mobility set &#8211; we&#8217;ve added like, comment, post and filter updates via a mobile web page. If you click on the link in the IM from a mobile platform you get the following mobile web page:</p>
<p><img src="http://briantroy.com/blog/wp-content/uploads/2008/11/img-0001.png" alt="IMG_0001.PNG" width="320" height="480" /></p>
<p>I&#8217;ve got a few more tricks up my sleeve &#8211; so look for more changes this week including a name change.</p>
<p>Now for the second half of the post&#8230; I&#8217;m going to talk about Track again&#8230; so sharpen your knives (or tongues) and get ready to revel in your abject disdain for my refusal to &#8220;go along&#8221; or shut up.</p>
<p>Let me say one thing first &#8211; if you want to attack my positions and opinions go for it. If you are here to attack my motives or me personally &#8211; GO AWAY NOW.</p>
<p>The last 5 days has been very illuminating for me &#8211; both in terms of the fervor of the &#8220;track community&#8221; and in terms of their point of view &#8211; which at times verges on dogma.</p>
<p>Let me attempt to &#8220;play back&#8221; what I&#8217;ve heard and then explain &#8211; as clearly as possible given my limited skills &#8211; my point of view.</p>
<p>Track &#8211; by the definition of the &#8220;track community&#8221; as led today by Steve Gillmor of Gillmor Gang/News Gang Live, is defined by the &#8220;fire-hose&#8221;. This fire-hose is the complete unabridged stream of posts occurring on any social media site. In the case of Twitter, this is the entire public timeline published in real time.</p>
<p>This is an important distinction &#8211; because it states that &#8220;track&#8221; can not be achieved without the &#8220;fire-hose&#8221;. More on this latter.</p>
<p>The second component of &#8220;track&#8221; is the ability to keyword filter the real time stream and deliver the filtered content in real (or near real) time.</p>
<p>The third component of &#8220;track&#8221; is the ability to insert posts into the public timeline from the same user interface you are viewing the stream in.</p>
<p>Those four things collectively comprise the &#8220;holy grail&#8221; of track.</p>
<p>I&#8217;m sure you will all let me know exactly how wrong I am&#8230; but I think those four capture the broad brushstrokes. Ok?</p>
<p>Before I attempt to explain my point of view &#8211; let me clarify one point. Regardless of my agreement or disagreement with the track community on any given point, there is one thing we vehemently agree on:</p>
<p><strong><span style="text-decoration: underline;">There is massive value in the ability to discover and participate in the social media stream in real (or near) real time. Our objective where that is concerned is the same.</span></strong></p>
<p>When I consider track &#8211; I consider it in terms of the problems it attempts to solve. To me, track is an attempt to solve 2 very important problems:</p>
<ol>
<li>Real-Time Information Discovery</li>
<li>Real-Time Participation</li>
</ol>
<p>Any solution which solves those two problems would &#8211; by my definition &#8211; fall within the scope of a &#8220;track&#8221; service.</p>
<p>Now let me explain why (take a deep breath&#8230; you can throw something at me later). Where I differ with the &#8220;track community&#8221; on this issue is on the <span style="text-decoration: underline;">scope of the track-able data</span> not what happens after the &#8220;track service&#8221; receives it. As importantly I fundamentally agree that the wider the scope of the data being tracked the more effective the track solution will be.</p>
<p>But, consider this &#8211; not every user wants to track the entire social media universe. To the contrary &#8211; most IMHO simply want to track their friends, family, co-workers, brand, market makers, influencers, power users, etc.</p>
<p>For those users a limited scope is a good thing. Beyond consideration of the scope of the data being tracked this service solves the exact same problems.</p>
<ol>
<li>Real-Time Information Discovery</li>
<li>Real-Time Participation</li>
</ol>
<p>So apply the duck test. It walks like a duck&#8230; it quacks like a duck&#8230; why isn&#8217;t it a duck?</p>
<p>It is my opinion &#8211; and you can feel free to take issue with it &#8211; that the track communities&#8217; obsession with the &#8220;fire-hose&#8221; has actually retarded the growth of alternative track services. The obsession with scope has prevented the creation of useful (if limited by their limited trackable data) solutions under the banner of track &#8211; and that is a shame.</p>
<p>Every developer that seeks to solve the two problems should be embraced, encouraged and supported.</p>
<p>The real battle here is one of leverage. And the way to get the social media services to both open up their data and participate in the creation of a standard for doing so is to create a win-win. I believe track services that are useful and solve real problems (e.g., real-time brand monitoring) can and will provide the leverage that causes the change the community has been seeking.</p>
<p>If Twitter wants to pretend they ARE the social media universe &#8211; let them. It is abundantly clear from the success of friendfeed that no single service is or will be the social media universe &#8211; any service that ignores this will fail.</p>
<p>When compelling and broadly adopted services exist, which demand real-time un-scoped access to multiple underlying services, the individual services will have no choice but to &#8220;open their kimono&#8221; or face massive user defection.</p>
<p>So stop complaining about the lack of a &#8220;fire-hose&#8221; and figure out what those services are, who needs them the most, and how to drive that value to as many users as fast as possible. If you do that &#8211; you&#8217;ll get what you want&#8230; not today, not even tomorrow&#8230; but relatively soon.</p>
<p>I had intended to discuss standards, what I believe the high level components of an open track environment might look like, and why friendfeed is in the best position to lead standard development&#8230; but this has already gotten too long. I&#8217;ll set those subjects aside for another day.</p>
<p>If you&#8217;ve disagreed with everything else I&#8217;ve said &#8211; please remember &#8211; I share your goal. I&#8217;m not saying the outcome you seek isn&#8217;t valuable &#8211; I am just proposing a different course of action. I hope I&#8217;ve done so respectfully and without denigrating anyone or their point of view.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://www.shareaholic.com/api/share/?title=The+evolution+of+FFStream+and+the+Great+Track+Debate&amp;link=http://briantroy.com/blog/2008/11/12/the-evolution-of-ffstream-and-the-great-track-debate/&amp;notes=As%20those%20of%20you%20who%20follow%20me%20on%20twitter%20or%20friendfeed%20know%20FFStream%20-%20which%20I%20began%20discussing%20in%20this%20post%20-%20has%20evolved%20into%20FF-Filtered.%20The%20changes%20are%20not%20dramatic%2C%20but%20they%20are%20significant.%0D%0A%0D%0AFF-Filtered%20is%20now%20focused%20on%20providing%20%22your%20friendfeed%20-%20filtered%22%20-%20and%20as%20that%20implies%20what%20it%20d&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=2&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://www.shareaholic.com/api/share/?title=The+evolution+of+FFStream+and+the+Great+Track+Debate&amp;link=http://briantroy.com/blog/2008/11/12/the-evolution-of-ffstream-and-the-great-track-debate/&amp;notes=As%20those%20of%20you%20who%20follow%20me%20on%20twitter%20or%20friendfeed%20know%20FFStream%20-%20which%20I%20began%20discussing%20in%20this%20post%20-%20has%20evolved%20into%20FF-Filtered.%20The%20changes%20are%20not%20dramatic%2C%20but%20they%20are%20significant.%0D%0A%0D%0AFF-Filtered%20is%20now%20focused%20on%20providing%20%22your%20friendfeed%20-%20filtered%22%20-%20and%20as%20that%20implies%20what%20it%20d&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=3&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-evernote">
			<a href="http://www.shareaholic.com/api/share/?title=The+evolution+of+FFStream+and+the+Great+Track+Debate&amp;link=http://briantroy.com/blog/2008/11/12/the-evolution-of-ffstream-and-the-great-track-debate/&amp;notes=As%20those%20of%20you%20who%20follow%20me%20on%20twitter%20or%20friendfeed%20know%20FFStream%20-%20which%20I%20began%20discussing%20in%20this%20post%20-%20has%20evolved%20into%20FF-Filtered.%20The%20changes%20are%20not%20dramatic%2C%20but%20they%20are%20significant.%0D%0A%0D%0AFF-Filtered%20is%20now%20focused%20on%20providing%20%22your%20friendfeed%20-%20filtered%22%20-%20and%20as%20that%20implies%20what%20it%20d&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=191&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Clip this to Evernote">Clip this to Evernote</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.shareaholic.com/api/share/?title=The+evolution+of+FFStream+and+the+Great+Track+Debate&amp;link=http://briantroy.com/blog/2008/11/12/the-evolution-of-ffstream-and-the-great-track-debate/&amp;notes=As%20those%20of%20you%20who%20follow%20me%20on%20twitter%20or%20friendfeed%20know%20FFStream%20-%20which%20I%20began%20discussing%20in%20this%20post%20-%20has%20evolved%20into%20FF-Filtered.%20The%20changes%20are%20not%20dramatic%2C%20but%20they%20are%20significant.%0D%0A%0D%0AFF-Filtered%20is%20now%20focused%20on%20providing%20%22your%20friendfeed%20-%20filtered%22%20-%20and%20as%20that%20implies%20what%20it%20d&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=5&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.shareaholic.com/api/share/?title=The+evolution+of+FFStream+and+the+Great+Track+Debate&amp;link=http://briantroy.com/blog/2008/11/12/the-evolution-of-ffstream-and-the-great-track-debate/&amp;notes=As%20those%20of%20you%20who%20follow%20me%20on%20twitter%20or%20friendfeed%20know%20FFStream%20-%20which%20I%20began%20discussing%20in%20this%20post%20-%20has%20evolved%20into%20FF-Filtered.%20The%20changes%20are%20not%20dramatic%2C%20but%20they%20are%20significant.%0D%0A%0D%0AFF-Filtered%20is%20now%20focused%20on%20providing%20%22your%20friendfeed%20-%20filtered%22%20-%20and%20as%20that%20implies%20what%20it%20d&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=257&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.shareaholic.com/api/share/?title=The+evolution+of+FFStream+and+the+Great+Track+Debate&amp;link=http://briantroy.com/blog/2008/11/12/the-evolution-of-ffstream-and-the-great-track-debate/&amp;notes=As%20those%20of%20you%20who%20follow%20me%20on%20twitter%20or%20friendfeed%20know%20FFStream%20-%20which%20I%20began%20discussing%20in%20this%20post%20-%20has%20evolved%20into%20FF-Filtered.%20The%20changes%20are%20not%20dramatic%2C%20but%20they%20are%20significant.%0D%0A%0D%0AFF-Filtered%20is%20now%20focused%20on%20providing%20%22your%20friendfeed%20-%20filtered%22%20-%20and%20as%20that%20implies%20what%20it%20d&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=207&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.shareaholic.com/api/share/?title=The+evolution+of+FFStream+and+the+Great+Track+Debate&amp;link=http://briantroy.com/blog/2008/11/12/the-evolution-of-ffstream-and-the-great-track-debate/&amp;notes=As%20those%20of%20you%20who%20follow%20me%20on%20twitter%20or%20friendfeed%20know%20FFStream%20-%20which%20I%20began%20discussing%20in%20this%20post%20-%20has%20evolved%20into%20FF-Filtered.%20The%20changes%20are%20not%20dramatic%2C%20but%20they%20are%20significant.%0D%0A%0D%0AFF-Filtered%20is%20now%20focused%20on%20providing%20%22your%20friendfeed%20-%20filtered%22%20-%20and%20as%20that%20implies%20what%20it%20d&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=88&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-mail">
			<a href="http://www.shareaholic.com/api/share/?title=The%20evolution%20of%20FFStream%20and%20the%20Great%20Track%20Debate&amp;link=http://briantroy.com/blog/2008/11/12/the-evolution-of-ffstream-and-the-great-track-debate/&amp;notes=As%20those%20of%20you%20who%20follow%20me%20on%20twitter%20or%20friendfeed%20know%20FFStream%20-%20which%20I%20began%20discussing%20in%20this%20post%20-%20has%20evolved%20into%20FF-Filtered.%20The%20changes%20are%20not%20dramatic%2C%20but%20they%20are%20significant.%0D%0A%0D%0AFF-Filtered%20is%20now%20focused%20on%20providing%20%22your%20friendfeed%20-%20filtered%22%20-%20and%20as%20that%20implies%20what%20it%20d&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=201&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.shareaholic.com/api/share/?title=The+evolution+of+FFStream+and+the+Great+Track+Debate&amp;link=http://briantroy.com/blog/2008/11/12/the-evolution-of-ffstream-and-the-great-track-debate/&amp;notes=As%20those%20of%20you%20who%20follow%20me%20on%20twitter%20or%20friendfeed%20know%20FFStream%20-%20which%20I%20began%20discussing%20in%20this%20post%20-%20has%20evolved%20into%20FF-Filtered.%20The%20changes%20are%20not%20dramatic%2C%20but%20they%20are%20significant.%0D%0A%0D%0AFF-Filtered%20is%20now%20focused%20on%20providing%20%22your%20friendfeed%20-%20filtered%22%20-%20and%20as%20that%20implies%20what%20it%20d&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=38&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-twitter">
			<a href="http://www.shareaholic.com/api/share/?title=The+evolution+of+FFStream+and+the+Great+Track+Debate&amp;link=http://briantroy.com/blog/2008/11/12/the-evolution-of-ffstream-and-the-great-track-debate/&amp;notes=As%20those%20of%20you%20who%20follow%20me%20on%20twitter%20or%20friendfeed%20know%20FFStream%20-%20which%20I%20began%20discussing%20in%20this%20post%20-%20has%20evolved%20into%20FF-Filtered.%20The%20changes%20are%20not%20dramatic%2C%20but%20they%20are%20significant.%0D%0A%0D%0AFF-Filtered%20is%20now%20focused%20on%20providing%20%22your%20friendfeed%20-%20filtered%22%20-%20and%20as%20that%20implies%20what%20it%20d&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=%2524%257Btitle%257D%2B-%2B%2524%257Bshort_link%257D&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul><div style="clear: both;"></div><div class="shr-getshr" style="visibility:hidden;font-size:10px !important"><a target="_blank" href="http://www.shareaholic.com/?src=pub">Get Shareaholic</a></div><div style="clear: both;"></div></div>

]]></content:encoded>
			<wfw:commentRss>http://briantroy.com/blog/2008/11/12/the-evolution-of-ffstream-and-the-great-track-debate/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>XMPP, Track and the Social Media Command Line</title>
		<link>http://briantroy.com/blog/2008/10/27/xmpp-track-and-the-social-media-command-line/</link>
		<comments>http://briantroy.com/blog/2008/10/27/xmpp-track-and-the-social-media-command-line/#comments</comments>
		<pubDate>Mon, 27 Oct 2008 17:50:02 +0000</pubDate>
		<dc:creator>briantroy</dc:creator>
				<category><![CDATA[AZ Tech]]></category>
		<category><![CDATA[Emerging Technology Practice]]></category>
		<category><![CDATA[Experimentation]]></category>
		<category><![CDATA[friendfeed]]></category>
		<category><![CDATA[information discovery]]></category>
		<category><![CDATA[social media]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[useful technology]]></category>

		<guid isPermaLink="false">http://briantroy.com/blog/2008/10/27/xmpp-track-and-the-social-media-command-line/</guid>
		<description><![CDATA[Last Friday I created a FriendFeed Real-Time bridge to XMPP. Over the weekend I&#8217;ve had several people receiving their home feed in real time over XMPP (GTalk to be specific). I also wrote a post about what I had done and what I intend to do with this going forward. One thing I heard from [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fbriantroy.com%2Fblog%2F2008%2F10%2F27%2Fxmpp-track-and-the-social-media-command-line%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fbriantroy.com%2Fblog%2F2008%2F10%2F27%2Fxmpp-track-and-the-social-media-command-line%2F&amp;source=briantroy&amp;style=normal&amp;service=bit.ly&amp;service_api=justsignal%3AR_626c052845111fc600be065fde2532eb&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Last Friday I created a <a href="http://blog.friendfeed.com/2008/10/view-your-friendfeed-in-real-time.html">FriendFeed Real-Time</a> bridge to <a href="http://xmpp.org/">XMPP</a>. Over the weekend I&#8217;ve had several people receiving their home feed in real time over XMPP (<a href="http://www.google.com/talk/#utm_campaign=en&amp;utm_source=en-ha-na-us-bk&amp;utm_medium=ha&amp;utm_term=google%20talk">GTalk</a> to be specific). I also <a href="http://briantroy.com/blog/2008/10/25/friendfeed-to-xmpp-bridge-why-how-and-the-plan/">wrote a post</a> about what I had done and what I intend to do with this going forward.</p>
<p>One thing I heard from the initial testers was the desire to &#8220;make it work like Track&#8221;. Consequently &#8211; I&#8217;ve spent quite a few mental cycles this weekend thinking about <a href="http://blog.twitter.com/2007/09/tracking-twitter.html">Track (as deployed by Twitter)</a> and how that might work for FriendFeed Streams.</p>
<p>There are three basic components of Track</p>
<ol>
<li>The ability to track keywords (topics) and receive any tweets containing those keywords.</li>
<li>The ability to post a new tweet.</li>
<li>All interaction happens via IM (XMPP to be specific).</li>
</ol>
<p>As I thought about these three basic components &#8211; and how they might be implemented for FriendFeed Streams I quickly realized that Twitter and FriendFeed are very different &#8211; and those differences have a huge impact on &#8220;Track&#8221; for FriendFeed Streams.</p>
<p>Let&#8217;s first consider the nature of Twitter.</p>
<p>Twitter is a stream of stateless tweets. Each tweet is an independent entity &#8211; bearing no relation to any other tweet in the timeline. Tweets only have relationships to the user that sent the tweet and, optionally, the user the tweet was directed at &#8211; via a @ reply. However, even those @ replies are simply stateless tweets &#8211; existing as an independent entity in the timeline.</p>
<p>It is that fundamental nature of Twitter that makes Track interesting &#8211; and to a certain extent possible. Since all tweets exist as stateless peer entities in a universal timeline &#8211; Twitter essentially creates a <span style="font-weight: bold; font-style: italic;">stateless stream of tweets</span>. Track works by scanning and filtering this stream and injecting tweets into this stream.</p>
<p>Now let&#8217;s consider the nature of FriendFeed.</p>
<p>FriendFeed is a social media aggregator. It contains posts created organically (via the create post button in the FriendFeed interface) or via any number of aggregation channels (blogs, RSS Feeds, Twitter, Disqus, Flickr, etc). Each of these posts exist as state-full peer entities on the timeline.</p>
<p>FriendFeed posts are state-full because they exist as containers. They contain a separate groups of entities &#8211; Likes and Comments. Likes and Comments change change the state of the Post &#8211; and by doing so change the posts place in the timeline. For Example &#8211; If I comment on a 4 day old post it will move to the top of the timeline.</p>
<p>The Post as a container creates a conversation. This concept &#8211; the conversation &#8211; is totally foreign to Twitter.</p>
<p>FriendFeed, then, creates a state-full stream of conversations. Conversations appear in the stream one or more times &#8211; each time they are created or added to via a Like or Comment.</p>
<p>Now that we understand how Twitter and FriendFeed are similar and differ we can re-visit Track.</p>
<ol>
<li>The ability to track keywords (topics) and receive any tweets containing those keywords.</li>
<li>The ability to post a new tweet.</li>
<li>All interaction happens via IM (XMPP to be specific).</li>
</ol>
<p>What is clear is that component #1 above is still viable and makes sense. It was the fundamental reason I chose to build FFStream. It still solves the problem of information discovery.</p>
<p>What poses a significant challenge is #2. I refer to this as the problem of participation. This is due to the state-fullness of the FriendFeed Post (or conversation). Where FriendFeed is concerned participation is a relative exercise &#8211; you can post a new conversation OR you can participate in an existing conversation. <span style="font-weight: bold; font-style: italic;">It is the relative nature of participation (relative to an existing conversation) that makes participation via IM so problematic.</span></p>
<p>This schism is completely analogous to the schism between the command line and the graphical user interface. <span style="text-decoration: underline;"><em>As a matter of fact, an IM/XMPP interface for Social Media streams is simply a Social Media Command Line.</em></span> You enter commands &#8211; often obscure, opaque and archaic commands &#8211; and thereby control the behavior of the application. And this model works&#8230; until the interaction model becomes so complex that a command line interface becomes impractical.</p>
<p>When the goal is to filter a stateless stream of data (ala grep) and insert data into that stateless stream &#8211; a command line works. However, when the stream becomes state-full &#8211; and contains entity relationships (i.e., conversations) filtering the stream is sensible &#8211; but <em>the complexity of the required command line interface to inject data into the right entity in the stream makes the proposition a fools errand.</em></p>
<p><span style="font-weight: bold; font-style: italic;">In short &#8211; FFStream is an ideal information discovery mechanism &#8211; far more powerful than Track because the stream is an aggregation of content and because the stream is a stream of conversations. It is not, however, a usable interface (i.e., command line) for participation in Social Media.</span></p>
<p>So the goal of FFStream will be to enable information discovery and encourage participation by providing a reference to the conversation. That reference will open a browser window with an appropriate interface (i.e., graphical user interface) for the participation in the conversation.</p>
<p>I know some will find this (to put it mildly) lacking. I know some will declare that I don&#8217;t get it. But there is a reason people vastly prefer the ease of use provided by a graphical user interface over the command line. If you are one of those who believe I&#8217;ve missed the point &#8211; please consider the command line vs. graphical user interface schism and how it relates to this conversation before declaring my ignorance.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://www.shareaholic.com/api/share/?title=XMPP%2C+Track+and+the+Social+Media+Command+Line&amp;link=http://briantroy.com/blog/2008/10/27/xmpp-track-and-the-social-media-command-line/&amp;notes=Last%20Friday%20I%20created%20a%20FriendFeed%20Real-Time%20bridge%20to%20XMPP.%20Over%20the%20weekend%20I%27ve%20had%20several%20people%20receiving%20their%20home%20feed%20in%20real%20time%20over%20XMPP%20%28GTalk%20to%20be%20specific%29.%20I%20also%20wrote%20a%20post%20about%20what%20I%20had%20done%20and%20what%20I%20intend%20to%20do%20with%20this%20going%20forward.%0AOne%20thing%20I%20heard%20from%20the%20initial&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=2&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://www.shareaholic.com/api/share/?title=XMPP%2C+Track+and+the+Social+Media+Command+Line&amp;link=http://briantroy.com/blog/2008/10/27/xmpp-track-and-the-social-media-command-line/&amp;notes=Last%20Friday%20I%20created%20a%20FriendFeed%20Real-Time%20bridge%20to%20XMPP.%20Over%20the%20weekend%20I%27ve%20had%20several%20people%20receiving%20their%20home%20feed%20in%20real%20time%20over%20XMPP%20%28GTalk%20to%20be%20specific%29.%20I%20also%20wrote%20a%20post%20about%20what%20I%20had%20done%20and%20what%20I%20intend%20to%20do%20with%20this%20going%20forward.%0AOne%20thing%20I%20heard%20from%20the%20initial&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=3&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-evernote">
			<a href="http://www.shareaholic.com/api/share/?title=XMPP%2C+Track+and+the+Social+Media+Command+Line&amp;link=http://briantroy.com/blog/2008/10/27/xmpp-track-and-the-social-media-command-line/&amp;notes=Last%20Friday%20I%20created%20a%20FriendFeed%20Real-Time%20bridge%20to%20XMPP.%20Over%20the%20weekend%20I%27ve%20had%20several%20people%20receiving%20their%20home%20feed%20in%20real%20time%20over%20XMPP%20%28GTalk%20to%20be%20specific%29.%20I%20also%20wrote%20a%20post%20about%20what%20I%20had%20done%20and%20what%20I%20intend%20to%20do%20with%20this%20going%20forward.%0AOne%20thing%20I%20heard%20from%20the%20initial&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=191&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Clip this to Evernote">Clip this to Evernote</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.shareaholic.com/api/share/?title=XMPP%2C+Track+and+the+Social+Media+Command+Line&amp;link=http://briantroy.com/blog/2008/10/27/xmpp-track-and-the-social-media-command-line/&amp;notes=Last%20Friday%20I%20created%20a%20FriendFeed%20Real-Time%20bridge%20to%20XMPP.%20Over%20the%20weekend%20I%27ve%20had%20several%20people%20receiving%20their%20home%20feed%20in%20real%20time%20over%20XMPP%20%28GTalk%20to%20be%20specific%29.%20I%20also%20wrote%20a%20post%20about%20what%20I%20had%20done%20and%20what%20I%20intend%20to%20do%20with%20this%20going%20forward.%0AOne%20thing%20I%20heard%20from%20the%20initial&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=5&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.shareaholic.com/api/share/?title=XMPP%2C+Track+and+the+Social+Media+Command+Line&amp;link=http://briantroy.com/blog/2008/10/27/xmpp-track-and-the-social-media-command-line/&amp;notes=Last%20Friday%20I%20created%20a%20FriendFeed%20Real-Time%20bridge%20to%20XMPP.%20Over%20the%20weekend%20I%27ve%20had%20several%20people%20receiving%20their%20home%20feed%20in%20real%20time%20over%20XMPP%20%28GTalk%20to%20be%20specific%29.%20I%20also%20wrote%20a%20post%20about%20what%20I%20had%20done%20and%20what%20I%20intend%20to%20do%20with%20this%20going%20forward.%0AOne%20thing%20I%20heard%20from%20the%20initial&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=257&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.shareaholic.com/api/share/?title=XMPP%2C+Track+and+the+Social+Media+Command+Line&amp;link=http://briantroy.com/blog/2008/10/27/xmpp-track-and-the-social-media-command-line/&amp;notes=Last%20Friday%20I%20created%20a%20FriendFeed%20Real-Time%20bridge%20to%20XMPP.%20Over%20the%20weekend%20I%27ve%20had%20several%20people%20receiving%20their%20home%20feed%20in%20real%20time%20over%20XMPP%20%28GTalk%20to%20be%20specific%29.%20I%20also%20wrote%20a%20post%20about%20what%20I%20had%20done%20and%20what%20I%20intend%20to%20do%20with%20this%20going%20forward.%0AOne%20thing%20I%20heard%20from%20the%20initial&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=207&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.shareaholic.com/api/share/?title=XMPP%2C+Track+and+the+Social+Media+Command+Line&amp;link=http://briantroy.com/blog/2008/10/27/xmpp-track-and-the-social-media-command-line/&amp;notes=Last%20Friday%20I%20created%20a%20FriendFeed%20Real-Time%20bridge%20to%20XMPP.%20Over%20the%20weekend%20I%27ve%20had%20several%20people%20receiving%20their%20home%20feed%20in%20real%20time%20over%20XMPP%20%28GTalk%20to%20be%20specific%29.%20I%20also%20wrote%20a%20post%20about%20what%20I%20had%20done%20and%20what%20I%20intend%20to%20do%20with%20this%20going%20forward.%0AOne%20thing%20I%20heard%20from%20the%20initial&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=88&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-mail">
			<a href="http://www.shareaholic.com/api/share/?title=XMPP%2C%20Track%20and%20the%20Social%20Media%20Command%20Line&amp;link=http://briantroy.com/blog/2008/10/27/xmpp-track-and-the-social-media-command-line/&amp;notes=Last%20Friday%20I%20created%20a%20FriendFeed%20Real-Time%20bridge%20to%20XMPP.%20Over%20the%20weekend%20I%27ve%20had%20several%20people%20receiving%20their%20home%20feed%20in%20real%20time%20over%20XMPP%20%28GTalk%20to%20be%20specific%29.%20I%20also%20wrote%20a%20post%20about%20what%20I%20had%20done%20and%20what%20I%20intend%20to%20do%20with%20this%20going%20forward.%0AOne%20thing%20I%20heard%20from%20the%20initial&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=201&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.shareaholic.com/api/share/?title=XMPP%2C+Track+and+the+Social+Media+Command+Line&amp;link=http://briantroy.com/blog/2008/10/27/xmpp-track-and-the-social-media-command-line/&amp;notes=Last%20Friday%20I%20created%20a%20FriendFeed%20Real-Time%20bridge%20to%20XMPP.%20Over%20the%20weekend%20I%27ve%20had%20several%20people%20receiving%20their%20home%20feed%20in%20real%20time%20over%20XMPP%20%28GTalk%20to%20be%20specific%29.%20I%20also%20wrote%20a%20post%20about%20what%20I%20had%20done%20and%20what%20I%20intend%20to%20do%20with%20this%20going%20forward.%0AOne%20thing%20I%20heard%20from%20the%20initial&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=38&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-twitter">
			<a href="http://www.shareaholic.com/api/share/?title=XMPP%2C+Track+and+the+Social+Media+Command+Line&amp;link=http://briantroy.com/blog/2008/10/27/xmpp-track-and-the-social-media-command-line/&amp;notes=Last%20Friday%20I%20created%20a%20FriendFeed%20Real-Time%20bridge%20to%20XMPP.%20Over%20the%20weekend%20I%27ve%20had%20several%20people%20receiving%20their%20home%20feed%20in%20real%20time%20over%20XMPP%20%28GTalk%20to%20be%20specific%29.%20I%20also%20wrote%20a%20post%20about%20what%20I%20had%20done%20and%20what%20I%20intend%20to%20do%20with%20this%20going%20forward.%0AOne%20thing%20I%20heard%20from%20the%20initial&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=%2524%257Btitle%257D%2B-%2B%2524%257Bshort_link%257D&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul><div style="clear: both;"></div><div class="shr-getshr" style="visibility:hidden;font-size:10px !important"><a target="_blank" href="http://www.shareaholic.com/?src=pub">Get Shareaholic</a></div><div style="clear: both;"></div></div>

]]></content:encoded>
			<wfw:commentRss>http://briantroy.com/blog/2008/10/27/xmpp-track-and-the-social-media-command-line/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>54 Hours To Build A Company: A Look At Startup Weekend Phoenix</title>
		<link>http://briantroy.com/blog/2008/10/21/54-hours-to-build-a-company-a-look-at-startup-weekend-phoenix/</link>
		<comments>http://briantroy.com/blog/2008/10/21/54-hours-to-build-a-company-a-look-at-startup-weekend-phoenix/#comments</comments>
		<pubDate>Wed, 22 Oct 2008 00:13:33 +0000</pubDate>
		<dc:creator>briantroy</dc:creator>
				<category><![CDATA[AZ Small Business]]></category>
		<category><![CDATA[AZ Tech]]></category>
		<category><![CDATA[Emerging Technology Practice]]></category>
		<category><![CDATA[phoenix startup weekend]]></category>
		<category><![CDATA[Reserve Chute]]></category>

		<guid isPermaLink="false">http://briantroy.com/blog/2008/10/21/54-hours-to-build-a-company-a-look-at-startup-weekend-phoenix/</guid>
		<description><![CDATA[TechCrunch coverage of Phoenix Startup Weekend&#8230; Yeah &#8211; I was there working on Reserve Chute!!! Twitrratr gets a nice bump&#8230; nice job guys. Go Phoenix! It’s been some time since we last covered Startup Weekend, a series of events that bring a roomful of developers and entrepreneurs together to develop new startups in only 54 [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fbriantroy.com%2Fblog%2F2008%2F10%2F21%2F54-hours-to-build-a-company-a-look-at-startup-weekend-phoenix%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fbriantroy.com%2Fblog%2F2008%2F10%2F21%2F54-hours-to-build-a-company-a-look-at-startup-weekend-phoenix%2F&amp;source=briantroy&amp;style=normal&amp;service=bit.ly&amp;service_api=justsignal%3AR_626c052845111fc600be065fde2532eb&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>TechCrunch coverage of <a href="http://phoenix.startupweekend.com/">Phoenix Startup Weekend</a>&#8230; Yeah &#8211; I was there working on Reserve Chute!!!</p>
<p><a href="http://twitrratr.com/">Twitrratr</a> gets a nice bump&#8230; nice job guys.</p>
<p>Go Phoenix!</p>
<blockquote cite="http://feedproxy.google.com/~r/Techcrunch/~3/1RIkcvIwjvM/">
<p>It’s been some time since we <a href="http://www.techcrunch.com/2007/11/18/startup-weekend-san-francisco-in-full-swing/">last covered</a> <a href="http://www.startupweekend.com" onclick="javascript:pageTracker._trackPageview ('/outbound/www.startupweekend.com');">Startup Weekend</a>, a series of events that bring a roomful of developers and entrepreneurs together to develop new startups in only 54 hours. When the program originally launched last year, each weekend was geared towards building a single application, of which every participating member was a cofounder. Since then the format has changed &#8211; multiple companies are created at each event, and they don’t have to incorporate at the end of the weekend. Here’s a handful of the companies founded at last weekend’s event, which was held in Phoenix.</p>
<p><big><strong>ReserveChute</strong></big><br />
  <a href="http://www.reservechute.com" onclick="javascript:pageTracker._trackPageview ('/outbound/www.reservechute.com');"><img src="http://www.techcrunch.com/wp-content/uploads/2008/10/reserveshootlogo.png" class="shot2" /></a></p>
<p>With so much of our essential data making its way to the cloud, it’s becoming increasingly difficult to quickly make a local backup. <a href="http://www.reservechute.com" onclick="javascript:pageTracker._trackPageview ('/outbound/www.reservechute.com');">Reserve Chute</a>, an open source web app that will be available for use in the next few weeks, will automatically make backups of popular cloud based services including Gmail, Twitter, and Basecamp.</p>
<p>It’s unlikely that any of these services will be going out of business in the foreseeable future, and they almost certainly have redundant backup systems in place. But the prospect of having my entire photo collection or Email history wiped out is unnerving &#8211; having an easy way to back up these services would definitely give users some peace of mind, even if they never had to use it.</p>
<p><big><strong>My Shelter Helper</strong></big><br />
  <a href="http://www.myshelterhelper.com" onclick="javascript:pageTracker._trackPageview ('/outbound/www.myshelterhelper.com');"><img src="http://www.techcrunch.com/wp-content/uploads/2008/10/doggy.png" class="shot2" /></a></p>
<p><a href="http://www.myshelterhelper.com" onclick="javascript:pageTracker._trackPageview ('/outbound/www.myshelterhelper.com');">My Shelter Helper</a> is web page builder aimed to help animal shelters establish a presence on the web. Shelters can logon and after entering some basic information like their address and telephone number will be presented with a functional and good looking website. It’s a great idea, and I love the tagline: “Helping save animal’s lives.”</p>
<p>For now the service is generating some pretty barebones sites, but will introduce support for donations so that shelters can easily collect from benevolent animal lovers worldwide. I hope the team keeps working on this &#8211; anything that helps animals is a good thing, and plenty of people (like my mother, for example) would love to donate to their local animal shelter along with the national organizations.</p>
<p><big><strong>Twittrratr</strong></big><br />
  <a href="http://www.twittrratr.com" onclick="javascript:pageTracker._trackPageview ('/outbound/www.twittrratr.com');"><img src="http://www.techcrunch.com/wp-content/uploads/2008/10/twitrratr.png" class="shot2" /></a></p>
<p>Awful domain name aside, the <a href="http://twitrratr.com/" onclick="javascript:pageTracker._trackPageview ('/outbound/twitrratr.com');">Twittrratr</a> team has actually built a pretty cool Twitter site. After entering any keyword, Twittrratr will find related tweets and attempt to figure out if the subject is being spoke about in a positive or negative light. It’s a good idea but unfortunately it doesn’t work very well &#8211; oftentimes words that Twittrratr associates with a negative tweet aren’t being used to describe the keyword that was searched for. The team <a href="http://twitrratr.com/about/" onclick="javascript:pageTracker._trackPageview ('/outbound/twitrratr.com');">acknowledges</a> that the system isn’t perfect and is open to suggestions (it’s still pretty impressive for 54 hours from conception to launch).</p>
<p><img src="http://www.techcrunch.com/wp-content/uploads/2008/10/starwars.png" /></p>
<p><img src="http://feedproxy.google.com/~r/Techcrunch/~4/1RIkcvIwjvM" height="1" width="1" /> [From <a href="http://feedproxy.google.com/~r/Techcrunch/~3/1RIkcvIwjvM/"><cite>54 Hours To Build A Company: A Look At Startup Weekend Phoenix</cite></a>]
</p></blockquote>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://www.shareaholic.com/api/share/?title=54+Hours+To+Build+A+Company%3A+A+Look+At+Startup+Weekend+Phoenix&amp;link=http://briantroy.com/blog/2008/10/21/54-hours-to-build-a-company-a-look-at-startup-weekend-phoenix/&amp;notes=TechCrunch%20coverage%20of%20Phoenix%20Startup%20Weekend...%20Yeah%20-%20I%20was%20there%20working%20on%20Reserve%20Chute%21%21%21%0ATwitrratr%20gets%20a%20nice%20bump...%20nice%20job%20guys.%0AGo%20Phoenix%21%0A%0A%20%20It%E2%80%99s%20been%20some%20time%20since%20we%20last%20covered%20Startup%20Weekend%2C%20a%20series%20of%20events%20that%20bring%20a%20roomful%20of%20developers%20and%20entrepreneurs%20together%20t&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=2&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://www.shareaholic.com/api/share/?title=54+Hours+To+Build+A+Company%3A+A+Look+At+Startup+Weekend+Phoenix&amp;link=http://briantroy.com/blog/2008/10/21/54-hours-to-build-a-company-a-look-at-startup-weekend-phoenix/&amp;notes=TechCrunch%20coverage%20of%20Phoenix%20Startup%20Weekend...%20Yeah%20-%20I%20was%20there%20working%20on%20Reserve%20Chute%21%21%21%0ATwitrratr%20gets%20a%20nice%20bump...%20nice%20job%20guys.%0AGo%20Phoenix%21%0A%0A%20%20It%E2%80%99s%20been%20some%20time%20since%20we%20last%20covered%20Startup%20Weekend%2C%20a%20series%20of%20events%20that%20bring%20a%20roomful%20of%20developers%20and%20entrepreneurs%20together%20t&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=3&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-evernote">
			<a href="http://www.shareaholic.com/api/share/?title=54+Hours+To+Build+A+Company%3A+A+Look+At+Startup+Weekend+Phoenix&amp;link=http://briantroy.com/blog/2008/10/21/54-hours-to-build-a-company-a-look-at-startup-weekend-phoenix/&amp;notes=TechCrunch%20coverage%20of%20Phoenix%20Startup%20Weekend...%20Yeah%20-%20I%20was%20there%20working%20on%20Reserve%20Chute%21%21%21%0ATwitrratr%20gets%20a%20nice%20bump...%20nice%20job%20guys.%0AGo%20Phoenix%21%0A%0A%20%20It%E2%80%99s%20been%20some%20time%20since%20we%20last%20covered%20Startup%20Weekend%2C%20a%20series%20of%20events%20that%20bring%20a%20roomful%20of%20developers%20and%20entrepreneurs%20together%20t&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=191&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Clip this to Evernote">Clip this to Evernote</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.shareaholic.com/api/share/?title=54+Hours+To+Build+A+Company%3A+A+Look+At+Startup+Weekend+Phoenix&amp;link=http://briantroy.com/blog/2008/10/21/54-hours-to-build-a-company-a-look-at-startup-weekend-phoenix/&amp;notes=TechCrunch%20coverage%20of%20Phoenix%20Startup%20Weekend...%20Yeah%20-%20I%20was%20there%20working%20on%20Reserve%20Chute%21%21%21%0ATwitrratr%20gets%20a%20nice%20bump...%20nice%20job%20guys.%0AGo%20Phoenix%21%0A%0A%20%20It%E2%80%99s%20been%20some%20time%20since%20we%20last%20covered%20Startup%20Weekend%2C%20a%20series%20of%20events%20that%20bring%20a%20roomful%20of%20developers%20and%20entrepreneurs%20together%20t&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=5&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.shareaholic.com/api/share/?title=54+Hours+To+Build+A+Company%3A+A+Look+At+Startup+Weekend+Phoenix&amp;link=http://briantroy.com/blog/2008/10/21/54-hours-to-build-a-company-a-look-at-startup-weekend-phoenix/&amp;notes=TechCrunch%20coverage%20of%20Phoenix%20Startup%20Weekend...%20Yeah%20-%20I%20was%20there%20working%20on%20Reserve%20Chute%21%21%21%0ATwitrratr%20gets%20a%20nice%20bump...%20nice%20job%20guys.%0AGo%20Phoenix%21%0A%0A%20%20It%E2%80%99s%20been%20some%20time%20since%20we%20last%20covered%20Startup%20Weekend%2C%20a%20series%20of%20events%20that%20bring%20a%20roomful%20of%20developers%20and%20entrepreneurs%20together%20t&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=257&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.shareaholic.com/api/share/?title=54+Hours+To+Build+A+Company%3A+A+Look+At+Startup+Weekend+Phoenix&amp;link=http://briantroy.com/blog/2008/10/21/54-hours-to-build-a-company-a-look-at-startup-weekend-phoenix/&amp;notes=TechCrunch%20coverage%20of%20Phoenix%20Startup%20Weekend...%20Yeah%20-%20I%20was%20there%20working%20on%20Reserve%20Chute%21%21%21%0ATwitrratr%20gets%20a%20nice%20bump...%20nice%20job%20guys.%0AGo%20Phoenix%21%0A%0A%20%20It%E2%80%99s%20been%20some%20time%20since%20we%20last%20covered%20Startup%20Weekend%2C%20a%20series%20of%20events%20that%20bring%20a%20roomful%20of%20developers%20and%20entrepreneurs%20together%20t&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=207&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.shareaholic.com/api/share/?title=54+Hours+To+Build+A+Company%3A+A+Look+At+Startup+Weekend+Phoenix&amp;link=http://briantroy.com/blog/2008/10/21/54-hours-to-build-a-company-a-look-at-startup-weekend-phoenix/&amp;notes=TechCrunch%20coverage%20of%20Phoenix%20Startup%20Weekend...%20Yeah%20-%20I%20was%20there%20working%20on%20Reserve%20Chute%21%21%21%0ATwitrratr%20gets%20a%20nice%20bump...%20nice%20job%20guys.%0AGo%20Phoenix%21%0A%0A%20%20It%E2%80%99s%20been%20some%20time%20since%20we%20last%20covered%20Startup%20Weekend%2C%20a%20series%20of%20events%20that%20bring%20a%20roomful%20of%20developers%20and%20entrepreneurs%20together%20t&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=88&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-mail">
			<a href="http://www.shareaholic.com/api/share/?title=54%20Hours%20To%20Build%20A%20Company%3A%20A%20Look%20At%20Startup%20Weekend%20Phoenix&amp;link=http://briantroy.com/blog/2008/10/21/54-hours-to-build-a-company-a-look-at-startup-weekend-phoenix/&amp;notes=TechCrunch%20coverage%20of%20Phoenix%20Startup%20Weekend...%20Yeah%20-%20I%20was%20there%20working%20on%20Reserve%20Chute%21%21%21%0ATwitrratr%20gets%20a%20nice%20bump...%20nice%20job%20guys.%0AGo%20Phoenix%21%0A%0A%20%20It%E2%80%99s%20been%20some%20time%20since%20we%20last%20covered%20Startup%20Weekend%2C%20a%20series%20of%20events%20that%20bring%20a%20roomful%20of%20developers%20and%20entrepreneurs%20together%20t&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=201&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.shareaholic.com/api/share/?title=54+Hours+To+Build+A+Company%3A+A+Look+At+Startup+Weekend+Phoenix&amp;link=http://briantroy.com/blog/2008/10/21/54-hours-to-build-a-company-a-look-at-startup-weekend-phoenix/&amp;notes=TechCrunch%20coverage%20of%20Phoenix%20Startup%20Weekend...%20Yeah%20-%20I%20was%20there%20working%20on%20Reserve%20Chute%21%21%21%0ATwitrratr%20gets%20a%20nice%20bump...%20nice%20job%20guys.%0AGo%20Phoenix%21%0A%0A%20%20It%E2%80%99s%20been%20some%20time%20since%20we%20last%20covered%20Startup%20Weekend%2C%20a%20series%20of%20events%20that%20bring%20a%20roomful%20of%20developers%20and%20entrepreneurs%20together%20t&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=38&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-twitter">
			<a href="http://www.shareaholic.com/api/share/?title=54+Hours+To+Build+A+Company%3A+A+Look+At+Startup+Weekend+Phoenix&amp;link=http://briantroy.com/blog/2008/10/21/54-hours-to-build-a-company-a-look-at-startup-weekend-phoenix/&amp;notes=TechCrunch%20coverage%20of%20Phoenix%20Startup%20Weekend...%20Yeah%20-%20I%20was%20there%20working%20on%20Reserve%20Chute%21%21%21%0ATwitrratr%20gets%20a%20nice%20bump...%20nice%20job%20guys.%0AGo%20Phoenix%21%0A%0A%20%20It%E2%80%99s%20been%20some%20time%20since%20we%20last%20covered%20Startup%20Weekend%2C%20a%20series%20of%20events%20that%20bring%20a%20roomful%20of%20developers%20and%20entrepreneurs%20together%20t&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=%2524%257Btitle%257D%2B-%2B%2524%257Bshort_link%257D&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul><div style="clear: both;"></div><div class="shr-getshr" style="visibility:hidden;font-size:10px !important"><a target="_blank" href="http://www.shareaholic.com/?src=pub">Get Shareaholic</a></div><div style="clear: both;"></div></div>

]]></content:encoded>
			<wfw:commentRss>http://briantroy.com/blog/2008/10/21/54-hours-to-build-a-company-a-look-at-startup-weekend-phoenix/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>What did you do last weekend?</title>
		<link>http://briantroy.com/blog/2008/10/20/what-did-you-do-last-weekend/</link>
		<comments>http://briantroy.com/blog/2008/10/20/what-did-you-do-last-weekend/#comments</comments>
		<pubDate>Mon, 20 Oct 2008 16:59:15 +0000</pubDate>
		<dc:creator>briantroy</dc:creator>
				<category><![CDATA[AZ Small Business]]></category>
		<category><![CDATA[AZ Tech]]></category>
		<category><![CDATA[Business Model Innovation]]></category>
		<category><![CDATA[Emerging Technology Practice]]></category>
		<category><![CDATA[innovator]]></category>
		<category><![CDATA[phoenix startup weekend]]></category>
		<category><![CDATA[Reserve Chute]]></category>
		<category><![CDATA[useful technology]]></category>

		<guid isPermaLink="false">http://briantroy.com/blog/2008/10/20/what-did-you-do-last-weekend/</guid>
		<description><![CDATA[I hope you had fun. I was at Phoenix Startup Weekend working with a team of smart, energized people to create a new company in a single weekend. The result &#8211; Reserve Chute &#8211; is sheer genius. This one time, at Phoenix Startup Weekend (http://phoenix.startupweekend.com) actually held in Chandler, AZ, a band of brothers, and [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fbriantroy.com%2Fblog%2F2008%2F10%2F20%2Fwhat-did-you-do-last-weekend%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fbriantroy.com%2Fblog%2F2008%2F10%2F20%2Fwhat-did-you-do-last-weekend%2F&amp;source=briantroy&amp;style=normal&amp;service=bit.ly&amp;service_api=justsignal%3AR_626c052845111fc600be065fde2532eb&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>I hope you had fun. I was at <a href="http://phoenix.startupweekend.com">Phoenix Startup Weekend</a> working with a team of smart, energized people to create a new company in a single weekend.</p>
<p>The result &#8211; Reserve Chute &#8211; is sheer genius.</p>
<blockquote><p>This one time, at Phoenix Startup Weekend (http://phoenix.startupweekend.com) actually held in Chandler, AZ, a band of brothers, and one sister, came together to create a new company called Reserve Chute. With it’s main offering a personalized data backup service that permits users to grab their data from online sources like GMail and others and save them to a storage device of their choice. This is one cool and innovative service that should be on your “Must Have” list. Your data on your terms for when Web 2.0 becomes Web 2 point Oh no! What more could you ask for. For more information, visit www.reservechute.com and sign-up for this unique and powerful service offering.</p></blockquote>
<p>If you use online applications to run your business you need to check <a href="http://www.reservechute.com">Reserve Chute</a> out. It might be the best thing you ever do for your business.</p>
<p>The following photos are courtesy of Adam Nollmeyer &#8211; Thanks Adam. <a href="http://www.flickr.com/photos/ccl1111/">You can find Adam&#8217;s work here</a>.</p>
<p>UPDATE &#8211; The photos below are actually courtesy of ccl1111 &#8211; <a href="http://www.flickr.com/photos/ccl1111/">you can find his photos here</a>. Adam&#8217;s photos are still great&#8230; be sure to check them out as well.</p>
<p><img src="http://briantroy.com/blog/wp-content/uploads/2008/10/200810201001.jpg" alt="200810201001.jpg" width="480" height="319" /> <img src="http://briantroy.com/blog/wp-content/uploads/2008/10/2008102010031.jpg" alt="200810201003.jpg" width="160" height="240" /></p>
<p><img src="http://briantroy.com/blog/wp-content/uploads/2008/10/200810201003.jpg" alt="200810201003.jpg" width="240" height="172" /></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://www.shareaholic.com/api/share/?title=What+did+you+do+last+weekend%3F&amp;link=http://briantroy.com/blog/2008/10/20/what-did-you-do-last-weekend/&amp;notes=I%20hope%20you%20had%20fun.%20I%20was%20at%20Phoenix%20Startup%20Weekend%20working%20with%20a%20team%20of%20smart%2C%20energized%20people%20to%20create%20a%20new%20company%20in%20a%20single%20weekend.%0D%0A%0D%0AThe%20result%20-%20Reserve%20Chute%20-%20is%20sheer%20genius.%0D%0AThis%20one%20time%2C%20at%20Phoenix%20Startup%20Weekend%20%28http%3A%2F%2Fphoenix.startupweekend.com%29%20actually%20held%20in%20Chandler%2C%20&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=2&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://www.shareaholic.com/api/share/?title=What+did+you+do+last+weekend%3F&amp;link=http://briantroy.com/blog/2008/10/20/what-did-you-do-last-weekend/&amp;notes=I%20hope%20you%20had%20fun.%20I%20was%20at%20Phoenix%20Startup%20Weekend%20working%20with%20a%20team%20of%20smart%2C%20energized%20people%20to%20create%20a%20new%20company%20in%20a%20single%20weekend.%0D%0A%0D%0AThe%20result%20-%20Reserve%20Chute%20-%20is%20sheer%20genius.%0D%0AThis%20one%20time%2C%20at%20Phoenix%20Startup%20Weekend%20%28http%3A%2F%2Fphoenix.startupweekend.com%29%20actually%20held%20in%20Chandler%2C%20&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=3&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-evernote">
			<a href="http://www.shareaholic.com/api/share/?title=What+did+you+do+last+weekend%3F&amp;link=http://briantroy.com/blog/2008/10/20/what-did-you-do-last-weekend/&amp;notes=I%20hope%20you%20had%20fun.%20I%20was%20at%20Phoenix%20Startup%20Weekend%20working%20with%20a%20team%20of%20smart%2C%20energized%20people%20to%20create%20a%20new%20company%20in%20a%20single%20weekend.%0D%0A%0D%0AThe%20result%20-%20Reserve%20Chute%20-%20is%20sheer%20genius.%0D%0AThis%20one%20time%2C%20at%20Phoenix%20Startup%20Weekend%20%28http%3A%2F%2Fphoenix.startupweekend.com%29%20actually%20held%20in%20Chandler%2C%20&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=191&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Clip this to Evernote">Clip this to Evernote</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.shareaholic.com/api/share/?title=What+did+you+do+last+weekend%3F&amp;link=http://briantroy.com/blog/2008/10/20/what-did-you-do-last-weekend/&amp;notes=I%20hope%20you%20had%20fun.%20I%20was%20at%20Phoenix%20Startup%20Weekend%20working%20with%20a%20team%20of%20smart%2C%20energized%20people%20to%20create%20a%20new%20company%20in%20a%20single%20weekend.%0D%0A%0D%0AThe%20result%20-%20Reserve%20Chute%20-%20is%20sheer%20genius.%0D%0AThis%20one%20time%2C%20at%20Phoenix%20Startup%20Weekend%20%28http%3A%2F%2Fphoenix.startupweekend.com%29%20actually%20held%20in%20Chandler%2C%20&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=5&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.shareaholic.com/api/share/?title=What+did+you+do+last+weekend%3F&amp;link=http://briantroy.com/blog/2008/10/20/what-did-you-do-last-weekend/&amp;notes=I%20hope%20you%20had%20fun.%20I%20was%20at%20Phoenix%20Startup%20Weekend%20working%20with%20a%20team%20of%20smart%2C%20energized%20people%20to%20create%20a%20new%20company%20in%20a%20single%20weekend.%0D%0A%0D%0AThe%20result%20-%20Reserve%20Chute%20-%20is%20sheer%20genius.%0D%0AThis%20one%20time%2C%20at%20Phoenix%20Startup%20Weekend%20%28http%3A%2F%2Fphoenix.startupweekend.com%29%20actually%20held%20in%20Chandler%2C%20&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=257&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.shareaholic.com/api/share/?title=What+did+you+do+last+weekend%3F&amp;link=http://briantroy.com/blog/2008/10/20/what-did-you-do-last-weekend/&amp;notes=I%20hope%20you%20had%20fun.%20I%20was%20at%20Phoenix%20Startup%20Weekend%20working%20with%20a%20team%20of%20smart%2C%20energized%20people%20to%20create%20a%20new%20company%20in%20a%20single%20weekend.%0D%0A%0D%0AThe%20result%20-%20Reserve%20Chute%20-%20is%20sheer%20genius.%0D%0AThis%20one%20time%2C%20at%20Phoenix%20Startup%20Weekend%20%28http%3A%2F%2Fphoenix.startupweekend.com%29%20actually%20held%20in%20Chandler%2C%20&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=207&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.shareaholic.com/api/share/?title=What+did+you+do+last+weekend%3F&amp;link=http://briantroy.com/blog/2008/10/20/what-did-you-do-last-weekend/&amp;notes=I%20hope%20you%20had%20fun.%20I%20was%20at%20Phoenix%20Startup%20Weekend%20working%20with%20a%20team%20of%20smart%2C%20energized%20people%20to%20create%20a%20new%20company%20in%20a%20single%20weekend.%0D%0A%0D%0AThe%20result%20-%20Reserve%20Chute%20-%20is%20sheer%20genius.%0D%0AThis%20one%20time%2C%20at%20Phoenix%20Startup%20Weekend%20%28http%3A%2F%2Fphoenix.startupweekend.com%29%20actually%20held%20in%20Chandler%2C%20&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=88&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-mail">
			<a href="http://www.shareaholic.com/api/share/?title=What%20did%20you%20do%20last%20weekend%3F&amp;link=http://briantroy.com/blog/2008/10/20/what-did-you-do-last-weekend/&amp;notes=I%20hope%20you%20had%20fun.%20I%20was%20at%20Phoenix%20Startup%20Weekend%20working%20with%20a%20team%20of%20smart%2C%20energized%20people%20to%20create%20a%20new%20company%20in%20a%20single%20weekend.%0D%0A%0D%0AThe%20result%20-%20Reserve%20Chute%20-%20is%20sheer%20genius.%0D%0AThis%20one%20time%2C%20at%20Phoenix%20Startup%20Weekend%20%28http%3A%2F%2Fphoenix.startupweekend.com%29%20actually%20held%20in%20Chandler%2C%20&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=201&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.shareaholic.com/api/share/?title=What+did+you+do+last+weekend%3F&amp;link=http://briantroy.com/blog/2008/10/20/what-did-you-do-last-weekend/&amp;notes=I%20hope%20you%20had%20fun.%20I%20was%20at%20Phoenix%20Startup%20Weekend%20working%20with%20a%20team%20of%20smart%2C%20energized%20people%20to%20create%20a%20new%20company%20in%20a%20single%20weekend.%0D%0A%0D%0AThe%20result%20-%20Reserve%20Chute%20-%20is%20sheer%20genius.%0D%0AThis%20one%20time%2C%20at%20Phoenix%20Startup%20Weekend%20%28http%3A%2F%2Fphoenix.startupweekend.com%29%20actually%20held%20in%20Chandler%2C%20&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=38&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-twitter">
			<a href="http://www.shareaholic.com/api/share/?title=What+did+you+do+last+weekend%3F&amp;link=http://briantroy.com/blog/2008/10/20/what-did-you-do-last-weekend/&amp;notes=I%20hope%20you%20had%20fun.%20I%20was%20at%20Phoenix%20Startup%20Weekend%20working%20with%20a%20team%20of%20smart%2C%20energized%20people%20to%20create%20a%20new%20company%20in%20a%20single%20weekend.%0D%0A%0D%0AThe%20result%20-%20Reserve%20Chute%20-%20is%20sheer%20genius.%0D%0AThis%20one%20time%2C%20at%20Phoenix%20Startup%20Weekend%20%28http%3A%2F%2Fphoenix.startupweekend.com%29%20actually%20held%20in%20Chandler%2C%20&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=%2524%257Btitle%257D%2B-%2B%2524%257Bshort_link%257D&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul><div style="clear: both;"></div><div class="shr-getshr" style="visibility:hidden;font-size:10px !important"><a target="_blank" href="http://www.shareaholic.com/?src=pub">Get Shareaholic</a></div><div style="clear: both;"></div></div>

]]></content:encoded>
			<wfw:commentRss>http://briantroy.com/blog/2008/10/20/what-did-you-do-last-weekend/feed/</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
	</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->
