Hnweekly: weekly top stories from Hacker News
11–20 of 30 posts
Re: Hnweekly: weekly top stories from Hacker News
#12Re: Hnweekly: weekly top stories from Hacker News
#13I've been looking for something like this but didn't find one. btw I only started scraping like 2 days ago :) so it's not yet a week's worth of data. fyi: there's also http://news.ycombinator.com/lists which shows the top stories in 2 weeks
Allow us to choose: Today, Yesterday, Week, Month, Year
Re: Hnweekly: weekly top stories from Hacker News
#14Cool idea. Anyway, I created a Top Stories Directory 2 days ago too. It will record down every number one stories starting from 2 days ago. But, it lost tracking some stories due to some bugs. But, I already fixed them all. http://hn.siong1987.com
Re: Hnweekly: weekly top stories from Hacker News
#15Doesn't seem to handle non-ASCII very well: "Does Gdel matter?"
btw I'm using http://simplehtmldom.sourceforge.net/ to scrape/parse which is great, it let's you use jquery style selectors on html.
Re: Hnweekly: weekly top stories from Hacker News
#16Doesn't seem to handle non-ASCII very well: "Does Gdel matter?"
I might have problems with unicode in PHP (I really don't know much here yet) so I opted to remove them (for now) using regex. btw I'm using http://simplehtmldom.sourceforge.net/ to scrape/parse which is great, it let's you use jquery style selectors on html.
Re: Hnweekly: weekly top stories from Hacker News
#17Re: Hnweekly: weekly top stories from Hacker News
#18For more top stories from hacker feeds, use http://hacker.watrcoolr.us/ (feed: http://feeds.feedburner.com/HackerWatrCoolr)
Re: Hnweekly: weekly top stories from Hacker News
#19Earlier quoted context omitted.
I might have problems with unicode in PHP (I really don't know much here yet) so I opted to remove them (for now) using regex. btw I'm using http://simplehtmldom.sourceforge.net/ to scrape/parse which is great, it let's you use jquery style selectors on html.
In that case, it should replace ö with o, etc.
Is there a good library out there (in any language) that does good unicode --> ASCII substitutions for major languages?
Re: Hnweekly: weekly top stories from Hacker News
#20Earlier quoted context omitted.
In that case, it should replace ö with o, etc.
I have a screenscraping thing in place that targets an ASCII only environment (LambdaMOO mud). Manually replacing unicode stuff like this has been a pain in the butt. Luckily that was all just for fun and didn't need to be perfect. Is there a good library out there (in any language) that does good unicode --> ASCII substitutions for major languages?