{"url":"https://api.github.com/gists/2066415","forks_url":"https://api.github.com/gists/2066415/forks","commits_url":"https://api.github.com/gists/2066415/commits","id":"2066415","node_id":"MDQ6R2lzdDIwNjY0MTU=","git_pull_url":"https://gist.github.com/2066415.git","git_push_url":"https://gist.github.com/2066415.git","html_url":"https://gist.github.com/mbostock/2066415","files":{".block":{"filename":".block","type":"text/plain","language":null,"raw_url":"https://gist.githubusercontent.com/mbostock/2066415/raw/703d310b399098a243a76a50bc209167e924cfd2/.block","size":17,"truncated":false,"content":"license: gpl-3.0\n","encoding":"utf-8"},"README.md":{"filename":"README.md","type":"text/markdown","language":"Markdown","raw_url":"https://gist.githubusercontent.com/mbostock/2066415/raw/5de2f096d815b74ca40802f82d344d0578c30468/README.md","size":126,"truncated":false,"content":"See my article on [Krzywinski’s Hive Plots](http://bost.ocks.org/mike/hive/). See also [area hive plots](/mbostock/2066421).","encoding":"utf-8"},"d3.hive.min.js":{"filename":"d3.hive.min.js","type":"text/javascript","language":"JavaScript","raw_url":"https://gist.githubusercontent.com/mbostock/2066415/raw/20d2a264f1fdccab6c7b7ad1e8ea5e2dcb51cbf2/d3.hive.min.js","size":1486,"truncated":false,"content":"d3.hive={},d3.hive.link=function(){function t(t,s){var u,h=a(r,this,t,s),i=a(n,this,t,s);h.a>i.a&&(u=i,i=h,h=u),i.a-h.a>Math.PI&&(h.a+=2*Math.PI);var e=h.a+(i.a-h.a)/3,c=i.a-(i.a-h.a)/3;return h.r0-h.r1||i.r0-i.r1?\"M\"+Math.cos(h.a)*h.r0+\",\"+Math.sin(h.a)*h.r0+\"L\"+Math.cos(h.a)*h.r1+\",\"+Math.sin(h.a)*h.r1+\"C\"+Math.cos(e)*h.r1+\",\"+Math.sin(e)*h.r1+\" \"+Math.cos(c)*i.r1+\",\"+Math.sin(c)*i.r1+\" \"+Math.cos(i.a)*i.r1+\",\"+Math.sin(i.a)*i.r1+\"L\"+Math.cos(i.a)*i.r0+\",\"+Math.sin(i.a)*i.r0+\"C\"+Math.cos(c)*i.r0+\",\"+Math.sin(c)*i.r0+\" \"+Math.cos(e)*h.r0+\",\"+Math.sin(e)*h.r0+\" \"+Math.cos(h.a)*h.r0+\",\"+Math.sin(h.a)*h.r0:\"M\"+Math.cos(h.a)*h.r0+\",\"+Math.sin(h.a)*h.r0+\"C\"+Math.cos(e)*h.r1+\",\"+Math.sin(e)*h.r1+\" \"+Math.cos(c)*i.r1+\",\"+Math.sin(c)*i.r1+\" \"+Math.cos(i.a)*i.r1+\",\"+Math.sin(i.a)*i.r1}function a(t,a,r,n){var e=t.call(a,r,n),c=+(\"function\"==typeof s?s.call(a,e,n):s)+i,o=+(\"function\"==typeof u?u.call(a,e,n):u),M=u===h?o:+(\"function\"==typeof h?h.call(a,e,n):h);return{r0:o,r1:M,a:c}}var r=function(t){return t.source},n=function(t){return t.target},s=function(t){return t.angle},u=function(t){return t.radius},h=u,i=-Math.PI/2;return t.source=function(a){return arguments.length?(r=a,t):r},t.target=function(a){return arguments.length?(n=a,t):n},t.angle=function(a){return arguments.length?(s=a,t):s},t.radius=function(a){return arguments.length?(u=h=a,t):u},t.startRadius=function(a){return arguments.length?(u=a,t):u},t.endRadius=function(a){return arguments.length?(h=a,t):h},t};\n","encoding":"utf-8"},"index.html":{"filename":"index.html","type":"text/html","language":"HTML","raw_url":"https://gist.githubusercontent.com/mbostock/2066415/raw/ac12f804ac22259df07f1a2d745a30bc090953fa/index.html","size":2085,"truncated":false,"content":"<!DOCTYPE html>\n<meta charset=\"utf-8\">\n<style>\n\n.link {\n  fill: none;\n  stroke-width: 1.5px;\n}\n\n.axis, .node {\n  stroke: #000;\n  stroke-width: 1.5px;\n}\n\n</style>\n<body>\n<script src=\"//d3js.org/d3.v3.min.js\"></script>\n<script src=\"d3.hive.min.js\"></script>\n<script>\n\nvar width = 960,\n    height = 500,\n    innerRadius = 40,\n    outerRadius = 240;\n\nvar angle = d3.scale.ordinal().domain(d3.range(4)).rangePoints([0, 2 * Math.PI]),\n    radius = d3.scale.linear().range([innerRadius, outerRadius]),\n    color = d3.scale.category10().domain(d3.range(20));\n\nvar nodes = [\n  {x: 0, y: .1},\n  {x: 0, y: .9},\n  {x: 1, y: .2},\n  {x: 1, y: .3},\n  {x: 2, y: .1},\n  {x: 2, y: .8}\n];\n\nvar links = [\n  {source: nodes[0], target: nodes[2]},\n  {source: nodes[1], target: nodes[3]},\n  {source: nodes[2], target: nodes[4]},\n  {source: nodes[2], target: nodes[5]},\n  {source: nodes[3], target: nodes[5]},\n  {source: nodes[4], target: nodes[0]},\n  {source: nodes[5], target: nodes[1]}\n];\n\nvar svg = d3.select(\"body\").append(\"svg\")\n    .attr(\"width\", width)\n    .attr(\"height\", height)\n  .append(\"g\")\n    .attr(\"transform\", \"translate(\" + width / 2 + \",\" + height / 2 + \")\");\n\nsvg.selectAll(\".axis\")\n    .data(d3.range(3))\n  .enter().append(\"line\")\n    .attr(\"class\", \"axis\")\n    .attr(\"transform\", function(d) { return \"rotate(\" + degrees(angle(d)) + \")\"; })\n    .attr(\"x1\", radius.range()[0])\n    .attr(\"x2\", radius.range()[1]);\n\nsvg.selectAll(\".link\")\n    .data(links)\n  .enter().append(\"path\")\n    .attr(\"class\", \"link\")\n    .attr(\"d\", d3.hive.link()\n    .angle(function(d) { return angle(d.x); })\n    .radius(function(d) { return radius(d.y); }))\n    .style(\"stroke\", function(d) { return color(d.source.x); });\n\nsvg.selectAll(\".node\")\n    .data(nodes)\n  .enter().append(\"circle\")\n    .attr(\"class\", \"node\")\n    .attr(\"transform\", function(d) { return \"rotate(\" + degrees(angle(d.x)) + \")\"; })\n    .attr(\"cx\", function(d) { return radius(d.y); })\n    .attr(\"r\", 5)\n    .style(\"fill\", function(d) { return color(d.x); });\n\nfunction degrees(radians) {\n  return radians / Math.PI * 180 - 90;\n}\n\n</script>\n","encoding":"utf-8"},"thumbnail.png":{"filename":"thumbnail.png","type":"image/png","language":null,"raw_url":"https://gist.githubusercontent.com/mbostock/2066415/raw/d128ab0f6ec4ea2a438b066e832a1a41d9aaaf3e/thumbnail.png","size":4543,"truncated":false,"content":"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\n","encoding":"base64"}},"public":true,"created_at":"2012-03-17T23:20:28Z","updated_at":"2019-05-21T14:04:53Z","description":"Hive Plot (Links)","comments":1,"user":null,"comments_enabled":true,"comments_url":"https://api.github.com/gists/2066415/comments","owner":{"login":"mbostock","id":230541,"node_id":"MDQ6VXNlcjIzMDU0MQ==","avatar_url":"https://avatars.githubusercontent.com/u/230541?v=4","gravatar_id":"","url":"https://api.github.com/users/mbostock","html_url":"https://github.com/mbostock","followers_url":"https://api.github.com/users/mbostock/followers","following_url":"https://api.github.com/users/mbostock/following{/other_user}","gists_url":"https://api.github.com/users/mbostock/gists{/gist_id}","starred_url":"https://api.github.com/users/mbostock/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mbostock/subscriptions","organizations_url":"https://api.github.com/users/mbostock/orgs","repos_url":"https://api.github.com/users/mbostock/repos","events_url":"https://api.github.com/users/mbostock/events{/privacy}","received_events_url":"https://api.github.com/users/mbostock/received_events","type":"User","user_view_type":"public","site_admin":false},"forks":[{"url":"https://api.github.com/gists/2066421","user":{"login":"mbostock","id":230541,"node_id":"MDQ6VXNlcjIzMDU0MQ==","avatar_url":"https://avatars.githubusercontent.com/u/230541?v=4","gravatar_id":"","url":"https://api.github.com/users/mbostock","html_url":"https://github.com/mbostock","followers_url":"https://api.github.com/users/mbostock/followers","following_url":"https://api.github.com/users/mbostock/following{/other_user}","gists_url":"https://api.github.com/users/mbostock/gists{/gist_id}","starred_url":"https://api.github.com/users/mbostock/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mbostock/subscriptions","organizations_url":"https://api.github.com/users/mbostock/orgs","repos_url":"https://api.github.com/users/mbostock/repos","events_url":"https://api.github.com/users/mbostock/events{/privacy}","received_events_url":"https://api.github.com/users/mbostock/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Mike Bostock","company":"@observablehq ","blog":"https://observablehq.com/@mbostock","location":"San Francisco, CA","email":"mike@ocks.org","hireable":null,"bio":"Building a better computational medium. Co-founder @observablehq. Creator @d3. Former @nytgraphics. Pronounced BOSS-tock.","twitter_username":"mbostock","public_repos":88,"public_gists":1043,"followers":23371,"following":0,"created_at":"2010-03-25T22:02:56Z","updated_at":"2026-04-10T07:01:19Z"},"id":"2066421","created_at":"2012-03-17T23:20:43Z","updated_at":"2016-04-25T23:02:42Z"},{"url":"https://api.github.com/gists/6882058","user":{"login":"Monika10","id":5636589,"node_id":"MDQ6VXNlcjU2MzY1ODk=","avatar_url":"https://avatars.githubusercontent.com/u/5636589?v=4","gravatar_id":"","url":"https://api.github.com/users/Monika10","html_url":"https://github.com/Monika10","followers_url":"https://api.github.com/users/Monika10/followers","following_url":"https://api.github.com/users/Monika10/following{/other_user}","gists_url":"https://api.github.com/users/Monika10/gists{/gist_id}","starred_url":"https://api.github.com/users/Monika10/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Monika10/subscriptions","organizations_url":"https://api.github.com/users/Monika10/orgs","repos_url":"https://api.github.com/users/Monika10/repos","events_url":"https://api.github.com/users/Monika10/events{/privacy}","received_events_url":"https://api.github.com/users/Monika10/received_events","type":"User","user_view_type":"public","site_admin":false,"name":null,"company":null,"blog":"","location":null,"email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":0,"public_gists":1,"followers":0,"following":0,"created_at":"2013-10-08T09:20:09Z","updated_at":"2016-02-27T11:35:02Z"},"id":"6882058","created_at":"2013-10-08T09:26:53Z","updated_at":"2015-12-24T23:39:15Z"},{"url":"https://api.github.com/gists/7161843","user":{"login":"freudFlintstone","id":1887825,"node_id":"MDQ6VXNlcjE4ODc4MjU=","avatar_url":"https://avatars.githubusercontent.com/u/1887825?v=4","gravatar_id":"","url":"https://api.github.com/users/freudFlintstone","html_url":"https://github.com/freudFlintstone","followers_url":"https://api.github.com/users/freudFlintstone/followers","following_url":"https://api.github.com/users/freudFlintstone/following{/other_user}","gists_url":"https://api.github.com/users/freudFlintstone/gists{/gist_id}","starred_url":"https://api.github.com/users/freudFlintstone/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/freudFlintstone/subscriptions","organizations_url":"https://api.github.com/users/freudFlintstone/orgs","repos_url":"https://api.github.com/users/freudFlintstone/repos","events_url":"https://api.github.com/users/freudFlintstone/events{/privacy}","received_events_url":"https://api.github.com/users/freudFlintstone/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Raphael Mattos","company":"ContextaWare","blog":"","location":null,"email":null,"hireable":true,"bio":null,"twitter_username":null,"public_repos":40,"public_gists":7,"followers":16,"following":21,"created_at":"2012-06-25T00:35:59Z","updated_at":"2026-04-08T01:16:26Z"},"id":"7161843","created_at":"2013-10-25T21:05:54Z","updated_at":"2015-12-26T13:59:03Z"},{"url":"https://api.github.com/gists/7f86e8b467331fe69e2d","user":{"login":"tfechner","id":1140542,"node_id":"MDQ6VXNlcjExNDA1NDI=","avatar_url":"https://avatars.githubusercontent.com/u/1140542?v=4","gravatar_id":"","url":"https://api.github.com/users/tfechner","html_url":"https://github.com/tfechner","followers_url":"https://api.github.com/users/tfechner/followers","following_url":"https://api.github.com/users/tfechner/following{/other_user}","gists_url":"https://api.github.com/users/tfechner/gists{/gist_id}","starred_url":"https://api.github.com/users/tfechner/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tfechner/subscriptions","organizations_url":"https://api.github.com/users/tfechner/orgs","repos_url":"https://api.github.com/users/tfechner/repos","events_url":"https://api.github.com/users/tfechner/events{/privacy}","received_events_url":"https://api.github.com/users/tfechner/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Thore Fechner","company":"www.conterra.de","blog":"","location":null,"email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":4,"public_gists":13,"followers":8,"following":3,"created_at":"2011-10-20T11:21:05Z","updated_at":"2026-02-10T19:22:52Z"},"id":"7f86e8b467331fe69e2d","created_at":"2014-11-06T19:51:17Z","updated_at":"2015-08-29T14:08:46Z"},{"url":"https://api.github.com/gists/a82c3bb6ef505f5f02a631a35a7b0ea8","user":{"login":"StudioLE","id":193290,"node_id":"MDQ6VXNlcjE5MzI5MA==","avatar_url":"https://avatars.githubusercontent.com/u/193290?v=4","gravatar_id":"","url":"https://api.github.com/users/StudioLE","html_url":"https://github.com/StudioLE","followers_url":"https://api.github.com/users/StudioLE/followers","following_url":"https://api.github.com/users/StudioLE/following{/other_user}","gists_url":"https://api.github.com/users/StudioLE/gists{/gist_id}","starred_url":"https://api.github.com/users/StudioLE/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/StudioLE/subscriptions","organizations_url":"https://api.github.com/users/StudioLE/orgs","repos_url":"https://api.github.com/users/StudioLE/repos","events_url":"https://api.github.com/users/StudioLE/events{/privacy}","received_events_url":"https://api.github.com/users/StudioLE/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"LE","company":null,"blog":"","location":null,"email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":98,"public_gists":37,"followers":47,"following":34,"created_at":"2010-01-31T12:59:30Z","updated_at":"2026-03-28T10:05:35Z"},"id":"a82c3bb6ef505f5f02a631a35a7b0ea8","created_at":"2016-09-06T15:48:44Z","updated_at":"2018-04-15T07:44:12Z"}],"history":[{"user":{"login":"mbostock","id":230541,"node_id":"MDQ6VXNlcjIzMDU0MQ==","avatar_url":"https://avatars.githubusercontent.com/u/230541?v=4","gravatar_id":"","url":"https://api.github.com/users/mbostock","html_url":"https://github.com/mbostock","followers_url":"https://api.github.com/users/mbostock/followers","following_url":"https://api.github.com/users/mbostock/following{/other_user}","gists_url":"https://api.github.com/users/mbostock/gists{/gist_id}","starred_url":"https://api.github.com/users/mbostock/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mbostock/subscriptions","organizations_url":"https://api.github.com/users/mbostock/orgs","repos_url":"https://api.github.com/users/mbostock/repos","events_url":"https://api.github.com/users/mbostock/events{/privacy}","received_events_url":"https://api.github.com/users/mbostock/received_events","type":"User","user_view_type":"public","site_admin":false},"version":"967dd4765ab82a4f7966ba868de65333b5fe9566","committed_at":"2016-02-09T01:16:25Z","change_status":{"total":1,"additions":1,"deletions":0},"url":"https://api.github.com/gists/2066415/967dd4765ab82a4f7966ba868de65333b5fe9566"},{"user":{"login":"mbostock","id":230541,"node_id":"MDQ6VXNlcjIzMDU0MQ==","avatar_url":"https://avatars.githubusercontent.com/u/230541?v=4","gravatar_id":"","url":"https://api.github.com/users/mbostock","html_url":"https://github.com/mbostock","followers_url":"https://api.github.com/users/mbostock/followers","following_url":"https://api.github.com/users/mbostock/following{/other_user}","gists_url":"https://api.github.com/users/mbostock/gists{/gist_id}","starred_url":"https://api.github.com/users/mbostock/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mbostock/subscriptions","organizations_url":"https://api.github.com/users/mbostock/orgs","repos_url":"https://api.github.com/users/mbostock/repos","events_url":"https://api.github.com/users/mbostock/events{/privacy}","received_events_url":"https://api.github.com/users/mbostock/received_events","type":"User","user_view_type":"public","site_admin":false},"version":"ec0c1d7b054f0821f6054838d1fa658f80571888","committed_at":"2015-10-30T21:40:13Z","change_status":{"total":2,"additions":1,"deletions":1},"url":"https://api.github.com/gists/2066415/ec0c1d7b054f0821f6054838d1fa658f80571888"},{"user":{"login":"mbostock","id":230541,"node_id":"MDQ6VXNlcjIzMDU0MQ==","avatar_url":"https://avatars.githubusercontent.com/u/230541?v=4","gravatar_id":"","url":"https://api.github.com/users/mbostock","html_url":"https://github.com/mbostock","followers_url":"https://api.github.com/users/mbostock/followers","following_url":"https://api.github.com/users/mbostock/following{/other_user}","gists_url":"https://api.github.com/users/mbostock/gists{/gist_id}","starred_url":"https://api.github.com/users/mbostock/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mbostock/subscriptions","organizations_url":"https://api.github.com/users/mbostock/orgs","repos_url":"https://api.github.com/users/mbostock/repos","events_url":"https://api.github.com/users/mbostock/events{/privacy}","received_events_url":"https://api.github.com/users/mbostock/received_events","type":"User","user_view_type":"public","site_admin":false},"version":"21ce45bbde03f68d5b9903dbf9815edca3b511a0","committed_at":"2015-06-11T19:39:47Z","change_status":{"total":5,"additions":3,"deletions":2},"url":"https://api.github.com/gists/2066415/21ce45bbde03f68d5b9903dbf9815edca3b511a0"},{"user":{"login":"mbostock","id":230541,"node_id":"MDQ6VXNlcjIzMDU0MQ==","avatar_url":"https://avatars.githubusercontent.com/u/230541?v=4","gravatar_id":"","url":"https://api.github.com/users/mbostock","html_url":"https://github.com/mbostock","followers_url":"https://api.github.com/users/mbostock/followers","following_url":"https://api.github.com/users/mbostock/following{/other_user}","gists_url":"https://api.github.com/users/mbostock/gists{/gist_id}","starred_url":"https://api.github.com/users/mbostock/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mbostock/subscriptions","organizations_url":"https://api.github.com/users/mbostock/orgs","repos_url":"https://api.github.com/users/mbostock/repos","events_url":"https://api.github.com/users/mbostock/events{/privacy}","received_events_url":"https://api.github.com/users/mbostock/received_events","type":"User","user_view_type":"public","site_admin":false},"version":"40fa5644f79fe1440d06a21f2c92b2673e2b9a83","committed_at":"2013-11-22T18:17:04Z","change_status":{"total":1,"additions":1,"deletions":0},"url":"https://api.github.com/gists/2066415/40fa5644f79fe1440d06a21f2c92b2673e2b9a83"},{"user":{"login":"mbostock","id":230541,"node_id":"MDQ6VXNlcjIzMDU0MQ==","avatar_url":"https://avatars.githubusercontent.com/u/230541?v=4","gravatar_id":"","url":"https://api.github.com/users/mbostock","html_url":"https://github.com/mbostock","followers_url":"https://api.github.com/users/mbostock/followers","following_url":"https://api.github.com/users/mbostock/following{/other_user}","gists_url":"https://api.github.com/users/mbostock/gists{/gist_id}","starred_url":"https://api.github.com/users/mbostock/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mbostock/subscriptions","organizations_url":"https://api.github.com/users/mbostock/orgs","repos_url":"https://api.github.com/users/mbostock/repos","events_url":"https://api.github.com/users/mbostock/events{/privacy}","received_events_url":"https://api.github.com/users/mbostock/received_events","type":"User","user_view_type":"public","site_admin":false},"version":"97da2b49af636f0f57604a248677f6803f6fd8e4","committed_at":"2012-12-19T19:03:04Z","change_status":{"total":1,"additions":1,"deletions":0},"url":"https://api.github.com/gists/2066415/97da2b49af636f0f57604a248677f6803f6fd8e4"},{"user":{"login":"mbostock","id":230541,"node_id":"MDQ6VXNlcjIzMDU0MQ==","avatar_url":"https://avatars.githubusercontent.com/u/230541?v=4","gravatar_id":"","url":"https://api.github.com/users/mbostock","html_url":"https://github.com/mbostock","followers_url":"https://api.github.com/users/mbostock/followers","following_url":"https://api.github.com/users/mbostock/following{/other_user}","gists_url":"https://api.github.com/users/mbostock/gists{/gist_id}","starred_url":"https://api.github.com/users/mbostock/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mbostock/subscriptions","organizations_url":"https://api.github.com/users/mbostock/orgs","repos_url":"https://api.github.com/users/mbostock/repos","events_url":"https://api.github.com/users/mbostock/events{/privacy}","received_events_url":"https://api.github.com/users/mbostock/received_events","type":"User","user_view_type":"public","site_admin":false},"version":"3271a55e3c748693ea6a8ad9e77d8bd706c7ed93","committed_at":"2012-12-19T19:02:39Z","change_status":{"total":79,"additions":3,"deletions":76},"url":"https://api.github.com/gists/2066415/3271a55e3c748693ea6a8ad9e77d8bd706c7ed93"},{"user":{"login":"mbostock","id":230541,"node_id":"MDQ6VXNlcjIzMDU0MQ==","avatar_url":"https://avatars.githubusercontent.com/u/230541?v=4","gravatar_id":"","url":"https://api.github.com/users/mbostock","html_url":"https://github.com/mbostock","followers_url":"https://api.github.com/users/mbostock/followers","following_url":"https://api.github.com/users/mbostock/following{/other_user}","gists_url":"https://api.github.com/users/mbostock/gists{/gist_id}","starred_url":"https://api.github.com/users/mbostock/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mbostock/subscriptions","organizations_url":"https://api.github.com/users/mbostock/orgs","repos_url":"https://api.github.com/users/mbostock/repos","events_url":"https://api.github.com/users/mbostock/events{/privacy}","received_events_url":"https://api.github.com/users/mbostock/received_events","type":"User","user_view_type":"public","site_admin":false},"version":"d724460e39c288b719d83125b410b21d7ac2faff","committed_at":"2012-10-12T03:51:47Z","change_status":{"total":0,"additions":0,"deletions":0},"url":"https://api.github.com/gists/2066415/d724460e39c288b719d83125b410b21d7ac2faff"},{"user":{"login":"mbostock","id":230541,"node_id":"MDQ6VXNlcjIzMDU0MQ==","avatar_url":"https://avatars.githubusercontent.com/u/230541?v=4","gravatar_id":"","url":"https://api.github.com/users/mbostock","html_url":"https://github.com/mbostock","followers_url":"https://api.github.com/users/mbostock/followers","following_url":"https://api.github.com/users/mbostock/following{/other_user}","gists_url":"https://api.github.com/users/mbostock/gists{/gist_id}","starred_url":"https://api.github.com/users/mbostock/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mbostock/subscriptions","organizations_url":"https://api.github.com/users/mbostock/orgs","repos_url":"https://api.github.com/users/mbostock/repos","events_url":"https://api.github.com/users/mbostock/events{/privacy}","received_events_url":"https://api.github.com/users/mbostock/received_events","type":"User","user_view_type":"public","site_admin":false},"version":"5513ca36a3bc71853ed19a7b6248a036c267bc45","committed_at":"2012-03-17T23:20:28Z","change_status":{"total":157,"additions":157,"deletions":0},"url":"https://api.github.com/gists/2066415/5513ca36a3bc71853ed19a7b6248a036c267bc45"}],"truncated":false}