{"url":"https://api.github.com/gists/2066421","forks_url":"https://api.github.com/gists/2066421/forks","commits_url":"https://api.github.com/gists/2066421/commits","id":"2066421","node_id":"MDQ6R2lzdDIwNjY0MjE=","git_pull_url":"https://gist.github.com/2066421.git","git_push_url":"https://gist.github.com/2066421.git","html_url":"https://gist.github.com/mbostock/2066421","files":{".block":{"filename":".block","type":"text/plain","language":null,"raw_url":"https://gist.githubusercontent.com/mbostock/2066421/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/2066421/raw/9485612583c52e369d5f9ebf590d69e1c43f7e85/README.md","size":126,"truncated":false,"content":"See my article on [Krzywinski’s Hive Plots](http://bost.ocks.org/mike/hive/). See also [link hive plots](/mbostock/2066415).","encoding":"utf-8"},"d3.hive.min.js":{"filename":"d3.hive.min.js","type":"text/javascript","language":"JavaScript","raw_url":"https://gist.githubusercontent.com/mbostock/2066421/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/2066421/raw/fb43d7181db256098ac05c0b9ec0960385a417e0/index.html","size":2636,"truncated":false,"content":"<!DOCTYPE html>\n<meta charset=\"utf-8\">\n<style>\n\n.arc {\n  fill-opacity: .2;\n}\n\n.axis .fill {\n  stroke: #aaa;\n  stroke-width: 8px;\n  stroke-linecap: square;\n}\n\n.axis .stroke {\n  stroke: #fff;\n  stroke-width: 12px;\n  stroke-linecap: square;\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.category20c().domain(d3.range(20));\n\nvar links = [\n  {source: {x: 0, y0: 0.9, y1: 1.0}, target: {x: 1, y0: 0.5, y1: 1.0}, group:  0},\n  {source: {x: 0, y0: 0.7, y1: 0.9}, target: {x: 1, y0: 0.4, y1: 0.5}, group:  1},\n  {source: {x: 0, y0: 0.4, y1: 0.7}, target: {x: 1, y0: 0.2, y1: 0.4}, group:  2},\n  {source: {x: 0, y0: 0.0, y1: 0.4}, target: {x: 1, y0: 0.0, y1: 0.2}, group:  3},\n  {source: {x: 1, y0: 0.8, y1: 1.0}, target: {x: 2, y0: 0.5, y1: 1.0}, group:  4},\n  {source: {x: 1, y0: 0.5, y1: 0.8}, target: {x: 2, y0: 0.2, y1: 0.5}, group:  5},\n  {source: {x: 1, y0: 0.3, y1: 0.5}, target: {x: 2, y0: 0.1, y1: 0.2}, group:  6},\n  {source: {x: 1, y0: 0.0, y1: 0.3}, target: {x: 2, y0: 0.0, y1: 0.1}, group:  7},\n  {source: {x: 2, y0: 0.8, y1: 1.0}, target: {x: 0, y0: 0.5, y1: 1.0}, group:  8},\n  {source: {x: 2, y0: 0.5, y1: 0.8}, target: {x: 0, y0: 0.2, y1: 0.5}, group:  9},\n  {source: {x: 2, y0: 0.1, y1: 0.5}, target: {x: 0, y0: 0.1, y1: 0.2}, group: 10},\n  {source: {x: 2, y0: 0.0, y1: 0.1}, target: {x: 0, y0: 0.0, y1: 0.1}, group: 11}\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(\".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    .startRadius(function(d) { return radius(d.y0); })\n    .endRadius(function(d) { return radius(d.y1); }))\n    .style(\"fill\", function(d) { return color(d.group); });\n\nsvg.selectAll(\".axis\")\n    .data(d3.range(3))\n  .enter().append(\"g\")\n    .attr(\"class\", \"axis\")\n    .attr(\"transform\", function(d) { return \"rotate(\" + degrees(angle(d)) + \")\"; })\n  .selectAll(\"line\")\n    .data([\"stroke\", \"fill\"])\n  .enter().append(\"line\")\n    .attr(\"class\", function(d) { return d; })\n    .attr(\"x1\", radius.range()[0])\n    .attr(\"x2\", radius.range()[1]);\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/2066421/raw/fe48b6de5ebba2d71ed82da629faed604d84cdd6/thumbnail.png","size":10031,"truncated":false,"content":"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\n","encoding":"base64"}},"public":true,"created_at":"2012-03-17T23:20:43Z","updated_at":"2016-04-25T23:02:42Z","description":"Hive Plot (Areas)","comments":0,"user":null,"comments_enabled":true,"comments_url":"https://api.github.com/gists/2066421/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},"fork_of":{"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":{},"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/3526579","user":{"login":"ZJONSSON","id":1082488,"node_id":"MDQ6VXNlcjEwODI0ODg=","avatar_url":"https://avatars.githubusercontent.com/u/1082488?v=4","gravatar_id":"","url":"https://api.github.com/users/ZJONSSON","html_url":"https://github.com/ZJONSSON","followers_url":"https://api.github.com/users/ZJONSSON/followers","following_url":"https://api.github.com/users/ZJONSSON/following{/other_user}","gists_url":"https://api.github.com/users/ZJONSSON/gists{/gist_id}","starred_url":"https://api.github.com/users/ZJONSSON/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ZJONSSON/subscriptions","organizations_url":"https://api.github.com/users/ZJONSSON/orgs","repos_url":"https://api.github.com/users/ZJONSSON/repos","events_url":"https://api.github.com/users/ZJONSSON/events{/privacy}","received_events_url":"https://api.github.com/users/ZJONSSON/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Ziggy Jonsson","company":null,"blog":"","location":null,"email":"ziggy.jonsson.nyc@gmail.com","hireable":null,"bio":null,"twitter_username":null,"public_repos":78,"public_gists":52,"followers":94,"following":62,"created_at":"2011-09-27T01:34:44Z","updated_at":"2026-04-14T05:52:55Z"},"id":"3526579","created_at":"2012-08-30T11:21:08Z","updated_at":"2015-10-09T14:57:57Z"},{"url":"https://api.github.com/gists/3535835","user":{"login":"ZJONSSON","id":1082488,"node_id":"MDQ6VXNlcjEwODI0ODg=","avatar_url":"https://avatars.githubusercontent.com/u/1082488?v=4","gravatar_id":"","url":"https://api.github.com/users/ZJONSSON","html_url":"https://github.com/ZJONSSON","followers_url":"https://api.github.com/users/ZJONSSON/followers","following_url":"https://api.github.com/users/ZJONSSON/following{/other_user}","gists_url":"https://api.github.com/users/ZJONSSON/gists{/gist_id}","starred_url":"https://api.github.com/users/ZJONSSON/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ZJONSSON/subscriptions","organizations_url":"https://api.github.com/users/ZJONSSON/orgs","repos_url":"https://api.github.com/users/ZJONSSON/repos","events_url":"https://api.github.com/users/ZJONSSON/events{/privacy}","received_events_url":"https://api.github.com/users/ZJONSSON/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Ziggy Jonsson","company":null,"blog":"","location":null,"email":"ziggy.jonsson.nyc@gmail.com","hireable":null,"bio":null,"twitter_username":null,"public_repos":78,"public_gists":52,"followers":94,"following":62,"created_at":"2011-09-27T01:34:44Z","updated_at":"2026-04-14T05:52:55Z"},"id":"3535835","created_at":"2012-08-30T18:05:23Z","updated_at":"2015-10-09T15:57:55Z"},{"url":"https://api.github.com/gists/7161798","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":"7161798","created_at":"2013-10-25T21:01:47Z","updated_at":"2015-12-26T13:59:02Z"}],"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":"0ee501d1ce264edd372ff4b33ec4bcc9066d5b22","committed_at":"2016-02-09T01:16:32Z","change_status":{"total":1,"additions":1,"deletions":0},"url":"https://api.github.com/gists/2066421/0ee501d1ce264edd372ff4b33ec4bcc9066d5b22"},{"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":"a1f80ec0a53b71e8a75fed19d98d06fea449c1fd","committed_at":"2015-10-30T21:40:25Z","change_status":{"total":2,"additions":1,"deletions":1},"url":"https://api.github.com/gists/2066421/a1f80ec0a53b71e8a75fed19d98d06fea449c1fd"},{"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":"d946940d26a4a166bc02d5831965be9cbf6ed7bb","committed_at":"2015-06-11T19:39:44Z","change_status":{"total":5,"additions":3,"deletions":2},"url":"https://api.github.com/gists/2066421/d946940d26a4a166bc02d5831965be9cbf6ed7bb"},{"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":"27f436b0a298da208755d6bd84c587224b56eb71","committed_at":"2013-11-22T18:17:40Z","change_status":{"total":1,"additions":1,"deletions":0},"url":"https://api.github.com/gists/2066421/27f436b0a298da208755d6bd84c587224b56eb71"},{"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":"069c2a000264418639ca9017bd045f5eb7510e2b","committed_at":"2012-12-19T19:04:01Z","change_status":{"total":79,"additions":3,"deletions":76},"url":"https://api.github.com/gists/2066421/069c2a000264418639ca9017bd045f5eb7510e2b"},{"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":"c43f383ae960415c599d73ae145707acc23e50c9","committed_at":"2012-10-12T03:51:51Z","change_status":{"total":0,"additions":0,"deletions":0},"url":"https://api.github.com/gists/2066421/c43f383ae960415c599d73ae145707acc23e50c9"},{"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":"6972a12b050c06531b848ae7f9b0fc9659cee082","committed_at":"2012-03-17T23:21:10Z","change_status":{"total":79,"additions":39,"deletions":40},"url":"https://api.github.com/gists/2066421/6972a12b050c06531b848ae7f9b0fc9659cee082"},{"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/2066421/5513ca36a3bc71853ed19a7b6248a036c267bc45"}],"truncated":false}