This file contains hidden or 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
var chart = d3.select("#chart").append("svg") | |
.attr("width", w) | |
.attr("height", h) | |
.append("g") | |
.attr("id", "plotarea") | |
.attr("transform", "translate(" + margin.left + "," + margin.top + ")") | |
// DRAW DATALINES | |
path = chart.selectAll("path.dataline") | |
.data(data) |
This file contains hidden or 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
<html> | |
<head> | |
<title>not a line chart</title> | |
</head> | |
<body> | |
<script src="http://d3js.org/d3.v2.js"></script> | |
<script> | |
var data = | |
[ |
This file contains hidden or 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
<html> | |
<head> | |
<title>not a line chart</title> | |
</head> | |
<body> | |
<script src="http://d3js.org/d3.v2.js"></script> | |
<script> | |
var data = |
This file contains hidden or 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
<html> | |
<head> | |
<title>not a line chart</title> | |
</head> | |
<body> | |
<script src="http://d3js.org/d3.v2.js"></script> | |
<script> | |
var data = |
This file contains hidden or 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
<html> | |
<head> | |
<title>line chart</title> | |
<link href="nvd3/src/nv.d3.css" rel="stylesheet"> | |
<style> | |
body { | |
overflow-y:scroll; | |
} |
This file contains hidden or 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
#!/usr/bin/env ruby | |
# Usage: gitio URL [CODE] | |
# | |
# Turns a github.com URL | |
# into a git.io URL | |
# | |
# Copies the git.io URL to your clipboard. (requires xsel) | |
url = ARGV[0] | |
code = ARGV[1] |
This file contains hidden or 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
HA! You've been forked! | |
!/usr/bin/env python | |
import pdb | |
expected_rngs = range(0,10) | |
file_list = [0, 1, 2, 3, 4, 5, 6, 8, 9] | |
for antenna in expected_rngs[:]: | |
print "*********************************************************************" |
NewerOlder