Problem: Too many web sites - hard to rememberProblem: Too little time

http://server.domain/api/GetFeed.do?url=Fetch slashdot and engadget, combine them into one synthetic feed, sort the synthetic feed entries by descending date, convert the feed to atom-json, return as callback argument
["http://slashdot.org/rss/index.rss",
"http://feeds.engadget.com/weblogsinc/engadget"]&
modules=sort&sort.by=date&sort.order=desc&
format=atom-json&callback=processResponse
processResponse({"response":{"statusCode":200, ...,"data":{
"feed":{
"xmlns:sy":"http://purl.org/rss/1.0/modules/syndication/",
"title":"","entry":[
{"summary":{"type":"html","content":"..."},
"title":"Sony announces PSP 1seg TV tuner",
"published":"2007-07-17T19:07:00Z",
"dc:creator":"Donald Melanson","category":[{"term":"..."},...],
"link": {"href":"http://feeds.engadget.com/...","rel":"..."},
"dc:date":"2007-07-17T19:07:00Z", ...
},
{"summary":{"type":"html","content": ...},
...
]
}}}})