Answer by Tim Farley for Reversing an RSS feed
If you do decide to roll your own C# application to do this, it is very straightforward in the current version of the .NET Framework.Look for the System.ServiceModel.Syndication namespace. That has...
View ArticleAnswer by Andy for Reversing an RSS feed
In Google Reader, you can have it display the items in a folder (feed) from either Newest to Oldest, or Oldest to Newest. To do this, select the feed, select the "Feed settings" drop down, and select...
View ArticleAnswer by mmattax for Reversing an RSS feed
This should be fairly easy with any language...all you would need to do is read the feed xml into a DOM structure (nearly all languauges including C# have a DomDocument class)You should then be able to...
View ArticleAnswer by y0mbo for Reversing an RSS feed
I think you might have trouble with this. Many RSS feeds only keep the latest 10 or so posts, so there would be no way to provide the older data from the feed since the blog started.
View ArticleAnswer by Forgotten Semicolon for Reversing an RSS feed
In Google Reader, when you're reading a feed, there is a "Feed settings..." menu with the options: "Sort by newest", "Sort by oldest".Folders have the same options under the menu "Folder settings..."No...
View ArticleReversing an RSS feed
This could be weird, Have you ever come across a blog which you wanted to read in the chronological order? And that blog could be old, with several hundred posts. When i add this feed to my feed...
View Article