Skip to content

Instantly share code, notes, and snippets.

View shnere's full-sized avatar

Alan Rodríguez shnere

  • Querétaro, Mexico
  • 05:04 (UTC -06:00)
View GitHub Profile

Keybase proof

I hereby claim:

To claim this, I am signing this object:

@shnere
shnere / Hacker News Scraper
Last active December 24, 2015 17:29
Scrapes front page of Hacker News (news.ycombinator.com) and outputs all data in JSON format.
var config = {
host : 'https://news.ycombinator.com/',
}
var news = [];
var titles = document.querySelectorAll('td.title:not([align="right"])');
for(var i = 0; i < titles.length; i++){
if(i === 30){
break;