Links being severed over time inside of a convex hull
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" /> | |
<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.7/leaflet.css" /> | |
<script src="http://d3js.org/d3.v3.min.js" type="text/javascript"></script> | |
<script src="http://cdn.leafletjs.com/leaflet-0.7/leaflet.js"></script> | |
<script src='https://api.tiles.mapbox.com/mapbox.js/v1.6.4/mapbox.js'></script> | |
<link href='https://api.tiles.mapbox.com/mapbox.js/v1.6.4/mapbox.css' rel='stylesheet' /> |
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 lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title></title> | |
<script src="http://d3js.org/d3.v2.js"></script> | |
<style> | |
line.arrow { | |
stroke: #666; |
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
Show hidden characters
{ | |
"build_systems": | |
[ | |
{ | |
"file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)", | |
"name": "Anaconda Python Builder", | |
"selector": "source.python", | |
"shell_cmd": "~/.virtualenvs/tensorflow/bin/python -u \"$file\"" | |
} | |
], |
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
/* | |
____________________________________ | |
I___|___|___|___|___|__|____|___|__|_I | |
I_|___|___| |___|___|__I | |
)\ I___|__ | ..,a@@@a,a@@@a,.. |___|____I /( | |
( )) I_|__ .,;*;;@@@@@a@@@@@;;;;,. ___|__I (( ) | |
: I__| ;;;;;;;;;a@@^@@a;;;*;;;;; __|_I : | |
,uU I_| ;;;;*;;;a@@@ @@@a;;;;*;;; |__I Uu. | |
:Uu I__|;;;;;;;a@@@@ .@@@@@;;;;;;;; __|I uU: | |
| | I_| ;;*;;;a@@@@@ @@'`@@@;;;;;*; _|_I | | |
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> | |
<script type="text/javascript" src="http://mbostock.github.com/d3/d3.js"></script> | |
<script type="text/javascript" src="http://mbostock.github.com/d3/d3.layout.js"></script> | |
<script type="text/javascript" src="http://mbostock.github.com/d3/d3.geom.js"></script> | |
<style type="text/css"> | |
.link { stroke: #ccc; } | |
.nodetext { pointer-events: none; font: 10px sans-serif; } | |
</style> |
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
# Editor backup files | |
*.bak | |
*~ |
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
source | target | value | |
---|---|---|---|
Harry | Sally | 1.2 | |
Harry | Mario | 1.3 | |
Sarah | Alice | 0.2 | |
Eveie | Alice | 0.5 | |
Peter | Alice | 1.6 | |
Mario | Alice | 0.4 | |
James | Alice | 0.6 | |
Harry | Carol | 0.7 | |
Harry | Nicky | 0.8 |
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
(ns overtone-xmas.bells | |
(:use [overtone.live])) | |
;;tested in Overtone 0.6-dev | |
;;add [overtone.sc.machinery.defcgen] to ns :use clause for 0.5.0 | |
;;http://computermusicresource.com/Simple.bell.tutorial.html | |
(def dull-partials | |
[ | |
0.56 |
An interactive D3.js heatmap that displays normalized values (metrics) read from a json produced by the python pandas module with a DataFrame.tojson(orient="split") call.
You can sort by increasing or decreasing orders on rows or columns. You can also retrieve initial orders. Please click on rows or columns labels to discover this ordering feature.