Skip to content

Instantly share code, notes, and snippets.

@micahstubbs
Last active June 14, 2016 22:15
Show Gist options
  • Select an option

  • Save micahstubbs/5246b8a643393f0753a11b98129a3237 to your computer and use it in GitHub Desktop.

Select an option

Save micahstubbs/5246b8a643393f0753a11b98129a3237 to your computer and use it in GitHub Desktop.
Canvas Links + SVG Nodes

a now-successful attempt to draw links with canvas paths so that the end of each link overlaps perfectly with the center of an svg circle we use to represent a node.

thanks to @enjalot for pointing out that the CSS body { margin: 0; } would do the trick.


a clue: somehow the canvas links layer lines up nicely with the svg nodes layer in the iframe on bl.ocks.org but doesn't at all when it's all by itself on the page ๐Ÿค”

a fork of Blocks Graph I Readme Mentions

a simpler example of this canvas for links, svg for nodes network drawing technique is the bl.ock Ch. 11, Fig. 10 - D3.js in Action from emeeks

<html>
<head>
<title>Blocks Graph - Readme Mentions</title>
<meta charset="utf-8" />
<script src="https://d3js.org/d3.v3.min.js"></script>
<script src="jsLouvain.js"></script>
<style>
body {
margin:0;
position:fixed;
top:0;
right:0;
bottom:0;
left:0;
}
/*svg { width: 100%; height: 100%; }*/
/* Make the chart container fill the page using CSS */
#viz {
position: fixed;
left: 0px;
right: 0px;
top: 0px;
bottom: 0px;
}
</style>
</head>
<body>
<div id="viz"></div>
<script>
// Extract the width and height that was computed by CSS
var vizDiv = document.getElementById("viz");
var width = vizDiv.clientWidth;
var height = vizDiv.clientHeight;
var minSide = d3.min([width, height]);
var xOffset = (width - minSide) / 2;
var yOffset = (height - minSide) / 2;
// Use the extracted size to set the size of a Canvas element
var canvas = d3.select(vizDiv).append("canvas")
.attr("width", width)
.attr("height", height)
.style('position', 'absolute');
// Use the extracted size to set the size of a SVG element
var svg = d3.select(vizDiv).append("svg")
.attr("width", width)
.attr("height", height)
.classed("main", true)
.style('position', 'absolute');
d3.json("readme-blocks-graph.json", function(error,data) { createNetwork(data) });
function onlyUnique(value, index, self) {
return self.indexOf(value) === index;
}
function createNetwork(graphContainer) {
var nodeHash = {};
var nodes = [];
var edges = [];
var edgelist = graphContainer["graph"]["edges"];
var nodelist = graphContainer["graph"]["nodes"];
edgelist.forEach(function (edge) {
if (!nodeHash[edge.source]) {
nodeHash[edge.source] = {
id: edge.source,
label: edge.source
};
nodes.push(nodeHash[edge.source]);
}
if (!nodeHash[edge.target]) {
nodeHash[edge.target] = {
id: edge.target,
label: edge.target
};
nodes.push(nodeHash[edge.target]);
}
if (edge/*.weight == 5*/) {
edges.push({id: nodeHash[edge.source].id + "-" + nodeHash[edge.target].id, source: nodeHash[edge.source], target: nodeHash[edge.target], weight: 1/*edge.weight*/});
}
});
// get some attributes from the nodelist (calculated elsewhere)
// and store them in the nodeHash
nodelist.forEach(function (node) {
if(nodeHash[node.id]) {
nodeHash[node.id]["user"] = node["user"];
nodeHash[node.id]["createdAt"] = node["createdAt"];
nodeHash[node.id]["updatedAt"] = node["updatedAt"];
nodeHash[node.id]["description"] = node["description"];
}
})
// take the attributes now in the nodeHash
// and hang them on the nodes (calculated here from the edgelist)
nodes.forEach(function (node) {
if(nodeHash[node.id]) {
node["user"] = nodeHash[node.id]["user"];
node["createdAt"] = nodeHash[node.id]["createdAt"];
node["updatedAt"] = nodeHash[node.id]["updatedAt"];
node["description"] = nodeHash[node.id]["description"];
}
})
console.log("nodes", nodes);
console.log("edges", edges);
createForceNetwork(nodes, edges);
}
function modularityCensus(nodes, edges, moduleHash) {
edges.forEach(function (edge) {
if (edge.source.module !== edge.target.module) {
edge.border = true;
}
else {
edge.border = false;
}
});
nodes.forEach(function (node) {
var theseEdges = edges.filter(function(d) {return d.source === node || d.target === node});
var theseSourceModules = theseEdges.map(function (d) {return d.source.module}).filter(onlyUnique);
var theseTargetModules = theseEdges.map(function (d) {return d.target.module}).filter(onlyUnique);
if (theseSourceModules.length > 1 || theseTargetModules.length > 1) {
node.border = true;
}
else {
node.border = false;
}
});
}
function createForceNetwork(nodes, edges, graphContainer) {
//create a network from an edgelist
//var colors = d3.scale.ordinal().domain([0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15]).range(["#996666", "#66CCCC", "#FFFF99", "#CC9999", "#666633", "#993300", "#999966", "#660000", "#996699", "#cc6633", "#ff9966", "#339999", "#6699cc", "#ffcc66", "#ff6600", "#00ccccc"]);
var colors = d3.scale.category20();
var node_data = nodes.map(function (d) {return d.id});
var edge_data = edges.map(function (d) {return {source: d.source.id, target: d.target.id, weight: 1}; });
console.log("node_data for jLouvain", node_data);
console.log("edge_data for jLouvain", edge_data);
var community = jLouvain().nodes(node_data).edges(edge_data);
var result = community();
console.log("jLouvain result", result);
nodes.forEach(function (node) {
node.module = result[node.id]
//console.log("node.module", node.module)
});
modularityCensus(nodes, edges, result);
var force = d3.layout.force().nodes(nodes).links(edges)
.size([minSide, minSide]) // make a square
.charge(-100)
.chargeDistance(100)
.linkStrength(2)
.linkDistance(3)
.gravity(0.07);
/*
var edgeEnter = d3.select("svg.main").selectAll("g.edge")
.data(edges, function (d) {return d.id})
.enter()
.append("g")
.attr("class", "edge");
edgeEnter
.append("line")
.style("stroke-width", "1px")
.style("stroke", "gray")
.style("pointer-events", "none");
*/
var nodeEnter = d3.select("svg.main").selectAll("g.node")
.data(nodes, function (d) {return d.id})
.enter();
nodeEnter
.append("a")
.attr("xlink:href", function (d) {
return "http://bl.ocks.org/" + d.user + "/" + d.id;
})
//.attr("target", "_blank")
.append("circle")
.attr("r", 3)
.attr("class", "foreground")
.style("fill", function (d) {return colors(d.module)})
.style("stroke-width", function (d) {return d.border ? "3px" : "1px"})
/*
// draw labels over nodes
nodeEnter.append("text")
.style("text-anchor", "middle")
.attr("y", 3)
.style("stroke-width", "1px")
.style("stroke-opacity", 0.75)
.style("stroke", "white")
.style("font-size", "8px")
.text(function (d) {return d.id})
.style("pointer-events", "none")
nodeEnter.append("text")
.style("text-anchor", "middle")
.attr("y", 3)
.style("font-size", "8px")
.text(function (d) {return d.id})
.style("pointer-events", "none")
*/
force.start();
for(var i = 0; i < 200; i++){
force.tick();
}
//force.on("tick", updateNetwork);
// after 200 iterations, we say the network
// has stabilized and we stop the
// force layout physics simulation
force.stop();
// now we draw the network
updateNetwork(edges);
function updateNetwork(edges) {
// // draw the links
// d3.select("svg.main").selectAll("line")
// .attr("x1", function (d) {return d.source.x})
// .attr("y1", function (d) {return d.source.y})
// .attr("x2", function (d) {return d.target.x})
// .attr("y2", function (d) {return d.target.y})
// .attr("transform", "translate(" + xOffset + "," + yOffset +")");
var context = d3.select("canvas").node().getContext("2d");
context.clearRect(0, 0, width, height);
context.translate(xOffset, yOffset);
// draw links (or edges, if you prefer)
context.strokeStyle = "rgba(0, 0, 0, 0.5)";
context.beginPath();
edges.forEach(function(d) {
context.moveTo(d.source.x, d.source.y);
context.lineTo(d.target.x, d.target.y);
});
context.stroke();
// draw the nodes
d3.select("svg.main").selectAll("circle")
.attr("cx", function (d) {return d.x; })
.attr("cy", function (d) {return d.y; })
.attr("transform", "translate(" + xOffset + "," + yOffset +")");
}
}
</script>
</body>
</html>
/*
Author: Corneliu S. (github.com/upphiminn)
This is a javascript implementation of the Louvain
community detection algorithm (http://arxiv.org/abs/0803.0476)
Based on https://bitbucket.org/taynaud/python-louvain/overview
*/
(function(){
jLouvain = function(){
//Constants
var __PASS_MAX = -1
var __MIN = 0.0000001
//Local vars
var original_graph_nodes;
var original_graph_edges;
var original_graph = {};
var partition_init;
//Helpers
function make_set(array){
var set = {};
array.forEach(function(d,i){
set[d] = true;
});
return Object.keys(set);
};
function obj_values(obj){
var vals = [];
for( var key in obj ) {
if ( obj.hasOwnProperty(key) ) {
vals.push(obj[key]);
}
}
return vals;
};
function get_degree_for_node(graph, node){
var neighbours = graph._assoc_mat[node] ? Object.keys(graph._assoc_mat[node]) : [];
var weight = 0;
neighbours.forEach(function(neighbour,i){
var value = graph._assoc_mat[node][neighbour] || 1;
if(node == neighbour)
value *= 2;
weight += value;
});
return weight;
};
function get_neighbours_of_node(graph, node){
if(typeof graph._assoc_mat[node] == 'undefined')
return [];
var neighbours = Object.keys(graph._assoc_mat[node]);
return neighbours;
}
function get_edge_weight(graph, node1, node2){
return graph._assoc_mat[node1] ? graph._assoc_mat[node1][node2] : undefined;
}
function get_graph_size(graph){
var size = 0;
graph.edges.forEach(function(edge){
size += edge.weight;
});
return size;
}
function add_edge_to_graph(graph, edge){
update_assoc_mat(graph, edge);
var edge_index = graph.edges.map(function(d){
return d.source+'_'+d.target;
}).indexOf(edge.source+'_'+edge.target);
if(edge_index != -1)
graph.edges[edge_index].weight = edge.weight;
else
graph.edges.push(edge);
}
function make_assoc_mat(edge_list){
var mat = {};
edge_list.forEach(function(edge, i){
mat[edge.source] = mat[edge.source] || {};
mat[edge.source][edge.target] = edge.weight;
mat[edge.target] = mat[edge.target] || {};
mat[edge.target][edge.source] = edge.weight;
});
return mat;
}
function update_assoc_mat(graph, edge){
graph._assoc_mat[edge.source] = graph._assoc_mat[edge.source] || {};
graph._assoc_mat[edge.source][edge.target] = edge.weight;
graph._assoc_mat[edge.target] = graph._assoc_mat[edge.target] || {};
graph._assoc_mat[edge.target][edge.source] = edge.weight;
}
function clone(obj){
if(obj == null || typeof(obj) != 'object')
return obj;
var temp = obj.constructor();
for(var key in obj)
temp[key] = clone(obj[key]);
return temp;
}
//Core-Algorithm Related
function init_status(graph, status, part){
status['nodes_to_com'] = {};
status['total_weight'] = 0;
status['internals'] = {};
status['degrees'] = {};
status['gdegrees'] = {};
status['loops'] = {};
status['total_weight'] = get_graph_size(graph);
if(typeof part == 'undefined'){
graph.nodes.forEach(function(node,i){
status.nodes_to_com[node] = i;
var deg = get_degree_for_node(graph, node);
if (deg < 0)
throw 'Bad graph type, use positive weights!';
status.degrees[i] = deg;
status.gdegrees[node] = deg;
status.loops[node] = get_edge_weight(graph, node, node) || 0;
status.internals[i] = status.loops[node];
});
}else{
graph.nodes.forEach(function(node,i){
var com = part[node];
status.nodes_to_com[node] = com;
var deg = get_degree_for_node(graph, node);
status.degrees[com] = (status.degrees[com] || 0) + deg;
status.gdegrees[node] = deg;
var inc = 0.0;
var neighbours = get_neighbours_of_node(graph, node);
neighbours.forEach(function(neighbour, i){
var weight = graph._assoc_mat[node][neighbour];
if (weight <= 0){
throw "Bad graph type, use positive weights";
}
if(part[neighbour] == com){
if (neighbour == node){
inc += weight;
}else{
inc += weight/2.0;
}
}
});
status.internals[com] = (status.internals[com] || 0) + inc;
});
}
}
function __modularity(status){
var links = status.total_weight;
var result = 0.0;
var communities = make_set(obj_values(status.nodes_to_com));
communities.forEach(function(com,i){
var in_degree = status.internals[com] || 0 ;
var degree = status.degrees[com] || 0 ;
if(links > 0){
result = result + in_degree / links - Math.pow((degree / (2.0*links)), 2);
}
});
return result;
}
function __neighcom(node, graph, status){
// compute the communities in the neighb. of the node, with the graph given by
// node_to_com
var weights = {};
var neighboorhood = get_neighbours_of_node(graph, node);//make iterable;
neighboorhood.forEach(function(neighbour, i){
if(neighbour != node){
var weight = graph._assoc_mat[node][neighbour] || 1;
var neighbourcom = status.nodes_to_com[neighbour];
weights[neighbourcom] = (weights[neighbourcom] || 0) + weight;
}
});
return weights;
}
function __insert(node, com, weight, status){
//insert node into com and modify status
status.nodes_to_com[node] = +com;
status.degrees[com] = (status.degrees[com] || 0) + (status.gdegrees[node]||0);
status.internals[com] = (status.internals[com] || 0) + weight + (status.loops[node]||0);
}
function __remove(node, com, weight, status){
//remove node from com and modify status
status.degrees[com] = ((status.degrees[com] || 0) - (status.gdegrees[node] || 0));
status.internals[com] = ((status.internals[com] || 0) - weight -(status.loops[node] ||0));
status.nodes_to_com[node] = -1;
}
function __renumber(dict){
var count = 0;
var ret = clone(dict); //deep copy :)
var new_values = {};
var dict_keys = Object.keys(dict);
dict_keys.forEach(function(key){
var value = dict[key];
var new_value = typeof new_values[value] =='undefined' ? -1 : new_values[value];
if(new_value == -1){
new_values[value] = count;
new_value = count;
count = count + 1;
}
ret[key] = new_value;
});
return ret;
}
function __one_level(graph, status){
//Compute one level of the Communities Dendogram.
var modif = true,
nb_pass_done = 0,
cur_mod = __modularity(status),
new_mod = cur_mod;
while (modif && nb_pass_done != __PASS_MAX){
cur_mod = new_mod;
modif = false;
nb_pass_done += 1
graph.nodes.forEach(function(node,i){
var com_node = status.nodes_to_com[node];
var degc_totw = (status.gdegrees[node] || 0) / (status.total_weight * 2.0);
var neigh_communities = __neighcom(node, graph, status);
__remove(node, com_node, (neigh_communities[com_node] || 0.0), status);
var best_com = com_node;
var best_increase = 0;
var neigh_communities_entries = Object.keys(neigh_communities);//make iterable;
neigh_communities_entries.forEach(function(com,i){
var incr = neigh_communities[com] - (status.degrees[com] || 0.0) * degc_totw;
if (incr > best_increase){
best_increase = incr;
best_com = com;
}
});
__insert(node, best_com, neigh_communities[best_com] || 0, status);
if(best_com != com_node)
modif = true;
});
new_mod = __modularity(status);
if(new_mod - cur_mod < __MIN)
break;
}
}
function induced_graph(partition, graph){
var ret = {nodes:[], edges:[], _assoc_mat: {}};
var w_prec, weight;
//add nodes from partition values
var partition_values = obj_values(partition);
ret.nodes = ret.nodes.concat(make_set(partition_values)); //make set
graph.edges.forEach(function(edge,i){
weight = edge.weight || 1;
var com1 = partition[edge.source];
var com2 = partition[edge.target];
w_prec = (get_edge_weight(ret, com1, com2) || 0);
var new_weight = (w_prec + weight);
add_edge_to_graph(ret, {'source': com1, 'target': com2, 'weight': new_weight});
});
return ret;
}
function partition_at_level(dendogram, level){
var partition = clone(dendogram[0]);
for(var i = 1; i < level + 1; i++ )
Object.keys(partition).forEach(function(key,j){
var node = key;
var com = partition[key];
partition[node] = dendogram[i][com];
});
return partition;
}
function generate_dendogram(graph, part_init){
if(graph.edges.length == 0){
var part = {};
graph.nodes.forEach(function(node,i){
part[node] = node;
});
return part;
}
var status = {};
init_status(original_graph, status, part_init);
var mod = __modularity(status);
var status_list = [];
__one_level(original_graph, status);
var new_mod = __modularity(status);
var partition = __renumber(status.nodes_to_com);
status_list.push(partition);
mod = new_mod;
var current_graph = induced_graph(partition, original_graph);
init_status(current_graph, status);
while (true){
__one_level(current_graph, status);
new_mod = __modularity(status);
if(new_mod - mod < __MIN)
break;
partition = __renumber(status.nodes_to_com);
status_list.push(partition);
mod = new_mod;
current_graph = induced_graph(partition, current_graph);
init_status(current_graph, status);
}
return status_list;
}
var core = function(){
var status = {};
var dendogram = generate_dendogram(original_graph, partition_init);
return partition_at_level(dendogram, dendogram.length - 1);
};
core.nodes = function(nds){
if(arguments.length > 0){
original_graph_nodes = nds;
}
return core;
};
core.edges = function(edgs){
if(typeof original_graph_nodes == 'undefined')
throw 'Please provide the graph nodes first!';
if(arguments.length > 0){
original_graph_edges = edgs;
var assoc_mat = make_assoc_mat(edgs);
original_graph = { 'nodes': original_graph_nodes,
'edges': original_graph_edges,
'_assoc_mat': assoc_mat };
}
return core;
};
core.partition_init = function(prttn){
if(arguments.length > 0){
partition_init = prttn;
}
return core;
};
return core;
}
})();
This file has been truncated, but you can view the full file.
{
"graph": {
"nodes": [
{
"id": "4055908",
"user": "mbostock",
"createdAt": "2012-11-11T19:10:40Z",
"updatedAt": "2016-02-09T01:43:26Z",
"description": "Non-Contiguous Cartogram"
},
{
"id": "4062045",
"user": "mbostock",
"createdAt": "2012-11-12T21:31:44Z",
"updatedAt": "2016-04-30T00:53:20Z",
"description": "Force-Directed Graph"
},
{
"id": "4339083",
"user": "mbostock",
"createdAt": "2012-12-19T18:27:41Z",
"updatedAt": "2016-05-03T18:09:19Z",
"description": "Collapsible Tree"
},
{
"id": "1341021",
"user": "mbostock",
"createdAt": "2011-11-05T02:46:59Z",
"updatedAt": "2016-02-09T00:46:27Z",
"description": "Parallel Coordinates"
},
{
"id": "1731123",
"user": "thedod",
"createdAt": "2012-02-03T16:58:21Z",
"updatedAt": "2016-02-26T00:41:06Z",
"description": "Demagnetizr - Tweetable magnet urls"
},
{
"id": "1341281",
"user": "jasondavies",
"createdAt": "2011-11-05T08:44:08Z",
"updatedAt": "2016-04-05T10:58:23Z",
"description": "Parallel Coordinates"
},
{
"id": "2803171",
"user": "johan",
"createdAt": "2012-05-27T10:06:34Z",
"updatedAt": "2015-10-05T11:57:52Z",
"description": "SVG browser compatibility tables, c/o Jeff Schiller, http://www.codedread.com/svg-support-table.html"
},
{
"id": "2979974",
"user": "ZJONSSON",
"createdAt": "2012-06-23T21:09:16Z",
"updatedAt": "2015-10-06T10:28:28Z",
"description": "barStack (flex layout)"
},
{
"id": "3670696",
"user": "mmparker",
"createdAt": "2012-09-07T23:25:31Z",
"updatedAt": "2016-04-18T16:50:31Z",
"description": "Table-driven plot in d3.js"
},
{
"id": "4053870",
"user": "johan",
"createdAt": "2012-11-11T05:54:24Z",
"updatedAt": "2015-10-12T16:18:02Z",
"description": "User script: Select text to make github line permalinks"
},
{
"id": "b3ff6ae1c120eea654b5",
"user": "d3noob",
"createdAt": "2014-06-20T19:35:38Z",
"updatedAt": "2016-04-22T23:23:58Z",
"description": "Simple d3.js Graph"
},
{
"id": "4680970",
"user": "tnightingale",
"createdAt": "2013-01-31T07:18:16Z",
"updatedAt": "2015-12-12T00:08:45Z",
"description": "Canada Character Distribution "
},
{
"id": "4712128",
"user": "mbostock",
"createdAt": "2013-02-05T04:17:40Z",
"updatedAt": "2016-02-09T02:08:27Z",
"description": "The Sunโ€™s View of the Earth"
},
{
"id": "4718016",
"user": "saraquigley",
"createdAt": "2013-02-05T21:43:48Z",
"updatedAt": "2015-12-12T04:58:53Z",
"description": "Charges - Awards Chord Diagram"
},
{
"id": "4738905",
"user": "gka",
"createdAt": "2013-02-08T12:57:47Z",
"updatedAt": "2015-12-12T07:48:47Z",
"description": "Arbeitslosigkeit 1984 - 2013"
},
{
"id": "4961058",
"user": "abernier",
"createdAt": "2013-02-15T15:28:02Z",
"updatedAt": "2015-12-13T19:09:06Z",
"description": "pie with CSS"
},
{
"id": "4963004",
"user": "calvinmetcalf",
"createdAt": "2013-02-15T19:55:52Z",
"updatedAt": "2015-12-13T19:28:59Z",
"description": "Quadtree Madness Round 2"
},
{
"id": "4962892",
"user": "calvinmetcalf",
"createdAt": "2013-02-15T19:44:28Z",
"updatedAt": "2015-12-13T19:28:57Z",
"description": "Quadtree Madness Round 2"
},
{
"id": "4963273",
"user": "calvinmetcalf",
"createdAt": "2013-02-15T20:26:00Z",
"updatedAt": "2015-12-13T19:29:02Z",
"description": "Quadtree Madness Round 2"
},
{
"id": "4967213",
"user": "calvinmetcalf",
"createdAt": "2013-02-16T14:48:37Z",
"updatedAt": "2015-12-13T20:08:44Z",
"description": "Rtree Madness"
},
{
"id": "4060606",
"user": "mbostock",
"createdAt": "2012-11-12T17:17:13Z",
"updatedAt": "2016-05-01T00:15:38Z",
"description": "Choropleth"
},
{
"id": "4686432",
"user": "dwtkns",
"createdAt": "2013-01-31T21:05:27Z",
"updatedAt": "2016-05-07T22:34:39Z",
"description": "Faux-3d Shaded Globe"
},
{
"id": "4987520",
"user": "mbostock",
"createdAt": "2013-02-19T16:36:19Z",
"updatedAt": "2016-04-20T19:19:16Z",
"description": "Constrained Zoom"
},
{
"id": "3757101",
"user": "mbostock",
"createdAt": "2012-09-20T17:08:47Z",
"updatedAt": "2016-02-09T01:36:55Z",
"description": "Lambert Azimuthal Equal-Area"
},
{
"id": "5028304",
"user": "d3noob",
"createdAt": "2013-02-25T07:21:38Z",
"updatedAt": "2016-04-09T06:12:12Z",
"description": "Sankey diagram with horizontal and vertical node movement"
},
{
"id": "4343214",
"user": "mbostock",
"createdAt": "2012-12-20T05:52:53Z",
"updatedAt": "2016-04-09T01:21:28Z",
"description": "Quadtree"
},
{
"id": "5087116",
"user": "camio",
"createdAt": "2013-03-05T00:53:07Z",
"updatedAt": "2015-12-14T12:29:05Z",
"description": "d3 with x3dom Demo"
},
{
"id": "4349545",
"user": "mbostock",
"createdAt": "2012-12-20T23:30:47Z",
"updatedAt": "2016-02-09T02:11:48Z",
"description": "Brush Handles"
},
{
"id": "1346410",
"user": "mbostock",
"createdAt": "2011-11-07T22:28:10Z",
"updatedAt": "2016-04-26T13:05:26Z",
"description": "Pie Chart Update, II"
},
{
"id": "1098617",
"user": "mbostock",
"createdAt": "2011-07-22T01:04:15Z",
"updatedAt": "2016-02-09T00:21:06Z",
"description": "Arc Clock"
},
{
"id": "4341574",
"user": "mbostock",
"createdAt": "2012-12-19T23:21:34Z",
"updatedAt": "2016-02-09T02:12:20Z",
"description": "The Amazing Pie"
},
{
"id": "4341417",
"user": "mbostock",
"createdAt": "2012-12-19T23:02:31Z",
"updatedAt": "2016-02-09T02:12:22Z",
"description": "Donut Transitions"
},
{
"id": "4183330",
"user": "mbostock",
"createdAt": "2012-12-01T17:21:28Z",
"updatedAt": "2016-02-09T02:13:39Z",
"description": "World Tour"
},
{
"id": "9656675",
"user": "mbostock",
"createdAt": "2014-03-20T03:35:09Z",
"updatedAt": "2016-05-03T20:03:13Z",
"description": "Zoom to Bounding Box II"
},
{
"id": "4707858",
"user": "mbostock",
"createdAt": "2013-02-04T16:37:47Z",
"updatedAt": "2016-02-09T02:08:30Z",
"description": "Project to Bounding Box"
},
{
"id": "1153292",
"user": "mbostock",
"createdAt": "2011-08-18T04:26:38Z",
"updatedAt": "2016-02-09T00:24:14Z",
"description": "Mobile Patent Suits"
},
{
"id": "2706022",
"user": "mbostock",
"createdAt": "2012-05-15T23:41:31Z",
"updatedAt": "2016-02-23T00:18:20Z",
"description": "Force-Directed Graph with Mouseover"
},
{
"id": "5141278",
"user": "d3noob",
"createdAt": "2013-03-12T08:54:42Z",
"updatedAt": "2016-02-29T18:41:53Z",
"description": "Basic Directional Force Layout Diagram"
},
{
"id": "5107491",
"user": "espinielli",
"createdAt": "2013-03-07T11:44:57Z",
"updatedAt": "2015-12-14T15:28:50Z",
"description": "Random World Tour with flags"
},
{
"id": "5044313",
"user": "mbostock",
"createdAt": "2013-02-27T02:07:24Z",
"updatedAt": "2016-02-09T02:08:02Z",
"description": "Gray Earth"
},
{
"id": "4132797",
"user": "mbostock",
"createdAt": "2012-11-22T20:22:39Z",
"updatedAt": "2016-05-03T02:58:53Z",
"description": "Zoomable Map Tiles"
},
{
"id": "5149102",
"user": "timelyportfolio",
"createdAt": "2013-03-13T03:10:56Z",
"updatedAt": "2015-12-14T21:09:09Z",
"description": "zui53 and d3 line chart"
},
{
"id": "5141528",
"user": "d3noob",
"createdAt": "2013-03-12T09:34:22Z",
"updatedAt": "2015-12-14T20:08:58Z",
"description": "Directional Force Layout Diagram with Node Highlighting"
},
{
"id": "4342045",
"user": "mbostock",
"createdAt": "2012-12-20T00:34:28Z",
"updatedAt": "2016-03-29T23:23:04Z",
"description": "Symbol Map"
},
{
"id": "4015254",
"user": "mbostock",
"createdAt": "2012-11-05T04:03:07Z",
"updatedAt": "2016-02-09T01:43:14Z",
"description": "Zoomable Area"
},
{
"id": "5203275",
"user": "widged",
"createdAt": "2013-03-20T09:01:32Z",
"updatedAt": "2015-12-15T04:39:28Z",
"description": "D3js simple grouping "
},
{
"id": "580de8199ea3b85f822a",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "3711652",
"user": "mbostock",
"createdAt": "2012-09-13T03:25:16Z",
"updatedAt": "2016-02-09T01:34:42Z",
"description": "Projection Transitions"
},
{
"id": "4063530",
"user": "mbostock",
"createdAt": "2012-11-13T02:12:03Z",
"updatedAt": "2016-05-04T02:28:39Z",
"description": "Circle Packing"
},
{
"id": "5310854",
"user": "lgersman",
"createdAt": "2013-04-04T14:35:01Z",
"updatedAt": "2015-12-15T19:19:29Z",
"description": "d3.js selection frame example. "
},
{
"id": "5311083",
"user": "lgersman",
"createdAt": "2013-04-04T14:56:54Z",
"updatedAt": "2016-04-20T20:16:19Z",
"description": "improved version of my d3.js selection frame example (https://gist.github.com/lgersman/5310854) supporting draggable/selectable nodes"
},
{
"id": "5311202",
"user": "lgersman",
"createdAt": "2013-04-04T15:09:10Z",
"updatedAt": "2016-04-09T22:16:11Z",
"description": "state diagram editor example based on (https://gist.github.com/lgersman/5311083) "
},
{
"id": "3305854",
"user": "mbostock",
"createdAt": "2012-08-09T16:55:20Z",
"updatedAt": "2016-02-09T01:30:36Z",
"description": "Custom Tweens"
},
{
"id": "5370827",
"user": "lgersman",
"createdAt": "2013-04-12T09:30:43Z",
"updatedAt": "2016-04-09T22:16:44Z",
"description": "improved state diagram editor based on https://gist.github.com/lgersman/5311202 featuring curvy connections with helper points"
},
{
"id": "5180185",
"user": "mbostock",
"createdAt": "2013-03-17T04:53:47Z",
"updatedAt": "2016-02-09T02:07:47Z",
"description": "Zipdecode"
},
{
"id": "5386999",
"user": "herrstucki",
"createdAt": "2013-04-15T09:35:55Z",
"updatedAt": "2015-12-16T05:49:10Z",
"description": "Zipdecode Switzerland"
},
{
"id": "2657838",
"user": "benjchristensen",
"createdAt": "2012-05-11T06:05:12Z",
"updatedAt": "2016-01-03T15:12:49Z",
"description": "Interactive Line Graph (D3)"
},
{
"id": "5416440",
"user": "mbostock",
"createdAt": "2013-04-18T21:38:03Z",
"updatedAt": "2016-02-09T02:06:32Z",
"description": "Merging States II"
},
{
"id": "5416405",
"user": "mbostock",
"createdAt": "2013-04-18T21:32:47Z",
"updatedAt": "2016-05-07T12:58:41Z",
"description": "Merging States"
},
{
"id": "4061961",
"user": "mbostock",
"createdAt": "2012-11-12T21:17:49Z",
"updatedAt": "2016-04-26T08:13:54Z",
"description": "Bullet Charts"
},
{
"id": "5518052",
"user": "milroc",
"createdAt": "2013-05-04T16:51:16Z",
"updatedAt": "2015-12-17T00:00:02Z",
"description": "bar + sum: vanilla d3.js"
},
{
"id": "5519642",
"user": "milroc",
"createdAt": "2013-05-05T04:01:22Z",
"updatedAt": "2015-12-17T00:19:07Z",
"description": "bar + sum: reusable d3.js"
},
{
"id": "5519819",
"user": "milroc",
"createdAt": "2013-05-05T05:17:10Z",
"updatedAt": "2015-12-17T00:19:04Z",
"description": "bar + sum: d3.js & angular.js"
},
{
"id": "5520449",
"user": "milroc",
"createdAt": "2013-05-05T10:39:46Z",
"updatedAt": "2015-12-17T00:19:25Z",
"description": "bar + sum: d3.js & ember.js "
},
{
"id": "5522467",
"user": "milroc",
"createdAt": "2013-05-05T22:36:54Z",
"updatedAt": "2016-05-03T19:31:45Z",
"description": "bar + sum: d3.js & backbone.js"
},
{
"id": "d22bbf92231876505e5d",
"user": "milroc",
"createdAt": "2014-07-06T22:11:13Z",
"updatedAt": "2015-08-29T14:03:35Z",
"description": "bar + sum: d3.js, react.js, & Flux"
},
{
"id": "5553051",
"user": "milroc",
"createdAt": "2013-05-10T08:00:19Z",
"updatedAt": "2015-12-17T04:48:59Z",
"description": " "
},
{
"id": "5544621",
"user": "mbostock",
"createdAt": "2013-05-09T00:06:24Z",
"updatedAt": "2016-02-09T02:05:56Z",
"description": "Mareyโ€™s Trains II"
},
{
"id": "3783604",
"user": "mbostock",
"createdAt": "2012-09-25T18:33:41Z",
"updatedAt": "2016-02-09T01:37:37Z",
"description": "d3.geo.path + Canvas"
},
{
"id": "5557726",
"user": "mbostock",
"createdAt": "2013-05-10T21:54:22Z",
"updatedAt": "2016-02-09T02:05:44Z",
"description": "Projected TopoJSON"
},
{
"id": "5581551",
"user": "ZJONSSON",
"createdAt": "2013-05-15T03:49:35Z",
"updatedAt": "2015-12-17T08:39:07Z",
"description": ""
},
{
"id": "5593150",
"user": "mbostock",
"createdAt": "2013-05-16T16:44:01Z",
"updatedAt": "2016-04-09T03:53:25Z",
"description": "Vector Tiles"
},
{
"id": "1962173",
"user": "bunkat",
"createdAt": "2012-03-02T23:07:47Z",
"updatedAt": "2016-04-29T01:48:08Z",
"description": "Swimlane Chart using d3.js"
},
{
"id": "5624141",
"user": "NelsonMinar",
"createdAt": "2013-05-21T23:33:29Z",
"updatedAt": "2015-12-17T14:20:01Z",
"description": null
},
{
"id": "4329423",
"user": "mbostock",
"createdAt": "2012-12-18T16:26:31Z",
"updatedAt": "2016-02-09T02:12:44Z",
"description": "Raster Reprojection"
},
{
"id": "3790444",
"user": "mbostock",
"createdAt": "2012-09-26T20:37:22Z",
"updatedAt": "2016-02-09T01:37:50Z",
"description": "Satellite Projection"
},
{
"id": "1642989",
"user": "mbostock",
"createdAt": "2012-01-19T21:45:20Z",
"updatedAt": "2016-02-09T01:07:46Z",
"description": "Spline Transition"
},
{
"id": "1705868",
"user": "mbostock",
"createdAt": "2012-01-30T18:38:08Z",
"updatedAt": "2016-02-09T01:12:24Z",
"description": "Point-Along-Path Interpolation"
},
{
"id": "5662135",
"user": "cloudshapes",
"createdAt": "2013-05-28T11:35:43Z",
"updatedAt": "2015-12-17T19:39:23Z",
"description": "attrTween in a Transition to Move an Element Using a Function"
},
{
"id": "3689931,",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "1667367",
"user": "mbostock",
"createdAt": "2012-01-24T02:10:42Z",
"updatedAt": "2016-04-15T06:54:46Z",
"description": "Focus+Context via Brushing"
},
{
"id": "4180634",
"user": "mbostock",
"createdAt": "2012-12-01T05:12:55Z",
"updatedAt": "2016-04-20T13:59:18Z",
"description": "World Map"
},
{
"id": "5732685",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "4973620",
"user": "dwtkns",
"createdAt": "2013-02-17T21:39:20Z",
"updatedAt": "2015-12-13T20:58:48Z",
"description": "Faux-3D Arcs"
},
{
"id": "5732719",
"user": "darrenjaworski",
"createdAt": "2013-06-07T22:00:54Z",
"updatedAt": "2015-12-18T05:28:54Z",
"description": "TOPOJSON from shapefile - OK Census tracts"
},
{
"id": "5562380",
"user": "mbostock",
"createdAt": "2013-05-12T04:04:47Z",
"updatedAt": "2016-02-09T02:05:40Z",
"description": "California Population Density"
},
{
"id": "5616813",
"user": "mbostock",
"createdAt": "2013-05-21T00:54:32Z",
"updatedAt": "2016-02-09T02:05:25Z",
"description": "Vector Tiles"
},
{
"id": "1804919",
"user": "mbostock",
"createdAt": "2012-02-11T23:08:24Z",
"updatedAt": "2016-02-09T01:13:30Z",
"description": "Multi-Foci Force Layout"
},
{
"id": "5731808",
"user": "mbostock",
"createdAt": "2013-06-07T19:34:45Z",
"updatedAt": "2016-02-09T02:04:20Z",
"description": "Rotating Transverse"
},
{
"id": "5874133",
"user": "darrenjaworski",
"createdAt": "2013-06-27T05:21:46Z",
"updatedAt": "2015-12-19T01:09:29Z",
"description": "Tutorial I"
},
{
"id": "5874214",
"user": "darrenjaworski",
"createdAt": "2013-06-27T05:40:28Z",
"updatedAt": "2015-12-19T01:09:32Z",
"description": "Tutorial II"
},
{
"id": "5874227",
"user": "darrenjaworski",
"createdAt": "2013-06-27T05:43:49Z",
"updatedAt": "2015-12-19T01:09:33Z",
"description": "Tutorial III"
},
{
"id": "5874229",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "5874233",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "5874236",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "5397362",
"user": "darrenjaworski",
"createdAt": "2013-04-16T16:26:21Z",
"updatedAt": "2015-12-16T07:18:51Z",
"description": "Continuous gradient key"
},
{
"id": "5886992",
"user": "d3noob",
"createdAt": "2013-06-28T18:41:53Z",
"updatedAt": "2015-12-19T02:59:06Z",
"description": "Simple d3.js Bullet Chart example"
},
{
"id": "1021953",
"user": "mbostock",
"createdAt": "2011-06-12T20:35:23Z",
"updatedAt": "2016-02-09T00:15:29Z",
"description": "Multi-Foci Force Layout"
},
{
"id": "5691513",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "1389927",
"user": "mbostock",
"createdAt": "2011-11-23T21:11:57Z",
"updatedAt": "2016-04-29T14:14:52Z",
"description": "A Bar Chart"
},
{
"id": "5762959",
"user": "darrenjaworski",
"createdAt": "2013-06-12T05:09:24Z",
"updatedAt": "2015-12-18T09:39:28Z",
"description": "TOPOJSON points - OK Prisons"
},
{
"id": "1129492",
"user": "mbostock",
"createdAt": "2011-08-06T16:40:21Z",
"updatedAt": "2016-02-18T06:57:19Z",
"description": "Bounded Force Layout"
},
{
"id": "899711",
"user": "mbostock",
"createdAt": "2011-04-02T18:03:45Z",
"updatedAt": "2016-05-03T08:13:43Z",
"description": "Google Maps + D3"
},
{
"id": "5798635",
"user": "darrenjaworski",
"createdAt": "2013-06-17T17:35:40Z",
"updatedAt": "2015-12-18T14:39:10Z",
"description": "Two vector tile layers (OSP)"
},
{
"id": "5820393",
"user": "karmadude",
"createdAt": "2013-06-20T04:56:15Z",
"updatedAt": "2016-02-27T14:50:24Z",
"description": "San Francisco Contours"
},
{
"id": "6052814",
"user": "nbremer",
"createdAt": "2013-07-22T10:16:34Z",
"updatedAt": "2015-12-20T01:59:10Z",
"description": "Self Organizing Map - Heatmap - D3"
},
{
"id": "6052681",
"user": "nbremer",
"createdAt": "2013-07-22T09:50:44Z",
"updatedAt": "2015-12-20T01:59:03Z",
"description": "Self Organizing Map - Hexagonal Heatmap - Lines"
},
{
"id": "6077722",
"user": "thedod",
"createdAt": "2013-07-25T08:02:41Z",
"updatedAt": "2015-12-20T05:19:34Z",
"description": "Who voted against our privacy (and where they live)"
},
{
"id": "6187523",
"user": "CodeXmonk",
"createdAt": "2013-08-08T18:49:57Z",
"updatedAt": "2015-12-20T19:59:11Z",
"description": "BulleT: a variant based on mbostock's bullet with Miso's d3.chart.js"
},
{
"id": "5249328",
"user": "mbostock",
"createdAt": "2013-03-26T21:16:47Z",
"updatedAt": "2016-03-08T06:29:47Z",
"description": "Hexagon Mesh"
},
{
"id": "6150151",
"user": "nitaku",
"createdAt": "2013-08-04T12:10:33Z",
"updatedAt": "2015-12-20T14:49:10Z",
"description": "Colored hex regions"
},
{
"id": "3887118",
"user": "mbostock",
"createdAt": "2012-10-14T03:16:08Z",
"updatedAt": "2016-04-03T13:05:03Z",
"description": "Scatterplot"
},
{
"id": "6112167",
"user": "CodeXmonk",
"createdAt": "2013-07-30T11:31:01Z",
"updatedAt": "2016-02-12T01:56:12Z",
"description": "Simple modification based on mbostock's Bullet Charts."
},
{
"id": "1703449",
"user": "christophermanning",
"createdAt": "2012-01-30T08:59:57Z",
"updatedAt": "2016-05-07T04:28:10Z",
"description": "Hamiltonian Graph Builder"
},
{
"id": "6203413",
"user": "christophermanning",
"createdAt": "2013-08-11T04:39:54Z",
"updatedAt": "2016-02-16T19:59:43Z",
"description": "CTA Line Simplification"
},
{
"id": "4062085",
"user": "mbostock",
"createdAt": "2012-11-12T21:38:13Z",
"updatedAt": "2016-02-09T01:43:59Z",
"description": "Population Pyramid"
},
{
"id": "6224455",
"user": "cmdoptesc",
"createdAt": "2013-08-13T18:56:59Z",
"updatedAt": "2016-03-12T09:52:17Z",
"description": "muniNow Quick Demo"
},
{
"id": "6226150",
"user": "cmdoptesc",
"createdAt": "2013-08-13T22:00:53Z",
"updatedAt": "2015-12-21T01:18:53Z",
"description": "JavaScript D3: Drawing Concentric Arcs"
},
{
"id": "5100636",
"user": "mbostock",
"createdAt": "2013-03-06T16:29:21Z",
"updatedAt": "2016-04-30T20:28:27Z",
"description": "Arc Tween"
},
{
"id": "6228457",
"user": "cmdoptesc",
"createdAt": "2013-08-14T06:16:43Z",
"updatedAt": "2015-12-21T01:29:10Z",
"description": "JavaScript D3: Arc tween transitions using attrTween and attr methods"
},
{
"id": "5144735",
"user": "mbostock",
"createdAt": "2013-03-12T16:59:57Z",
"updatedAt": "2016-02-09T02:07:50Z",
"description": "Kentucky Population Density"
},
{
"id": "6242308",
"user": "mbostock",
"createdAt": "2013-08-15T16:35:28Z",
"updatedAt": "2016-02-09T02:02:22Z",
"description": "Map Zooming"
},
{
"id": "4090848",
"user": "mbostock",
"createdAt": "2012-11-16T20:57:09Z",
"updatedAt": "2016-04-22T01:22:15Z",
"description": "U.S. States TopoJSON"
},
{
"id": "5851933",
"user": "mbostock",
"createdAt": "2013-06-24T17:36:45Z",
"updatedAt": "2016-02-09T02:03:40Z",
"description": "Snowdenโ€™s Route"
},
{
"id": "6279966",
"user": "hugolpz",
"createdAt": "2013-08-20T10:51:34Z",
"updatedAt": "2015-12-21T08:39:11Z",
"description": "France_topographic_map.svg"
},
{
"id": "2374239",
"user": "mbostock",
"createdAt": "2012-04-13T06:04:27Z",
"updatedAt": "2016-03-08T19:30:11Z",
"description": "Zoomable Geography"
},
{
"id": "5649592",
"user": "mbostock",
"createdAt": "2013-05-25T16:14:06Z",
"updatedAt": "2016-05-07T15:06:11Z",
"description": "Stroke Dash Interpolation"
},
{
"id": "2846454",
"user": "mbostock",
"createdAt": "2012-05-31T21:33:53Z",
"updatedAt": "2016-02-09T01:19:58Z",
"description": "Force Layout & Matrix Market Format"
},
{
"id": "4060366",
"user": "mbostock",
"createdAt": "2012-11-12T16:37:44Z",
"updatedAt": "2016-02-09T01:43:31Z",
"description": "Voronoi Tessellation"
},
{
"id": "1405439",
"user": "njvack",
"createdAt": "2011-11-29T16:37:32Z",
"updatedAt": "2016-02-09T17:40:48Z",
"description": "Voronoi-based point picker"
},
{
"id": "1734663",
"user": "christophermanning",
"createdAt": "2012-02-04T02:41:42Z",
"updatedAt": "2016-05-04T06:14:58Z",
"description": "Voronoi Diagram with Force Directed Nodes and Delaunay Links"
},
{
"id": "6224396",
"user": "mbostock",
"createdAt": "2013-08-13T18:50:50Z",
"updatedAt": "2016-02-09T02:02:41Z",
"description": "Mitchellโ€™s Best-Candidate"
},
{
"id": "6439398",
"user": "simzou",
"createdAt": "2013-09-04T16:25:08Z",
"updatedAt": "2015-12-22T07:39:01Z",
"description": "Kobe Bryant 2012-13 Game Log Line Graph"
},
{
"id": "3884955",
"user": "mbostock",
"createdAt": "2012-10-13T15:16:08Z",
"updatedAt": "2016-04-29T16:14:38Z",
"description": "Multi-Series Line Chart"
},
{
"id": "6453048",
"user": "jczaplew",
"createdAt": "2013-09-05T17:02:36Z",
"updatedAt": "2015-12-22T09:38:59Z",
"description": "Using d3.behavior.drag with a map"
},
{
"id": "6459889",
"user": "simzou",
"createdAt": "2013-09-06T05:30:17Z",
"updatedAt": "2016-03-07T03:03:05Z",
"description": "US Map of Nielsen Media Markets"
},
{
"id": "2206590",
"user": "mbostock",
"createdAt": "2012-03-26T17:16:19Z",
"updatedAt": "2016-02-09T01:17:03Z",
"description": "click-to-zoom via transform"
},
{
"id": "1345853",
"user": "mbostock",
"createdAt": "2011-11-07T19:13:54Z",
"updatedAt": "2016-02-09T00:49:07Z",
"description": "Transform Transitions"
},
{
"id": "5694697",
"user": "herrstucki",
"createdAt": "2013-06-02T19:52:32Z",
"updatedAt": "2015-12-18T00:09:19Z",
"description": "Sorting the Grid"
},
{
"id": "3019563",
"user": "mbostock",
"createdAt": "2012-06-29T17:45:20Z",
"updatedAt": "2016-02-09T01:23:49Z",
"description": "Margin Convention"
},
{
"id": "3894205",
"user": "mbostock",
"createdAt": "2012-10-15T18:33:17Z",
"updatedAt": "2016-02-09T01:41:39Z",
"description": "Difference Chart"
},
{
"id": "3885304",
"user": "mbostock",
"createdAt": "2012-10-13T16:45:02Z",
"updatedAt": "2016-05-05T15:44:43Z",
"description": "Bar Chart"
},
{
"id": "21746a9668ffdf6d8242",
"user": "nbremer",
"createdAt": "2015-09-29T17:01:06Z",
"updatedAt": "2016-05-04T00:19:27Z",
"description": "Radar Chart Redesign"
},
{
"id": "6514960",
"user": "nitaku",
"createdAt": "2013-09-10T20:15:19Z",
"updatedAt": "2015-12-22T18:48:57Z",
"description": "Hilbert curve (L-system)"
},
{
"id": "6531299",
"user": "cmdoptesc",
"createdAt": "2013-09-11T23:39:45Z",
"updatedAt": "2015-12-22T21:09:14Z",
"description": "D3: Open Hours (.csv parsing)"
},
{
"id": "94db779237655907b907",
"user": "nbremer",
"createdAt": "2014-12-13T20:37:42Z",
"updatedAt": "2015-10-01T20:24:10Z",
"description": "Storytelling with Chord Diagram"
},
{
"id": "11094667",
"user": "ndarville",
"createdAt": "2014-04-19T19:19:56Z",
"updatedAt": "2015-08-29T14:00:10Z",
"description": "Party Trend (Multi-Party Display)"
},
{
"id": "1086421",
"user": "mbostock",
"createdAt": "2011-07-16T15:01:20Z",
"updatedAt": "2016-02-09T00:19:19Z",
"description": "Linear Gradient"
},
{
"id": "4054247,",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "6713736",
"user": "mbostock",
"createdAt": "2013-09-26T12:52:58Z",
"updatedAt": "2016-02-09T02:00:57Z",
"description": "Ocean"
},
{
"id": "5230564",
"user": "mbostock",
"createdAt": "2013-03-24T04:35:07Z",
"updatedAt": "2016-02-09T02:07:41Z",
"description": "Times"
},
{
"id": "6603431",
"user": "jczaplew",
"createdAt": "2013-09-18T01:51:26Z",
"updatedAt": "2015-12-23T07:49:16Z",
"description": "Adaptive Composite Map Projection example"
},
{
"id": "6863459",
"user": "cjrd",
"createdAt": "2013-10-07T06:46:22Z",
"updatedAt": "2016-04-25T15:54:24Z",
"description": "Interactive tool for creating directed graphs using d3.js."
},
{
"id": "3048450",
"user": "mbostock",
"createdAt": "2012-07-04T17:25:05Z",
"updatedAt": "2016-03-15T06:13:17Z",
"description": "Histogram"
},
{
"id": "6901037",
"user": "nitaku",
"createdAt": "2013-10-09T13:11:49Z",
"updatedAt": "2015-12-25T02:09:32Z",
"description": "Circles"
},
{
"id": "6622700",
"user": "nitaku",
"createdAt": "2013-09-19T12:27:12Z",
"updatedAt": "2015-12-23T10:39:03Z",
"description": "GeoJSON squares"
},
{
"id": "6173659",
"user": "nitaku",
"createdAt": "2013-08-07T12:34:16Z",
"updatedAt": "2015-12-20T18:09:05Z",
"description": "Hex coordinates"
},
{
"id": "7023140",
"user": "nitaku",
"createdAt": "2013-10-17T11:15:26Z",
"updatedAt": "2015-12-25T18:49:15Z",
"description": "Gosper hex tiling"
},
{
"id": "7008736",
"user": "nitaku",
"createdAt": "2013-10-16T14:36:04Z",
"updatedAt": "2016-01-18T17:40:18Z",
"description": "Custom hex projection"
},
{
"id": "6521802",
"user": "nitaku",
"createdAt": "2013-09-11T10:22:03Z",
"updatedAt": "2015-12-22T19:49:12Z",
"description": "Gosper curve (L-system)"
},
{
"id": "7015186",
"user": "nitaku",
"createdAt": "2013-10-16T21:27:57Z",
"updatedAt": "2015-12-25T17:39:36Z",
"description": "Gosper hex tiling (fancy)"
},
{
"id": "7023794",
"user": "nitaku",
"createdAt": "2013-10-17T12:11:09Z",
"updatedAt": "2015-12-25T18:49:35Z",
"description": "Gosper regions"
},
{
"id": "6982528",
"user": "nitaku",
"createdAt": "2013-10-14T21:27:59Z",
"updatedAt": "2015-12-25T13:19:06Z",
"description": "TopoJSON geometrical renderer"
},
{
"id": "7025272",
"user": "nitaku",
"createdAt": "2013-10-17T13:52:38Z",
"updatedAt": "2015-12-25T19:09:02Z",
"description": "Precomputed Gosper regions"
},
{
"id": "6905926",
"user": "mbostock",
"createdAt": "2013-10-09T18:33:42Z",
"updatedAt": "2016-02-09T02:00:36Z",
"description": "Snowflake Simplification"
},
{
"id": "7051552",
"user": "phil-pedruco",
"createdAt": "2013-10-19T04:06:23Z",
"updatedAt": "2015-12-25T22:39:20Z",
"description": "Disable zoom on scrollwheel but retain the ability to pan #2"
},
{
"id": "7051484",
"user": "phil-pedruco",
"createdAt": "2013-10-19T03:58:18Z",
"updatedAt": "2015-12-25T22:39:18Z",
"description": "Disable zoom on scrollwheel but retain the ability to pan #1"
},
{
"id": "1073373",
"user": "mbostock",
"createdAt": "2011-07-09T05:53:27Z",
"updatedAt": "2016-02-09T00:19:01Z",
"description": "Force-Directed States of America"
},
{
"id": "4063423",
"user": "mbostock",
"createdAt": "2012-11-13T01:52:00Z",
"updatedAt": "2016-05-08T19:53:02Z",
"description": "Sunburst Partition"
},
{
"id": "7032353",
"user": "radiocontrolled",
"createdAt": "2013-10-17T21:17:54Z",
"updatedAt": "2015-12-25T20:08:59Z",
"description": "Humanitarian population by major Canadian city, 2012"
},
{
"id": "7204160",
"user": "jczaplew",
"createdAt": "2013-10-28T20:36:04Z",
"updatedAt": "2015-12-26T19:49:12Z",
"description": "Topojson Paleogeography (normal order)"
},
{
"id": "4237768",
"user": "mbostock",
"createdAt": "2012-12-08T00:22:15Z",
"updatedAt": "2016-02-09T02:13:15Z",
"description": "Voronoi Clipping"
},
{
"id": "3846051",
"user": "mbostock",
"createdAt": "2012-10-06T20:43:40Z",
"updatedAt": "2016-02-09T01:38:53Z",
"description": "Voronoi tests"
},
{
"id": "7235174",
"user": "nitaku",
"createdAt": "2013-10-30T15:59:23Z",
"updatedAt": "2015-12-27T00:08:59Z",
"description": "Concavity"
},
{
"id": "5737662.",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "7233233",
"user": "nitaku",
"createdAt": "2013-10-30T14:06:07Z",
"updatedAt": "2015-12-26T23:49:09Z",
"description": "Voronoi"
},
{
"id": "4341156",
"user": "mbostock",
"createdAt": "2012-12-19T22:34:05Z",
"updatedAt": "2016-02-09T02:12:25Z",
"description": "Delaunay Triangulation"
},
{
"id": "1157787",
"user": "mbostock",
"createdAt": "2011-08-19T19:39:00Z",
"updatedAt": "2016-02-09T00:24:27Z",
"description": "Small Multiples"
},
{
"id": "6476579",
"user": "Caged",
"createdAt": "2013-09-07T15:31:31Z",
"updatedAt": "2016-04-15T06:55:50Z",
"description": "Using d3-tip to add tooltips to a d3 bar chart"
},
{
"id": "2295155",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "3680999",
"user": "mbostock",
"createdAt": "2012-09-08T23:26:45Z",
"updatedAt": "2016-02-09T01:33:50Z",
"description": "SVG Geometric Zooming"
},
{
"id": "7319558",
"user": "dwtkns",
"createdAt": "2013-11-05T14:10:17Z",
"updatedAt": "2015-12-27T11:39:00Z",
"description": "SVG patterns & animation test"
},
{
"id": "7328902",
"user": "jkutianski",
"createdAt": "2013-11-06T00:33:08Z",
"updatedAt": "2015-12-27T12:49:14Z",
"description": "My attempt to add templating to d3.js"
},
{
"id": "3750558",
"user": "mbostock",
"createdAt": "2012-09-19T16:18:14Z",
"updatedAt": "2016-02-10T11:03:44Z",
"description": "Sticky Force Layout"
},
{
"id": "7483341",
"user": "nitaku",
"createdAt": "2013-11-15T12:06:07Z",
"updatedAt": "2015-12-28T09:59:18Z",
"description": "ID-based force layout"
},
{
"id": "7493693",
"user": "nitaku",
"createdAt": "2013-11-15T23:43:20Z",
"updatedAt": "2015-12-28T11:29:11Z",
"description": "Graph editing"
},
{
"id": "5001347",
"user": "rkirsling",
"createdAt": "2013-02-21T02:03:48Z",
"updatedAt": "2016-03-18T00:05:31Z",
"description": "Directed Graph Editor"
},
{
"id": "7512487",
"user": "nitaku",
"createdAt": "2013-11-17T12:01:52Z",
"updatedAt": "2015-12-28T14:09:02Z",
"description": "Graph editing tools"
},
{
"id": "6890861",
"user": "nitaku",
"createdAt": "2013-10-08T20:13:52Z",
"updatedAt": "2015-12-25T00:49:19Z",
"description": "IndexedDB"
},
{
"id": "7517984",
"user": "nitaku",
"createdAt": "2013-11-17T20:38:21Z",
"updatedAt": "2015-12-28T14:58:58Z",
"description": "Graph editing with persistence"
},
{
"id": "7475950",
"user": "jkutianski",
"createdAt": "2013-11-14T23:03:35Z",
"updatedAt": "2015-12-28T08:59:18Z",
"description": "A new attempt to add templating to d3.js"
},
{
"id": "2368837",
"user": "mbostock",
"createdAt": "2012-04-12T16:27:09Z",
"updatedAt": "2016-05-03T16:25:01Z",
"description": "Bar Chart with Negative Values"
},
{
"id": "5052095",
"user": "timelyportfolio",
"createdAt": "2013-02-27T21:50:49Z",
"updatedAt": "2016-01-18T15:07:07Z",
"description": ""
},
{
"id": "7188018",
"user": "radiocontrolled",
"createdAt": "2013-10-27T21:21:44Z",
"updatedAt": "2015-12-26T17:38:58Z",
"description": "Humanitarian population by Canadian region, 2012"
},
{
"id": "4339184",
"user": "mbostock",
"createdAt": "2012-12-19T18:34:01Z",
"updatedAt": "2016-02-12T19:48:04Z",
"description": "Reingoldโ€“Tilford Tree"
},
{
"id": "1093025",
"user": "mbostock",
"createdAt": "2011-07-19T16:47:24Z",
"updatedAt": "2016-04-19T19:53:19Z",
"description": "Collapsible Indented Tree"
},
{
"id": "6826638",
"user": "ndarville",
"createdAt": "2013-10-04T14:16:32Z",
"updatedAt": "2015-12-24T16:19:00Z",
"description": "Relative Budgets"
},
{
"id": "3757110",
"user": "mbostock",
"createdAt": "2012-09-20T17:10:02Z",
"updatedAt": "2016-02-09T01:36:59Z",
"description": "Azimuthal Equidistant"
},
{
"id": "7910706",
"user": "nitaku",
"createdAt": "2013-12-11T13:48:07Z",
"updatedAt": "2015-12-31T00:59:03Z",
"description": "Random tree"
},
{
"id": "4150951",
"user": "mbostock",
"createdAt": "2012-11-26T22:03:49Z",
"updatedAt": "2016-04-19T18:48:46Z",
"description": "Clipped Map Tiles"
},
{
"id": "1276463",
"user": "mbostock",
"createdAt": "2011-10-10T20:41:57Z",
"updatedAt": "2016-02-09T00:35:25Z",
"description": "DOM-to-Canvas using D3"
},
{
"id": "7962295",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "7938492",
"user": "nitaku",
"createdAt": "2013-12-13T01:15:00Z",
"updatedAt": "2015-12-31T05:09:00Z",
"description": "Random tree II"
},
{
"id": "7960622",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "4136647",
"user": "mbostock",
"createdAt": "2012-11-23T17:56:09Z",
"updatedAt": "2016-02-09T01:46:11Z",
"description": "U.S. TopoJSON"
},
{
"id": "8028264",
"user": "nitaku",
"createdAt": "2013-12-18T19:27:21Z",
"updatedAt": "2015-12-31T18:39:11Z",
"description": "Fractal treemap (random, Gosper)"
},
{
"id": "7518871",
"user": "nitaku",
"createdAt": "2013-11-17T22:08:46Z",
"updatedAt": "2015-12-28T14:59:16Z",
"description": "Graph with immutable nodes and links"
},
{
"id": "4063570",
"user": "mbostock",
"createdAt": "2012-11-13T02:20:49Z",
"updatedAt": "2016-03-23T16:39:53Z",
"description": "Cluster Dendrogram"
},
{
"id": "3757132",
"user": "mbostock",
"createdAt": "2012-09-20T17:13:29Z",
"updatedAt": "2016-02-09T01:37:10Z",
"description": "Spherical Mercator"
},
{
"id": "5671250,",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "8031205",
"user": "nitaku",
"createdAt": "2013-12-18T22:48:11Z",
"updatedAt": "2015-12-31T19:08:58Z",
"description": "Fractal tree depth map (random, Gosper)"
},
{
"id": "8260510",
"user": "nitaku",
"createdAt": "2014-01-04T20:46:29Z",
"updatedAt": "2016-01-02T05:59:07Z",
"description": "Canonical representation of unordered rooted trees"
},
{
"id": "8185373",
"user": "rveciana",
"createdAt": "2013-12-30T17:51:39Z",
"updatedAt": "2016-01-01T18:39:13Z",
"description": "Base map for Haiyan typhoon track"
},
{
"id": "5200394",
"user": "cpbotha",
"createdAt": "2013-03-19T21:40:32Z",
"updatedAt": "2016-02-24T12:35:57Z",
"description": "d3.js drop shadow example"
},
{
"id": "1346395",
"user": "mbostock",
"createdAt": "2011-11-07T22:23:54Z",
"updatedAt": "2016-02-09T00:49:17Z",
"description": "Pie Chart Update, I"
},
{
"id": "7711139",
"user": "rveciana",
"createdAt": "2013-11-29T19:59:31Z",
"updatedAt": "2015-12-29T18:29:11Z",
"description": "La Belle France"
},
{
"id": "8244446",
"user": "nitaku",
"createdAt": "2014-01-03T19:14:59Z",
"updatedAt": "2016-01-02T03:29:21Z",
"description": "Random tree (unordered)"
},
{
"id": "8272105",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "8272715",
"user": "nitaku",
"createdAt": "2014-01-05T19:32:04Z",
"updatedAt": "2016-01-02T07:49:18Z",
"description": "Fractal treemap of Konanopii (1,724 leaves)"
},
{
"id": "3213173",
"user": "mbostock",
"createdAt": "2012-07-31T03:08:20Z",
"updatedAt": "2016-04-18T04:58:34Z",
"description": "Scatterplot Matrix"
},
{
"id": "8429378",
"user": "widged",
"createdAt": "2014-01-15T01:50:24Z",
"updatedAt": "2016-01-03T07:29:00Z",
"description": "Multicharacter codes in svg fonts"
},
{
"id": "3014589",
"user": "mbostock",
"createdAt": "2012-06-28T23:07:24Z",
"updatedAt": "2016-02-09T01:23:39Z",
"description": "Lab and HCL Color Spaces"
},
{
"id": "8581627",
"user": "rgdonohue",
"createdAt": "2014-01-23T16:24:53Z",
"updatedAt": "2016-01-04T06:19:23Z",
"description": "CSS Multi-column Layout"
},
{
"id": "8584685",
"user": "rgdonohue",
"createdAt": "2014-01-23T19:00:55Z",
"updatedAt": "2016-01-04T06:49:17Z",
"description": "Responsive Images"
},
{
"id": "8699346",
"user": "StewartNoyce",
"createdAt": "2014-01-29T23:17:28Z",
"updatedAt": "2015-08-29T13:55:48Z",
"description": "D3 Authors by Domain"
},
{
"id": "8745544",
"user": "nitaku",
"createdAt": "2014-01-31T23:41:24Z",
"updatedAt": "2015-08-29T13:55:53Z",
"description": "SVG text bounding box"
},
{
"id": "3808218",
"user": "mbostock",
"createdAt": "2012-09-30T19:25:52Z",
"updatedAt": "2016-04-23T01:40:34Z",
"description": "General Update Pattern, I"
},
{
"id": "8772179",
"user": "nitaku",
"createdAt": "2014-02-02T17:54:42Z",
"updatedAt": "2015-08-29T13:55:55Z",
"description": "Space-flling curve layout (Gosper)"
},
{
"id": "8784278",
"user": "nitaku",
"createdAt": "2014-02-03T13:58:25Z",
"updatedAt": "2015-08-29T13:55:56Z",
"description": "Jigsaw treemap (Gosper)"
},
{
"id": "8784942",
"user": "nitaku",
"createdAt": "2014-02-03T14:40:20Z",
"updatedAt": "2015-08-29T13:55:56Z",
"description": "Jigsaw treemap (Hilbert)"
},
{
"id": "8787102",
"user": "nitaku",
"createdAt": "2014-02-03T16:28:05Z",
"updatedAt": "2015-08-29T13:55:56Z",
"description": "Hilbert treemap (area encoding)"
},
{
"id": "4341134",
"user": "mbostock",
"createdAt": "2012-12-19T22:31:13Z",
"updatedAt": "2016-04-11T03:04:09Z",
"description": "Hierarchical Edge Bundling"
},
{
"id": "8788101",
"user": "nitaku",
"createdAt": "2014-02-03T17:18:56Z",
"updatedAt": "2015-08-29T13:55:56Z",
"description": "Gosper treemap with hierarchical edge bundling"
},
{
"id": "8566245",
"user": "nitaku",
"createdAt": "2014-01-22T19:59:12Z",
"updatedAt": "2016-01-04T04:09:00Z",
"description": "Categorical color scale generator (HCL)"
},
{
"id": "8246732",
"user": "radiocontrolled",
"createdAt": "2014-01-03T21:15:02Z",
"updatedAt": "2016-01-02T03:49:17Z",
"description": "What per cent of people in the UK have used the Internet?"
},
{
"id": "8900555",
"user": "nitaku",
"createdAt": "2014-02-09T15:21:13Z",
"updatedAt": "2015-08-29T13:56:11Z",
"description": "Coloring of intersecting regions"
},
{
"id": "8882722",
"user": "nitaku",
"createdAt": "2014-02-08T12:10:37Z",
"updatedAt": "2015-08-29T13:56:10Z",
"description": "Label placement for Hilbert treemaps"
},
{
"id": "8955159",
"user": "nitaku",
"createdAt": "2014-02-12T12:59:25Z",
"updatedAt": "2015-08-29T13:56:17Z",
"description": "Stability of Peano curve"
},
{
"id": "8947871",
"user": "nitaku",
"createdAt": "2014-02-12T01:02:09Z",
"updatedAt": "2015-08-29T13:56:17Z",
"description": "Stable Hilbert curve"
},
{
"id": "8947565",
"user": "nitaku",
"createdAt": "2014-02-12T00:38:14Z",
"updatedAt": "2015-08-29T13:56:17Z",
"description": "Unstable Hilbert curve"
},
{
"id": "6531064",
"user": "nitaku",
"createdAt": "2013-09-11T23:12:39Z",
"updatedAt": "2015-12-22T21:09:06Z",
"description": "Peano (?) curve (L-system)"
},
{
"id": "8949471",
"user": "nitaku",
"createdAt": "2014-02-12T03:17:21Z",
"updatedAt": "2015-08-29T13:56:17Z",
"description": "Peano curve (L-system)"
},
{
"id": "8968230",
"user": "nitaku",
"createdAt": "2014-02-13T01:45:29Z",
"updatedAt": "2015-08-29T13:56:18Z",
"description": "FASS curve I (L-system)"
},
{
"id": "8967565",
"user": "diegovalle",
"createdAt": "2014-02-13T00:44:45Z",
"updatedAt": "2015-08-29T13:56:18Z",
"description": "Animated choropleth of homicide rates in Mexico 1997-2013"
},
{
"id": "849853",
"user": "mbostock",
"createdAt": "2011-03-01T20:42:01Z",
"updatedAt": "2016-02-08T23:40:55Z",
"description": "Circular Layout (Raindrops)"
},
{
"id": "4063269",
"user": "mbostock",
"createdAt": "2012-11-13T01:25:00Z",
"updatedAt": "2016-02-19T17:58:28Z",
"description": "Bubble Chart"
},
{
"id": "1371412",
"user": "mbostock",
"createdAt": "2011-11-16T21:10:53Z",
"updatedAt": "2016-02-09T00:51:54Z",
"description": "Circles"
},
{
"id": "1136236",
"user": "mbostock",
"createdAt": "2011-08-10T06:11:58Z",
"updatedAt": "2016-02-09T00:23:46Z",
"description": "Spermatozoa"
},
{
"id": "9023165",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "4344444",
"user": "ilyabo",
"createdAt": "2012-12-20T10:20:02Z",
"updatedAt": "2015-12-09T23:29:09Z",
"description": "Briesemeister projection"
},
{
"id": "2209220",
"user": "ilyabo",
"createdAt": "2012-03-26T19:57:58Z",
"updatedAt": "2015-10-02T08:18:02Z",
"description": "Flows of refugees between the world countries in 2008"
},
{
"id": "1062288",
"user": "mbostock",
"createdAt": "2011-07-03T14:47:54Z",
"updatedAt": "2016-02-09T00:17:27Z",
"description": "Collapsible Force Layout"
},
{
"id": "4327678",
"user": "herrstucki",
"createdAt": "2012-12-18T12:48:20Z",
"updatedAt": "2015-12-09T20:58:54Z",
"description": "Swiss Cantons and Municipalities"
},
{
"id": "9205257",
"user": "herrstucki",
"createdAt": "2014-02-25T08:50:04Z",
"updatedAt": "2016-03-04T21:17:41Z",
"description": "Transitions with React and D3 I"
},
{
"id": "9205264",
"user": "herrstucki",
"createdAt": "2014-02-25T08:50:49Z",
"updatedAt": "2016-05-01T16:49:22Z",
"description": "Transitions with React and D3 II"
},
{
"id": "9205238",
"user": "herrstucki",
"createdAt": "2014-02-25T08:48:37Z",
"updatedAt": "2015-08-29T13:56:43Z",
"description": "Transitions with D3"
},
{
"id": "1386444",
"user": "mbostock",
"createdAt": "2011-11-22T18:26:46Z",
"updatedAt": "2016-02-09T00:53:00Z",
"description": "Square Circle Spiral Illusion"
},
{
"id": "9216081",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "9216751",
"user": "vlandham",
"createdAt": "2014-02-25T20:12:38Z",
"updatedAt": "2015-08-29T13:56:43Z",
"description": null
},
{
"id": "9218980",
"user": "wiinci",
"createdAt": "2014-02-25T22:11:44Z",
"updatedAt": "2015-08-29T13:56:46Z",
"description": "D3 Clock"
},
{
"id": "9204795",
"user": "herrstucki",
"createdAt": "2014-02-25T08:03:50Z",
"updatedAt": "2016-02-27T19:50:18Z",
"description": "Swiss Cantons and Municipalities with React"
},
{
"id": "9265219",
"user": "bollwyvl",
"createdAt": "2014-02-28T04:24:38Z",
"updatedAt": "2015-08-29T13:56:49Z",
"description": "A fishbone editor"
},
{
"id": "9240915",
"user": "shawnbot",
"createdAt": "2014-02-26T23:20:56Z",
"updatedAt": "2015-08-29T13:56:47Z",
"description": "Uniformly scaled geo thumbnails"
},
{
"id": "1005873",
"user": "mbostock",
"createdAt": "2011-06-03T04:34:05Z",
"updatedAt": "2016-02-20T11:12:45Z",
"description": "Zoomable Icicle"
},
{
"id": "9239214",
"user": "bollwyvl",
"createdAt": "2014-02-26T21:40:43Z",
"updatedAt": "2015-12-04T13:17:14Z",
"description": "d3 fishbone"
},
{
"id": "3058935",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "9572040",
"user": "dbuezas",
"createdAt": "2014-03-15T18:51:37Z",
"updatedAt": "2015-08-29T13:57:23Z",
"description": "Pie Chart Labels with missing data"
},
{
"id": "4600693",
"user": "mbostock",
"createdAt": "2013-01-23T01:00:48Z",
"updatedAt": "2016-04-18T04:58:41Z",
"description": "Curved Links"
},
{
"id": "5126418",
"user": "mbostock",
"createdAt": "2013-03-10T00:06:24Z",
"updatedAt": "2016-02-09T02:07:53Z",
"description": "New Jersey State Plane"
},
{
"id": "4573883",
"user": "mbostock",
"createdAt": "2013-01-19T17:44:34Z",
"updatedAt": "2016-02-09T02:09:05Z",
"description": "Threshold Key"
},
{
"id": "9457213",
"user": "StewartNoyce",
"createdAt": "2014-03-10T00:16:54Z",
"updatedAt": "2015-08-29T13:57:11Z",
"description": "Box Transition Lesson"
},
{
"id": "9417919",
"user": "StewartNoyce",
"createdAt": "2014-03-07T19:16:10Z",
"updatedAt": "2015-08-29T13:57:08Z",
"description": "D.C. Choropleth"
},
{
"id": "9614216",
"user": "cherdarchuk",
"createdAt": "2014-03-18T05:49:13Z",
"updatedAt": "2015-08-29T13:57:28Z",
"description": ""
},
{
"id": "3305937",
"user": "mbostock",
"createdAt": "2012-08-09T17:06:48Z",
"updatedAt": "2016-03-29T01:11:27Z",
"description": "d3.tsv"
},
{
"id": "9716306",
"user": "vicapow",
"createdAt": "2014-03-22T23:59:35Z",
"updatedAt": "2015-08-29T13:57:39Z",
"description": "Responsive visualizations using Angular directives"
},
{
"id": "3886208",
"user": "mbostock",
"createdAt": "2012-10-13T21:33:41Z",
"updatedAt": "2016-04-11T07:02:30Z",
"description": "Stacked Bar Chart"
},
{
"id": "950642",
"user": "mbostock",
"createdAt": "2011-05-01T16:57:18Z",
"updatedAt": "2016-02-09T00:13:35Z",
"description": "Labeled Force Layout"
},
{
"id": "9535021",
"user": "mbostock",
"createdAt": "2014-03-13T19:21:17Z",
"updatedAt": "2016-02-09T01:58:10Z",
"description": "Raster & Vector IV"
},
{
"id": "9746652",
"user": "erkal",
"createdAt": "2014-03-24T18:52:13Z",
"updatedAt": "2015-08-29T13:57:41Z",
"description": "Directed Links with Polygons"
},
{
"id": "9746628",
"user": "erkal",
"createdAt": "2014-03-24T18:51:15Z",
"updatedAt": "2015-08-29T13:57:41Z",
"description": "Mobile Patent Suits with Polygon Links"
},
{
"id": "9768799",
"user": "jm3",
"createdAt": "2014-03-25T19:01:11Z",
"updatedAt": "2015-08-29T13:57:45Z",
"description": ""
},
{
"id": "9775876",
"user": "boeric",
"createdAt": "2014-03-26T02:29:01Z",
"updatedAt": "2015-09-26T19:24:04Z",
"description": "Internet vs. GDP"
},
{
"id": "9744818",
"user": "mbostock",
"createdAt": "2014-03-24T17:19:16Z",
"updatedAt": "2016-02-09T01:57:37Z",
"description": "Coastal Graph Distance"
},
{
"id": "4636377",
"user": "mbostock",
"createdAt": "2013-01-25T17:39:14Z",
"updatedAt": "2016-03-07T07:02:47Z",
"description": "Rotating Voronoi"
},
{
"id": "7607535",
"user": "mbostock",
"createdAt": "2013-11-22T21:55:14Z",
"updatedAt": "2016-03-08T00:32:05Z",
"description": "Zoomable Circle Packing"
},
{
"id": "7090426",
"user": "kerryrodden",
"createdAt": "2013-10-21T20:28:33Z",
"updatedAt": "2016-05-01T23:11:41Z",
"description": "Sequences sunburst"
},
{
"id": "9845999",
"user": "milroc",
"createdAt": "2014-03-29T00:37:17Z",
"updatedAt": "2015-08-29T13:57:52Z",
"description": "Fitts's Bar, II"
},
{
"id": "9842179",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "9842284",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "9842512",
"user": "milroc",
"createdAt": "2014-03-28T20:40:02Z",
"updatedAt": "2015-08-29T13:57:52Z",
"description": "Fitts's Bar, I"
},
{
"id": "3921009",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "9871234",
"user": "erkal",
"createdAt": "2014-03-30T11:13:42Z",
"updatedAt": "2015-08-29T13:57:54Z",
"description": "General Update Pattern with playButton"
},
{
"id": "9871048",
"user": "erkal",
"createdAt": "2014-03-30T10:59:16Z",
"updatedAt": "2015-08-29T13:57:54Z",
"description": "playButton"
},
{
"id": "9904319",
"user": "vicapow",
"createdAt": "2014-03-31T23:02:14Z",
"updatedAt": "2015-10-12T07:37:31Z",
"description": "Sparklines with Angular and D3"
},
{
"id": "9914167",
"user": "erkal",
"createdAt": "2014-04-01T13:39:33Z",
"updatedAt": "2015-08-29T13:57:58Z",
"description": "waitAndEval II"
},
{
"id": "9852362",
"user": "phil-pedruco",
"createdAt": "2014-03-29T10:57:12Z",
"updatedAt": "2016-01-05T11:04:10Z",
"description": "3D Scatter Plot Using three.js"
},
{
"id": "9912897",
"user": "erkal",
"createdAt": "2014-04-01T12:24:33Z",
"updatedAt": "2015-08-29T13:57:58Z",
"description": "waitAndEval"
},
{
"id": "4444770",
"user": "jczaplew",
"createdAt": "2013-01-03T16:36:10Z",
"updatedAt": "2015-12-10T13:59:14Z",
"description": "Responsive TopoJSON Sizing with d3.js"
},
{
"id": "9607405",
"user": "nitaku",
"createdAt": "2014-03-17T20:16:12Z",
"updatedAt": "2015-10-17T05:10:33Z",
"description": "Sky"
},
{
"id": "9998388",
"user": "ramnathv",
"createdAt": "2014-04-05T21:38:01Z",
"updatedAt": "2016-02-18T21:57:20Z",
"description": "Leaflet Routing Machine with rCharts"
},
{
"id": "10000634",
"user": "finiterank",
"createdAt": "2014-04-06T02:07:33Z",
"updatedAt": "2015-08-29T13:58:09Z",
"description": "Paleta de colores"
},
{
"id": "4282586",
"user": "mbostock",
"createdAt": "2012-12-14T03:51:13Z",
"updatedAt": "2016-02-09T02:12:56Z",
"description": "Three-Axis Rotation"
},
{
"id": "3886394",
"user": "mbostock",
"createdAt": "2012-10-13T22:20:48Z",
"updatedAt": "2016-02-18T14:41:59Z",
"description": "Normalized Stacked Bar Chart"
},
{
"id": "9733594",
"user": "VisDockHub",
"createdAt": "2014-03-24T03:20:53Z",
"updatedAt": "2015-08-29T13:57:40Z",
"description": "VisDock in Stacked Bar Chart"
},
{
"id": "10024231",
"user": "mbostock",
"createdAt": "2014-04-07T17:06:40Z",
"updatedAt": "2016-02-09T01:56:52Z",
"description": "Swiss Cantons & Lakes"
},
{
"id": "10412875",
"user": "madelfio",
"createdAt": "2014-04-10T19:08:08Z",
"updatedAt": "2015-08-29T13:58:54Z",
"description": "U.S. Rail II"
},
{
"id": "9972460",
"user": "Sumbera",
"createdAt": "2014-04-04T11:13:20Z",
"updatedAt": "2015-08-29T13:58:07Z",
"description": "Another brushing with d3"
},
{
"id": "10517778",
"user": "timelyportfolio",
"createdAt": "2014-04-12T03:45:43Z",
"updatedAt": "2015-08-29T13:59:07Z",
"description": "rCharts example #381 using dimplejs and a custom tooltip"
},
{
"id": "11085004",
"user": "monfera",
"createdAt": "2014-04-19T13:51:56Z",
"updatedAt": "2015-08-29T14:00:09Z",
"description": "circinus b"
},
{
"id": "3795544",
"user": "mbostock",
"createdAt": "2012-09-27T18:24:50Z",
"updatedAt": "2016-02-09T01:38:08Z",
"description": "Adaptive Resampling"
},
{
"id": "5732029",
"user": "mbostock",
"createdAt": "2013-06-07T20:07:06Z",
"updatedAt": "2016-02-09T02:04:14Z",
"description": "Line Simplification"
},
{
"id": "4090846",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "10520338",
"user": "mbostock",
"createdAt": "2014-04-12T05:35:45Z",
"updatedAt": "2016-02-09T01:56:39Z",
"description": "Interrupting Chained Transitions"
},
{
"id": "4163057",
"user": "mbostock",
"createdAt": "2012-11-28T18:26:43Z",
"updatedAt": "2016-05-04T11:24:10Z",
"description": "Gradient Along Stroke"
},
{
"id": "10990305",
"user": "danharr",
"createdAt": "2014-04-17T15:04:31Z",
"updatedAt": "2015-08-29T13:59:58Z",
"description": "Remote football stadiums (with labels)"
},
{
"id": "10989553",
"user": "danharr",
"createdAt": "2014-04-17T14:54:17Z",
"updatedAt": "2015-08-29T13:59:58Z",
"description": "Most remote football stadiums"
},
{
"id": "10527804",
"user": "monfera",
"createdAt": "2014-04-12T09:57:57Z",
"updatedAt": "2015-08-29T13:59:08Z",
"description": "circinus"
},
{
"id": "5731632",
"user": "mbostock",
"createdAt": "2013-06-07T19:12:26Z",
"updatedAt": "2016-02-09T02:04:26Z",
"description": "Orthographic to Equirectangular"
},
{
"id": "1256572",
"user": "mbostock",
"createdAt": "2011-10-01T19:57:22Z",
"updatedAt": "2016-04-28T16:44:17Z",
"description": "D3 Show Reel"
},
{
"id": "6574995",
"user": "ndarville",
"createdAt": "2013-09-15T22:54:00Z",
"updatedAt": "2015-12-23T03:39:14Z",
"description": "Party Trend (Single-Party Display)"
},
{
"id": "899670",
"user": "mbostock",
"createdAt": "2011-04-02T17:15:47Z",
"updatedAt": "2016-02-08T23:46:58Z",
"description": "Polymaps + D3, Part 2"
},
{
"id": "7e8e57368175a1433791",
"user": "Sumbera",
"createdAt": "2015-08-13T23:23:56Z",
"updatedAt": "2016-01-11T15:56:20Z",
"description": "SVG scaled overlay in Leaflet "
},
{
"id": "1062383",
"user": "mbostock",
"createdAt": "2011-07-03T16:59:03Z",
"updatedAt": "2016-02-09T00:17:47Z",
"description": "Force-Directed Symbols"
},
{
"id": "11273546",
"user": "radiocontrolled",
"createdAt": "2014-04-24T23:54:57Z",
"updatedAt": "2016-01-09T15:23:18Z",
"description": "Interactive thermometer, version 2"
},
{
"id": "9885869",
"user": "radiocontrolled",
"createdAt": "2014-03-31T05:30:11Z",
"updatedAt": "2015-08-29T13:57:57Z",
"description": "Interactive thermometer"
},
{
"id": "11328778",
"user": "emeeks",
"createdAt": "2014-04-26T19:27:14Z",
"updatedAt": "2015-08-29T14:00:35Z",
"description": "Dynamic Image Gallery"
},
{
"id": "9843633",
"user": "mbostock",
"createdAt": "2014-03-28T21:45:37Z",
"updatedAt": "2016-02-09T01:57:19Z",
"description": "Countdown"
},
{
"id": "ca0adb7e426c12c06a95",
"user": "zanarmstrong",
"createdAt": "2014-05-29T21:01:45Z",
"updatedAt": "2015-11-08T19:57:43Z",
"description": "d3 time formatting example"
},
{
"id": "7ea3a388ff58db62f27f",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "5806106",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "ce9c2deb92042df13179",
"user": "georules",
"createdAt": "2015-10-12T22:13:31Z",
"updatedAt": "2015-10-12T22:13:31Z",
"description": "oh yes spiral"
},
{
"id": "6958e230e69a377620e3",
"user": "georules",
"createdAt": "2015-10-12T22:44:42Z",
"updatedAt": "2015-10-29T03:53:58Z",
"description": "oh yes spiral"
},
{
"id": "d67e0c64f0cb392f8a78",
"user": "georules",
"createdAt": "2015-10-13T18:40:06Z",
"updatedAt": "2015-10-28T20:15:41Z",
"description": "wankel spiral"
},
{
"id": "02e4e7f61c87bf83b3d0",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "9f3099afe25f65a0e52b",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "d74a7e06a1b54577820b",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "0bf05e6afe2db3864cea",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "10524216",
"user": "devgru",
"createdAt": "2014-04-12T08:11:51Z",
"updatedAt": "2015-08-29T13:59:08Z",
"description": "Heatmap of git commits - basic"
},
{
"id": "3cc1a2a289dddbd64688",
"user": "curran",
"createdAt": "2015-09-06T00:53:52Z",
"updatedAt": "2015-09-12T21:20:28Z",
"description": "Fundamental Visualizations"
},
{
"id": "1353700",
"user": "mbostock",
"createdAt": "2011-11-10T00:39:13Z",
"updatedAt": "2016-05-03T18:22:06Z",
"description": "Epicyclic Gearing"
},
{
"id": "c8b4472a648b08a26720",
"user": "vicapow",
"createdAt": "2015-10-22T05:16:59Z",
"updatedAt": "2015-10-22T05:22:08Z",
"description": "fresh block"
},
{
"id": "a23f857ee922bea4bded",
"user": "vicapow",
"createdAt": "2015-10-22T05:22:25Z",
"updatedAt": "2015-10-22T05:22:26Z",
"description": "fresh block"
},
{
"id": "818723e652995b6c110d",
"user": "vicapow",
"createdAt": "2015-10-22T05:32:02Z",
"updatedAt": "2015-10-22T05:32:02Z",
"description": "fresh block"
},
{
"id": "4463049",
"user": "mbostock",
"createdAt": "2013-01-05T18:52:33Z",
"updatedAt": "2016-02-09T02:10:55Z",
"description": "Berghaus Star"
},
{
"id": "310c99e53880faec2434",
"user": "mbostock",
"createdAt": "2014-06-22T16:34:38Z",
"updatedAt": "2016-04-06T22:06:10Z",
"description": "A Less-Angry Rainbow"
},
{
"id": "76342abc327062128604",
"user": "mbostock",
"createdAt": "2015-07-03T15:10:49Z",
"updatedAt": "2015-10-31T02:02:57Z",
"description": "Color Mesh II"
},
{
"id": "3150059",
"user": "syntagmatic",
"createdAt": "2012-07-20T10:28:50Z",
"updatedAt": "2016-04-26T00:54:21Z",
"description": "Nutrient Parallel Coordinates"
},
{
"id": "1096355",
"user": "mbostock",
"createdAt": "2011-07-21T01:59:37Z",
"updatedAt": "2016-04-07T15:53:44Z",
"description": "Polar Clock"
},
{
"id": "6c149c08fc9cde682635",
"user": "syntagmatic",
"createdAt": "2015-08-11T00:01:36Z",
"updatedAt": "2016-04-27T23:04:45Z",
"description": "Satellite Ground Tracks"
},
{
"id": "eb9cddd11657887e1e0d",
"user": "saraquigley",
"createdAt": "2014-11-20T21:26:31Z",
"updatedAt": "2015-08-29T14:10:05Z",
"description": "Curriculum Exploration"
},
{
"id": "5194141",
"user": "saraquigley",
"createdAt": "2013-03-19T06:40:35Z",
"updatedAt": "2015-12-15T03:28:58Z",
"description": "Issue Breakdown"
},
{
"id": "c256fda4965d38e7c59b",
"user": "syntagmatic",
"createdAt": "2015-02-21T21:50:54Z",
"updatedAt": "2015-08-29T14:15:53Z",
"description": "Hexbin Heightmap Transitions"
},
{
"id": "b4e090bb50146d88aec4",
"user": "mostaphaRoudsari",
"createdAt": "2015-02-22T06:43:57Z",
"updatedAt": "2015-12-27T02:03:03Z",
"description": "Parallel Coordinates with mouseover highlight and tooltip"
},
{
"id": "1092fe86860def004ea7",
"user": "syntagmatic",
"createdAt": "2015-01-25T10:36:49Z",
"updatedAt": "2015-08-29T14:14:06Z",
"description": "Hexbin Heightmap"
},
{
"id": "11377353",
"user": "mbostock",
"createdAt": "2014-04-28T16:40:58Z",
"updatedAt": "2016-02-09T01:55:55Z",
"description": "Primโ€™s Algorithm III"
},
{
"id": "3289530",
"user": "mbostock",
"createdAt": "2012-08-07T21:26:46Z",
"updatedAt": "2016-02-09T01:30:14Z",
"description": "Heightmap"
},
{
"id": "4248145",
"user": "mbostock",
"createdAt": "2012-12-10T03:04:53Z",
"updatedAt": "2016-04-19T16:12:17Z",
"description": "Hexagonal Binning"
},
{
"id": "4063582",
"user": "mbostock",
"createdAt": "2012-11-13T02:23:30Z",
"updatedAt": "2016-03-21T01:58:36Z",
"description": "Treemap"
},
{
"id": "280d83080497c8c13152",
"user": "mbostock",
"createdAt": "2015-06-26T05:20:17Z",
"updatedAt": "2016-02-09T01:50:06Z",
"description": "Connected Particles III"
},
{
"id": "bfab4be2185584fba431",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "89a629fb967cea10d00c",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "a46928f1ad0b3e9e5fd1",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "500c7cccd948ba1bdbc9",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "4def1dbf2fdeb765ee7e",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "4061502",
"user": "mbostock",
"createdAt": "2012-11-12T19:52:07Z",
"updatedAt": "2016-03-30T00:28:38Z",
"description": "Box Plots"
},
{
"id": "5872848",
"user": "mbostock",
"createdAt": "2013-06-26T23:54:45Z",
"updatedAt": "2016-04-24T13:41:52Z",
"description": "Dispatching Events"
},
{
"id": "a0cbcddc6bf0eb9569fe",
"user": "d3noob",
"createdAt": "2015-04-02T17:51:04Z",
"updatedAt": "2015-09-29T15:52:49Z",
"description": "Leanpub Book Download Scatterplot"
},
{
"id": "b3831331f475fdcb13df",
"user": "mbostock",
"createdAt": "2014-07-03T23:25:51Z",
"updatedAt": "2016-02-09T01:53:26Z",
"description": "Poisson-Disc V"
},
{
"id": "9c87aed9a53a3ff20e29",
"user": "enoex",
"createdAt": "2015-11-04T05:31:36Z",
"updatedAt": "2015-11-04T05:35:23Z",
"description": "Poisson-Disc V"
},
{
"id": "e7a13ff417ff5257a067",
"user": "enoex",
"createdAt": "2015-11-04T05:35:46Z",
"updatedAt": "2015-11-04T05:35:46Z",
"description": "Poisson-Disc V"
},
{
"id": "b40d649842408e0cd3c0",
"user": "enoex",
"createdAt": "2014-09-15T00:02:26Z",
"updatedAt": "2015-08-29T14:06:29Z",
"description": "Fog of War Filter Example"
},
{
"id": "1af08ad6cdb01707c33f",
"user": "curran",
"createdAt": "2015-09-05T23:44:43Z",
"updatedAt": "2015-12-08T03:55:20Z",
"description": "Chiasm Boilerplate"
},
{
"id": "60b40877ef898f19aeb8",
"user": "curran",
"createdAt": "2015-05-14T17:16:34Z",
"updatedAt": "2015-09-06T22:32:21Z",
"description": "Standalone Line Chart"
},
{
"id": "3887235",
"user": "mbostock",
"createdAt": "2012-10-14T03:57:04Z",
"updatedAt": "2016-02-09T01:41:04Z",
"description": "Pie Chart"
},
{
"id": "134ed87c99257e3f2e31",
"user": "curran",
"createdAt": "2015-05-14T17:15:20Z",
"updatedAt": "2015-08-29T14:21:13Z",
"description": "Standalone Scatter Plot"
},
{
"id": "0e57e7fff27f2eee431f",
"user": "enoex",
"createdAt": "2015-09-09T03:28:05Z",
"updatedAt": "2015-09-09T03:28:05Z",
"description": "Fundamental Visualizations"
},
{
"id": "7e830bd65ad749237e4d",
"user": "enoex",
"createdAt": "2015-09-09T02:19:33Z",
"updatedAt": "2015-09-09T02:21:43Z",
"description": "data yoga 1"
},
{
"id": "620ebec1c2841ea5a929",
"user": "enoex",
"createdAt": "2015-09-09T02:21:44Z",
"updatedAt": "2015-09-09T02:23:43Z",
"description": "breathe"
},
{
"id": "4188334",
"user": "jasondavies",
"createdAt": "2012-12-02T11:54:58Z",
"updatedAt": "2016-01-04T14:32:37Z",
"description": "World Map"
},
{
"id": "8959771",
"user": "git-ashish",
"createdAt": "2014-02-12T17:02:41Z",
"updatedAt": "2015-08-29T13:56:17Z",
"description": "d3 sankey demo; Highlight all connecting paths of a node"
},
{
"id": "1629464",
"user": "mccannf",
"createdAt": "2012-01-17T22:36:50Z",
"updatedAt": "2016-01-05T09:07:19Z",
"description": "D3 Drag Rectangle with drag handles"
},
{
"id": "6123708",
"user": "mbostock",
"createdAt": "2013-07-31T16:36:23Z",
"updatedAt": "2016-02-09T02:02:58Z",
"description": "Drag + Zoom"
},
{
"id": "49e0f3cb67395ab2fcc7",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "8beea1d918ff4104f9ab",
"user": "d3noob",
"createdAt": "2015-07-23T01:20:33Z",
"updatedAt": "2015-09-11T09:10:23Z",
"description": "Simple Difference Chart"
},
{
"id": "e5daff57a04c2639125e",
"user": "d3noob",
"createdAt": "2014-07-11T09:35:37Z",
"updatedAt": "2015-08-29T14:03:52Z",
"description": "Favorite tooltip (simple version)"
},
{
"id": "3902569",
"user": "mbostock",
"createdAt": "2012-10-16T22:47:58Z",
"updatedAt": "2016-02-09T01:41:48Z",
"description": "X-Value Mouseover"
},
{
"id": "4618602",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "5987480",
"user": "d3noob",
"createdAt": "2013-07-12T20:19:30Z",
"updatedAt": "2015-12-19T16:58:59Z",
"description": "Multiple Simple graphs on one page"
},
{
"id": "c2637e28b79fb3bfea13",
"user": "d3noob",
"createdAt": "2014-06-25T20:34:34Z",
"updatedAt": "2015-10-16T16:03:42Z",
"description": "Sankey diagram from formatted JSON"
},
{
"id": "38744a17f9c0141bcd04",
"user": "d3noob",
"createdAt": "2014-06-22T18:12:55Z",
"updatedAt": "2015-08-29T14:02:53Z",
"description": "Simple scatterplot with d3.js"
},
{
"id": "473f0cf66196a008cf99",
"user": "d3noob",
"createdAt": "2014-06-22T01:03:53Z",
"updatedAt": "2015-08-29T14:02:52Z",
"description": "Simple graph and table using d3.js"
},
{
"id": "7030f35b72de721622b8",
"user": "d3noob",
"createdAt": "2014-06-21T19:25:44Z",
"updatedAt": "2015-08-29T14:02:52Z",
"description": "Update d3.js data with button press"
},
{
"id": "c37cb8e630aaef7df30d",
"user": "d3noob",
"createdAt": "2014-04-30T09:36:49Z",
"updatedAt": "2015-08-29T14:00:46Z",
"description": "d3.js tool tip with HTML link"
},
{
"id": "c0e1634fb919c37575b8",
"user": "enjalot",
"createdAt": "2015-09-07T23:40:58Z",
"updatedAt": "2016-04-09T12:27:58Z",
"description": "Bookmarklet"
},
{
"id": "076b18cb3b5ade6fce80",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "7586334",
"user": "mbostock",
"createdAt": "2013-11-21T17:55:00Z",
"updatedAt": "2016-04-11T03:04:26Z",
"description": "Parallel Coordinates"
},
{
"id": "5311083.",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "4ad06b0d9ee2a390eb20",
"user": "sampathweb",
"createdAt": "2015-08-29T20:47:32Z",
"updatedAt": "2015-08-29T20:54:36Z",
"description": "datasana #1"
},
{
"id": "2efd8084d345dd23ef96",
"user": "sampathweb",
"createdAt": "2015-08-29T20:54:38Z",
"updatedAt": "2015-08-29T21:07:03Z",
"description": "datasana #circles"
},
{
"id": "4348373",
"user": "mbostock",
"createdAt": "2012-12-20T20:41:10Z",
"updatedAt": "2016-04-20T06:33:58Z",
"description": "Zoomable Sunburst"
},
{
"id": "29a00092e4dbb7c659f7",
"user": "sxywu",
"createdAt": "2015-10-21T05:56:08Z",
"updatedAt": "2015-11-01T23:20:54Z",
"description": "visfest block visualization"
},
{
"id": "b3b3ff937241182ee67e",
"user": "sxywu",
"createdAt": "2015-10-21T07:30:30Z",
"updatedAt": "2015-11-01T23:26:00Z",
"description": "visfest block visualization 2"
},
{
"id": "33bc932b850792e832f8",
"user": "sxywu",
"createdAt": "2015-08-14T07:18:27Z",
"updatedAt": "2015-08-29T14:27:22Z",
"description": "How D3 Transitions Work, Pt. 1: d3.interpolate"
},
{
"id": "3a81930c054bb8ee39bf",
"user": "sxywu",
"createdAt": "2015-08-16T08:32:49Z",
"updatedAt": "2015-10-21T01:36:06Z",
"description": "How D3 Transitions Work, Pt. 2: d3.interpolate with multiple elements"
},
{
"id": "c77e7c891bfc52157843",
"user": "wboykinm",
"createdAt": "2014-05-28T18:15:55Z",
"updatedAt": "2016-03-31T14:26:30Z",
"description": "mapbox.js - importing and clustering GeoJSON with a chart popup"
},
{
"id": "779f2db53e1e365e98d4",
"user": "curran",
"createdAt": "2015-09-02T16:03:30Z",
"updatedAt": "2015-09-25T03:33:52Z",
"description": "Density-based Ticks"
},
{
"id": "28f1fbeb41df9753e120",
"user": "syntagmatic",
"createdAt": "2015-03-07T08:33:24Z",
"updatedAt": "2015-08-29T14:16:42Z",
"description": "Issue Breakdown"
},
{
"id": "002ef2fb5c1dc2df5821",
"user": "syntagmatic",
"createdAt": "2015-03-06T09:03:50Z",
"updatedAt": "2015-10-21T23:25:20Z",
"description": "Hexbin Canvas Transitions"
},
{
"id": "85d7dce6fca6277f75fe",
"user": "mbostock",
"createdAt": "2015-07-10T00:29:44Z",
"updatedAt": "2016-02-09T01:49:31Z",
"description": "Colorcomb II"
},
{
"id": "e6583e486f6df0c86b0f",
"user": "syntagmatic",
"createdAt": "2015-08-27T13:20:50Z",
"updatedAt": "2015-08-27T18:32:47Z",
"description": "Tetraplex"
},
{
"id": "1308257",
"user": "mbostock",
"createdAt": "2011-10-24T02:49:01Z",
"updatedAt": "2016-02-23T05:39:43Z",
"description": "The Euro Debt Crisis"
},
{
"id": "b1c051113be144570881",
"user": "zanarmstrong",
"createdAt": "2015-02-05T17:38:04Z",
"updatedAt": "2015-09-08T03:35:06Z",
"description": "Exploring Voronoi polygons, Delaunay triangles, and circumcircles"
},
{
"id": "7115f7a0393de96f2fdc",
"user": "mbostock",
"createdAt": "2015-08-03T20:50:48Z",
"updatedAt": "2016-02-09T01:49:22Z",
"description": "Apolloniusโ€™ Problem II"
},
{
"id": "05c1e95bf7aa16c4768e",
"user": "zanarmstrong",
"createdAt": "2014-05-21T23:58:55Z",
"updatedAt": "2016-04-27T21:11:12Z",
"description": "formatting numbers example"
},
{
"id": "433a9b04f82a1c78af4b",
"user": "emeeks",
"createdAt": "2014-08-26T16:04:24Z",
"updatedAt": "2015-08-29T14:05:41Z",
"description": "Modal Infoboxes - d3.carto.map"
},
{
"id": "02d6acaed240ba0a504e",
"user": "emeeks",
"createdAt": "2015-04-15T15:47:43Z",
"updatedAt": "2016-03-17T02:11:25Z",
"description": "Simple Difference Chart with d3.svg.area"
},
{
"id": "6746848",
"user": "mbostock",
"createdAt": "2013-09-28T21:31:07Z",
"updatedAt": "2016-03-31T20:09:42Z",
"description": "See-Through Globe"
},
{
"id": "c88435cb568dcaf11308",
"user": "emeeks",
"createdAt": "2015-08-02T16:06:41Z",
"updatedAt": "2015-08-29T14:26:30Z",
"description": "Non-Rotating SVG Transparent Globe"
},
{
"id": "a0b5a95c999628547494",
"user": "emeeks",
"createdAt": "2015-08-23T17:34:13Z",
"updatedAt": "2016-03-16T15:48:05Z",
"description": "Napoleon's March with d3.svg.ribbon"
},
{
"id": "29bccce80df0f253c97e",
"user": "syntagmatic",
"createdAt": "2015-09-01T06:32:45Z",
"updatedAt": "2015-09-02T12:55:01Z",
"description": "Quantile, Quantize, Threshold Scales"
},
{
"id": "3891711",
"user": "syntagmatic",
"createdAt": "2012-10-15T09:40:07Z",
"updatedAt": "2015-10-11T17:08:01Z",
"description": "Average Price Histories"
},
{
"id": "4053096",
"user": "syntagmatic",
"createdAt": "2012-11-11T00:11:56Z",
"updatedAt": "2016-04-27T20:58:48Z",
"description": "Average Price Histories II"
},
{
"id": "5123745",
"user": "syntagmatic",
"createdAt": "2013-03-09T10:18:09Z",
"updatedAt": "2015-12-14T17:39:04Z",
"description": "Crossfilter with d3.csv"
},
{
"id": "4092944",
"user": "syntagmatic",
"createdAt": "2012-11-17T03:09:37Z",
"updatedAt": "2015-10-12T21:58:14Z",
"description": "d3 src tree transitions"
},
{
"id": "4963194",
"user": "syntagmatic",
"createdAt": "2013-02-15T20:15:49Z",
"updatedAt": "2015-12-13T19:28:58Z",
"description": "Force-Directed SVG Icons"
},
{
"id": "5803524",
"user": "syntagmatic",
"createdAt": "2013-06-18T08:13:35Z",
"updatedAt": "2015-12-18T15:19:17Z",
"description": "Historical Volumes"
},
{
"id": "5441022",
"user": "syntagmatic",
"createdAt": "2013-04-23T05:21:58Z",
"updatedAt": "2015-12-16T13:19:15Z",
"description": "Line Intersection Brushing"
},
{
"id": "6769077",
"user": "syntagmatic",
"createdAt": "2013-09-30T19:42:58Z",
"updatedAt": "2015-12-24T08:09:22Z",
"description": "Github Users Worldwide"
},
{
"id": "6418898",
"user": "syntagmatic",
"createdAt": "2013-09-03T01:50:28Z",
"updatedAt": "2015-12-22T04:39:14Z",
"description": "Force-Directed Edge Severing"
},
{
"id": "6419716",
"user": "syntagmatic",
"createdAt": "2013-09-03T04:25:42Z",
"updatedAt": "2015-12-22T04:49:05Z",
"description": "Force-directed Splitting"
},
{
"id": "fc62d1de6ada1e06b803",
"user": "syntagmatic",
"createdAt": "2015-02-24T18:57:35Z",
"updatedAt": "2016-05-08T02:48:24Z",
"description": "Windmap"
},
{
"id": "0de45f430bbfb61b6588",
"user": "syntagmatic",
"createdAt": "2015-06-08T21:05:35Z",
"updatedAt": "2015-08-29T14:22:44Z",
"description": "Hello Mapsense.js"
},
{
"id": "8ff691209324f1814257",
"user": "syntagmatic",
"createdAt": "2015-06-24T11:35:49Z",
"updatedAt": "2015-09-12T10:43:22Z",
"description": "Infant Deaths"
},
{
"id": "4446b31c6cd746eedaeb",
"user": "syntagmatic",
"createdAt": "2015-08-08T08:13:01Z",
"updatedAt": "2016-04-29T14:43:20Z",
"description": "Space Stations"
},
{
"id": "0d1635533f6fb5ac4da3",
"user": "syntagmatic",
"createdAt": "2015-08-22T07:09:00Z",
"updatedAt": "2016-04-26T21:14:13Z",
"description": "Nutrient Parallel Coordinates II"
},
{
"id": "895eb781d88148cfd8e5",
"user": "syntagmatic",
"createdAt": "2015-08-20T08:43:38Z",
"updatedAt": "2015-08-29T14:27:48Z",
"description": "Clock"
},
{
"id": "168da8df0b4aa0d513f2",
"user": "syntagmatic",
"createdAt": "2015-08-20T07:11:27Z",
"updatedAt": "2015-08-29T14:27:48Z",
"description": "Hello Mapbox GL"
},
{
"id": "ba569633d51ebec6ec6e",
"user": "syntagmatic",
"createdAt": "2015-08-16T03:37:26Z",
"updatedAt": "2015-08-29T14:27:28Z",
"description": "Comparing Map Projections"
},
{
"id": "dd17d7b62fb4fbb56897",
"user": "syntagmatic",
"createdAt": "2015-08-24T22:02:02Z",
"updatedAt": "2016-02-10T05:34:26Z",
"description": "Satellite Debris Fields"
},
{
"id": "0475e4fb201315a10b70",
"user": "syntagmatic",
"createdAt": "2015-08-27T11:20:39Z",
"updatedAt": "2015-08-28T04:37:22Z",
"description": "Clock II"
},
{
"id": "b86031aa5ad2a516a864",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "fd0a8ee9429117b900e4",
"user": "bricedev",
"createdAt": "2015-06-18T14:42:48Z",
"updatedAt": "2016-03-24T16:10:54Z",
"description": "French soccer championship replay"
},
{
"id": "14703cd8b0edc19979d4",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "52fb07194d4b2988cafb",
"user": "dmijalkovic",
"createdAt": "2015-10-23T23:48:33Z",
"updatedAt": "2015-10-24T07:33:28Z",
"description": "D3 graphs"
},
{
"id": "8fadc5ac9c2a9e7c5ba2",
"user": "mbostock",
"createdAt": "2014-07-07T03:28:19Z",
"updatedAt": "2016-04-20T19:00:55Z",
"description": "Map Pan & Zoom I"
},
{
"id": "7352810",
"user": "linssen",
"createdAt": "2013-11-07T10:57:16Z",
"updatedAt": "2015-12-27T16:09:12Z",
"description": "Programmatically and smoothly zoom to the centre."
},
{
"id": "c2cc7242c8f800c736c4",
"user": "mgold",
"createdAt": "2014-11-26T19:09:21Z",
"updatedAt": "2015-08-29T14:10:23Z",
"description": "Zoom Buttons I"
},
{
"id": "bbc451a7b9f902954e7c",
"user": "mgold",
"createdAt": "2014-11-26T19:48:28Z",
"updatedAt": "2015-08-29T14:10:23Z",
"description": "Zoom Buttons II"
},
{
"id": "0eea4ea262aa43d6be71",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "81271937fa94fdbdd854",
"user": "curran",
"createdAt": "2015-09-08T00:10:10Z",
"updatedAt": "2015-10-21T23:09:20Z",
"description": "Migrant Deaths Map (direct)"
},
{
"id": "87d038562333a7ad4a64",
"user": "curran",
"createdAt": "2015-09-14T01:03:39Z",
"updatedAt": "2015-10-14T00:04:06Z",
"description": "Crossfilter & Chiasm"
},
{
"id": "47aceae44bb5f8b63d7b",
"user": "boeric",
"createdAt": "2015-08-31T02:53:25Z",
"updatedAt": "2015-09-26T19:20:50Z",
"description": "Deaths of Migrants"
},
{
"id": "60eec0e1727c6c628728",
"user": "shobhitg",
"createdAt": "2015-08-30T05:05:21Z",
"updatedAt": "2015-08-30T05:49:03Z",
"description": "Migrants-Deaths-Visualization"
},
{
"id": "3943967",
"user": "mbostock",
"createdAt": "2012-10-24T04:51:42Z",
"updatedAt": "2016-04-19T08:51:36Z",
"description": "Stacked-to-Grouped Bars"
},
{
"id": "752b97cef3f880a813ab",
"user": "curran",
"createdAt": "2015-05-04T01:58:14Z",
"updatedAt": "2016-01-30T01:39:32Z",
"description": "World City Explorer"
},
{
"id": "5e3c1bed7c9cdd2b431c",
"user": "curran",
"createdAt": "2015-10-10T02:14:52Z",
"updatedAt": "2015-12-04T21:15:10Z",
"description": "Reactive Mixins for Visualizations"
},
{
"id": "a931688fa8cb65db4079",
"user": "curran",
"createdAt": "2015-10-01T23:56:02Z",
"updatedAt": "2015-10-02T01:03:15Z",
"description": "Magic Bar Chart (Browserified)"
},
{
"id": "b6e1d23c16dc76371a92",
"user": "curran",
"createdAt": "2015-09-23T00:54:34Z",
"updatedAt": "2015-12-08T23:20:26Z",
"description": "Magic Bar Chart"
},
{
"id": "2c736a99c2f57bfac7e4",
"user": "curran",
"createdAt": "2015-09-21T00:44:16Z",
"updatedAt": "2015-11-20T01:58:52Z",
"description": "Margin Convention with Model.js"
},
{
"id": "87d5dd02739089986d4a",
"user": "curran",
"createdAt": "2015-09-21T00:46:38Z",
"updatedAt": "2015-09-21T00:50:23Z",
"description": "fresh block"
},
{
"id": "3a68b0c81991e2e94b19",
"user": "curran",
"createdAt": "2015-08-12T20:39:34Z",
"updatedAt": "2016-01-24T21:07:41Z",
"description": "Responding to Resize"
},
{
"id": "d1e9ea2850047562be09",
"user": "curran",
"createdAt": "2015-09-11T03:42:16Z",
"updatedAt": "2015-09-18T02:23:09Z",
"description": "Focus + Context Scatter Plots"
},
{
"id": "a4f1e24535f0353d91ea",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "16828b2187f6d06f77fd",
"user": "curran",
"createdAt": "2015-09-17T22:03:44Z",
"updatedAt": "2015-11-20T00:40:26Z",
"description": "Story of Chiasm"
},
{
"id": "cf4b98fff0517ca04667",
"user": "curran",
"createdAt": "2015-03-16T19:18:55Z",
"updatedAt": "2015-08-29T14:17:14Z",
"description": "Scatter Plot Zooming"
},
{
"id": "ba63c55dd2dbc3ab0127",
"user": "mbostock",
"createdAt": "2015-07-03T05:23:22Z",
"updatedAt": "2016-02-09T01:49:57Z",
"description": "This Is a Globe"
},
{
"id": "e2744ee563f7cab80350",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "bd552e711b8325c64729",
"user": "enjalot",
"createdAt": "2015-09-10T17:38:03Z",
"updatedAt": "2015-09-30T17:02:12Z",
"description": "visualizing map distortion"
},
{
"id": "66d926fe73211fd650ec",
"user": "curran",
"createdAt": "2015-05-21T16:46:33Z",
"updatedAt": "2015-09-06T22:37:13Z",
"description": "Towards Reusable Charts Example"
},
{
"id": "8033015",
"user": "mbostock",
"createdAt": "2013-12-19T01:50:19Z",
"updatedAt": "2016-02-09T01:59:01Z",
"description": "Multi-Line Voronoi"
},
{
"id": "5577023",
"user": "mbostock",
"createdAt": "2013-05-14T15:49:35Z",
"updatedAt": "2016-02-09T02:05:37Z",
"description": "Every ColorBrewer Scale"
},
{
"id": "88d03aa54097367eaae1",
"user": "curran",
"createdAt": "2015-05-20T18:56:24Z",
"updatedAt": "2015-08-29T14:21:37Z",
"description": "href on d3 objects"
},
{
"id": "5537697",
"user": "mbostock",
"createdAt": "2013-05-08T02:09:02Z",
"updatedAt": "2016-02-09T02:05:58Z",
"description": "Log Axis"
},
{
"id": "9aafca5fba0c7fde13aa",
"user": "curran",
"createdAt": "2015-05-12T02:39:13Z",
"updatedAt": "2015-08-29T14:21:00Z",
"description": "Reusable Scatter Plot with Model.js"
},
{
"id": "a22c42db65eb00d4e369",
"user": "d3noob",
"createdAt": "2014-06-22T18:24:10Z",
"updatedAt": "2016-03-14T18:37:43Z",
"description": "Simple d3.js tooltips"
},
{
"id": "9e04ccfebeb84bcdc76c",
"user": "curran",
"createdAt": "2015-03-15T00:41:22Z",
"updatedAt": "2016-01-22T23:24:39Z",
"description": "Scatter Plot"
},
{
"id": "4ce2ee825811f1c32125",
"user": "curran",
"createdAt": "2015-03-18T19:01:36Z",
"updatedAt": "2015-08-29T14:17:21Z",
"description": "Chiasm Bar Chart and Line Chart"
},
{
"id": "3b811f05a0ce39d0d7cd",
"user": "curran",
"createdAt": "2015-03-11T00:01:33Z",
"updatedAt": "2015-08-29T14:16:52Z",
"description": "Data Canvas Part 4 - Colors"
},
{
"id": "015d34d6d3d562877e51",
"user": "curran",
"createdAt": "2015-03-09T04:27:10Z",
"updatedAt": "2015-08-29T14:16:48Z",
"description": "Data Canvas Part 3 - Bar Chart"
},
{
"id": "015402cce2caa074551e",
"user": "curran",
"createdAt": "2015-03-08T19:01:24Z",
"updatedAt": "2015-08-29T14:16:45Z",
"description": "Data Canvas Part 2 - Line Chart"
},
{
"id": "dd73d3d8925cdf50df86",
"user": "curran",
"createdAt": "2015-03-09T23:14:54Z",
"updatedAt": "2015-08-29T14:16:50Z",
"description": "Picking N Colors Automatically"
},
{
"id": "5905182da50a4667dc00",
"user": "curran",
"createdAt": "2015-03-13T20:17:35Z",
"updatedAt": "2015-08-29T14:17:04Z",
"description": "Reactive Flow Diagram"
},
{
"id": "5f255332a9dcb9906f84",
"user": "curran",
"createdAt": "2015-03-07T22:46:35Z",
"updatedAt": "2015-08-29T14:16:43Z",
"description": "Data Canvas Part 1 - Data"
},
{
"id": "0854f60e489b5ee6e11a",
"user": "herrstucki",
"createdAt": "2015-01-14T09:27:52Z",
"updatedAt": "2015-08-29T14:13:26Z",
"description": "Animating Circles (D3 & SVG)"
},
{
"id": "40a7be58639daf5d510e",
"user": "herrstucki",
"createdAt": "2015-01-14T09:28:18Z",
"updatedAt": "2015-08-29T14:13:26Z",
"description": "Animating Circles (React & SVG)"
},
{
"id": "dc5be7c1d700eb6ecf46",
"user": "herrstucki",
"createdAt": "2015-01-14T09:28:43Z",
"updatedAt": "2015-11-11T08:28:20Z",
"description": "Animating Circles (Canvas)"
},
{
"id": "2547496",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "975c057b97a74f307239",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "476c804335f77198447e",
"user": "enjalot",
"createdAt": "2015-09-01T19:39:54Z",
"updatedAt": "2015-11-18T19:50:54Z",
"description": "building-blocks backers"
},
{
"id": "b6bdb82045c2aa8225f5",
"user": "susielu",
"createdAt": "2015-10-14T03:50:27Z",
"updatedAt": "2015-11-06T06:23:12Z",
"description": "Annual Temp - New York 2015"
},
{
"id": "2fffa9abe50ac97603c7",
"user": "emeeks",
"createdAt": "2015-10-16T18:28:49Z",
"updatedAt": "2015-10-17T15:10:25Z",
"description": "Brushable Radial Chart"
},
{
"id": "541a3af0d8df035fff37",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "8ed34ca589e8b0cb9d3c",
"user": "enjalot",
"createdAt": "2015-08-26T21:39:08Z",
"updatedAt": "2015-09-04T19:11:52Z",
"description": "Inlet demo"
},
{
"id": "95800d30829ab8ab4ba6",
"user": "zeffii",
"createdAt": "2015-10-21T07:11:18Z",
"updatedAt": "2015-10-21T07:31:33Z",
"description": "stage fright"
},
{
"id": "b602b35c682ec69b9025",
"user": "zeffii",
"createdAt": "2015-10-21T07:31:36Z",
"updatedAt": "2015-10-21T08:00:10Z",
"description": "stage fright 2"
},
{
"id": "f2aff83148a5f64f3222",
"user": "micahstubbs",
"createdAt": "2015-11-06T02:27:12Z",
"updatedAt": "2016-03-24T01:53:26Z",
"description": "Animated ROC Chart"
},
{
"id": "f1b4a29749408dd826ef",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "465725cdc547c7cc8491",
"user": "micahstubbs",
"createdAt": "2015-10-19T22:04:53Z",
"updatedAt": "2016-03-12T22:46:27Z",
"description": "radar chart with smallest area on top"
},
{
"id": "44bb05aab218a40a4c12",
"user": "micahstubbs",
"createdAt": "2015-10-19T19:05:55Z",
"updatedAt": "2016-03-12T22:46:42Z",
"description": "radar chart for nested data"
},
{
"id": "2975320",
"user": "ZJONSSON",
"createdAt": "2012-06-22T21:31:33Z",
"updatedAt": "2015-10-06T09:57:54Z",
"description": "barStack - stacking with negative values"
},
{
"id": "6100713",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "a40254b6cb914018ff81",
"user": "micahstubbs",
"createdAt": "2015-09-01T17:23:03Z",
"updatedAt": "2016-03-12T22:53:41Z",
"description": "stacking with negative values"
},
{
"id": "470cde4c5a3cf8eb9cea",
"user": "micahstubbs",
"createdAt": "2015-08-29T20:55:11Z",
"updatedAt": "2016-03-12T22:55:18Z",
"description": "building blocks svg flag"
},
{
"id": "c248e13bf367f56baf84",
"user": "micahstubbs",
"createdAt": "2015-05-10T16:52:34Z",
"updatedAt": "2016-03-12T22:59:55Z",
"description": "Close Votes"
},
{
"id": "4631136",
"user": "WillTurman",
"createdAt": "2013-01-25T02:15:26Z",
"updatedAt": "2015-12-11T16:58:56Z",
"description": "D3 Interactive Streamgraph"
},
{
"id": "5661984",
"user": "cloudshapes",
"createdAt": "2013-05-28T11:01:56Z",
"updatedAt": "2015-12-17T19:39:17Z",
"description": "Dotted Path Following the Mouse"
},
{
"id": "b41c59f0b6eaf54498c0",
"user": "enjalot",
"createdAt": "2015-10-28T16:44:32Z",
"updatedAt": "2015-10-28T19:33:50Z",
"description": "matrix component"
},
{
"id": "a37f2b733a75a6f348c2",
"user": "peterbsmith2",
"createdAt": "2015-08-07T15:55:37Z",
"updatedAt": "2016-04-16T19:43:10Z",
"description": "GitHub Commit Calendar Clone using D3"
},
{
"id": "1283663",
"user": "mbostock",
"createdAt": "2011-10-13T07:34:05Z",
"updatedAt": "2016-02-09T00:35:40Z",
"description": "Hierarchical Bar Chart"
},
{
"id": "e89dcf210974b008d1d6",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "e9ea7af871cc11e0f43f",
"user": "timelyportfolio",
"createdAt": "2015-09-01T21:34:39Z",
"updatedAt": "2016-04-26T08:11:04Z",
"description": "interactive d3.js parallel coordinates of finch data"
},
{
"id": "3a052a4bcc85275ce469",
"user": "timelyportfolio",
"createdAt": "2015-08-27T23:22:45Z",
"updatedAt": "2015-11-03T15:01:09Z",
"description": "answer to stack overflow"
},
{
"id": "1c29e1dde847d98d7569",
"user": "timelyportfolio",
"createdAt": "2015-08-20T10:32:23Z",
"updatedAt": "2015-10-21T02:32:03Z",
"description": "svgPanZoom htmlwidget gets hammer.js touch support"
},
{
"id": "eda532b01c24bf4ac1d6",
"user": "timelyportfolio",
"createdAt": "2015-08-20T02:58:45Z",
"updatedAt": "2015-10-21T02:32:30Z",
"description": "BioFabric in R as an htmlwidget with d3.js"
},
{
"id": "7148ee2a60a09fed0b43",
"user": "timelyportfolio",
"createdAt": "2015-08-20T02:42:29Z",
"updatedAt": "2015-10-21T02:33:30Z",
"description": "biofabric as an rstats htmlwidget - pre-alpha"
},
{
"id": "e2effb970b3cbe2f4e84",
"user": "timelyportfolio",
"createdAt": "2015-08-07T15:35:00Z",
"updatedAt": "2015-10-21T02:35:21Z",
"description": "tmap with interactivity and pan/zoom"
},
{
"id": "a6916e88484f962d8f95",
"user": "timelyportfolio",
"createdAt": "2015-07-02T21:19:04Z",
"updatedAt": "2015-10-21T02:41:12Z",
"description": "R | Norvig's English Letter ngrams with sunburstR (d3.js sequence sunburst htmlwidget)"
},
{
"id": "3616869996703d48a981",
"user": "timelyportfolio",
"createdAt": "2015-06-01T17:01:28Z",
"updatedAt": "2015-08-29T14:22:19Z",
"description": "R tables to networks for visualization"
},
{
"id": "3793462de638478937",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "d6658135f11023171587",
"user": "timelyportfolio",
"createdAt": "2015-04-23T17:15:00Z",
"updatedAt": "2015-08-29T14:19:47Z",
"description": "R base graphics plot using stateface from propublica"
},
{
"id": "3793462de638478937ac",
"user": "timelyportfolio",
"createdAt": "2015-04-22T18:29:37Z",
"updatedAt": "2015-08-29T14:19:42Z",
"description": "stateface from propublica used in R ggplot"
},
{
"id": "ab27c49724c140a72aae",
"user": "timelyportfolio",
"createdAt": "2015-03-23T16:41:19Z",
"updatedAt": "2015-08-29T14:17:36Z",
"description": "TraMineR + rcdimple | Analyze State Sequence Data with dimple htmlwidget"
},
{
"id": "a2c97fbf90aebe591d94",
"user": "timelyportfolio",
"createdAt": "2015-03-19T13:47:14Z",
"updatedAt": "2015-08-29T14:17:23Z",
"description": "waffle + rcdimple version of fig10.3 from r-graph-catalog"
},
{
"id": "a734fb2bb3319a2cb386",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "e2349d1e850313fcb1c6",
"user": "timelyportfolio",
"createdAt": "2015-02-04T03:42:48Z",
"updatedAt": "2015-08-29T14:14:43Z",
"description": "R finance charts with the svgPanZoom htmlwidget"
},
{
"id": "58f8fe3e167ef47145d0",
"user": "timelyportfolio",
"createdAt": "2014-09-15T17:55:41Z",
"updatedAt": "2015-08-29T14:06:30Z",
"description": "R + d3.js Parallel Coordinates of partykit ver 2 with interactive querying"
},
{
"id": "d4ff502dc32b5b04eae4",
"user": "timelyportfolio",
"createdAt": "2014-09-11T18:02:03Z",
"updatedAt": "2016-04-26T08:10:13Z",
"description": "R + d3.js Parallel Coordinates of partykit"
},
{
"id": "adc2dfee7aef48ce5485",
"user": "timelyportfolio",
"createdAt": "2014-09-08T20:55:58Z",
"updatedAt": "2015-08-29T14:06:12Z",
"description": " rCharts + d3.js view of rpart with sankey-like link width"
},
{
"id": "9d7f106c11682f5bb5fb",
"user": "timelyportfolio",
"createdAt": "2014-11-10T18:27:09Z",
"updatedAt": "2015-08-29T14:09:11Z",
"description": "r plot.zoo animated construction with svg+js using vivus.js"
},
{
"id": "3bad88913525c707c750",
"user": "timelyportfolio",
"createdAt": "2014-11-10T17:41:25Z",
"updatedAt": "2015-08-29T14:09:10Z",
"description": "r animated chart in svg with vivus.js"
},
{
"id": "560e50e437d4bb1b9142",
"user": "timelyportfolio",
"createdAt": "2014-10-08T18:40:21Z",
"updatedAt": "2015-08-29T14:07:22Z",
"description": "svg snippet from post http://timelyportfolio.blogspot.com/2014/10/reponsive-svg-in-your-rstudio-browser.html"
},
{
"id": "7880033",
"user": "robschmuecker",
"createdAt": "2013-12-09T20:16:32Z",
"updatedAt": "2016-04-22T18:31:58Z",
"description": "D3.js Drag and Drop, Zoomable, Panning, Collapsible Tree with auto-sizing."
},
{
"id": "782b91b09326541a0fc8",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "a5df8dc94786a27d6420",
"user": "enjalot",
"createdAt": "2015-08-29T20:48:46Z",
"updatedAt": "2015-09-17T07:38:50Z",
"description": "datasana #1"
},
{
"id": "859c7b7150c81cc512b3",
"user": "rcrocker13",
"createdAt": "2015-09-18T01:31:18Z",
"updatedAt": "2015-09-18T01:31:18Z",
"description": "datasana #1"
},
{
"id": "72079f106589bc28f6ae",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "946ddf8a32b3b660ffd8",
"user": "mbostock",
"createdAt": "2015-06-23T22:42:45Z",
"updatedAt": "2016-03-19T21:15:04Z",
"description": "Canvas Bar Chart"
},
{
"id": "607058d45f063622034b",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "64f617acf7630fc47fac",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "67648b87e80fbc31ad20",
"user": "arrayjam",
"createdAt": "2014-05-24T12:01:07Z",
"updatedAt": "2015-08-29T14:01:45Z",
"description": "Overlapping Geographic Circles"
},
{
"id": "5c4288aa30de1b949433",
"user": "arrayjam",
"createdAt": "2014-05-24T12:31:55Z",
"updatedAt": "2015-08-29T14:01:45Z",
"description": "Non-Overlapping Geographic Circles"
},
{
"id": "e65d9895da07c57e94bd",
"user": "mbostock",
"createdAt": "2014-06-03T04:12:05Z",
"updatedAt": "2016-02-09T01:54:24Z",
"description": "Mergesort IV"
},
{
"id": "5348789",
"user": "mbostock",
"createdAt": "2013-04-09T19:49:58Z",
"updatedAt": "2016-02-09T02:06:57Z",
"description": "Concurrent Transitions"
},
{
"id": "9929724",
"user": "hunzy",
"createdAt": "2014-04-02T07:52:45Z",
"updatedAt": "2016-04-27T08:32:29Z",
"description": "D3.js Easing Checker"
},
{
"id": "7ef773bdf11999c9eebb",
"user": "maartenzam",
"createdAt": "2015-10-06T09:30:58Z",
"updatedAt": "2015-10-06T10:02:57Z",
"description": "Responsive map with Cartodb/Leaflet"
},
{
"id": "1915cf92b73739483deb",
"user": "thomasgwatson",
"createdAt": "2015-09-09T02:23:02Z",
"updatedAt": "2015-09-09T02:28:15Z",
"description": "Sha-banga-bang"
},
{
"id": "5af89b987ad1ae8b9179",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "1a5e8d77ae8feb464167",
"user": "asielen",
"createdAt": "2015-10-09T18:51:50Z",
"updatedAt": "2015-10-13T07:20:05Z",
"description": "Violin Plot + Box Plot v2"
},
{
"id": "d15a4f16fa618273e10f",
"user": "asielen",
"createdAt": "2015-09-25T18:55:12Z",
"updatedAt": "2015-10-09T19:14:05Z",
"description": "Reusable Violin + Box Plot"
},
{
"id": "44ffca2877d0132572cb",
"user": "asielen",
"createdAt": "2015-09-10T07:10:30Z",
"updatedAt": "2015-10-09T19:10:43Z",
"description": "Reusable Responsive Multiline Chart"
},
{
"id": "5014368",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "6506614",
"user": "nbremer",
"createdAt": "2013-09-10T08:37:31Z",
"updatedAt": "2016-05-02T20:18:11Z",
"description": "D3.js - Radar Chart or Spider Chart - Adjusted from radar-chart-d3"
},
{
"id": "3a33bfdeda5b8f8c8cd2",
"user": "nbremer",
"createdAt": "2015-09-27T18:01:26Z",
"updatedAt": "2015-10-01T19:32:20Z",
"description": "Text on an Arc - Animal Donut Slices - Default Arc Labels"
},
{
"id": "b603c3e0f7a74794da87",
"user": "nbremer",
"createdAt": "2015-09-27T18:05:12Z",
"updatedAt": "2015-10-01T18:00:37Z",
"description": "Text on an Arc - Animal Donut Slices - Flipped & Centered Arc Labels"
},
{
"id": "7b051187fe329d705ee9",
"user": "nbremer",
"createdAt": "2015-09-27T18:03:11Z",
"updatedAt": "2015-10-01T19:33:55Z",
"description": "Text on an Arc - Animal Donut Slices - Centered Arc Labels"
},
{
"id": "25e2db4abc9eaf080190",
"user": "nbremer",
"createdAt": "2015-09-25T20:08:36Z",
"updatedAt": "2015-10-01T19:36:07Z",
"description": "Text on an Arc - Animate from a Wavy line to an Arc"
},
{
"id": "3916621",
"user": "mbostock",
"createdAt": "2012-10-19T06:54:11Z",
"updatedAt": "2016-03-22T22:54:05Z",
"description": "Path Tween"
},
{
"id": "bf3d285e48189507e0ea",
"user": "nbremer",
"createdAt": "2015-09-25T20:16:00Z",
"updatedAt": "2015-10-01T19:35:00Z",
"description": "Text on an Arc - Animate from Arc to an Arc"
},
{
"id": "c0ffc07b23b1c556a66b",
"user": "nbremer",
"createdAt": "2015-07-01T18:52:52Z",
"updatedAt": "2015-11-19T13:49:58Z",
"description": "Step 3 - Voronoi Scatterplot - Tooltip attached to circle"
},
{
"id": "f9dacd23eece9d23669c",
"user": "nbremer",
"createdAt": "2015-06-28T09:55:09Z",
"updatedAt": "2016-03-25T08:01:27Z",
"description": "Stretched Chord Diagram - From educations to occupations"
},
{
"id": "5b16c2a5716d346e2f34",
"user": "nbremer",
"createdAt": "2015-06-28T20:07:25Z",
"updatedAt": "2015-10-01T19:26:48Z",
"description": "Stretched Chord - Step 4 - How to pull the two halves apart"
},
{
"id": "c11409af47b5950f0289",
"user": "nbremer",
"createdAt": "2015-06-28T20:11:31Z",
"updatedAt": "2016-03-23T13:04:01Z",
"description": "Stretched Chord - The Final Result - Including the hover effects"
},
{
"id": "2e10bf27fa0f9f49588b",
"user": "nbremer",
"createdAt": "2015-06-28T20:04:00Z",
"updatedAt": "2015-10-01T19:27:34Z",
"description": "Stretched Chord - Step 3 - Different Color Scheme"
},
{
"id": "b99e416bd99fc0191b50",
"user": "nbremer",
"createdAt": "2015-06-28T20:09:22Z",
"updatedAt": "2016-03-23T12:13:50Z",
"description": "Stretched Chord - Step 5 - How to make the chords touch the pulled apart arcs again"
},
{
"id": "dcd01f820aa098133596",
"user": "nbremer",
"createdAt": "2015-06-28T20:01:57Z",
"updatedAt": "2015-10-01T19:27:51Z",
"description": "Stretched Chord - Step 3 - How to make the two sections symmetrical"
},
{
"id": "8295697aee7844da2299",
"user": "nbremer",
"createdAt": "2015-06-28T19:59:05Z",
"updatedAt": "2015-10-01T19:29:59Z",
"description": "Stretched Chord - Step 2 - How to create an empty section in between the two halves"
},
{
"id": "1527c2dd26a26d9ee942",
"user": "nbremer",
"createdAt": "2015-06-28T19:57:00Z",
"updatedAt": "2015-10-04T14:09:11Z",
"description": "Stretched Chord - Step 1 - How to set up a Chord Diagram matrix to show Flows"
},
{
"id": "f6952f1ef900d84be918",
"user": "nbremer",
"createdAt": "2015-05-31T10:36:23Z",
"updatedAt": "2015-10-01T19:41:19Z",
"description": "Gooey Effect - Line"
},
{
"id": "69808ec7ec07542ed7df",
"user": "nbremer",
"createdAt": "2015-05-31T10:35:46Z",
"updatedAt": "2015-10-28T04:19:23Z",
"description": "Gooey Effect - Circle"
},
{
"id": "a3684c52fb527c8fa415",
"user": "nbremer",
"createdAt": "2015-06-03T19:00:34Z",
"updatedAt": "2015-10-01T19:39:37Z",
"description": "Gooey effect - Rectangle"
},
{
"id": "8e25e1434cdd6db25b69",
"user": "nbremer",
"createdAt": "2015-02-14T15:52:22Z",
"updatedAt": "2015-10-01T19:55:24Z",
"description": "Valentine's day Heart curve"
},
{
"id": "df7f87361bb7e297e751",
"user": "nbremer",
"createdAt": "2015-02-14T16:47:47Z",
"updatedAt": "2015-10-01T19:54:35Z",
"description": "Valentine's day Heart curve - One Line"
},
{
"id": "a1e48992be56681e3f93",
"user": "emeeks",
"createdAt": "2015-08-22T20:38:02Z",
"updatedAt": "2016-03-16T15:48:14Z",
"description": "d3.svg.ribbon example"
},
{
"id": "8829aa45703c893e5636",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "a4947846696ab623ce53",
"user": "m-arnold",
"createdAt": "2015-10-15T18:31:25Z",
"updatedAt": "2015-10-15T18:44:12Z",
"description": "Run!Shoot!"
},
{
"id": "27333115d86132753caa",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "9796212",
"user": "NPashaP",
"createdAt": "2014-03-26T23:34:01Z",
"updatedAt": "2016-04-12T02:26:22Z",
"description": "BiPartite"
},
{
"id": "9403d59b12e33a0925cb",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "6452972",
"user": "mbostock",
"createdAt": "2013-09-05T16:57:31Z",
"updatedAt": "2016-02-09T02:01:33Z",
"description": "Brush as Slider"
},
{
"id": "7881887",
"user": "mbostock",
"createdAt": "2013-12-09T22:08:43Z",
"updatedAt": "2016-02-09T01:59:20Z",
"description": "Clustered Force Layout III"
},
{
"id": "4341699",
"user": "mbostock",
"createdAt": "2012-12-19T23:36:18Z",
"updatedAt": "2016-02-09T02:12:16Z",
"description": "Convex Hull"
},
{
"id": "2b1446f496c3968f6ecd",
"user": "enjalot",
"createdAt": "2015-09-17T00:21:47Z",
"updatedAt": "2015-09-17T00:35:50Z",
"description": "Stacked-to-Grouped Police Killings"
},
{
"id": "7833311",
"user": "mbostock",
"createdAt": "2013-12-06T22:35:03Z",
"updatedAt": "2016-02-09T01:59:23Z",
"description": "Dynamic Hexbin"
},
{
"id": "20789c8df83e04e49684",
"user": "mbostock",
"createdAt": "2014-07-15T19:53:57Z",
"updatedAt": "2016-02-09T01:53:08Z",
"description": "Merging States"
},
{
"id": "3883245",
"user": "mbostock",
"createdAt": "2012-10-13T04:38:05Z",
"updatedAt": "2016-04-27T19:07:43Z",
"description": "Line Chart"
},
{
"id": "f43a842a8953e87f5b3c",
"user": "mpmckenna8",
"createdAt": "2014-07-27T21:06:18Z",
"updatedAt": "2015-08-29T14:04:36Z",
"description": "d3.geo.zoom.js plugin first use"
},
{
"id": "f3225fa363fbaccb8c9e",
"user": "enjalot",
"createdAt": "2015-09-02T19:41:15Z",
"updatedAt": "2015-09-03T01:14:19Z",
"description": "visfest experiment #1"
},
{
"id": "a74519c5a055b2903b41",
"user": "enjalot",
"createdAt": "2015-09-02T19:54:55Z",
"updatedAt": "2015-09-03T01:14:46Z",
"description": "visfest experiment #2"
},
{
"id": "98cf105e8531ff12013b",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "e7f4634cd71473c9658c",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "f8c41743ca81d7828c3a",
"user": "enjalot",
"createdAt": "2015-09-02T21:14:52Z",
"updatedAt": "2015-09-11T23:49:07Z",
"description": "visfest experiment #3"
},
{
"id": "7492cc85b1311f69ba3f",
"user": "enjalot",
"createdAt": "2015-09-11T23:49:17Z",
"updatedAt": "2015-09-12T21:09:46Z",
"description": "morph experiment #1"
},
{
"id": "02ac156db28e61ff20bb",
"user": "enjalot",
"createdAt": "2015-09-12T21:09:54Z",
"updatedAt": "2015-09-12T23:12:50Z",
"description": "morph experiment #2"
},
{
"id": "ebda1656976d90e2a636",
"user": "enjalot",
"createdAt": "2015-09-12T22:22:45Z",
"updatedAt": "2015-10-13T19:25:05Z",
"description": "morph experiment #3"
},
{
"id": "20d4098ce7ed88dde5c4",
"user": "enjalot",
"createdAt": "2015-10-13T17:36:09Z",
"updatedAt": "2015-10-13T19:31:51Z",
"description": "viSFest logo: small multiples"
},
{
"id": "7ea44d0bc364b6bddbd8",
"user": "enjalot",
"createdAt": "2015-11-02T21:20:51Z",
"updatedAt": "2015-11-02T21:36:29Z",
"description": "The Migrant Files: Deaths"
},
{
"id": "d6696d28fb47fcf8a537",
"user": "enjalot",
"createdAt": "2015-11-02T21:34:43Z",
"updatedAt": "2015-11-02T21:36:46Z",
"description": "The Migrant Files: Deportations"
},
{
"id": "d6a92a077e78fd33316a",
"user": "enjalot",
"createdAt": "2015-11-02T21:54:14Z",
"updatedAt": "2015-11-11T03:53:51Z",
"description": "The Migrant Files: Money"
},
{
"id": "5721459",
"user": "patricksurry",
"createdAt": "2013-06-06T13:26:18Z",
"updatedAt": "2015-12-18T03:58:53Z",
"description": "D3 3D globe trackball rotation"
},
{
"id": "157333662ef11c151080",
"user": "mbostock",
"createdAt": "2015-06-09T15:08:02Z",
"updatedAt": "2016-02-09T01:50:18Z",
"description": "Connected Particles"
},
{
"id": "7f14a531dec565ca0884",
"user": "vicapow",
"createdAt": "2015-02-11T17:45:45Z",
"updatedAt": "2015-08-29T14:15:15Z",
"description": "WebGL + d3.layout.force"
},
{
"id": "4bd6d92fd553bb9bac11",
"user": "enjalot",
"createdAt": "2015-10-25T23:12:17Z",
"updatedAt": "2015-10-27T04:37:57Z",
"description": "sparse matrix zoo"
},
{
"id": "42a531c5d87bfc91036e",
"user": "enjalot",
"createdAt": "2015-10-28T03:27:43Z",
"updatedAt": "2015-10-28T03:30:03Z",
"description": "sparse matrix zoo: canvas"
},
{
"id": "5109a9fbd5f9a7230f17",
"user": "enjalot",
"createdAt": "2015-10-17T23:22:36Z",
"updatedAt": "2015-10-21T02:48:37Z",
"description": "hilbert grid"
},
{
"id": "77cfa8eb62e34833ae7c",
"user": "enjalot",
"createdAt": "2015-10-26T23:57:38Z",
"updatedAt": "2015-10-27T00:13:48Z",
"description": "hilbert grid marching"
},
{
"id": "e662bb2e2c0783ee82f9",
"user": "enjalot",
"createdAt": "2015-10-27T00:06:41Z",
"updatedAt": "2015-10-27T11:58:52Z",
"description": "hilbert grid creeping"
},
{
"id": "6ac67b0d8ed673c9aa61",
"user": "enjalot",
"createdAt": "2015-10-06T22:41:59Z",
"updatedAt": "2015-10-24T16:45:41Z",
"description": "all the blocks"
},
{
"id": "1d679f0322174b65d032",
"user": "enjalot",
"createdAt": "2015-10-13T23:25:04Z",
"updatedAt": "2015-11-24T19:33:54Z",
"description": "block wall"
},
{
"id": "211bd42857358a60a936",
"user": "enjalot",
"createdAt": "2015-10-21T01:21:28Z",
"updatedAt": "2015-11-19T22:45:51Z",
"description": "block wall: thumbnails only"
},
{
"id": "7b63fef8ccfbad1f851e",
"user": "enjalot",
"createdAt": "2015-10-21T02:39:24Z",
"updatedAt": "2015-10-24T00:00:51Z",
"description": "block wall: thumbnails hilbert"
},
{
"id": "1554783",
"user": "jasondavies",
"createdAt": "2012-01-03T12:46:36Z",
"updatedAt": "2015-09-29T05:47:51Z",
"description": "alpha-shapes aka concave hulls in d3"
},
{
"id": "27969219a945e2bd20dc",
"user": "enjalot",
"createdAt": "2015-09-30T17:02:24Z",
"updatedAt": "2015-09-30T18:14:36Z",
"description": "d3.geo.weichel"
},
{
"id": "c1f459768d09e0c334c1",
"user": "enjalot",
"createdAt": "2015-09-14T20:52:46Z",
"updatedAt": "2015-10-14T22:53:42Z",
"description": "cosine similarity"
},
{
"id": "c741995e777c0e089418",
"user": "enjalot",
"createdAt": "2015-09-28T12:35:43Z",
"updatedAt": "2015-10-02T14:08:20Z",
"description": "copy paste aesthetic"
},
{
"id": "01aa2685f083b6c1b9fb",
"user": "curran",
"createdAt": "2015-09-04T03:00:28Z",
"updatedAt": "2015-09-23T21:36:19Z",
"description": "Map & Globe"
},
{
"id": "eec4a6cda2f573574a11",
"user": "mbostock",
"createdAt": "2014-07-07T03:35:48Z",
"updatedAt": "2016-02-09T01:53:20Z",
"description": "Map Pan & Zoom II"
},
{
"id": "c9853a630cf49e38b2f3",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "618daab0fc5a3ff494d9",
"user": "enjalot",
"createdAt": "2015-09-11T06:07:11Z",
"updatedAt": "2015-09-12T02:46:35Z",
"description": "ไธญๆ–‡: simplified characters"
},
{
"id": "a9a3b146cfe63ab68a6b",
"user": "enjalot",
"createdAt": "2015-09-11T23:10:59Z",
"updatedAt": "2015-09-12T11:06:34Z",
"description": "ไธญๆ–‡: traditional characters"
},
{
"id": "65ae9c0fc95337107448",
"user": "enjalot",
"createdAt": "2015-08-19T21:34:30Z",
"updatedAt": "2016-04-29T10:11:52Z",
"description": "matrix: reboot"
},
{
"id": "38d7f79f61a03acc0ef0",
"user": "zanarmstrong",
"createdAt": "2014-12-23T23:19:21Z",
"updatedAt": "2015-08-29T14:12:04Z",
"description": "Normal Daily & Hourly Weather"
},
{
"id": "bc38c32d24e6fba4db84",
"user": "emeeks",
"createdAt": "2015-08-14T01:57:15Z",
"updatedAt": "2016-03-16T15:49:20Z",
"description": "Sketchy Network II"
},
{
"id": "8681770",
"user": "enjalot",
"createdAt": "2014-01-29T04:18:57Z",
"updatedAt": "2016-01-04T21:29:33Z",
"description": "electron"
},
{
"id": "1282943",
"user": "enjalot",
"createdAt": "2011-10-12T23:28:34Z",
"updatedAt": "2015-09-27T14:17:57Z",
"description": "Chernoff Smileys"
},
{
"id": "19168c663618b7f07158",
"user": "mbostock",
"createdAt": "2014-06-06T17:55:50Z",
"updatedAt": "2016-03-12T05:21:43Z",
"description": "Poisson-Disc"
},
{
"id": "3184af35f4937d878ac0",
"user": "emeeks",
"createdAt": "2015-09-12T01:22:14Z",
"updatedAt": "2016-03-16T15:46:30Z",
"description": "d3.layout.timeline categorized timelines"
},
{
"id": "3513c6c87d5bdcb4fd8f",
"user": "bricedev",
"createdAt": "2015-07-22T16:13:55Z",
"updatedAt": "2015-08-29T14:25:35Z",
"description": "NYC Weather 2014"
},
{
"id": "3887051",
"user": "mbostock",
"createdAt": "2012-10-14T02:34:13Z",
"updatedAt": "2016-03-21T18:14:50Z",
"description": "Grouped Bar Chart"
},
{
"id": "8aaef92e64007f882267",
"user": "bricedev",
"createdAt": "2015-05-19T14:58:56Z",
"updatedAt": "2016-03-24T15:53:07Z",
"description": "Radial Bar Chart"
},
{
"id": "e285b8e4c7b84710e463",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "a7c02c493896a33d5f37",
"user": "bricedev",
"createdAt": "2015-05-12T09:23:26Z",
"updatedAt": "2016-03-24T15:50:38Z",
"description": "Diverging Stacked Bar Chart (odd)"
},
{
"id": "f80fdbc2c03dbc1ae4e8",
"user": "bricedev",
"createdAt": "2015-05-12T09:40:18Z",
"updatedAt": "2016-03-24T15:50:10Z",
"description": "Diverging Stacked Bar Chart (even)"
},
{
"id": "4c1012422e4fd8afbb60",
"user": "eesur",
"createdAt": "2015-05-29T20:54:54Z",
"updatedAt": "2015-08-29T14:22:08Z",
"description": "d3 | Travelling to planets"
},
{
"id": "3892928",
"user": "mbostock",
"createdAt": "2012-10-15T14:56:59Z",
"updatedAt": "2016-04-05T12:01:20Z",
"description": "Programmatic Pan+Zoom"
},
{
"id": "4062006",
"user": "mbostock",
"createdAt": "2012-11-12T21:26:03Z",
"updatedAt": "2016-04-27T05:25:46Z",
"description": "Chord Diagram"
},
{
"id": "1377729",
"user": "MoritzStefaner",
"createdAt": "2011-11-18T20:55:49Z",
"updatedAt": "2016-03-15T13:06:55Z",
"description": "Force-based label placement"
},
{
"id": "5653692",
"user": "djjupa",
"createdAt": "2013-05-26T19:00:30Z",
"updatedAt": "2015-12-17T18:29:30Z",
"description": "Collapsible force layout with directed paths and images/text in the nodes. "
},
{
"id": "4679202",
"user": "mbostock",
"createdAt": "2013-01-31T01:45:11Z",
"updatedAt": "2016-04-29T17:16:23Z",
"description": "Stacked-to-Multiples"
},
{
"id": "3711652.",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "5731578",
"user": "mbostock",
"createdAt": "2013-06-07T19:03:08Z",
"updatedAt": "2016-02-09T02:04:29Z",
"description": "Rotating Orthographic"
},
{
"id": "97ae6e6a64c48b8f4e87",
"user": "proclamo",
"createdAt": "2014-08-22T13:48:05Z",
"updatedAt": "2015-09-15T12:42:18Z",
"description": "Lineal regression test with Math.js"
},
{
"id": "4063663",
"user": "mbostock",
"createdAt": "2012-11-13T02:48:56Z",
"updatedAt": "2016-05-08T00:11:15Z",
"description": "Scatterplot Matrix Brushing"
},
{
"id": "751fdd637f4bc2e3f08b",
"user": "mbostock",
"createdAt": "2015-08-03T19:05:52Z",
"updatedAt": "2016-02-09T01:49:25Z",
"description": "Apolloniusโ€™ Problem"
},
{
"id": "3310323",
"user": "mbostock",
"createdAt": "2012-08-10T01:58:28Z",
"updatedAt": "2016-04-19T07:56:12Z",
"description": "Line Interpolation"
},
{
"id": "1552725",
"user": "gka",
"createdAt": "2012-01-03T00:08:55Z",
"updatedAt": "2015-09-29T05:27:52Z",
"description": "alpha-shapes aka concave hulls in d3"
},
{
"id": "1fa21f4ccf084f6369d3",
"user": "enjalot",
"createdAt": "2015-10-01T06:34:26Z",
"updatedAt": "2015-10-01T06:48:06Z",
"description": "hull padding"
},
{
"id": "298e07ea67a640b5d9f4",
"user": "emeeks",
"createdAt": "2014-12-21T18:48:36Z",
"updatedAt": "2016-03-17T02:17:06Z",
"description": "Orbit Layout 4"
},
{
"id": "d8b1c5f7bc975de83d99",
"user": "emeeks",
"createdAt": "2014-12-21T08:04:33Z",
"updatedAt": "2016-03-17T02:17:52Z",
"description": "Orbital Layout 3"
},
{
"id": "8e73290130d9e25c6d9c",
"user": "emeeks",
"createdAt": "2014-12-21T07:53:27Z",
"updatedAt": "2016-03-17T02:18:02Z",
"description": "Orbital Layout 2"
},
{
"id": "58675e9b609295707b9a",
"user": "emeeks",
"createdAt": "2014-11-19T06:08:51Z",
"updatedAt": "2016-03-17T02:18:24Z",
"description": "Ch. 12, Fig. 11 - D3.js in Action"
},
{
"id": "840a3af6e48196de718a",
"user": "emeeks",
"createdAt": "2014-08-16T14:23:48Z",
"updatedAt": "2015-08-29T14:05:22Z",
"description": "Visualizing Touch Rotate"
},
{
"id": "8855733967174fe4b1b4",
"user": "emeeks",
"createdAt": "2014-08-19T14:34:05Z",
"updatedAt": "2015-08-29T14:05:27Z",
"description": "d3.svg.legend example"
},
{
"id": "7d5925cb7d9721c60360",
"user": "emeeks",
"createdAt": "2014-07-21T06:36:01Z",
"updatedAt": "2015-08-29T14:04:17Z",
"description": "Quadtree clustering - d3.carto.map"
},
{
"id": "540b1b884b80b14a44c6",
"user": "emeeks",
"createdAt": "2014-09-11T03:29:35Z",
"updatedAt": "2015-08-29T14:06:18Z",
"description": "Improved Circle Pack Clustering - d3.carto"
},
{
"id": "1a75ec54489368b514f8",
"user": "emeeks",
"createdAt": "2014-09-12T01:21:37Z",
"updatedAt": "2015-08-29T14:06:21Z",
"description": "Feature Clustering - d3.carto"
},
{
"id": "905bb4f399e0855e08fe",
"user": "emeeks",
"createdAt": "2014-08-26T21:50:55Z",
"updatedAt": "2015-08-29T14:05:45Z",
"description": "Custom Infobox Formatter - d3.carto.map"
},
{
"id": "f8c0220c54ec8347ea95",
"user": "emeeks",
"createdAt": "2014-09-03T21:03:35Z",
"updatedAt": "2015-08-29T14:06:03Z",
"description": "Changing Markers - d3.carto"
},
{
"id": "aea3c7fc1acc0eca4d44",
"user": "emeeks",
"createdAt": "2014-09-09T20:07:50Z",
"updatedAt": "2015-08-29T14:06:16Z",
"description": "Styling Canvas Elements - d3.carto"
},
{
"id": "e6f72fbca42e77be0eb3",
"user": "emeeks",
"createdAt": "2014-09-10T00:26:56Z",
"updatedAt": "2015-08-29T14:06:16Z",
"description": "Canvas Styling (Transform) - d3.carto"
},
{
"id": "b8da1d56fd9c21244fdd",
"user": "emeeks",
"createdAt": "2014-08-29T23:03:17Z",
"updatedAt": "2015-08-29T14:05:52Z",
"description": "Simple Network Flooding"
},
{
"id": "9405946",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "877134763ceafaf048ad",
"user": "aaizemberg",
"createdAt": "2015-03-23T14:09:31Z",
"updatedAt": "2015-08-29T14:17:36Z",
"description": "feriados"
},
{
"id": "7555321",
"user": "mbostock",
"createdAt": "2013-11-20T00:37:49Z",
"updatedAt": "2016-04-27T01:08:24Z",
"description": "Wrapping Long Labels"
},
{
"id": "0ad500de10f9edfe5d15",
"user": "zanarmstrong",
"createdAt": "2015-11-03T06:10:58Z",
"updatedAt": "2015-11-03T06:12:56Z",
"description": "Time Data"
},
{
"id": "23137b412caf6e80b34a",
"user": "zanarmstrong",
"createdAt": "2015-02-02T22:02:00Z",
"updatedAt": "2015-08-29T14:14:36Z",
"description": "Jittery Line w/ option to choose interpolation"
},
{
"id": "6928381c7b61714da59e",
"user": "mbostock",
"createdAt": "2014-05-29T16:03:05Z",
"updatedAt": "2016-02-09T01:54:36Z",
"description": "Mergesort II"
},
{
"id": "2c89baa04be1bd982d98",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "4134057",
"user": "mbostock",
"createdAt": "2012-11-23T04:58:54Z",
"updatedAt": "2016-02-09T01:46:01Z",
"description": "U.S. Land TopoJSON"
},
{
"id": "dcfcc3887ff56a9e1928",
"user": "Sumbera",
"createdAt": "2015-08-16T21:42:42Z",
"updatedAt": "2015-08-29T14:27:30Z",
"description": "SVG default overlay in Leaflet v 1.0"
},
{
"id": "11114288",
"user": "Sumbera",
"createdAt": "2014-04-20T13:33:35Z",
"updatedAt": "2016-05-03T09:52:45Z",
"description": "Leaflet Canvas Overlay"
},
{
"id": "922f6170dec2a3cd5da6",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "8dbaabf493fbc0c4ae0c",
"user": "monfera",
"createdAt": "2015-10-27T23:42:31Z",
"updatedAt": "2015-12-19T03:49:39Z",
"description": "Bandlines"
},
{
"id": "b57f4cc89dacd38fcdcd",
"user": "emeeks",
"createdAt": "2015-10-21T02:15:26Z",
"updatedAt": "2016-04-08T11:15:23Z",
"description": "circularbrush.filter"
},
{
"id": "3081153",
"user": "mbostock",
"createdAt": "2012-07-10T04:58:18Z",
"updatedAt": "2016-02-09T01:27:27Z",
"description": "Shape Tweening"
},
{
"id": "9265674",
"user": "mbostock",
"createdAt": "2014-02-28T05:09:46Z",
"updatedAt": "2016-02-09T01:58:26Z",
"description": "Mexico"
},
{
"id": "ca8cc0fc1df5d7282cb5",
"user": "dannyko",
"createdAt": "2015-04-21T10:33:45Z",
"updatedAt": "2015-09-17T09:16:42Z",
"description": "vizflow demo"
},
{
"id": "6a83de20f780b42fadb9",
"user": "boeric",
"createdAt": "2015-10-02T02:50:02Z",
"updatedAt": "2015-10-06T05:22:13Z",
"description": "D3 Real Time Chart with Multiple Data Streams"
},
{
"id": "3b57a788a4b96e1af211",
"user": "boeric",
"createdAt": "2015-09-27T02:46:29Z",
"updatedAt": "2015-11-15T21:32:52Z",
"description": "D3 Based Real Time Chart"
},
{
"id": "8b34abda1d33b983b09b",
"user": "boeric",
"createdAt": "2015-09-26T18:41:07Z",
"updatedAt": "2015-09-27T00:18:25Z",
"description": "D3 Key Function Demo"
},
{
"id": "e16ad218bc241dfd2d6e",
"user": "boeric",
"createdAt": "2015-09-26T17:09:49Z",
"updatedAt": "2015-10-01T21:04:41Z",
"description": "D3 Dynamic Array of Tables"
},
{
"id": "d994dbdc9a7b21ab9692",
"user": "emeeks",
"createdAt": "2014-09-01T16:41:25Z",
"updatedAt": "2015-08-29T14:05:57Z",
"description": "Geodata to d3.svg.line interpolation"
},
{
"id": "1c34e14d8b7dd457f802",
"user": "hugolpz",
"createdAt": "2015-02-24T23:27:41Z",
"updatedAt": "2015-08-29T14:16:04Z",
"description": "Printing map.svg file via D3js, Nodejs, Jsdom"
},
{
"id": "9643738d5f79c7b594d0",
"user": "hugolpz",
"createdAt": "2015-01-25T16:48:03Z",
"updatedAt": "2015-08-29T14:14:07Z",
"description": "Map zoom + responsive frame"
},
{
"id": "c89a76096c070a5a7d23",
"user": "hugolpz",
"createdAt": "2015-01-26T16:56:18Z",
"updatedAt": "2015-08-29T14:14:11Z",
"description": "Map zoom + static frame"
},
{
"id": "1014829",
"user": "mbostock",
"createdAt": "2011-06-08T17:00:35Z",
"updatedAt": "2016-02-09T00:09:07Z",
"description": "External SVG"
},
{
"id": "4342190",
"user": "mbostock",
"createdAt": "2012-12-20T01:06:50Z",
"updatedAt": "2016-02-22T20:13:42Z",
"description": "Spline Editor"
},
{
"id": "4183701",
"user": "jasondavies",
"createdAt": "2012-12-01T18:19:37Z",
"updatedAt": "2015-10-13T10:47:52Z",
"description": "World Countries"
},
{
"id": "a62f1d61168eae985d5c",
"user": "hugolpz",
"createdAt": "2014-08-21T10:11:44Z",
"updatedAt": "2015-08-29T14:05:32Z",
"description": "Wikiatlas Localisator using D3.geo"
},
{
"id": "ffb26726c512f3a35643",
"user": "dhoboy",
"createdAt": "2015-02-07T19:16:52Z",
"updatedAt": "2015-08-29T14:14:58Z",
"description": "Letter Frequency Bar Chart "
},
{
"id": "91254c459602b31ba549",
"user": "syntagmatic",
"createdAt": "2015-03-07T09:23:10Z",
"updatedAt": "2016-04-29T14:46:11Z",
"description": "Curriculum Exploration"
},
{
"id": "9eadf19bd2976653fa50",
"user": "syntagmatic",
"createdAt": "2015-02-16T09:27:26Z",
"updatedAt": "2015-08-29T14:15:33Z",
"description": "Chord Arc Labels"
},
{
"id": "914d024adf10bface11a",
"user": "dhoboy",
"createdAt": "2015-03-18T04:15:15Z",
"updatedAt": "2015-08-29T14:17:17Z",
"description": "Gately Tree"
},
{
"id": "4063550",
"user": "mbostock",
"createdAt": "2012-11-13T02:16:02Z",
"updatedAt": "2016-03-17T19:10:12Z",
"description": "Radial Reingoldโ€“Tilford Tree"
},
{
"id": "8027637",
"user": "mbostock",
"createdAt": "2013-12-18T18:48:26Z",
"updatedAt": "2016-02-19T23:06:09Z",
"description": "Closest Point on Path"
},
{
"id": "8027835",
"user": "mbostock",
"createdAt": "2013-12-18T19:01:10Z",
"updatedAt": "2016-02-19T22:55:25Z",
"description": "Closest Point on Path II"
},
{
"id": "06af5f439f24bf28aec0",
"user": "hwangmoretime",
"createdAt": "2015-03-17T01:03:44Z",
"updatedAt": "2016-01-31T22:03:44Z",
"description": "Point Tracking for Non-Linear Lines: I"
},
{
"id": "06aa7e108b77745f1f24",
"user": "hwangmoretime",
"createdAt": "2015-03-17T01:04:07Z",
"updatedAt": "2016-02-03T17:59:43Z",
"description": "Point Tracking for Non-Linear Lines: II"
},
{
"id": "da8e72b5e680c827d6dd",
"user": "hwangmoretime",
"createdAt": "2015-03-17T01:05:13Z",
"updatedAt": "2016-02-03T18:27:42Z",
"description": "Point Tracking for Non-Linear Lines: III"
},
{
"id": "0821324fb499eac293c7",
"user": "roachhd",
"createdAt": "2014-10-31T05:59:29Z",
"updatedAt": "2015-08-29T14:08:26Z",
"description": "Bootstrap + Bootswatch = ๐Ÿ’“ a Bootswatch API test. "
},
{
"id": "98129315d0f7df3b53e3",
"user": "1wheel",
"createdAt": "2015-07-27T03:55:01Z",
"updatedAt": "2015-08-29T14:25:54Z",
"description": "Scatter I"
},
{
"id": "7e473c251e68ce760e2a",
"user": "1wheel",
"createdAt": "2015-07-27T04:33:37Z",
"updatedAt": "2015-09-01T16:58:51Z",
"description": "Scatter II"
},
{
"id": "3dfee2b74943398f0550",
"user": "1wheel",
"createdAt": "2015-07-27T07:39:37Z",
"updatedAt": "2015-09-01T16:58:58Z",
"description": "Scatter III"
},
{
"id": "77d0db6e5c004bcf00f6",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "3808234",
"user": "mbostock",
"createdAt": "2012-09-30T19:34:06Z",
"updatedAt": "2016-02-09T01:38:36Z",
"description": "General Update Pattern, III"
},
{
"id": "dca656bcaa682130cefd",
"user": "bmershon",
"createdAt": "2014-11-26T20:31:57Z",
"updatedAt": "2016-05-04T04:00:53Z",
"description": "Holes in Sensor Networks"
},
{
"id": "408072ba9119835f5796",
"user": "bmershon",
"createdAt": "2014-11-25T17:01:29Z",
"updatedAt": "2015-08-29T14:10:19Z",
"description": "Point Cloud Triangulation I"
},
{
"id": "41bc67cfedf95f7d196d",
"user": "bmershon",
"createdAt": "2014-11-16T17:37:56Z",
"updatedAt": "2016-04-19T05:05:33Z",
"description": "Vietoris-Rips Complex (simplicial complex)"
},
{
"id": "5952d82b1846525207f5",
"user": "nitaku",
"createdAt": "2015-10-19T15:12:41Z",
"updatedAt": "2015-10-20T14:46:22Z",
"description": "Virtual Filesystem UI"
},
{
"id": "f0b021b0a56fee82dd97",
"user": "nitaku",
"createdAt": "2015-07-29T09:38:20Z",
"updatedAt": "2015-10-15T20:15:46Z",
"description": "Tangled tree II"
},
{
"id": "5fb51700f991e4101773",
"user": "nitaku",
"createdAt": "2015-07-18T08:26:27Z",
"updatedAt": "2015-08-29T14:25:12Z",
"description": "Tangled tree"
},
{
"id": "8822395",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "e3ba0ce173b638e362e1",
"user": "nitaku",
"createdAt": "2015-07-27T10:09:20Z",
"updatedAt": "2015-08-29T14:25:58Z",
"description": "3D building (three.js)"
},
{
"id": "427c1ffc346ed9286fda",
"user": "nitaku",
"createdAt": "2014-07-16T12:24:51Z",
"updatedAt": "2015-08-29T14:04:04Z",
"description": "Three.js animated cube"
},
{
"id": "134eb65f5c1b00d8a73d",
"user": "nitaku",
"createdAt": "2015-07-15T08:53:26Z",
"updatedAt": "2015-10-19T13:33:33Z",
"description": "Fuzzy graph"
},
{
"id": "f705fc55e6f26df29354",
"user": "mbostock",
"createdAt": "2015-05-19T16:38:01Z",
"updatedAt": "2016-03-03T21:24:11Z",
"description": "Line Drawing"
},
{
"id": "8746032",
"user": "nitaku",
"createdAt": "2014-02-01T00:17:47Z",
"updatedAt": "2015-08-29T13:55:53Z",
"description": "Basic force layout (ID-based, zoomable, fixed random seed)"
},
{
"id": "833632f23c308ae2d58b",
"user": "nitaku",
"createdAt": "2015-07-03T19:52:30Z",
"updatedAt": "2015-08-29T14:24:13Z",
"description": "Isometric treemap (flare)"
},
{
"id": "a8aa67de3cd9f2e0554e",
"user": "nitaku",
"createdAt": "2015-07-05T09:50:17Z",
"updatedAt": "2015-10-19T13:29:51Z",
"description": "Tree colors (sunburst, DBpedia)"
},
{
"id": "d7cbf8fd96ce42fed36d",
"user": "nitaku",
"createdAt": "2015-07-05T11:08:20Z",
"updatedAt": "2015-08-29T14:24:17Z",
"description": "Duck Islands (Pink Floyd)"
},
{
"id": "3db48ae4c663ca028a6f",
"user": "nitaku",
"createdAt": "2015-02-24T16:59:06Z",
"updatedAt": "2015-08-29T14:16:04Z",
"description": "Duck Similarity (Galileo)"
},
{
"id": "8f96bf393b94caff688b",
"user": "nitaku",
"createdAt": "2015-06-17T20:19:57Z",
"updatedAt": "2015-10-15T19:17:28Z",
"description": "Isometric projection"
},
{
"id": "3424eed86f55550622ef",
"user": "nitaku",
"createdAt": "2014-09-15T15:51:04Z",
"updatedAt": "2015-08-29T14:06:30Z",
"description": "Labeled treemap (flare)"
},
{
"id": "6210bd80bdd20181e1f4",
"user": "nitaku",
"createdAt": "2015-06-20T10:06:44Z",
"updatedAt": "2015-08-29T14:23:23Z",
"description": "Isometric word cloud"
},
{
"id": "d784198bdc1c76221393",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "e03a1a5c1a4a95f06c3b",
"user": "nitaku",
"createdAt": "2015-06-18T18:58:03Z",
"updatedAt": "2016-03-08T03:54:52Z",
"description": "Isometric \"treemap\""
},
{
"id": "79f16392f7e1bed77f07",
"user": "nitaku",
"createdAt": "2014-10-10T13:40:59Z",
"updatedAt": "2015-08-29T14:07:27Z",
"description": "Word cloud treemap (flare)"
},
{
"id": "0c991d6ed0e994e1c7ed",
"user": "nitaku",
"createdAt": "2015-06-17T12:09:03Z",
"updatedAt": "2015-08-29T14:23:13Z",
"description": "Node Gosper hex tiling"
},
{
"id": "ce638f8bd5e70cb809e1",
"user": "nitaku",
"createdAt": "2015-06-17T08:27:44Z",
"updatedAt": "2015-08-29T14:23:13Z",
"description": "Node Gosper curve"
},
{
"id": "1036b853c3f52b8994a4",
"user": "nitaku",
"createdAt": "2015-06-17T14:00:48Z",
"updatedAt": "2015-08-29T14:23:13Z",
"description": "Gosper hex tiling irregularity"
},
{
"id": "cd8e12c7a18495980bd0",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "d8c76dfc03589e6dbf1f",
"user": "nitaku",
"createdAt": "2015-06-12T19:20:42Z",
"updatedAt": "2015-08-29T14:22:57Z",
"description": "Half matrix for symmetrical relations"
},
{
"id": "bf9c070d0fa6bab79d6a",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "5c5078b3cc3e54e4fec2",
"user": "nitaku",
"createdAt": "2014-10-27T11:03:27Z",
"updatedAt": "2015-08-29T14:08:13Z",
"description": "A classic comparison"
},
{
"id": "4afb54600dc9328d14bd",
"user": "nitaku",
"createdAt": "2015-02-21T17:16:29Z",
"updatedAt": "2015-08-29T14:15:53Z",
"description": "Gosper Displacement"
},
{
"id": "d3fd26207d7468b6c514",
"user": "nitaku",
"createdAt": "2014-11-05T11:06:04Z",
"updatedAt": "2015-08-29T14:08:39Z",
"description": "Classic hexagonal binning"
},
{
"id": "bf5c4ea014d0b91f1f04",
"user": "nitaku",
"createdAt": "2014-11-06T12:15:11Z",
"updatedAt": "2015-08-29T14:08:44Z",
"description": "Classic hexagonal binning II"
},
{
"id": "f6f42f7f6b5dea054d18",
"user": "nitaku",
"createdAt": "2014-10-24T13:14:31Z",
"updatedAt": "2015-08-29T14:08:06Z",
"description": "Opinion treemap word cloud (OpeNER - Paris, es)"
},
{
"id": "2d502924bad6152acbe5",
"user": "nitaku",
"createdAt": "2014-09-15T13:44:56Z",
"updatedAt": "2015-08-29T14:06:30Z",
"description": "Basic treemap (flare)"
},
{
"id": "564b91e8e9e7cbc7821f",
"user": "nitaku",
"createdAt": "2014-09-12T15:42:26Z",
"updatedAt": "2015-08-29T14:06:22Z",
"description": "Treemap navigator (flare)"
},
{
"id": "fa3be10877083f295204",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "564fcb398fdad08442c1",
"user": "nitaku",
"createdAt": "2014-07-29T15:47:22Z",
"updatedAt": "2015-08-29T14:04:38Z",
"description": "Node-link circular layout: Sankey links"
},
{
"id": "a50ccec1c202731fa8f1",
"user": "nitaku",
"createdAt": "2014-07-23T20:43:41Z",
"updatedAt": "2015-08-29T14:04:25Z",
"description": "Node-link polar layout: curved links"
},
{
"id": "6354551",
"user": "nitaku",
"createdAt": "2013-08-27T14:49:43Z",
"updatedAt": "2015-12-21T19:29:26Z",
"description": "Flowlines"
},
{
"id": "230ff9a14751b8f3092d",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "a161bdb59b9dcec9a32e",
"user": "nitaku",
"createdAt": "2014-07-20T13:20:24Z",
"updatedAt": "2015-08-29T14:04:13Z",
"description": "Node-link polar layout"
},
{
"id": "d5fc7956ba6896330ea1",
"user": "nitaku",
"createdAt": "2014-07-20T21:06:06Z",
"updatedAt": "2015-08-29T14:04:13Z",
"description": "Node-link polar layout with centrality (eigenvector)"
},
{
"id": "70da709633904c6de9d9",
"user": "nitaku",
"createdAt": "2014-06-19T15:08:01Z",
"updatedAt": "2015-08-29T14:02:46Z",
"description": "Pie vs. pie"
},
{
"id": "16933e96f51571fbbcd6",
"user": "nitaku",
"createdAt": "2014-07-06T10:31:28Z",
"updatedAt": "2015-08-29T14:03:34Z",
"description": "Random(ish) polygon"
},
{
"id": "8543484",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "e130ae36d2131abc56ae",
"user": "nitaku",
"createdAt": "2014-07-20T09:47:29Z",
"updatedAt": "2015-08-29T14:04:12Z",
"description": "Zoom"
},
{
"id": "c5607cfabe7a238f3853",
"user": "nitaku",
"createdAt": "2014-07-20T11:03:35Z",
"updatedAt": "2015-08-29T14:04:13Z",
"description": "Drag"
},
{
"id": "dcce9b645783d5239a04",
"user": "nitaku",
"createdAt": "2014-07-12T13:16:02Z",
"updatedAt": "2015-08-29T14:03:53Z",
"description": "FASS spiral (L-system)"
},
{
"id": "bffd66a05d5bf04aefa7",
"user": "nitaku",
"createdAt": "2014-07-12T11:08:58Z",
"updatedAt": "2015-08-29T14:03:53Z",
"description": "Hilbert spiral (L-system)"
},
{
"id": "e2af207bc46782aa460c",
"user": "nitaku",
"createdAt": "2014-07-12T10:41:45Z",
"updatedAt": "2015-08-29T14:03:53Z",
"description": "Hilbert sequence (L-system)"
},
{
"id": "8b9e134ca8bae13bb470",
"user": "nitaku",
"createdAt": "2014-07-12T08:56:44Z",
"updatedAt": "2015-08-29T14:03:53Z",
"description": "Square spiral (L-system)"
},
{
"id": "c3d1662948a049fc80dd",
"user": "nitaku",
"createdAt": "2014-07-12T09:14:35Z",
"updatedAt": "2015-08-29T14:03:53Z",
"description": "Hex spiral (L-system)"
},
{
"id": "005b68abc80f5f514230",
"user": "nitaku",
"createdAt": "2014-05-24T20:58:25Z",
"updatedAt": "2015-08-29T14:01:48Z",
"description": "OpeNER - Opinion targets (Amsterdam)"
},
{
"id": "0d563176b67c9d3062ae",
"user": "nitaku",
"createdAt": "2014-05-18T20:13:44Z",
"updatedAt": "2015-08-29T14:01:33Z",
"description": "HCL decomposition: cubeYF"
},
{
"id": "11337491",
"user": "mbostock",
"createdAt": "2014-04-27T04:22:02Z",
"updatedAt": "2016-02-09T01:56:15Z",
"description": "Rainbow Luminance"
},
{
"id": "5171361",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "4360c8ac1dcaee373113",
"user": "darosh",
"createdAt": "2015-11-03T16:03:32Z",
"updatedAt": "2015-11-04T12:16:56Z",
"description": "2D with stacksgl"
},
{
"id": "a71ff1c9d6e163e2faea",
"user": "darosh",
"createdAt": "2015-11-04T03:44:20Z",
"updatedAt": "2015-11-30T09:32:28Z",
"description": "Benchmark"
},
{
"id": "14e2e4e14898f13e13c7",
"user": "darosh",
"createdAt": "2015-10-25T19:21:29Z",
"updatedAt": "2015-10-30T11:36:43Z",
"description": "Planetary Grid Browser I"
},
{
"id": "7b816a50e66bb62208a7",
"user": "darosh",
"createdAt": "2015-10-27T13:28:32Z",
"updatedAt": "2015-10-30T11:55:25Z",
"description": "Planetary Grid Browser II"
},
{
"id": "0444bdd92c1f968c75ef",
"user": "darosh",
"createdAt": "2015-10-18T00:03:30Z",
"updatedAt": "2015-10-18T18:32:31Z",
"description": "Zoom to Group of Countries III"
},
{
"id": "f5204d3d85bdaa1fd6ea",
"user": "darosh",
"createdAt": "2015-10-17T22:13:33Z",
"updatedAt": "2015-10-17T23:42:38Z",
"description": "Zoom to Group of Countries II"
},
{
"id": "baf7dd8d481d83b7f37e",
"user": "darosh",
"createdAt": "2015-10-17T15:57:23Z",
"updatedAt": "2015-10-17T23:09:45Z",
"description": "Zoom to Group of Countries"
},
{
"id": "2d12a584a14910032ab8",
"user": "darosh",
"createdAt": "2015-10-16T11:48:35Z",
"updatedAt": "2015-11-19T10:54:13Z",
"description": "Planetary Grid"
},
{
"id": "2bab520665d975780931",
"user": "darosh",
"createdAt": "2015-10-16T13:10:04Z",
"updatedAt": "2015-10-17T09:09:05Z",
"description": "Rotating Planetary Grid"
},
{
"id": "2fe464efd794bde5ed68",
"user": "darosh",
"createdAt": "2015-10-16T17:55:28Z",
"updatedAt": "2015-10-17T09:01:45Z",
"description": "Hexakis Icosahedron"
},
{
"id": "3055104",
"user": "mbostock",
"createdAt": "2012-07-05T17:36:43Z",
"updatedAt": "2016-02-09T01:26:17Z",
"description": "Icosahedron"
},
{
"id": "71ef64a57131b3368fc9",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "069bf8246a364fb4b681",
"user": "khailey",
"createdAt": "2015-11-04T00:11:30Z",
"updatedAt": "2015-11-04T00:11:30Z",
"description": "fresh block"
},
{
"id": "53e75d0b7cc254011e48",
"user": "hironow",
"createdAt": "2015-10-17T09:59:17Z",
"updatedAt": "2015-10-31T15:02:51Z",
"description": "D3 linepoints chart by datasets"
},
{
"id": "4b6ab7914183dbf7a16f",
"user": "zanarmstrong",
"createdAt": "2015-11-07T18:19:50Z",
"updatedAt": "2015-11-07T18:19:51Z",
"description": "Adaption of Jfire.io animation, for teaching purposes"
},
{
"id": "3b5f766647e15e23e5b8",
"user": "zanarmstrong",
"createdAt": "2015-11-07T18:22:05Z",
"updatedAt": "2015-11-07T18:47:06Z",
"description": "Stripped adaptation of Jfire.io animation, for teaching purposes"
},
{
"id": "56aa8232fb56247094ae",
"user": "zanarmstrong",
"createdAt": "2015-11-07T18:29:18Z",
"updatedAt": "2015-11-07T23:42:00Z",
"description": "Bar Chart: stripped easier"
},
{
"id": "5fbc4b93f62227dedeb7",
"user": "zanarmstrong",
"createdAt": "2014-12-31T23:41:42Z",
"updatedAt": "2015-08-29T14:12:35Z",
"description": "Jittery Line"
},
{
"id": "278f27f982e1f1310ed3",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "172a6a53ddbce792b10d",
"user": "zanarmstrong",
"createdAt": "2015-11-03T04:25:02Z",
"updatedAt": "2015-11-03T04:58:00Z",
"description": "visualization template based on mouse input"
},
{
"id": "671c0e7adfb1ce7060b8",
"user": "emeeks",
"createdAt": "2015-09-22T22:09:12Z",
"updatedAt": "2016-03-16T15:46:02Z",
"description": "Simple Correlation Matrix"
},
{
"id": "6232537",
"user": "mbostock",
"createdAt": "2013-08-14T16:06:02Z",
"updatedAt": "2016-04-15T06:55:00Z",
"description": "Brush Snapping"
},
{
"id": "603d3fdb4ba53033204c",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "bbbbc9c4f4ba5d9cfc53",
"user": "miketahani",
"createdAt": "2015-11-02T18:32:30Z",
"updatedAt": "2015-11-09T23:54:55Z",
"description": "d3.unconf ticket"
},
{
"id": "8777d620caef32959713",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "b237b631ac184c9f9fa4",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "68e135c8e56cb134ebf2",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "5cce4b8ca41650f14bb4",
"user": "sxywu",
"createdAt": "2015-11-08T22:16:31Z",
"updatedAt": "2015-11-08T23:22:30Z",
"description": "Image processing fun #1"
},
{
"id": "515f713d41186e18e384",
"user": "sxywu",
"createdAt": "2015-11-08T23:25:13Z",
"updatedAt": "2015-11-08T23:33:26Z",
"description": "Image processing fun #2"
},
{
"id": "680375cb6a66760ea011",
"user": "sxywu",
"createdAt": "2015-11-08T23:33:35Z",
"updatedAt": "2015-11-09T02:00:45Z",
"description": "Image processing fun #3"
},
{
"id": "09a49d15df06d56c8f70",
"user": "emeeks",
"createdAt": "2015-07-26T01:29:10Z",
"updatedAt": "2016-03-17T02:05:01Z",
"description": "Networks - Graphs 3"
},
{
"id": "0a283ff9359224fa89ee",
"user": "emeeks",
"createdAt": "2014-11-19T02:39:37Z",
"updatedAt": "2016-03-17T02:27:18Z",
"description": "Ch. 11, Fig. 6 - D3.js in Action"
},
{
"id": "98f56f3e840143a4eccf",
"user": "emeeks",
"createdAt": "2015-11-07T05:12:48Z",
"updatedAt": "2016-03-16T15:38:03Z",
"description": "Treemap"
},
{
"id": "c5f71b45dbd87402e6f2",
"user": "micahstubbs",
"createdAt": "2015-11-08T06:19:51Z",
"updatedAt": "2016-03-12T22:44:05Z",
"description": "County Treemap I"
},
{
"id": "30ad6abd1aacada4c6d3",
"user": "jjelosua",
"createdAt": "2015-11-04T14:58:45Z",
"updatedAt": "2016-03-09T18:29:37Z",
"description": "d3intro_ex00"
},
{
"id": "3d9f51b2c7a7e49840a8",
"user": "jjelosua",
"createdAt": "2015-11-06T07:37:01Z",
"updatedAt": "2016-03-09T11:32:02Z",
"description": "d3intro_ex01"
},
{
"id": "58f360e13a4397bf3dad",
"user": "jjelosua",
"createdAt": "2015-11-06T07:56:24Z",
"updatedAt": "2016-03-09T11:36:39Z",
"description": "d3intro_ex02"
},
{
"id": "fe38f5960d1276833555",
"user": "jjelosua",
"createdAt": "2015-11-06T10:28:26Z",
"updatedAt": "2016-03-09T11:45:51Z",
"description": "d3intro_ex03"
},
{
"id": "95f7e0f6ce686f7f2ec1",
"user": "jjelosua",
"createdAt": "2015-11-06T10:37:37Z",
"updatedAt": "2016-03-09T18:32:08Z",
"description": "d3intro_ex04"
},
{
"id": "84c9384ce8bd8f646c45",
"user": "jjelosua",
"createdAt": "2015-11-06T10:47:47Z",
"updatedAt": "2016-03-09T18:38:36Z",
"description": "d3intro_ex05"
},
{
"id": "905ebf419d8f2173559c",
"user": "jjelosua",
"createdAt": "2015-11-06T10:51:48Z",
"updatedAt": "2016-03-09T18:38:28Z",
"description": "d3intro_ex06"
},
{
"id": "dcc17252ca6ed6b4cd39",
"user": "jjelosua",
"createdAt": "2015-11-06T11:00:01Z",
"updatedAt": "2016-03-09T18:38:16Z",
"description": "d3intro_ex07"
},
{
"id": "cf2f10e2777378a10960",
"user": "jjelosua",
"createdAt": "2015-11-06T11:14:10Z",
"updatedAt": "2016-03-09T18:38:06Z",
"description": "d3intro_ex08"
},
{
"id": "4458497",
"user": "mbostock",
"createdAt": "2013-01-04T23:35:47Z",
"updatedAt": "2016-02-09T02:11:18Z",
"description": "Waterman Butterfly"
},
{
"id": "3140140",
"user": "syntagmatic",
"createdAt": "2012-07-19T01:19:38Z",
"updatedAt": "2015-10-07T09:08:03Z",
"description": "Pack Layout Transition Challenge"
},
{
"id": "9358409",
"user": "sxywu",
"createdAt": "2014-03-05T00:01:29Z",
"updatedAt": "2015-12-22T08:48:16Z",
"description": "Enter-Update-Exit in Force Layout"
},
{
"id": "7c7bae35e0944725363a",
"user": "susielu",
"createdAt": "2015-11-05T07:18:52Z",
"updatedAt": "2015-11-05T16:30:13Z",
"description": "Circle Pack Labels"
},
{
"id": "4063326",
"user": "duopixel",
"createdAt": "2012-11-13T01:37:27Z",
"updatedAt": "2016-04-20T06:22:10Z",
"description": "Animate path in D3"
},
{
"id": "3824661",
"user": "duopixel",
"createdAt": "2012-10-03T02:48:03Z",
"updatedAt": "2015-10-11T07:37:55Z",
"description": "Make an element follow a path"
},
{
"id": "4063318",
"user": "mbostock",
"createdAt": "2012-11-13T01:33:21Z",
"updatedAt": "2016-03-28T13:27:52Z",
"description": "Calendar View"
},
{
"id": "2565344",
"user": "mbostock",
"createdAt": "2012-05-01T05:30:52Z",
"updatedAt": "2016-02-09T01:18:33Z",
"description": "Text Along a Path"
},
{
"id": "51ccb8b4f111ef4aec1c",
"user": "zanarmstrong",
"createdAt": "2015-11-07T18:50:16Z",
"updatedAt": "2015-11-07T18:52:02Z",
"description": "Stripped adaptation of Jfire.io animation, for teaching purposes: more difficult"
},
{
"id": "bc4e32ec71636b498c46",
"user": "mbostock",
"createdAt": "2015-10-16T04:33:43Z",
"updatedAt": "2016-02-09T01:49:09Z",
"description": "Animated D3 Logo"
},
{
"id": "c034d66572fd6bd6815a",
"user": "mbostock",
"createdAt": "2015-10-19T18:29:51Z",
"updatedAt": "2016-03-30T03:46:40Z",
"description": "Tree of Life"
},
{
"id": "05f44e46124cefa0070c",
"user": "emeeks",
"createdAt": "2015-11-07T04:54:10Z",
"updatedAt": "2016-03-16T15:42:07Z",
"description": "Circle Pack"
},
{
"id": "0402c48430ef54b2f494",
"user": "emeeks",
"createdAt": "2015-11-07T03:22:31Z",
"updatedAt": "2016-03-16T15:42:20Z",
"description": "Difference Charts"
},
{
"id": "5446416",
"user": "mbostock",
"createdAt": "2013-04-23T19:01:51Z",
"updatedAt": "2016-02-09T02:06:12Z",
"description": "Milky Way"
},
{
"id": "1457934",
"user": "enjalot",
"createdAt": "2011-12-11T02:58:21Z",
"updatedAt": "2016-04-04T16:12:44Z",
"description": "d3.js sin waves"
},
{
"id": "3eee614f20264517d01f",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "de262983e3ba0c0f89c1",
"user": "enjalot",
"createdAt": "2015-11-06T22:21:09Z",
"updatedAt": "2015-11-19T20:00:54Z",
"description": "block colors"
},
{
"id": "0d2e658691a4f93cad92",
"user": "nbremer",
"createdAt": "2015-11-09T12:05:06Z",
"updatedAt": "2015-11-09T13:14:18Z",
"description": "A SOM Clustering of block Colors - Including HSL & RGB"
},
{
"id": "6f26d011aebc4c75272b",
"user": "ufenegga",
"createdAt": "2014-08-29T06:35:25Z",
"updatedAt": "2015-08-29T14:05:51Z",
"description": "sin(2t), radial projection"
},
{
"id": "bb29b599bce91048ec40",
"user": "ufenegga",
"createdAt": "2014-08-29T06:43:52Z",
"updatedAt": "2015-08-29T14:05:51Z",
"description": "Radial line generator, interpolation from an empty array"
},
{
"id": "5e4ac1a614ec3c201ab4",
"user": "zanarmstrong",
"createdAt": "2015-11-07T05:14:11Z",
"updatedAt": "2015-11-08T20:12:40Z",
"description": "Starting Points w/ Data"
},
{
"id": "208d53b96b7a80d59166",
"user": "newsummit",
"createdAt": "2015-11-08T07:37:22Z",
"updatedAt": "2015-11-08T18:40:18Z",
"description": "all nodes"
},
{
"id": "037488ed37f0e1cbfe32",
"user": "emeeks",
"createdAt": "2015-11-08T15:12:46Z",
"updatedAt": "2016-03-16T15:40:07Z",
"description": "Another UI Voronoi"
},
{
"id": "1f854ed0c5a08d710371",
"user": "emeeks",
"createdAt": "2015-11-07T05:00:52Z",
"updatedAt": "2016-03-16T15:41:48Z",
"description": "Word Tree"
},
{
"id": "98724f36aa2cbf413718",
"user": "emeeks",
"createdAt": "2015-11-07T03:17:49Z",
"updatedAt": "2016-03-16T15:42:35Z",
"description": "Simple Line Chart"
},
{
"id": "863c73c184f22049caeb",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "e07ecf912d3eeb74d209",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "cf4ae6fdcd32b3a8c250",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "29cc3cc4078091fd2115",
"user": "mbostock",
"createdAt": "2015-04-21T21:55:55Z",
"updatedAt": "2016-02-09T01:51:31Z",
"description": "State Grid"
},
{
"id": "8ba86c4fded2c67b34c7",
"user": "sxywu",
"createdAt": "2015-11-09T00:00:29Z",
"updatedAt": "2015-11-09T02:40:55Z",
"description": "Image processing fun #4"
},
{
"id": "b8c3d455ad814b086492",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "53c6d59ea70afaf19cf1",
"user": "nicksrandall",
"createdAt": "2015-11-06T23:48:09Z",
"updatedAt": "2015-11-10T00:09:33Z",
"description": "KotoJS BarChart (ES2015)"
},
{
"id": "58457ea613b84f7544b1",
"user": "nicksrandall",
"createdAt": "2015-11-08T20:58:03Z",
"updatedAt": "2015-11-10T00:10:36Z",
"description": "KotoJS BarChart (ES5)"
},
{
"id": "5c136de85de1c2abb6fc",
"user": "timelyportfolio",
"createdAt": "2014-09-10T19:06:52Z",
"updatedAt": "2016-04-26T10:57:54Z",
"description": "demo programmatic control of a d3 brush"
},
{
"id": "a8d01671b04b326d36de",
"user": "ufenegga",
"createdAt": "2015-09-19T09:48:36Z",
"updatedAt": "2015-09-19T09:48:36Z",
"description": "Satellite Projection Explorer"
},
{
"id": "07ed66cc6fc394d6ea53",
"user": "jonsadka",
"createdAt": "2015-11-06T19:33:26Z",
"updatedAt": "2016-01-16T23:51:37Z",
"description": "Binomial Probability Density"
},
{
"id": "3acd2fe76ec749be03fd",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "d7e4f9199c15d71258b5",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "667e4df76848e72f250b",
"user": "nbremer",
"createdAt": "2015-11-10T18:24:30Z",
"updatedAt": "2015-11-16T17:26:24Z",
"description": "Zoomable Circle Packing with Canvas & D3.js - I"
},
{
"id": "5a801d9153059b226bbd",
"user": "nbremer",
"createdAt": "2015-11-16T10:16:54Z",
"updatedAt": "2015-11-16T17:26:19Z",
"description": "Circle Packing at its most Basic - Canvas only"
},
{
"id": "db24422abdb20150a9dd",
"user": "nbremer",
"createdAt": "2015-11-11T09:31:03Z",
"updatedAt": "2015-11-16T17:26:25Z",
"description": "Zoomable Circle Packing with Canvas & D3.js - II"
},
{
"id": "4b42493b70dbc9e1ce02",
"user": "nbremer",
"createdAt": "2015-11-08T11:47:40Z",
"updatedAt": "2015-11-09T12:19:10Z",
"description": "A SOM Clustering of block Colors - Including RGB"
},
{
"id": "0cbfa9ab9bdce220113f",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "a35687613ab0f4991f37",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "95ffd65ad1d87d26cc69",
"user": "enjalot",
"createdAt": "2015-11-04T18:15:42Z",
"updatedAt": "2015-11-05T00:54:59Z",
"description": "mapping police violence: data"
},
{
"id": "1648635",
"user": "mbostock",
"createdAt": "2012-01-20T17:42:57Z",
"updatedAt": "2016-02-09T01:09:32Z",
"description": "Monday-based Calendar"
},
{
"id": "3a6f39dadf4d9fec7ca4",
"user": "enoex",
"createdAt": "2014-09-15T02:18:43Z",
"updatedAt": "2015-11-13T06:42:50Z",
"description": "Fog of War SVG Filter Mask Example"
},
{
"id": "cc818fff7a1049cc0efe",
"user": "enjalot",
"createdAt": "2015-11-11T04:51:46Z",
"updatedAt": "2015-11-11T04:52:06Z",
"description": "The Migrant Files: Money by Route"
},
{
"id": "95ed9ac5bb501f7398f6",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "6552457",
"user": "ndarville",
"createdAt": "2013-09-13T15:50:09Z",
"updatedAt": "2015-12-23T00:19:04Z",
"description": "Confidence Interval"
},
{
"id": "e5e3bd6effd7fc1874ff",
"user": "Jay-Oh-eN",
"createdAt": "2015-11-18T02:01:36Z",
"updatedAt": "2015-12-09T21:10:54Z",
"description": "SF in 3D"
},
{
"id": "80097d54d4ec4ce83222",
"user": "zzolo",
"createdAt": "2015-11-16T21:51:52Z",
"updatedAt": "2015-11-16T21:55:21Z",
"description": "A scatter plot"
},
{
"id": "89de858deaf6f8fc78ba",
"user": "zzolo",
"createdAt": "2015-11-16T21:55:24Z",
"updatedAt": "2015-11-16T21:55:26Z",
"description": "A scatter plot"
},
{
"id": "c03ee31334ee89abad83",
"user": "mbostock",
"createdAt": "2014-05-08T04:57:13Z",
"updatedAt": "2016-02-09T01:55:33Z",
"description": "Wilsonโ€™s Algorithm II"
},
{
"id": "15f52d2ec0b035b53c6f",
"user": "Jay-Oh-eN",
"createdAt": "2015-11-15T16:53:19Z",
"updatedAt": "2015-12-20T18:15:18Z",
"description": "Civic Impact through Data Visualization: Exercise 1"
},
{
"id": "34d2ce39d3b8c2f8a577",
"user": "malcolm-decuire",
"createdAt": "2015-11-23T07:37:53Z",
"updatedAt": "2015-12-18T20:58:20Z",
"description": "American Lynches"
},
{
"id": "19a3f0afed794cf720b3",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "40f0f319001394b5f8af",
"user": "curran",
"createdAt": "2015-11-24T23:03:32Z",
"updatedAt": "2015-11-25T00:51:34Z",
"description": "Lynchings by State Pie Charts"
},
{
"id": "f1a875885437608d17e8",
"user": "curran",
"createdAt": "2015-11-24T22:01:16Z",
"updatedAt": "2015-11-25T00:36:41Z",
"description": "Lynchings by State Pie Charts First Attempt"
},
{
"id": "e025a50dbaae7186e516",
"user": "curran",
"createdAt": "2015-11-24T01:10:45Z",
"updatedAt": "2015-11-24T01:17:32Z",
"description": "Sized Pie Charts"
},
{
"id": "11b02f8917fac66d6fe5",
"user": "curran",
"createdAt": "2015-11-21T19:30:49Z",
"updatedAt": "2015-11-24T01:50:55Z",
"description": "Donut Chart Small Multiples"
},
{
"id": "40d5e61963abf20da067",
"user": "curran",
"createdAt": "2015-11-21T18:58:26Z",
"updatedAt": "2015-11-22T18:47:30Z",
"description": "Polar Area Small Multiples"
},
{
"id": "be3744cfe1b318bf4035",
"user": "curran",
"createdAt": "2015-11-23T20:32:19Z",
"updatedAt": "2015-11-23T20:34:21Z",
"description": "Pie Chart Small Multiples"
},
{
"id": "3757119",
"user": "mbostock",
"createdAt": "2012-09-20T17:11:29Z",
"updatedAt": "2016-02-13T20:06:33Z",
"description": "Equirectangular (Plate Carrรฉe)"
},
{
"id": "14e29858efdd19253787",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "1da93bab4cdc708f41ae",
"user": "curran",
"createdAt": "2015-11-22T22:50:34Z",
"updatedAt": "2015-11-24T01:09:21Z",
"description": "Blocks Graph"
},
{
"id": "d0a42741ce0cf6cdc3ab",
"user": "curran",
"createdAt": "2015-11-24T01:17:35Z",
"updatedAt": "2015-11-24T01:52:17Z",
"description": "Sized Donut Charts"
},
{
"id": "94f1376b946c9d217014",
"user": "curran",
"createdAt": "2015-11-21T18:52:13Z",
"updatedAt": "2015-11-22T18:38:32Z",
"description": "Polar Area Diagram"
},
{
"id": "1c23d9c7070deb6f8488",
"user": "curran",
"createdAt": "2015-11-21T04:39:52Z",
"updatedAt": "2015-11-22T18:34:00Z",
"description": "Religions Pie Chart"
},
{
"id": "950cbe78b4c307fa14a1",
"user": "curran",
"createdAt": "2015-08-06T19:33:22Z",
"updatedAt": "2015-08-29T14:26:48Z",
"description": "Using d3-legend"
},
{
"id": "0ea0689476f9dbd41979",
"user": "curran",
"createdAt": "2015-09-10T00:09:33Z",
"updatedAt": "2015-09-11T10:46:03Z",
"description": "Bootstrap Grid Example"
},
{
"id": "805413fb3b2efaada1ce",
"user": "curran",
"createdAt": "2015-10-23T21:19:33Z",
"updatedAt": "2016-02-25T21:11:17Z",
"description": "Stacked Bars"
},
{
"id": "b66a37afe6581eb5bc0c",
"user": "zanarmstrong",
"createdAt": "2015-11-20T20:44:05Z",
"updatedAt": "2015-11-20T20:47:08Z",
"description": "D3 Bingo! (Zan)"
},
{
"id": "6daa5503fc60d4a89a11",
"user": "zanarmstrong",
"createdAt": "2015-11-19T18:13:11Z",
"updatedAt": "2015-11-20T20:48:10Z",
"description": "D3 Bingo!"
},
{
"id": "666179ad5587254694bc",
"user": "enoex",
"createdAt": "2015-11-24T09:02:38Z",
"updatedAt": "2015-11-24T09:02:38Z",
"description": "Styled Map 1 - Working"
},
{
"id": "010ffad3577afec10ef6",
"user": "enoex",
"createdAt": "2015-11-24T09:05:04Z",
"updatedAt": "2015-11-24T09:05:23Z",
"description": "Styled Map 2 - Broken by default"
},
{
"id": "92abca0ebac031d77521",
"user": "enoex",
"createdAt": "2015-11-24T09:06:30Z",
"updatedAt": "2015-11-24T09:07:25Z",
"description": "Styled Map 1 - Working"
},
{
"id": "5544599",
"user": "darrenjaworski",
"createdAt": "2013-05-09T00:00:43Z",
"updatedAt": "2015-12-17T03:39:01Z",
"description": "Animated scatterplot through time"
},
{
"id": "e749224c89f82788cb18",
"user": "emeeks",
"createdAt": "2015-11-24T16:26:13Z",
"updatedAt": "2016-03-08T01:42:58Z",
"description": "Sankey Particles III"
},
{
"id": "9673c96a682fe3948379",
"user": "emeeks",
"createdAt": "2015-11-24T03:28:41Z",
"updatedAt": "2016-03-08T01:43:20Z",
"description": "Sankey Particles II"
},
{
"id": "21f99959d48dd0d0c746",
"user": "emeeks",
"createdAt": "2015-11-21T01:10:09Z",
"updatedAt": "2016-03-08T01:43:46Z",
"description": "Sankey Particles"
},
{
"id": "fb6c0a5cc8d6646a36d0",
"user": "emeeks",
"createdAt": "2015-11-19T02:05:54Z",
"updatedAt": "2016-03-16T15:37:22Z",
"description": "Fog of War I"
},
{
"id": "3d6e7b24d31533abd84f",
"user": "emeeks",
"createdAt": "2015-11-19T02:08:33Z",
"updatedAt": "2016-03-16T15:37:02Z",
"description": "Fog of War II"
},
{
"id": "f0f96f11c7d1afceaeb3",
"user": "emeeks",
"createdAt": "2015-11-19T02:13:01Z",
"updatedAt": "2016-03-16T15:36:45Z",
"description": "Fog of War III"
},
{
"id": "4403522",
"user": "mbostock",
"createdAt": "2012-12-29T00:48:59Z",
"updatedAt": "2016-02-09T02:11:36Z",
"description": "Rotated Axis Labels"
},
{
"id": "3176159",
"user": "phoebebright",
"createdAt": "2012-07-25T13:21:20Z",
"updatedAt": "2016-04-07T02:03:58Z",
"description": "D3 using nest on csv data"
},
{
"id": "0055d87cfaecc5b06cd2",
"user": "hsuttong",
"createdAt": "2015-11-17T09:06:37Z",
"updatedAt": "2015-11-17T11:19:53Z",
"description": "d3 first transition"
},
{
"id": "835c17a94abade5c2ca1",
"user": "hsuttong",
"createdAt": "2015-11-17T10:42:45Z",
"updatedAt": "2015-11-17T23:03:46Z",
"description": "d3 first svg"
},
{
"id": "4a7f517bec51adc6e7bc",
"user": "hsuttong",
"createdAt": "2015-11-17T07:33:41Z",
"updatedAt": "2015-11-17T09:06:21Z",
"description": "d3 first bar plot"
},
{
"id": "4122298",
"user": "mbostock",
"createdAt": "2012-11-21T00:40:47Z",
"updatedAt": "2016-03-09T03:37:25Z",
"description": "U.S. Counties TopoJSON"
},
{
"id": "4090870",
"user": "mbostock",
"createdAt": "2012-11-16T21:00:22Z",
"updatedAt": "2016-02-09T01:45:40Z",
"description": "U.S. Counties TopoJSON Mesh"
},
{
"id": "be4a45ec74357e7d9b10",
"user": "curran",
"createdAt": "2015-11-22T23:32:04Z",
"updatedAt": "2015-11-24T01:08:25Z",
"description": "Blocks Graph with Links"
},
{
"id": "9a77fe4663f531c0d8cd",
"user": "walkerjeffd",
"createdAt": "2015-11-17T00:00:44Z",
"updatedAt": "2015-11-17T02:09:15Z",
"description": "timeseries-uncertainty"
},
{
"id": "1401b7a1459f2ffa975e",
"user": "mbostock",
"createdAt": "2015-11-20T23:56:23Z",
"updatedAt": "2016-02-09T01:48:48Z",
"description": "Rounded Arc Test"
},
{
"id": "6cd1e224d76811b68df4",
"user": "curran",
"createdAt": "2015-11-17T19:49:35Z",
"updatedAt": "2015-11-17T19:56:17Z",
"description": "Largest 5 Countries"
},
{
"id": "5d1f067bb3a89dfa6675",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "ebec037138b5866ff0d3",
"user": "syntagmatic",
"createdAt": "2015-08-30T08:51:21Z",
"updatedAt": "2015-09-02T13:14:58Z",
"description": "Breathing Color Mesh"
},
{
"id": "c21840890a4790632124",
"user": "enjalot",
"createdAt": "2015-10-29T20:30:37Z",
"updatedAt": "2015-11-13T02:51:30Z",
"description": "Connected Particles: Lasers"
},
{
"id": "be2abfb3155a38be4de4",
"user": "eesur",
"createdAt": "2014-11-30T11:40:31Z",
"updatedAt": "2015-08-29T14:10:33Z",
"description": "d3 | Force layout with images"
},
{
"id": "4964ea501de087f591f8",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "7f5375d927698f508a01",
"user": "MattDionis",
"createdAt": "2015-11-23T12:01:58Z",
"updatedAt": "2015-11-24T20:30:36Z",
"description": "Collapsible force layout w/ images"
},
{
"id": "3cda05ca68cba260cb81",
"user": "micahstubbs",
"createdAt": "2015-11-12T22:44:25Z",
"updatedAt": "2015-11-20T01:22:21Z",
"description": "programmatic control of a d3 brush - specify zoom"
},
{
"id": "e5ddec8d476335d79bbc",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "7b226e90c7338c69606b",
"user": "enjalot",
"createdAt": "2015-09-08T21:19:56Z",
"updatedAt": "2016-04-29T10:15:54Z",
"description": "matrix: rotations"
},
{
"id": "f1cda1ba12f9904e65a0",
"user": "matt81m",
"createdAt": "2015-09-18T06:04:24Z",
"updatedAt": "2015-09-18T19:10:18Z",
"description": "Interpolation and Area Charts"
},
{
"id": "222939d7c74c5de09387",
"user": "nivas8292",
"createdAt": "2015-06-18T04:35:03Z",
"updatedAt": "2015-08-29T14:23:15Z",
"description": "Zoom and Brush in d3"
},
{
"id": "d5252d37917ab6eab032",
"user": "curran",
"createdAt": "2015-09-13T00:48:48Z",
"updatedAt": "2015-09-14T17:57:53Z",
"description": "Focus + Context Area Charts"
},
{
"id": "9490516",
"user": "mbostock",
"createdAt": "2014-03-11T17:18:21Z",
"updatedAt": "2016-02-09T01:58:12Z",
"description": "Small Multiples III"
},
{
"id": "738561113db8428f4bbe",
"user": "nivas8292",
"createdAt": "2015-06-11T18:12:21Z",
"updatedAt": "2015-08-29T14:22:55Z",
"description": "Degree Days"
},
{
"id": "92248ec5049ba86bf125",
"user": "geraldarthur",
"createdAt": "2015-11-11T23:09:33Z",
"updatedAt": "2015-11-12T01:14:21Z",
"description": "State Grid Choropleth"
},
{
"id": "78b10a3836254f8b6d8e",
"user": "geraldarthur",
"createdAt": "2015-11-18T18:11:37Z",
"updatedAt": "2015-11-18T18:49:18Z",
"description": "JSON to Grid Choropleth"
},
{
"id": "caea96e611d378bcd853",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "86e108859d584da77274",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "16ba74808b15f01dc3f5",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "3795040",
"user": "mbostock",
"createdAt": "2012-09-27T16:44:31Z",
"updatedAt": "2016-02-09T01:37:59Z",
"description": "Interactive Orthographic"
},
{
"id": "2ceaea7f0a4e37ca5a5d",
"user": "sxywu",
"createdAt": "2015-11-09T02:45:57Z",
"updatedAt": "2015-11-09T08:36:38Z",
"description": "Image processing fun #5"
},
{
"id": "2aead353c3446ee9acca",
"user": "sxywu",
"createdAt": "2015-11-13T07:06:31Z",
"updatedAt": "2015-11-16T00:57:54Z",
"description": "Image processing fun #6"
},
{
"id": "f2f6883ac7c965d09b90",
"user": "emeeks",
"createdAt": "2015-07-26T01:57:34Z",
"updatedAt": "2016-03-17T02:04:06Z",
"description": "Networks - Graphs 7"
},
{
"id": "daf6bc9db8b0a28e3973",
"user": "curran",
"createdAt": "2015-11-22T22:59:01Z",
"updatedAt": "2015-11-24T01:08:55Z",
"description": "Blocks Graph Edges Only"
},
{
"id": "db1e524cae5e4344b2e6",
"user": "curran",
"createdAt": "2015-08-12T20:25:38Z",
"updatedAt": "2015-08-29T14:27:15Z",
"description": "Dynamic Size"
},
{
"id": "801c4bb101e86d19a1d0",
"user": "nbremer",
"createdAt": "2015-06-30T09:17:43Z",
"updatedAt": "2015-11-19T13:54:32Z",
"description": "Final - Voronoi Scatterplot - Life expectancy vs GDP per capita"
},
{
"id": "6c0ce7a12c7d5497350d",
"user": "curran",
"createdAt": "2015-08-07T22:28:13Z",
"updatedAt": "2015-08-29T14:26:54Z",
"description": "Multi-Line Voronoi 2015"
},
{
"id": "55e9082ac7a5a344b4ee",
"user": "pnavarrc",
"createdAt": "2015-09-19T23:20:06Z",
"updatedAt": "2015-09-19T23:24:49Z",
"description": "Earthquake Map"
},
{
"id": "864b11eb83aac3a1f6a2",
"user": "nbremer",
"createdAt": "2015-10-17T14:55:01Z",
"updatedAt": "2016-04-03T16:33:32Z",
"description": "Data based orientations in SVG Gradients - Final example - Avenger Movie Collaborations"
},
{
"id": "f84b7b31bc2ac92f2e30",
"user": "bmershon",
"createdAt": "2015-10-17T14:34:27Z",
"updatedAt": "2015-10-19T23:20:23Z",
"description": "Context Sensitive Label Visibility"
},
{
"id": "754c7d061c2d0b71be37",
"user": "enjalot",
"createdAt": "2015-08-29T19:42:52Z",
"updatedAt": "2015-11-03T03:28:25Z",
"description": "slave voyages - embarking"
},
{
"id": "2d678d730b0791020711",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "a61e208c37ea177cf83a",
"user": "patricknelli",
"createdAt": "2015-11-15T22:48:16Z",
"updatedAt": "2015-11-15T23:09:47Z",
"description": "Civic Impact through Data Visualization: Exercise 1"
},
{
"id": "2753c53ae396bb92727a",
"user": "enjalot",
"createdAt": "2015-11-20T17:19:45Z",
"updatedAt": "2015-11-26T06:24:48Z",
"description": "custom ease"
},
{
"id": "5342063",
"user": "mbostock",
"createdAt": "2013-04-09T01:08:26Z",
"updatedAt": "2016-03-30T22:20:56Z",
"description": "Raster & Vector II"
},
{
"id": "360036a08c42226aa6a7",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "7c0fe907ba2010fed420",
"user": "enjalot",
"createdAt": "2015-11-19T19:11:56Z",
"updatedAt": "2015-11-19T19:14:14Z",
"description": "HTML Color Names"
},
{
"id": "b6e4ec3859b2f732dfc0",
"user": "nbremer",
"createdAt": "2015-11-16T09:48:16Z",
"updatedAt": "2015-11-16T17:26:21Z",
"description": "Circle Packing at its most Basic - Canvas & D3.js "
},
{
"id": "5480307",
"user": "metmajer",
"createdAt": "2013-04-29T08:12:04Z",
"updatedAt": "2016-02-27T11:49:22Z",
"description": "Zoomable Sunburst with Labels"
},
{
"id": "a29e820cb6d8f3a84249",
"user": "Jay-Oh-eN",
"createdAt": "2015-11-15T16:49:36Z",
"updatedAt": "2016-04-19T22:31:08Z",
"description": "SF Neighborhoods"
},
{
"id": "11383724",
"user": "LeeMendelowitz",
"createdAt": "2014-04-28T20:55:27Z",
"updatedAt": "2015-08-29T14:00:41Z",
"description": "D3 Dynamic Table with Nested Data"
},
{
"id": "c6a683d2005a9cc364f1",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "3e20a17f89fa235c2430",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "8a7f9bed9715c0eb678a",
"user": "maartenzam",
"createdAt": "2015-11-19T15:02:16Z",
"updatedAt": "2015-11-19T15:27:50Z",
"description": "Responsive CartoDB choropleth linked to strip plot"
},
{
"id": "1093130",
"user": "mbostock",
"createdAt": "2011-07-19T17:18:14Z",
"updatedAt": "2016-02-09T00:20:30Z",
"description": "Collapsible Force Layout"
},
{
"id": "7882658",
"user": "mbostock",
"createdAt": "2013-12-09T23:00:01Z",
"updatedAt": "2016-02-09T01:59:18Z",
"description": "Cluster Force Layout IV"
},
{
"id": "d1c32b2e77120f560061",
"user": "nitaku",
"createdAt": "2015-11-21T13:42:11Z",
"updatedAt": "2015-11-21T15:13:21Z",
"description": "Arc Diagram II"
},
{
"id": "22c3971eed37127f2ba8",
"user": "mbostock",
"createdAt": "2015-11-13T22:33:04Z",
"updatedAt": "2015-11-18T08:13:37Z",
"description": "Catmullโ€“Rom Curves"
},
{
"id": "00e6248efe5605c1fa5c",
"user": "jonsadka",
"createdAt": "2015-11-12T23:09:22Z",
"updatedAt": "2015-11-13T21:37:49Z",
"description": "Conversion rates"
},
{
"id": "66eee134d6fd3babb716",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "018e79e4b62e86dfd988",
"user": "altocumulus",
"createdAt": "2016-02-03T23:25:40Z",
"updatedAt": "2016-02-03T23:25:41Z",
"description": "Ruiz globe"
},
{
"id": "4208494",
"user": "christophermanning",
"createdAt": "2012-12-04T20:44:55Z",
"updatedAt": "2015-10-13T14:17:56Z",
"description": "Spherical Force-Directed Layout"
},
{
"id": "dd766c854e2b89a8a912",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "bbbefc9dbd553141649b",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "5c7bc79b4aee2b977c35",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "2920551",
"user": "donaldh",
"createdAt": "2012-06-12T22:36:24Z",
"updatedAt": "2015-11-24T06:10:47Z",
"description": "force-multi-foci with convex hulls"
},
{
"id": "00336c9eb59ee956426d",
"user": "newsummit",
"createdAt": "2016-01-01T00:41:11Z",
"updatedAt": "2016-01-21T04:56:01Z",
"description": "force-multi-foci with convex hulls"
},
{
"id": "11189414",
"user": "mbostock",
"createdAt": "2014-04-22T18:25:02Z",
"updatedAt": "2016-02-09T01:56:18Z",
"description": "Best-First Search"
},
{
"id": "a082d777233ff428faff",
"user": "xaranke",
"createdAt": "2015-11-22T14:03:25Z",
"updatedAt": "2015-11-22T14:03:25Z",
"description": "natality_mortality"
},
{
"id": "ea64575d70ecf3354874",
"user": "xaranke",
"createdAt": "2015-11-22T14:09:42Z",
"updatedAt": "2015-11-22T14:09:42Z",
"description": "income_categories"
},
{
"id": "b5df5023965f65719d7a",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "93297e55e7535dd833a1",
"user": "xaranke",
"createdAt": "2015-12-14T10:23:10Z",
"updatedAt": "2015-12-14T10:24:55Z",
"description": "538_RTs"
},
{
"id": "23b5bc37d39c9f9dd5e7",
"user": "xaranke",
"createdAt": "2015-12-14T10:25:27Z",
"updatedAt": "2015-12-14T10:26:14Z",
"description": "538_links"
},
{
"id": "7295691",
"user": "veltman",
"createdAt": "2013-11-03T22:38:28Z",
"updatedAt": "2015-12-27T08:19:14Z",
"description": "For creating an approval matrix/magic quadrant viz in d3."
},
{
"id": "10122633",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "5558084",
"user": "tjdecke",
"createdAt": "2013-05-10T23:01:58Z",
"updatedAt": "2016-03-23T13:57:39Z",
"description": "Day / Hour Heatmap"
},
{
"id": "8be32e6f1f32920ba841",
"user": "enjalot",
"createdAt": "2015-12-18T18:15:55Z",
"updatedAt": "2015-12-19T06:57:36Z",
"description": "aframe + d3 test"
},
{
"id": "b8ef4734abad1c644221",
"user": "Jay-Oh-eN",
"createdAt": "2015-11-15T16:45:57Z",
"updatedAt": "2016-04-26T21:58:06Z",
"description": "Linked Charts: Bubble Map with Line Chart"
},
{
"id": "1ca89dc69bcc18f3f4c0",
"user": "Jay-Oh-eN",
"createdAt": "2015-11-15T16:52:34Z",
"updatedAt": "2015-12-20T06:20:37Z",
"description": "Civic Impact through Data Visualization: Solution 1"
},
{
"id": "627c0784404415f79bb3",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "ea5c71c437ad60d05291",
"user": "kataquino",
"createdAt": "2015-12-09T00:59:44Z",
"updatedAt": "2015-12-09T00:59:44Z",
"description": "fresh block"
},
{
"id": "c60ea378a0060d3bf62f",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "1429426",
"user": "enjalot",
"createdAt": "2011-12-04T06:36:04Z",
"updatedAt": "2015-09-28T11:08:09Z",
"description": "simple transitions with d3.js"
},
{
"id": "a3ee04578325668bd3f8",
"user": "EE2dev",
"createdAt": "2015-10-14T17:24:55Z",
"updatedAt": "2015-11-09T15:04:58Z",
"description": "item explorer - demo"
},
{
"id": "5a4ab3ca8b3b7b57d234",
"user": "EE2dev",
"createdAt": "2015-10-12T20:08:21Z",
"updatedAt": "2015-11-06T22:58:21Z",
"description": "item explorer - data format - example 1"
},
{
"id": "0f7abbfc6ab01513d89a",
"user": "EE2dev",
"createdAt": "2015-10-12T20:11:58Z",
"updatedAt": "2015-11-06T22:57:56Z",
"description": "item explorer - data format - example 2"
},
{
"id": "d9ad0499316f09c598a3",
"user": "EE2dev",
"createdAt": "2015-10-12T20:20:23Z",
"updatedAt": "2015-11-06T22:57:27Z",
"description": "item explorer - data format - example 3"
},
{
"id": "2a7a31815153d26b39f6",
"user": "EE2dev",
"createdAt": "2015-10-12T20:28:44Z",
"updatedAt": "2015-11-06T22:56:58Z",
"description": "item explorer - data format - example 4"
},
{
"id": "69c42b901d0ed52d480a",
"user": "EE2dev",
"createdAt": "2015-10-12T20:31:52Z",
"updatedAt": "2015-11-06T22:56:34Z",
"description": "item explorer - data format - example 5"
},
{
"id": "3bb8a779948659a5b101",
"user": "EE2dev",
"createdAt": "2015-09-28T21:46:27Z",
"updatedAt": "2015-11-06T23:00:20Z",
"description": "item explorer - data source - example 1"
},
{
"id": "07bbe91f368e5ce0b180",
"user": "EE2dev",
"createdAt": "2015-10-01T22:03:28Z",
"updatedAt": "2015-11-16T22:01:00Z",
"description": "item explorer - data source - example 2"
},
{
"id": "a5e1b098533228613f28",
"user": "EE2dev",
"createdAt": "2015-10-05T22:40:32Z",
"updatedAt": "2015-11-06T22:59:19Z",
"description": "item explorer - data source - example 3"
},
{
"id": "de4a9e0010795ace76b8",
"user": "EE2dev",
"createdAt": "2015-10-05T22:43:15Z",
"updatedAt": "2015-11-06T22:58:53Z",
"description": "item explorer - data source - example 4"
},
{
"id": "131ad62a0ef5a8e6968b",
"user": "EE2dev",
"createdAt": "2015-10-14T17:34:14Z",
"updatedAt": "2015-11-06T22:54:48Z",
"description": "item explorer - visualization option 1"
},
{
"id": "753a89ecc73b07cdcf66",
"user": "curran",
"createdAt": "2015-12-08T05:29:46Z",
"updatedAt": "2015-12-08T19:45:06Z",
"description": "Tree Fractal with Circles"
},
{
"id": "c8ef9d67acc044b368ef",
"user": "emeeks",
"createdAt": "2014-12-28T00:57:36Z",
"updatedAt": "2016-03-17T02:16:29Z",
"description": "d3.layout.orbit modes"
},
{
"id": "bdc0474429e6567bc320",
"user": "weiglemc",
"createdAt": "2014-12-15T16:33:03Z",
"updatedAt": "2015-08-29T14:11:28Z",
"description": "D3 Scatterplot of 2014 NCAA Passing Statistics"
},
{
"id": "f6b8b9feb37fe51de3e7",
"user": "cyrilcherian",
"createdAt": "2015-12-05T08:25:24Z",
"updatedAt": "2015-12-08T08:41:03Z",
"description": "D3 Ranged Bar Chart"
},
{
"id": "45e34fda0a27c0ab8d3c",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "3e46da46186e1dc1a02e",
"user": "malcolm-decuire",
"createdAt": "2015-12-21T05:17:41Z",
"updatedAt": "2015-12-21T19:10:11Z",
"description": "Lobbying Spending 1998-2015"
},
{
"id": "f8e9ae0a4c101d978f84",
"user": "sxywu",
"createdAt": "2015-12-29T06:37:09Z",
"updatedAt": "2015-12-29T07:48:04Z",
"description": "Art in Pi, Experiment #1"
},
{
"id": "9fc66f76d0217475f2e4",
"user": "sxywu",
"createdAt": "2015-12-29T07:10:16Z",
"updatedAt": "2015-12-29T08:06:17Z",
"description": "Art in Pi, Experiment #2"
},
{
"id": "61a4bd0cfc373cf08884",
"user": "sxywu",
"createdAt": "2015-11-28T03:22:13Z",
"updatedAt": "2016-04-21T15:55:31Z",
"description": "The Force with React + D3, Approach #1"
},
{
"id": "1db896c1a38d89ae71b4",
"user": "sxywu",
"createdAt": "2015-11-30T06:44:41Z",
"updatedAt": "2016-04-21T15:57:10Z",
"description": "The Force with React + D3, Approach #2"
},
{
"id": "fcef0e6dac231ef2e54b",
"user": "sxywu",
"createdAt": "2015-12-01T06:39:01Z",
"updatedAt": "2016-04-21T16:00:24Z",
"description": "The Force with React + D3, Approach #3"
},
{
"id": "ecce8e32d64c662cffd5",
"user": "gordonwoodhull",
"createdAt": "2016-01-04T15:58:27Z",
"updatedAt": "2016-01-04T16:36:28Z",
"description": "dc.js example"
},
{
"id": "7e0c5768fd62de973de3",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "cdff7e8538477e7222b8",
"user": "sxywu",
"createdAt": "2016-01-04T04:39:50Z",
"updatedAt": "2016-02-16T10:14:18Z",
"description": "Animate SVG path on scroll"
},
{
"id": "d7071c6a5a7206701015",
"user": "nbremer",
"createdAt": "2016-01-24T18:01:57Z",
"updatedAt": "2016-02-07T00:11:39Z",
"description": "Spirograph drawer - Animating solid and dashed lines"
},
{
"id": "d8b15dd09a4c3510621c",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "f839966214cf66627df6",
"user": "treboresque",
"createdAt": "2015-05-21T21:01:54Z",
"updatedAt": "2015-08-29T14:21:39Z",
"description": "Dot in a Box"
},
{
"id": "4b66c0d9be9a0d56484e",
"user": "mbostock",
"createdAt": "2016-01-12T17:44:15Z",
"updatedAt": "2016-03-10T20:15:13Z",
"description": "Inline Labels"
},
{
"id": "6537398",
"user": "couchand",
"createdAt": "2013-09-12T13:33:50Z",
"updatedAt": "2016-01-20T20:36:40Z",
"description": "Adjustable ranges on color scale"
},
{
"id": "c1fe5650da3d6e790706",
"user": "boeric",
"createdAt": "2016-01-17T00:32:19Z",
"updatedAt": "2016-01-24T18:23:44Z",
"description": "Mass Shootings in the US"
},
{
"id": "c31c5eb3bf1c5a72bde9",
"user": "biovisualize",
"createdAt": "2016-01-12T14:59:57Z",
"updatedAt": "2016-01-12T14:59:57Z",
"description": "Histogram Equalization"
},
{
"id": "3878819",
"user": "phoebebright",
"createdAt": "2012-10-12T11:39:53Z",
"updatedAt": "2015-10-11T15:17:59Z",
"description": "Ireland Sporthorse Foal Registrations - in progress"
},
{
"id": "1238376",
"user": "biovisualize",
"createdAt": "2011-09-23T20:29:33Z",
"updatedAt": "2015-09-27T08:08:01Z",
"description": "External SVG"
},
{
"id": "99df29f258860e53c5e2",
"user": "micahstubbs",
"createdAt": "2016-01-10T07:14:18Z",
"updatedAt": "2016-04-02T07:18:55Z",
"description": "Sporthorse Foal Registrations II"
},
{
"id": "18cb7a77b2d9de597b86",
"user": "enjalot",
"createdAt": "2015-12-01T04:40:58Z",
"updatedAt": "2016-04-29T10:08:29Z",
"description": "dots on a map: setup"
},
{
"id": "35be5626a47110312c35",
"user": "monfera",
"createdAt": "2015-12-09T22:42:34Z",
"updatedAt": "2016-04-22T22:08:43Z",
"description": "Fluid configuration of d3.js bandlines with FRP"
},
{
"id": "a4679ee453aa9357977c",
"user": "eesur",
"createdAt": "2015-12-12T16:37:47Z",
"updatedAt": "2016-01-25T10:41:50Z",
"description": "d3 | Reusable slopegraph"
},
{
"id": "ee8d0ab88229d0e07f7f",
"user": "eesur",
"createdAt": "2015-12-18T16:10:28Z",
"updatedAt": "2016-02-25T21:09:07Z",
"description": "d3 | reusable slopegraph v2"
},
{
"id": "5fbda7f410d31da35e42",
"user": "eesur",
"createdAt": "2015-12-08T18:10:09Z",
"updatedAt": "2015-12-08T18:10:12Z",
"description": "d3 | reusable heatmap calendar"
},
{
"id": "b100d04bda697f95f246",
"user": "veltman",
"createdAt": "2015-12-04T21:07:21Z",
"updatedAt": "2015-12-13T03:27:30Z",
"description": "Gif rendering"
},
{
"id": "03edaa335f93b5a9ee57",
"user": "veltman",
"createdAt": "2015-12-06T17:28:20Z",
"updatedAt": "2015-12-08T17:34:51Z",
"description": "Gif rendering - globe"
},
{
"id": "65eda1df2b0dd2cf616f",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "3894205.",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "4583749",
"user": "mbostock",
"createdAt": "2013-01-21T05:10:25Z",
"updatedAt": "2016-02-09T02:09:00Z",
"description": "Polar Plot"
},
{
"id": "3887193",
"user": "mbostock",
"createdAt": "2012-10-14T03:46:39Z",
"updatedAt": "2016-02-09T01:40:48Z",
"description": "Donut Chart"
},
{
"id": "2de0e25d4840c68f2db1",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "295c8c90e6648cccd2d6",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "3231298",
"user": "mbostock",
"createdAt": "2012-08-01T22:33:52Z",
"updatedAt": "2016-02-09T01:29:43Z",
"description": "Collision Detection"
},
{
"id": "b84846a0511acfeaf925",
"user": "Jay-Oh-eN",
"createdAt": "2015-12-05T03:41:02Z",
"updatedAt": "2015-12-20T18:46:42Z",
"description": "A Rectangle of Circles"
},
{
"id": "33a9e350516da54a5d4f",
"user": "rkirsling",
"createdAt": "2014-10-25T02:24:28Z",
"updatedAt": "2015-12-19T21:37:13Z",
"description": "Trend Chart (Area + Line)"
},
{
"id": "10fd587b3b44d3e41352",
"user": "mastereuromedias",
"createdAt": "2015-11-17T13:34:52Z",
"updatedAt": "2015-11-17T15:53:41Z",
"description": "olympiades"
},
{
"id": "3d66eaf6306fe3b279e6",
"user": "geraldarthur",
"createdAt": "2016-01-30T01:50:54Z",
"updatedAt": "2016-01-30T04:48:36Z",
"description": "Random line drawing"
},
{
"id": "e52b02edb554747370c5",
"user": "geraldarthur",
"createdAt": "2016-01-30T03:31:52Z",
"updatedAt": "2016-01-30T04:49:20Z",
"description": "Random line drawing 2"
},
{
"id": "6bd2b990bea368bd6358",
"user": "geraldarthur",
"createdAt": "2016-01-30T03:32:19Z",
"updatedAt": "2016-01-30T04:49:17Z",
"description": "Random line drawing 3"
},
{
"id": "f61c0f8709272b533ea9",
"user": "mbostock",
"createdAt": "2015-06-06T04:24:43Z",
"updatedAt": "2016-02-09T01:50:43Z",
"description": "Cubehelix Interpolation"
},
{
"id": "37733179426ff69ec3df",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "408f41a4e4c721c5e1fb",
"user": "1wheel",
"createdAt": "2015-06-16T15:51:12Z",
"updatedAt": "2015-08-29T14:23:09Z",
"description": "Chord Links"
},
{
"id": "af9599e62c64d007adb2",
"user": "mastereuromedias",
"createdAt": "2015-11-17T15:44:23Z",
"updatedAt": "2015-12-08T21:56:20Z",
"description": "fresh block"
},
{
"id": "406eaed53e52bb148225",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "5f168b5c884b1f9c36a5",
"user": "KatiRG",
"createdAt": "2016-01-25T16:30:54Z",
"updatedAt": "2016-01-26T08:47:45Z",
"description": "d3js clickable stacked bar chart"
},
{
"id": "8325617",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "3885705",
"user": "mbostock",
"createdAt": "2012-10-13T18:40:20Z",
"updatedAt": "2016-02-09T01:40:18Z",
"description": "Sortable Bar Chart"
},
{
"id": "09faa76ec05adf199509",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "3601e88d5317ab2be0e8",
"user": "Wanagram",
"createdAt": "2016-02-04T15:24:46Z",
"updatedAt": "2016-02-04T15:24:46Z",
"description": "Bar Chart"
},
{
"id": "e3ed414c647f05828d58",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "4e2501f6c3b10565923b",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "7f825cca79f6ae4fdfba",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "58ef19f5c0555ef59d31",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "487ef139e7025406c4c1",
"user": "benduffin",
"createdAt": "2016-02-01T06:02:50Z",
"updatedAt": "2016-02-01T06:02:51Z",
"description": "Connected Particles III"
},
{
"id": "294eae4fec5e31d0390d",
"user": "benduffin",
"createdAt": "2016-02-01T06:43:33Z",
"updatedAt": "2016-02-01T06:43:33Z",
"description": "Connected Particles III"
},
{
"id": "1246403",
"user": "mbostock",
"createdAt": "2011-09-27T22:08:26Z",
"updatedAt": "2016-02-09T00:27:15Z",
"description": "Spinny Globe"
},
{
"id": "4506b5bf37fab13586f7",
"user": "benduffin",
"createdAt": "2016-01-29T06:36:18Z",
"updatedAt": "2016-01-29T06:36:19Z",
"description": "Focus+Context via Brushing"
},
{
"id": "ca5eb04b731b7676104a",
"user": "benduffin",
"createdAt": "2016-01-28T23:54:12Z",
"updatedAt": "2016-01-28T23:54:12Z",
"description": "Population Pyramid"
},
{
"id": "e8ea925f7c61b353f694",
"user": "benduffin",
"createdAt": "2016-01-29T01:33:10Z",
"updatedAt": "2016-01-29T01:33:10Z",
"description": "Population Pyramid"
},
{
"id": "47ec2268b4e1edfda9d7",
"user": "benduffin",
"createdAt": "2016-01-29T05:05:48Z",
"updatedAt": "2016-01-29T05:05:48Z",
"description": "Population Pyramid"
},
{
"id": "a3b5571be92a0513b2f9",
"user": "benduffin",
"createdAt": "2016-01-29T05:55:59Z",
"updatedAt": "2016-01-29T05:55:59Z",
"description": "Population Pyramid"
},
{
"id": "fa6292523b1680ecbb15",
"user": "khawkins98",
"createdAt": "2015-12-01T10:44:07Z",
"updatedAt": "2016-02-03T15:48:29Z",
"description": "Adaptive-content-model v0.2"
},
{
"id": "308aa0fb4aeb2771b6cc",
"user": "khawkins98",
"createdAt": "2015-12-01T10:38:25Z",
"updatedAt": "2015-12-01T10:44:04Z",
"description": "Adaptive-content-model V0.1"
},
{
"id": "f2afd0b8a8bacb4f24c8",
"user": "SkiWether",
"createdAt": "2015-08-06T21:36:23Z",
"updatedAt": "2015-08-29T14:26:48Z",
"description": "Chord diagram showing co-occurrences."
},
{
"id": "98fcc61f8b2ca6d45ef0",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "fe31fe34099bbb41e0a7",
"user": "cheneymb",
"createdAt": "2016-02-04T17:08:14Z",
"updatedAt": "2016-02-04T17:08:15Z",
"description": "Bar Chart"
},
{
"id": "abe29dedf795beb13555",
"user": "cheneymb",
"createdAt": "2016-02-04T14:51:07Z",
"updatedAt": "2016-02-04T14:51:07Z",
"description": "fresh block"
},
{
"id": "6b62ef1ddf6523b1f0fd",
"user": "mansfimx",
"createdAt": "2016-02-04T15:25:19Z",
"updatedAt": "2016-02-04T15:25:19Z",
"description": "Bar Chart"
},
{
"id": "e266096cad90266aa85e",
"user": "mansfimx",
"createdAt": "2016-02-04T15:48:14Z",
"updatedAt": "2016-02-04T15:48:14Z",
"description": "Bar Chart"
},
{
"id": "899105d0cbc479179a76",
"user": "mansfimx",
"createdAt": "2016-02-04T14:51:06Z",
"updatedAt": "2016-02-04T14:51:07Z",
"description": "fresh block"
},
{
"id": "5397710",
"user": "mbostock",
"createdAt": "2013-04-16T17:16:25Z",
"updatedAt": "2016-02-09T02:06:44Z",
"description": "Lorenz Toy"
},
{
"id": "df9af361ca4b8f34aec9",
"user": "lambrex",
"createdAt": "2016-02-04T16:06:01Z",
"updatedAt": "2016-02-04T16:26:32Z",
"description": "Bar Chart"
},
{
"id": "f641200424b306c4b724",
"user": "lambrex",
"createdAt": "2016-02-04T16:30:23Z",
"updatedAt": "2016-02-04T17:05:37Z",
"description": "Bar Chart"
},
{
"id": "389ae7509615d556e03c",
"user": "lambrex",
"createdAt": "2016-02-04T14:52:09Z",
"updatedAt": "2016-02-04T14:52:09Z",
"description": "fresh block"
},
{
"id": "171d2c3c8e9d39dd5d47",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "8d7bad2d954ee09ea347",
"user": "devssunil",
"createdAt": "2016-02-04T14:51:04Z",
"updatedAt": "2016-02-04T14:51:06Z",
"description": "fresh block"
},
{
"id": "d1f3811a4964d484017c",
"user": "devssunil",
"createdAt": "2016-02-04T14:51:53Z",
"updatedAt": "2016-03-15T14:54:15Z",
"description": "bahamas flag"
},
{
"id": "262b5344222f227dd9d3",
"user": "devssunil",
"createdAt": "2016-02-04T14:58:29Z",
"updatedAt": "2016-02-04T14:58:29Z",
"description": "fresh block"
},
{
"id": "f633095702b6f478cc12",
"user": "devssunil",
"createdAt": "2016-02-04T15:05:37Z",
"updatedAt": "2016-02-04T15:05:38Z",
"description": "fresh block"
},
{
"id": "f2e095a4f77bc51b6010",
"user": "devssunil",
"createdAt": "2016-02-04T15:06:17Z",
"updatedAt": "2016-02-04T15:06:18Z",
"description": "fresh block"
},
{
"id": "9e3f368898e5fca662f2",
"user": "grybnicky",
"createdAt": "2016-02-04T15:25:04Z",
"updatedAt": "2016-02-04T15:25:04Z",
"description": "Bar Chart"
},
{
"id": "2ed04b7552f1ef9f8e0c",
"user": "grybnicky",
"createdAt": "2016-02-04T15:48:07Z",
"updatedAt": "2016-02-04T15:48:08Z",
"description": ""
},
{
"id": "aa2b8867d2f13ead838b",
"user": "mcgovemc",
"createdAt": "2016-02-04T16:57:11Z",
"updatedAt": "2016-02-04T16:57:12Z",
"description": "Bar Chart"
},
{
"id": "c5d9a583437b19493ba3",
"user": "zaccagbj",
"createdAt": "2016-02-04T15:48:03Z",
"updatedAt": "2016-02-04T15:48:04Z",
"description": "Bar Chart"
},
{
"id": "a7ef0b8473773b3ccda1",
"user": "zaccagbj",
"createdAt": "2016-02-04T16:10:25Z",
"updatedAt": "2016-02-04T16:10:25Z",
"description": "Bar Chart"
},
{
"id": "a2db15a154b360c591c7",
"user": "zaccagbj",
"createdAt": "2016-02-04T16:57:32Z",
"updatedAt": "2016-02-04T16:57:32Z",
"description": "Bar Chart"
},
{
"id": "75878caf6912fe6bfe85",
"user": "zaccagbj",
"createdAt": "2016-02-04T17:12:05Z",
"updatedAt": "2016-02-04T17:12:05Z",
"description": "Bar Chart"
},
{
"id": "665966754147a52bf3c1",
"user": "zaccagbj",
"createdAt": "2016-02-04T14:51:14Z",
"updatedAt": "2016-02-04T14:51:16Z",
"description": "fresh block"
},
{
"id": "4082de18058c055efe84",
"user": "Smith5mr",
"createdAt": "2016-02-04T16:54:08Z",
"updatedAt": "2016-02-04T16:54:09Z",
"description": "Bar Chart"
},
{
"id": "1733c62207e0bf614f06",
"user": "Smith5mr",
"createdAt": "2016-02-04T15:48:08Z",
"updatedAt": "2016-02-04T15:48:08Z",
"description": "Bar Chart"
},
{
"id": "f37b07b92633781a46f7",
"user": "mbostock",
"createdAt": "2015-12-29T23:30:50Z",
"updatedAt": "2016-02-09T01:47:55Z",
"description": "Arc Padding II"
},
{
"id": "9b16c3815f461d8c0817",
"user": "Smith5mr",
"createdAt": "2016-02-04T15:23:46Z",
"updatedAt": "2016-02-04T15:23:47Z",
"description": "Arc Padding II"
},
{
"id": "c32d1c61d0d09dcda690",
"user": "Smith5mr",
"createdAt": "2016-02-04T14:52:34Z",
"updatedAt": "2016-02-04T14:52:35Z",
"description": "fresh block"
},
{
"id": "38cd48fe454b017122aa",
"user": "Smith5mr",
"createdAt": "2016-02-04T14:53:04Z",
"updatedAt": "2016-02-04T14:53:05Z",
"description": "fresh block"
},
{
"id": "3ef8e84b6a3482c9efa9",
"user": "Smith5mr",
"createdAt": "2016-02-04T15:11:06Z",
"updatedAt": "2016-02-04T15:11:06Z",
"description": "fresh block"
},
{
"id": "33a6d86c5036e61549b5",
"user": "AdamBlaine1",
"createdAt": "2016-02-04T15:25:05Z",
"updatedAt": "2016-02-04T15:25:06Z",
"description": "Bar Chart"
},
{
"id": "eca6a6ab132db0eb3278",
"user": "AdamBlaine1",
"createdAt": "2016-02-04T16:16:25Z",
"updatedAt": "2016-02-04T16:16:26Z",
"description": "Bar Chart"
},
{
"id": "c23d14a90a18c0ba9498",
"user": "AdamBlaine1",
"createdAt": "2016-02-04T17:05:56Z",
"updatedAt": "2016-02-04T17:05:56Z",
"description": "Bar Chart"
},
{
"id": "5cebc9137ffcd6271071",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "59ad8df8112637667982",
"user": "thoma2nm",
"createdAt": "2016-02-04T15:49:29Z",
"updatedAt": "2016-02-04T16:01:47Z",
"description": "Bar Chart"
},
{
"id": "167a4693962ae6538c1d",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "9015514d835771cb033f",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "0a4fc38df5249e1614a1",
"user": "dunlapea",
"createdAt": "2016-02-04T15:27:12Z",
"updatedAt": "2016-02-04T15:48:08Z",
"description": "Bar Chart"
},
{
"id": "b6579c6470a388468908",
"user": "dunlapea",
"createdAt": "2016-02-04T14:51:08Z",
"updatedAt": "2016-02-04T14:51:08Z",
"description": "fresh block"
},
{
"id": "8ed968fc7b4ccb04630c",
"user": "diepvf",
"createdAt": "2016-02-04T15:48:05Z",
"updatedAt": "2016-02-04T15:48:07Z",
"description": "Bar Chart"
},
{
"id": "5155181",
"user": "d3noob",
"createdAt": "2013-03-13T19:15:40Z",
"updatedAt": "2015-12-14T21:59:20Z",
"description": "Directional Force Layout Diagram with varying link opacity"
},
{
"id": "18c2975af798328a528f",
"user": "BDAguila",
"createdAt": "2016-02-04T15:24:31Z",
"updatedAt": "2016-02-04T15:24:32Z",
"description": "Bar Chart"
},
{
"id": "01deb69af82797bd8738",
"user": "BDAguila",
"createdAt": "2016-02-04T15:48:03Z",
"updatedAt": "2016-02-04T15:48:03Z",
"description": "Bar Chart"
},
{
"id": "1021841",
"user": "mbostock",
"createdAt": "2011-06-12T18:21:04Z",
"updatedAt": "2016-02-09T00:15:08Z",
"description": "Multi-Foci Force Layout"
},
{
"id": "9910343",
"user": "eesur",
"createdAt": "2014-04-01T08:44:34Z",
"updatedAt": "2015-08-29T13:57:58Z",
"description": "Input field dynamic text with D3"
},
{
"id": "097db9b7cc475d786ae0",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "5fa0aa2e319869321560",
"user": "GitNoise",
"createdAt": "2016-01-07T11:27:31Z",
"updatedAt": "2016-01-12T20:53:39Z",
"description": "Circular hours per week"
},
{
"id": "db57b9e8546b4b83a405",
"user": "micahstubbs",
"createdAt": "2015-12-07T02:46:04Z",
"updatedAt": "2016-03-12T22:35:21Z",
"description": "Correlation Matrix VI"
},
{
"id": "66474fc2225415d1ebd3",
"user": "micahstubbs",
"createdAt": "2015-12-07T01:48:13Z",
"updatedAt": "2016-03-12T22:38:04Z",
"description": "Correlation Matrix IV"
},
{
"id": "ea0a8c361ba849711628",
"user": "micahstubbs",
"createdAt": "2015-12-07T02:18:04Z",
"updatedAt": "2016-03-12T22:36:26Z",
"description": "Correlation Matrix V"
},
{
"id": "4f068e1a8833a7d2f2fb",
"user": "micahstubbs",
"createdAt": "2015-12-07T02:13:06Z",
"updatedAt": "2016-03-12T22:37:03Z",
"description": "tiny hexbin plot"
},
{
"id": "3f6e737fd8e50f6cbda2",
"user": "micahstubbs",
"createdAt": "2015-12-07T01:21:26Z",
"updatedAt": "2016-03-12T22:41:21Z",
"description": "Correlation Matrix III"
},
{
"id": "42b1361b49ed2cc4e0ae",
"user": "micahstubbs",
"createdAt": "2015-12-07T00:30:52Z",
"updatedAt": "2016-03-12T22:41:00Z",
"description": "Correlation Matrix II"
},
{
"id": "3ef5a223bdb760a228b4",
"user": "micahstubbs",
"createdAt": "2015-11-07T18:36:34Z",
"updatedAt": "2016-03-12T22:44:39Z",
"description": "Correlation Matrix I"
},
{
"id": "26c887df79dc869059ba",
"user": "micahstubbs",
"createdAt": "2015-11-29T06:32:08Z",
"updatedAt": "2015-11-29T06:58:18Z",
"description": "Blocks Graph II Voronoi Sun"
},
{
"id": "8a173cfcb9171627c7f1",
"user": "micahstubbs",
"createdAt": "2015-11-23T06:33:22Z",
"updatedAt": "2015-11-29T07:02:13Z",
"description": "Blocks Graph I Readme Mentions"
},
{
"id": "6420534",
"user": "couchand",
"createdAt": "2013-09-03T07:04:04Z",
"updatedAt": "2015-12-22T04:58:56Z",
"description": "Better force layout node selection"
},
{
"id": "1747543",
"user": "mbostock",
"createdAt": "2012-02-05T19:24:46Z",
"updatedAt": "2016-04-19T03:45:21Z",
"description": "Clustered Force Layout I"
},
{
"id": "0cfe97cda6ed02d49591",
"user": "stelt",
"createdAt": "2016-01-15T15:55:14Z",
"updatedAt": "2016-01-18T02:45:42Z",
"description": "morph a composite path"
},
{
"id": "b1cd9a8ae8f2f9d67ea9",
"user": "stelt",
"createdAt": "2016-01-25T11:21:26Z",
"updatedAt": "2016-01-25T11:21:26Z",
"description": "morph a composite path"
},
{
"id": "54b9cbf32c11c1871b87",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "4b86c29e1669b75653de",
"user": "mostaphaRoudsari",
"createdAt": "2015-12-30T22:45:22Z",
"updatedAt": "2015-12-31T15:55:22Z",
"description": "Reusable Area Chart: Ladybug group interactions"
},
{
"id": "10586116",
"user": "eyaler",
"createdAt": "2014-04-13T14:21:19Z",
"updatedAt": "2016-04-18T13:53:01Z",
"description": "Force-Directed Graph with Drag/Zoom/Pan/Center/Resize/Labels/Shapes/Filter/Highlight"
},
{
"id": "4969184",
"user": "tmcw",
"createdAt": "2013-02-16T23:25:16Z",
"updatedAt": "2015-12-13T20:18:56Z",
"description": "Jenks Natural Breaks with simple-statistics and d3"
},
{
"id": "d72dcf74fca2446396a1",
"user": "darioreal",
"createdAt": "2016-01-27T16:45:45Z",
"updatedAt": "2016-02-03T21:29:54Z",
"description": "Eixos dinรกmicos e valores aleatorios"
},
{
"id": "5e5ce9beee483220e2f6",
"user": "brattonc",
"createdAt": "2015-03-09T15:52:44Z",
"updatedAt": "2016-04-30T09:15:43Z",
"description": "D3 Liquid Fill Gauge"
},
{
"id": "60a1ba782ce09cf2091e",
"user": "curran",
"createdAt": "2015-12-16T03:07:12Z",
"updatedAt": "2015-12-17T19:18:28Z",
"description": "Useless Vis"
},
{
"id": "6567fb027971588bc779",
"user": "curran",
"createdAt": "2015-11-23T23:17:59Z",
"updatedAt": "2015-11-24T01:09:57Z",
"description": "Invitations Links Map"
},
{
"id": "55d327542393530662c3",
"user": "curran",
"createdAt": "2015-12-19T03:10:00Z",
"updatedAt": "2016-01-21T01:47:25Z",
"description": "Country Centroids on a Map"
},
{
"id": "57f8446c1e940e3f47a5",
"user": "Kcnarf",
"createdAt": "2016-01-11T13:56:13Z",
"updatedAt": "2016-02-05T12:46:57Z",
"description": "timeline - trend, confidence interval, outliers"
},
{
"id": "60722ff9cf7d27418ca9",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "9011649d262c27c6774b",
"user": "trinary",
"createdAt": "2015-08-31T17:39:45Z",
"updatedAt": "2016-04-21T04:34:41Z",
"description": "collatz conjecture"
},
{
"id": "21dd49a90c55348484f3",
"user": "enjalot",
"createdAt": "2016-02-05T02:45:53Z",
"updatedAt": "2016-02-23T18:36:52Z",
"description": "dance"
},
{
"id": "493752a357ae6d476a5d",
"user": "bmershon",
"createdAt": "2016-01-15T00:03:26Z",
"updatedAt": "2016-01-15T04:24:51Z",
"description": "Dutch Flag Problem"
},
{
"id": "c4a8380f6b3a5ae6668d",
"user": "bmershon",
"createdAt": "2016-01-03T04:50:04Z",
"updatedAt": "2016-01-03T04:56:47Z",
"description": "Shellsort"
},
{
"id": "1582075",
"user": "mbostock",
"createdAt": "2012-01-09T09:03:26Z",
"updatedAt": "2016-02-09T01:02:47Z",
"description": "Quicksort"
},
{
"id": "4360892",
"user": "mbostock",
"createdAt": "2012-12-22T20:23:16Z",
"updatedAt": "2016-02-09T02:11:45Z",
"description": "U.S. Airports Voronoi"
},
{
"id": "a0d2efed63aeefce5cb0",
"user": "SpaceActuary",
"createdAt": "2015-11-28T15:38:00Z",
"updatedAt": "2015-11-28T22:14:44Z",
"description": "Distributions"
},
{
"id": "41b50ea8bb206e44fec2",
"user": "SpaceActuary",
"createdAt": "2015-11-29T03:06:42Z",
"updatedAt": "2015-12-14T15:25:38Z",
"description": "Non-negative Distributions"
},
{
"id": "a003bf90d75a54c7ccb6",
"user": "bletcher",
"createdAt": "2016-02-03T19:14:25Z",
"updatedAt": "2016-02-03T19:14:25Z",
"description": "d3FishMove"
},
{
"id": "b3f5eb034f440cfb6809",
"user": "bletcher",
"createdAt": "2016-02-03T19:22:49Z",
"updatedAt": "2016-02-03T19:22:49Z",
"description": "d3FishMove"
},
{
"id": "4d62de0846a2554b113b",
"user": "boeric",
"createdAt": "2015-11-23T06:52:41Z",
"updatedAt": "2016-01-25T01:47:27Z",
"description": "Driver License Suspensions II"
},
{
"id": "f6ddea14600dc5093506",
"user": "boeric",
"createdAt": "2016-02-01T03:55:25Z",
"updatedAt": "2016-04-13T03:16:01Z",
"description": "Mapbox GL Synced Dual Maps"
},
{
"id": "2dca5c7c84eb5d3c72a8",
"user": "boeric",
"createdAt": "2015-11-16T04:39:57Z",
"updatedAt": "2015-11-23T17:34:07Z",
"description": "Driver License Suspensions"
},
{
"id": "35d0609027c959f7e09c",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "8203750",
"user": "christophermanning",
"createdAt": "2014-01-01T00:44:31Z",
"updatedAt": "2016-01-01T21:29:08Z",
"description": "Random Walk USA"
},
{
"id": "0d95074b6d83a77dc3ad",
"user": "bricedev",
"createdAt": "2015-05-07T13:07:39Z",
"updatedAt": "2016-03-24T15:48:25Z",
"description": "Grouped bar chart"
},
{
"id": "76739ae4271e8c111d2e",
"user": "syntagmatic",
"createdAt": "2014-12-18T04:03:42Z",
"updatedAt": "2015-08-29T14:11:39Z",
"description": "Image Gallery"
},
{
"id": "e532e44f1b6edea60ab3",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "7ad3724778ccd896203b",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "5114e2dfdc24143cbd77",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "0b4b038fd4dd3a046168",
"user": "monfera",
"createdAt": "2015-10-24T08:11:02Z",
"updatedAt": "2016-02-16T16:09:14Z",
"description": "Stephen Few's Student Dashboard with d3.js"
},
{
"id": "ddc9632a718e306b6e71",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "3f0e150ff6a86838f810",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "f56bb7f0e3c73358b752",
"user": "thomasvbrown",
"createdAt": "2016-01-20T21:19:47Z",
"updatedAt": "2016-01-20T21:19:48Z",
"description": "Stephen Few's Student Dashboard with d3.js"
},
{
"id": "4c5fad723c87d2fd8273",
"user": "mbostock",
"createdAt": "2016-01-21T00:21:23Z",
"updatedAt": "2016-02-26T18:06:04Z",
"description": "Sized Donut Multiples"
},
{
"id": "9c5e51b7ecc472f08562",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "dc46be50fae1cd49ad54",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "9821217",
"user": "mbostock",
"createdAt": "2014-03-27T23:11:55Z",
"updatedAt": "2016-02-09T01:57:23Z",
"description": "State Icons"
},
{
"id": "9490313",
"user": "mbostock",
"createdAt": "2014-03-11T17:08:20Z",
"updatedAt": "2016-02-09T01:58:15Z",
"description": "Small Multiples II"
},
{
"id": "6284affc05bdeb7dfc9e",
"user": "curran",
"createdAt": "2015-09-15T02:30:22Z",
"updatedAt": "2015-09-16T19:20:29Z",
"description": "Mortality"
},
{
"id": "4339607",
"user": "mbostock",
"createdAt": "2012-12-19T19:16:50Z",
"updatedAt": "2016-02-29T13:44:53Z",
"description": "Cluster Dendrogram"
},
{
"id": "f3708ba3311007a9b4a6",
"user": "sivartravis",
"createdAt": "2016-02-02T17:36:53Z",
"updatedAt": "2016-02-02T17:36:54Z",
"description": "Multi-Line Voronoi"
},
{
"id": "1305337",
"user": "mbostock",
"createdAt": "2011-10-22T00:28:17Z",
"updatedAt": "2016-02-09T00:39:30Z",
"description": "Pie Multiples with Nesting"
},
{
"id": "1134768",
"user": "mbostock",
"createdAt": "2011-08-09T18:16:43Z",
"updatedAt": "2016-02-09T00:23:35Z",
"description": "Stacked Bar Chart"
},
{
"id": "8695353",
"user": "andrewxhill",
"createdAt": "2014-01-29T19:39:34Z",
"updatedAt": "2015-08-29T13:55:48Z",
"description": "Clustering using snaptogrid"
},
{
"id": "a74faf20b492ad377312",
"user": "NPashaP",
"createdAt": "2014-05-10T17:56:43Z",
"updatedAt": "2016-02-09T01:27:37Z",
"description": "US State Map"
},
{
"id": "11214484",
"user": "dougdowson",
"createdAt": "2014-04-23T13:05:06Z",
"updatedAt": "2015-08-29T14:00:23Z",
"description": "Map: Cell Towers"
},
{
"id": "9f2151b01d6e289295f1",
"user": "micahstubbs",
"createdAt": "2015-04-21T00:39:52Z",
"updatedAt": "2016-03-12T23:01:19Z",
"description": "Threatened Species"
},
{
"id": "8ae3fd45fca0f18372d4",
"user": "nitaku",
"createdAt": "2015-06-13T16:08:26Z",
"updatedAt": "2015-08-29T14:23:02Z",
"description": "Half matrix II"
},
{
"id": "abc8c7bc645e002c9c2d",
"user": "nivas8292",
"createdAt": "2015-06-10T02:28:08Z",
"updatedAt": "2015-08-29T14:22:49Z",
"description": "Weather App - Line / Bar Graph with Custom Tooltip"
},
{
"id": "2913a5bf30c340d8f8fe",
"user": "jeremycflin",
"createdAt": "2015-10-12T22:45:20Z",
"updatedAt": "2015-10-12T22:45:33Z",
"description": "Google Map + D3 Example"
},
{
"id": "890c4a214e48bedc8755",
"user": "jieqianzhang",
"createdAt": "2015-10-13T17:50:34Z",
"updatedAt": "2016-03-19T02:41:23Z",
"description": "Horserace tool"
},
{
"id": "224ec8403aa16da1937e",
"user": "wboykinm",
"createdAt": "2015-08-18T00:54:29Z",
"updatedAt": "2015-08-29T14:27:36Z",
"description": "Choropleth"
},
{
"id": "b30c605d6c1b430a6556",
"user": "AlexanderPhysics",
"createdAt": "2015-12-10T00:52:21Z",
"updatedAt": "2015-12-10T22:57:39Z",
"description": "Eclipse"
},
{
"id": "32f486e8db181acf6281",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "f071774f55de3179be72",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "d56741378cba3d21f7ec",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "469d0de345aca1472012",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "5bfeda3a6fe85b0b0abe",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "162e96df868aa79167ac",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "6783e81b15f3205e9ff2",
"user": "lindep",
"createdAt": "2016-02-03T20:42:52Z",
"updatedAt": "2016-02-03T20:42:52Z",
"description": "arc with datum"
},
{
"id": "a08238e470248f7fbcff",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "8fa81af9fb124d9f4cb3",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "f8c28925531e78f81c4f",
"user": "lindep",
"createdAt": "2015-10-06T00:02:17Z",
"updatedAt": "2016-02-25T05:22:33Z",
"description": "arc"
},
{
"id": "542e6e08a2a9f7c2ebac",
"user": "Jay-Oh-eN",
"createdAt": "2015-12-10T00:05:00Z",
"updatedAt": "2015-12-10T00:09:45Z",
"description": "Udacity Data Visualization: World Cup Attendance (scatter)"
},
{
"id": "2f2183747543c804b8ca",
"user": "Jay-Oh-eN",
"createdAt": "2015-12-10T00:07:34Z",
"updatedAt": "2015-12-10T00:08:40Z",
"description": "Udacity Data Visualization: World Cup Attendance (line)"
},
{
"id": "9d62b7a2c4335a0fd1e6",
"user": "Jay-Oh-eN",
"createdAt": "2015-12-10T00:14:07Z",
"updatedAt": "2015-12-10T00:49:31Z",
"description": "Udacity Data Visualization: World Cup Attendance (D3.js)"
},
{
"id": "f25a996484a0588cb8c2",
"user": "Jay-Oh-eN",
"createdAt": "2015-12-10T00:49:34Z",
"updatedAt": "2015-12-10T01:03:05Z",
"description": "Udacity Data Visualization: World Cup Attendance Annotated"
},
{
"id": "3969722",
"user": "mbostock",
"createdAt": "2012-10-28T20:10:13Z",
"updatedAt": "2016-02-09T01:43:05Z",
"description": "Gradient Encoding"
},
{
"id": "9154d57067918cdb4cf5",
"user": "Jay-Oh-eN",
"createdAt": "2015-12-07T20:00:27Z",
"updatedAt": "2015-12-20T18:48:57Z",
"description": "1-D Random Walk (points)"
},
{
"id": "1440766",
"user": "mbostock",
"createdAt": "2011-12-07T00:21:54Z",
"updatedAt": "2016-04-19T18:07:05Z",
"description": "selection.order"
},
{
"id": "8ad986db8b3f5cc82e69",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "744228c927ee95871559",
"user": "etpinard",
"createdAt": "2016-01-21T15:38:00Z",
"updatedAt": "2016-02-08T20:41:12Z",
"description": "trace struct flattener"
},
{
"id": "810749b7dbcf0eca1e4e",
"user": "jonsadka",
"createdAt": "2015-12-17T02:16:35Z",
"updatedAt": "2015-12-17T21:20:21Z",
"description": "Lever Love (Hire2)"
},
{
"id": "a7628dd96c62155068dd",
"user": "tarekrached",
"createdAt": "2015-10-14T05:37:42Z",
"updatedAt": "2015-10-14T05:37:43Z",
"description": "Orbital Layout of D3.js API"
},
{
"id": "1b224e8f5fd1ebe0fecd",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "afd0dc7465cd556719c4",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "23eaa22f601f53497e06",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "a2e0ba749c5743b36fbe",
"user": "tomgp",
"createdAt": "2014-06-27T16:56:38Z",
"updatedAt": "2015-10-21T08:13:54Z",
"description": "evenly distribute points on a circle"
},
{
"id": "c51ad3494346b26c656e",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "892d23b36c56050dc3ce",
"user": "meysamabl",
"createdAt": "2016-02-01T03:07:41Z",
"updatedAt": "2016-02-01T15:15:20Z",
"description": "VI2"
},
{
"id": "a949c2c7876b19723bfa",
"user": "meysamabl",
"createdAt": "2016-01-23T19:53:08Z",
"updatedAt": "2016-01-24T16:41:55Z",
"description": "infoVis-Meysam"
},
{
"id": "341ed17c343e2520bde6",
"user": "zeffii",
"createdAt": "2016-02-02T10:07:27Z",
"updatedAt": "2016-02-02T10:07:28Z",
"description": "Glucose over time + food hints"
},
{
"id": "04a00e72a27edafa5ab8",
"user": "zeffii",
"createdAt": "2016-02-02T10:12:27Z",
"updatedAt": "2016-02-02T10:12:27Z",
"description": "Glucose over time + food hints"
},
{
"id": "3c280b21451e269ba759",
"user": "zeffii",
"createdAt": "2016-02-02T10:22:22Z",
"updatedAt": "2016-02-02T10:22:22Z",
"description": "Glucose over time + food hints"
},
{
"id": "06972c1773b30ccdb2d8",
"user": "zeffii",
"createdAt": "2016-02-02T10:25:38Z",
"updatedAt": "2016-02-02T10:25:38Z",
"description": "Glucose over time + food hints"
},
{
"id": "4c45db68b16ff90254de",
"user": "zeffii",
"createdAt": "2016-02-02T10:30:46Z",
"updatedAt": "2016-02-02T10:30:47Z",
"description": "Glucose over time + food hints"
},
{
"id": "77428cb3e0875e9683d9",
"user": "zeffii",
"createdAt": "2016-02-02T10:55:06Z",
"updatedAt": "2016-02-02T10:55:07Z",
"description": "Glucose over time + food hints"
},
{
"id": "4dbe405dc614fd08ad77",
"user": "zeffii",
"createdAt": "2016-02-02T11:03:34Z",
"updatedAt": "2016-02-02T11:03:35Z",
"description": "Glucose over time + food hints"
},
{
"id": "b3dbd57c3ec465a3d925",
"user": "zeffii",
"createdAt": "2016-02-02T14:18:13Z",
"updatedAt": "2016-02-02T14:18:13Z",
"description": "Glucose over time + food hints"
},
{
"id": "5df8dd084a93ad878cfc",
"user": "zeffii",
"createdAt": "2016-02-02T14:23:22Z",
"updatedAt": "2016-02-02T14:23:22Z",
"description": "Glucose over time + food hints"
},
{
"id": "bb56b979c5a6117b334b",
"user": "zeffii",
"createdAt": "2016-02-02T14:28:18Z",
"updatedAt": "2016-02-02T14:28:18Z",
"description": "Glucose over time + food hints"
},
{
"id": "b887532acfb8b001940d",
"user": "zeffii",
"createdAt": "2016-02-02T14:32:14Z",
"updatedAt": "2016-02-03T09:05:28Z",
"description": "Glucose over time + food hints mod"
},
{
"id": "1a4db4bd87aee1626ab3",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "e1cb7e30295e24b100f3",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "3020dc32be701d456dd1",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "664aba02b100fe57011e",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "654c87974c82f3bb8c46",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "fce7f70752c1282b5abe",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "613cd391ba7e9a3a4042",
"user": "emeeks",
"createdAt": "2015-12-08T18:40:13Z",
"updatedAt": "2015-12-14T20:19:46Z",
"description": "Graduated Symbol and Color Hexbin"
},
{
"id": "aaa995cde6621745e906",
"user": "emeeks",
"createdAt": "2015-12-03T04:17:00Z",
"updatedAt": "2016-03-08T01:42:07Z",
"description": "d3_glyphEdge"
},
{
"id": "f73384946e17e4b1b46a",
"user": "ChristosT",
"createdAt": "2016-02-07T22:47:20Z",
"updatedAt": "2016-02-10T01:15:51Z",
"description": " CS 725 Information Visualization - VI3"
},
{
"id": "52239ed074878b9a60ca",
"user": "ChristosT",
"createdAt": "2016-02-01T02:54:09Z",
"updatedAt": "2016-02-03T00:52:03Z",
"description": " CS 725 Information Visualization - VI2"
},
{
"id": "2f93011f91b398b936be",
"user": "ChristosT",
"createdAt": "2016-01-23T04:17:55Z",
"updatedAt": "2016-01-31T16:59:04Z",
"description": " CS 725 Information Visualization - VI1"
},
{
"id": "39d0395522fb4882de38",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "5628479",
"user": "mbostock",
"createdAt": "2013-05-22T15:27:30Z",
"updatedAt": "2016-02-09T02:05:08Z",
"description": "Tissotโ€™s Indicatrix"
},
{
"id": "9499896",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "2481e1f3b1d92002317e",
"user": "Fil",
"createdAt": "2015-12-28T15:06:25Z",
"updatedAt": "2016-01-05T08:35:38Z",
"description": "UN Votes - Session 70"
},
{
"id": "a9e99b949d0d9b1e6b85",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "c5e83b964f5cf7c5edda",
"user": "alandunning",
"createdAt": "2016-01-19T19:58:32Z",
"updatedAt": "2016-04-20T13:54:27Z",
"description": "fresh block new"
},
{
"id": "c0da0fb4a6c9e4c393de",
"user": "alandunning",
"createdAt": "2016-01-30T02:15:32Z",
"updatedAt": "2016-01-30T02:15:32Z",
"description": "fresh block"
},
{
"id": "4c25585f4c25a86dfe94",
"user": "stelt",
"createdAt": "2016-02-04T00:49:06Z",
"updatedAt": "2016-02-09T20:09:28Z",
"description": "grouped bar experimenting"
},
{
"id": "113f7fea0751fa1513e1",
"user": "NPashaP",
"createdAt": "2014-06-28T20:02:05Z",
"updatedAt": "2015-08-29T14:03:10Z",
"description": "Stacked Density and Quantile Graphs"
},
{
"id": "4df29e2f8c6e20ed2baf",
"user": "curran",
"createdAt": "2015-05-07T00:48:39Z",
"updatedAt": "2016-01-26T19:32:58Z",
"description": "Religions Bar Chart"
},
{
"id": "f1d48313521289e52d71",
"user": "curran",
"createdAt": "2015-11-20T21:10:01Z",
"updatedAt": "2015-11-20T21:13:48Z",
"description": "Circle Area Chart"
},
{
"id": "b1014a71757ce72444e1",
"user": "curran",
"createdAt": "2015-12-01T00:39:12Z",
"updatedAt": "2016-01-20T01:14:18Z",
"description": "Multi-Line Chart of Largest Countries"
},
{
"id": "34784700eb8fb594f17f",
"user": "curran",
"createdAt": "2015-12-04T01:08:01Z",
"updatedAt": "2015-12-04T01:12:42Z",
"description": "World Population Area Chart"
},
{
"id": "9eea6a43904b1a158e92",
"user": "curran",
"createdAt": "2015-12-04T01:13:23Z",
"updatedAt": "2015-12-04T01:33:57Z",
"description": "Stacked Area Chart"
},
{
"id": "09bc0b1f7512757ad152",
"user": "curran",
"createdAt": "2016-01-22T00:55:47Z",
"updatedAt": "2016-01-22T00:55:47Z",
"description": "Stacked Area Chart"
},
{
"id": "fc8fc8b61cb04b6522ac",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "38845ef1d0c11b40dfd8",
"user": "curran",
"createdAt": "2015-12-17T03:07:15Z",
"updatedAt": "2015-12-19T03:39:44Z",
"description": "Sortable Slices"
},
{
"id": "4060954",
"user": "mbostock",
"createdAt": "2012-11-12T18:17:36Z",
"updatedAt": "2016-03-03T00:29:06Z",
"description": "Streamgraph"
},
{
"id": "8838736cfa6f3f960e2c",
"user": "curran",
"createdAt": "2015-12-14T02:57:23Z",
"updatedAt": "2015-12-15T01:22:29Z",
"description": "Crime by Race Dataset"
},
{
"id": "851f506aac452bf962d3",
"user": "curran",
"createdAt": "2015-12-15T00:32:25Z",
"updatedAt": "2015-12-15T01:34:07Z",
"description": "Crime by Race Dataset (Normalized)"
},
{
"id": "430efaf8f592d018bd3e",
"user": "curran",
"createdAt": "2015-12-14T01:40:43Z",
"updatedAt": "2015-12-14T02:42:37Z",
"description": "Mother Jones Gun Violence Dataset"
},
{
"id": "a08a1080b88344b0c8a7",
"user": "curran",
"createdAt": "2015-11-21T02:46:06Z",
"updatedAt": "2015-12-07T15:01:01Z",
"description": "The Iris Dataset"
},
{
"id": "014b461f460cf8fa3b77",
"user": "curran",
"createdAt": "2015-12-08T04:02:38Z",
"updatedAt": "2015-12-08T23:10:43Z",
"description": "Iris Dataset Scatter Plot"
},
{
"id": "9938078a93a4ba380a0e",
"user": "curran",
"createdAt": "2015-12-08T19:22:17Z",
"updatedAt": "2015-12-09T22:29:05Z",
"description": "Interactive Scatter Plot"
},
{
"id": "46050d18d5ec1ab401fa",
"user": "curran",
"createdAt": "2015-12-06T20:49:21Z",
"updatedAt": "2015-12-08T14:28:53Z",
"description": "Chiasm-Charts v0.1.0"
},
{
"id": "d8bcc4b130df420d6c40",
"user": "mbostock",
"createdAt": "2015-12-01T04:57:40Z",
"updatedAt": "2016-04-29T14:04:34Z",
"description": "Time of Day"
},
{
"id": "3883195",
"user": "mbostock",
"createdAt": "2012-10-13T04:14:58Z",
"updatedAt": "2016-02-22T18:46:58Z",
"description": "Area Chart"
},
{
"id": "e05c76ab9450cbc214ac",
"user": "curran",
"createdAt": "2015-11-30T18:55:22Z",
"updatedAt": "2016-01-22T00:19:42Z",
"description": "World Population Line Chart"
},
{
"id": "890f8475dfe06710ee62",
"user": "curran",
"createdAt": "2015-12-02T00:45:17Z",
"updatedAt": "2015-12-02T22:25:45Z",
"description": "Loess with science.js"
},
{
"id": "e6735ef114f6bc37bebb",
"user": "Sokrates86",
"createdAt": "2016-01-26T16:13:33Z",
"updatedAt": "2016-01-26T22:08:58Z",
"description": "Postin tyรถntekijรคt"
},
{
"id": "1297670a35e6e0841636",
"user": "Sokrates86",
"createdAt": "2016-01-12T17:08:28Z",
"updatedAt": "2016-01-12T19:25:42Z",
"description": "scatterplot-lines-SAINTS"
},
{
"id": "6b44ab81fb2692f8aa4a",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "53d28a622bb5d5a0804a",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "c6838e2800c8dd8eaf96",
"user": "KoGor",
"createdAt": "2014-08-13T20:57:16Z",
"updatedAt": "2015-08-29T14:05:15Z",
"description": "Dynamic tiles clipping"
},
{
"id": "2e0afa5040f72ea15279",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "a782acb88b29873e69f4",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "3719724",
"user": "mbostock",
"createdAt": "2012-09-14T04:07:08Z",
"updatedAt": "2016-02-09T01:35:14Z",
"description": "Sortable Table with Bars"
},
{
"id": "a307b9e5457164864c23",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "0f3f39deed0ee1653354",
"user": "zanarmstrong",
"createdAt": "2014-09-16T23:46:46Z",
"updatedAt": "2015-11-08T19:47:35Z",
"description": "comet chart (prototype)"
},
{
"id": "a7aa448d0a32ed129a95",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "b50089030f88e5f58c07",
"user": "lulu567",
"createdAt": "2016-01-19T10:21:15Z",
"updatedAt": "2016-01-19T10:22:04Z",
"description": "Milky Way"
},
{
"id": "a6824436bbe35dbef2c6",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "7607999",
"user": "mbostock",
"createdAt": "2013-11-22T22:32:24Z",
"updatedAt": "2016-04-03T02:09:09Z",
"description": "Hierarchical Edge Bundling"
},
{
"id": "9903845",
"user": "renecnielsen",
"createdAt": "2014-03-31T22:28:59Z",
"updatedAt": "2015-08-29T13:57:58Z",
"description": "Chord diagram"
},
{
"id": "b0a668d3e8b6f71cc0a0",
"user": "ssdatar",
"createdAt": "2015-10-24T09:35:10Z",
"updatedAt": "2015-10-24T09:35:40Z",
"description": "Trump campaign"
},
{
"id": "017c2ac1bc4fb1c0a487",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "5c864d6edab4266c18c4",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "77e86eee16343ff286ed",
"user": "matt81m",
"createdAt": "2016-01-30T02:31:14Z",
"updatedAt": "2016-01-30T02:31:15Z",
"description": "Pack Layout with Transitions"
},
{
"id": "525c2d3c58629e7c6d27",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "8e7ae750220e2ec975d7",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "df90b219b9443e457e0d",
"user": "jalapic",
"createdAt": "2016-01-01T21:21:50Z",
"updatedAt": "2016-01-01T22:57:36Z",
"description": "James' tactics board"
},
{
"id": "bc36d0af347f32152e07",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "7d15b6ea45e5b37c20c4",
"user": "jalapic",
"createdAt": "2016-01-02T05:55:06Z",
"updatedAt": "2016-01-02T16:57:32Z",
"description": "Tactics board, freehand draw"
},
{
"id": "d2fc45faa86df71d70b3",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "522d3842f27e2581f0d9",
"user": "Jay-Oh-eN",
"createdAt": "2015-12-09T01:05:50Z",
"updatedAt": "2015-12-09T20:30:44Z",
"description": "Foundations of D3: Data Binding Scope"
},
{
"id": "310db22ad265bdb973dc",
"user": "N0taN3rd",
"createdAt": "2016-02-02T04:00:01Z",
"updatedAt": "2016-02-03T01:22:57Z",
"description": "VI2 "
},
{
"id": "ade3f98f9a9c2d627d13",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "2973775",
"user": "biovisualize",
"createdAt": "2012-06-22T16:14:56Z",
"updatedAt": "2016-01-31T23:24:19Z",
"description": "Tooltip as a d3 helper"
},
{
"id": "4d17fa15a7a5084e217992f985fba484",
"user": "espinielli",
"createdAt": "2016-04-07T15:42:17Z",
"updatedAt": "2016-04-07T15:45:03Z",
"description": "D3 tutorial V: Adding tooltips"
},
{
"id": "5181105",
"user": "rveciana",
"createdAt": "2013-03-17T11:12:35Z",
"updatedAt": "2015-12-15T01:39:02Z",
"description": "D3 tutorial V: Adding tooltips"
},
{
"id": "7b66ad387b75d6077348",
"user": "espinielli",
"createdAt": "2016-02-01T14:15:38Z",
"updatedAt": "2016-02-01T15:59:59Z",
"description": "European FABs"
},
{
"id": "d517a035d0abb5cd0919",
"user": "espinielli",
"createdAt": "2016-01-17T13:20:25Z",
"updatedAt": "2016-02-10T11:40:20Z",
"description": "European FIRs"
},
{
"id": "4709a6f5545d88d37084",
"user": "espinielli",
"createdAt": "2016-01-20T16:07:06Z",
"updatedAt": "2016-01-25T08:54:22Z",
"description": "test merging and topology"
},
{
"id": "9ea56e041f6847dbe944",
"user": "espinielli",
"createdAt": "2015-12-13T16:18:54Z",
"updatedAt": "2015-12-20T15:03:50Z",
"description": "D3.js Boetti "
},
{
"id": "8015110",
"user": "mbostock",
"createdAt": "2013-12-18T00:04:01Z",
"updatedAt": "2016-02-09T01:59:13Z",
"description": "Rotating Transverse Mercator"
},
{
"id": "583734",
"user": "mbostock",
"createdAt": "2010-09-17T04:49:54Z",
"updatedAt": "2016-02-08T23:00:42Z",
"description": "Cellular automata"
},
{
"id": "2986e55a01c7008d4b5b",
"user": "rveciana",
"createdAt": "2014-07-07T18:22:08Z",
"updatedAt": "2015-08-29T14:03:37Z",
"description": "D3 Trail Layout animated map"
},
{
"id": "10743959",
"user": "rveciana",
"createdAt": "2014-04-15T16:02:03Z",
"updatedAt": "2015-08-29T13:59:32Z",
"description": "Hayan typhoon gradient colored track II"
},
{
"id": "6193058",
"user": "rveciana",
"createdAt": "2013-08-09T11:55:29Z",
"updatedAt": "2015-12-20T20:49:10Z",
"description": "Flag map with D3js - SVG"
},
{
"id": "5689783",
"user": "espinielli",
"createdAt": "2013-06-01T09:26:01Z",
"updatedAt": "2015-12-17T23:29:34Z",
"description": "Cahill-Keyes map projection"
},
{
"id": "6619561",
"user": "mbostock",
"createdAt": "2013-09-19T05:57:44Z",
"updatedAt": "2016-02-09T02:01:07Z",
"description": "Rotating Orthographic"
},
{
"id": "3734273",
"user": "mbostock",
"createdAt": "2012-09-16T20:32:01Z",
"updatedAt": "2016-02-09T01:35:27Z",
"description": "Rotating Equirectangular"
},
{
"id": "3790085",
"user": "mbostock",
"createdAt": "2012-09-26T19:37:05Z",
"updatedAt": "2016-02-09T01:37:45Z",
"description": "Rotating Winkel Tripel"
},
{
"id": "4444952",
"user": "tmcw",
"createdAt": "2013-01-03T17:05:56Z",
"updatedAt": "2016-03-14T18:21:47Z",
"description": "d3.keybinding"
},
{
"id": "0b0de63abcbc436d1967",
"user": "timelyportfolio",
"createdAt": "2016-02-04T22:03:23Z",
"updatedAt": "2016-02-04T22:06:19Z",
"description": "mobservable + crossfilter"
},
{
"id": "f8c2158b7416bb827926",
"user": "timelyportfolio",
"createdAt": "2015-12-15T19:51:09Z",
"updatedAt": "2015-12-15T20:07:40Z",
"description": "summarytrees R htmlwidget - better?"
},
{
"id": "6725ab949bab58c2f9f9",
"user": "timelyportfolio",
"createdAt": "2015-12-10T21:03:08Z",
"updatedAt": "2015-12-10T21:08:34Z",
"description": "animate viewBox on summarytrees"
},
{
"id": "86e51152d02e6280e9f3",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "94c3203a8f86d34a6af7",
"user": "sheffieldhale",
"createdAt": "2016-01-30T20:28:56Z",
"updatedAt": "2016-02-01T01:21:08Z",
"description": "Soda Taxes Bubble Up (White)"
},
{
"id": "50667ddd436c39f66b84",
"user": "bletcher",
"createdAt": "2016-01-21T03:25:13Z",
"updatedAt": "2016-01-21T04:39:06Z",
"description": "transition test"
},
{
"id": "1e7a161a8bf6f545b8f8",
"user": "walkerjeffd",
"createdAt": "2016-01-22T20:55:31Z",
"updatedAt": "2016-01-22T20:55:31Z",
"description": "transition test"
},
{
"id": "7c0e42a45ba1a62479a4",
"user": "curran",
"createdAt": "2016-01-25T23:47:35Z",
"updatedAt": "2016-01-26T22:33:33Z",
"description": ""
},
{
"id": "1fd196cd99f8d58a56d3",
"user": "enjalot",
"createdAt": "2015-12-21T19:29:07Z",
"updatedAt": "2016-01-23T18:41:57Z",
"description": "aframe + d3 test: text labels"
},
{
"id": "dc1ce756527c072885dc",
"user": "enjalot",
"createdAt": "2015-12-03T18:17:59Z",
"updatedAt": "2015-12-06T01:55:32Z",
"description": "dots on a map: setup-gl"
},
{
"id": "b95748220bd4752fb33a",
"user": "enjalot",
"createdAt": "2015-12-01T06:10:27Z",
"updatedAt": "2015-12-02T00:45:26Z",
"description": "dots on a map: lasso"
},
{
"id": "3887118,",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "8287bd24c157edb5bb2b",
"user": "ndarville",
"createdAt": "2015-01-13T11:34:30Z",
"updatedAt": "2015-08-29T14:13:22Z",
"description": "World Map"
},
{
"id": "707cc158d2520c4e4602",
"user": "ndarville",
"createdAt": "2015-01-13T12:48:55Z",
"updatedAt": "2015-08-29T14:13:22Z",
"description": "World Map (Multicolour)"
},
{
"id": "acb1dde273bff654262c",
"user": "ndarville",
"createdAt": "2014-11-27T17:55:56Z",
"updatedAt": "2015-08-29T14:10:25Z",
"description": "Visualisering af statistisk usikkerhed i Megafon-mรฅling 27/11-14"
},
{
"id": "e09fcd2621b42d07a9fe",
"user": "ndarville",
"createdAt": "2014-11-27T23:04:53Z",
"updatedAt": "2015-08-29T14:10:26Z",
"description": "Meningsmรฅlingstendenser op til 27/11-14"
},
{
"id": "6466603",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "66fa642ce3eb6a0de885",
"user": "ibbecknell",
"createdAt": "2016-02-08T09:39:15Z",
"updatedAt": "2016-02-08T09:39:15Z",
"description": "fresh block"
},
{
"id": "0faeb2237488f7aa526b",
"user": "ibbecknell",
"createdAt": "2016-02-08T09:40:43Z",
"updatedAt": "2016-02-08T09:40:43Z",
"description": "fresh block"
},
{
"id": "67a4c59a495811876019",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "8876a8b3696890d4b48f",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "6185069",
"user": "weiglemc",
"createdAt": "2013-08-08T14:27:44Z",
"updatedAt": "2015-12-20T19:39:03Z",
"description": "D3 Scatterplot Example"
},
{
"id": "6e602654b41a48709612",
"user": "cheneymb",
"createdAt": "2016-02-11T15:45:44Z",
"updatedAt": "2016-02-11T15:45:44Z",
"description": "Multi-Series Line Chart"
},
{
"id": "cb9c53581cdac51718d5",
"user": "andresin87",
"createdAt": "2016-02-11T19:09:16Z",
"updatedAt": "2016-02-11T21:19:32Z",
"description": "Closest Point on a Path and Its Tangent II (faster tangent method)"
},
{
"id": "e56fea12ab3a1f831063",
"user": "jrodgz",
"createdAt": "2016-02-10T03:32:59Z",
"updatedAt": "2016-02-10T06:33:35Z",
"description": "JDR VI3 for CS725@ODU "
},
{
"id": "6be047ed3c064b505c8f",
"user": "AdamBlaine1",
"createdAt": "2016-02-11T15:15:48Z",
"updatedAt": "2016-02-11T15:15:48Z",
"description": "Multi-Series Line Chart"
},
{
"id": "d6c5a1923f53a60876ad",
"user": "AdamBlaine1",
"createdAt": "2016-02-11T15:45:50Z",
"updatedAt": "2016-02-11T15:45:51Z",
"description": "Multi-Series Line Chart"
},
{
"id": "533e9ec746874e1a36cd",
"user": "zaccagbj",
"createdAt": "2016-02-11T15:45:43Z",
"updatedAt": "2016-02-11T15:45:43Z",
"description": "Multi-Series Line Chart"
},
{
"id": "6e75ad8f8664c245d0a0",
"user": "dunlapea",
"createdAt": "2016-02-11T16:18:55Z",
"updatedAt": "2016-02-11T16:19:46Z",
"description": "Multi-Series Line Chart"
},
{
"id": "1c2bb7d79549741d02d6",
"user": "jpnoll",
"createdAt": "2016-02-11T15:22:15Z",
"updatedAt": "2016-02-11T15:22:16Z",
"description": "Ebola"
},
{
"id": "52266416d0a8b91b71f1",
"user": "jpnoll",
"createdAt": "2016-02-11T15:22:46Z",
"updatedAt": "2016-02-11T15:22:46Z",
"description": "Ebola"
},
{
"id": "6bf3ab2878431b0f3691",
"user": "jpnoll",
"createdAt": "2016-02-11T15:38:34Z",
"updatedAt": "2016-02-11T15:38:34Z",
"description": "Ebola"
},
{
"id": "8b90fc373329bcab1366",
"user": "jpnoll",
"createdAt": "2016-02-11T15:39:52Z",
"updatedAt": "2016-02-11T15:39:52Z",
"description": "Ebola"
},
{
"id": "aec29bdc5369ee7950cd",
"user": "jpnoll",
"createdAt": "2016-02-11T16:12:36Z",
"updatedAt": "2016-02-11T16:12:45Z",
"description": "Ebola"
},
{
"id": "2b1e4cc603310e9abc86",
"user": "lambrex",
"createdAt": "2016-02-11T15:22:44Z",
"updatedAt": "2016-02-11T15:22:44Z",
"description": "fresh block"
},
{
"id": "17567df60d22eed325b4",
"user": "lambrex",
"createdAt": "2016-02-11T15:41:46Z",
"updatedAt": "2016-02-11T15:41:46Z",
"description": "fresh block"
},
{
"id": "e758727fb4e111fdf045",
"user": "lambrex",
"createdAt": "2016-02-11T15:42:15Z",
"updatedAt": "2016-02-11T15:42:17Z",
"description": "fresh block"
},
{
"id": "b3f97b9b6a27a2878f5b",
"user": "lambrex",
"createdAt": "2016-02-11T15:46:46Z",
"updatedAt": "2016-02-11T15:46:46Z",
"description": "fresh block"
},
{
"id": "51cd71f0b6854e57e6a1",
"user": "lambrex",
"createdAt": "2016-02-11T16:07:18Z",
"updatedAt": "2016-02-11T16:07:28Z",
"description": "fresh block"
},
{
"id": "c55265d611e30e7e95f0",
"user": "lambrex",
"createdAt": "2016-02-11T16:07:30Z",
"updatedAt": "2016-02-11T16:07:30Z",
"description": "fresh block"
},
{
"id": "0514ad3e56d05722f997",
"user": "lambrex",
"createdAt": "2016-02-11T16:11:29Z",
"updatedAt": "2016-02-11T16:11:29Z",
"description": "fresh block"
},
{
"id": "09f8c8eb06feff3e6dea",
"user": "lambrex",
"createdAt": "2016-02-11T16:11:36Z",
"updatedAt": "2016-02-11T16:11:36Z",
"description": "fresh block"
},
{
"id": "264ed380895fea0d3844",
"user": "mansfimx",
"createdAt": "2016-02-11T15:34:45Z",
"updatedAt": "2016-02-11T15:34:46Z",
"description": "Multi-Series Line Chart"
},
{
"id": "d035005c1e07498035ab",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "5f22c9f2280280bdb3b2",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "1e6da47724c39156adb3",
"user": "Kcnarf",
"createdAt": "2016-01-26T16:40:33Z",
"updatedAt": "2016-02-23T11:13:33Z",
"description": "timeline - correlation"
},
{
"id": "0a8fe1caa2ac025c8e86",
"user": "Kcnarf",
"createdAt": "2016-01-12T16:22:40Z",
"updatedAt": "2016-02-10T17:10:12Z",
"description": "timeline - trend & seasonality"
},
{
"id": "fa5deb2022e829449688",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "189bbf2dad71071b9969",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "2583342b5b484e70899b",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "9da0a8c4e7391243e941",
"user": "tacastillo",
"createdAt": "2016-02-12T19:16:29Z",
"updatedAt": "2016-02-12T19:16:29Z",
"description": "Multi-Series Line Chart"
},
{
"id": "5cf2da9490fac8f59799",
"user": "rmtrailor",
"createdAt": "2016-02-12T22:32:14Z",
"updatedAt": "2016-02-12T22:32:14Z",
"description": "Multi-Series Line Chart"
},
{
"id": "ca1f73e81c2440b46eed",
"user": "rmtrailor",
"createdAt": "2016-02-12T22:37:43Z",
"updatedAt": "2016-02-12T22:37:43Z",
"description": "Multi-Series Line Chart"
},
{
"id": "947bedc4e1223803333a",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "1d2ebc954f02fc7a905f",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "4986e3637959b9704ba5",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "95f8f7535e6aaa3e7dd0",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "a416105e509593928ec5",
"user": "vwrideout",
"createdAt": "2016-02-12T22:30:11Z",
"updatedAt": "2016-02-12T22:30:11Z",
"description": "Multi-Series Line Chart"
},
{
"id": "a7b5b1f23019e065d8aa",
"user": "HelenHChen",
"createdAt": "2016-02-12T22:22:36Z",
"updatedAt": "2016-02-12T22:22:37Z",
"description": "Multi-Series Line Chart"
},
{
"id": "f80a387b1ce45adfbe08",
"user": "sliu72",
"createdAt": "2016-02-12T22:29:55Z",
"updatedAt": "2016-02-12T22:29:55Z",
"description": "Multi-Series Line Chart"
},
{
"id": "9d9ccdf86fb59ab6c6e0",
"user": "lyndonclarke",
"createdAt": "2016-02-12T22:23:12Z",
"updatedAt": "2016-02-12T22:23:12Z",
"description": "Multi-Series Line Chart"
},
{
"id": "29d80cf22eda5b55e2c1",
"user": "lyndonclarke",
"createdAt": "2016-02-12T22:24:11Z",
"updatedAt": "2016-02-12T22:24:11Z",
"description": "Multi-Series Line Chart"
},
{
"id": "7c289a9dbf38ceb665d8",
"user": "lyndonclarke",
"createdAt": "2016-02-12T22:26:14Z",
"updatedAt": "2016-02-12T22:26:14Z",
"description": "Multi-Series Line Chart"
},
{
"id": "a45d78cc14704ced3f88",
"user": "lyndonclarke",
"createdAt": "2016-02-12T22:26:29Z",
"updatedAt": "2016-02-12T22:26:30Z",
"description": "Multi-Series Line Chart"
},
{
"id": "deb677307bfb906b38e6",
"user": "lyndonclarke",
"createdAt": "2016-02-12T22:27:50Z",
"updatedAt": "2016-02-12T22:27:50Z",
"description": "Multi-Series Line Chart"
},
{
"id": "a9711c2f39239465f30e",
"user": "lyndonclarke",
"createdAt": "2016-02-12T22:28:50Z",
"updatedAt": "2016-02-12T22:28:50Z",
"description": "Multi-Series Line Chart"
},
{
"id": "de369cc33c7c02015263",
"user": "lyndonclarke",
"createdAt": "2016-02-12T22:34:07Z",
"updatedAt": "2016-02-12T22:34:07Z",
"description": "Multi-Series Line Chart"
},
{
"id": "6e75e8d20da020b9de19",
"user": "lyndonclarke",
"createdAt": "2016-02-12T22:38:57Z",
"updatedAt": "2016-02-12T22:38:57Z",
"description": "Multi-Series Line Chart"
},
{
"id": "1727593e326e81b0951f",
"user": "lyndonclarke",
"createdAt": "2016-02-12T22:41:04Z",
"updatedAt": "2016-02-12T22:41:04Z",
"description": "Multi-Series Line Chart"
},
{
"id": "4db859d1e3fd8e8b8642",
"user": "lyndonclarke",
"createdAt": "2016-02-12T22:41:16Z",
"updatedAt": "2016-02-12T22:41:16Z",
"description": "Multi-Series Line Chart"
},
{
"id": "a2e10229636d23f13dbb",
"user": "lyndonclarke",
"createdAt": "2016-02-12T22:42:40Z",
"updatedAt": "2016-02-12T22:42:40Z",
"description": "Multi-Series Line Chart"
},
{
"id": "d7aded22d8ab1a5ff063",
"user": "lyndonclarke",
"createdAt": "2016-02-12T22:44:14Z",
"updatedAt": "2016-02-12T22:44:15Z",
"description": "Multi-Series Line Chart"
},
{
"id": "527111d4bf58cfbaa8f7",
"user": "lyndonclarke",
"createdAt": "2016-02-12T22:44:43Z",
"updatedAt": "2016-02-12T22:44:44Z",
"description": "Multi-Series Line Chart"
},
{
"id": "4119e1e519d687eb7ffc",
"user": "lyndonclarke",
"createdAt": "2016-02-12T22:45:19Z",
"updatedAt": "2016-02-12T22:45:19Z",
"description": "Multi-Series Line Chart"
},
{
"id": "aaa180c9379a902aba3e",
"user": "lyndonclarke",
"createdAt": "2016-02-12T22:45:47Z",
"updatedAt": "2016-02-12T22:45:48Z",
"description": "Multi-Series Line Chart"
},
{
"id": "5359c5b7020527a68e60",
"user": "lyndonclarke",
"createdAt": "2016-02-12T22:46:04Z",
"updatedAt": "2016-02-12T22:46:04Z",
"description": "Multi-Series Line Chart"
},
{
"id": "aa154290d2f39a1ab54b",
"user": "lyndonclarke",
"createdAt": "2016-02-12T22:47:58Z",
"updatedAt": "2016-02-12T22:47:59Z",
"description": "Multi-Series Line Chart"
},
{
"id": "ab47787d16eb43d8af34",
"user": "lyndonclarke",
"createdAt": "2016-02-12T22:51:55Z",
"updatedAt": "2016-02-12T22:51:55Z",
"description": "Multi-Series Line Chart"
},
{
"id": "185510fc80ac8a874cd1",
"user": "lyndonclarke",
"createdAt": "2016-02-12T22:54:30Z",
"updatedAt": "2016-02-12T22:54:30Z",
"description": "Multi-Series Line Chart"
},
{
"id": "7ae92335446d3ad639d0",
"user": "lyndonclarke",
"createdAt": "2016-02-12T22:58:21Z",
"updatedAt": "2016-02-12T22:58:21Z",
"description": "Multi-Series Line Chart"
},
{
"id": "5740eb91f7f2f4bef0ae",
"user": "lyndonclarke",
"createdAt": "2016-02-12T22:59:22Z",
"updatedAt": "2016-02-12T22:59:23Z",
"description": "Multi-Series Line Chart"
},
{
"id": "7d8f7ff7f31b2789b1f9",
"user": "lyndonclarke",
"createdAt": "2016-02-12T22:59:54Z",
"updatedAt": "2016-02-12T22:59:55Z",
"description": "Multi-Series Line Chart"
},
{
"id": "87df80ba235efb82e9de",
"user": "lyndonclarke",
"createdAt": "2016-02-12T23:00:04Z",
"updatedAt": "2016-02-12T23:00:05Z",
"description": "Multi-Series Line Chart"
},
{
"id": "7b28e2aca81bd450e15e",
"user": "lyndonclarke",
"createdAt": "2016-02-12T23:01:34Z",
"updatedAt": "2016-02-12T23:01:34Z",
"description": "Multi-Series Line Chart"
},
{
"id": "6d6fa3b5fbd160e0afb4",
"user": "lyndonclarke",
"createdAt": "2016-02-12T23:01:46Z",
"updatedAt": "2016-02-12T23:01:46Z",
"description": "Multi-Series Line Chart"
},
{
"id": "640803240b9db8f610af",
"user": "lyndonclarke",
"createdAt": "2016-02-12T23:02:32Z",
"updatedAt": "2016-02-12T23:02:32Z",
"description": "Multi-Series Line Chart"
},
{
"id": "3da6b1e5522c57dd8106",
"user": "lyndonclarke",
"createdAt": "2016-02-12T23:03:27Z",
"updatedAt": "2016-02-12T23:03:27Z",
"description": "Multi-Series Line Chart"
},
{
"id": "c7b3934926cee4f7b39e",
"user": "lyndonclarke",
"createdAt": "2016-02-12T23:04:09Z",
"updatedAt": "2016-02-12T23:04:09Z",
"description": "Multi-Series Line Chart"
},
{
"id": "80509e9d1cdc66568152",
"user": "lyndonclarke",
"createdAt": "2016-02-12T23:04:50Z",
"updatedAt": "2016-02-12T23:04:50Z",
"description": "Multi-Series Line Chart"
},
{
"id": "a592a0a644f806ee56a7",
"user": "lyndonclarke",
"createdAt": "2016-02-12T23:06:38Z",
"updatedAt": "2016-02-12T23:06:38Z",
"description": "Multi-Series Line Chart"
},
{
"id": "ab22a21c4fb7d977ea7b",
"user": "lyndonclarke",
"createdAt": "2016-02-12T23:06:50Z",
"updatedAt": "2016-02-12T23:06:51Z",
"description": "Multi-Series Line Chart"
},
{
"id": "b74bb2749f8a96c4c241",
"user": "lyndonclarke",
"createdAt": "2016-02-12T23:08:03Z",
"updatedAt": "2016-02-12T23:08:03Z",
"description": "Multi-Series Line Chart"
},
{
"id": "b7f4298f7d2892ba4b1b",
"user": "lyndonclarke",
"createdAt": "2016-02-12T23:09:16Z",
"updatedAt": "2016-02-12T23:09:16Z",
"description": "Multi-Series Line Chart"
},
{
"id": "d865b3a6873f39fe0d75",
"user": "lyndonclarke",
"createdAt": "2016-02-12T23:10:03Z",
"updatedAt": "2016-02-12T23:10:04Z",
"description": "Multi-Series Line Chart"
},
{
"id": "65ea67b5e062b5ba666b",
"user": "lyndonclarke",
"createdAt": "2016-02-12T23:10:48Z",
"updatedAt": "2016-02-12T23:10:48Z",
"description": "Multi-Series Line Chart"
},
{
"id": "921af093736051ab15a8",
"user": "lyndonclarke",
"createdAt": "2016-02-12T23:11:30Z",
"updatedAt": "2016-02-12T23:11:31Z",
"description": "Multi-Series Line Chart"
},
{
"id": "d63a29287faa83227f65",
"user": "lyndonclarke",
"createdAt": "2016-02-12T23:11:39Z",
"updatedAt": "2016-02-12T23:11:39Z",
"description": "Multi-Series Line Chart"
},
{
"id": "ac5b6c28390fb4af7a04",
"user": "jeestella",
"createdAt": "2016-02-12T22:21:52Z",
"updatedAt": "2016-02-12T22:21:52Z",
"description": "Multi-Series Line Chart"
},
{
"id": "9f2c2f3e48fc6b3e51ff",
"user": "jeestella",
"createdAt": "2016-02-12T22:23:57Z",
"updatedAt": "2016-02-12T22:23:57Z",
"description": "Multi-Series Line Chart"
},
{
"id": "17c2e256d5111f41c81d",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "5b73ed467c8e8d0440e6",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "46122c3abd2ee3acabb8",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "70527aca0d1672266971",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "d6f21e3971ef4a1dfcfe",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "8a6e0ca67f054dd9ef29",
"user": "fengqingli",
"createdAt": "2016-02-12T22:14:00Z",
"updatedAt": "2016-02-12T22:14:01Z",
"description": "Multi-Series Line Chart"
},
{
"id": "a2c2ab6da0a0aa3d8fd1",
"user": "fengqingli",
"createdAt": "2016-02-12T22:29:22Z",
"updatedAt": "2016-02-12T22:29:22Z",
"description": "Multi-Series Line Chart"
},
{
"id": "1f02ba8c57e84bbf0d08",
"user": "fengqingli",
"createdAt": "2016-02-12T22:31:36Z",
"updatedAt": "2016-02-12T22:31:37Z",
"description": "Multi-Series Line Chart"
},
{
"id": "d3a03c0a140b6d4b4e2c",
"user": "fengqingli",
"createdAt": "2016-02-12T22:36:36Z",
"updatedAt": "2016-02-12T22:36:36Z",
"description": "Multi-Series Line Chart"
},
{
"id": "7b912a3693e7dee2633e",
"user": "fengqingli",
"createdAt": "2016-02-12T22:37:33Z",
"updatedAt": "2016-02-12T22:37:33Z",
"description": "Multi-Series Line Chart"
},
{
"id": "0dc207c08decd57319f3",
"user": "fengqingli",
"createdAt": "2016-02-12T22:44:08Z",
"updatedAt": "2016-02-12T22:44:09Z",
"description": "Multi-Series Line Chart"
},
{
"id": "3ffc84f3def0025a4243",
"user": "fengqingli",
"createdAt": "2016-02-12T22:56:15Z",
"updatedAt": "2016-02-12T22:56:15Z",
"description": "Multi-Series Line Chart"
},
{
"id": "333c0477264183d25c12",
"user": "fengqingli",
"createdAt": "2016-02-12T23:02:37Z",
"updatedAt": "2016-02-12T23:02:37Z",
"description": "Multi-Series Line Chart"
},
{
"id": "a69684b04fde3f873ee8",
"user": "fengqingli",
"createdAt": "2016-02-12T23:15:55Z",
"updatedAt": "2016-02-12T23:15:55Z",
"description": "Multi-Series Line Chart"
},
{
"id": "10f43d81d7fa62872872",
"user": "fengqingli",
"createdAt": "2016-02-12T23:18:43Z",
"updatedAt": "2016-02-12T23:18:44Z",
"description": "Multi-Series Line Chart"
},
{
"id": "f00d5c23c2d79f37653e",
"user": "fengqingli",
"createdAt": "2016-02-12T23:20:07Z",
"updatedAt": "2016-02-12T23:20:08Z",
"description": "Multi-Series Line Chart"
},
{
"id": "70d5541b547cc222aa02",
"user": "mbostock",
"createdAt": "2016-02-12T01:56:36Z",
"updatedAt": "2016-04-18T02:47:23Z",
"description": "Chained Transitions"
},
{
"id": "8a5994c72f6de3207ce3",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "2fbe51dcbc0d27cf897b",
"user": "kiansheik",
"createdAt": "2016-02-12T22:14:47Z",
"updatedAt": "2016-02-12T22:14:47Z",
"description": "Multi-Series Line Chart"
},
{
"id": "ea72de53eb3daad14f73",
"user": "kiansheik",
"createdAt": "2016-02-12T22:21:42Z",
"updatedAt": "2016-02-12T22:21:42Z",
"description": "Multi-Series Line Chart"
},
{
"id": "f3e6415f79b078b75fe4",
"user": "kiansheik",
"createdAt": "2016-02-12T22:22:17Z",
"updatedAt": "2016-02-12T22:22:18Z",
"description": "Multi-Series Line Chart"
},
{
"id": "d3b1e127741d5be5bbc3",
"user": "kiansheik",
"createdAt": "2016-02-12T22:25:06Z",
"updatedAt": "2016-02-12T22:25:07Z",
"description": "Multi-Series Line Chart"
},
{
"id": "fea2240ea499f36b7ec4",
"user": "kiansheik",
"createdAt": "2016-02-12T22:27:41Z",
"updatedAt": "2016-02-12T22:27:41Z",
"description": "Multi-Series Line Chart"
},
{
"id": "d721b55071e31f8da8c3",
"user": "kiansheik",
"createdAt": "2016-02-12T22:59:00Z",
"updatedAt": "2016-02-12T22:59:00Z",
"description": "Multi-Series Line Chart"
},
{
"id": "4df06aacdf53e24c90b7",
"user": "kiansheik",
"createdAt": "2016-02-12T23:09:17Z",
"updatedAt": "2016-02-12T23:09:17Z",
"description": "Multi-Series Line Chart"
},
{
"id": "1c09ebc87f8e3f8c6675",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "21192c7045ab8f50e22e",
"user": "ThomasG77",
"createdAt": "2016-02-13T12:30:23Z",
"updatedAt": "2016-03-02T13:01:57Z",
"description": "OpenLayers 3 Google Maps API"
},
{
"id": "3597f3be85300fb76a93",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "730ee9948906113a2e05",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "b344118d3c0874fa740a",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "ca8a6d89ed7a8cc2d972",
"user": "N0taN3rd",
"createdAt": "2016-02-09T21:43:21Z",
"updatedAt": "2016-02-12T01:53:53Z",
"description": " Visualization Implementation (VI3)"
},
{
"id": "00e295827c51ffa80104",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "9b23673c0786fa5b1a75",
"user": "N0taN3rd",
"createdAt": "2016-02-09T21:31:34Z",
"updatedAt": "2016-02-09T21:31:34Z",
"description": "fresh block"
},
{
"id": "e503f9cd7655acf5d9a7",
"user": "N0taN3rd",
"createdAt": "2016-02-09T21:34:23Z",
"updatedAt": "2016-02-09T21:34:24Z",
"description": "fresh block"
},
{
"id": "cf3031700f42670dccf6",
"user": "jeremiahraymond",
"createdAt": "2016-02-12T22:30:26Z",
"updatedAt": "2016-02-12T22:30:27Z",
"description": "Multi-Series Line Chart"
},
{
"id": "97a40f1c0684bc5bd0d5",
"user": "jeremiahraymond",
"createdAt": "2016-02-12T22:33:06Z",
"updatedAt": "2016-02-12T22:33:06Z",
"description": "Multi-Series Line Chart"
},
{
"id": "81d0c04cbd78c95cc674",
"user": "jeremiahraymond",
"createdAt": "2016-02-12T22:43:23Z",
"updatedAt": "2016-02-12T22:43:24Z",
"description": "Multi-Series Line Chart"
},
{
"id": "a807f2ba95e19db2a0f5",
"user": "jeremiahraymond",
"createdAt": "2016-02-12T22:57:21Z",
"updatedAt": "2016-02-12T22:57:21Z",
"description": "Multi-Series Line Chart"
},
{
"id": "70b669815dbad375ea75",
"user": "jeremiahraymond",
"createdAt": "2016-02-12T22:57:36Z",
"updatedAt": "2016-02-12T22:57:36Z",
"description": "Multi-Series Line Chart"
},
{
"id": "28c466de83d5100f009e",
"user": "jeremiahraymond",
"createdAt": "2016-02-12T22:58:17Z",
"updatedAt": "2016-02-12T22:58:17Z",
"description": "Multi-Series Line Chart"
},
{
"id": "cf29a41485972f2a15cf",
"user": "Cdcole",
"createdAt": "2016-02-12T22:18:24Z",
"updatedAt": "2016-02-12T22:18:25Z",
"description": "Multi-Series Line Chart"
},
{
"id": "a4658f02960b71612a57",
"user": "Cdcole",
"createdAt": "2016-02-12T22:32:46Z",
"updatedAt": "2016-02-12T22:32:46Z",
"description": "Multi-Series Line Chart"
},
{
"id": "4e9a0662dc81944593f9",
"user": "Cdcole",
"createdAt": "2016-02-12T22:20:55Z",
"updatedAt": "2016-02-12T22:20:55Z",
"description": "Multi-Series Line Chart"
},
{
"id": "c81883c957e8537be10f",
"user": "Cdcole",
"createdAt": "2016-02-12T22:21:37Z",
"updatedAt": "2016-02-12T22:21:37Z",
"description": "Multi-Series Line Chart"
},
{
"id": "1aef402d919da5d776b5",
"user": "djokicx",
"createdAt": "2016-02-12T22:22:42Z",
"updatedAt": "2016-02-12T22:22:42Z",
"description": "Multi-Series Line Chart"
},
{
"id": "fdb820d9d828400cb227",
"user": "djokicx",
"createdAt": "2016-02-12T22:46:13Z",
"updatedAt": "2016-02-12T22:46:14Z",
"description": "Multi-Series Line Chart"
},
{
"id": "9904735",
"user": "renecnielsen",
"createdAt": "2014-03-31T23:34:20Z",
"updatedAt": "2015-08-29T13:57:58Z",
"description": "Zoomable Circle Packing"
},
{
"id": "467f1a0db47753cc630e",
"user": "mbostock",
"createdAt": "2015-09-15T17:43:20Z",
"updatedAt": "2016-02-09T01:49:14Z",
"description": "Improved Circle Packing"
},
{
"id": "2c38eed928999266bf0b",
"user": "hungvietdo",
"createdAt": "2016-02-15T19:11:30Z",
"updatedAt": "2016-02-16T01:56:29Z",
"description": "Magnitude and Identify"
},
{
"id": "9ccba191aa29181821d2",
"user": "Mrajyalakshmi",
"createdAt": "2016-02-17T07:21:01Z",
"updatedAt": "2016-02-17T07:21:01Z",
"description": "fresh block"
},
{
"id": "c430a1ccf08735eea81f",
"user": "Mrajyalakshmi",
"createdAt": "2016-02-17T07:18:37Z",
"updatedAt": "2016-02-17T07:18:37Z",
"description": "fresh block"
},
{
"id": "ed2a8aff3d202713525f",
"user": "Mrajyalakshmi",
"createdAt": "2016-02-17T06:30:04Z",
"updatedAt": "2016-02-17T06:30:04Z",
"description": "fresh block"
},
{
"id": "4689130",
"user": "vjpgo",
"createdAt": "2013-02-01T04:08:17Z",
"updatedAt": "2016-02-18T15:34:44Z",
"description": "d3.js major minor tick style 3"
},
{
"id": "8afdede69a25463716c0",
"user": "mansfimx",
"createdAt": "2016-02-18T17:11:07Z",
"updatedAt": "2016-02-18T17:11:27Z",
"description": "Genome Scale"
},
{
"id": "4349486",
"user": "mbostock",
"createdAt": "2012-12-20T23:17:52Z",
"updatedAt": "2016-02-09T02:11:54Z",
"description": "ggplot2-Style Axis"
},
{
"id": "42a14c63eb72baeed4be",
"user": "cheneymb",
"createdAt": "2016-02-19T01:53:46Z",
"updatedAt": "2016-02-19T01:53:46Z",
"description": "fresh block"
},
{
"id": "2996766",
"user": "mbostock",
"createdAt": "2012-06-26T16:11:21Z",
"updatedAt": "2016-02-09T01:23:16Z",
"description": "Zero Ticks"
},
{
"id": "6738109",
"user": "mbostock",
"createdAt": "2013-09-28T03:40:25Z",
"updatedAt": "2016-02-09T02:00:54Z",
"description": "Superscript Format"
},
{
"id": "0da60479257cc3d90a62",
"user": "lambrex",
"createdAt": "2016-02-18T17:19:48Z",
"updatedAt": "2016-02-18T17:19:57Z",
"description": "ggplot2-Style Axis"
},
{
"id": "2ad176b6912a43afebfc",
"user": "hsuh",
"createdAt": "2014-05-24T15:38:53Z",
"updatedAt": "2015-08-29T14:01:48Z",
"description": "Force layout constrained"
},
{
"id": "965cf81685bc8a9021a8",
"user": "jfost00",
"createdAt": "2016-02-16T19:25:30Z",
"updatedAt": "2016-02-16T22:17:42Z",
"description": "Bar Chart"
},
{
"id": "3885211",
"user": "mbostock",
"createdAt": "2012-10-13T16:21:54Z",
"updatedAt": "2016-05-05T17:22:22Z",
"description": "Stacked Area Chart"
},
{
"id": "b7a3a7766c546ba8b792",
"user": "lambrex",
"createdAt": "2016-02-18T15:27:38Z",
"updatedAt": "2016-02-18T16:07:24Z",
"description": "fresh block"
},
{
"id": "b6a9c376b80a6710f176",
"user": "surabhishankar",
"createdAt": "2016-02-17T02:52:53Z",
"updatedAt": "2016-02-17T02:52:53Z",
"description": "V7666"
},
{
"id": "7ac51fe69e41fc6c606a",
"user": "jrodgz",
"createdAt": "2016-02-16T23:27:38Z",
"updatedAt": "2016-02-17T11:07:22Z",
"description": "JDR VI4 for CS725@ODU "
},
{
"id": "3887235.",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "731a8e2494dfb684fc00",
"user": "RithikaReddyM",
"createdAt": "2016-02-17T08:51:46Z",
"updatedAt": "2016-02-17T09:01:05Z",
"description": "VI4"
},
{
"id": "7640d9b562bf59b561d6",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "943bf2a1b274db9ce6e7",
"user": "yesoreyeram",
"createdAt": "2016-02-15T08:53:52Z",
"updatedAt": "2016-02-15T08:56:20Z",
"description": "Sample D3.js Program"
},
{
"id": "2bf284ca648db4f1acfd",
"user": "sjhavanur",
"createdAt": "2016-02-14T05:39:41Z",
"updatedAt": "2016-02-14T05:39:41Z",
"description": "fresh block"
},
{
"id": "d335d1ea06102c47d653",
"user": "sjhavanur",
"createdAt": "2016-02-14T05:40:20Z",
"updatedAt": "2016-02-15T23:03:38Z",
"description": "v4"
},
{
"id": "f442e33096fc546ae0bc",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "60e84ea5cdffa49356e4",
"user": "ashtonburg",
"createdAt": "2016-02-18T15:47:08Z",
"updatedAt": "2016-02-18T15:47:08Z",
"description": "d3.js major minor tick style 3"
},
{
"id": "384dd445a6a7ae9f6086",
"user": "ashtonburg",
"createdAt": "2016-02-18T15:47:15Z",
"updatedAt": "2016-02-18T15:47:16Z",
"description": "d3.js major minor tick style 3"
},
{
"id": "4384949715de645a77ef",
"user": "ashtonburg",
"createdAt": "2016-02-18T16:23:39Z",
"updatedAt": "2016-02-18T16:23:39Z",
"description": "d3.js major minor tick style 3"
},
{
"id": "1f1ab0ec1cc8cee5970f",
"user": "ashtonburg",
"createdAt": "2016-02-18T15:33:29Z",
"updatedAt": "2016-02-18T15:33:29Z",
"description": "Superscript Format"
},
{
"id": "23e98ddcc9ff35b6517f",
"user": "ashtonburg",
"createdAt": "2016-02-18T15:33:36Z",
"updatedAt": "2016-02-18T15:33:36Z",
"description": "Superscript Format"
},
{
"id": "7b807fa90c485937b2ea",
"user": "ashtonburg",
"createdAt": "2016-02-18T15:33:42Z",
"updatedAt": "2016-02-18T15:33:42Z",
"description": "Superscript Format"
},
{
"id": "bf6871220d8db6efd10f",
"user": "ashtonburg",
"createdAt": "2016-02-18T15:33:45Z",
"updatedAt": "2016-02-18T15:33:45Z",
"description": "Superscript Format"
},
{
"id": "b378b3a76c1e12038c43",
"user": "ashtonburg",
"createdAt": "2016-02-18T15:33:51Z",
"updatedAt": "2016-02-18T15:33:55Z",
"description": "Superscript Format"
},
{
"id": "74cc63dc0a9ae18297de",
"user": "ashtonburg",
"createdAt": "2016-02-18T15:33:57Z",
"updatedAt": "2016-02-18T15:33:57Z",
"description": "Superscript Format"
},
{
"id": "96a3758777f9bb5e91c6",
"user": "ashtonburg",
"createdAt": "2016-02-18T15:34:02Z",
"updatedAt": "2016-02-18T15:34:02Z",
"description": "Superscript Format"
},
{
"id": "981721947501c7fc2fbc",
"user": "ashtonburg",
"createdAt": "2016-02-18T15:34:08Z",
"updatedAt": "2016-02-18T15:34:08Z",
"description": "Superscript Format"
},
{
"id": "5c4e011cc543373478e8",
"user": "ashtonburg",
"createdAt": "2016-02-18T15:34:22Z",
"updatedAt": "2016-02-18T15:34:24Z",
"description": "Superscript Format"
},
{
"id": "b95717283160c8c293e0",
"user": "ashtonburg",
"createdAt": "2016-02-18T15:34:25Z",
"updatedAt": "2016-02-18T15:34:26Z",
"description": "Superscript Format"
},
{
"id": "cdc8b048f1e7a56fae0e",
"user": "ashtonburg",
"createdAt": "2016-02-18T15:34:28Z",
"updatedAt": "2016-02-18T15:34:28Z",
"description": "Superscript Format"
},
{
"id": "da81217dee2d551d1411",
"user": "ashtonburg",
"createdAt": "2016-02-18T15:34:33Z",
"updatedAt": "2016-02-18T15:34:33Z",
"description": "Superscript Format"
},
{
"id": "0141b6928c464a31021b",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "17bebb8a00ee606fd4b9",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "526c7033706fc859f563",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "5ada6a7d00115f0e2f1e",
"user": "emeeks",
"createdAt": "2014-11-17T06:12:43Z",
"updatedAt": "2016-03-18T03:34:50Z",
"description": "Ch. 5, Fig. 6 - D3.js in Action"
},
{
"id": "0837661e346360b5385b",
"user": "abernier",
"createdAt": "2014-07-29T12:43:00Z",
"updatedAt": "2015-08-29T14:04:38Z",
"description": "//ax"
},
{
"id": "dbb02448b0f93e4c82c3",
"user": "mbostock",
"createdAt": "2014-06-07T00:31:30Z",
"updatedAt": "2016-04-22T18:35:29Z",
"description": "Poisson-Disc II"
},
{
"id": "10633421",
"user": "d3noob",
"createdAt": "2014-04-14T09:51:42Z",
"updatedAt": "2015-08-29T13:59:20Z",
"description": "Interactive text rotation with d3.js"
},
{
"id": "3fc83ddc4c060e6bd43e",
"user": "eesur",
"createdAt": "2015-11-23T18:21:33Z",
"updatedAt": "2015-11-23T18:21:36Z",
"description": "d3 | simple square grid"
},
{
"id": "1022589acfbbadb14576",
"user": "randomblink",
"createdAt": "2015-12-02T19:04:11Z",
"updatedAt": "2016-02-11T21:25:18Z",
"description": "D3 objTimeline"
},
{
"id": "019307194abe050e1117",
"user": "cool-Blue",
"createdAt": "2015-09-11T15:12:27Z",
"updatedAt": "2015-09-28T08:08:36Z",
"description": "d3 Force directed graph with node size transitions"
},
{
"id": "f810911f5f84b94f2e3e",
"user": "cool-Blue",
"createdAt": "2015-09-12T07:12:06Z",
"updatedAt": "2015-09-28T08:07:02Z",
"description": "d3 Force directed graph with node size transitions - CSS transitions "
},
{
"id": "a4530669c16faced0d57",
"user": "cool-Blue",
"createdAt": "2015-09-08T09:07:25Z",
"updatedAt": "2015-09-10T17:07:14Z",
"description": "Pixi.js WebGL using spritesheet"
},
{
"id": "ea9be02dff5b6c3a18e2",
"user": "cool-Blue",
"createdAt": "2015-09-08T20:52:08Z",
"updatedAt": "2015-09-10T17:27:54Z",
"description": "Canvas renderer with texture atlas (spritesheet)"
},
{
"id": "febe139365a1819a6953",
"user": "cool-Blue",
"createdAt": "2015-09-08T20:59:13Z",
"updatedAt": "2015-09-10T17:29:06Z",
"description": "WebGL renderer with multiple sprites"
},
{
"id": "9704fe9249dfbc5c7da9",
"user": "cool-Blue",
"createdAt": "2015-09-08T21:01:38Z",
"updatedAt": "2015-09-10T17:29:58Z",
"description": "Canvas renderer with multiple sprites"
},
{
"id": "23ca2f006b720c784fc2",
"user": "cool-Blue",
"createdAt": "2015-09-10T08:17:53Z",
"updatedAt": "2015-09-10T18:11:47Z",
"description": "SVG speed test"
},
{
"id": "5b3161f6be8bd2baac52",
"user": "cool-Blue",
"createdAt": "2015-09-25T14:33:20Z",
"updatedAt": "2015-09-28T08:10:16Z",
"description": "d3 Force directed graph with node size transitions - velocity.js transitions"
},
{
"id": "5169965",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "5169961",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "5169968",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "5238284",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "5238326",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "835cf2925ba217821434",
"user": "mbostock",
"createdAt": "2016-02-20T01:13:07Z",
"updatedAt": "2016-03-02T11:18:20Z",
"description": "N-Body Problem"
},
{
"id": "4562ac558aa8fb77269c",
"user": "enjalot",
"createdAt": "2016-01-24T02:10:31Z",
"updatedAt": "2016-02-17T18:38:48Z",
"description": "interviewing.io: mean lines"
},
{
"id": "78e3a730e77c677e168c",
"user": "enjalot",
"createdAt": "2016-01-27T23:14:38Z",
"updatedAt": "2016-02-17T18:38:24Z",
"description": "interviewing.io: mean vs stddev"
},
{
"id": "4ee4c58c9dfc2a41ed26",
"user": "micahstubbs",
"createdAt": "2015-12-05T00:09:06Z",
"updatedAt": "2015-12-05T00:19:48Z",
"description": "hexbin with no axes"
},
{
"id": "8c462789ffbb04351a11",
"user": "Kcnarf",
"createdAt": "2016-02-19T14:08:25Z",
"updatedAt": "2016-02-23T14:26:56Z",
"description": "timeline - seasonality detection (II)"
},
{
"id": "89e1e69c888e8241ed92",
"user": "Kcnarf",
"createdAt": "2016-02-11T16:48:02Z",
"updatedAt": "2016-02-22T10:19:19Z",
"description": "timeline - seasonality detection (I)"
},
{
"id": "5118ba2eb78edfcf645e",
"user": "Kcnarf",
"createdAt": "2016-02-23T07:49:38Z",
"updatedAt": "2016-03-18T10:44:41Z",
"description": "timeline - seasonality detection (III)"
},
{
"id": "ebcf02eb69f5bedd86d8",
"user": "sugeerth",
"createdAt": "2016-02-19T03:43:15Z",
"updatedAt": "2016-02-19T21:30:11Z",
"description": "fresh block"
},
{
"id": "77ddbd1e08c11e18a0f7",
"user": "ChristosT",
"createdAt": "2016-02-15T01:05:49Z",
"updatedAt": "2016-02-17T09:38:33Z",
"description": " CS 725 Information Visualization - VI4"
},
{
"id": "08fc85ae18559fe95ad3",
"user": "georules",
"createdAt": "2016-02-16T17:49:40Z",
"updatedAt": "2016-02-16T17:49:40Z",
"description": "oh yes spiral"
},
{
"id": "2d44676382c144219f89",
"user": "N0taN3rd",
"createdAt": "2016-02-16T00:28:39Z",
"updatedAt": "2016-02-16T03:23:44Z",
"description": " Visualization Implementation (VI4)"
},
{
"id": "3ad7359dc3d6f0d25734",
"user": "rpgove",
"createdAt": "2015-12-06T15:47:38Z",
"updatedAt": "2015-12-06T20:34:09Z",
"description": "Heatmap of Force-Directed Graph Node Positions"
},
{
"id": "b97e3930c653ad9eb120",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "a82271eb40bed573f921",
"user": "nitaku",
"createdAt": "2015-12-13T10:20:48Z",
"updatedAt": "2015-12-13T12:16:44Z",
"description": "Polar floating bar chart"
},
{
"id": "4c7a8a89a25bd86a61a8",
"user": "susielu",
"createdAt": "2015-10-13T06:29:48Z",
"updatedAt": "2016-04-15T04:21:49Z",
"description": "Radar Plot Annual Temperature"
},
{
"id": "7d11226f5e1235cbe645",
"user": "boeric",
"createdAt": "2016-01-23T02:54:36Z",
"updatedAt": "2016-01-23T18:07:58Z",
"description": "Adding Day Filter to Crossfilter Example"
},
{
"id": "6c00e5e6106d2db5b08a",
"user": "boeric",
"createdAt": "2015-11-22T17:33:42Z",
"updatedAt": "2016-02-02T05:13:46Z",
"description": "Point in Polygon"
},
{
"id": "b656785e18b8509993ef",
"user": "veltman",
"createdAt": "2016-02-16T03:34:35Z",
"updatedAt": "2016-02-19T14:48:05Z",
"description": "Rainbow spiral"
},
{
"id": "6a922b0fb6abbb815158",
"user": "veltman",
"createdAt": "2015-12-17T16:40:18Z",
"updatedAt": "2015-12-17T17:04:35Z",
"description": "Gif rendering - dynamic SVG"
},
{
"id": "d1b8c76c16ceab5d3b45",
"user": "veltman",
"createdAt": "2016-02-03T23:12:58Z",
"updatedAt": "2016-02-04T19:57:36Z",
"description": "Transition hacking"
},
{
"id": "23460413ea085c024bf8",
"user": "veltman",
"createdAt": "2016-02-04T19:54:31Z",
"updatedAt": "2016-02-04T21:13:31Z",
"description": "Transition hacking with chains"
},
{
"id": "1071413ad6b5b542a1a3",
"user": "veltman",
"createdAt": "2015-12-12T00:10:28Z",
"updatedAt": "2016-03-31T14:14:09Z",
"description": "Gif rendering - SVG to GIF"
},
{
"id": "38149d05ea247cbcebb1",
"user": "veltman",
"createdAt": "2015-11-16T19:49:21Z",
"updatedAt": "2015-11-16T19:49:23Z",
"description": "Hexbin resizing test"
},
{
"id": "68be725ac0c00c790c6f",
"user": "alansmithy",
"createdAt": "2015-02-20T19:13:12Z",
"updatedAt": "2015-08-29T14:15:51Z",
"description": "Anscombe's Quartet with d3js and simple-statistics"
},
{
"id": "5d4eac580beb1fbb0031",
"user": "chillee151",
"createdAt": "2016-02-20T18:58:28Z",
"updatedAt": "2016-02-20T18:58:28Z",
"description": "fresh block"
},
{
"id": "7fdc5a209906a8e6789b",
"user": "chillee151",
"createdAt": "2016-02-20T19:03:50Z",
"updatedAt": "2016-02-20T19:03:51Z",
"description": "fresh block"
},
{
"id": "936ef76e148c655b1058",
"user": "chillee151",
"createdAt": "2016-02-20T19:06:31Z",
"updatedAt": "2016-02-20T19:06:32Z",
"description": "fresh block"
},
{
"id": "e9b3bfc6f43b4bd237e2",
"user": "cmdoptesc",
"createdAt": "2015-07-21T03:26:28Z",
"updatedAt": "2015-08-29T14:25:28Z",
"description": "D3 Arc Progress Gauge / Meter (for d3-js group)"
},
{
"id": "3750941",
"user": "mbostock",
"createdAt": "2012-09-19T17:26:52Z",
"updatedAt": "2016-04-29T16:27:02Z",
"description": "Progress Events"
},
{
"id": "4597134",
"user": "mbostock",
"createdAt": "2013-01-22T18:39:45Z",
"updatedAt": "2016-02-09T02:08:57Z",
"description": "Solar Terminator"
},
{
"id": "e2a20d86124693ef0f93",
"user": "mbostock",
"createdAt": "2014-09-18T03:34:43Z",
"updatedAt": "2016-02-09T01:53:00Z",
"description": "Pencil Sketch"
},
{
"id": "1667139",
"user": "mbostock",
"createdAt": "2012-01-24T01:17:30Z",
"updatedAt": "2016-02-09T01:10:20Z",
"description": "Static Force Layout"
},
{
"id": "ab8cf15534f7fec5ac6d",
"user": "explunit",
"createdAt": "2014-06-30T14:05:26Z",
"updatedAt": "2015-08-29T14:03:16Z",
"description": "d3.layout.partition issue"
},
{
"id": "6eb506b129f585ce5c8a,",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "10699411",
"user": "jebeck",
"createdAt": "2014-04-15T03:21:21Z",
"updatedAt": "2015-11-17T20:51:24Z",
"description": "SVG foreignObject tooltips in D3"
},
{
"id": "d15be2c0ace80aef3503",
"user": "jebeck",
"createdAt": "2014-06-03T06:45:21Z",
"updatedAt": "2015-08-29T14:02:08Z",
"description": "playing with SVG line markers in D3"
},
{
"id": "a639c8d8fb6ad384a8e3",
"user": "jebeck",
"createdAt": "2014-06-04T00:04:16Z",
"updatedAt": "2015-08-29T14:02:11Z",
"description": "second verse...not same as the first"
},
{
"id": "6646844",
"user": "phil-pedruco",
"createdAt": "2013-09-21T03:11:35Z",
"updatedAt": "2016-04-06T13:20:54Z",
"description": "NYC Boroughs in d3"
},
{
"id": "c22e71c05e3c3bfadcae",
"user": "jhubley",
"createdAt": "2015-01-05T01:06:21Z",
"updatedAt": "2015-08-29T14:12:49Z",
"description": "vector tiles plus plotted coordinates"
},
{
"id": "0059f7be7ca91a76b92f",
"user": "johan",
"createdAt": "2015-11-11T03:01:57Z",
"updatedAt": "2016-04-19T13:19:13Z",
"description": "Week Calendar of Life"
},
{
"id": "129f64bfa2b0d48d27c9.",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "7722907",
"user": "radiocontrolled",
"createdAt": "2013-11-30T18:48:16Z",
"updatedAt": "2015-12-29T20:19:11Z",
"description": "Refugee claimants by Canadian region, 2012"
},
{
"id": "b62832e7b32f9afc779c",
"user": "rveciana",
"createdAt": "2015-02-13T14:36:54Z",
"updatedAt": "2015-08-29T14:15:23Z",
"description": "JSL 2015: Coropletas con tooltip"
},
{
"id": "913d0c1716e92e9fe29c",
"user": "rveciana",
"createdAt": "2015-02-11T13:30:52Z",
"updatedAt": "2015-08-29T14:15:14Z",
"description": "JSL 2015: Mapa sencillo usando Canvas"
},
{
"id": "2787020caf01beea88cd",
"user": "rveciana",
"createdAt": "2015-02-11T10:14:50Z",
"updatedAt": "2015-08-29T14:15:14Z",
"description": "JSL 2015: Mapa sencillo"
},
{
"id": "4affa5bdb5e8c87ea5e5",
"user": "rveciana",
"createdAt": "2015-02-11T08:45:59Z",
"updatedAt": "2015-08-29T14:15:14Z",
"description": "JSL 2015: Pie layout animado"
},
{
"id": "20f120d7ab0580f9a8c5",
"user": "rveciana",
"createdAt": "2015-02-11T08:31:45Z",
"updatedAt": "2015-08-29T14:15:14Z",
"description": "JSL 2015: Pie Layout"
},
{
"id": "cbd4c10fed8942c87332",
"user": "rveciana",
"createdAt": "2015-02-10T17:28:48Z",
"updatedAt": "2015-08-29T14:15:09Z",
"description": "JSL 2015: Grรกfico con transiciones"
},
{
"id": "c81710601e2232aaedc0",
"user": "rveciana",
"createdAt": "2015-02-10T17:20:17Z",
"updatedAt": "2015-08-29T14:15:09Z",
"description": "JSL 2015: Grรกfico sencillo"
},
{
"id": "7a4a81224b5bed676b00",
"user": "thedod",
"createdAt": "2015-06-09T20:06:24Z",
"updatedAt": "2015-08-29T14:22:48Z",
"description": "Moved to https://github.com/Knights-of-Redact/DarkenedAges/"
},
{
"id": "fd688356d741dfb8d64f",
"user": "thedod",
"createdAt": "2015-03-16T01:13:01Z",
"updatedAt": "2015-08-29T14:17:11Z",
"description": ".jekyll bookmarklet"
},
{
"id": "12c2e8a92d521144e146",
"user": "thedod",
"createdAt": "2014-12-17T11:34:16Z",
"updatedAt": "2015-08-29T14:11:37Z",
"description": "Twister daily traffic (D3 visualization of TwisterIO stats)"
},
{
"id": "8603837",
"user": "d3noob",
"createdAt": "2014-01-24T19:01:52Z",
"updatedAt": "2016-01-04T09:39:22Z",
"description": "Multiple line graphs with labels"
},
{
"id": "78b14341e39ca0d09131",
"user": "thedod",
"createdAt": "2014-11-20T11:47:28Z",
"updatedAt": "2015-08-29T14:10:01Z",
"description": "WebmentionDressing"
},
{
"id": "755852663855d680c483",
"user": "thedod",
"createdAt": "2014-10-28T04:24:11Z",
"updatedAt": "2015-08-29T14:08:15Z",
"description": "Checkbox to \"criminalizate\" torcriminalbrowser.com :)"
},
{
"id": "bd34c6669837dd50123d",
"user": "tpreusse",
"createdAt": "2015-01-04T13:51:31Z",
"updatedAt": "2015-08-29T14:12:48Z",
"description": "Fast Hoverable Dots beyond 20'000"
},
{
"id": "5ed4473c12c3d4f02670",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "b8a8fcb885b6840bfde5",
"user": "scresawn",
"createdAt": "2016-02-18T15:32:17Z",
"updatedAt": "2016-03-21T00:49:22Z",
"description": "genome browser"
},
{
"id": "01215dfa696fb3ec66f6",
"user": "AdamBlaine1",
"createdAt": "2016-02-25T15:29:20Z",
"updatedAt": "2016-02-25T17:14:08Z",
"description": "genome browser"
},
{
"id": "e263c1e6b71ff8fe0976",
"user": "AdamBlaine1",
"createdAt": "2016-02-23T16:36:36Z",
"updatedAt": "2016-02-23T16:36:36Z",
"description": "genome browser"
},
{
"id": "d5ce25776cb31dde851b",
"user": "BrandonStroud",
"createdAt": "2016-02-23T16:10:18Z",
"updatedAt": "2016-02-23T17:16:21Z",
"description": "genome browser"
},
{
"id": "ccd1b2d7ce54e59e455e",
"user": "BrandonStroud",
"createdAt": "2016-02-23T15:42:07Z",
"updatedAt": "2016-02-23T15:42:07Z",
"description": "fresh block"
},
{
"id": "a679815370ad5e8ce609",
"user": "ChristosT",
"createdAt": "2016-02-21T19:20:52Z",
"updatedAt": "2016-02-22T14:30:39Z",
"description": " CS 725 Information Visualization - VI5"
},
{
"id": "a0c5ef180272fac3aea6",
"user": "bricedev",
"createdAt": "2015-06-10T10:11:43Z",
"updatedAt": "2016-03-24T16:09:22Z",
"description": "Text tween"
},
{
"id": "5e498878a37abb60b902",
"user": "MatteoTomassetti",
"createdAt": "2016-02-24T18:37:15Z",
"updatedAt": "2016-02-24T18:37:16Z",
"description": "Text tween"
},
{
"id": "4e199eb9812a066e7f2d",
"user": "MatteoTomassetti",
"createdAt": "2016-02-24T19:01:24Z",
"updatedAt": "2016-02-24T19:01:24Z",
"description": "Portugal banking"
},
{
"id": "a104fffc6e3c2abc1c8d",
"user": "GeorgeMcIntire",
"createdAt": "2016-02-25T00:28:30Z",
"updatedAt": "2016-02-25T00:28:30Z",
"description": "Portugal banking"
},
{
"id": "96447623ef4d342ee09b",
"user": "NPashaP",
"createdAt": "2014-05-12T02:09:46Z",
"updatedAt": "2015-10-27T04:28:23Z",
"description": "DashBoard"
},
{
"id": "ec585852b2e062860ca2",
"user": "MatteoTomassetti",
"createdAt": "2016-02-24T19:26:18Z",
"updatedAt": "2016-02-24T19:26:19Z",
"description": "fresh block"
},
{
"id": "9b193942e2fc4ac88c6e",
"user": "curran",
"createdAt": "2015-05-08T01:32:45Z",
"updatedAt": "2015-08-29T14:20:46Z",
"description": "Unemployment in San Mateo County"
},
{
"id": "8d667f0989d66f03294b",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "002ba028b31588848738",
"user": "RuiChang123",
"createdAt": "2016-02-25T04:03:32Z",
"updatedAt": "2016-02-25T17:30:06Z",
"description": "Portugal banking age"
},
{
"id": "01b8ae143f94d65541d6",
"user": "jalapic",
"createdAt": "2015-09-09T02:16:28Z",
"updatedAt": "2015-09-09T02:16:46Z",
"description": "Soccer shotplot"
},
{
"id": "8709363",
"user": "llb4ll",
"createdAt": "2014-01-30T14:20:16Z",
"updatedAt": "2015-10-28T21:02:11Z",
"description": "k-nearest-neighbor search using D3 quadtrees"
},
{
"id": "0dfac0e7c3d33fcca86b",
"user": "armollica",
"createdAt": "2015-12-17T16:28:22Z",
"updatedAt": "2016-04-27T03:50:56Z",
"description": "HSL Decomposition"
},
{
"id": "1cccb8a71e8c5aaf6c08",
"user": "armollica",
"createdAt": "2015-12-17T17:00:53Z",
"updatedAt": "2016-04-27T03:53:29Z",
"description": "HSL Decomposition 2"
},
{
"id": "4248146",
"user": "mbostock",
"createdAt": "2012-12-10T03:05:19Z",
"updatedAt": "2016-04-19T16:12:27Z",
"description": "Hexagonal Binning (Area)"
},
{
"id": "4699541",
"user": "mbostock",
"createdAt": "2013-02-02T22:29:57Z",
"updatedAt": "2016-02-09T02:08:33Z",
"description": "Zoom to Bounding Box"
},
{
"id": "6a2d04e4eb8ae8a72223",
"user": "cheneymb",
"createdAt": "2016-02-23T14:50:08Z",
"updatedAt": "2016-02-23T15:35:46Z",
"description": "genome browser"
},
{
"id": "8423351",
"user": "mbostock",
"createdAt": "2014-01-14T18:38:24Z",
"updatedAt": "2016-02-09T01:58:55Z",
"description": "New York Census Tracts"
},
{
"id": "f2540e53c4e327a145d0",
"user": "darrenjaworski",
"createdAt": "2015-05-02T15:51:48Z",
"updatedAt": "2015-08-29T14:20:23Z",
"description": "OK Voting Trends"
},
{
"id": "e552ead70d7baaa77739",
"user": "darrenjaworski",
"createdAt": "2015-05-05T18:56:58Z",
"updatedAt": "2015-08-29T14:20:37Z",
"description": "Voting trends OK Upper House"
},
{
"id": "a0e1406d6bb56ff70269",
"user": "djokicx",
"createdAt": "2016-02-12T22:46:41Z",
"updatedAt": "2016-02-12T22:46:42Z",
"description": "Multi-Series Line Chart"
},
{
"id": "f1b2b824bd9cccea57df",
"user": "dunlapea",
"createdAt": "2016-02-23T16:10:20Z",
"updatedAt": "2016-02-23T16:10:20Z",
"description": "genome browser"
},
{
"id": "7caf3e0c1bff5f4ffaac",
"user": "dunlapea",
"createdAt": "2016-02-23T16:10:25Z",
"updatedAt": "2016-02-23T16:10:25Z",
"description": "genome browser"
},
{
"id": "df79b5724232baa05cb9",
"user": "dunlapea",
"createdAt": "2016-02-23T15:39:31Z",
"updatedAt": "2016-02-23T15:39:31Z",
"description": "fresh block"
},
{
"id": "a1c9688944f950218658",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "2dd0548aee7cd62dd496",
"user": "ericamartel",
"createdAt": "2016-02-25T15:27:53Z",
"updatedAt": "2016-02-25T15:27:53Z",
"description": "genome browser"
},
{
"id": "247b71fdef129a907f35",
"user": "BrandonStroud",
"createdAt": "2016-02-23T15:55:54Z",
"updatedAt": "2016-02-23T15:55:54Z",
"description": "fresh block"
},
{
"id": "c5239219b1c808bd7e02",
"user": "davo",
"createdAt": "2015-10-23T21:04:32Z",
"updatedAt": "2015-10-23T21:19:32Z",
"description": "Bono Scale"
},
{
"id": "36511a38ee44a254c172",
"user": "grybnicky",
"createdAt": "2016-02-23T16:10:24Z",
"updatedAt": "2016-02-23T16:11:54Z",
"description": "genome browser"
},
{
"id": "64b015914153b85419ce",
"user": "hungvietdo",
"createdAt": "2016-02-21T20:42:25Z",
"updatedAt": "2016-02-23T01:22:27Z",
"description": "starbucks in Norfolk"
},
{
"id": "ed790586548e472f1f57",
"user": "hungvietdo",
"createdAt": "2016-02-21T20:55:49Z",
"updatedAt": "2016-02-23T01:23:52Z",
"description": "Starbucks in Norfolk (mousehover)"
},
{
"id": "81807cb241cb4bbbaa6b",
"user": "saraquigley",
"createdAt": "2014-05-31T00:02:56Z",
"updatedAt": "2015-08-29T14:02:01Z",
"description": "Student Census (work in progress)"
},
{
"id": "08d45a1bc009131806bb",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "43c5ecc0fe2199ea84dc",
"user": "jpnoll",
"createdAt": "2016-02-25T15:27:41Z",
"updatedAt": "2016-02-25T16:41:09Z",
"description": "genome browser"
},
{
"id": "646c80e683c3fdecf5b7",
"user": "jpnoll",
"createdAt": "2016-02-23T16:12:55Z",
"updatedAt": "2016-02-23T16:12:56Z",
"description": "Genome Ruler"
},
{
"id": "1a32a92131723a1cc808",
"user": "jpnoll",
"createdAt": "2016-02-23T16:14:09Z",
"updatedAt": "2016-02-23T16:14:09Z",
"description": "Genome Ruler"
},
{
"id": "11ebf3a851e6ad31bd17",
"user": "lambrex",
"createdAt": "2016-02-23T15:38:44Z",
"updatedAt": "2016-02-23T15:38:45Z",
"description": "circles"
},
{
"id": "847da6bc1fd5e0b0579a",
"user": "lambrex",
"createdAt": "2016-02-23T15:03:36Z",
"updatedAt": "2016-02-23T15:03:56Z",
"description": "genome browser"
},
{
"id": "6fbb8fd69c364654bf72",
"user": "laurieskelly",
"createdAt": "2014-10-01T20:17:29Z",
"updatedAt": "2016-02-24T07:14:49Z",
"description": "change colors "
},
{
"id": "8b896db8aac59dac7a37",
"user": "Smith5mr",
"createdAt": "2016-02-04T15:24:09Z",
"updatedAt": "2016-02-04T15:24:10Z",
"description": "Arc Padding II"
},
{
"id": "9476266",
"user": "kenpenn",
"createdAt": "2014-03-10T23:02:20Z",
"updatedAt": "2016-02-24T18:48:52Z",
"description": "d3 gangnam style"
},
{
"id": "e4f3746ed1a7330d7149",
"user": "nadeschda",
"createdAt": "2015-03-29T19:57:11Z",
"updatedAt": "2015-08-29T14:17:59Z",
"description": "Bubbles and penguins"
},
{
"id": "0c1b97dc48a6096ea7ce",
"user": "mcgovemc",
"createdAt": "2016-02-23T14:57:15Z",
"updatedAt": "2016-02-23T14:57:19Z",
"description": "genome browser"
},
{
"id": "51cc5332439939f1f292",
"user": "erikvullings",
"createdAt": "2015-01-23T21:20:03Z",
"updatedAt": "2015-08-29T14:14:01Z",
"description": "Grouped horizontal bar chart."
},
{
"id": "43c7656821069d00dcbc",
"user": "john-guerra",
"createdAt": "2015-05-22T18:31:25Z",
"updatedAt": "2015-08-29T14:21:43Z",
"description": "GeoJson map of Colombia"
},
{
"id": "9c042e3a6b66048b5bd4",
"user": "DStruths",
"createdAt": "2014-09-29T11:07:31Z",
"updatedAt": "2016-04-05T08:51:57Z",
"description": "d3.js Multi-series line chart interactive"
},
{
"id": "3183403",
"user": "mbostock",
"createdAt": "2012-07-26T17:38:33Z",
"updatedAt": "2016-02-09T01:28:29Z",
"description": "Scatterplot with Multiple Series"
},
{
"id": "24aa9dc777bfc295a9e7",
"user": "sjengle",
"createdAt": "2016-02-10T05:49:45Z",
"updatedAt": "2016-02-10T06:04:30Z",
"description": "SF Monthly Property Crime 2005 to 2015"
},
{
"id": "5d0b0777aa681f849090",
"user": "Smith5mr",
"createdAt": "2016-02-23T16:09:03Z",
"updatedAt": "2016-02-23T16:49:00Z",
"description": "genome browser"
},
{
"id": "9904729",
"user": "renecnielsen",
"createdAt": "2014-03-31T23:33:53Z",
"updatedAt": "2015-08-29T13:57:58Z",
"description": "Hierarchical Edge Bundling"
},
{
"id": "fb8e1e6750843954ead0",
"user": "AdamBlaine1",
"createdAt": "2016-03-03T15:28:37Z",
"updatedAt": "2016-03-17T14:31:39Z",
"description": "The genome browser"
},
{
"id": "bbc662a5bf51665cce8b",
"user": "mcgovemc",
"createdAt": "2016-03-15T15:02:27Z",
"updatedAt": "2016-03-15T15:02:27Z",
"description": "genome browser"
},
{
"id": "bd733dc1c154f8a67141",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "e785328c22638497dcb5",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "17b1a9d5f1788c35b255",
"user": "BrandonStroud",
"createdAt": "2016-03-01T16:07:30Z",
"updatedAt": "2016-03-01T16:07:33Z",
"description": "genome browser"
},
{
"id": "ffe781dfde208dd3db46",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "5905838e05c8035329cb",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "e7da8d7aac86fce33bee",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "2312026badf1ad2a6cf4",
"user": "ericamartel",
"createdAt": "2016-02-29T15:47:46Z",
"updatedAt": "2016-02-29T15:47:46Z",
"description": "genome browser"
},
{
"id": "8c67e661fa919f87f182",
"user": "ericamartel",
"createdAt": "2016-02-29T15:52:19Z",
"updatedAt": "2016-02-29T15:52:19Z",
"description": "genome browser"
},
{
"id": "92e1dc0212d0cbf99a82",
"user": "ericamartel",
"createdAt": "2016-02-29T16:19:28Z",
"updatedAt": "2016-02-29T16:19:28Z",
"description": "genome browser"
},
{
"id": "7a96660b378c800623b3",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "feea3abda43402ab3e10",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "31f947147d5191a179fb",
"user": "ChristosT",
"createdAt": "2016-03-13T02:17:59Z",
"updatedAt": "2016-03-16T13:01:04Z",
"description": "CS 725 Information Visualization - V7"
},
{
"id": "1a8f3cd64bb8fed6e4d7",
"user": "Darius9",
"createdAt": "2016-02-04T14:51:08Z",
"updatedAt": "2016-02-04T14:51:08Z",
"description": "fresh block"
},
{
"id": "3048740",
"user": "mbostock",
"createdAt": "2012-07-04T18:25:00Z",
"updatedAt": "2016-02-09T01:26:06Z",
"description": "Stacked Radial Area"
},
{
"id": "3680957",
"user": "mbostock",
"createdAt": "2012-09-08T23:22:52Z",
"updatedAt": "2016-02-26T10:58:10Z",
"description": "SVG Semantic Zooming"
},
{
"id": "12f6d6a5e0dfafa925d5",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "1662a0d9d7aae71554f5",
"user": "GordonSmith",
"createdAt": "2016-03-01T17:41:40Z",
"updatedAt": "2016-03-02T11:17:50Z",
"description": "Router"
},
{
"id": "346f4d967650b27c0511",
"user": "mbostock",
"createdAt": "2016-03-08T23:11:50Z",
"updatedAt": "2016-03-09T13:40:20Z",
"description": "Chained Transitions II"
},
{
"id": "a6f4f74a628d844e6afb",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "66daabcfeed118d590f6",
"user": "Jay-Oh-eN",
"createdAt": "2016-03-02T23:55:09Z",
"updatedAt": "2016-03-03T00:01:53Z",
"description": "The Simplest Scatter"
},
{
"id": "32db87891b734b6c7267",
"user": "Jay-Oh-eN",
"createdAt": "2016-03-03T00:02:19Z",
"updatedAt": "2016-03-03T02:23:05Z",
"description": "A Simpler Scatter (color added)"
},
{
"id": "9692795",
"user": "d3noob",
"createdAt": "2014-03-21T18:34:27Z",
"updatedAt": "2015-08-29T13:57:35Z",
"description": "Interactive Linux process tree using d3.js"
},
{
"id": "181f76d7757214982fb7",
"user": "d3noob",
"createdAt": "2014-08-25T06:23:51Z",
"updatedAt": "2015-09-11T09:00:46Z",
"description": "Interactive IP Diagram"
},
{
"id": "2f6a6195cbe89d10f5f4",
"user": "chemplexity",
"createdAt": "2014-11-11T13:54:39Z",
"updatedAt": "2015-08-29T14:09:16Z",
"description": "Interactive Mass Spectrometer"
},
{
"id": "57f23fbddd23a0386030",
"user": "SpaceActuary",
"createdAt": "2015-12-28T23:59:50Z",
"updatedAt": "2016-04-25T14:31:08Z",
"description": "Walmarts"
},
{
"id": "2af6e6e47935190936b1",
"user": "Golodhros",
"createdAt": "2015-02-21T19:38:47Z",
"updatedAt": "2015-11-29T19:37:01Z",
"description": "TDD Bar Chart"
},
{
"id": "9496f251f085f5e9e1b3",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "e1aa61856118edfa624d",
"user": "d3noob",
"createdAt": "2014-06-20T21:02:21Z",
"updatedAt": "2016-03-11T03:25:07Z",
"description": "d3.js Graph with many features"
},
{
"id": "7830074",
"user": "larskotthoff",
"createdAt": "2013-12-06T18:44:38Z",
"updatedAt": "2015-12-30T12:39:04Z",
"description": ""
},
{
"id": "ea811f8916c1585d5b25",
"user": "MatteoTomassetti",
"createdAt": "2016-02-26T17:55:18Z",
"updatedAt": "2016-02-26T17:55:18Z",
"description": "fresh block"
},
{
"id": "f4035e412a7822abf074",
"user": "RuiChang123",
"createdAt": "2016-02-24T23:07:17Z",
"updatedAt": "2016-02-24T23:07:47Z",
"description": "Portugal banking"
},
{
"id": "4d79d0cdb41a16903b7e",
"user": "MatteoTomassetti",
"createdAt": "2016-02-24T19:39:18Z",
"updatedAt": "2016-02-24T19:39:19Z",
"description": "DashBoard"
},
{
"id": "f1ba6bef2fc906b87dbf",
"user": "N0taN3rd",
"createdAt": "2016-03-16T00:12:29Z",
"updatedAt": "2016-03-16T01:40:50Z",
"description": "Visualization Implementation (VI7)"
},
{
"id": "29c2c89bcdf66c2553c2",
"user": "SpaceActuary",
"createdAt": "2014-12-02T05:07:28Z",
"updatedAt": "2015-08-29T14:10:38Z",
"description": "Bar Chart Transitions - Positive to Negative"
},
{
"id": "4c0c9844596a2d00938a",
"user": "SpaceActuary",
"createdAt": "2016-03-11T15:44:37Z",
"updatedAt": "2016-03-11T19:17:14Z",
"description": "Trapezoid Charts"
},
{
"id": "54181ad2cb45d7e41ac8",
"user": "SpaceActuary",
"createdAt": "2016-03-11T19:17:16Z",
"updatedAt": "2016-03-11T21:04:09Z",
"description": "Trapezoid Charts 2"
},
{
"id": "8482820",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "fbb43f7cf188fa8f2d15",
"user": "enjalot",
"createdAt": "2016-03-13T21:18:26Z",
"updatedAt": "2016-03-13T21:35:41Z",
"description": "The Counted: simple example"
},
{
"id": "9f3884a9f9474e9beedd",
"user": "TheLady",
"createdAt": "2016-03-13T21:51:22Z",
"updatedAt": "2016-03-13T21:51:23Z",
"description": "The Counted: simple example"
},
{
"id": "00c36fbe045e5d0290fc",
"user": "nguyenbq",
"createdAt": "2016-02-25T15:27:02Z",
"updatedAt": "2016-03-17T16:09:03Z",
"description": "Genome Viewer"
},
{
"id": "93e01a9c651ebb8f0968",
"user": "devssunil",
"createdAt": "2016-03-15T15:18:27Z",
"updatedAt": "2016-03-24T15:37:51Z",
"description": "sdfgsg"
},
{
"id": "955beda9851111b7c4b1",
"user": "dunlapea",
"createdAt": "2016-03-15T14:53:08Z",
"updatedAt": "2016-03-15T14:53:12Z",
"description": "genome browser"
},
{
"id": "dce660b60d70576d6447",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "545566453d4c45d1f4a3",
"user": "dunlapea",
"createdAt": "2016-03-17T14:23:51Z",
"updatedAt": "2016-03-17T14:23:51Z",
"description": "genome browser"
},
{
"id": "f6db3b84de562142fe4b",
"user": "dunlapea",
"createdAt": "2016-03-17T14:36:08Z",
"updatedAt": "2016-03-17T14:36:09Z",
"description": "genome browser"
},
{
"id": "d4b565886655a0abc5c7",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "e8185bbbad170b3a0c36",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "8913c15adf7dd2cab53a",
"user": "guilhermesimoes",
"createdAt": "2014-11-26T10:49:05Z",
"updatedAt": "2016-05-05T12:44:40Z",
"description": "D3.js: Animating Stacked-to-Grouped Bars"
},
{
"id": "bc356e3f186aa30a239e",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "aaf91df5a899e655183b",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "9c001d2ad72ea5c8f91c",
"user": "ericamartel",
"createdAt": "2016-03-15T15:30:43Z",
"updatedAt": "2016-03-17T16:08:53Z",
"description": "genome browser"
},
{
"id": "6597d49c362dbc61b961",
"user": "ericamartel",
"createdAt": "2016-03-15T14:52:32Z",
"updatedAt": "2016-03-15T14:52:32Z",
"description": "fresh block"
},
{
"id": "5994804",
"user": "KoGor",
"createdAt": "2013-07-14T16:17:27Z",
"updatedAt": "2016-04-17T10:02:46Z",
"description": "Earth globe"
},
{
"id": "2a7a7eecb9a75347241b",
"user": "mattdh666",
"createdAt": "2015-10-22T21:02:17Z",
"updatedAt": "2015-10-30T23:08:25Z",
"description": "Arc Bubble Connector Chart"
},
{
"id": "fb082e67cd821b4362ef",
"user": "etpinard",
"createdAt": "2016-03-09T20:05:54Z",
"updatedAt": "2016-03-09T22:23:25Z",
"description": "scatter inner nodes ordering"
},
{
"id": "b956ee7215b7b50bc78a",
"user": "xaranke",
"createdAt": "2015-12-05T21:03:01Z",
"updatedAt": "2015-12-05T21:38:20Z",
"description": "d3-hexbin demo"
},
{
"id": "320859ff9f2e2576cebf",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "a1a7d04bdd34c2096eaf",
"user": "fabid",
"createdAt": "2016-03-01T15:26:06Z",
"updatedAt": "2016-03-02T14:50:44Z",
"description": "Rectangular binning - 2d histogram"
},
{
"id": "0c4cf357ab5ed3e90382",
"user": "fabid",
"createdAt": "2016-03-01T16:18:25Z",
"updatedAt": "2016-03-02T14:50:07Z",
"description": "d3-heatmap"
},
{
"id": "024452c42b94723b401d",
"user": "fabid",
"createdAt": "2016-03-01T18:28:35Z",
"updatedAt": "2016-03-02T15:09:41Z",
"description": "d3-returntimemap"
},
{
"id": "1d8085294b6094e617e9",
"user": "grybnicky",
"createdAt": "2016-03-03T15:41:32Z",
"updatedAt": "2016-03-03T15:41:32Z",
"description": "genome browser"
},
{
"id": "a3cd99de2763a9a696d1",
"user": "grybnicky",
"createdAt": "2016-03-03T15:58:54Z",
"updatedAt": "2016-03-03T16:07:31Z",
"description": "genome browser with GC"
},
{
"id": "13933a693dc8fac38c62",
"user": "grybnicky",
"createdAt": "2016-03-15T15:06:39Z",
"updatedAt": "2016-03-15T15:06:39Z",
"description": "genome browser with GC"
},
{
"id": "ca8be4b4c8a9336d4bef",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "db6533daf51fb05b0af6",
"user": "grybnicky",
"createdAt": "2016-03-01T05:42:50Z",
"updatedAt": "2016-03-01T05:42:50Z",
"description": "genome browser with numbering, color, reverse, and stagger"
},
{
"id": "7aa370b761c4763c0901",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "c8bb2ca99a6a3b894217",
"user": "grybnicky",
"createdAt": "2016-03-01T16:10:27Z",
"updatedAt": "2016-03-01T16:10:28Z",
"description": "genome browser with numbering, color, reverse, and stagger"
},
{
"id": "ed16bc3c6fe8c4b051db",
"user": "grybnicky",
"createdAt": "2016-03-01T16:57:49Z",
"updatedAt": "2016-03-01T16:57:49Z",
"description": "genome browser with numbering, color, reverse, and stagger"
},
{
"id": "90c4cfd299ca35bc54d8",
"user": "grybnicky",
"createdAt": "2016-03-01T17:16:03Z",
"updatedAt": "2016-03-01T17:16:03Z",
"description": "genome browser with numbering, color, reverse, and stagger"
},
{
"id": "7402f55e19e1e609f014",
"user": "enjalot",
"createdAt": "2016-03-04T03:23:05Z",
"updatedAt": "2016-03-05T07:11:24Z",
"description": "Node splitting"
},
{
"id": "36014350348825ded276",
"user": "enjalot",
"createdAt": "2016-03-12T17:18:07Z",
"updatedAt": "2016-03-12T18:06:30Z",
"description": "rigid links"
},
{
"id": "0568c594c55b8951b94c",
"user": "mathnathan",
"createdAt": "2016-03-12T18:31:16Z",
"updatedAt": "2016-03-12T18:31:16Z",
"description": "rigid links"
},
{
"id": "fd78a64d3ff9f03907c4",
"user": "enjalot",
"createdAt": "2016-03-12T18:56:32Z",
"updatedAt": "2016-03-15T20:57:39Z",
"description": "polygroups visualization"
},
{
"id": "41f5078afab7c67e7da1",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "9d0251925a6bf6409533",
"user": "margeigh",
"createdAt": "2016-02-26T03:26:04Z",
"updatedAt": "2016-02-26T03:26:04Z",
"description": "Foundations of D3: Data Binding Scope"
},
{
"id": "201b1e8e5a25dfcf76d4",
"user": "margeigh",
"createdAt": "2016-02-26T03:29:23Z",
"updatedAt": "2016-02-26T03:29:23Z",
"description": "Foundations of D3: Data Binding Scope"
},
{
"id": "26b6602160cd14c7e143",
"user": "margeigh",
"createdAt": "2016-02-26T03:37:32Z",
"updatedAt": "2016-02-26T03:37:32Z",
"description": "Foundations of D3: Data Binding Scope"
},
{
"id": "5cc8033ab729fbd9a4c9",
"user": "margeigh",
"createdAt": "2016-02-26T03:41:33Z",
"updatedAt": "2016-02-26T03:41:33Z",
"description": "Foundations of D3: Data Binding Scope"
},
{
"id": "eb69ef5fbcd2330a7d61",
"user": "enjalot",
"createdAt": "2016-03-15T19:00:28Z",
"updatedAt": "2016-03-23T16:58:46Z",
"description": "polygroups visualization: activate"
},
{
"id": "2472e84f78fd03df443f",
"user": "mbostock",
"createdAt": "2015-04-22T19:36:42Z",
"updatedAt": "2016-02-09T01:51:25Z",
"description": "Spiral Circle"
},
{
"id": "12cf7435eb7ccdbd8d02",
"user": "mdcscry",
"createdAt": "2015-01-02T04:54:56Z",
"updatedAt": "2015-08-29T14:12:37Z",
"description": "Veggie 2014 Show Reel"
},
{
"id": "ab8b613ca00de4f31b05",
"user": "mdcscry",
"createdAt": "2015-01-04T17:15:48Z",
"updatedAt": "2015-08-29T14:12:48Z",
"description": "VeggieCirclePack 2014"
},
{
"id": "7bb89480b28f189fafd3",
"user": "mdcscry",
"createdAt": "2015-01-04T20:33:58Z",
"updatedAt": "2015-08-29T14:12:49Z",
"description": "VeggieBurst 2014"
},
{
"id": "9406077edb5a01d13d02",
"user": "mcgovemc",
"createdAt": "2016-03-16T01:20:44Z",
"updatedAt": "2016-04-19T15:28:12Z",
"description": "genome browser with tool tip ####"
},
{
"id": "1028a3ee9ab4642199db",
"user": "mcgovemc",
"createdAt": "2016-03-16T19:01:30Z",
"updatedAt": "2016-03-17T14:45:47Z",
"description": "genome browser %"
},
{
"id": "090f603aa3ef1c5fcf0b",
"user": "mcgovemc",
"createdAt": "2016-03-03T15:33:02Z",
"updatedAt": "2016-03-03T15:33:02Z",
"description": "genome browser"
},
{
"id": "bf8dbe207e9aa4c74b21",
"user": "mcgovemc",
"createdAt": "2016-03-15T13:40:00Z",
"updatedAt": "2016-03-15T13:40:01Z",
"description": "genome browser"
},
{
"id": "226400b0aa581adfc005",
"user": "piggysmacks",
"createdAt": "2015-03-28T19:42:33Z",
"updatedAt": "2015-08-29T14:17:55Z",
"description": "Canadian RRSP Contributions"
},
{
"id": "abdff74d4f8ebf9b3350",
"user": "Wanagram",
"createdAt": "2016-02-25T15:28:09Z",
"updatedAt": "2016-04-12T16:02:21Z",
"description": "genome browser"
},
{
"id": "c16d4bf5e677045e9b94",
"user": "mcgovemc",
"createdAt": "2016-03-01T16:38:18Z",
"updatedAt": "2016-03-01T17:16:19Z",
"description": "genome browser"
},
{
"id": "8d48064f03c22ae1a539",
"user": "mcgovemc",
"createdAt": "2016-03-03T14:44:35Z",
"updatedAt": "2016-03-03T14:44:36Z",
"description": "genome browser"
},
{
"id": "1a9be2065a006dc3c9a5",
"user": "karenpeng",
"createdAt": "2015-10-17T22:53:47Z",
"updatedAt": "2015-10-18T02:38:48Z",
"description": "Clock"
},
{
"id": "d30e1f3cd1f7219bd0e5",
"user": "diepvf",
"createdAt": "2016-02-25T16:09:25Z",
"updatedAt": "2016-02-25T17:09:07Z",
"description": "genome browser"
},
{
"id": "ffc1ad9489acbabcb937",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "3fa3c1a523c8f3c2cfb9",
"user": "micahstubbs",
"createdAt": "2016-02-09T22:03:03Z",
"updatedAt": "2016-03-12T21:59:27Z",
"description": "Sankey Particles with only inline styles"
},
{
"id": "91413c56af0868268933",
"user": "n1n9-jp",
"createdAt": "2016-03-13T16:03:18Z",
"updatedAt": "2016-03-13T18:07:34Z",
"description": "fresh block"
},
{
"id": "f5922ed4d0ac1ac2161f",
"user": "jasondavies",
"createdAt": "2014-08-06T08:33:58Z",
"updatedAt": "2015-08-29T14:04:56Z",
"description": "Rotated hexbin"
},
{
"id": "775cce58f4f2e5421355",
"user": "pnavarrc",
"createdAt": "2015-10-16T16:19:15Z",
"updatedAt": "2015-10-16T16:23:38Z",
"description": "Simple SVG Path Demo"
},
{
"id": "1627dc5aaca75bc77b84",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "fa7344ac3c910b62e6a9",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "a0e6dddb419a7ef87519",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "de3ee03f25aa9f134ecf",
"user": "tomshanley",
"createdAt": "2016-01-11T04:06:55Z",
"updatedAt": "2016-02-21T21:48:47Z",
"description": "Force directed graph using tabletop.js and shortestpath"
},
{
"id": "3918369",
"user": "ZJONSSON",
"createdAt": "2012-10-19T13:59:56Z",
"updatedAt": "2015-10-11T20:58:08Z",
"description": "d3.legend example"
},
{
"id": "c9b90689c1438f57d649",
"user": "d3noob",
"createdAt": "2014-06-25T21:21:16Z",
"updatedAt": "2016-04-09T06:28:08Z",
"description": "Sankey from csv with d3.js"
},
{
"id": "4063663,",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "2647924,",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "3885705.",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "6bbb0a7ff7686b124d80",
"user": "mbostock",
"createdAt": "2016-03-16T22:20:37Z",
"updatedAt": "2016-05-03T18:35:08Z",
"description": "Treemap"
},
{
"id": "1804919,",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "1182434",
"user": "stepheneb",
"createdAt": "2011-08-30T23:52:21Z",
"updatedAt": "2016-04-20T20:21:40Z",
"description": "D3 Example: zoom, pan, and axis rescale"
},
{
"id": "e66a84e0bccbf91685b5",
"user": "zaccagbj",
"createdAt": "2016-03-15T14:05:30Z",
"updatedAt": "2016-03-15T14:05:44Z",
"description": "Flag of France"
},
{
"id": "6c6dd78bb6502e14b2f2",
"user": "zaccagbj",
"createdAt": "2016-02-25T15:29:51Z",
"updatedAt": "2016-03-01T17:16:59Z",
"description": "genome browser"
},
{
"id": "62d611e1819e283ce27b",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "4ec215b40c1d559fcb2a",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "9c856f4944e50b734b85",
"user": "AdamBlaine1",
"createdAt": "2016-03-17T15:35:37Z",
"updatedAt": "2016-03-24T14:17:59Z",
"description": "The genome browser"
},
{
"id": "f2befd433e182193027dfa1d1b7a65d4",
"user": "BDAguila",
"createdAt": "2016-04-12T15:23:32Z",
"updatedAt": "2016-04-12T15:23:32Z",
"description": "fresh block"
},
{
"id": "19c88beca509ce5195643099f5740838",
"user": "BDAguila",
"createdAt": "2016-04-12T15:33:34Z",
"updatedAt": "2016-04-26T02:17:17Z",
"description": "fresh block"
},
{
"id": "9409231fdbdc710dcbb46cff643f86c9",
"user": "ericamartel",
"createdAt": "2016-04-26T01:17:54Z",
"updatedAt": "2016-04-26T01:17:58Z",
"description": "fresh block"
},
{
"id": "c185b3758e7fd011f9a32a3c0b806839",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "42f1c37f325999025db3",
"user": "BDAguila",
"createdAt": "2016-03-24T14:10:58Z",
"updatedAt": "2016-03-29T13:43:50Z",
"description": "genome browser"
},
{
"id": "cc6cd97c95a80f35c824cc24a5bf0f6d",
"user": "ericamartel",
"createdAt": "2016-04-07T14:50:13Z",
"updatedAt": "2016-04-12T16:13:51Z",
"description": "genome browser"
},
{
"id": "2e1f2a94cd49a429cda6d5a3d77e5271",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "33881b1947efe610b0e743580af093f8",
"user": "BrandonStroud",
"createdAt": "2016-04-12T15:56:10Z",
"updatedAt": "2016-04-12T15:56:13Z",
"description": "genome browser"
},
{
"id": "3f6b48f9c5d72fb14fafc28ed3129a9f",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "6d57db7d251fbf26360cb88a7f5a7296",
"user": "BrandonStroud",
"createdAt": "2016-04-19T15:02:27Z",
"updatedAt": "2016-04-19T15:54:18Z",
"description": "genome browser"
},
{
"id": "751159e6a2290ab4417e5deac63adec1",
"user": "ericamartel",
"createdAt": "2016-04-19T15:55:18Z",
"updatedAt": "2016-04-19T15:55:18Z",
"description": "genome browser"
},
{
"id": "7574590639a3fd654d87f02db11bddb1",
"user": "ericamartel",
"createdAt": "2016-04-19T16:08:26Z",
"updatedAt": "2016-04-27T12:34:25Z",
"description": "genome browser"
},
{
"id": "a2746196ad4c3a2d46e416d27c52d2cf",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "e0408aa623ee83b1eb8d",
"user": "BrandonStroud",
"createdAt": "2016-03-15T14:53:03Z",
"updatedAt": "2016-03-24T15:55:44Z",
"description": "genome browser"
},
{
"id": "9327a6642682b87430ec",
"user": "scresawn",
"createdAt": "2016-03-22T03:40:46Z",
"updatedAt": "2016-03-22T14:28:29Z",
"description": "A Bar Chart"
},
{
"id": "af2040b064e5d2e2e589",
"user": "BrandonStroud",
"createdAt": "2016-03-22T14:59:46Z",
"updatedAt": "2016-03-22T14:59:48Z",
"description": "A Bar Chart"
},
{
"id": "6c785c7a03a258e4d5ff",
"user": "scresawn",
"createdAt": "2016-03-22T13:03:35Z",
"updatedAt": "2016-04-15T14:07:29Z",
"description": "Flag of Sweden"
},
{
"id": "7800481",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "9bae6529ccab4b902a50",
"user": "CBasis",
"createdAt": "2016-02-07T11:14:22Z",
"updatedAt": "2016-02-07T11:14:22Z",
"description": "d3.js wiki visualization"
},
{
"id": "9954190",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "6a8a2a34f8e185c00b17f005c7e12bb0",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "ba2ffcaaf8c8b7541661",
"user": "Darius9",
"createdAt": "2016-03-15T15:33:04Z",
"updatedAt": "2016-03-17T16:12:31Z",
"description": "genome browser(testing1)"
},
{
"id": "1300420",
"user": "ZJONSSON",
"createdAt": "2011-10-20T04:31:24Z",
"updatedAt": "2015-09-27T16:47:49Z",
"description": "Contour Test using Jason Davis implementation with D3"
},
{
"id": "6f75c878ed70887a3045eb1ac2b6b7f1",
"user": "EE2dev",
"createdAt": "2016-04-20T22:42:52Z",
"updatedAt": "2016-04-25T21:09:13Z",
"description": "Math test"
},
{
"id": "5993342",
"user": "nsonnad",
"createdAt": "2013-07-14T05:51:40Z",
"updatedAt": "2015-12-19T17:39:18Z",
"description": "Circle-bound D3 force layout"
},
{
"id": "8241b9338930f081275090c4d421b4bc",
"user": "Jay-Oh-eN",
"createdAt": "2016-05-03T20:30:03Z",
"updatedAt": "2016-05-03T20:30:05Z",
"description": "Single Multiple"
},
{
"id": "c649af7f141a700dca817b97386147f9",
"user": "Jay-Oh-eN",
"createdAt": "2016-05-03T20:30:08Z",
"updatedAt": "2016-05-04T00:02:02Z",
"description": "Multiple Multiples"
},
{
"id": "5da8fc981efc46180000cc749b99465d",
"user": "Jay-Oh-eN",
"createdAt": "2016-04-28T19:44:50Z",
"updatedAt": "2016-04-30T16:39:00Z",
"description": "SF AirBnB Listings: Pie Chart"
},
{
"id": "8232e0e796a6dbddc33caffe4929d985",
"user": "Jay-Oh-eN",
"createdAt": "2016-04-30T16:39:02Z",
"updatedAt": "2016-04-30T16:43:40Z",
"description": "SF AirBnB Listings: Pie Chart with Text Annotation"
},
{
"id": "a6e0ca2e13082ec099da",
"user": "Jay-Oh-eN",
"createdAt": "2015-11-15T16:47:53Z",
"updatedAt": "2016-04-26T21:23:17Z",
"description": "Thematic Mapping: Bubble Map "
},
{
"id": "f372f1555d1ab41dadd1",
"user": "Jay-Oh-eN",
"createdAt": "2015-11-23T05:55:38Z",
"updatedAt": "2015-12-20T18:27:09Z",
"description": "An Experiment in Sketching: Visualizing SF AirBnB Listings"
},
{
"id": "9233f6d414461ea0046b",
"user": "Jay-Oh-eN",
"createdAt": "2015-12-19T23:43:34Z",
"updatedAt": "2016-04-11T10:48:17Z",
"description": "National Day of Civic Hacking: Learning D3.js (part 1)"
},
{
"id": "d4a745960538e937dcde13f61e9893f1",
"user": "Kcnarf",
"createdAt": "2016-05-04T12:02:28Z",
"updatedAt": "2016-05-04T13:35:51Z",
"description": "Beeswarm + maintain x-position of nodes"
},
{
"id": "91c5e84bed1ba6b1541deaa5d5f4f258",
"user": "Kcnarf",
"createdAt": "2016-04-15T07:49:17Z",
"updatedAt": "2016-05-04T11:59:46Z",
"description": "ForceLayout - maintain x-position of nodes"
},
{
"id": "4289018",
"user": "christophermanning",
"createdAt": "2012-12-14T21:58:21Z",
"updatedAt": "2015-10-14T01:47:59Z",
"description": "Unknown Pleasures"
},
{
"id": "6a0b4488bc60ea61eb887bf4d1f9b2b5",
"user": "Kcnarf",
"createdAt": "2016-04-15T15:26:45Z",
"updatedAt": "2016-04-16T13:33:06Z",
"description": "Force Layout - faster final arrangement"
},
{
"id": "151f6344ffd02105a67a",
"user": "bjtucker",
"createdAt": "2016-02-18T06:57:19Z",
"updatedAt": "2016-02-18T08:07:20Z",
"description": "Bounded Force Layout - force rank by group"
},
{
"id": "57a65321cec564a5689e",
"user": "Lincoln-Jiang",
"createdAt": "2016-03-19T00:32:25Z",
"updatedAt": "2016-03-25T17:56:11Z",
"description": "New Born"
},
{
"id": "18093c83ec7e02db0e4c",
"user": "bricedev",
"createdAt": "2015-05-22T13:38:30Z",
"updatedAt": "2016-03-24T15:54:50Z",
"description": "Radar Chart (Football Manager)"
},
{
"id": "e6a1a8b53e87cadd00aa",
"user": "Sokrates86",
"createdAt": "2016-01-12T19:25:43Z",
"updatedAt": "2016-04-05T18:15:17Z",
"description": "alkoholi-kulutus-kuolema"
},
{
"id": "3914862",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "7ac04d6c0797b583c5c79bea0dcb2a3f",
"user": "SpaceActuary",
"createdAt": "2016-04-29T04:31:26Z",
"updatedAt": "2016-04-29T05:25:40Z",
"description": "Mini Chart"
},
{
"id": "6fd7a74709e6d24bf327439c62a3f1c1",
"user": "SpaceActuary",
"createdAt": "2016-05-03T15:41:21Z",
"updatedAt": "2016-05-06T16:42:48Z",
"description": "Mini Charts"
},
{
"id": "b408e03229958635c43b",
"user": "SpaceActuary",
"createdAt": "2016-03-25T03:28:23Z",
"updatedAt": "2016-03-28T20:46:49Z",
"description": "Bugle Charts"
},
{
"id": "4055889",
"user": "mbostock",
"createdAt": "2012-11-11T19:02:00Z",
"updatedAt": "2016-04-19T15:38:57Z",
"description": "Pseudo-Demers Cartogram"
},
{
"id": "9a92db9794c21d576087",
"user": "SpaceActuary",
"createdAt": "2016-03-18T20:26:03Z",
"updatedAt": "2016-03-18T20:26:31Z",
"description": "Pseudo-Demers Cartogram"
},
{
"id": "8da9fcf564d2f741898c",
"user": "SpaceActuary",
"createdAt": "2015-09-24T23:54:33Z",
"updatedAt": "2015-09-24T23:54:35Z",
"description": "State Grid"
},
{
"id": "53fe9d373ca3b3e20632f69c5169a59d",
"user": "scresawn",
"createdAt": "2016-05-05T03:46:06Z",
"updatedAt": "2016-05-05T13:47:50Z",
"description": "final exam question 2"
},
{
"id": "0e47490515380fe464762d02a8550f6e",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "ac8dcde01f39b9525a1285cccd4bac2a",
"user": "scresawn",
"createdAt": "2016-05-05T03:19:58Z",
"updatedAt": "2016-05-05T13:06:34Z",
"description": "final exam question 1"
},
{
"id": "3ebcb8084741076a01a07c98b7449644",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "c122ba168c306cd35491",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "29b10c89555759dc9894",
"user": "xaranke",
"createdAt": "2015-11-22T16:19:00Z",
"updatedAt": "2015-11-22T16:19:01Z",
"description": ""
},
{
"id": "f8b3e2e0d36eae73cfbe",
"user": "pathowe",
"createdAt": "2015-04-25T20:46:35Z",
"updatedAt": "2015-08-29T14:19:55Z",
"description": "CA Water Use and Wealth"
},
{
"id": "9921862",
"user": "danharr",
"createdAt": "2014-04-01T19:58:47Z",
"updatedAt": "2015-08-29T13:57:59Z",
"description": "Path transition"
},
{
"id": "107ffc782c1c96f88198",
"user": "Jay-Oh-eN",
"createdAt": "2015-12-19T20:25:31Z",
"updatedAt": "2016-04-15T23:13:38Z",
"description": "Animated Line Chart"
},
{
"id": "6077924ac8ca383454b928d7565f2ce7",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "14fcf6f266e877cb1c23",
"user": "jalapic",
"createdAt": "2016-02-26T15:03:52Z",
"updatedAt": "2016-02-27T00:00:09Z",
"description": "network fade"
},
{
"id": "d7aabf5d5cde392e5b9c",
"user": "hugolpz",
"createdAt": "2014-05-10T08:49:28Z",
"updatedAt": "2015-08-29T14:01:14Z",
"description": "ColorBrewer2.org - color advices for cartography"
},
{
"id": "ce23ed7d2d72545f956d",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "9078690",
"user": "mbostock",
"createdAt": "2014-02-18T19:54:58Z",
"updatedAt": "2016-02-09T01:58:39Z",
"description": "Quadtree Search"
},
{
"id": "1593f53c0c8346d067491f39255d0b84",
"user": "armollica",
"createdAt": "2016-04-24T03:10:10Z",
"updatedAt": "2016-04-24T03:31:26Z",
"description": "K-D Tree Nearest Neighbors (k-NN)"
},
{
"id": "7c0bd51dab6b9665a315fef06c436f27",
"user": "armollica",
"createdAt": "2016-04-18T02:27:38Z",
"updatedAt": "2016-04-18T03:00:09Z",
"description": "Triangular Binning I"
},
{
"id": "dcfa9c27db140183bd87f3fc90efaf10",
"user": "armollica",
"createdAt": "2016-04-18T02:45:31Z",
"updatedAt": "2016-04-18T02:58:21Z",
"description": "Triangular Binning II"
},
{
"id": "4055892",
"user": "mbostock",
"createdAt": "2012-11-11T19:03:48Z",
"updatedAt": "2016-03-29T23:24:43Z",
"description": "Pseudo-Dorling Cartogram"
},
{
"id": "b4aa88691528c0f0b1fa",
"user": "curran",
"createdAt": "2015-09-01T01:44:28Z",
"updatedAt": "2015-09-09T23:55:25Z",
"description": "Chiasm Foundation"
},
{
"id": "e98e438c05eba9b8882412ca79af1c6f",
"user": "baramuyu",
"createdAt": "2016-04-27T00:52:07Z",
"updatedAt": "2016-04-27T20:17:49Z",
"description": "Chiasm Foundation"
},
{
"id": "814c00f234349de899ef0d95649974e9",
"user": "baramuyu",
"createdAt": "2016-04-27T20:18:34Z",
"updatedAt": "2016-04-27T20:43:30Z",
"description": "Chiasm Foundation"
},
{
"id": "cb9da9f0caa674dc908708336645f0dd",
"user": "baramuyu",
"createdAt": "2016-04-27T05:20:46Z",
"updatedAt": "2016-04-27T05:27:58Z",
"description": "Chiasm Bar Chart and Line Chart"
},
{
"id": "5440492",
"user": "mbostock",
"createdAt": "2013-04-23T02:59:34Z",
"updatedAt": "2016-02-09T02:06:24Z",
"description": "Hello WebGL"
},
{
"id": "1bc8659b52b35b8a320f3fefb7275ef5",
"user": "bmershon",
"createdAt": "2016-04-30T18:35:28Z",
"updatedAt": "2016-05-05T21:08:47Z",
"description": "Triangle to Square"
},
{
"id": "6276c0db5b24cf6bfea02b9dd72c378d",
"user": "bmershon",
"createdAt": "2016-05-07T20:55:17Z",
"updatedAt": "2016-05-08T19:54:27Z",
"description": "Triangle to Triangle I"
},
{
"id": "73a90dd4229f8941b7f79df8b2c8505d",
"user": "bmershon",
"createdAt": "2016-04-30T18:57:24Z",
"updatedAt": "2016-05-08T19:52:51Z",
"description": "Sutherland-Hodgman Clipping"
},
{
"id": "7608400",
"user": "mbostock",
"createdAt": "2013-11-22T23:05:16Z",
"updatedAt": "2016-04-27T08:26:46Z",
"description": "Voronoi Arc Map"
},
{
"id": "6aabd8141934e8e14e6be90f53a9d4c5",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "28821b58b36a81d36a6a814ecdbdc037",
"user": "cherdarchuk",
"createdAt": "2016-05-06T02:24:58Z",
"updatedAt": "2016-05-06T02:24:58Z",
"description": "Pulse Animations"
},
{
"id": "d6b7f134335ddc4d12a3e143f81304d8",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "2966094",
"user": "mbostock",
"createdAt": "2012-06-21T14:40:25Z",
"updatedAt": "2016-03-20T21:52:57Z",
"description": "Pedigree Tree"
},
{
"id": "8d863db116f226727c71",
"user": "cheneymb",
"createdAt": "2016-02-25T15:30:46Z",
"updatedAt": "2016-02-25T17:08:56Z",
"description": "genome browser blocks "
},
{
"id": "f10cc2aae3346197db79",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "7284af8efdcb3147c5cd",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "cbd8935c9aefcf917b71",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "eae9d46883ef3abbefb6",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "252c62c1d31140b2225a",
"user": "cheneymb",
"createdAt": "2016-03-15T13:55:35Z",
"updatedAt": "2016-03-15T14:13:17Z",
"description": "flag of france "
},
{
"id": "d8e6b71a2417b41c0e20",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "688c63b865e7045e9f90",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "2711104124b17df3fb32",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "a12b12097ff4684be947",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "aacb4470b7e230615eac",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "735c8063f00c773ef1dea78f62a321fa",
"user": "curran",
"createdAt": "2016-04-17T10:33:29Z",
"updatedAt": "2016-04-20T11:10:09Z",
"description": "Margin Convention II with ReactiveModel"
},
{
"id": "6f97aa94357cae4611c54a80c11f6128",
"user": "curran",
"createdAt": "2016-04-20T10:13:51Z",
"updatedAt": "2016-04-21T13:40:42Z",
"description": "Responsive Axes with ReactiveModel"
},
{
"id": "b8e76dd7003538975b3e81e86ac6dd1e",
"user": "curran",
"createdAt": "2016-04-16T07:36:06Z",
"updatedAt": "2016-04-17T17:11:05Z",
"description": "Margin Convention with ReactiveModel"
},
{
"id": "974c9def890f8ac0172611921fb51b8a",
"user": "curran",
"createdAt": "2016-04-14T13:30:52Z",
"updatedAt": "2016-04-16T07:52:20Z",
"description": "Responding to Resize with ReactiveModel"
},
{
"id": "05780c9eb997b86eab76",
"user": "curran",
"createdAt": "2015-05-16T19:34:21Z",
"updatedAt": "2015-08-29T14:21:22Z",
"description": "ModelJS firstName lastName"
},
{
"id": "50886cd6ce3537b18638",
"user": "malcolm-decuire",
"createdAt": "2016-02-20T21:53:37Z",
"updatedAt": "2016-03-14T22:54:15Z",
"description": "McCann Style Map: USA 1860 CENSUS"
},
{
"id": "8622315",
"user": "devgru",
"createdAt": "2014-01-25T19:43:40Z",
"updatedAt": "2016-01-04T12:29:55Z",
"description": "Simple stream + interpolation, layout offset & axes"
},
{
"id": "a05b3ac17407e5d1d9cc989f882125af",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "e14c09b73d241d89536cd81b35771215",
"user": "devgru",
"createdAt": "2016-04-24T10:05:30Z",
"updatedAt": "2016-04-24T10:05:30Z",
"description": "Simple stream 2016"
},
{
"id": "5485fa28d3fdd422930b53ab330f96e3",
"user": "devssunil",
"createdAt": "2016-04-26T15:31:23Z",
"updatedAt": "2016-04-26T15:45:41Z",
"description": "D3 Dynamic Array of Tables"
},
{
"id": "5e8a3647300966f14ab228ba4a81bb82",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "24cfa24e5ccf212d4fc91a1983ead4f5",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "681bfd06a86a6d5e237c",
"user": "devssunil",
"createdAt": "2016-03-24T15:25:15Z",
"updatedAt": "2016-03-29T02:58:21Z",
"description": "Genome Viewer Final"
},
{
"id": "2cce0f9305ec755a53e7",
"user": "devssunil",
"createdAt": "2016-02-25T15:27:01Z",
"updatedAt": "2016-02-25T17:09:59Z",
"description": "genome browser"
},
{
"id": "2c6fa34a28b157e78a22fc93800f0bc7",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "6222544da1551c11d55b505edf4b88fa",
"user": "lambrex",
"createdAt": "2016-04-07T15:48:04Z",
"updatedAt": "2016-04-07T18:57:04Z",
"description": "genome browser"
},
{
"id": "dcd52a1daf6b00e5f0afa9b32e2ca043",
"user": "lambrex",
"createdAt": "2016-04-12T15:06:17Z",
"updatedAt": "2016-04-21T14:18:04Z",
"description": "genome browser abundance version"
},
{
"id": "f8bacc54b016d6ea014e54d81f2b7e48",
"user": "jpnoll",
"createdAt": "2016-04-19T14:35:26Z",
"updatedAt": "2016-04-21T16:13:28Z",
"description": "genome browser abundance version"
},
{
"id": "4d7dfded54d1e2162265862ffb178f4a",
"user": "scresawn",
"createdAt": "2016-04-22T19:27:39Z",
"updatedAt": "2016-04-22T19:40:05Z",
"description": "genome browser abundance version"
},
{
"id": "9d49a219f72d8958313eb7fd9f236936",
"user": "lambrex",
"createdAt": "2016-04-22T19:42:41Z",
"updatedAt": "2016-04-28T14:44:58Z",
"description": "genome browser abundance version"
},
{
"id": "77fe31d25ee5c4d03dfe0e0a4cc6e1ba",
"user": "diepvf",
"createdAt": "2016-04-26T15:33:18Z",
"updatedAt": "2016-04-26T15:33:19Z",
"description": "genome browser abundance version"
},
{
"id": "9af100fc77a16361d043",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "7b750aac02c274ce7be1a2ec65681b6b",
"user": "dunlapea",
"createdAt": "2016-04-05T14:51:40Z",
"updatedAt": "2016-04-05T16:12:31Z",
"description": "genome browser"
},
{
"id": "adf2f396ed6f7a06bcee6e03a6f2a375",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "e594934db447063ce886b35c2e3ea0c3",
"user": "dunlapea",
"createdAt": "2016-04-07T14:33:13Z",
"updatedAt": "2016-04-07T15:58:24Z",
"description": "genome browser"
},
{
"id": "63b313292ecb948800fb1bebaef690b3",
"user": "dunlapea",
"createdAt": "2016-04-12T14:02:59Z",
"updatedAt": "2016-04-19T16:04:57Z",
"description": "genome browser"
},
{
"id": "73d2088a4754f9a3b46db81c3a12ca42",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "752ff3769123dd6f733dd1a0fd139698",
"user": "dunlapea",
"createdAt": "2016-04-19T13:59:26Z",
"updatedAt": "2016-04-19T16:11:01Z",
"description": "genome browser"
},
{
"id": "8e82406ccf2abef3600b5c63db1830ca",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "0bc494cbfc5dab3fbea588a6a7cc0cdb",
"user": "dunlapea",
"createdAt": "2016-04-21T14:08:27Z",
"updatedAt": "2016-04-21T16:11:57Z",
"description": "genome browser"
},
{
"id": "e08d1b622815450a47a52deb8644533d",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "e844a36eff424d262f3de5d9baa16b91",
"user": "dunlapea",
"createdAt": "2016-04-26T15:54:13Z",
"updatedAt": "2016-04-26T15:54:14Z",
"description": "genome browser"
},
{
"id": "1e629563fec7314eae2a09fa71d732a7",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "237c8eea17f00059191c179f1452ebbf",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "4e114e528f1184baf4f067f181a4b4c7",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "c43c04a7fe0185ff10e0cc0c8d5ef625",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "ea33bdf3e6d636ecd1bb9f1febd0125e",
"user": "dunlapea",
"createdAt": "2016-04-12T16:09:14Z",
"updatedAt": "2016-04-12T16:10:24Z",
"description": "genome browser"
},
{
"id": "01c1ea5c8ed48d5a8070e5c00b20f5fc",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "f65bdcfc2f39d3717709357e2f8fd03e",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "34dc0e1aaabac24684ec622da2add7e9",
"user": "eoiny",
"createdAt": "2016-04-07T15:16:52Z",
"updatedAt": "2016-04-07T15:16:53Z",
"description": "fresh block"
},
{
"id": "54b835498f0288d2affc5c2d021864d1",
"user": "eoiny",
"createdAt": "2016-04-07T15:27:47Z",
"updatedAt": "2016-04-07T15:27:48Z",
"description": "barNotes"
},
{
"id": "a1169104fd3d0b78a2b60a2f099e0391",
"user": "eoiny",
"createdAt": "2016-04-07T15:46:14Z",
"updatedAt": "2016-04-07T15:46:14Z",
"description": "barNotes"
},
{
"id": "2338f36048aaa1372f386daa32bf624c",
"user": "eoiny",
"createdAt": "2016-04-12T18:36:18Z",
"updatedAt": "2016-04-12T18:36:19Z",
"description": "barNotes"
},
{
"id": "dde8f503ef6ea72edc8f3212896497d7",
"user": "eoiny",
"createdAt": "2016-04-12T18:40:42Z",
"updatedAt": "2016-04-12T18:40:42Z",
"description": "barNotes"
},
{
"id": "7c4f11418ebb53a997531c718e760f7c",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "deda5442d64c34186b537f11751004aa",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "0271e40675307d3aede5cecdad5715e0",
"user": "eoiny",
"createdAt": "2016-04-12T22:45:42Z",
"updatedAt": "2016-04-12T22:45:43Z",
"description": "barNotes"
},
{
"id": "1919bd8c2f574caa17ba",
"user": "enjalot",
"createdAt": "2015-11-20T00:54:18Z",
"updatedAt": "2015-11-24T00:22:39Z",
"description": "State Grid Minimap"
},
{
"id": "338b7fcd478eea7af0eec61f3c5e8c1b",
"user": "rogerfischer",
"createdAt": "2016-04-11T23:59:37Z",
"updatedAt": "2016-04-11T23:59:38Z",
"description": "SF Precincts"
},
{
"id": "c9455b842a01f6907020",
"user": "mbostock",
"createdAt": "2015-10-16T03:51:49Z",
"updatedAt": "2016-02-09T01:49:11Z",
"description": "Revised D3 Logo"
},
{
"id": "5606736552160acb3351",
"user": "enjalot",
"createdAt": "2016-03-29T05:09:57Z",
"updatedAt": "2016-03-29T05:50:25Z",
"description": "Quadtree Tree"
},
{
"id": "676bfe2b6e67e61e0656",
"user": "enjalot",
"createdAt": "2016-03-24T22:49:54Z",
"updatedAt": "2016-04-11T20:32:40Z",
"description": "topojson on a map: setup-gl"
},
{
"id": "e8a86832273485ce08d1",
"user": "enjalot",
"createdAt": "2016-03-24T21:48:24Z",
"updatedAt": "2016-04-15T03:09:57Z",
"description": "mapbox: omnivore.topojson"
},
{
"id": "373e03ed01dfcf97d985",
"user": "emeeks",
"createdAt": "2015-07-26T01:47:59Z",
"updatedAt": "2016-03-17T02:04:19Z",
"description": "Networks - Graphs 6"
},
{
"id": "da3f27dd8be82859b45e14898aa7fce0",
"user": "BDAguila",
"createdAt": "2016-04-26T14:28:26Z",
"updatedAt": "2016-04-26T16:17:48Z",
"description": "fresh block"
},
{
"id": "32d4c5badc4534da66b827122d6a1831",
"user": "ericamartel",
"createdAt": "2016-04-27T01:32:56Z",
"updatedAt": "2016-04-28T12:38:14Z",
"description": "fresh block"
},
{
"id": "ba1beb933b849d986453f374c9cfd206",
"user": "ericamartel",
"createdAt": "2016-04-28T12:38:24Z",
"updatedAt": "2016-04-28T12:38:24Z",
"description": "fresh block"
},
{
"id": "b895d79139c315b4a14c7c4f63a9b00e",
"user": "ericamartel",
"createdAt": "2016-04-28T12:39:00Z",
"updatedAt": "2016-05-02T23:12:46Z",
"description": "fresh block"
},
{
"id": "db4dcb20e68ee366eb4c253399a3ad5d",
"user": "ericamartel",
"createdAt": "2016-04-27T20:58:35Z",
"updatedAt": "2016-04-27T20:58:35Z",
"description": "fresh block"
},
{
"id": "4bfacbc47612de727bf99a32d632abc3",
"user": "ericamartel",
"createdAt": "2016-04-27T21:11:58Z",
"updatedAt": "2016-04-27T21:11:59Z",
"description": "fresh block"
},
{
"id": "f8eaa285348a91b74ff2bed44d4af44f",
"user": "ericamartel",
"createdAt": "2016-04-27T21:16:46Z",
"updatedAt": "2016-04-27T21:16:46Z",
"description": "fresh block"
},
{
"id": "b28c34585d071b6937fdf74b9a85bca4",
"user": "ericamartel",
"createdAt": "2016-04-27T21:21:51Z",
"updatedAt": "2016-04-27T21:22:17Z",
"description": "fresh block"
},
{
"id": "ede8ef37272abcb60013f885b6736d63",
"user": "ericamartel",
"createdAt": "2016-04-27T21:25:31Z",
"updatedAt": "2016-04-27T21:25:31Z",
"description": "fresh block"
},
{
"id": "f48e7435ff4bb34180e744b0786c57de",
"user": "ericamartel",
"createdAt": "2016-04-27T21:26:18Z",
"updatedAt": "2016-04-27T21:26:19Z",
"description": "fresh block"
},
{
"id": "b88b41124a4e1a398f8443041c41e24f",
"user": "ericamartel",
"createdAt": "2016-04-27T21:28:42Z",
"updatedAt": "2016-04-27T21:28:43Z",
"description": "fresh block"
},
{
"id": "7c0354016ccc2f7974d84714dc8e8d4a",
"user": "ericamartel",
"createdAt": "2016-04-27T21:29:41Z",
"updatedAt": "2016-04-27T21:29:41Z",
"description": "fresh block"
},
{
"id": "0d1bfe27165765ed03f8f175ce8680f1",
"user": "ericamartel",
"createdAt": "2016-04-27T21:31:03Z",
"updatedAt": "2016-04-27T21:31:04Z",
"description": "fresh block"
},
{
"id": "627517c6d7a1b1384bce3f5402fbb9c4",
"user": "ericamartel",
"createdAt": "2016-04-27T21:31:45Z",
"updatedAt": "2016-04-27T21:31:46Z",
"description": "fresh block"
},
{
"id": "ed2735e3952c35c92852410c21d15f46",
"user": "ericamartel",
"createdAt": "2016-04-27T21:32:27Z",
"updatedAt": "2016-04-27T21:32:27Z",
"description": "fresh block"
},
{
"id": "25f855bb1f47666b42962a82216dfd3e",
"user": "ericamartel",
"createdAt": "2016-04-27T21:33:07Z",
"updatedAt": "2016-04-27T21:33:07Z",
"description": "fresh block"
},
{
"id": "b29a3572b3e3f19e7a22b18ef9134920",
"user": "BrandonStroud",
"createdAt": "2016-04-26T01:40:57Z",
"updatedAt": "2016-04-26T01:41:03Z",
"description": "fresh block"
},
{
"id": "0c86d72ef8214c4c155cc223f7138aa8",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "2070069",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "9029781",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "61cbfe14de686cc25c47",
"user": "fabid",
"createdAt": "2016-03-19T13:46:39Z",
"updatedAt": "2016-03-19T13:56:53Z",
"description": "d3 x3dom axes"
},
{
"id": "50f0b4412292163bf4b50d06253994ae",
"user": "grybnicky",
"createdAt": "2016-04-07T15:51:40Z",
"updatedAt": "2016-04-07T17:33:38Z",
"description": "Repeat finder circle ruler"
},
{
"id": "f8f62045f69c65e3514cfe20f33fb9f1",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "b4f37349887a4c178ef93ed855153605",
"user": "grybnicky",
"createdAt": "2016-04-07T18:02:26Z",
"updatedAt": "2016-04-08T17:58:45Z",
"description": "Repeat finder circle ruler arc genes"
},
{
"id": "1431967216e048fcb4890445e1741c7c",
"user": "grybnicky",
"createdAt": "2016-04-18T01:12:41Z",
"updatedAt": "2016-04-19T14:08:38Z",
"description": "Repeat finder circle ruler arc genes"
},
{
"id": "59d18946ec237fe864d70b811a62eddd",
"user": "grybnicky",
"createdAt": "2016-04-19T14:08:40Z",
"updatedAt": "2016-04-19T14:40:33Z",
"description": "Repeat finder circle ruler arc genes line gen"
},
{
"id": "9be28947eccefb1ac05598b8fbc53d27",
"user": "grybnicky",
"createdAt": "2016-04-19T15:11:13Z",
"updatedAt": "2016-04-21T01:42:21Z",
"description": "Repeat finder circle ruler arc genes line gen keystone numbering"
},
{
"id": "0bbec668d5ba6765cc908eafd6c556fc",
"user": "grybnicky",
"createdAt": "2016-04-21T01:53:02Z",
"updatedAt": "2016-04-21T02:15:54Z",
"description": "Repeat finder circle ruler arc genes line gen keystone numbering path attempt1"
},
{
"id": "7d41f75647bdc4fef8736442db42bad0",
"user": "grybnicky",
"createdAt": "2016-04-21T14:04:30Z",
"updatedAt": "2016-04-21T16:21:35Z",
"description": "Repeat finder circle ruler arc genes line gen keystone numbering Tool tip"
},
{
"id": "afc1b005be34f64b495b259263733b35",
"user": "grybnicky",
"createdAt": "2016-04-22T14:46:36Z",
"updatedAt": "2016-04-22T15:02:23Z",
"description": "Repeat finder circle ruler arc genes line gen keystone numbering Tool tip repeat connect attempt1"
},
{
"id": "33505001b3f4ff96c29fcb15425b561b",
"user": "scresawn",
"createdAt": "2016-04-22T20:10:49Z",
"updatedAt": "2016-04-22T21:13:47Z",
"description": "Repeat finder circle ruler arc genes line gen keystone numbering Tool tip repeat connect attempt1"
},
{
"id": "90056c4e88c140345ac8a52b8999cf1c",
"user": "grybnicky",
"createdAt": "2016-04-23T21:39:45Z",
"updatedAt": "2016-04-24T00:00:06Z",
"description": "Repeat finder circle ruler arc genes line gen keystone numbering Tool tip repeat connect attempt1"
},
{
"id": "0762f972ce5785f6efd4b975f2a95ff5",
"user": "grybnicky",
"createdAt": "2016-04-24T00:00:32Z",
"updatedAt": "2016-04-26T14:46:07Z",
"description": "Repeat finder circle ruler arc genes line gen keystone numbering Tool tip repeat connect line tool tips"
},
{
"id": "5f080cc5f6d000b6540bded03b3dc133",
"user": "grybnicky",
"createdAt": "2016-04-26T14:48:19Z",
"updatedAt": "2016-04-26T14:58:40Z",
"description": "Repeat finder circle ruler arc genes line gen keystone numbering Tool tip repeat connect line random color tool tips"
},
{
"id": "d390147f53cbcf8094b6aefea8791fc8",
"user": "grybnicky",
"createdAt": "2016-04-26T14:58:43Z",
"updatedAt": "2016-04-26T16:09:28Z",
"description": "Wheel animated Repeat finder circle ruler arc genes line gen keystone numbering Tool tip repeat connect line random color tool tips"
},
{
"id": "10ec8a6104532975417a",
"user": "grybnicky",
"createdAt": "2016-03-24T16:12:30Z",
"updatedAt": "2016-03-24T16:12:30Z",
"description": "arc"
},
{
"id": "6c3c37cde8f7ccf01c22",
"user": "JohnWall64",
"createdAt": "2016-03-21T04:54:40Z",
"updatedAt": "2016-03-21T04:54:40Z",
"description": "fresh block"
},
{
"id": "58abc7c39f8bcd04de56",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "302096884d5fbc1817062492605b50dd",
"user": "emeeks",
"createdAt": "2016-04-30T03:41:45Z",
"updatedAt": "2016-04-30T03:52:21Z",
"description": "D3v4 Constraint-Based Layout"
},
{
"id": "62cf60e116ae821c06602793d265eaf6",
"user": "nbremer",
"createdAt": "2016-04-03T11:23:11Z",
"updatedAt": "2016-05-03T20:41:49Z",
"description": "Linear SVG Gradient - Traffic accidents per Day & Hour combination"
},
{
"id": "f19a850f12d4e87b5bbc",
"user": "mgold",
"createdAt": "2015-10-09T20:25:06Z",
"updatedAt": "2015-10-09T20:25:06Z",
"description": "Dice roll probabilities"
},
{
"id": "7f8df0bcd7fba7e531e6",
"user": "hungvietdo",
"createdAt": "2016-03-12T03:25:19Z",
"updatedAt": "2016-03-19T04:41:34Z",
"description": "VI7: Node-link diagram and Adjacency matrix"
},
{
"id": "0020bebb012760de0d54",
"user": "jalapic",
"createdAt": "2016-02-27T01:48:49Z",
"updatedAt": "2016-02-27T17:48:21Z",
"description": "network fade 2"
},
{
"id": "f130a6e93e73d65252b3",
"user": "armollica",
"createdAt": "2016-03-05T05:12:20Z",
"updatedAt": "2016-03-05T05:19:36Z",
"description": "Teacher Wages"
},
{
"id": "dd2ef348ad8854e40ef2",
"user": "arnicas",
"createdAt": "2016-03-05T18:43:53Z",
"updatedAt": "2016-03-05T18:58:27Z",
"description": "TSNE Plot of Yelp Reviews"
},
{
"id": "6283b087a0dc28847fc5",
"user": "jalapic",
"createdAt": "2016-03-04T04:50:08Z",
"updatedAt": "2016-03-05T05:02:02Z",
"description": "gini curves"
},
{
"id": "7fb90a103f08924c195b",
"user": "jfost00",
"createdAt": "2016-03-04T21:51:13Z",
"updatedAt": "2016-03-06T05:30:42Z",
"description": "Subway Wait Assessment"
},
{
"id": "c5c0dc2b940556820c03",
"user": "johangithub",
"createdAt": "2016-02-26T01:45:59Z",
"updatedAt": "2016-02-27T15:49:38Z",
"description": "AFSC Utility by Multi-Barchart"
},
{
"id": "c226dbce63ad3451526e",
"user": "jfost00",
"createdAt": "2016-02-12T00:12:45Z",
"updatedAt": "2016-02-12T00:12:45Z",
"description": "Slider Control"
},
{
"id": "93491e923d72e81df769",
"user": "armollica",
"createdAt": "2016-02-18T23:47:59Z",
"updatedAt": "2016-04-21T03:15:29Z",
"description": "Bubbly Jobs Chart"
},
{
"id": "dddf616d4f71475c4611",
"user": "armollica",
"createdAt": "2015-12-09T03:05:10Z",
"updatedAt": "2015-12-09T03:17:30Z",
"description": "Fantasy Football Scores"
},
{
"id": "599ec84b819b1aedf0b4",
"user": "armollica",
"createdAt": "2016-02-21T17:42:01Z",
"updatedAt": "2016-04-21T03:15:31Z",
"description": "NBA Attendance"
},
{
"id": "7315455",
"user": "officeofjane",
"createdAt": "2013-11-05T08:03:45Z",
"updatedAt": "2015-12-27T10:59:15Z",
"description": "Small multiple bar charts with tooltips"
},
{
"id": "1d92188e24e00be362c4",
"user": "jalapic",
"createdAt": "2016-02-24T20:05:27Z",
"updatedAt": "2016-02-26T04:24:35Z",
"description": "network"
},
{
"id": "3202354",
"user": "mbostock",
"createdAt": "2012-07-29T22:49:02Z",
"updatedAt": "2016-02-09T01:29:13Z",
"description": "Heatmap (2D Histogram, CSV)"
},
{
"id": "93c5c349be14f459c98a",
"user": "fernoftheandes",
"createdAt": "2015-02-10T14:43:09Z",
"updatedAt": "2015-08-29T14:15:09Z",
"description": "Stacked-to-Multiples (improved)"
},
{
"id": "24699e2002b4cea23615",
"user": "jjelosua",
"createdAt": "2016-03-15T17:05:26Z",
"updatedAt": "2016-03-15T17:05:27Z",
"description": "d3intro_ex02"
},
{
"id": "ab293c5472d02639ca4f",
"user": "jjelosua",
"createdAt": "2016-03-11T10:32:43Z",
"updatedAt": "2016-03-14T11:47:48Z",
"description": "d3intro_exercise_selection"
},
{
"id": "8ff54b5cc0640152c563",
"user": "jjelosua",
"createdAt": "2015-11-07T01:33:58Z",
"updatedAt": "2016-03-09T18:47:11Z",
"description": "d3intro_ex21"
},
{
"id": "bd880dbc71d2307e2a5b",
"user": "jjelosua",
"createdAt": "2016-03-11T09:32:31Z",
"updatedAt": "2016-03-11T09:54:02Z",
"description": "d3intro_exercise_data_w_key_solved"
},
{
"id": "c2dcbd3e6be86be18fdd",
"user": "cool-Blue",
"createdAt": "2015-08-21T19:25:59Z",
"updatedAt": "2016-04-02T04:53:21Z",
"description": "stacked bar chart with dynamic axes and labels"
},
{
"id": "929623",
"user": "mbostock",
"createdAt": "2011-04-19T20:51:03Z",
"updatedAt": "2016-02-08T23:58:09Z",
"description": "Build Your Own Graph!"
},
{
"id": "a1ddd09a2fcb2e3b8b4f2f4eebc42fe8",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "6d82369df87b69de06c881a6fab26fa3",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "88bdcbb4df5e19d76be5f1395b945e69",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "e97d147eba8ae3c5ec947066102ac20a",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "f1a7eef2cb85dcec1099bb5055a6c1b7",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "289b9e2ff6eac28f1ac9628760d5ee98",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "d91c02419e4cefffaa99fcd8a47f4cd5",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "7c73b5d3f77b002bf317dda247fee38c",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "92f30ad16a71ca33d58e8debeabc636d",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "9aaeb3d4f24c6482f33c3abe36052e80",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "88a6ae13b4452bcd07450973d397b7e9",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "02b10ce9289dd197383c4ae473d9c095",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "ee1ea6e5a7490d1e95a9ae7dc77d5b85",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "7da81d2bcc373c8c05a3756588475d10",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "b5daffd5c2fd2ed6d3a7fe0070feb6ff",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "0df62623640301b282547365d1b85781",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "fd7120b1c3850bd9f08fa668a5685133",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "e0c1096d513177eb46f5f6f127d57997",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "95685c2bcf9407e687d6",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "94e7aebb7eb975291d9b",
"user": "jpmarindiaz",
"createdAt": "2016-03-08T04:50:42Z",
"updatedAt": "2016-03-08T04:50:42Z",
"description": "fresh block"
},
{
"id": "e949444235af20478188",
"user": "jpnoll",
"createdAt": "2016-03-17T14:42:11Z",
"updatedAt": "2016-03-17T14:42:11Z",
"description": "genome browser with GC"
},
{
"id": "d1b6461efdf225f53d0f",
"user": "jpnoll",
"createdAt": "2016-03-17T14:56:08Z",
"updatedAt": "2016-03-17T14:56:09Z",
"description": "genome browser with GC"
},
{
"id": "0dfef7aa92676a47b201",
"user": "jpnoll",
"createdAt": "2016-03-17T15:01:09Z",
"updatedAt": "2016-03-17T15:01:09Z",
"description": "genome browser"
},
{
"id": "b16dad1cea69952f5b72",
"user": "jpnoll",
"createdAt": "2016-03-17T15:53:14Z",
"updatedAt": "2016-03-17T15:53:14Z",
"description": "genome browser"
},
{
"id": "a675d439b9ed06a856bb",
"user": "jpnoll",
"createdAt": "2016-03-17T16:02:16Z",
"updatedAt": "2016-03-17T16:02:16Z",
"description": "genome browser"
},
{
"id": "15f248c6c898e216157e",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "1935509",
"user": "lgrammel",
"createdAt": "2012-02-28T21:55:28Z",
"updatedAt": "2015-10-01T06:08:10Z",
"description": "Streamgraph Chart"
},
{
"id": "3b3ae1013968c0a1613b",
"user": "judyyzhang",
"createdAt": "2016-03-13T21:21:38Z",
"updatedAt": "2016-03-13T21:21:39Z",
"description": "fresh block"
},
{
"id": "41c811c603360c27d0ae",
"user": "judyyzhang",
"createdAt": "2016-03-13T21:21:58Z",
"updatedAt": "2016-03-13T21:21:58Z",
"description": "Counter"
},
{
"id": "87cf840dd72fef25ac24",
"user": "judyyzhang",
"createdAt": "2016-03-13T21:47:37Z",
"updatedAt": "2016-03-13T21:47:38Z",
"description": "Counter"
},
{
"id": "bde995eccb68a6294dd9",
"user": "judyyzhang",
"createdAt": "2016-03-13T21:55:24Z",
"updatedAt": "2016-03-13T21:55:24Z",
"description": "Counter"
},
{
"id": "ba54603cfa4b6d7222c0",
"user": "judyyzhang",
"createdAt": "2016-03-13T22:01:48Z",
"updatedAt": "2016-03-13T22:01:48Z",
"description": "Counter"
},
{
"id": "ae6182ca1fe27cc0fe47",
"user": "judyyzhang",
"createdAt": "2016-03-13T21:20:01Z",
"updatedAt": "2016-03-13T21:20:01Z",
"description": "fresh block"
},
{
"id": "e3844e2c5390464fd6f8",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "3426132",
"user": "tmcw",
"createdAt": "2012-08-22T14:31:03Z",
"updatedAt": "2016-01-05T17:12:07Z",
"description": "MapBox + d3"
},
{
"id": "13fa3e31fed7834eee10",
"user": "RandomEtc",
"createdAt": "2015-09-05T15:37:06Z",
"updatedAt": "2015-09-05T15:50:36Z",
"description": "D3 Australia Conformal Conic"
},
{
"id": "6c5d8728fe5ca9beef38",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "6944484",
"user": "syntagmatic",
"createdAt": "2013-10-12T01:20:35Z",
"updatedAt": "2015-12-25T08:09:09Z",
"description": "Canvas Force-Directed Graph"
},
{
"id": "7fedb282aca4df15b0d4",
"user": "lambrex",
"createdAt": "2016-03-03T15:29:38Z",
"updatedAt": "2016-03-15T14:53:28Z",
"description": "genome browser"
},
{
"id": "ddd41979fd8e96c976f6",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "c7cf338b400b90b04f95",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "9ffb265094d8dffb8627",
"user": "lambrex",
"createdAt": "2016-03-17T15:13:36Z",
"updatedAt": "2016-03-24T16:08:48Z",
"description": "genome browser"
},
{
"id": "eaab03204fa1acac43ea",
"user": "cheneymb",
"createdAt": "2016-03-15T16:09:06Z",
"updatedAt": "2016-03-17T16:05:09Z",
"description": "Genome Viewer"
},
{
"id": "b18d0144ce09e1acee26",
"user": "nguyenbq",
"createdAt": "2016-03-17T15:45:30Z",
"updatedAt": "2016-03-17T16:09:10Z",
"description": "Genome Viewer"
},
{
"id": "5588163",
"user": "JohnDelacour",
"createdAt": "2013-05-15T23:12:16Z",
"updatedAt": "2015-12-17T09:29:24Z",
"description": "Translate and Rotate 2"
},
{
"id": "0102759ebcb977f2a98b",
"user": "wcjohnson11",
"createdAt": "2015-11-08T17:37:06Z",
"updatedAt": "2015-11-08T17:37:06Z",
"description": "Animate path in D3"
},
{
"id": "ab83762b1564e62d1f48",
"user": "alignedleft",
"createdAt": "2015-11-20T17:14:14Z",
"updatedAt": "2015-11-20T17:14:48Z",
"description": "Map circles text"
},
{
"id": "7557092",
"user": "phil-pedruco",
"createdAt": "2013-11-20T03:16:27Z",
"updatedAt": "2016-03-21T16:25:05Z",
"description": "Click to zoom with table and map in D3"
},
{
"id": "c532c8703547cf148006",
"user": "Jay-Oh-eN",
"createdAt": "2015-11-11T18:39:08Z",
"updatedAt": "2015-12-20T04:59:18Z",
"description": "The Data Scientist's Guide to Apache Spark: Interactive Visualization of Results"
},
{
"id": "ad1fdd93515647ec49fc",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "887677acf92b55b3accd739e77c60fe4",
"user": "Wanagram",
"createdAt": "2016-04-05T16:02:49Z",
"updatedAt": "2016-04-07T11:21:28Z",
"description": "genome browser with tool tip "
},
{
"id": "e68bb0a4b1018f4824cb117237ede980",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "ac5b726c53ec02618de7795429c6f833",
"user": "syntagmatic",
"createdAt": "2016-05-08T00:11:15Z",
"updatedAt": "2016-05-08T01:06:17Z",
"description": "Baseball Scatterplot Matrix"
},
{
"id": "5246b8a643393f0753a11b98129a3237",
"user": "micahstubbs",
"createdAt": "2016-05-07T22:45:06Z",
"updatedAt": "2016-05-07T22:50:08Z",
"description": "canvas links positioning woes"
},
{
"id": "e330141d1279c6115a3a",
"user": "emeeks",
"createdAt": "2014-11-19T05:15:28Z",
"updatedAt": "2016-03-17T02:25:49Z",
"description": "Ch. 11, Fig. 10 - D3.js in Action"
},
{
"id": "c6d3072074b1a9f717cf66068f34d8b6",
"user": "dhoboy",
"createdAt": "2016-04-27T20:07:28Z",
"updatedAt": "2016-05-04T03:51:37Z",
"description": "China Air Quality Canvas"
},
{
"id": "1061eef4ce7545bdd52537dcef952e7e",
"user": "syntagmatic",
"createdAt": "2016-05-04T03:51:37Z",
"updatedAt": "2016-05-04T07:20:10Z",
"description": "Air Quality Calendars"
},
{
"id": "1b731e38bd106c0c4028819cf812da5e",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "428036f0f948a5c2b95f8a4b91931ee6",
"user": "micahstubbs",
"createdAt": "2016-04-19T02:12:22Z",
"updatedAt": "2016-04-20T02:53:35Z",
"description": "ES2015 Sequences Sunburst"
},
{
"id": "b7e78429ce54abc2154f",
"user": "micahstubbs",
"createdAt": "2016-03-02T15:26:55Z",
"updatedAt": "2016-03-12T21:58:54Z",
"description": "Sankey Particles - Transparent Links"
},
{
"id": "e787e283b8cf9d5a8f8a",
"user": "mbostock",
"createdAt": "2015-10-16T18:41:38Z",
"updatedAt": "2016-02-09T01:49:04Z",
"description": "D3 Logo"
},
{
"id": "2429963",
"user": "mbostock",
"createdAt": "2012-04-20T16:08:11Z",
"updatedAt": "2016-04-29T14:16:37Z",
"description": "\"Elbow\" Dendrogram"
},
{
"id": "40c203e779dda7ba2b47",
"user": "emeeks",
"createdAt": "2015-12-04T03:30:09Z",
"updatedAt": "2016-03-08T01:41:36Z",
"description": "Variable Offset Animated Links"
},
{
"id": "3184089",
"user": "mbostock",
"createdAt": "2012-07-26T19:45:08Z",
"updatedAt": "2016-02-09T01:28:37Z",
"description": "Tree Layout Orientations"
},
{
"id": "becd7b34d93b2d80d828",
"user": "emeeks",
"createdAt": "2016-02-17T23:50:03Z",
"updatedAt": "2016-03-08T01:39:13Z",
"description": "Pie Transition Ch. 5 - D3.js in Action"
},
{
"id": "a7ae83252305ed4d54d4",
"user": "mbostock",
"createdAt": "2016-02-25T01:57:41Z",
"updatedAt": "2016-02-25T01:57:45Z",
"description": "Werner"
},
{
"id": "c7e85d2b47d11982db38",
"user": "mbostock",
"createdAt": "2016-02-23T18:37:23Z",
"updatedAt": "2016-02-23T19:20:05Z",
"description": "Star Map"
},
{
"id": "5703573bd695c66b6e99",
"user": "jebeck",
"createdAt": "2014-11-20T23:35:31Z",
"updatedAt": "2015-08-29T14:10:05Z",
"description": "Browser-zoom robust foreignObject tooltips"
},
{
"id": "f6a30cdf04d252876b44",
"user": "micahstubbs",
"createdAt": "2016-03-18T20:56:49Z",
"updatedAt": "2016-03-18T21:01:54Z",
"description": "Browser-zoom robust static foreignObject tooltips"
},
{
"id": "542f350f5af22fba72b5",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "9c72a94ca5a0d04c68e4",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "2814080d24a44c357781",
"user": "mpmckenna8",
"createdAt": "2016-03-21T22:12:41Z",
"updatedAt": "2016-03-21T22:12:41Z",
"description": "breadBoard"
},
{
"id": "b8f13d84df4fbbaa98c0",
"user": "mpmckenna8",
"createdAt": "2016-03-21T22:13:17Z",
"updatedAt": "2016-03-21T22:13:17Z",
"description": "breadBoard"
},
{
"id": "8e09d21c2a15d7234b6d",
"user": "mpmckenna8",
"createdAt": "2016-03-21T22:14:50Z",
"updatedAt": "2016-03-21T22:14:50Z",
"description": "breadBoard"
},
{
"id": "89e0407a1828d59c72e7",
"user": "mukhtyar",
"createdAt": "2016-03-24T19:27:40Z",
"updatedAt": "2016-03-24T19:32:12Z",
"description": "Simple D3 Bar Chart"
},
{
"id": "6f5b472cabe8f85583989a40eef0303c",
"user": "nbremer",
"createdAt": "2016-04-05T18:53:41Z",
"updatedAt": "2016-05-07T11:13:24Z",
"description": "Animated gradient - Simple rectangle"
},
{
"id": "a43dbd5690ccd5ac4c6cc392415140e7",
"user": "nbremer",
"createdAt": "2016-04-03T10:50:59Z",
"updatedAt": "2016-05-03T20:43:26Z",
"description": "Linear SVG Gradient - Weather Radial"
},
{
"id": "a6690ca67800a2abafcd71ef4725f33f",
"user": "nbremer",
"createdAt": "2016-05-07T11:09:43Z",
"updatedAt": "2016-05-07T11:16:05Z",
"description": "Animated gradient - Minard's chart of Napoleon's Russia campaign"
},
{
"id": "5cd07f2cb4ad202a9facfbd5d2bc842e",
"user": "nbremer",
"createdAt": "2016-05-03T20:39:59Z",
"updatedAt": "2016-05-03T20:44:18Z",
"description": "Linear SVG Gradient - A hexagonal SOM heatmap with color legend"
},
{
"id": "35824f669548c5a9bce193c63953aed0",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "391e2cf83a0708c19f8c",
"user": "emeeks",
"createdAt": "2014-11-18T03:57:51Z",
"updatedAt": "2016-03-18T03:31:58Z",
"description": "Ch. 6, Fig. 4 - D3.js in Action"
},
{
"id": "142545ea7bac1866327a",
"user": "nitaku",
"createdAt": "2016-02-24T12:14:11Z",
"updatedAt": "2016-03-08T03:56:28Z",
"description": "Cascaded treemap"
},
{
"id": "6077996",
"user": "d3noob",
"createdAt": "2013-07-25T08:53:47Z",
"updatedAt": "2016-03-28T11:40:14Z",
"description": "Earthquake Data Discovery using dc.js, crossfilter, d3.js and bootstrap"
},
{
"id": "1166403",
"user": "mbostock",
"createdAt": "2011-08-23T20:23:54Z",
"updatedAt": "2016-02-09T00:25:04Z",
"description": "Axis Component"
},
{
"id": "caa2da1ea1558cdc3357",
"user": "zanarmstrong",
"createdAt": "2015-05-20T19:42:34Z",
"updatedAt": "2015-09-08T03:23:49Z",
"description": "Which is bigger: Africa or North America?"
},
{
"id": "73ce86ae3ce3332035c9c2829a94b7c1",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "464141fe9b940153e636",
"user": "1wheel",
"createdAt": "2016-03-28T23:30:06Z",
"updatedAt": "2016-04-30T16:20:34Z",
"description": "line-intersection"
},
{
"id": "b07f8ae91c5e9e45719c",
"user": "mbostock",
"createdAt": "2016-03-18T05:11:37Z",
"updatedAt": "2016-05-03T18:36:46Z",
"description": "Rainbow Pack"
},
{
"id": "024462262babe91764d1",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "a91f514aaf57eabf8e36",
"user": "biovisualize",
"createdAt": "2016-03-02T23:48:49Z",
"updatedAt": "2016-03-03T05:04:26Z",
"description": "Radviz"
},
{
"id": "43aebffeacf96d8d881f",
"user": "mbostock",
"createdAt": "2016-02-26T22:06:01Z",
"updatedAt": "2016-02-26T22:06:06Z",
"description": "Transform Transitions II"
},
{
"id": "a45efb2efdfb280e6671",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "4330486",
"user": "mbostock",
"createdAt": "2012-12-18T18:13:19Z",
"updatedAt": "2016-02-09T02:12:40Z",
"description": "Bivariate Hexbin Map"
},
{
"id": "4fadce61bff13803afea",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "7b1726a74562a42be86f",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "62268c8812eaa5a365c7",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "2815fad230758e7d218c",
"user": "Ifeanyi-1",
"createdAt": "2016-02-25T15:28:39Z",
"updatedAt": "2016-02-25T17:11:03Z",
"description": "genome browser"
},
{
"id": "713543c3345ff5d86220",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "65bf1de37fbe8caed4a7",
"user": "Ifeanyi-1",
"createdAt": "2016-03-01T15:41:22Z",
"updatedAt": "2016-03-01T17:16:44Z",
"description": "genome browser-2"
},
{
"id": "e87cb559f560491a5d24",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "b79e251ee2da17234424",
"user": "Ifeanyi-1",
"createdAt": "2016-03-17T14:21:49Z",
"updatedAt": "2016-03-17T14:21:58Z",
"description": "genome browser-4"
},
{
"id": "a330736de440d724ff7d",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "674f338118484e3c488b",
"user": "Ifeanyi-1",
"createdAt": "2016-03-17T15:01:44Z",
"updatedAt": "2016-03-17T16:08:09Z",
"description": "genome browser-4"
},
{
"id": "91746691b4e7766c00d3",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "0cdabe2c1abc68fa48a8",
"user": "Ifeanyi-1",
"createdAt": "2016-03-24T14:15:47Z",
"updatedAt": "2016-03-31T14:50:32Z",
"description": "genome browser-5"
},
{
"id": "98dd7364479cab381e4dadcd9e8847de",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "0fa3886580eb9e83ac1c3cd886cdc5b1",
"user": "Ifeanyi-1",
"createdAt": "2016-04-05T15:17:54Z",
"updatedAt": "2016-04-05T16:16:46Z",
"description": "genome browser-6"
},
{
"id": "064e26db123571c22ad6870e9dc418f0",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "a8bb96b7654210cc88f4e8545aa559e0",
"user": "Ifeanyi-1",
"createdAt": "2016-04-14T14:37:53Z",
"updatedAt": "2016-04-14T15:59:23Z",
"description": "genome browser-7"
},
{
"id": "f775b7b80c3117ee3568b7c1453c3360",
"user": "NgoScope",
"createdAt": "2016-04-19T14:39:39Z",
"updatedAt": "2016-04-21T14:28:51Z",
"description": "genome browser-8"
},
{
"id": "ace40136cd29f784c12482665c59bbc5",
"user": "Rico3734",
"createdAt": "2016-04-20T18:07:36Z",
"updatedAt": "2016-04-20T18:08:22Z",
"description": "genome browser-8"
},
{
"id": "e5aa210de42dc3b01555340eb549bba5",
"user": "Rico3734",
"createdAt": "2016-04-21T14:19:29Z",
"updatedAt": "2016-04-21T16:11:58Z",
"description": "genome browser-8"
},
{
"id": "1d3dcaefadd4c8f33318fe017cf730d6",
"user": "smith13mr",
"createdAt": "2016-04-05T15:02:48Z",
"updatedAt": "2016-04-20T15:45:14Z",
"description": "genome browser for final group project"
},
{
"id": "d9330fbe7bbf1a68e3d634602eb4d7a2",
"user": "scresawn",
"createdAt": "2016-04-20T14:09:45Z",
"updatedAt": "2016-04-21T13:20:20Z",
"description": "genome browser for final group project"
},
{
"id": "f405977b9bf51851a6b86476992c6ce9",
"user": "smith13mr",
"createdAt": "2016-04-21T13:32:50Z",
"updatedAt": "2016-04-26T16:15:20Z",
"description": "Two tooltips and fade out"
},
{
"id": "794e8d9eb8c153a1778cc487ff4465ff",
"user": "scresawn",
"createdAt": "2016-04-21T21:39:48Z",
"updatedAt": "2016-04-27T14:20:12Z",
"description": "Two tooltips and fade out"
},
{
"id": "9306799",
"user": "dbuezas",
"createdAt": "2014-03-02T13:47:41Z",
"updatedAt": "2016-02-16T18:24:25Z",
"description": "Pie charts labels"
},
{
"id": "a4aeac8e7527505ff84e",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "6e9c0a043314dd2e494d",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "1209499",
"user": "biovisualize",
"createdAt": "2011-09-11T12:07:43Z",
"updatedAt": "2015-09-27T04:08:29Z",
"description": "Download generated SVG with preview (from mbostock)"
},
{
"id": "ca8347ecae78391b8cc9",
"user": "scresawn",
"createdAt": "2016-03-18T14:01:08Z",
"updatedAt": "2016-03-18T14:01:08Z",
"description": "Download generated SVG with preview (from mbostock)"
},
{
"id": "5e0bf6568e248607be85",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "5215cc464cfb9affd283",
"user": "dnprock",
"createdAt": "2015-06-18T23:42:54Z",
"updatedAt": "2016-05-03T16:36:30Z",
"description": "US States Map"
},
{
"id": "2869946",
"user": "mbostock",
"createdAt": "2012-06-04T18:12:06Z",
"updatedAt": "2016-02-09T01:21:16Z",
"description": "Albers USA Projection"
},
{
"id": "6decab485fd2e02c9f1e",
"user": "emeeks",
"createdAt": "2015-11-07T03:13:27Z",
"updatedAt": "2016-03-16T15:42:46Z",
"description": "Simple Scatterplot"
},
{
"id": "07cbeabf93c7ece31c2d",
"user": "thoma2nm",
"createdAt": "2016-02-04T16:01:48Z",
"updatedAt": "2016-02-04T16:01:48Z",
"description": "Bar Chart"
},
{
"id": "b03978a667bb96a7cf81d8ad8c5c68f6",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "ca351b22bc0778e97d79",
"user": "sliu72",
"createdAt": "2016-02-12T22:50:03Z",
"updatedAt": "2016-02-19T22:20:34Z",
"description": "Multi-Series Line Chart"
},
{
"id": "9e82d298e917564240ad98c881d6c75b",
"user": "smith13mr",
"createdAt": "2016-05-05T14:04:37Z",
"updatedAt": "2016-05-05T14:04:37Z",
"description": "final exam question 2"
},
{
"id": "7ac555c7242c04ed6d11cdeb63c5dc46",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "ccd1e45b15a98832496b3a3a9f42cff4",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "94b930342d0c8b08b307b42be071236a",
"user": "Ivanhound",
"createdAt": "2016-04-21T14:49:13Z",
"updatedAt": "2016-04-21T16:17:30Z",
"description": "fade out and tooltip"
},
{
"id": "9adf74fb08394082c393d8290c00e843",
"user": "smith13mr",
"createdAt": "2016-04-05T14:48:39Z",
"updatedAt": "2016-04-05T14:48:41Z",
"description": "genome browser"
},
{
"id": "7d287b18469db41571d7",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "4742802e9cf761912270",
"user": "smith13mr",
"createdAt": "2016-02-25T15:37:27Z",
"updatedAt": "2016-03-03T15:26:52Z",
"description": "genome browser 2 with numbers"
},
{
"id": "9747494f9437c0567eed",
"user": "smith13mr",
"createdAt": "2016-03-15T13:01:20Z",
"updatedAt": "2016-03-15T15:20:16Z",
"description": "genome browser 2 with numbers"
},
{
"id": "5085fcdd086cb5174867",
"user": "smith13mr",
"createdAt": "2016-03-15T15:20:47Z",
"updatedAt": "2016-03-17T17:21:44Z",
"description": "genome browser 4 with numbers"
},
{
"id": "a5df54f0c34518424b00",
"user": "smith13mr",
"createdAt": "2016-03-15T14:55:11Z",
"updatedAt": "2016-03-15T14:55:11Z",
"description": "genome browser with name numbers"
},
{
"id": "59c67178982d192c79ddacff46388995",
"user": "srinivashavanur",
"createdAt": "2016-04-04T19:02:48Z",
"updatedAt": "2016-04-04T21:07:57Z",
"description": "Visual Implementation 10 (Scatterplot matrix with Linked Highlighting)"
},
{
"id": "2db1fae19be3602e539a9b7fef2f8507",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "99cd6bb8749e8be95fdaaeb7f40368f3",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "bd12f73d0b79d70bfbae",
"user": "WilliamQLiu",
"createdAt": "2014-08-01T02:21:36Z",
"updatedAt": "2016-02-23T14:55:55Z",
"description": "D3 Scatterplot (Animations)"
},
{
"id": "92841c212b11c534713782544cfdf10f",
"user": "sxywu",
"createdAt": "2016-04-28T03:08:17Z",
"updatedAt": "2016-04-28T22:57:52Z",
"description": "openvis tweets #1"
},
{
"id": "8b7d381614a093195eec2636cab9ef2f",
"user": "sxywu",
"createdAt": "2016-04-28T22:55:17Z",
"updatedAt": "2016-04-29T03:06:01Z",
"description": "openvis tweets #2"
},
{
"id": "9ea31a49cc0af1fdeed189619f651f5b",
"user": "sxywu",
"createdAt": "2016-04-29T02:31:06Z",
"updatedAt": "2016-04-30T14:42:17Z",
"description": "openvis tweets #3"
},
{
"id": "9d0899acb5d3b8d839d9d613a9e1fe04",
"user": "mbostock",
"createdAt": "2016-03-31T16:56:35Z",
"updatedAt": "2016-05-04T05:22:18Z",
"description": "Tidy Tree"
},
{
"id": "2e12b0bd732e7fe4000e2d11ecab0268",
"user": "mbostock",
"createdAt": "2016-03-31T19:57:26Z",
"updatedAt": "2016-05-03T18:39:11Z",
"description": "Radial Tidy Tree"
},
{
"id": "4076122",
"user": "syntagmatic",
"createdAt": "2012-11-15T01:43:47Z",
"updatedAt": "2016-03-30T00:26:28Z",
"description": "d3 src tree"
},
{
"id": "eaed208d570610a57c24569d33893ddf",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "6119de4db34da4065832396c4bb9ea93",
"user": "timelyportfolio",
"createdAt": "2016-04-13T16:49:14Z",
"updatedAt": "2016-04-13T21:17:38Z",
"description": "Adding leaflet-timeline to R leaflet"
},
{
"id": "50c3e2d2e3d8552d5a43",
"user": "timelyportfolio",
"createdAt": "2016-03-24T21:31:53Z",
"updatedAt": "2016-03-24T21:34:41Z",
"description": "responsive? leaflet htmlwidget"
},
{
"id": "6a5460f62f7d04c46cf8",
"user": "enjalot",
"createdAt": "2015-09-08T02:48:53Z",
"updatedAt": "2015-09-08T02:50:08Z",
"description": "iris demo"
},
{
"id": "c98b726ab1cc4f4b1477",
"user": "veltman",
"createdAt": "2016-03-28T15:11:36Z",
"updatedAt": "2016-03-28T18:51:05Z",
"description": "Old atlas style #2"
},
{
"id": "606b23b77ecf3991d3b0",
"user": "veltman",
"createdAt": "2016-03-28T15:11:24Z",
"updatedAt": "2016-03-28T17:34:40Z",
"description": "Old atlas style"
},
{
"id": "cc5dcff17db32e4e910f",
"user": "veltman",
"createdAt": "2016-03-28T17:33:34Z",
"updatedAt": "2016-03-28T18:54:18Z",
"description": "Old atlas style #3"
},
{
"id": "87596f5a256079b95eb9",
"user": "veltman",
"createdAt": "2015-11-07T22:13:45Z",
"updatedAt": "2015-11-12T19:28:41Z",
"description": "Gas prices per gallon vs. per mile"
},
{
"id": "f0f27bb61ef20a6b2e17d7231e2294c6",
"user": "walkerjeffd",
"createdAt": "2016-05-04T20:55:55Z",
"updatedAt": "2016-05-04T20:58:38Z",
"description": "Multi-Foci Force Layout Along Path"
},
{
"id": "6526445e2b44303eebf21da3b6627320",
"user": "mbostock",
"createdAt": "2016-04-29T18:07:07Z",
"updatedAt": "2016-05-03T18:42:48Z",
"description": "Beeswarm"
},
{
"id": "5e1fbf27aa88a0f96680634bfd4079b3",
"user": "wcjohnson11",
"createdAt": "2016-04-15T20:27:17Z",
"updatedAt": "2016-04-15T20:27:17Z",
"description": "D3.js Drag and Drop, Zoomable, Panning, Collapsible Tree with auto-sizing."
},
{
"id": "fec2e3b85f3801e380c238b53f621274",
"user": null,
"createdAt": null,
"updatedAt": null,
"description": null
},
{
"id": "f494728af00496ea1aa4",
"user": "zaccagbj",
"createdAt": "2016-03-17T02:33:45Z",
"updatedAt": "2016-03-21T20:13:24Z",
"description": "newer work on genome thing"
},
{
"id": "4d76ddafa3682bbcae37",
"user": "zaccagbj",
"createdAt": "2016-03-21T20:13:27Z",
"updatedAt": "2016-03-24T14:15:30Z",
"description": "again newer work on genome thing"
},
{
"id": "6af1d30af3b7d07b9709c9feb205e638",
"user": "plmrry",
"createdAt": "2016-05-02T21:00:29Z",
"updatedAt": "2016-05-02T23:16:40Z",
"description": "Graph Experiments I"
},
{
"id": "8467c2c06517ff17418ff459fa5b0c83",
"user": "zeffii",
"createdAt": "2016-04-08T15:27:44Z",
"updatedAt": "2016-04-21T10:44:26Z",
"description": "sleep_tkd - nested v3 - comments"
},
{
"id": "c2bae16a2b385f0d784a",
"user": "zeffii",
"createdAt": "2016-03-23T16:32:08Z",
"updatedAt": "2016-04-06T12:15:09Z",
"description": "sleep_tkd - nested"
},
{
"id": "fba34de448eb8df1d81d",
"user": "zeffii",
"createdAt": "2016-02-13T13:21:29Z",
"updatedAt": "2016-02-13T19:03:05Z",
"description": "redux : Glucose + food"
},
{
"id": "17a54b0b2520fb6dcae3",
"user": "zeffii",
"createdAt": "2015-12-31T18:06:12Z",
"updatedAt": "2015-12-31T18:18:44Z",
"description": "mediseen0.2"
},
{
"id": "1554f5cc59f7b4b3403d",
"user": "zeffii",
"createdAt": "2016-03-18T21:15:22Z",
"updatedAt": "2016-03-18T21:15:39Z",
"description": "mediseen0.2 18march2016"
}
],
"edges": [
{
"source": "843177",
"target": "4055908"
},
{
"source": "950642",
"target": "4062045"
},
{
"source": "1061834",
"target": "4339083"
},
{
"source": "1341281",
"target": "1341021"
},
{
"source": "1731123",
"target": "1731123"
},
{
"source": "1731123",
"target": "1731123"
},
{
"source": "2313155",
"target": "1341281"
},
{
"source": "2803171",
"target": "2803171"
},
{
"source": "2991587",
"target": "2979974"
},
{
"source": "3670696",
"target": "3670696"
},
{
"source": "4053870",
"target": "4053870"
},
{
"source": "4146798",
"target": "2803171"
},
{
"source": "4414436",
"target": "b3ff6ae1c120eea654b5"
},
{
"source": "4680970",
"target": "4680970"
},
{
"source": "4690851",
"target": "4712128"
},
{
"source": "4718016",
"target": "4718016"
},
{
"source": "4738905",
"target": "4738905"
},
{
"source": "4961058",
"target": "4961058"
},
{
"source": "4961058",
"target": "4961058"
},
{
"source": "4963137",
"target": "4963004"
},
{
"source": "4963137",
"target": "4962892"
},
{
"source": "4963273",
"target": "4963004"
},
{
"source": "4963273",
"target": "4962892"
},
{
"source": "4967213",
"target": "4963273"
},
{
"source": "4967213",
"target": "4963004"
},
{
"source": "4967213",
"target": "4962892"
},
{
"source": "4967350",
"target": "4963273"
},
{
"source": "4967350",
"target": "4967213"
},
{
"source": "4967350",
"target": "4963004"
},
{
"source": "4967350",
"target": "4962892"
},
{
"source": "4969184",
"target": "4060606"
},
{
"source": "4973620",
"target": "4686432"
},
{
"source": "4979672",
"target": "4060606"
},
{
"source": "5012770",
"target": "4339083"
},
{
"source": "5036788",
"target": "4987520"
},
{
"source": "5044313",
"target": "3757101"
},
{
"source": "5052095",
"target": "5028304"
},
{
"source": "5068952",
"target": "4343214"
},
{
"source": "5087116",
"target": "5087116"
},
{
"source": "5091037",
"target": "4349545"
},
{
"source": "5091037",
"target": "4349545"
},
{
"source": "5100636",
"target": "1346410"
},
{
"source": "5100636",
"target": "1098617"
},
{
"source": "5100636",
"target": "4341574"
},
{
"source": "5100636",
"target": "4341417"
},
{
"source": "5107491",
"target": "4183330"
},
{
"source": "5107491",
"target": "9656675"
},
{
"source": "5121931",
"target": "3757101"
},
{
"source": "5126418",
"target": "4707858"
},
{
"source": "5141278",
"target": "1153292"
},
{
"source": "5141278",
"target": "2706022"
},
{
"source": "5141528",
"target": "5141278"
},
{
"source": "5142856",
"target": "5107491"
},
{
"source": "5142856",
"target": "5044313"
},
{
"source": "5147590",
"target": "4132797"
},
{
"source": "5149102",
"target": "5149102"
},
{
"source": "5154406",
"target": "4055908"
},
{
"source": "5154406",
"target": "4055908"
},
{
"source": "5155181",
"target": "5141278"
},
{
"source": "5155181",
"target": "5141528"
},
{
"source": "5181013",
"target": "4342045"
},
{
"source": "5181022",
"target": "4342045"
},
{
"source": "5181026",
"target": "4342045"
},
{
"source": "5181095",
"target": "4342045"
},
{
"source": "5181105",
"target": "4342045"
},
{
"source": "5181331",
"target": "4342045"
},
{
"source": "5196687",
"target": "4015254"
},
{
"source": "5203275",
"target": "5203275"
},
{
"source": "5233218",
"target": "580de8199ea3b85f822a"
},
{
"source": "5233218",
"target": "3711652"
},
{
"source": "5266202",
"target": "4015254"
},
{
"source": "5278614",
"target": "4063530"
},
{
"source": "5310854",
"target": "5310854"
},
{
"source": "5311083",
"target": "5311083"
},
{
"source": "5311202",
"target": "5311202"
},
{
"source": "5327510",
"target": "1153292"
},
{
"source": "5348789",
"target": "3305854"
},
{
"source": "5370827",
"target": "5370827"
},
{
"source": "5386999",
"target": "5180185"
},
{
"source": "5390755",
"target": "5386999"
},
{
"source": "5410004",
"target": "2657838"
},
{
"source": "5416405",
"target": "5416440"
},
{
"source": "5416440",
"target": "5416405"
},
{
"source": "5452290",
"target": "4061961"
},
{
"source": "5498995",
"target": "4061961"
},
{
"source": "5518052",
"target": "5518052"
},
{
"source": "5518052",
"target": "5519642"
},
{
"source": "5518052",
"target": "5519819"
},
{
"source": "5518052",
"target": "5520449"
},
{
"source": "5518052",
"target": "5522467"
},
{
"source": "5518052",
"target": "d22bbf92231876505e5d"
},
{
"source": "5518052",
"target": "5553051"
},
{
"source": "5519642",
"target": "5518052"
},
{
"source": "5519642",
"target": "5519642"
},
{
"source": "5519642",
"target": "5519819"
},
{
"source": "5519642",
"target": "5520449"
},
{
"source": "5519642",
"target": "5522467"
},
{
"source": "5519642",
"target": "d22bbf92231876505e5d"
},
{
"source": "5519642",
"target": "5553051"
},
{
"source": "5519819",
"target": "5518052"
},
{
"source": "5519819",
"target": "5519642"
},
{
"source": "5519819",
"target": "5519819"
},
{
"source": "5519819",
"target": "5520449"
},
{
"source": "5519819",
"target": "5522467"
},
{
"source": "5519819",
"target": "d22bbf92231876505e5d"
},
{
"source": "5519819",
"target": "5553051"
},
{
"source": "5520449",
"target": "5518052"
},
{
"source": "5520449",
"target": "5519642"
},
{
"source": "5520449",
"target": "5519819"
},
{
"source": "5520449",
"target": "5520449"
},
{
"source": "5520449",
"target": "5522467"
},
{
"source": "5520449",
"target": "d22bbf92231876505e5d"
},
{
"source": "5520449",
"target": "5553051"
},
{
"source": "5522467",
"target": "5518052"
},
{
"source": "5522467",
"target": "5519642"
},
{
"source": "5522467",
"target": "5519819"
},
{
"source": "5522467",
"target": "5520449"
},
{
"source": "5522467",
"target": "5522467"
},
{
"source": "5522467",
"target": "d22bbf92231876505e5d"
},
{
"source": "5522467",
"target": "5553051"
},
{
"source": "5544008",
"target": "5544621"
},
{
"source": "5553051",
"target": "5519642"
},
{
"source": "5562420",
"target": "3711652"
},
{
"source": "5562420",
"target": "3783604"
},
{
"source": "5562531",
"target": "5180185"
},
{
"source": "5568668",
"target": "5557726"
},
{
"source": "5581551",
"target": "5581551"
},
{
"source": "5581551",
"target": "5581551"
},
{
"source": "5601557",
"target": "5593150"
},
{
"source": "5603464",
"target": "1962173"
},
{
"source": "5609750",
"target": "1962173"
},
{
"source": "5610674",
"target": "5518052"
},
{
"source": "5610674",
"target": "5519642"
},
{
"source": "5610674",
"target": "5519819"
},
{
"source": "5610674",
"target": "5520449"
},
{
"source": "5610674",
"target": "5522467"
},
{
"source": "5610674",
"target": "5553051"
},
{
"source": "5624141",
"target": "5624141"
},
{
"source": "5624141",
"target": "5624141"
},
{
"source": "5624141",
"target": "5624141"
},
{
"source": "5624141",
"target": "5624141"
},
{
"source": "5624141",
"target": "5624141"
},
{
"source": "5624141",
"target": "5624141"
},
{
"source": "5624141",
"target": "5624141"
},
{
"source": "5624141",
"target": "5624141"
},
{
"source": "5624141",
"target": "5624141"
},
{
"source": "5624141",
"target": "5624141"
},
{
"source": "5629688",
"target": "4329423"
},
{
"source": "5629742",
"target": "4329423"
},
{
"source": "5630443",
"target": "3790444"
},
{
"source": "5638105",
"target": "3790444"
},
{
"source": "5644011",
"target": "4686432"
},
{
"source": "5661984",
"target": "1642989"
},
{
"source": "5662135",
"target": "1705868"
},
{
"source": "5662234",
"target": "5662135"
},
{
"source": "5671250",
"target": "3689931,"
},
{
"source": "5672848",
"target": "1667367"
},
{
"source": "5689783",
"target": "4180634"
},
{
"source": "5732719",
"target": "5732685"
},
{
"source": "5735048",
"target": "4973620"
},
{
"source": "5754041",
"target": "5732719"
},
{
"source": "5754041",
"target": "5562380"
},
{
"source": "5820393",
"target": "5616813"
},
{
"source": "5851197",
"target": "5624141"
},
{
"source": "5851197",
"target": "5624141"
},
{
"source": "5851197",
"target": "5624141"
},
{
"source": "5851197",
"target": "5624141"
},
{
"source": "5851197",
"target": "5624141"
},
{
"source": "5851197",
"target": "5624141"
},
{
"source": "5851197",
"target": "5624141"
},
{
"source": "5851197",
"target": "5624141"
},
{
"source": "5851197",
"target": "5624141"
},
{
"source": "5851197",
"target": "5624141"
},
{
"source": "5851197",
"target": "5624141"
},
{
"source": "5861122",
"target": "1804919"
},
{
"source": "5866872",
"target": "5731808"
},
{
"source": "5866872",
"target": "5731808"
},
{
"source": "5874133",
"target": "5874133"
},
{
"source": "5874133",
"target": "5874214"
},
{
"source": "5874133",
"target": "5874227"
},
{
"source": "5874133",
"target": "5874229"
},
{
"source": "5874133",
"target": "5874233"
},
{
"source": "5874133",
"target": "5874236"
},
{
"source": "5874214",
"target": "5874133"
},
{
"source": "5874214",
"target": "5874214"
},
{
"source": "5874214",
"target": "5874227"
},
{
"source": "5874214",
"target": "5874229"
},
{
"source": "5874214",
"target": "5874233"
},
{
"source": "5874214",
"target": "5874236"
},
{
"source": "5874214",
"target": "5397362"
},
{
"source": "5874227",
"target": "5874133"
},
{
"source": "5874227",
"target": "5874214"
},
{
"source": "5874227",
"target": "5874227"
},
{
"source": "5874227",
"target": "5874229"
},
{
"source": "5874227",
"target": "5874233"
},
{
"source": "5874227",
"target": "5874236"
},
{
"source": "5874227",
"target": "5874214"
},
{
"source": "5874227",
"target": "5874214"
},
{
"source": "5874227",
"target": "5874214"
},
{
"source": "5874227",
"target": "5874214"
},
{
"source": "5886992",
"target": "4061961"
},
{
"source": "5893649",
"target": "5886992"
},
{
"source": "5913636",
"target": "1021953"
},
{
"source": "5928736",
"target": "4055908"
},
{
"source": "5939519",
"target": "5691513"
},
{
"source": "5968330",
"target": "1389927"
},
{
"source": "5968421",
"target": "5762959"
},
{
"source": "5993342",
"target": "1129492"
},
{
"source": "6002022",
"target": "899711"
},
{
"source": "6002022",
"target": "5798635"
},
{
"source": "6046690",
"target": "5820393"
},
{
"source": "6052681",
"target": "6052814"
},
{
"source": "6052814",
"target": "6052681"
},
{
"source": "6077722",
"target": "6077722"
},
{
"source": "6077722",
"target": "6077722"
},
{
"source": "6112167",
"target": "6187523"
},
{
"source": "6150151",
"target": "5249328"
},
{
"source": "6166918",
"target": "6150151"
},
{
"source": "6166918",
"target": "5249328"
},
{
"source": "6173659",
"target": "5249328"
},
{
"source": "6184054",
"target": "1804919"
},
{
"source": "6185069",
"target": "3887118"
},
{
"source": "6187523",
"target": "6112167"
},
{
"source": "6203413",
"target": "1703449"
},
{
"source": "6203413",
"target": "6203413"
},
{
"source": "6220206",
"target": "1804919"
},
{
"source": "6223504",
"target": "4062085"
},
{
"source": "6224455",
"target": "6224455"
},
{
"source": "6226150",
"target": "6226150"
},
{
"source": "6226150",
"target": "5100636"
},
{
"source": "6226150",
"target": "6228457"
},
{
"source": "6228457",
"target": "6228457"
},
{
"source": "6228457",
"target": "5100636"
},
{
"source": "6228457",
"target": "6226150"
},
{
"source": "6243203",
"target": "5144735"
},
{
"source": "6262722",
"target": "5557726"
},
{
"source": "6262722",
"target": "6242308"
},
{
"source": "6262722",
"target": "4090848"
},
{
"source": "6279966",
"target": "5691513"
},
{
"source": "6293758",
"target": "5851933"
},
{
"source": "6310180",
"target": "6279966"
},
{
"source": "6310180",
"target": "4707858"
},
{
"source": "6312708",
"target": "6279966"
},
{
"source": "6323669",
"target": "6242308"
},
{
"source": "6323669",
"target": "2374239"
},
{
"source": "6354551",
"target": "5649592"
},
{
"source": "6364683",
"target": "5691513"
},
{
"source": "6372768",
"target": "1021953"
},
{
"source": "6372768",
"target": "1021953"
},
{
"source": "6419716",
"target": "2846454"
},
{
"source": "6420534",
"target": "4062045"
},
{
"source": "6420534",
"target": "4060366"
},
{
"source": "6420534",
"target": "1405439"
},
{
"source": "6420534",
"target": "1734663"
},
{
"source": "6432815",
"target": "6224396"
},
{
"source": "6439398",
"target": "6439398"
},
{
"source": "6439398",
"target": "3884955"
},
{
"source": "6455308",
"target": "5519819"
},
{
"source": "6457608",
"target": "5519819"
},
{
"source": "6457917",
"target": "6453048"
},
{
"source": "6459889",
"target": "6459889"
},
{
"source": "6459889",
"target": "2206590"
},
{
"source": "6468148",
"target": "1345853"
},
{
"source": "6468148",
"target": "5694697"
},
{
"source": "6468148",
"target": "3019563"
},
{
"source": "6475152",
"target": "3894205"
},
{
"source": "6475739",
"target": "3884955"
},
{
"source": "6476579",
"target": "3885304"
},
{
"source": "6478178",
"target": "4343214"
},
{
"source": "6478178",
"target": "4060366"
},
{
"source": "6506614",
"target": "21746a9668ffdf6d8242"
},
{
"source": "6511981",
"target": "899711"
},
{
"source": "6514960",
"target": "5649592"
},
{
"source": "6521802",
"target": "5649592"
},
{
"source": "6526710",
"target": "6514960"
},
{
"source": "6526710",
"target": "5649592"
},
{
"source": "6531064",
"target": "5649592"
},
{
"source": "6531299",
"target": "6531299"
},
{
"source": "6540350",
"target": "94db779237655907b907"
},
{
"source": "6574995",
"target": "11094667"
},
{
"source": "6618839",
"target": "3887118"
},
{
"source": "6619909",
"target": "3887118"
},
{
"source": "6631328",
"target": "1405439"
},
{
"source": "6631328",
"target": "1086421"
},
{
"source": "6680294",
"target": "1153292"
},
{
"source": "6688739",
"target": "4054247,"
},
{
"source": "6722361",
"target": "6713736"
},
{
"source": "6769077",
"target": "5230564"
},
{
"source": "6798471",
"target": "6603431"
},
{
"source": "6863459",
"target": "6863459"
},
{
"source": "6883136",
"target": "1642989"
},
{
"source": "6909318",
"target": "4060366"
},
{
"source": "6917114",
"target": "3048450"
},
{
"source": "6923131",
"target": "6901037"
},
{
"source": "6944484",
"target": "4062045"
},
{
"source": "7008736",
"target": "5249328"
},
{
"source": "7008736",
"target": "5249328"
},
{
"source": "7008736",
"target": "6622700"
},
{
"source": "7008736",
"target": "6173659"
},
{
"source": "7010320",
"target": "6173659"
},
{
"source": "7015186",
"target": "7023140"
},
{
"source": "7015186",
"target": "7008736"
},
{
"source": "7015186",
"target": "6521802"
},
{
"source": "7023140",
"target": "7008736"
},
{
"source": "7023140",
"target": "6521802"
},
{
"source": "7023140",
"target": "7015186"
},
{
"source": "7023794",
"target": "7015186"
},
{
"source": "7025272",
"target": "7023794"
},
{
"source": "7025272",
"target": "6982528"
},
{
"source": "7025272",
"target": "7008736"
},
{
"source": "7025272",
"target": "4060606"
},
{
"source": "7039746",
"target": "7025272"
},
{
"source": "7039746",
"target": "6905926"
},
{
"source": "7051484",
"target": "7051552"
},
{
"source": "7051552",
"target": "7051484"
},
{
"source": "7065313",
"target": "3885304"
},
{
"source": "7089206",
"target": "1073373"
},
{
"source": "7090426",
"target": "4063423"
},
{
"source": "7127495",
"target": "4063423"
},
{
"source": "7141176",
"target": "7023794"
},
{
"source": "7155003",
"target": "4063423"
},
{
"source": "7188018",
"target": "7032353"
},
{
"source": "7189721",
"target": "4342045"
},
{
"source": "7204304",
"target": "7204160"
},
{
"source": "7233233",
"target": "4237768"
},
{
"source": "7233233",
"target": "3846051"
},
{
"source": "7233233",
"target": "4060366"
},
{
"source": "7247546",
"target": "7235174"
},
{
"source": "7274602",
"target": "5737662."
},
{
"source": "7302132",
"target": "7233233"
},
{
"source": "7302132",
"target": "4341156"
},
{
"source": "7315455",
"target": "1157787"
},
{
"source": "7315455",
"target": "6476579"
},
{
"source": "7328902",
"target": "2295155"
},
{
"source": "7352810",
"target": "3680999"
},
{
"source": "7356026",
"target": "4063423"
},
{
"source": "7405490",
"target": "7319558"
},
{
"source": "7475950",
"target": "7328902"
},
{
"source": "7475950",
"target": "2295155"
},
{
"source": "7483341",
"target": "3750558"
},
{
"source": "7493693",
"target": "7483341"
},
{
"source": "7493693",
"target": "3680999"
},
{
"source": "7512487",
"target": "7493693"
},
{
"source": "7512487",
"target": "5001347"
},
{
"source": "7512487",
"target": "6901037"
},
{
"source": "7517984",
"target": "7512487"
},
{
"source": "7517984",
"target": "6890861"
},
{
"source": "7518871",
"target": "7517984"
},
{
"source": "7556191",
"target": "7475950"
},
{
"source": "7556191",
"target": "2295155"
},
{
"source": "7648226",
"target": "2368837"
},
{
"source": "7667996",
"target": "5052095"
},
{
"source": "7680028",