Skip to content

Instantly share code, notes, and snippets.

View zakandrewking's full-sized avatar

Zak King zakandrewking

View GitHub Profile
from __future__ import division
import numpy
from uuid import uuid1
class d3object:
def __init__(self,
height=100,
width=100,
topHtml='',
bottomHtml='',
style=None,
#!/usr/bin/env python
"""In order to use the script you need to copy your SSH key to the target server
and also copy the server SSH public key (usually .ssh/id_rsa.pub) to .ssh/authorized_keys,
so that the computing node can ssh passwordless to the login node"""
from subprocess import Popen, PIPE, call
import sys
import webbrowser
from getopt import getopt
import time
@zakandrewking
zakandrewking / README.md
Last active December 16, 2015 20:29 — forked from mbostock/.block

For continuous data such as time series, a streamgraph can be used in place of stacked bars. This example also demonstrates path transitions to interpolate between different layouts. Streamgraph algorithm, colors, and data generation inspired by Byron and Wattenberg.