<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:go='http://ns.gigaom.com/'
xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>GigaOM &#187; Collaboration</title>
	<atom:link href="http://gigaom.com/collaboration/tag/yahoo-pipes/feed/" rel="self" type="application/rss+xml" />
	<link>http://gigaom.com</link>
	<description></description>
	<lastBuildDate>Sat, 26 May 2012 12:01:13 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='gigaom.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://0.gravatar.com/blavatar/0db8f6557d022075dbbf010c54d46d93?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>GigaOM &#187; Collaboration</title>
		<link>http://gigaom.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://gigaom.com/osd.xml" title="GigaOM" />
	<atom:link rel='hub' href='http://gigaom.com/?pushpress=hub'/>
		<item>
		<title>Fun With the Twitter API: No Programming Required</title>
		<link>http://gigaom.com/collaboration/fun-with-the-twitter-api-no-programming-required/</link>
		<comments>http://gigaom.com/collaboration/fun-with-the-twitter-api-no-programming-required/#comments</comments>
		<pubDate>Fri, 08 Apr 2011 17:01:47 +0000</pubDate>
		<dc:creator>Dawn Foster</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[API]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[Yahoo Pipes]]></category>

		<guid isPermaLink="false">http://gigaom.com/?p=325365</guid>
		<description><![CDATA[You don't need to be a software developer or hardcore techie to use APIs. In fact, some web APIs, like the Twitter API, are relatively easy to use, and you can use them get access to useful and otherwise hidden data. <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&#038;blog=14960843&#038;post=325365&#038;subd=gigaom2&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div>
<p>You don&#8217;t need to be a software developer or hardcore techie to use APIs. In fact, some web APIs, like the <a href="http://dev.twitter.com/">Twitter API</a>, are relatively easy to use, and you can use them get access to useful and otherwise hidden data. When you start looking into APIs, you&#8217;ll also see how simple some of those web applications really are when you discover the underlying API calls used to build them.</p>
<p>Before you can start to play with Twitter&#8217;s API, you&#8217;ll need to know a few API basics. You can find information about constructing URLs, rate limiting, keys and more in my <a href="http://gigaom.com/collaboration/using-apis-not-quite-as-hard-as-it-looks/">previous post about using APIs</a>. Now, let&#8217;s look at a few fun things you can do with <a href="http://dev.twitter.com/">Twitter&#8217;s API</a>.</p>
<h2>Show User Data</h2>
<p><a rel="attachment wp-att-325380" href="http://gigaom.com/collaboration/fun-with-the-twitter-api-no-programming-required/screen-shot-2011-04-03-at-9-47-10-am/"><img  title="Twitter show/user API call" src="http://gigaom2.files.wordpress.com/2011/04/screen-shot-2011-04-03-at-9-47-10-am.png?w=300&h=183" alt="" width="300" height="183" class="alignright size-medium wp-image-325380" /></a>The various web applications that do simple things like showing when a user joined Twitter are probably using data from the <a href="http://dev.twitter.com/doc/get/users/show">users/show API call</a>. While most of this data can be found by looking at a user&#8217;s profile page, there are a few interesting tidbits that are only in the API, like account creation date (<em>created_at</em>), number of favorites (<em>favourites_count</em>), time zone (<em>time_zone</em>), ID number (<em>id</em>) and more.</p>
<pre>http://api.twitter.com/1/users/show.xml?screen_name=geekygirldawn</pre>
<p>In this example, you should replace <em>geekygirldawn</em> with the username that you want to learn more about.</p>
<h2>Friend Data</h2>
<p>The <a href="http://dev.twitter.com/doc/get/statuses/friends">statuses/friends API call</a> is a fun way to get the data we got using at in the users/show call, but for all of the people a particular user is following. The data is displayed for 100 users at a time with the most recently followed users at the top.</p>
<pre>http://api.twitter.com/1/statuses/friends.xml?screen_name=geekygirldawn&amp;cursor=-1</pre>
<p>Again, replace <em>geekygirldawn</em> with the username that you want to learn more about.</p>
<p>Unfortunately, it doesn&#8217;t seem to have a way to sort by oldest friends first (or at least no documented way in the API) without some additional programming required. However, adding the <em>cursor=-1</em> option, shown above, does let you page through the results. To get the next page of results, scroll to the bottom of the results to find the <em>next_cursor</em> attribute value, and replace the -1 in the above call with the value found in <em>next_cursor</em>. It should look something like this:</p>
<pre>http://api.twitter.com/1/statuses/friends.xml?screen_name=geekygirldawn&amp;cursor=1320699204947613644</pre>
<h2>Follower Data</h2>
<p>The <a href="http://dev.twitter.com/doc/get/statuses/followers">statuses/followers API call</a> is very similar to the statuses/friends API call, but it returns data about the people who have followed a certain account. It&#8217;s an interesting way to get all kinds of relevant data on one page about the people who have recently followed you. Like the statuses/friends call above, the data is displayed for 100 users at a time with the most recently followed users at the top.</p>
<pre>http://api.twitter.com/1/statuses/followers.xml?screen_name=geekygirldawn&amp;cursor=-1</pre>
<p>Like the other examples, you should replace <em>geekygirldawn</em> with the username that you want to learn about. You can also page through the results using the<em> next_cursor</em> attribute described in the above example.</p>
<h2>Important Information You Should Know</h2>
<ul>
<li><strong><a href="http://dev.twitter.com/pages/rate-limiting">Rate Limiting</a>.</strong> Using this technique to get data from the Twitter API results in a limit of 150 calls per IP address per hour, which is fine for most users. However, those of us who work at large corporations where most of the company&#8217;s Internet traffic goes out under a single or small number of IP addresses will find ourselves almost immediately rate limited, so doing this from home is probably a better option. Developers get around this by authenticating with the Twitter API, but that&#8217;s a little more complicated.</li>
<li><strong>Viewing XML.</strong> Some browsers do a better job than others in displaying XML from the Twitter API in a format easily read by humans. While I use <a href="https://chrome.google.com">Chrome</a> for most of my web browsing, I like to view XML / RSS using <a href="http://www.mozilla.org/products/firefox/">Firefox</a>, since it displays a nicely formatted structure for the data. You can also save the XML as a file and view it in your favorite text / code editor.</li>
</ul>
</div>
<p><strong>Related research and analysis from GigaOM Pro:</strong><br />Subscriber content. <a href="http://pro.gigaom.com/?utm_source=collaboration&utm_medium=editorial&utm_campaign=auto3&utm_term=325365+fun-with-the-twitter-api-no-programming-required&utm_content=geekygirldawn">Sign up for a free trial</a>.</p><ul><li><a href="http://pro.gigaom.com/2010/05/big-data-marketplaces-put-a-price-on-finding-patterns/?utm_source=collaboration&amp;utm_medium=editorial&amp;utm_campaign=waterfall?utm_source=collaboration&utm_medium=editorial&utm_campaign=auto3&utm_term=325365+fun-with-the-twitter-api-no-programming-required&utm_content=geekygirldawn">Big Data Marketplaces Put a Price on Finding&nbsp;Patterns</a></li><li><a href="http://pro.gigaom.com/2011/04/predicting-twitters-best-business-opportunities/?utm_source=collaboration&amp;utm_medium=editorial&amp;utm_campaign=waterfall?utm_source=collaboration&utm_medium=editorial&utm_campaign=auto3&utm_term=325365+fun-with-the-twitter-api-no-programming-required&utm_content=geekygirldawn">Predicting Twitter&#8217;s Best Business&nbsp;Opportunities</a></li><li><a href="http://pro.gigaom.com/2011/03/defining-hadoop-the-players-technologies-and-challenges-of-2011/?utm_source=collaboration&amp;utm_medium=editorial&amp;utm_campaign=waterfall?utm_source=collaboration&utm_medium=editorial&utm_campaign=auto3&utm_term=325365+fun-with-the-twitter-api-no-programming-required&utm_content=geekygirldawn">Defining Hadoop: the Players, Technologies and Challenges of&nbsp;2011</a></li></ul><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&#038;blog=14960843&#038;post=325365&#038;subd=gigaom2&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gigaom.com/collaboration/fun-with-the-twitter-api-no-programming-required/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	 <go:thumbnail>http://gigaom2.files.wordpress.com/2011/04/screen-shot-2011-04-03-at-9-47-10-am.png?w=130</go:thumbnail> 
		<media:thumbnail url="http://gigaom2.files.wordpress.com/2011/04/screen-shot-2011-04-03-at-9-47-10-am.png?w=210" />
		<media:content url="http://gigaom2.files.wordpress.com/2011/04/screen-shot-2011-04-03-at-9-47-10-am.png?w=210" medium="image">
			<media:title type="html">Twitter show/user API call</media:title>
		</media:content>

		<media:content url="http://1.gravatar.com/avatar/506e49a7dae9eb8bd05bb64a5169cfa4?s=96&#38;d=retro&#38;r=PG" medium="image">
			<media:title type="html">Dawn</media:title>
		</media:content>

		<media:content url="http://gigaom2.files.wordpress.com/2011/04/screen-shot-2011-04-03-at-9-47-10-am.png?w=300" medium="image">
			<media:title type="html">Twitter show/user API call</media:title>
		</media:content>
	</item>
		<item>
		<title>How to Hack RSS to Reduce Information Overload</title>
		<link>http://gigaom.com/collaboration/how-to-hack-rss-to-reduce-information-overload/</link>
		<comments>http://gigaom.com/collaboration/how-to-hack-rss-to-reduce-information-overload/#comments</comments>
		<pubDate>Fri, 25 Mar 2011 14:00:51 +0000</pubDate>
		<dc:creator>Dawn Foster</dc:creator>
				<category><![CDATA[@CNN]]></category>
		<category><![CDATA[APIs]]></category>
		<category><![CDATA[hacking rss]]></category>
		<category><![CDATA[information overload]]></category>
		<category><![CDATA[RSS]]></category>
		<category><![CDATA[SXSW]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[Yahoo Pipes]]></category>

		<guid isPermaLink="false">http://gigaom.com/?p=321530</guid>
		<description><![CDATA[The key to cutting information overload is to more efficiently find the data that you want among the data that you don't care about. I wanted to share some of the techniques that I use to hack and filter my RSS feed to prioritize relevant information.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&#038;blog=14960843&#038;post=321530&#038;subd=gigaom2&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>﻿<a rel="attachment wp-att-321574" href="http://gigaom.com/collaboration/how-to-hack-rss-to-reduce-information-overload/3292307605_897000c0f3_z/"><img  title="Information Overload Fire Hydrant" src="http://gigaom2.files.wordpress.com/2011/03/3292307605_897000c0f3_z.jpg?w=300&h=206" alt="" width="300" height="206" class="alignright size-medium wp-image-321574" /></a>Last week, I held a session at <a href="http://sxsw.com/interactive">SXSW Interactive</a> titled <em><a href="http://fastwonderblog.com/2011/03/11/hacking-rss-filtering-processing-obscene-amounts-of-information-at-sxsw/">Hacking RSS: Filtering &amp; Processing Obscene Amounts of Information</a></em>, where I talked about creative ways to use RSS to manage information overload without using any programming skills.</p>
<p>There is more information available in the world than any one person could hope to consume (<a href="http://uscnews.usc.edu/science_technology/how_much_information_is_there_in_the_world.html?view=full">hundreds of exabytes of data</a>), but most of that information is uninteresting, out of date, inaccurate, or not relevant for you. The key to reducing information overload is to more efficiently find the data you want among the information that you don&#8217;t care about. The tools that I talked about in my SXSW session are focused on discarding or de-emphasizing the data you don&#8217;t need, while highlighting the data that&#8217;s relevant for you. I wanted to share some of what I talked about during my presentation.</p>
<p>Individual RSS feeds from blogs, news and other sources are a great starting point for your information overload reduction efforts. Some individual RSS feeds from friends&#8217; blogs or the top people in your field might almost always be relevant and won&#8217;t need any other work. But what about the blogs where one in five or one in 10 posts are relevant for you? How do you narrow them down to a manageable flow of information that allows you to keep up with at least the most important content?</p>
<p><a rel="attachment wp-att-321567" href="http://gigaom.com/collaboration/how-to-hack-rss-to-reduce-information-overload/pipes_filtering_ex-2/"><img  title="Yahoo Pipes Filtering Example" src="http://gigaom2.files.wordpress.com/2011/03/pipes_filtering_ex1.png?w=300&h=280" alt="" width="300" height="280" class="alignright size-medium wp-image-321567" /></a>While there are <a href="http://gigaom.com/collaboration/tips-for-handling-information-overload-too-much-content/">some simple ways to make better use of your RSS reader</a> to manage information overload, the real magic is in filtering. <a href="http://gigaom.com/collaboration/filter-your-rss-feeds-with-yahoo-pipes/">My favorite filtering tool is Yahoo Pipes</a>, which lets me filter an RSS feed using various criteria: URL, author, date, content and more. Some examples of filtered feeds in my reader right now include industry analyst blogs filtered to only find posts about online community; searches across social websites where my projects are mentioned; and my some blogs filtered for just the best posts using <a href="http://www.postrank.com/main">PostRank</a>. The image on the right contains a simple Yahoo Pipes filtering example from my SXSW presentation.</p>
<p><a rel="attachment wp-att-321570" href="http://gigaom.com/collaboration/how-to-hack-rss-to-reduce-information-overload/postrank-example/"><img  title="PostRank Example" src="http://gigaom2.files.wordpress.com/2011/03/postrank-example.png?w=300&h=226" alt="" width="300" height="226" class="alignright size-medium wp-image-321570" /></a>PostRank is a great service that allows you to get the best posts from any feed based on an &#8220;engagement&#8221; ranking score that incorporates measures like comments, Diggs, sharing on social sites like Twitter, and more. The best thing about PostRank is that you can get an RSS feed of just the best posts from a particular publisher, and that feed then includes the PostRank score, which means that you can do even more hacking on the PostRank RSS feed using Yahoo Pipes. One useful way to use PostRank and Yahoo Pipes is to take several feeds containing only the best posts from a few of your favorite blogs, and filter those top posts to find only the articles mentioning a specific group of keywords using Yahoo Pipes. Because the PostRank feed includes the rank, you can even sort the results so that the highest ranked posts appear at the top of your feed. The image to the right shows an example of how you might do this.</p>
<p><a rel="attachment wp-att-321573" href="http://gigaom.com/collaboration/how-to-hack-rss-to-reduce-information-overload/modify-rss-example/"><img  title="Modify RSS Example" src="http://gigaom2.files.wordpress.com/2011/03/modify-rss-example.png?w=300&h=209" alt="" width="300" height="209" class="alignright size-medium wp-image-321573" /></a>Another technique that helps me to consume information more efficiently is to modify the format of many of my RSS feeds; I bring relevant information into the headlines of the feed to make it easier to quickly scan it to determine which posts are important enough for me to click on them for more details. By bringing more details into the title, I can avoid spending time clicking to get more information. There&#8217;s an example of reformatting a Twitter RSS feed in the image to the right.</p>
<p>The final trick is to <a href="http://gigaom.com/collaboration/using-apis-not-quite-as-hard-as-it-looks/">use Web APIs</a> to gather additional data that can&#8217;t be found in an RSS feed. I&#8217;ve written about <a href="http://gigaom.com/collaboration/using-apis-not-quite-as-hard-as-it-looks/">using APIs</a> before, so I won&#8217;t go into much detail here, but you can see an example of how I&#8217;ve used several APIs together with Yahoo Pipes to build an RSS feed of people posting links from Twitter to my blog posts on <a href="http://www.slideshare.net/geekygirldawn/sxsw-hacking-rss-filtering-processing-obscene-amounts-of-information">slides 17 &#8211; 23 of my presentation</a>.</p>
<p>You can <a href="http://schedule.sxsw.com/events/event_IAP7396">listen to the audio from my session</a> and <a href="http://www.slideshare.net/geekygirldawn/sxsw-hacking-rss-filtering-processing-obscene-amounts-of-information">download the slides here</a>.</p>
<p><em>What are your favorite RSS hacking tools and techniques to manage information overload?</em></p>
<p><em><a href="http://www.flickr.com/photos/25031050@N06/3292307605/">Photo</a> <a href="http://creativecommons.org/licenses/by-sa/2.0/deed.en">courtesy</a> Flickr user <a href="http://www.flickr.com/photos/25031050@N06/">SparkCBC</a>.</em></p>
<p><strong>Related research and analysis from GigaOM Pro:</strong><br />Subscriber content. <a href="http://pro.gigaom.com/?utm_source=collaboration&utm_medium=editorial&utm_campaign=auto3&utm_term=321530+how-to-hack-rss-to-reduce-information-overload&utm_content=geekygirldawn">Sign up for a free trial</a>.</p><ul><li><a href="http://pro.gigaom.com/2010/05/big-data-marketplaces-put-a-price-on-finding-patterns/?utm_source=collaboration&amp;utm_medium=editorial&amp;utm_campaign=waterfall?utm_source=collaboration&utm_medium=editorial&utm_campaign=auto3&utm_term=321530+how-to-hack-rss-to-reduce-information-overload&utm_content=geekygirldawn">Big Data Marketplaces Put a Price on Finding&nbsp;Patterns</a></li><li><a href="http://pro.gigaom.com/2011/03/the-near-term-evolution-of-social-commerce/?utm_source=collaboration&amp;utm_medium=editorial&amp;utm_campaign=waterfall?utm_source=collaboration&utm_medium=editorial&utm_campaign=auto3&utm_term=321530+how-to-hack-rss-to-reduce-information-overload&utm_content=geekygirldawn">The Near-Term Evolution of Social&nbsp;Commerce</a></li><li><a href="http://pro.gigaom.com/2011/02/are-comments-facebooks-next-big-service/?utm_source=collaboration&amp;utm_medium=editorial&amp;utm_campaign=waterfall?utm_source=collaboration&utm_medium=editorial&utm_campaign=auto3&utm_term=321530+how-to-hack-rss-to-reduce-information-overload&utm_content=geekygirldawn">Are Comments Facebook’s Next Big&nbsp;Service?</a></li></ul><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&#038;blog=14960843&#038;post=321530&#038;subd=gigaom2&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gigaom.com/collaboration/how-to-hack-rss-to-reduce-information-overload/feed/</wfw:commentRss>
		<slash:comments>16</slash:comments>
	 <go:thumbnail>http://gigaom2.files.wordpress.com/2011/03/3292307605_897000c0f3_z.jpg?w=130</go:thumbnail> 
		<media:thumbnail url="http://gigaom2.files.wordpress.com/2011/03/3292307605_897000c0f3_z.jpg?w=203" />
		<media:content url="http://gigaom2.files.wordpress.com/2011/03/3292307605_897000c0f3_z.jpg?w=203" medium="image">
			<media:title type="html">Information Overload Fire Hydrant</media:title>
		</media:content>

		<media:content url="http://1.gravatar.com/avatar/506e49a7dae9eb8bd05bb64a5169cfa4?s=96&#38;d=retro&#38;r=PG" medium="image">
			<media:title type="html">Dawn</media:title>
		</media:content>

		<media:content url="http://gigaom2.files.wordpress.com/2011/03/3292307605_897000c0f3_z.jpg?w=300" medium="image">
			<media:title type="html">Information Overload Fire Hydrant</media:title>
		</media:content>

		<media:content url="http://gigaom2.files.wordpress.com/2011/03/pipes_filtering_ex1.png?w=300" medium="image">
			<media:title type="html">Yahoo Pipes Filtering Example</media:title>
		</media:content>

		<media:content url="http://gigaom2.files.wordpress.com/2011/03/postrank-example.png?w=300" medium="image">
			<media:title type="html">PostRank Example</media:title>
		</media:content>

		<media:content url="http://gigaom2.files.wordpress.com/2011/03/modify-rss-example.png?w=300" medium="image">
			<media:title type="html">Modify RSS Example</media:title>
		</media:content>
	</item>
		<item>
		<title>Using APIs: Not Quite as Hard as it Looks</title>
		<link>http://gigaom.com/collaboration/using-apis-not-quite-as-hard-as-it-looks/</link>
		<comments>http://gigaom.com/collaboration/using-apis-not-quite-as-hard-as-it-looks/#comments</comments>
		<pubDate>Fri, 29 Oct 2010 14:00:12 +0000</pubDate>
		<dc:creator>Dawn Foster</dc:creator>
				<category><![CDATA[How-To]]></category>
		<category><![CDATA[API]]></category>
		<category><![CDATA[automation]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[Yahoo Pipes]]></category>

		<guid isPermaLink="false">http://gigaom.com/?p=231242</guid>
		<description><![CDATA[Using the APIs really isn't as hard to use as people seem to think. In this post, I'm going to show you how you can make use of APIs (perhaps to gather data, or to carry out some automation) with no programming.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&#038;blog=14960843&#038;post=231242&#038;subd=gigaom2&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a rel="attachment wp-att-231266" href="http://gigaom.com/collaboration/using-apis-not-quite-as-hard-as-it-looks/screen-shot-2010-10-28-at-9-22-49-pm/"><img title="Google Maps API" src="http://gigaom2.files.wordpress.com/2010/10/screen-shot-2010-10-28-at-9-22-49-pm.png?w=300&h=226" alt="" width="300" height="226" class="alignright size-medium wp-image-231266"></a>I used to think of APIs as some kind of magical, amazing constructs  that could only be used by people willing to write big chunks of code. But when I started using <a href="http://pipes.yahoo.com/pipes/">Yahoo Pipes</a>, I noticed that other people were using APIs to gather useful data using what looked a lot like regular, ordinary URLs. Now, this isn’t to say that every API can be used without any programming skills, but using many of the APIs made available by services on the web really isn’t as hard to use as people seem to think. In this post, I’m going to show you how you can make use of APIs (perhaps to gather data, or to carry out some <a href="http://gigaom.com/collaboration/automate-your-way-to-productivity/">automation</a>) with minimal programming.</p>
<h3>Construct the URL</h3>
<p>This first thing you need to know is how to construct the URL. Each API is slightly different, so you need to review the documentation for the API you’re interested in. Most of the time, the documentation will include examples that you can tweak to get the output that you’re after.</p>
<p>For example, here is the documentation for the <a href="http://www.mediawiki.org/wiki/API:Query_-_Lists#backlinks_.2F_bl">MediaWiki API’s backlink query</a>. It can return a list of pages that link back to a specific page that you are interested in. It includes an example URL that looks for all the pages that link to Wikipedia’s home page. I’m going to tweak that so that it finds 10 links to the <a href="http://en.wikipedia.org/wiki/Star_wars">Star Wars Wikipedia page</a>.</p>
<p><a href="http://en.wikipedia.org/w/api.php?action=query&amp;list=backlinks&amp;bltitle=Star+Wars&amp;bllimit=10">http://en.wikipedia.org/w/api.php?action=query&amp;list=backlinks&amp;bltitle=Star%20Wars&amp;bllimit=10</a></p>
<p>Let’s break down that URL and see how it’s made up:</p>
<ul><li><em>http://en.wikipedia.org/w/api.php</em> — This is the place on the web where the API lives. Here, we’re using Wikipedia as an example, but you can replace this first part with the URL of any MediaWiki installation.</li>
<li><em>action=query</em> — fetch the data requested in the rest of the URL.</li>
<li><em>list=backlinks</em> — list pages that link to a specific page.</li>
<li><em>bltitle=Star%20Wars</em> — the specific page with the title “Star Wars” (note that %20 represents a space).</li>
<li><em>bllimit=10</em> — limit to 10 results.</li>
</ul><p>I simply took one of the default examples listed in the API documentation and made only minor changes to gather the information that I was interested in seeing.</p>
<h3>Available Formats</h3>
<p>API calls can return a  variety of formats depending on the service. I usually start out by returning the data in HTML or XML that I can easily view in a web browser to  make sure that my query is correct I’m getting the results from the API that I expect. I’ll then sometimes switch to  another format, like JSON, if I want to download the data to use for  some other purpose later.</p>
<p>Let’s take a look at another example.  <a href="http://dev.twitter.com/doc/get/users/show">Here is the documentation for Twitter’s GET users/show function</a>, which returns all of the available information about a user, including description, URL, link to profile image, last tweet, count of friends / followers, and much more. Again, I can simply modify the provided example query to return the information I’m interested in:</p>
<p><a href="http://api.twitter.com/1/users/show.xml?screen_name=geekygirldawn">http://api.twitter.com/1/users/show.xml?screen_name=geekygirldawn</a></p>
<ul><li><em>http://api.twitter.com/1</em> — Version 1 of the Twitter API.</li>
<li><em>users</em> — users section of the API to gather information on a user.</li>
<li><em>show.xml</em> — display the output as XML.</li>
<li><em>screen_name=geekygirldawn</em> — the user that you want information about (geekygirldawn)</li>
</ul><h3>Rate Limiting</h3>
<p>Keep in mind that most APIs have some kind of rate limiting, which means that you can only make so many calls to the API from a given IP address or account in a given amount of time before they cut you off. For Twitter this limit is 150 API calls per hour. This is to prevent people from abusing the API and putting too heavy a load on the servers, but it also means that you might be playing with some API calls to get the parameters just right when you are suddenly cut off. Don’t panic. Go have a drink or a snack, and come back in an hour or so to try again.</p>
<h3>API Keys</h3>
<p>Some APIs require that you sign up for an API key. This is usually to keep track of your requests, and you should think of it as a little like a password that shouldn’t be shared with other people. In many cases, an API key is what the API uses to rate limit your requests.</p>
<h3>Combination for More Power</h3>
<p>With some additional programming expertise, or using a tool like Yahoo Pipes, you can start to combine these APIs to get some really interesting information that can’t easily be gathered in other ways. For example, I have one Yahoo Pipe that:</p>
<ul><li>starts with an RSS feed of all of my WebWorkerDaily posts</li>
<li>takes each link and runs it through the <a href="http://www.backtype.com/developers">BackType API</a> to see who has posted the link to Twitter</li>
<li>then uses the Twitter API to see how many followers each person who tweeted the link has</li>
<li>and finally it formats all of this information into a new RSS feed in the form of “username (num of followers): Tweet text” that I can view in my RSS reader</li>
</ul><p><em>What are your favorite tricks for using APIs to gather interesting data?</em></p>
<p><strong>Related content from GigaOM Pro (sub. req.):</strong></p>
<p><a title="Social Media in the Enterprise" href="http://pro.gigaom.com/2009/05/social-media-in-the-enterprise/?utm_source=collaboration&amp;utm_medium=editorial&amp;utm_content=geekygirldawn&amp;utm_campaign=intext&amp;utm_term=231242+using-apis-not-quite-as-hard-as-it-looks"> </a></p>
<ul><li><a title="Enabling the Web Work Revolution" href="http://pro.gigaom.com/2009/05/enabling-the-web-work-revolution/?utm_source=collaboration&amp;utm_medium=editorial&amp;utm_content=geekygirldawn&amp;utm_campaign=intext&amp;utm_term=231242+using-apis-not-quite-as-hard-as-it-looks">Enabling the Web Work Revolution</a></li>
<li><a title="Report: The Real-Time Enterprise" href="http://pro.gigaom.com/2010/01/report-the-real-time-enterprise/?utm_source=collaboration&amp;utm_medium=editorial&amp;utm_content=geekygirldawn&amp;utm_campaign=intext&amp;utm_term=231242+using-apis-not-quite-as-hard-as-it-looks">Report: The Real-Time Enterprise</a></li>
<li><a href="http://pro.gigaom.com/2010/01/who-owns-your-data-in-the-cloud/?utm_source=collaboration&amp;utm_medium=editorial&amp;utm_content=geekygirldawn&amp;utm_campaign=intext&amp;utm_term=231242+using-apis-not-quite-as-hard-as-it-looks">Who Owns Your Data in the Cloud?</a></li>
</ul>
<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&#038;blog=14960843&#038;post=231242&#038;subd=gigaom2&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gigaom.com/collaboration/using-apis-not-quite-as-hard-as-it-looks/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
	 <go:thumbnail>http://gigaom2.files.wordpress.com/2010/10/screen-shot-2010-10-28-at-9-22-49-pm.png?w=130</go:thumbnail> 
		<media:thumbnail url="http://gigaom2.files.wordpress.com/2010/10/screen-shot-2010-10-28-at-9-22-49-pm.png?w=185" />
		<media:content url="http://gigaom2.files.wordpress.com/2010/10/screen-shot-2010-10-28-at-9-22-49-pm.png?w=185" medium="image">
			<media:title type="html">Google Maps API</media:title>
		</media:content>

		<media:content url="http://1.gravatar.com/avatar/506e49a7dae9eb8bd05bb64a5169cfa4?s=96&#38;d=retro&#38;r=PG" medium="image">
			<media:title type="html">Dawn</media:title>
		</media:content>

		<media:content url="http://gigaom2.files.wordpress.com/2010/10/screen-shot-2010-10-28-at-9-22-49-pm.png?w=300" medium="image">
			<media:title type="html">Google Maps API</media:title>
		</media:content>
	</item>
		<item>
		<title>Tips for Handling Information Overload: Too Much Content</title>
		<link>http://gigaom.com/collaboration/tips-for-handling-information-overload-too-much-content/</link>
		<comments>http://gigaom.com/collaboration/tips-for-handling-information-overload-too-much-content/#comments</comments>
		<pubDate>Fri, 13 Aug 2010 14:00:09 +0000</pubDate>
		<dc:creator>Dawn Foster</dc:creator>
				<category><![CDATA[@Not for Syndication]]></category>
		<category><![CDATA[CNN Green]]></category>
		<category><![CDATA[Green IT]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[NYT Enterprise]]></category>
		<category><![CDATA[productivity]]></category>
		<category><![CDATA[SYN Feature Enterprise]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[feeds]]></category>
		<category><![CDATA[filtering]]></category>
		<category><![CDATA[GE]]></category>
		<category><![CDATA[green building]]></category>
		<category><![CDATA[information overload]]></category>
		<category><![CDATA[Moresco]]></category>
		<category><![CDATA[Net Zero]]></category>
		<category><![CDATA[Passive House]]></category>
		<category><![CDATA[RSS]]></category>
		<category><![CDATA[rss readers]]></category>
		<category><![CDATA[Serious Materials]]></category>
		<category><![CDATA[Yahoo Pipes]]></category>

		<guid isPermaLink="false">http://webworkerdaily.com/?p=37175</guid>
		<description><![CDATA[The biggest problem with information overload for most people is that it is cumulative and it comes in from a variety of sources. The source that people think about when you mention information overload is the huge amount of content that we consume online.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&#038;blog=14960843&#038;post=150542&#038;subd=gigaom2&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://webworkerdaily.files.wordpress.com/2010/08/library.jpg"><img title="library" src="http://webworkerdaily.files.wordpress.com/2010/08/library.jpg?w=300&h=172" alt="" width="300" height="172" class=" alignleft"></a>The biggest problem with information overload for most people is that it is cumulative and it comes in from a variety of sources. In my past two posts, I provided some tips for managing information overload coming in via <a href="http://gigaom.com/collaboration/tips-for-handling-information-overload/">email</a> and <a href="http://gigaom.com/collaboration/tips-for-managing-social-media-information-overload/">social media</a>. Another source — and probably the one most people think about when you mention information overload — is the huge amount of content that we consume online.</p>
<p>We all want to keep up with the latest news and trends in our industry along with learning more about other areas of interest, like our hobbies. With only so many hours in the day, people often struggle with finding the information they need to be successful while not spending too much time sorting through massive quantities of data. Here are a few tips to help you whittle the information down from a fire hose to a trickle of only the most relevant content.</p>
<h3>RSS Readers</h3>
<p><a href="http://webworkerdaily.files.wordpress.com/2010/08/screen-shot-2010-08-12-at-12-35-50-pm.png"><img title="Google Reader" src="http://webworkerdaily.files.wordpress.com/2010/08/screen-shot-2010-08-12-at-12-35-50-pm.png?w=300&h=160" alt="" width="300" height="160" class=" alignleft"></a>If you don’t already use an RSS reader, you should find one, since this is the best way to get only the information that you want pushed to you while being able to easily see which posts you have read and which you have not. <a href="https://www.google.com/reader">Google Reader</a> and <a href="http://netvibes.com">Netvibes</a> are good places to start. For the rest of you who already use RSS, there are many ways to make it more effective.</p>
<p>Firstly, change the way you think about RSS; it’s more like a newspaper than email. If you fall behind on the daily newspaper, you aren’t going to keep trying to catch up and read papers that are months old. RSS is just like a newspaper, so don’t worry if you don’t get to everything, and don’t feel like you need to catch up. Right now, I have thousands of unread items in Google Reader, but I am OK with it. If that big number of unread items bothers you, simply take advantage of the “mark all as read” feature once a week if it makes you feel better or, better yet, use an RSS readers that lets you hide the number of unread items.</p>
<p>Secondly, do some pruning and get rid of the dead wood. Spend a couple of hours looking at which feeds give you the most value and get rid of the rest. If you are feeling overwhelmed and overloaded, you are probably oversubscribed. Some RSS readers even have tools to help you find feeds that you rarely read or are rarely updated.</p>
<p>Third, spend as little time as possible in your RSS reader by prioritizing your feeds. I use folders in Google Reader to group my feeds, and I put the most critical feeds right at the top. I make sure that I read through those high priority feeds first to spend more time on what I need to know while hopefully having some time left over to read a little extra. I also encourage you to learn the keyboard shortcuts for your RSS reader, since this can shorten your RSS reading time.</p>
<h3>News Aggregation</h3>
<p><a href="http://webworkerdaily.files.wordpress.com/2010/08/screen-shot-2010-08-12-at-12-33-40-pm.png"><img title="Twitter Tim.es" src="http://webworkerdaily.files.wordpress.com/2010/08/screen-shot-2010-08-12-at-12-33-40-pm.png?w=300&h=169" alt="" width="300" height="169" class=" alignleft"></a>While RSS readers are great for the things you know you want to read, they are not the best way to find new sources of information or news from unexpected sources; this is where news aggregators really excel. My favorite aggregator is <a href="http://twittertim.es">Twitter Tim.es</a>, since it takes the links from the people that I follow on Twitter and displays them in newspaper-like format, with the links that have been posted by more of my friends appearing as headlines on <a href="http://twittertim.es/geekygirldawn">my Twitter Tim.es page</a>. I also use <a href="http://techmeme.com/">Techmeme</a> to find the topics that people are discussing online. Depending on your interests, you might be able to find other news aggregation sources focused on your areas of expertise.</p>
<h3>Filtering</h3>
<p>Filtering RSS feeds takes a little work, but it is worth it in the long run if it helps you find only the information on the topics that you want to see. While there are many filtering tools, my tool of choice is <a href="http://gigaom.com/collaboration/filter-your-rss-feeds-with-yahoo-pipes/">Yahoo Pipes</a>. I use Yahoo Pipes to find out when people are talking about me or the topics that I am most interested in. For example, I have Pipes that comb through industry analyst feeds looking for a few specific keywords, which allows me to find the reports from analysts on those topics while ignoring the rest.</p>
<p>The best thing you can do to avoid overload is to stay focused on the most important information while not worrying about what you might be missing. If you can become more efficient at finding and consuming the right information for your needs, you can easily stay informed while minimizing the feeling of being overwhelmed. Read what you can and don’t stress about what you don’t have time to read.</p>
<p><em>What are your tips for managing content information overload?</em><br><strong></strong></p>
<p><strong>Related GigaOM Pro content (sub. req.):</strong> <a title="Report: The Real-Time Enterprise" href="http://pro.gigaom.com/2010/05/are-you-empowering-your-mobile-workforce/?utm_source=collaboration&amp;utm_medium=editorial&amp;utm_content=geekygirldawn&amp;utm_campaign=intext&amp;utm_term=150542+tips-for-handling-information-overload-too-much-content">Are You Empowering Your Mobile Workforce?</a></p>
<p><em><a href="http://www.flickr.com/photos/seeminglee/4556156477/">Photo</a> by Flickr user <a href="http://www.flickr.com/photos/seeminglee/">See-ming Lee 李思明 SML</a>, licensed under a <a href="http://creativecommons.org/licenses/by-sa/2.0/deed.en">Creative Commons Attribution-ShareAlike 2.0 Generic license</a></em></p>
<p>2.0</p>
<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&#038;blog=14960843&#038;post=150542&#038;subd=gigaom2&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gigaom.com/collaboration/tips-for-handling-information-overload-too-much-content/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
	

		<media:content url="http://1.gravatar.com/avatar/506e49a7dae9eb8bd05bb64a5169cfa4?s=96&#38;d=retro&#38;r=PG" medium="image">
			<media:title type="html">Dawn</media:title>
		</media:content>

		<media:content url="http://webworkerdaily.files.wordpress.com/2010/08/library.jpg?w=300" medium="image">
			<media:title type="html">library</media:title>
		</media:content>

		<media:content url="http://webworkerdaily.files.wordpress.com/2010/08/screen-shot-2010-08-12-at-12-35-50-pm.png?w=300" medium="image">
			<media:title type="html">Google Reader</media:title>
		</media:content>

		<media:content url="http://webworkerdaily.files.wordpress.com/2010/08/screen-shot-2010-08-12-at-12-33-40-pm.png?w=300" medium="image">
			<media:title type="html">Twitter Tim.es</media:title>
		</media:content>
	</item>
		<item>
		<title>How Well Do You Listen and Respond?</title>
		<link>http://gigaom.com/collaboration/how-well-do-you-listen-and-respond/</link>
		<comments>http://gigaom.com/collaboration/how-well-do-you-listen-and-respond/#comments</comments>
		<pubDate>Wed, 01 Jul 2009 20:00:01 +0000</pubDate>
		<dc:creator>Dawn Foster</dc:creator>
				<category><![CDATA[How Do You Work?]]></category>
		<category><![CDATA[NYT Enterprise]]></category>
		<category><![CDATA[SYN Feature Enterprise]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[backtweets]]></category>
		<category><![CDATA[conversations]]></category>
		<category><![CDATA[listening]]></category>
		<category><![CDATA[monitoring]]></category>
		<category><![CDATA[TweetDeck]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[Yahoo Pipes]]></category>

		<guid isPermaLink="false">http://webworkerdaily.com/?p=15147</guid>
		<description><![CDATA[Listening has always been important, but now in the world of social media where conversations are amplified, repeated and spread at a much faster rate than ever before, listening has become even more critical. Many of us, particularly freelancers, don&#8217;t have teams of people responsible for [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&#038;blog=14960843&#038;post=15147&#038;subd=gigaom2&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Listening has always been important, but now in the world of social media where conversations are amplified, repeated and spread at a much faster rate than ever before, listening has become even more critical. Many of us, particularly freelancers, don&#8217;t have teams of people responsible for customer service and support to help make sure that we are listening to our customers, potential customers and industry experts. We have to find the time to listen to what people are saying about us and react appropriately.</p>
<div id="attachment_15149" class="wp-caption alignright" style="width: 250px"><a href="http://www.flickr.com/photos/metrojp/92038203/"><img  title="Listening" src="http://webworkerdaily.files.wordpress.com/2009/06/92038203_5d8d68f920_m.jpg?w=240&h=172" alt="Photo by Flickr User Orange_Beard under Creative Commons" width="240" height="172" class=" alignleft" /></a><p class="wp-caption-text">Photo by Flickr User Orange_Beard under Creative Commons</p></div>
<p><a href="http://blogs.forrester.com/groundswell/2009/06/why-is-twoway-conversational-technology-is-so-hard-for-marketers.html">Josh Bernoff</a> wrote about the modern listening problem and compares it to those speaker phones where you can&#8217;t talk and listen at the same time. On those not-full-duplex speaker phones, you are either talking or listening, but not doing both at the same time. In the social media age, we need to be both listening and talking, but many people are only doing one or the other. On <a href="http://twitter.com">Twitter</a> and other social web sites, we talk about what we are doing and listen to other people talk, and we do it simultaneously.<span id="more-15147"></span></p>
<p><strong>Listening</strong></p>
<p>I tend to automate as much of my listening as I can using various monitoring tools. These are two of my favorite ways to monitor and listen to what people are saying, and we&#8217;ve covered both of them in more depth in previous blog posts.</p>
<ul>
<li><a href="http://tweetdeck.com">TweetDeck</a>: I have several different searches that are <a href="http://gigaom.com/collaboration/how-to-monitor-real-time-information-on-twitter/">set up in TweetDeck</a>, and I get real-time notifications when someone mentions my name or several of the projects that I&#8217;m involved in.</li>
<li><a href="http://pipes.yahoo.com">Yahoo Pipes</a>: More sophisticated <a href="http://gigaom.com/collaboration/filter-your-rss-feeds-with-yahoo-pipes/">monitoring with Yahoo Pipes</a> looks for mentions of a list of keywords across many different social media sites, blogs, Twitter and more.</li>
</ul>
<p><strong>Responding</strong></p>
<p>Now that you can find the conversations and have started listening, the hard part begins: finding the time to respond. Depending on the volume, this could be a small task or a huge effort. I do a pretty good job of finding and listening to feedback, but when I get busy, I sometimes find it difficult to carve out the time to respond. If I respond right away, I won&#8217;t forget to respond, but responding immediately can really disrupt my work flow. If I put the responses off and do them in batches, I am probably more productive, but I run the risk of missing opportunities or forgetting to respond. The key for me is finding the right balance to respond quickly, but without disrupting my ability to be productive and efficient in my other work.</p>
<p><em>How well do you listen and respond?</em></p>
<p><strong>Related research and analysis from GigaOM Pro:</strong><br />Subscriber content. <a href="http://pro.gigaom.com/?utm_source=collaboration&utm_medium=editorial&utm_campaign=auto3&utm_term=15147+how-well-do-you-listen-and-respond&utm_content=geekygirldawn">Sign up for a free trial</a>.</p><ul><li><a href="http://pro.gigaom.com/2010/05/big-data-marketplaces-put-a-price-on-finding-patterns/?utm_source=collaboration&amp;utm_medium=editorial&amp;utm_campaign=waterfall?utm_source=collaboration&utm_medium=editorial&utm_campaign=auto3&utm_term=15147+how-well-do-you-listen-and-respond&utm_content=geekygirldawn">Big Data Marketplaces Put a Price on Finding&nbsp;Patterns</a></li><li><a href="http://pro.gigaom.com/2009/10/in-q3-newnet-focus-turns-to-business-models-and-search/?utm_source=collaboration&amp;utm_medium=editorial&amp;utm_campaign=waterfall?utm_source=collaboration&utm_medium=editorial&utm_campaign=auto3&utm_term=15147+how-well-do-you-listen-and-respond&utm_content=geekygirldawn">In Q3, NewNet Focus Turns to Business Models and&nbsp;Search</a></li><li><a href="http://pro.gigaom.com/2011/03/the-near-term-evolution-of-social-commerce/?utm_source=collaboration&amp;utm_medium=editorial&amp;utm_campaign=waterfall?utm_source=collaboration&utm_medium=editorial&utm_campaign=auto3&utm_term=15147+how-well-do-you-listen-and-respond&utm_content=geekygirldawn">The Near-Term Evolution of Social&nbsp;Commerce</a></li></ul><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&#038;blog=14960843&#038;post=15147&#038;subd=gigaom2&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gigaom.com/collaboration/how-well-do-you-listen-and-respond/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/506e49a7dae9eb8bd05bb64a5169cfa4?s=96&#38;d=retro&#38;r=PG" medium="image">
			<media:title type="html">Dawn</media:title>
		</media:content>

		<media:content url="http:///2009/06/92038203_5d8d68f920_m.jpg" medium="image">
			<media:title type="html">Listening</media:title>
		</media:content>
	</item>
		<item>
		<title>How to Mine Twitter for Information</title>
		<link>http://gigaom.com/collaboration/how-to-mine-twitter-for-information/</link>
		<comments>http://gigaom.com/collaboration/how-to-mine-twitter-for-information/#comments</comments>
		<pubDate>Mon, 11 May 2009 14:00:33 +0000</pubDate>
		<dc:creator>Dawn Foster</dc:creator>
				<category><![CDATA[How-to (hack, pack, & backpack)]]></category>
		<category><![CDATA[Software Apps]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[data]]></category>
		<category><![CDATA[information]]></category>
		<category><![CDATA[RSS]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[tweetvolume]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[twitter stream graphs]]></category>
		<category><![CDATA[Yahoo Pipes]]></category>

		<guid isPermaLink="false">http://webworkerdaily.com/?p=12490</guid>
		<description><![CDATA[Last week, I admitted that I am an information junkie, and I wanted to follow up this week with a few tips for feeding your information habit by mining Twitter for information. Twitter tools are popping up like weeds lately, so rather than try to be [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&#038;blog=14960843&#038;post=12490&#038;subd=gigaom2&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img  title="twitter" src="http://webworkerdaily.files.wordpress.com/2009/05/twitter.png?w=210&h=49" alt="twitter" width="210" height="49" class=" alignleft" />Last week, I admitted that <a href="http://gigaom.com/collaboration/are-you-an-information-junkie/">I am an information junkie</a>, and I wanted to follow up this week with a few tips for feeding your information habit by mining Twitter for information. Twitter tools are popping up like weeds lately, so rather than try to be comprehensive, I&#8217;m just going to highlight a few of my favorite tools for getting information out of Twitter.</p>
<p><strong>Twitter Search</strong></p>
<p><a href="http://search.twitter.com">Twitter&#8217;s built-in search engine</a> is probably my favorite way to find information in Twitter. It is great for quick searches to find specific pieces of information, watching trending topics, and persistent vanity searches for your name or company. While I do use the search engine to type in queries, the real power is in using RSS feeds for searches and running them through <a href="http://pipes.yahoo.com">Yahoo Pipes</a> for additional filtering. In many cases, I use Yahoo Pipes to loop through a series of keywords from a CSV file to search Twitter for each of those keywords and monitor the results as an RSS feed in my reader. I recently did a <a href="http://fastwonderblog.com/2009/05/01/keyword-csv-files-and-searching-2-minute-yahoo-pipes-demo/">2 minute video explaining exactly how to search twitter using Yahoo Pipes and a CSV file of keywords</a>, so I won&#8217;t cover it in any more detail here.<span id="more-12490"></span></p>
<p><strong>Twitter Stream Graphs</strong></p>
<p>I&#8217;m a big fan of getting data via RSS, but sometimes you just need a picture. <a href="http://www.neoformix.com/Projects/TwitterStreamGraphs/view.php?q=legionoftech">Twitter Stream Graphs</a> are a great way to show your boss how much buzz you generated on Twitter with a particular tweet or a keyword. In this example, I searched for legionoftech, an organization here in Portland than organizes our local BarCampPortland event, and you can see that we did a call for volunteers over Twitter on April 21 and had some conversation leading up to the event on May 1 and 2.</p>
<p><a href="http://webworkerdaily.files.wordpress.com/2009/05/picture-15.png"><img  title="Twitter Stream Graph" src="http://webworkerdaily.files.wordpress.com/2009/05/picture-15.png?w=607&h=301" alt="Twitter Stream Graph" width="607" height="301" class=" alignleft" /></a><strong>TweetVolume</strong></p>
<p><a href="http://tweetvolume.com/">TweetVolume</a> is a great tool for comparing the number of mentions across several keywords. With the recent Mother&#8217;s Day holiday, I&#8217;m happy to report that mothers are more important than vacations, the beach and Star Trek. However, sadly, bacon seems to be a more popular topic on Twitter than mothers (shame on you!)</p>
<p><a href="http://webworkerdaily.files.wordpress.com/2009/05/picture-16.png"><img  title="TweetVolume" src="http://webworkerdaily.files.wordpress.com/2009/05/picture-16.png?w=607&h=397" alt="TweetVolume" width="607" height="397" class=" alignleft" /></a><em></em></p>
<p><em>W</em><em>hat are your favorite tools for mining Twitter for information?</em></p>
<p><strong>Related research and analysis from GigaOM Pro:</strong><br />Subscriber content. <a href="http://pro.gigaom.com/?utm_source=collaboration&utm_medium=editorial&utm_campaign=auto3&utm_term=12490+how-to-mine-twitter-for-information&utm_content=geekygirldawn">Sign up for a free trial</a>.</p><ul><li><a href="http://pro.gigaom.com/2010/05/big-data-marketplaces-put-a-price-on-finding-patterns/?utm_source=collaboration&amp;utm_medium=editorial&amp;utm_campaign=waterfall?utm_source=collaboration&utm_medium=editorial&utm_campaign=auto3&utm_term=12490+how-to-mine-twitter-for-information&utm_content=geekygirldawn">Big Data Marketplaces Put a Price on Finding&nbsp;Patterns</a></li><li><a href="http://pro.gigaom.com/2009/10/why-google-should-fear-the-social-web/?utm_source=collaboration&amp;utm_medium=editorial&amp;utm_campaign=waterfall?utm_source=collaboration&utm_medium=editorial&utm_campaign=auto3&utm_term=12490+how-to-mine-twitter-for-information&utm_content=geekygirldawn">Why Google Should Fear the Social&nbsp;Web</a></li><li><a href="http://pro.gigaom.com/2011/03/the-near-term-evolution-of-social-commerce/?utm_source=collaboration&amp;utm_medium=editorial&amp;utm_campaign=waterfall?utm_source=collaboration&utm_medium=editorial&utm_campaign=auto3&utm_term=12490+how-to-mine-twitter-for-information&utm_content=geekygirldawn">The Near-Term Evolution of Social&nbsp;Commerce</a></li></ul><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&#038;blog=14960843&#038;post=12490&#038;subd=gigaom2&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gigaom.com/collaboration/how-to-mine-twitter-for-information/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/506e49a7dae9eb8bd05bb64a5169cfa4?s=96&#38;d=retro&#38;r=PG" medium="image">
			<media:title type="html">Dawn</media:title>
		</media:content>

		<media:content url="http:///2009/05/twitter.png" medium="image">
			<media:title type="html">twitter</media:title>
		</media:content>

		<media:content url="http:///2009/05/picture-15.png" medium="image">
			<media:title type="html">Twitter Stream Graph</media:title>
		</media:content>

		<media:content url="http:///2009/05/picture-16.png" medium="image">
			<media:title type="html">TweetVolume</media:title>
		</media:content>
	</item>
		<item>
		<title>Make a Monitoring Dashboard to Track Online Conversations</title>
		<link>http://gigaom.com/collaboration/make-a-monitoring-dashboard-to-track-conversations/</link>
		<comments>http://gigaom.com/collaboration/make-a-monitoring-dashboard-to-track-conversations/#comments</comments>
		<pubDate>Mon, 06 Apr 2009 14:00:26 +0000</pubDate>
		<dc:creator>Dawn Foster</dc:creator>
				<category><![CDATA[CNN Startups]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[How-to (hack, pack, & backpack)]]></category>
		<category><![CDATA[NYT Internet]]></category>
		<category><![CDATA[NYT Startups]]></category>
		<category><![CDATA[SYN Feature Enterprise]]></category>
		<category><![CDATA[conversations]]></category>
		<category><![CDATA[filtering]]></category>
		<category><![CDATA[monitoring]]></category>
		<category><![CDATA[monitoring dashboard]]></category>
		<category><![CDATA[RSS]]></category>
		<category><![CDATA[social medi]]></category>
		<category><![CDATA[Yahoo Pipes]]></category>

		<guid isPermaLink="false">http://webworkerdaily.com/?p=10499</guid>
		<description><![CDATA[Quite a few people seemed to enjoy last week's post about How To Monitor Online Conversations, so I thought it would be a good idea to explain how to make a monitoring dashboard to make it easy to track what's being said online about you, your company, your competitors and anything else you need to keep an eye on. The key to monitoring dashboards is to set them up in a way that you can check them frequently, quickly and easily.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&#038;blog=14960843&#038;post=10499&#038;subd=gigaom2&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Quite a few people seemed to enjoy last week&#8217;s post about <a href="http://gigaom.com/collaboration/how-to-monitor-online-conversations/">How To Monitor Online Conversations</a>, so I thought it would be a good idea to explain how to make a monitoring dashboard to make it easy to track what&#8217;s being said online about you, your company, your competitors and anything else you need to keep an eye on. The key to monitoring dashboards is to set them up in a way that you can check them frequently, quickly and easily.</p>
<p>When I talk about monitoring &#8220;dashboards,&#8221; I use the term very loosely. In some cases, I set clients up with RSS readers that have a typical dashboard look and feel for monitoring feeds, while in other cases the &#8220;dashboard&#8221; is really a monitoring section in an existing RSS reader with the feeds delivered as an <a href="http://en.wikipedia.org/wiki/Opml">OPML file</a>.</p>
<p>In my experience, people who are new to RSS readers tend to do better with a reader that looks more like a dashboard than the a tree or folder structure. This is particularly true for monitoring because a dashboard lets you see more information at a glance. <a href="http://www.netvibes.com">Netvibes</a> and <a href="http://www.google.com/ig">iGoogle</a> are both good choices for new users. However, I think that the Netvibes layout tends to work slightly better for this purpose. Here&#8217;s an example of a monitoring dashboard built using Netvibes:</p>
<p><a href="http://webworkerdaily.files.wordpress.com/2009/04/picture-72.png"><img  title="Netvibes Monitoring Dashboard" src="http://webworkerdaily.files.wordpress.com/2009/04/picture-72.png?w=607&h=328" alt="Netvibes Monitoring Dashboard" width="607" height="328" class=" alignleft" /></a></p>
<p>However, I personally use <a href="http://www.newsgator.com/INDIVIDUALS/NETNEWSWIRE/">NetNewsWire</a> for my RSS reader. I have my monitoring dashboards set up in folders that don&#8217;t in any way resemble a typical dashboard. Try out a few different readers to find the one that works best for your style and usage. <strong>The tool that you select isn&#8217;t the critical element. The real magic is in the content that you are monitoring.</strong></p>
<p>I monitor three primary types of content in my dashboards: vanity mentions, competition and industry analysis.</p>
<p><strong>Vanity mentions</strong> are the conversations that people are having about you, your company, your products and your employees. Keep a close eye on these mentions so you can respond quickly to questions and concerns. A proactive approach to monitoring and responding to discussions can help you avoid potential issues before they get out of hand and can show people that you are responsive to your customers. I track vanity mentions for companies that I am involved with across <a href="http://twitter.com">Twitter</a>, blog searches, <a href="http://flickr.com">Flickr</a>, various video sites, <a href="http://friendfeed.com">FriendFeed</a> and more.</p>
<p>You can get interesting insights about your <strong>competition</strong> and their activities by proactively monitoring their communications and what other people say about them online. I often monitor competitors blogs, press releases, support forums, job postings and personal blogs or social media accounts of key employees, in addition to monitoring mentions of the competition on various sources.</p>
<p><strong>Industry</strong> analysis should also be part of your monitoring dashboard. Monitor blogs written by thought leaders within your industry along with tracking for mentions of keywords that are important to your organization or your interests. I often use this section of the monitoring dashboard as a way to find content for blog posts. It can be a great way to see what other people are talking about in your industry and give you an opportunity to respond to, disagree with or build on interesting ideas from other people.</p>
<p>In addition to the dashboard technology, I use tools like <a href="http://pipes.yahoo.com/">Yahoo Pipes</a> and <a href="http://postrank.com">PostRank</a> to help me <a href="http://gigaom.com/collaboration/filter-your-rss-feeds-with-yahoo-pipes/">find relevant content and filter it</a> down to the pieces that are the most important for my purposes. If you have never used Yahoo Pipes, I have several two-minute <a href="http://fastwonderblog.com/yahoo-pipes-and-rss-hacks/#videos">Yahoo Pipes video demos</a> that can help you learn what you need to get started.</p>
<p><em>How do you monitor online conversations? What kind of monitoring dashboards do you use?</em></p>
<p><strong>Related research and analysis from GigaOM Pro:</strong><br />Subscriber content. <a href="http://pro.gigaom.com/?utm_source=collaboration&utm_medium=editorial&utm_campaign=auto3&utm_term=10499+make-a-monitoring-dashboard-to-track-conversations&utm_content=geekygirldawn">Sign up for a free trial</a>.</p><ul><li><a href="http://pro.gigaom.com/2010/05/big-data-marketplaces-put-a-price-on-finding-patterns/?utm_source=collaboration&amp;utm_medium=editorial&amp;utm_campaign=waterfall?utm_source=collaboration&utm_medium=editorial&utm_campaign=auto3&utm_term=10499+make-a-monitoring-dashboard-to-track-conversations&utm_content=geekygirldawn">Big Data Marketplaces Put a Price on Finding&nbsp;Patterns</a></li><li><a href="http://pro.gigaom.com/2011/03/why-ipad-2-will-lead-consumers-into-the-post-pc-era/?utm_source=collaboration&amp;utm_medium=editorial&amp;utm_campaign=waterfall?utm_source=collaboration&utm_medium=editorial&utm_campaign=auto3&utm_term=10499+make-a-monitoring-dashboard-to-track-conversations&utm_content=geekygirldawn">Why iPad 2 Will Lead Consumers Into the Post-PC&nbsp;Era</a></li><li><a href="http://pro.gigaom.com/2011/03/the-near-term-evolution-of-social-commerce/?utm_source=collaboration&amp;utm_medium=editorial&amp;utm_campaign=waterfall?utm_source=collaboration&utm_medium=editorial&utm_campaign=auto3&utm_term=10499+make-a-monitoring-dashboard-to-track-conversations&utm_content=geekygirldawn">The Near-Term Evolution of Social&nbsp;Commerce</a></li></ul><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&#038;blog=14960843&#038;post=10499&#038;subd=gigaom2&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gigaom.com/collaboration/make-a-monitoring-dashboard-to-track-conversations/feed/</wfw:commentRss>
		<slash:comments>16</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/506e49a7dae9eb8bd05bb64a5169cfa4?s=96&#38;d=retro&#38;r=PG" medium="image">
			<media:title type="html">Dawn</media:title>
		</media:content>

		<media:content url="http:///2009/04/picture-72.png" medium="image">
			<media:title type="html">Netvibes Monitoring Dashboard</media:title>
		</media:content>
	</item>
		<item>
		<title>How To Monitor Online Conversations</title>
		<link>http://gigaom.com/collaboration/how-to-monitor-online-conversations/</link>
		<comments>http://gigaom.com/collaboration/how-to-monitor-online-conversations/#comments</comments>
		<pubDate>Tue, 31 Mar 2009 16:00:32 +0000</pubDate>
		<dc:creator>Dawn Foster</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[How-to (hack, pack, & backpack)]]></category>
		<category><![CDATA[NYT Enterprise]]></category>
		<category><![CDATA[SYN Feature Enterprise]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[filtering]]></category>
		<category><![CDATA[friendfeed]]></category>
		<category><![CDATA[monitoring]]></category>
		<category><![CDATA[RSS]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[Yahoo Pipes]]></category>

		<guid isPermaLink="false">http://webworkerdaily.com/?p=10110</guid>
		<description><![CDATA[Interesting conversations are happening all over the web, on blogs, Twitter, FriendFeed and many other sites. People are talking about you, your company, your industry and revealing many tips and tricks that you should know. I am a self-confessed data junkie, so I have a few tips to help you make sense of the massive amounts of data available and to focus on monitoring just what really matters.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&#038;blog=14960843&#038;post=10110&#038;subd=gigaom2&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Keeping up with online conversations can be a daunting task. As a freelance consultant, I not only need to keep up with what people are saying about me and my company, but I also need to monitor the latest industry trends to learn new skills and stay relevant. While wearing my blogging hat, I also have to keep up with conversations that would be interesting to web workers for this blog, or relevant for people building online communities<a href="http://fastwonderblog.com/"> </a>for <a href="http://fastwonderblog.com/">my own blog</a>.</p>
<p>Interesting conversations are happening all over the web, on blogs, <a href="http://twitter.com">Twitter</a>, <a href="http://friendfeed.com">FriendFeed</a> and many other sites. People are talking about you, your company and your industry, and revealing many tips and tricks that you should know. I am a self-confessed data junkie, so I have a few tips to help you make sense of the massive amounts of data available and to focus on monitoring just what really matters. <span id="more-10110"></span></p>
<p><strong>Use a Dashboard</strong></p>
<p>An RSS-based <a href="http://fastwonderblog.com/2008/09/08/monitoring-dashboards-why-every-company-should-have-on/">monitoring dashboard</a> is a great way to collect everything you&#8217;re monitoring into one place. I&#8217;ve set these up for clients in a number of different ways depending on the preference of the person responsible for monitoring. For people new to RSS, I generally encourage them to use something like <a href="http://www.netvibes.com">Netvibes</a>, which has a visual layout with multiple tabs and columns where you can see several key conversations at a glance. I have a couple of sections in my RSS reader where I keep everything that I&#8217;m monitoring, and I make sure that they are the first things I read.</p>
<p><strong>Filter Your Feeds</strong></p>
<p><a href="http://gigaom.com/collaboration/filter-your-rss-feeds-with-yahoo-pipes/">Filtering RSS feeds</a> through <a href="http://pipes.yahoo.com/">Yahoo Pipes</a> or other tools is a good way to make sure that your monitoring dashboard contains relevant content and not just a list of blogs to read. I use Yahoo Pipes to filter for mentions of my name, my company and efforts that I am involved with across various sites (Twitter, FriendFeed, blogs, <a href="http://flickr.com">Flickr</a>, video sites, etc.) Yahoo Pipes can also be used to combine many feeds and filter those high-volume RSS feeds for only relevant content that you need to know. Tools like <a href="http://www.postrank.com">PostRank</a> are a good way to find the posts within a feed that are generating the most buzz.</p>
<p><strong>Choose the Right Twitter Client</strong></p>
<p>Use a <a href="http://gigaom.com/collaboration/improve-your-twitter-efficiency/">smart Twitter client</a> that lets you group the important people that you want to monitor and provides a way to get real-time notifications for mentions of certain keywords. <a href="http://www.tweetdeck.com/beta/">TweetDeck</a> is a good choice. I have a couple of different groups set up to help make sure that I see the posts from people who have important ideas and who provide me with the greatest value. I also have keyword searches in TweetDeck for companies or events that I am involved with to make sure that I don&#8217;t miss any important conversations about these efforts on Twitter.</p>
<p><strong>Find Hot Topics With FriendFeed </strong></p>
<p><a href="http://friendfeed.com/">FriendFeed</a> is a great way to find the hot topics of the day, to make sure that you&#8217;re keeping up with industry trends and new tools or techniques that you can apply to your work. I like to group people by topic, like community management, and use the &#8220;best of&#8221; feature to find the best posts of the day, week or month from those subgroups of people. The example below shows the best post of the month from my &#8220;News Makers&#8221; group. It&#8217;s an easy way for me to filter the flood of content in FriendFeed down to something much more manageable.</p>
<div id="attachment_10133" class="wp-caption aligncenter" style="width: 617px"><a href="http://webworkerdaily.files.wordpress.com/2009/03/picture-23.png"><img  title="FriendFeed Best of ..." src="http://webworkerdaily.files.wordpress.com/2009/03/picture-23.png?w=607&h=279" alt="FriendFeed Best of Month" width="607" height="279" class=" alignleft" /></a><p class="wp-caption-text">FriendFeed Best of Month</p></div>
<p>While monitoring is important, you should also be responding to these conversations. People are more likely to engage with you in future if they get a response back, rather than feeling like their feedback went into a black hole. Respond to as many @replies on Twitter as you can, and also use your blog for longer responses or to post reactions to relevant conversations that are happening across the web.</p>
<p><em>What are your tips and tricks for monitoring online conversations?</em></p>
<p><strong>Related research and analysis from GigaOM Pro:</strong><br />Subscriber content. <a href="http://pro.gigaom.com/?utm_source=collaboration&utm_medium=editorial&utm_campaign=auto3&utm_term=10110+how-to-monitor-online-conversations&utm_content=geekygirldawn">Sign up for a free trial</a>.</p><ul><li><a href="http://pro.gigaom.com/2011/07/millenials-in-the-enterprise-part-1-strategies-for-supporting-the-new-digital-workforce/?utm_source=collaboration&amp;utm_medium=editorial&amp;utm_campaign=waterfall?utm_source=collaboration&utm_medium=editorial&utm_campaign=auto3&utm_term=10110+how-to-monitor-online-conversations&utm_content=geekygirldawn">Millennials in the enterprise, part 1: strategies for supporting the new digital&nbsp;workforce</a></li><li><a href="http://pro.gigaom.com/2011/03/the-near-term-evolution-of-social-commerce/?utm_source=collaboration&amp;utm_medium=editorial&amp;utm_campaign=waterfall?utm_source=collaboration&utm_medium=editorial&utm_campaign=auto3&utm_term=10110+how-to-monitor-online-conversations&utm_content=geekygirldawn">The Near-Term Evolution of Social&nbsp;Commerce</a></li><li><a href="http://pro.gigaom.com/2011/02/a-2011-newnet-forecast/?utm_source=collaboration&amp;utm_medium=editorial&amp;utm_campaign=waterfall?utm_source=collaboration&utm_medium=editorial&utm_campaign=auto3&utm_term=10110+how-to-monitor-online-conversations&utm_content=geekygirldawn">A 2011 NewNet&nbsp;Forecast</a></li></ul><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&#038;blog=14960843&#038;post=10110&#038;subd=gigaom2&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gigaom.com/collaboration/how-to-monitor-online-conversations/feed/</wfw:commentRss>
		<slash:comments>26</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/506e49a7dae9eb8bd05bb64a5169cfa4?s=96&#38;d=retro&#38;r=PG" medium="image">
			<media:title type="html">Dawn</media:title>
		</media:content>

		<media:content url="http:///2009/03/picture-23.png" medium="image">
			<media:title type="html">FriendFeed Best of ...</media:title>
		</media:content>
	</item>
		<item>
		<title>More Efficient RSS Reading</title>
		<link>http://gigaom.com/collaboration/more-efficient-rss-reading/</link>
		<comments>http://gigaom.com/collaboration/more-efficient-rss-reading/#comments</comments>
		<pubDate>Tue, 24 Feb 2009 17:00:05 +0000</pubDate>
		<dc:creator>Dawn Foster</dc:creator>
				<category><![CDATA[cool stuff]]></category>
		<category><![CDATA[How Do You Work?]]></category>
		<category><![CDATA[How-to (hack, pack, & backpack)]]></category>
		<category><![CDATA[NYT Enterprise]]></category>
		<category><![CDATA[Personal organization]]></category>
		<category><![CDATA[SYN Feature Enterprise]]></category>
		<category><![CDATA[tablet pc]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[feed]]></category>
		<category><![CDATA[filtering]]></category>
		<category><![CDATA[netnewswire]]></category>
		<category><![CDATA[netvibes]]></category>
		<category><![CDATA[RSS]]></category>
		<category><![CDATA[rss reader]]></category>
		<category><![CDATA[time management]]></category>
		<category><![CDATA[Yahoo Pipes]]></category>

		<guid isPermaLink="false">http://webworkerdaily.com/?p=7929</guid>
		<description><![CDATA[In my recent post about using Harvest to track my time, I discovered that I was spending too much of my time consuming information. As a result, I&#8217;ve been working on ways to further increase my efficiency, starting with some Twitter efficiency improvements, and I thought [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&#038;blog=14960843&#038;post=78429&#038;subd=gigaom2&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>In my recent post about <a href="http://gigaom.com/collaboration/my-time-management-saga-continues-with-harvest/">using Harvest to track my time</a>, I discovered that I was spending too much of my time consuming information. As a result, I&#8217;ve been working on ways to further increase my efficiency, starting with some <a href="http://gigaom.com/collaboration/improve-your-twitter-efficiency/">Twitter efficiency improvements</a>, and I thought that a post about becoming more efficient at consuming blogs and other news content via RSS would be a good next step.</p>
<p>I love information and wish I could spend more time reading and consuming it, to learn more about a variety of topics. However, the harsh reality is that there are only so many hours in the day that I can spend reading and learning. I could take the easy way out and just read less, but my goal is to become more efficient at finding the content that I want to read the most.<span id="more-78429"></span></p>
<p><strong>Pruning</strong> your feeds is a good way to start. Fellow WWD blogger <a href="http://webworkerdaily.com/author/celinus/">Celine Roque</a> wrote a great article about how to <a href="http://gigaom.com/collaboration/fine-tune-your-rss-subscriptions/">fine-tune your RSS subscriptions</a> a few months ago. Dead feeds and feeds that you rarely read only slow down the process of finding the content that you <em>really need</em>. I have a tendency to add blogs to my reader based on one or two great posts, but sometimes those blogs just don&#8217;t keep my interest and must be pruned later. I try to go through my RSS reader a few times a year and focus on getting rid of, or de-prioritizing, feeds that add less value or aren&#8217;t being regularly updated any more. Some feed readers even have tools for finding those old blogs that aren&#8217;t being updated regularly (dinosaurs) and the blogs that currently get the least amount of your attention.</p>
<p><a href="http://gigaom2.files.wordpress.com/2009/02/picture-101.png"></a><a href="http://gigaom2.files.wordpress.com/2009/02/picture-111.png"><img  title="Rarely Read Feed Report in NetNewsWire" src="http://webworkerdaily.files.wordpress.com/2009/02/picture-111.png?w=472&h=296" alt="Rarely Read Feed Report in NetNewsWire" width="472" height="296" class=" alignleft" /></a></p>
<p>I also make extensive use of <strong>filtering</strong> to reduce the amount of content in my feeds. <a href="http://gigaom.com/collaboration/filter-your-rss-feeds-with-yahoo-pipes/">Yahoo Pipes is a great filtering tool</a>, since you can use it to combine many RSS feeds and only display posts that match certain key words that are the most interesting to you. I use Yahoo Pipes to filter groups of blogs that typically have low relevancy for me but have occasional great nuggets of information that I don&#8217;t want to miss.  With Pipes, I can make sure that I only see the nuggets, and not the posts that contain less interesting topics.</p>
<p>Use an RSS reader that gives you a way to organize your feeds and use it as a way to <strong>prioritize</strong> the things that you should read more often. I use <a href="http://www.newsgator.com/INDIVIDUALS/NETNEWSWIRE/">NetNewsWire</a>, which gives me the ability to create folders and move them up or down the list. The things that I need to read every day are at the top, while the blogs that I read only occasionally are near the bottom.</p>
<p>When working with clients who don&#8217;t already use a reader, I usually set them up with <a href="http://www.netvibes.com/">Netvibes</a>, which has more of a dashboard feel. In this case, I organize their feeds with the top priorities in the upper left, lower priorities in the lower right and multiple tabs to group topics. It doesn&#8217;t really matter how you organize the information as long as it helps you prioritize your reading.</p>
<p>Take the time to learn the <strong>keyboard shortcuts</strong> for your feed reader. I can get through the material more quickly when I use a few keys to navigate through the content. In my case, NetNewsWire lets you use arrow keys, the space bar and other keys to navigate through the content, mark items as read/unread, open in a browser, collapse/expand folders, and more. Navigating the menu items to find these functions can sometimes take more time than you realize.</p>
<p>It also helps me to think of feeds as a stream that flows through my RSS reader. I <strong>don&#8217;t try to catch up</strong> by reading everything, and I don&#8217;t worry about leaving unread items in my reader. I read what I can with the time I have available and don&#8217;t spend any time worrying about the rest. There will always be more interesting content than I can ever read in a lifetime.</p>
<p><em>What are your tips for getting through your RSS feeds more quickly and efficiently?</em></p>
<p><strong>Related research and analysis from GigaOM Pro:</strong><br />Subscriber content. <a href="http://pro.gigaom.com/?utm_source=collaboration&utm_medium=editorial&utm_campaign=auto3&utm_term=78429+more-efficient-rss-reading&utm_content=geekygirldawn">Sign up for a free trial</a>.</p><ul><li><a href="http://pro.gigaom.com/2010/05/big-data-marketplaces-put-a-price-on-finding-patterns/?utm_source=collaboration&amp;utm_medium=editorial&amp;utm_campaign=waterfall?utm_source=collaboration&utm_medium=editorial&utm_campaign=auto3&utm_term=78429+more-efficient-rss-reading&utm_content=geekygirldawn">Big Data Marketplaces Put a Price on Finding&nbsp;Patterns</a></li><li><a href="http://pro.gigaom.com/2011/03/why-ipad-2-will-lead-consumers-into-the-post-pc-era/?utm_source=collaboration&amp;utm_medium=editorial&amp;utm_campaign=waterfall?utm_source=collaboration&utm_medium=editorial&utm_campaign=auto3&utm_term=78429+more-efficient-rss-reading&utm_content=geekygirldawn">Why iPad 2 Will Lead Consumers Into the Post-PC&nbsp;Era</a></li><li><a href="http://pro.gigaom.com/2011/03/the-near-term-evolution-of-social-commerce/?utm_source=collaboration&amp;utm_medium=editorial&amp;utm_campaign=waterfall?utm_source=collaboration&utm_medium=editorial&utm_campaign=auto3&utm_term=78429+more-efficient-rss-reading&utm_content=geekygirldawn">The Near-Term Evolution of Social&nbsp;Commerce</a></li></ul><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&#038;blog=14960843&#038;post=78429&#038;subd=gigaom2&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gigaom.com/collaboration/more-efficient-rss-reading/feed/</wfw:commentRss>
		<slash:comments>34</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/506e49a7dae9eb8bd05bb64a5169cfa4?s=96&#38;d=retro&#38;r=PG" medium="image">
			<media:title type="html">Dawn</media:title>
		</media:content>

		<media:content url="http:///2009/02/picture-111.png" medium="image">
			<media:title type="html">Rarely Read Feed Report in NetNewsWire</media:title>
		</media:content>
	</item>
		<item>
		<title>Filter Your RSS Feeds with Yahoo Pipes</title>
		<link>http://gigaom.com/collaboration/filter-your-rss-feeds-with-yahoo-pipes/</link>
		<comments>http://gigaom.com/collaboration/filter-your-rss-feeds-with-yahoo-pipes/#comments</comments>
		<pubDate>Tue, 23 Dec 2008 16:00:28 +0000</pubDate>
		<dc:creator>Dawn Foster</dc:creator>
				<category><![CDATA[How Do You Work?]]></category>
		<category><![CDATA[reviews]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[AideRSS]]></category>
		<category><![CDATA[feeds]]></category>
		<category><![CDATA[filtering]]></category>
		<category><![CDATA[PostRank]]></category>
		<category><![CDATA[RSS]]></category>
		<category><![CDATA[Yahoo Pipes]]></category>

		<guid isPermaLink="false">http://webworkerdaily.com/?p=5784</guid>
		<description><![CDATA[I spent some time over the Thanksgiving holiday reviewing my feeds and getting rid of the poor performers, which really helps me get more value while spending less time in my RSS reader. However, pruning is not enough. I also use quite a few filtering techniques to further reduce the clutter. My favorite filtering techniques involve Yahoo Pipes, which looks and sounds much more complicated than it is.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&#038;blog=14960843&#038;post=78230&#038;subd=gigaom2&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://webworkerdaily.com/author/celinus/">Celine Roque</a> wrote a great article about how to <a href="http://gigaom.com/collaboration/fine-tune-your-rss-subscriptions/">fine tune your RSS subscriptions</a> and prune them down to the feeds that provide you with the most value. I spent some time over the Thanksgiving holiday reviewing my feeds and getting rid of the poor performers, which really helps me get more value while spending less time in my RSS reader. However, pruning is not enough. I also use quite a few filtering techniques to further reduce the clutter.</p>
<p>My favorite filtering techniques involve<a href="http://pipes.yahoo.com/"> Yahoo Pipes</a>, which looks and sounds much more complicated than it is. Jackson West described Yahoo Pipes pretty well when he called them &#8220;<a href="http://gigaom.com/2007/02/07/yahoos-pipes-hard-to-grok-but-snazzy/">hard to grok, but snazzy</a>&#8220;; however, Yahoo Pipes doesn&#8217;t have to be quite so difficult for people to understand. The first time I looked at Pipes, the interface scared me away until a <a href="http://www.metafluence.com/a-brief-reintroduction-to-yahoo-pipes-part-1-of-5/">friend of mine</a> gave me a very quick demo that showed how easy it was to use. After using Pipes for while, I gave similar demos to help other friends get started and even recorded a <a href="http://blip.tv/file/1502282">2 minute introduction to Yahoo Pipes</a> that shows how to use Pipes to filter RSS feeds. How complicated could it be if I can explain it in a 2 minute screencast?</p>
<p>Here are a few of my favorite filtering techniques that I use to find the most relevant content.<span id="more-78230"></span></p>
<p><strong>Filter high volume feeds</strong>. Many of the big technology news blogs have a huge volume of stories in the feed. The <a href="http://feedproxy.google.com/gigaomnetwork">aggregated feed for the entire GigaOM network</a>, for example, contains dozens of posts every day. I have a hard time finding the content relevant to me when I have to sort through a large number of posts, so I use Pipes to search these stories to find the ones that matter to me. The example pipe below shows how to filter the entire GigaOM network feed down to the few posts containing certain keywords.</p>
<p><a href="http://pipes.yahoo.com/geekygirldawn/00b123f763bdb809254b503263097065">Example: Filtering high volume feeds</a></p>
<p><strong>Aggregate and filter less relevant content</strong>. There are certain categories of blogs that have outstanding content, but they rarely publish posts that I want to read. For me, this is true of industry analyst blogs. While I really want to hear about the latest research in online communities and social media, most of the reports published are on topics that are not interesting to me. The Pipe below is one that I use to aggregate 17 industry analyst blogs together into one feed while filtering the posts for a few keywords relevant to my interests.</p>
<p><a href="http://pipes.yahoo.com/geekygirldawn/UIeSY3e93RGi7zv76icw5g">Example: Analyst research blogs filtered for social media</a></p>
<p><strong>Find the posts everyone else is reading</strong>. For news junkies like me, it helps to be able to find the posts that are generating the most buzz. <a href="http://www.postrank.com/">PostRank</a>, a service that used to be called AideRSS, simplifies this process by finding the most talked about posts from any RSS feed. I often use PostRank in conjunction with Pipes to rank and filter posts at the same time. The example below ranks the posts here on WebWorkerDaily with a feed containing only the posts that are generating the most conversation.</p>
<p>Example: <a href="http://www.postrank.com/feed/6c7f7c548b013dc2ca63de88c602e6fa">PostRank for WebWorkerDaily</a> and <a href="http://feeds.postrank.com/6c7f7c548b013dc2ca63de88c602e6fa?level=great&amp;">feed for the top posts</a></p>
<div id="attachment_5783" class="wp-caption aligncenter" style="width: 410px"><img  title="WebWorkerDaily PostRank" src="http://webworkerdaily.files.wordpress.com/2008/12/picture-41.png?w=400&h=458" alt="WebWorkerDaily PostRank" width="400" height="458" class=" alignleft" /><p class="wp-caption-text">WebWorkerDaily PostRank</p></div>
<p>Both Yahoo Pipes and PostRank have an option to get the output as RSS, so I make sure that the results from these tools make it into my RSS reader. With these more efficient filtered feeds, I can remove some of the aggregated and filtered source feeds from my reader. By using these filtering techniques to further prune my feeds, I plan to spend less time catching up on feed reading and more time working, exercising, or spending time with friends and family.</p>
<p><em>What are your favorite filtering techniques?</em></p>
<p><strong>Related research and analysis from GigaOM Pro:</strong><br />Subscriber content. <a href="http://pro.gigaom.com/?utm_source=collaboration&utm_medium=editorial&utm_campaign=auto3&utm_term=78230+filter-your-rss-feeds-with-yahoo-pipes&utm_content=geekygirldawn">Sign up for a free trial</a>.</p><ul><li><a href="http://pro.gigaom.com/2010/05/big-data-marketplaces-put-a-price-on-finding-patterns/?utm_source=collaboration&amp;utm_medium=editorial&amp;utm_campaign=waterfall?utm_source=collaboration&utm_medium=editorial&utm_campaign=auto3&utm_term=78230+filter-your-rss-feeds-with-yahoo-pipes&utm_content=geekygirldawn">Big Data Marketplaces Put a Price on Finding&nbsp;Patterns</a></li><li><a href="http://pro.gigaom.com/2011/03/why-ipad-2-will-lead-consumers-into-the-post-pc-era/?utm_source=collaboration&amp;utm_medium=editorial&amp;utm_campaign=waterfall?utm_source=collaboration&utm_medium=editorial&utm_campaign=auto3&utm_term=78230+filter-your-rss-feeds-with-yahoo-pipes&utm_content=geekygirldawn">Why iPad 2 Will Lead Consumers Into the Post-PC&nbsp;Era</a></li><li><a href="http://pro.gigaom.com/2011/03/the-near-term-evolution-of-social-commerce/?utm_source=collaboration&amp;utm_medium=editorial&amp;utm_campaign=waterfall?utm_source=collaboration&utm_medium=editorial&utm_campaign=auto3&utm_term=78230+filter-your-rss-feeds-with-yahoo-pipes&utm_content=geekygirldawn">The Near-Term Evolution of Social&nbsp;Commerce</a></li></ul><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&#038;blog=14960843&#038;post=78230&#038;subd=gigaom2&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gigaom.com/collaboration/filter-your-rss-feeds-with-yahoo-pipes/feed/</wfw:commentRss>
		<slash:comments>30</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/506e49a7dae9eb8bd05bb64a5169cfa4?s=96&#38;d=retro&#38;r=PG" medium="image">
			<media:title type="html">Dawn</media:title>
		</media:content>

		<media:content url="http:///2008/12/picture-41.png" medium="image">
			<media:title type="html">WebWorkerDaily PostRank</media:title>
		</media:content>
	</item>
	</channel>
</rss>
