Skip to content

Instantly share code, notes, and snippets.

@hunterloftis
Created October 17, 2012 21:14
Show Gist options
  • Save hunterloftis/3908231 to your computer and use it in GitHub Desktop.
Save hunterloftis/3908231 to your computer and use it in GitHub Desktop.
var request = require('superagent');
var base = 'http://eadoyle.tumblr.com/page/';
for (var i = 0; i <= 97; i++) {
tryPage(base + i);
}
function tryPage(url) {
request.get(url, function(res) {
if (res.text.toLowerCase().indexOf('portal') !== -1) {
console.log("Found portal:", url);
}
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment