This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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> |