Skip to content

Instantly share code, notes, and snippets.

@rmasters
Created March 19, 2009 20:40
Show Gist options
  • Save rmasters/82044 to your computer and use it in GitHub Desktop.
Save rmasters/82044 to your computer and use it in GitHub Desktop.
Using the FeedControl on uvshock
google.load("feeds", "1");
function initialize() {
var feedControl = new google.feeds.FeedControl();
feedControl.addFeed("http://twitter.com/statuses/user_timeline/14399435.atom", "Tweets");
feedControl.addFeed("http://stackoverflow.com/feeds/user/2025", "StackOverflow");
feedControl.addFeed("http://www.google.com/reader/public/atom/user%2F04968712295736668054%2Fstate%2Fcom.google%2Fbroadcast", "Shared Items");
feedControl.addFeed("http://feeds.delicious.com/v2/rss/rossmasters?count=15", "Shared Bookmarks");
feedControl.draw(document.getElementById("feedControl"));
}
google.setOnLoadCallback(initialize);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment