I'm always amazed about what you can do with JavaScript nowadays. Today I was curious about how often DokuWiki is mentioned on Twitter. I wondered if I could visualize this data without writing any server side code.
The quick answer is yes. By simply combining three available APIs:
The first returns search results for a given term as an ATOM feed, the second is used to fetch and parse that feed and the third finally creates a nice graph from the data.
Here is how often DokuWiki was mentioned on Twitter every day:
If you want to visualize your own terms, feel free to directly use my script by embedding it through an iframe:
<iframe style="width: 500px; height: 300px;" src="http://www.splitbrain.org/_static/trend/twitter.html?yourterm" />
The term you want to visualize is simply given after the question mark.
If you want to hack it, the code is all in the HTML file and made available under a Creative Commons license.