Skip to content

Instantly share code, notes, and snippets.

View willsr's full-sized avatar

Will R willsr

  • Adelaide, Australia
View GitHub Profile
@willsr
willsr / masscares.py
Created December 6, 2015 02:03 — forked from rep/masscares.py
pycares mass resolver, input names on stdin
#!/usr/bin/python
# -*- coding: utf8 -*-
import sys
import os
import time
import select
import socket
import pycares

Keybase proof

I hereby claim:

  • I am willsr on github.
  • I am willsr (https://keybase.io/willsr) on keybase.
  • I have a public key whose fingerprint is 2D69 0DE8 4A64 E880 4DE8 9229 2ACA B982 E9D7 77D6

To claim this, I am signing this object:

@willsr
willsr / gist:1976656
Created March 5, 2012 04:44
Quick Blitz.io testing with node.js
var http = require('http');
http.createServer(function (request, response) {
response.writeHead(200, {'Content-Type': 'text/plain'});
response.end('42');
}).listen(8133);
console.log('Blitz Server running at http://127.0.0.1:8133/');