Skip to content

Instantly share code, notes, and snippets.

View chris-alexander's full-sized avatar

Chris Alexander chris-alexander

View GitHub Profile
@chris-alexander
chris-alexander / keybase.md
Last active February 25, 2021 00:10
Keybase

Keybase proof

I hereby claim:

  • I am chris-alexander on github.
  • I am chrisalexander (https://keybase.io/chrisalexander) on keybase.
  • I have a public key whose fingerprint is 0D2F 2051 E7D9 2CB5 C8C9 3BE2 804D 6731 0A04 9FEC

To claim this, I am signing this object:

@chris-alexander
chris-alexander / juggling-async.js
Last active August 29, 2015 14:20
My learnyounode Juggling Async Solution
#!/usr/bin/env node
var http = require("http");
var concat = require("concat-stream");
var urls = [process.argv[2], process.argv[3], process.argv[4]];
var count = 0;
var results = [];
urls.forEach (function(url, i) {
http.get(url, function(res) {