Skip to content

Instantly share code, notes, and snippets.

View dominykas's full-sized avatar

Dominykas Blyžė dominykas

View GitHub Profile
@dominykas
dominykas / hn.js
Last active August 29, 2015 13:56 — forked from edvinasbartkus/hn.js
Parse('https://news.ycombinator.com/item?id=7216471')
.filter('#element:.comment')
.filter('#text')
.filter(function (text) {
return text !='reply'
})
.join('')
.then(function (comments) {
console.log(comments);
process.exit(0);