Skip to content

Instantly share code, notes, and snippets.

View jbwar22's full-sized avatar
💤
zzzzzzzzzzzzzzzzz

Jackson Warhover jbwar22

💤
zzzzzzzzzzzzzzzzz
  • Massachusetts
View GitHub Profile
@haskaalo
haskaalo / blizztrackbot.md
Last active March 18, 2021 21:05
Docs about Blizztrack Bot

Blizztrack Discord Bot

Add Blizztrack Bot to your server!

With this Link

Set up

  1. We recommend you to create a unique channel for the bot and make him the only one who can send message in that channel.
  2. IMPORTANT: Let him read message ONLY on this channel to avoid people to troll
@thedillonb
thedillonb / index.js
Last active April 23, 2017 00:59
NodeJS Graceful shutdown of a HTTP server
'use strict';
const http = require('http');
function addGracefulShutdown(server) {
const oldClose = server.close;
const connections = {};
let shouldDestroy = false;
let connectionId = 0;
function destroy(socket) {