Skip to content

Instantly share code, notes, and snippets.

View Gargauth's full-sized avatar

Ondřej Krejčík Gargauth

View GitHub Profile
@Gargauth
Gargauth / HideMyAss jQuery Scrape Test
Created June 28, 2013 20:13
HideMyAss proxy list scraping using jQuery (proof of concept)
var ip = $('table#listtable tbody tr td:nth-of-type(2)');
var port = $('table#listtable tbody tr td:nth-of-type(3)');
$(ip).find(':hidden').remove();
$(ip).each(function(index) {
console.log($(this).text().trim() + ":" + $(port[index]).text().trim() );
})
@Gargauth
Gargauth / Package.json
Created July 6, 2015 20:23
Heroku IRC Idler
{
"name": "Idler",
"version": "preview",
"description": "Idle in your favorite IRC channel",
"main": "irc.js",
"scripts": {
"start": "node irc.js"
},
"author": "",
"license": "ISC",