TL;DR: If you want to see me perform a spoken word poem about JavaScript in front of 1000 people (and on video), please ⭐ star this gist. If you're on mobile, you'll need to request desktop site.
| #!/usr/bin/env python3 | |
| import os | |
| import sys | |
| import requests | |
| import json | |
| LABELS = ['help wanted', 'help-wanted', 'first-timers-only', 'up-for-grabs', | |
| 'good first issue'] | |
| API_BASE = 'https://api.github.com/' |
| resource "digitalocean_droplet" "haproxy-www" { | |
| image = "ubuntu-14-04-x64" | |
| name = "haproxy-www" | |
| region = "nyc2" | |
| size = "512mb" | |
| private_networking = true | |
| ssh_keys = [ | |
| "${var.ssh_fingerprint}" | |
| ] | |
| connection { |
| #!/usr/bin/env python | |
| """ | |
| Plot histogram from list of dates | |
| Usage | |
| ===== | |
| Feed newline separated unix time via STDIN. | |
| Ex.1: plot repository activity:: |