Skip to content

Instantly share code, notes, and snippets.

View nelliemckesson's full-sized avatar

Nellie McKesson nelliemckesson

View GitHub Profile
@nelliemckesson
nelliemckesson / app.js
Last active February 4, 2016 14:58
Node.js Slack Bot to Query Channel History
// We're using the slack-client library
var SlackClient = require('slack-client');
// Automatically reconnect after an error response from Slack.
var autoReconnect = true;
// Put your bot API token here
var token = "YOUR TOKEN HERE";
// Put your slack team name here
@nelliemckesson
nelliemckesson / index.html
Last active December 15, 2015 19:59
Basic D3.js "percent complete" bar
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<script src="http://d3js.org/d3.v2.js"></script>
<link href="styles.css" rel="stylesheet" type="text/css" />
<title>"Percent complete" bar</title>
</head>