|
I am looking for a breakdown of some really good RSS feeds. I have quite a few subscriptions with Google Reader, but lack many very good development/programming feeds. Would love to see some lists here.
Will stackoverflow have an RSS feed?
Found the answer...
Started by marked on
, 61 posts
by 61 people.
Answer Snippets (Read the full thread at stackoverflow):
Some of my favorites are (the RSS links are below
MSDN Magazine RSS Feed:MyMS_Feed
My-Symbian.com
Paul Graham:Essays
Proper Fixation
Windows Mobile Team Learner's Weblog"....
work on (desktop apps, web apps, .NET, etc).
|
|
I'm currently using Magpie RSS but it sometimes falls over when the RSS or Atom feed isn't well formed. Are there any other options for parsing RSS and Atom feeds with PHP?
Started by carson on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
Your other options include:
SimplePie Last RSS PHP Universal Feed Parser I use SimplePie to parse tested it with non-well-formed RSS / Atom feeds so I don't know how it copes with those, I'm assuming a meaningful class for....
|
|
I'm developing feed reader application in Rails. And i'm new to feed. I've a some questions.
Which is the best way to parsing thousand of RSS/Atom feeds with Rails or JavaScript /jQuery/ ? Is there any way to get just feed title / not load whole feed ...
Started by Zeck on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
You can however limit.
A feed is a file on the web, which you need to download completely.
To your other points: no and no.
It's very easy to use as well.
Importing thousands of RSS and Atom feeds.
|
Ask your Facebook Friends
|
I am looking to test an RSS Feed I have created and I am looking for some good RSS Feed applications to test with.
Started by Vance Smith on
, 9 posts
by 9 people.
Answer Snippets (Read the full thread at stackoverflow):
Feed Demon
It would be worth testing the feed Apple Mail (comes ....
You could also try using Google reader.
W3C RSS validator Experimental Online RSS 1.0 Validator Firefox should work well enough for basic testing.
|
|
I'm trying to pull a DateTime object from RSS feeds in C# and DateTime.Parse(string) was working fine for the BBC rss feed which has a format like: Thu, 24 Sep 2009 13:08:30 GMT
But when I try and use that for Engadget's feed which has a date format like...
Started by Tom A on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Returns a nice little dataset....
It works like a champ and also supports ATOM feeds.
I came across a fantastic free library called the Argotic Syndication Framework on CodePlex .
Parsing dates in RSS feeds is VERY frustrating.
|
|
I am using the SIMPLE RSS reading example found at http://theappleblog.com/2008/08/04/tutorial-build-a-simple-rss-reader-for-iphone/
It uses parseXML to load the RSS feeds.
Here is the problem I am having. For the following RSS feed example, I am having...
Started by JBMJBM on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
In my experience, HTML markup causes an RSS solutions out....
Entries back in the file and repeat)
There are many RSS feeds that contain invalid XML, usually because that RSS 2 tends to parse more successfully than the rest.
|
|
...instead of using the Atom syndication format?
Atom is a well-defined , general-purpose XML syndication format. RSS is fractured into four different versions. All the major feed readers have supported Atom for as long as I can remember, so why isn't...
Started by John Topley on
, 12 posts
by 12 people.
Answer Snippets (Read the full thread at stackoverflow):
They are working today rewrite existing....
Personaly, I have a large number of RSS feeds that I generate myself.
There are a lot of RSS feed readers out there that people are used to using, and most importantly to solve.
|
|
Trying to modify the RSS feeds created by Views module in Drupal.
Since there are no 'theme_' hooks for the RSS feeds (rightfully as XML is theme-less), I need an alternate way to modify the fields that are output into the RSS, preferably using template...
Started by Montana Harkin on
, 4 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
In the view, if you click on "style information" this will show you the template files used to create the... .
It will let you completely write the XML that is output by Views for feeds.
I'd suggest using the Views Node Feed module to do this.
|
|
Is there a way to view rss feeds as formatted xml that doesn't involve messing with my browser's installation or writing my own tool?
Edit:
Preferably a way that works on an OS other than Windows.
Started by Vasil on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
If you view the feed in Firefox it'll read like an RSS reader, but if you view.
Into Chrome and press CTRL+U.
|
|
I followed along this tutorial for django's RSS and ATOM feeds and I got it to work.
However the test development server keeps making the browser download the feeds as a file instead of the browser detecting it as an xml document.
My experience with HTTP...
Started by Net Citizen on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
A class that replaces the mime type of the standard Django feed like so:
# RSS feeds powered += patterns('', (r'^feeds/(?P<url>.*)/$', 'django.contrib.syndication.views.feed', {'feed_dict': published_feeds....
|