<?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>gregtyree.com &#187; web development</title>
	<atom:link href="http://gregtyree.com/category/web-development/feed/" rel="self" type="application/rss+xml" />
	<link>http://gregtyree.com</link>
	<description>i expect something should be said</description>
	<lastBuildDate>Thu, 29 Jul 2010 08:30:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Disaggregate</title>
		<link>http://gregtyree.com/2010/07/19/disaggregate/</link>
		<comments>http://gregtyree.com/2010/07/19/disaggregate/#comments</comments>
		<pubDate>Mon, 19 Jul 2010 18:27:05 +0000</pubDate>
		<dc:creator>gtyree</dc:creator>
				<category><![CDATA[media]]></category>
		<category><![CDATA[syndication]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://gregtyree.com/?p=858</guid>
		<description><![CDATA[We have done so well with RSS and other aggregators (think FriendFeed) in making it easy to gather up the content we love &#8211; making consumption easy and on our terms (and within the software we choose). But I keep &#8230; <a href="http://gregtyree.com/2010/07/19/disaggregate/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>We have done so well with RSS and other aggregators (think <a href="http://friendfeed.com/">FriendFeed</a>) in making it easy to gather up the content we love &#8211; making consumption easy and on our terms (and within the software we choose).</p>
<p>But I keep finding areas where this just isn&#8217;t easy for those that contribute to the social.  My case in point would be restaurant reviews.  I have a few sites/apps that I use &#8211; <a href="http://yelp.com/">Yelp</a>, <a href="http://urbanspoon.com/">UrbanSpoon</a> and <a href="http://menupages.com/">MenuPages</a> &#8211; and they all encourage and support reviews.  As I travel and look for feedback on new places to eat I would like to give back and share my experiences.  But in doing so I wind up adding my opinions and content to three different sites, making it difficult for me to step back and learn from that data.  I have to manage three separate accounts and if I want to pull up my favorites I can&#8217;t easily do that since they are spread out across the sites.</p>
<p>I can recall <a href="http://marc.blogs.it/">Marc Cantor</a> going on about <a href="http://microformats.org/">Microformats</a> years ago and they have been widely implemented but this hasn&#8217;t prevented what naturally happens in a competitive space, that communities aren&#8217;t necessarily connected.  Clearly the technology exists to make sharing possible, but the nature of running a business means that most communities aren&#8217;t open.</p>
<p>Now we have several efforts underway through popular sites to make it easier to use the same credentials across numerous sites but this doesn&#8217;t fully address that your online identity isn&#8217;t portable.  In my example with restaurant reviews and votes I can&#8217;t visit one destination and see my library of reviews.  I hope that as the new generation of social sites mature that we go beyond just portable login and get into easily collecting our complete identity&#8217;s and contributions.</p>
]]></content:encoded>
			<wfw:commentRss>http://gregtyree.com/2010/07/19/disaggregate/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Forcing Gzip Compression</title>
		<link>http://gregtyree.com/2010/07/14/forcing-gzip-compression/</link>
		<comments>http://gregtyree.com/2010/07/14/forcing-gzip-compression/#comments</comments>
		<pubDate>Wed, 14 Jul 2010 13:51:47 +0000</pubDate>
		<dc:creator>gtyree</dc:creator>
				<category><![CDATA[technology]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://gregtyree.com/?p=849</guid>
		<description><![CDATA[I wasn&#8217;t able to attend Velocity this year but have been consuming what I can find online and this article from a few days ago from Steve Souders talks about a great approach to handling clients (or more likely proxies &#8230; <a href="http://gregtyree.com/2010/07/14/forcing-gzip-compression/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I wasn&#8217;t able to attend Velocity this year but have been consuming what I can find online and this article from a few days ago from <a href="http://www.stevesouders.com/blog/2010/07/12/velocity-forcing-gzip-compression/">Steve Souders</a> talks about a great approach to handling clients (or more likely proxies and software) that don&#8217;t claim to handle Gzip content.</p>
<p>From Andy Martone&#8217;s <a href="http://en.oreilly.com/velocity2010/public/schedule/detail/14334">presentation</a>:</p>
<ul>
<li>At the bottom of a page, inject JavaScript to:
<ul>
<li>Check for a cookie.</li>
<li>If absent, set a session cookie saying “compression NOT ok”.</li>
<li>Write out an iframe element to the page.</li>
</ul>
</li>
<li>The browser then makes a request for the iframe contents.</li>
<li>The server responds with an HTML document that is always compressed.</li>
<li>If the browser understands the compressed response, it executes the inlined JavaScript and sets the session cookie to “compression ok”.</li>
<li>On subsequent requests, if the server sees the “compression ok” cookie it can send compressed responses.</li>
</ul>
<p>The iframe test only runs once so the impact to performance is minimal (and to start the sample size of those getting the test is a small fraction of your traffic).  The upside is that you quickly gain a savings by delivering Gzip payloads to any client that can handle them.  From their testing you might improve the experience for ~15% of your users.</p>
<p>Of course there are still those using seriously old browsers and just can&#8217;t handle the compression, but I would say that burdening them with an extra iframe might give them that final reason to upgrade.</p>
<p>via <a href="http://www.stevesouders.com/blog/2010/07/12/velocity-forcing-gzip-compression/">High Performance Web Sites :: Velocity: Forcing Gzip Compression</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://gregtyree.com/2010/07/14/forcing-gzip-compression/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google on site performance</title>
		<link>http://gregtyree.com/2010/05/04/google-on-site-performance/</link>
		<comments>http://gregtyree.com/2010/05/04/google-on-site-performance/#comments</comments>
		<pubDate>Tue, 04 May 2010 17:32:23 +0000</pubDate>
		<dc:creator>gtyree</dc:creator>
				<category><![CDATA[media]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://gregtyree.com/?p=801</guid>
		<description><![CDATA[Nice article and video on a few easy things to do to improve the front end performance.  This is something I am enthusiastic about and enjoy squeezing out savings (time rendering, bandwidth, etc.) from a site without impacting its look &#8230; <a href="http://gregtyree.com/2010/05/04/google-on-site-performance/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Nice article and video on a few easy things to do to improve the front end performance.  This is something I am enthusiastic about and enjoy squeezing out savings (time rendering, bandwidth, etc.) from a site without impacting its look and feel.</p>
<p>Of course at CNN.com this has been a focus for years, especially the progressive rendering to combat that long homepage.</p>
<p><a href="http://googlewebmastercentral.blogspot.com/2010/05/you-and-site-performance-sitting-in.html?utm_source=feedburner&amp;utm_medium=feed&amp;utm_campaign=Feed%3A+blogspot%2FamDG+%28Official+Google+Webmaster+Central+Blog%29">Official Google Webmaster Central Blog: You and site performance, sitting in a tree&#8230;</a>.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="560" height="340" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/OpMfx_Zie2g&amp;hl=en_US&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="560" height="340" src="http://www.youtube.com/v/OpMfx_Zie2g&amp;hl=en_US&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://gregtyree.com/2010/05/04/google-on-site-performance/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>on Doing It Wrong</title>
		<link>http://gregtyree.com/2010/01/06/on-doing-it-wrong/</link>
		<comments>http://gregtyree.com/2010/01/06/on-doing-it-wrong/#comments</comments>
		<pubDate>Wed, 06 Jan 2010 15:15:17 +0000</pubDate>
		<dc:creator>gtyree</dc:creator>
				<category><![CDATA[media]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://gregtyree.com/?p=728</guid>
		<description><![CDATA[From Tim Bray&#8217;s piece on enterprise systems: What I’m writing here is the single most important take-away from my Sun years, and it fits in a sentence: The community of developers whose work you see on the Web, who probably &#8230; <a href="http://gregtyree.com/2010/01/06/on-doing-it-wrong/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>From Tim Bray&#8217;s piece on enterprise systems:</p>
<blockquote><p>What I’m writing here is the single most important take-away from my Sun years, and it fits in a sentence: The community of developers whose work you see on the Web, who probably don’t know what ADO or UML or JPA even stand for, deploy <em>better systems</em> at <em>less cost</em> in <em>less  time</em> at <em>lower risk</em> than we see in the Enterprise. This is true even when you factor in the greater flexibility and velocity of startups.</p></blockquote>
<p>I have spent years on the enterprise side of development and pushed on occasion for more iterative development methodologies and can say that the more successful projects I can recall started as a more simple effort and grew.  Those that attempted to solve all the problems with the flip of a switch got mired in change requests and requirements docs and in the end made everyone just want to deploy the thing so we could move on.</p>
<p>I have a great sense of accomplishment for the systems I have been a part of constructing, developing and then maintaining but many came before the Internet had as many options and examples as there are today.  Building a large scale, flexible CMS in the late &#8217;90&#8242;s for example didn&#8217;t offer any options to pull from open source or commercial products and tools.  Today that is different and I think most companies are starting to understand.</p>
<p>In the last few years with two different large Internet companies I can say that the enterprise is starting to come around.  While there are still a few core competencies that are worth that do it all yourself mantra, most are now seen as a utility that should be handled in the most efficient manner possible.  It might be that since the two companies I have experience with are both on the Internet side of things and thus faster to catch on, but I think that most companies are realizing that there is no need to write code every time a need arises.</p>
<p>The push for change needs to come from more folks at my level &#8211; those that have the authority to make decisions and the influence to explain the potential rewards over the perceived risks.  I agree with many of the comments that the enterprise is focused on no risk (or transferring that risk to a partner) and that often backs them into a let&#8217;s do it ourselves corner.  The job for the next class of leaders and executives is to understand the new Internet culture and take some of this and weave it into the enterprise.  This will empower the development teams (and the product teams) and should result in more innovative projects coming from not just the startups but from the once staunch Fortune 1,000 as well.</p>
<p><a href="http://www.tbray.org/ongoing/When/201x/2010/01/02/Doing-It-Wrong">ongoing · Doing It Wrong</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://gregtyree.com/2010/01/06/on-doing-it-wrong/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A great data visualization</title>
		<link>http://gregtyree.com/2009/11/12/a-great-data-visualization/</link>
		<comments>http://gregtyree.com/2009/11/12/a-great-data-visualization/#comments</comments>
		<pubDate>Thu, 12 Nov 2009 15:48:49 +0000</pubDate>
		<dc:creator>gtyree</dc:creator>
				<category><![CDATA[media]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[cnn]]></category>
		<category><![CDATA[turner]]></category>

		<guid isPermaLink="false">http://gregtyree.com/?p=678</guid>
		<description><![CDATA[So I may be a bit biased since I was there for most of these events, but I found this image, created by feltron, to be very cool. It mentions in the post that CNN asked him to create a &#8230; <a href="http://gregtyree.com/2009/11/12/a-great-data-visualization/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://gregtyree.com/wp-content/uploads/2009/11/tumblr_kswqslgULv1qzbok1.jpg"><img class="alignright size-thumbnail wp-image-679" title="tumblr_kswqslgULv1qzbok1" src="http://gregtyree.com/wp-content/uploads/2009/11/tumblr_kswqslgULv1qzbok1-150x150.jpg" alt="tumblr_kswqslgULv1qzbok1" width="150" height="150" /></a>So I may be a bit biased since I was there for most of these events, but I found this image, created by <a href="http://feltron.tumblr.com/">feltron</a>, to be very cool.</p>
<p>It mentions <a href="http://feltron.tumblr.com/post/239368807/in-conjunction-with-the-relaunch-of-their-website">in the post</a> that CNN asked him to create a visual record of the site&#8217;s last 13 years.  I would love to have a higher resolution version (think poster size) but don&#8217;t know if anyone will bother to create it.</p>
]]></content:encoded>
			<wfw:commentRss>http://gregtyree.com/2009/11/12/a-great-data-visualization/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Watching a group grow</title>
		<link>http://gregtyree.com/2009/01/06/watching-a-group-grow/</link>
		<comments>http://gregtyree.com/2009/01/06/watching-a-group-grow/#comments</comments>
		<pubDate>Tue, 06 Jan 2009 15:28:48 +0000</pubDate>
		<dc:creator>gtyree</dc:creator>
				<category><![CDATA[media]]></category>
		<category><![CDATA[syndication]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[facebook]]></category>

		<guid isPermaLink="false">http://gregtyree.com/?p=388</guid>
		<description><![CDATA[So a few months ago I was chatting with someone I worked with years ago (nearly decades at this point) at The Sport Shoe and he joked about starting a group on Facebook.  I thought about it for a second &#8230; <a href="http://gregtyree.com/2009/01/06/watching-a-group-grow/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>So a few months ago I was chatting with someone I worked with years ago (nearly decades at this point) at The Sport Shoe and he joked about <a href="http://www.facebook.com/group.php?gid=37215538330">starting a group</a> on Facebook.  I thought about it for a second and figured why not, it might actually be interesting to see how it progresses.  Well it was slow to start and then suddenly spiked a few weeks ago &#8211; now to 43 members.</p>
<p>The Sport Shoe was pretty big in its prime, a force here in Atlanta with stores covering Atlanta.  They opened a few big box style stores and ultimately ran out of steam and closed after more than 20 years.</p>
<p>Just another example of how these new communities are allowing folks to get back in touch.</p>
]]></content:encoded>
			<wfw:commentRss>http://gregtyree.com/2009/01/06/watching-a-group-grow/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Breaking records at CNN.com</title>
		<link>http://gregtyree.com/2008/11/05/breaking-records-at-cnncom/</link>
		<comments>http://gregtyree.com/2008/11/05/breaking-records-at-cnncom/#comments</comments>
		<pubDate>Wed, 05 Nov 2008 13:48:04 +0000</pubDate>
		<dc:creator>gtyree</dc:creator>
				<category><![CDATA[media]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[cnn]]></category>
		<category><![CDATA[election]]></category>
		<category><![CDATA[tbs]]></category>
		<category><![CDATA[turner]]></category>

		<guid isPermaLink="false">http://gregtyree.com/2008/11/05/breaking-records-at-cnncom/</guid>
		<description><![CDATA[TechCrunch already has a story this morning on our numbers from yesterday.&#160; I have now participated in 4 Election cycles with CNN.com, each time breaking records.&#160; Of course today will likely upset the numbers from yesterday but it is still &#8230; <a href="http://gregtyree.com/2008/11/05/breaking-records-at-cnncom/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>TechCrunch already <a href="http://www.techcrunch.com/2008/11/05/record-traffic-day-at-cnncom-27-million-uniques-276-million-page-views/">has a story</a> this morning on our numbers from yesterday.&nbsp; I have now participated in 4 Election cycles with CNN.com, each time breaking records.&nbsp; Of course today will likely upset the numbers from yesterday but it is still great to see us do so well.&nbsp; </p>
<p>It is wild to think back on how far we have advanced in covering this event.&nbsp; From the 1996 Election where our results system was a Webmaster huddled over his computer and Election terminal to now where a full team of developers has built and supported a system feeding both TV and the web.</p>
<p>I have the benefit of leading an outstanding team that made this look easy.&nbsp; Kudos to all of them for the hard work and preparation for last night.</p>
<p><a href="http://www.techcrunch.com/2008/11/05/record-traffic-day-at-cnncom-27-million-uniques-276-million-page-views/">Record Traffic Day At CNN.com: 27 Million Uniques, 276 Million Page Views</a></p>
]]></content:encoded>
			<wfw:commentRss>http://gregtyree.com/2008/11/05/breaking-records-at-cnncom/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML 5 spec not released until 2022?</title>
		<link>http://gregtyree.com/2008/09/14/html-5-spec-not-released-until-2022/</link>
		<comments>http://gregtyree.com/2008/09/14/html-5-spec-not-released-until-2022/#comments</comments>
		<pubDate>Sun, 14 Sep 2008 17:04:37 +0000</pubDate>
		<dc:creator>gtyree</dc:creator>
				<category><![CDATA[technology]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[webdev]]></category>

		<guid isPermaLink="false">http://gregtyree.com/2008/09/14/html-5-spec-not-released-until-2022/</guid>
		<description><![CDATA[So will we really still be waiting for HTML 5 to get ratified in 2022?&#160; Of course the browsers will be supporting the new version before then and we are starting to see the advancements creep into browsers already.&#160; They &#8230; <a href="http://gregtyree.com/2008/09/14/html-5-spec-not-released-until-2022/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>So will we really still be waiting for HTML 5 to get ratified in 2022?&#160; Of course the browsers will be supporting the new version before then and we are starting to see the <a href="http://www.webmonkey.com/blog/How_HTML_5_Is_Already_Changing_the_Web">advancements</a> creep into browsers already.&#160; They likely will fully support the spec ahead of its official launch but this means that interpretations and more critically implementations can be slightly different and those left building the websites are stuck doing what we do now, accommodate all the variations in how browsers handle the code.</p>
<blockquote><p>Ian Hickson, the editor of the HTML 5 specification, recently <a href="http://blogs.techrepublic.com.com/programming-and-development/?p=718">outlined the time table</a> for HTML 5 and, even assuming browser manufacturers embrace HTML 5 when it reaches the final draft stage, that puts HTML 5&#8217;s widespread adoption at 2012. Worse, the final proposed recommendation won&#8217;t be released until 2022.</p>
</blockquote>
<p><a href="http://www.webmonkey.com/blog/HTML_5_Won_t_Be_Ready_Until_2022DOT_Yes__2022DOT">HTML 5 Won&#8217;t Be Ready Until 2022. Yes, 2022.</a> &#8211; monkey_bites</p>
]]></content:encoded>
			<wfw:commentRss>http://gregtyree.com/2008/09/14/html-5-spec-not-released-until-2022/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Chrome = Fast</title>
		<link>http://gregtyree.com/2008/09/02/chrome-fast/</link>
		<comments>http://gregtyree.com/2008/09/02/chrome-fast/#comments</comments>
		<pubDate>Tue, 02 Sep 2008 20:35:30 +0000</pubDate>
		<dc:creator>gtyree</dc:creator>
				<category><![CDATA[media]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[chrome]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[webdev]]></category>

		<guid isPermaLink="false">http://gregtyree.com/2008/09/02/chrome-fast/</guid>
		<description><![CDATA[Today Google released Chrome a new beta browser that puts Google in direct competition with Microsoft and Mozilla. My first impression (and consistent with other comments and developers) is just how fast it renders web pages.&#160; Now it still has &#8230; <a href="http://gregtyree.com/2008/09/02/chrome-fast/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Today Google released <a href="http://www.google.com/chrome">Chrome</a> a new beta browser that puts Google in direct competition with Microsoft and Mozilla. </p>
<p>My first impression (and consistent with other <a href="http://www.techcrunch.com/2008/09/02/giving-google-chrome-a-spin-this-thing-moves-fast/">comments</a> and <a href="http://tiffanybbrown.com/2008/09/02/notes-on-google-chrome/">developers</a>) is just how fast it renders web pages.&#160; Now it still has its issues and we are working to identify those across all our properties, but man does it seem to out perform my other browsers in my casual tests.</p>
<p>I can&#8217;t wait for more testing to appear online.</p>
]]></content:encoded>
			<wfw:commentRss>http://gregtyree.com/2008/09/02/chrome-fast/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lots following our Tweets</title>
		<link>http://gregtyree.com/2008/08/26/lots-following-our-tweets/</link>
		<comments>http://gregtyree.com/2008/08/26/lots-following-our-tweets/#comments</comments>
		<pubDate>Tue, 26 Aug 2008 19:06:14 +0000</pubDate>
		<dc:creator>gtyree</dc:creator>
				<category><![CDATA[blogs]]></category>
		<category><![CDATA[media]]></category>
		<category><![CDATA[syndication]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[cnn]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[tbs]]></category>
		<category><![CDATA[turner]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://gregtyree.com/2008/08/26/lots-following-our-tweets/</guid>
		<description><![CDATA[I came across another blog post on Technology Evangelist that sent me over to Twitterholic and the following graphic: Interesting mix in the top 100 &#8211; with many 1 way conversations mixed in among the more typical conversational users.&#160; Also &#8230; <a href="http://gregtyree.com/2008/08/26/lots-following-our-tweets/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I came across another <a href="http://www.technologyevangelist.com/2008/08/what_does_twitter_fo.html">blog post</a> on <a href="http://www.technologyevangelist.com/2008/08/what_does_twitter_fo.html">Technology Evangelist</a> that sent me over to <a href="http://www.twitterholic.com/">Twitterholic</a> and the following graphic:</p>
<p><a href="http://www.flickr.com/photos/edkohler/2787753298/"><img height="344" alt="twitter_cnn" src="http://gregtyree.com/wp-content/uploads/2008/08/twitter-cnn.jpg" width="450" /></a></p>
<p>Interesting mix in the top 100 &#8211; with many 1 way conversations mixed in among the more typical conversational users.&#160; Also good to see that CNN creeps into the top 10. </p>
<p><a href="http://www.twitterholic.com/">Twitterholic: Who are these people?</a></p>
]]></content:encoded>
			<wfw:commentRss>http://gregtyree.com/2008/08/26/lots-following-our-tweets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
