<?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>tomputer &#187; web2.0</title>
	<atom:link href="http://droza.net/blog/blog/tags/web20/feed/" rel="self" type="application/rss+xml" />
	<link>http://droza.net/blog</link>
	<description>Software. Gadgets. Music. Rants. By Tom D\&#039;Roza</description>
	<lastBuildDate>Thu, 23 Dec 2010 13:26:37 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
		<item>
		<title>Drawing graphs with Javascript</title>
		<link>http://droza.net/blog/2007/12/04/drawing-graphs-with-javascript/</link>
		<comments>http://droza.net/blog/2007/12/04/drawing-graphs-with-javascript/#comments</comments>
		<pubDate>Tue, 04 Dec 2007 17:20:42 +0000</pubDate>
		<dc:creator>tdroza</dc:creator>
				<category><![CDATA[charts]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[graphs]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[mochikit]]></category>
		<category><![CDATA[plotkit]]></category>
		<category><![CDATA[web2.0]]></category>

		<guid isPermaLink="false">http://droza.net/blog/2007/12/04/drawing-graphs-with-javascript/</guid>
		<description><![CDATA[window.onload = function() { getData(); } If you&#8217;re viewing this post in your feedreader, head over to the site to see the example graph! I&#8217;ve been experimenting with Javascript libraries for building graphs dynamically in the client browser. In the past if I&#8217;ve wanted to create simple bar graphs I&#8217;ve used divs and css &#8211; [...]]]></description>
			<content:encoded><![CDATA[
<!-- wp-jquery-lightbox, a WordPress plugin by ulfben --> 
<p><script src="/blog/wp-content/uploads/2007/12/MochiKit-1.3.1/lib/MochiKit/MochiKit.js" type="text/javascript"></script><br />
<script src="/blog/wp-content/uploads/2007/12/plotkit-0.9.1/PlotKit/Base.js" type="text/javascript"></script><br />
<script src="/blog/wp-content/uploads/2007/12/plotkit-0.9.1/PlotKit/Layout.js" type="text/javascript"></script><br />
<script src="/blog/wp-content/uploads/2007/12/plotkit-0.9.1/PlotKit/Canvas.js" type="text/javascript"></script><br />
<script src="/blog/wp-content/uploads/2007/12/plotkit-0.9.1/PlotKit/excanvas.js" type="text/javascript"></script><br />
<script src="/blog/wp-content/uploads/2007/12/plotkit-0.9.1/PlotKit/SweetCanvas.js" type="text/javascript"></script><br />
<script src="/blog/wp-content/uploads/2007/12/BTShareGraph.js" type="text/javascript"></script><br />
<script type="text/javascript" language="javascript">   window.onload = function() {     getData();   } </script><br />
<em> If you&#8217;re viewing this post in your feedreader, head over to the site to see the example graph!</em></p>
<p>I&#8217;ve been experimenting with Javascript libraries for building graphs dynamically in the client browser.  In the past if I&#8217;ve wanted to create simple bar graphs I&#8217;ve used divs and css &#8211; an approach has the advantage of being super lightweight (read &#8220;fast&#8221;) and usually works cross-browser without too much hassle. The big disadvantage is that it&#8217;s inflexible (limited to bar graphs and difficult to update the data once the graph has been rendered) and is a pain to code if there&#8217;s more than a couple of rows of data to be plotted.</p>
<p>A few minutes on Google last week came up with a couple of examples of Javacript libraries that can produce much fancier graphs. I&#8217;ve settled on <a href="http://www.liquidx.net/plotkit/" title="PlotKit">PlotKit</a> because it produces beautiful graphs, works in the major browsers (using either Canvas or SVG)  and has the most developer friendly licence, .</p>
<p>The example below gets a feed of the BT shareprice from Google (fed through a Yahoo Pipe to convert to JSON &#8211; the <a href="http://pipes.yahoo.com/pipes/pipe.info?_id=xLjkFsCd3BGoDvL7yZ1_DQ" title="Shareprice Pipe">pipe </a>can be reused as it takes the ticker symbol as a parameter). It then iterates over the feed data to populate the graph and finally calls render() on the graph object.</p>
<p>A handy library to keep in your developer toolbox!</p>
<p><em>Although not relevant for the data I&#8217;m graphing here, PlotKit can also draw really sweet <a href="http://media.liquidx.net/js/plotkit-tests/svg-sweet.html" title="PlotKit example graphs">pie charts</a>. </em></p>
<div><canvas id="graph" height="300" width="450"></canvas></div>
<p><br/></p>
<div><a href="javascript:setStyle('bar')">View As Bar</a> | <a href="javascript:setStyle('line')">View As Line</a></div>
<p><br/></p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fdroza.net%2Fblog%2F2007%2F12%2F04%2Fdrawing-graphs-with-javascript%2F&amp;title=Drawing+graphs+with+Javascript" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fdroza.net%2Fblog%2F2007%2F12%2F04%2Fdrawing-graphs-with-javascript%2F&amp;title=Drawing+graphs+with+Javascript" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fdroza.net%2Fblog%2F2007%2F12%2F04%2Fdrawing-graphs-with-javascript%2F&amp;title=Drawing+graphs+with+Javascript" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Fdroza.net%2Fblog%2F2007%2F12%2F04%2Fdrawing-graphs-with-javascript%2F&amp;title=Drawing+graphs+with+Javascript" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Fdroza.net%2Fblog%2F2007%2F12%2F04%2Fdrawing-graphs-with-javascript%2F&amp;title=Drawing+graphs+with+Javascript', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://images.del.icio.us/static/img/delicious.small.gif" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fdroza.net%2Fblog%2F2007%2F12%2F04%2Fdrawing-graphs-with-javascript%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fdroza.net%2Fblog%2F2007%2F12%2F04%2Fdrawing-graphs-with-javascript%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fdroza.net%2Fblog%2F2007%2F12%2F04%2Fdrawing-graphs-with-javascript%2F&amp;title=Drawing+graphs+with+Javascript" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fdroza.net%2Fblog%2F2007%2F12%2F04%2Fdrawing-graphs-with-javascript%2F&amp;title=Drawing+graphs+with+Javascript" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span>]]></content:encoded>
			<wfw:commentRss>http://droza.net/blog/2007/12/04/drawing-graphs-with-javascript/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Google gadgets</title>
		<link>http://droza.net/blog/2007/10/24/google-gadgets/</link>
		<comments>http://droza.net/blog/2007/10/24/google-gadgets/#comments</comments>
		<pubDate>Wed, 24 Oct 2007 12:59:19 +0000</pubDate>
		<dc:creator>tdroza</dc:creator>
				<category><![CDATA[code]]></category>
		<category><![CDATA[gadgets]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[web2.0]]></category>
		<category><![CDATA[widgets]]></category>

		<guid isPermaLink="false">http://droza.net/blog/2007/10/24/google-gadgets/</guid>
		<description><![CDATA[So I&#8217;ve been messing around with various different widget frameworks on and off over the last few months as preparation for a workshop I&#8217;m going to be involved with. I started out with Yahoo Widgets (née Konfabulator) mainly because the examples that I&#8217;d seen looked the prettiest. Although perhaps not strictly widgets, I&#8217;ve also started [...]]]></description>
			<content:encoded><![CDATA[
<!-- wp-jquery-lightbox, a WordPress plugin by ulfben --> 
<p>So I&#8217;ve been messing around with various different widget frameworks on and off over the last few months as preparation for a workshop I&#8217;m going to be involved with. I started out with Yahoo Widgets (née Konfabulator) mainly because the examples that I&#8217;d seen looked the prettiest. Although perhaps not strictly widgets, I&#8217;ve also started to look at facebook applications, but that&#8217;s a subject for another day. My favoured widget framework at the moment is Google Gadgets for a number of reasons:</p>
<ul>
<li>The barrier to entry is low because it&#8217;s pretty much standard javascript and html with an xml descriptor.</li>
<li>You write a gadget once and can view it in <a href="http://www.google.com/ig">iGoogle</a>, <a href="http://desktop.google.com">GoogleDesktop</a>, <a href="http://www.blogger.com">Blogger </a>or in an iframe embedded in any webpage.</li>
<li>As with all Google APIs the <a href="http://www.google.com/apis/gadgets">documentation</a> is great and there&#8217;s a lot of developer support.</li>
<li>It plays nicely with other Google APIs.</li>
<li>&#8230;finally, if you&#8217;re going to back one widget framework, who would bet against Google?</li>
</ul>
<p>I find the best way to learn is just to get stuck in so I created a couple of <a href="http://www.google.com/ig/directory?q=tdroza&amp;btnG=Search+Homepage+Content">simple examples</a>, one to display a user&#8217;s timeline from <a href="http://twitter.com">twitter</a> and another to display recent announcements made on another site I wrote, <a href="http://www2.bt.com/beta/apps/tellm">Tell&#8217;M</a>. They both follow very similar principles: pull down an rss feed, parse it for interesting fields and render the display. Both also have a few user preferences that can be set to customise the feed.</p>
<p><script src="http://gmodules.com/ig/ifr?url=http://www.btinternet.com/~tdroza/gadgets/twitter/index.xml&amp;up_username=tdroza&amp;up_feed=http%3A%2F%2Ftwitter.com%2Fstatuses%2Ffriends_timeline%2F&amp;up_max_items=3&amp;synd=open&amp;w=320&amp;h=200&amp;title=&amp;border=%23ffffff%7C3px%2C1px+solid+%23999999&amp;output=js"></script></p>
<p><script src="http://gmodules.com/ig/ifr?url=http://www.btinternet.com/~tdroza/gadgets/tellm/index.xml&amp;up_max_items=3&amp;synd=open&amp;w=320&amp;h=200&amp;title=Tell\\'M+-+announce+it+to+the+world&amp;border=%23ffffff%7C3px%2C1px+solid+%23999999&amp;output=js"></script></p>
<p>My interest had moved on to <a href="http://www.bt.com/btfon">other</a> <a href="http://developer.facebook.com/">things</a> recently but this week I started to look at gadgets again because the workshop is coming up soon. I found my two gadgets in the <a href="http://www.google.com/ig/directory?q=tdroza&amp;btnG=Search+Homepage+Content">google directory</a> and was disheartened to see that my twitter gadget had received two negative comments &#8211; one because of a security restriction of ajax (cross-domain policy) and twitter (which will only accept a POST to update status so I can&#8217;t use <a href="http://jayfresh.wordpress.com/2007/09/17/using-script-tags-to-do-remote-http-calls-in-javascript/">script injection</a>). After a bit more digging around I found that Google now display average weekly page views for gadgets and my twitter gadget is receiving <a href="http://www.google.com/ig/directory?synd=open&amp;source=gapi&amp;num=24&amp;url=http://www.btinternet.com/~tdroza/gadgets/twitter/index.xml">14,546</a> page views per week! I guess it&#8217;s easy for a developer to do something just to satisfy their own curiosity and think that nobody else will ever use it. I&#8217;ve now added Google Analytics to both my gadgets just to check that all those page view are not generated by me! <img src='http://droza.net/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fdroza.net%2Fblog%2F2007%2F10%2F24%2Fgoogle-gadgets%2F&amp;title=Google+gadgets" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fdroza.net%2Fblog%2F2007%2F10%2F24%2Fgoogle-gadgets%2F&amp;title=Google+gadgets" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fdroza.net%2Fblog%2F2007%2F10%2F24%2Fgoogle-gadgets%2F&amp;title=Google+gadgets" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Fdroza.net%2Fblog%2F2007%2F10%2F24%2Fgoogle-gadgets%2F&amp;title=Google+gadgets" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Fdroza.net%2Fblog%2F2007%2F10%2F24%2Fgoogle-gadgets%2F&amp;title=Google+gadgets', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://images.del.icio.us/static/img/delicious.small.gif" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fdroza.net%2Fblog%2F2007%2F10%2F24%2Fgoogle-gadgets%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fdroza.net%2Fblog%2F2007%2F10%2F24%2Fgoogle-gadgets%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fdroza.net%2Fblog%2F2007%2F10%2F24%2Fgoogle-gadgets%2F&amp;title=Google+gadgets" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fdroza.net%2Fblog%2F2007%2F10%2F24%2Fgoogle-gadgets%2F&amp;title=Google+gadgets" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span>]]></content:encoded>
			<wfw:commentRss>http://droza.net/blog/2007/10/24/google-gadgets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tech superstars at Future of Web Apps</title>
		<link>http://droza.net/blog/2007/10/08/tech-superstars-at-future-of-web-apps/</link>
		<comments>http://droza.net/blog/2007/10/08/tech-superstars-at-future-of-web-apps/#comments</comments>
		<pubDate>Mon, 08 Oct 2007 10:58:12 +0000</pubDate>
		<dc:creator>tdroza</dc:creator>
				<category><![CDATA[fowa]]></category>
		<category><![CDATA[tech]]></category>
		<category><![CDATA[web2.0]]></category>
		<category><![CDATA[digg]]></category>
		<category><![CDATA[diggnation]]></category>
		<category><![CDATA[kevin rose]]></category>
		<category><![CDATA[leah culver]]></category>
		<category><![CDATA[pownce]]></category>

		<guid isPermaLink="false">http://droza.net/blog/2007/10/08/tech-superstars-at-future-of-web-apps/</guid>
		<description><![CDATA[Last week I attended the 2-day Future of Web Apps conference at London&#8217;s ExCel. I really enjoyed this conference &#8211; there were some great speakers and I learned a lot. I hope to write a couple more posts this week covering the highlights. One of the weirdest experiences was attending presentations by people that I&#8217;ve [...]]]></description>
			<content:encoded><![CDATA[
<!-- wp-jquery-lightbox, a WordPress plugin by ulfben --> 
<p>Last week I attended the 2-day <em><a href="http://www.futureofwebapps.com">Future of Web Apps</a> </em>conference at London&#8217;s ExCel. I really enjoyed this conference &#8211; there were some great speakers and I learned a lot. I hope to write a couple more posts this week covering the highlights.</p>
<p>One of the weirdest experiences was  attending presentations by people that I&#8217;ve never met before but whose blogs I read/websites I use/podcasts I listen to or watch. It&#8217;s strange how I read <a href="http://news.bbc.co.uk">BBCNews</a> nearly every day, and on Sundays I often read <a href="http://timesonline.co.uk/tol/newspapers/sunday_times/?days=Sunday">The Times</a>, but I&#8217;ve no idea who the people are that write the articles I read and yet in the tech world I know a surprising amount about the people behind sites such as <a href="http://gigaom.com/">GigaOM</a>, <a href="http://www.scripting.com/">ScriptingNews</a>, <a href="http://scobleizer.com/">Scobelizer</a> (for example I know that Dave Winer has <a href="http://www.scripting.com/stories/2007/09/25/nokiaN800Update.html">just got</a> a Nokia <a href="http://en.wikipedia.org/wiki/Nokia_N800">N800</a> and the Robert and his wife Maryam have just had a new baby son, <a href="http://www.scripting.com/stories/2007/09/14/scobleAndMaryamSittinInATr.html">Milan</a>).<span id="more-22"></span></p>
<p>As I was standing in the queue to collect my expo pass at FoWA I saw Leah Culver and  Daniel Burka standing next to me in the line. I almost said &#8220;hi&#8221; but stopped myself when I realised that doing so would make me look like a stalker or obsessive fan and would probably make them (and me) feel uncomfortable. I can just imagine the conversation with me saying &#8220;hi, I err, like you website&#8221; and them saying &#8220;thanks&#8221; and then us both standing there nervously with nothing else to say.  Is this what people mean by &#8220;star struck&#8221; I wonder?:-)</p>
<p>The most surreal part of the whole conference though had to be the reaction to <a href="http://kevinrose.com/">Kevin Rose</a> and the <a href="http://www.revision3.com/diggnation">Diggnation</a> live show. The first experience of this was when Kevin came on stage during the first day to give his presentation. Even while he was setting up, dozens of people went up to the stage to take his picture. I even took a picture of them taking his picture <img src='http://droza.net/blog/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p><img src="http://farm2.static.flickr.com/1312/1477637161_ba34fdb43a.jpg" title="Clamouring for a pic of Kevin Rose at FoWA" alt="Clamouring for a pic of Kevin Rose at FoWA" height="375" width="500" /></p>
<p>This was nothing compared with the Diggnation show itself though. The way the crowd reacted to the appearance of Kevin and Alex Albrecht (and even producer David Prager and Digg CEO Jay Adelson) was the kind of reaction normally reserved for Hollywood actors and rock stars. At the end of the show the crown stormed the stage and there was a sea of cameraphones being held above the crowd searching for a picture of their heroes. I should say at this point that I&#8217;m a big fan of diggnation (since Ep1, oh yeah!) and seeing the London show live was hilarious.</p>
<p>The whole experience made me wonder whether this was nothing more than a bunch of geeks  geeking-out  (I include myself in that group) or something more significant. Is it another example of the social networking phenomenon making unlikely stars out of the most unlikely people and are we now in the middle of &#8220;bubble 2.0&#8243;?</p>
]]></content:encoded>
			<wfw:commentRss>http://droza.net/blog/2007/10/08/tech-superstars-at-future-of-web-apps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tell&#8217;M</title>
		<link>http://droza.net/blog/2007/08/14/tellm-2/</link>
		<comments>http://droza.net/blog/2007/08/14/tellm-2/#comments</comments>
		<pubDate>Tue, 14 Aug 2007 21:24:20 +0000</pubDate>
		<dc:creator>tdroza</dc:creator>
				<category><![CDATA[maps]]></category>
		<category><![CDATA[web2.0]]></category>

		<guid isPermaLink="false">http://droza.net/blog/2007/08/14/tellm-2/</guid>
		<description><![CDATA[Tell&#8217;M is an app I&#8217;ve been working on in the background for a few weeks. The idea is that it becomes a kind of online version of the announcement pages from the local newspaper but with all the usual web2.o goodness of tagging, data feeds (rss and kml so far) and comments. A location is [...]]]></description>
			<content:encoded><![CDATA[
<!-- wp-jquery-lightbox, a WordPress plugin by ulfben --> 
<p><a href="http://www2.bt.com/beta/apps/tellm" title="Tell'M">Tell&#8217;M</a> is an app I&#8217;ve been working on in the background for a few weeks. The idea is that it becomes a kind of online version of the announcement pages from the local newspaper but with all the usual web2.o goodness of tagging, data feeds (<a href="http://www2.bt.com/beta/apps/tellm/feeds/announcements.rss">rss </a>and <a href="http://www2.bt.com/beta/apps/tellm/feeds/announcements.kml">kml</a> so far) and comments. A location is specified for each new announcement which allows us to produce a rolling map of posts, <a href="http://www.twittervision.com">twittervision</a> style (yes, on a google map, and yes I know, everything I&#8217;ve done recently has involved google maps!). I&#8217;ve also recently added the ability to associate a photo when making a new announcement: We decided not to let users upload their images to us because there are already tons of sites that do a great job of online photo storage (and who wants to have another place to upload pics to, right?) so instead we let users search flickr by tag, location or flickr username. To do this I&#8217;ve used the (very cool) flickr <a href="http://www.flickr.com/services/api/response.json.html">JSON API</a> and I&#8217;ve also played around with Google&#8217;s picasaweb api to see if I could do something similar with their site.</p>
<p>As well as allowing users to keep up with Tell&#8217;M in their favourite feed reader, the rss feeds allow us (or anyone else) to consume Tell&#8217;M data in other apps. Along these lines a colleague has already created a widsets application for Tell&#8217;M to allow posts (including images) to be viewed on a mobile phone (go to the widsets <a href="https://www.widsets.com/widgets">library</a> and search for &#8220;BT&#8221;), and I&#8217;ve created a <a href="http://www.google.com/ig/directory?root=%2Fig&amp;dpos=top&amp;num=24&amp;url=http://www.btinternet.com/~tdroza/gadgets/tellm/index.xml">google gadget</a> (more on this in a later blog post).</p>
<p>So far this one seems to have generated quite a bit of interest amongst our team and everyone seems to have feature suggestions, which has to be a positive sign. Also, Mike Pegg from the <a href="http://googlemapsmania.blogspot.com">GoogleMapsMania</a> blog covered Tell&#8217;M <a href="http://googlemapsmania.blogspot.com/2007/08/make-announcement-or-watch-live.html">here</a>, and it&#8217;s also been featured by <a href="http://www.btplc.com/Innovation/Strategy/tellm/index.htm">BTInnovations</a>.</p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fdroza.net%2Fblog%2F2007%2F08%2F14%2Ftellm-2%2F&amp;title=Tell%26%238217%3BM" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fdroza.net%2Fblog%2F2007%2F08%2F14%2Ftellm-2%2F&amp;title=Tell%26%238217%3BM" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fdroza.net%2Fblog%2F2007%2F08%2F14%2Ftellm-2%2F&amp;title=Tell%26%238217%3BM" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Fdroza.net%2Fblog%2F2007%2F08%2F14%2Ftellm-2%2F&amp;title=Tell%26%238217%3BM" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Fdroza.net%2Fblog%2F2007%2F08%2F14%2Ftellm-2%2F&amp;title=Tell%26%238217%3BM', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://images.del.icio.us/static/img/delicious.small.gif" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fdroza.net%2Fblog%2F2007%2F08%2F14%2Ftellm-2%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fdroza.net%2Fblog%2F2007%2F08%2F14%2Ftellm-2%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fdroza.net%2Fblog%2F2007%2F08%2F14%2Ftellm-2%2F&amp;title=Tell%26%238217%3BM" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fdroza.net%2Fblog%2F2007%2F08%2F14%2Ftellm-2%2F&amp;title=Tell%26%238217%3BM" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span>]]></content:encoded>
			<wfw:commentRss>http://droza.net/blog/2007/08/14/tellm-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

