Live data from Hacker News

Full Text RSS Feed: Get the whole feed and nothing but the feed

fulltextrssfeed.com

51–60 of 77 posts

Re: Full Text RSS Feed: Get the whole feed and nothing but the feed

#51

What's he using to pull out the articles? I had a hacky version set up using the Readability algorithm but never bothered to make it public.

Goose article extractor has a full suite of unit tests and also does pure text and image extractions: https://github.com/jiminoc/goose

Re: Full Text RSS Feed: Get the whole feed and nothing but the feed

#54
post #50

Earlier quoted context omitted.

The preview for Lifehacker returned nothing at all, but adding the feed to Google Reader worked as advertised. I guess, don't rely on the preview box.

This may be common knowledge, but all gawker blogs are available in full feed, ad free form at .com/vip.xml i.e. http://lifehacker.com/vip.xml

Ah, I see I'm not the first to point this out :)

Re: Full Text RSS Feed: Get the whole feed and nothing but the feed

#55

What's he using to pull out the articles? I had a hacky version set up using the Readability algorithm but never bothered to make it public.

Boilerpipe is by far the best tool for this that I've ever found ( http://code.google.com/p/boilerpipe/ ). I'd be interested to hear if he is using something better, but I'd be surprised if he is. I think this is a great idea and very similar to a lot of stuff I have worked on recently. It's cool to see so much interest in these text-related services.

I don't think it's quite as good as what he's doing though. He has the title and date specifically pulled out and he doesn't have any extra text included. I think he manually handles CNN. If I try a HuffPost feed it doesn't work at all.

Re: Full Text RSS Feed: Get the whole feed and nothing but the feed

#58

Earlier quoted context omitted.

Boilerpipe is by far the best tool for this that I've ever found ( http://code.google.com/p/boilerpipe/ ). I'd be interested to hear if he is using something better, but I'd be surprised if he is. I think this is a great idea and very similar to a lot of stuff I have worked on recently. It's cool to see so much interest in these text-related services.

I don't think it's quite as good as what he's doing though. He has the title and date specifically pulled out and he doesn't have any extra text included. I think he manually handles CNN. If I try a HuffPost feed it doesn't work at all.

Yea, I'd be curious to see exactly what he's doing. I can only guess there is a heuristic which results in a lot of failed feed processing noticed on here (I know it's just a weekend project :)) that doesn't generalize well. Boilerpipe, in my experience, works very well on almost all news/blog type content. Finding the date in the first few sentences and the title are extra heuristics that can be added later.

EDIT: The date and title are in the RSS feed already! No further analysis needed.

Re: Full Text RSS Feed: Get the whole feed and nothing but the feed

#59
I love it! It works for tumblr rss -- I really wish though that it you can opensource it. (Well, I would just hate it if you start having hosting problems or other problems that would cause you the need to shut down)

Im currently using "Readable Feeds" Nirmal J. Patel (http://www.nirmalpatel.com/hacks/hnrss.html) and Andrew Trusty (http://andrewtrusty.com/2009/06/29/readable-feeds/)

I like it -- but its really inconsistent!

Cheers,

Re: Full Text RSS Feed: Get the whole feed and nothing but the feed

#60
We built a backend similar to this for our NewsRoom mobile client. (Android and Pre) Actually used some genetic algorithms to do the training for our content extraction, one of the more fun projects I've done.

Word of warning, if it takes off, you basically start turning into someone who is both caching and harvesting the web every 15 minutes. There is an incredibly long tail on RSS feeds and it starts killing you to keep them all up to date. Storing and serving it is no big deal, but harvesting actually turns into real money when you figure out total bandwidth used. (we harvest about ~30,000 feeds every 15 minutes)

Post reply on HN