Skip to content

Instantly share code, notes, and snippets.

@wjt
Last active May 11, 2016 12:39
Show Gist options
  • Save wjt/c3eb684f2ebb31ca786ace8f6a83e412 to your computer and use it in GitHub Desktop.
Save wjt/c3eb684f2ebb31ca786ace8f6a83e412 to your computer and use it in GitHub Desktop.
function InterruptingCowsocket(...args) {
var ws = new WebSocket(...args);
f();
return ws;
function g() {
ws.send("moo!");
f();
}
function f() {
setTimeout(g, Math.random() * 60 * 1000);
}
}
@wjt
Copy link
Author

wjt commented May 11, 2016

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment