{"url":"https://api.github.com/gists/3885705","forks_url":"https://api.github.com/gists/3885705/forks","commits_url":"https://api.github.com/gists/3885705/commits","id":"3885705","node_id":"MDQ6R2lzdDM4ODU3MDU=","git_pull_url":"https://gist.github.com/3885705.git","git_push_url":"https://gist.github.com/3885705.git","html_url":"https://gist.github.com/mbostock/3885705","files":{".block":{"filename":".block","type":"text/plain","language":null,"raw_url":"https://gist.githubusercontent.com/mbostock/3885705/raw/3127a249fb561ec4bdde06d7c94a36010d8dc530/.block","size":89,"truncated":false,"content":"license: gpl-3.0\nredirect: https://beta.observablehq.com/@mbostock/d3-sortable-bar-chart\n","encoding":"utf-8"},"README.md":{"filename":"README.md","type":"text/markdown","language":"Markdown","raw_url":"https://gist.githubusercontent.com/mbostock/3885705/raw/2cdd14341d362f68770d5ffc2059f099b979f46b/README.md","size":331,"truncated":false,"content":"This variation of a [simple bar chart](http://bl.ocks.org/3885304) adds sorting with staggered delay and translucency to improve readability during the transition. This technique is recommended by [Heer & Robertson](http://vis.berkeley.edu/papers/animated_transitions/). Use the checkbox in the top right to turn sorting on or off.","encoding":"utf-8"},"data.tsv":{"filename":"data.tsv","type":"text/tab-separated-values","language":"TSV","raw_url":"https://gist.githubusercontent.com/mbostock/3885705/raw/a65a161184a87b69fdabc3b4a952e5ac9c71b054/data.tsv","size":251,"truncated":false,"content":"letter\tfrequency\nA\t.08167\nB\t.01492\nC\t.02780\nD\t.04253\nE\t.12702\nF\t.02288\nG\t.02022\nH\t.06094\nI\t.06973\nJ\t.00153\nK\t.00747\nL\t.04025\nM\t.02517\nN\t.06749\nO\t.07507\nP\t.01929\nQ\t.00098\nR\t.05987\nS\t.06333\nT\t.09056\nU\t.02758\nV\t.01037\nW\t.02465\nX\t.00150\nY\t.01971\nZ\t.00074\n","encoding":"utf-8"},"index.html":{"filename":"index.html","type":"text/html","language":"HTML","raw_url":"https://gist.githubusercontent.com/mbostock/3885705/raw/bb096245d68891a4bcf7cab1e3216d1bd5470e60/index.html","size":3146,"truncated":false,"content":"<!DOCTYPE html>\n<meta charset=\"utf-8\">\n<style>\n\nbody {\n  font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n  position: relative;\n  width: 960px;\n}\n\n.axis text {\n  font: 10px sans-serif;\n}\n\n.axis path,\n.axis line {\n  fill: none;\n  stroke: #000;\n  shape-rendering: crispEdges;\n}\n\n.bar {\n  fill: steelblue;\n  fill-opacity: .9;\n}\n\n.x.axis path {\n  display: none;\n}\n\nlabel {\n  position: absolute;\n  top: 10px;\n  right: 10px;\n}\n\n</style>\n<label><input type=\"checkbox\"> Sort values</label>\n<script src=\"//d3js.org/d3.v3.min.js\"></script>\n<script>\n\nvar margin = {top: 20, right: 20, bottom: 30, left: 40},\n    width = 960 - margin.left - margin.right,\n    height = 500 - margin.top - margin.bottom;\n\nvar formatPercent = d3.format(\".0%\");\n\nvar x = d3.scale.ordinal()\n    .rangeRoundBands([0, width], .1, 1);\n\nvar y = d3.scale.linear()\n    .range([height, 0]);\n\nvar xAxis = d3.svg.axis()\n    .scale(x)\n    .orient(\"bottom\");\n\nvar yAxis = d3.svg.axis()\n    .scale(y)\n    .orient(\"left\")\n    .tickFormat(formatPercent);\n\nvar svg = d3.select(\"body\").append(\"svg\")\n    .attr(\"width\", width + margin.left + margin.right)\n    .attr(\"height\", height + margin.top + margin.bottom)\n  .append(\"g\")\n    .attr(\"transform\", \"translate(\" + margin.left + \",\" + margin.top + \")\");\n\nd3.tsv(\"data.tsv\", function(error, data) {\n\n  data.forEach(function(d) {\n    d.frequency = +d.frequency;\n  });\n\n  x.domain(data.map(function(d) { return d.letter; }));\n  y.domain([0, d3.max(data, function(d) { return d.frequency; })]);\n\n  svg.append(\"g\")\n      .attr(\"class\", \"x axis\")\n      .attr(\"transform\", \"translate(0,\" + height + \")\")\n      .call(xAxis);\n\n  svg.append(\"g\")\n      .attr(\"class\", \"y axis\")\n      .call(yAxis)\n    .append(\"text\")\n      .attr(\"transform\", \"rotate(-90)\")\n      .attr(\"y\", 6)\n      .attr(\"dy\", \".71em\")\n      .style(\"text-anchor\", \"end\")\n      .text(\"Frequency\");\n\n  svg.selectAll(\".bar\")\n      .data(data)\n    .enter().append(\"rect\")\n      .attr(\"class\", \"bar\")\n      .attr(\"x\", function(d) { return x(d.letter); })\n      .attr(\"width\", x.rangeBand())\n      .attr(\"y\", function(d) { return y(d.frequency); })\n      .attr(\"height\", function(d) { return height - y(d.frequency); });\n\n  d3.select(\"input\").on(\"change\", change);\n\n  var sortTimeout = setTimeout(function() {\n    d3.select(\"input\").property(\"checked\", true).each(change);\n  }, 2000);\n\n  function change() {\n    clearTimeout(sortTimeout);\n\n    // Copy-on-write since tweens are evaluated after a delay.\n    var x0 = x.domain(data.sort(this.checked\n        ? function(a, b) { return b.frequency - a.frequency; }\n        : function(a, b) { return d3.ascending(a.letter, b.letter); })\n        .map(function(d) { return d.letter; }))\n        .copy();\n\n    svg.selectAll(\".bar\")\n        .sort(function(a, b) { return x0(a.letter) - x0(b.letter); });\n\n    var transition = svg.transition().duration(750),\n        delay = function(d, i) { return i * 50; };\n\n    transition.selectAll(\".bar\")\n        .delay(delay)\n        .attr(\"x\", function(d) { return x0(d.letter); });\n\n    transition.select(\".x.axis\")\n        .call(xAxis)\n      .selectAll(\"g\")\n        .delay(delay);\n  }\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/3885705/raw/6e9131d97a75c0a3564a5e0f718ee09921a25826/thumbnail.png","size":4850,"truncated":false,"content":"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\n","encoding":"base64"}},"public":true,"created_at":"2012-10-13T18:40:20Z","updated_at":"2020-01-08T02:47:55Z","description":"Sortable Bar Chart","comments":2,"user":null,"comments_enabled":true,"comments_url":"https://api.github.com/gists/3885705/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/3885304","forks_url":"https://api.github.com/gists/3885304/forks","commits_url":"https://api.github.com/gists/3885304/commits","id":"3885304","node_id":"MDQ6R2lzdDM4ODUzMDQ=","git_pull_url":"https://gist.github.com/3885304.git","git_push_url":"https://gist.github.com/3885304.git","html_url":"https://gist.github.com/mbostock/3885304","files":{},"public":true,"created_at":"2012-10-13T16:45:02Z","updated_at":"2024-12-11T17:30:56Z","description":"Bar Chart","comments":3,"user":null,"comments_enabled":true,"comments_url":"https://api.github.com/gists/3885304/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/4994959","user":{"login":"tsyber1an","id":15877,"node_id":"MDQ6VXNlcjE1ODc3","avatar_url":"https://avatars.githubusercontent.com/u/15877?v=4","gravatar_id":"","url":"https://api.github.com/users/tsyber1an","html_url":"https://github.com/tsyber1an","followers_url":"https://api.github.com/users/tsyber1an/followers","following_url":"https://api.github.com/users/tsyber1an/following{/other_user}","gists_url":"https://api.github.com/users/tsyber1an/gists{/gist_id}","starred_url":"https://api.github.com/users/tsyber1an/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tsyber1an/subscriptions","organizations_url":"https://api.github.com/users/tsyber1an/orgs","repos_url":"https://api.github.com/users/tsyber1an/repos","events_url":"https://api.github.com/users/tsyber1an/events{/privacy}","received_events_url":"https://api.github.com/users/tsyber1an/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Tsyren O.","company":null,"blog":"http://www.tsyren.org","location":"Russia","email":null,"hireable":null,"bio":"SWE, focus: backend.","twitter_username":"tsyberian","public_repos":73,"public_gists":108,"followers":50,"following":43,"created_at":"2008-07-03T06:31:32Z","updated_at":"2026-04-18T12:34:35Z"},"id":"4994959","created_at":"2013-02-20T11:44:36Z","updated_at":"2015-12-13T23:49:45Z"},{"url":"https://api.github.com/gists/5391491","user":{"login":"mahinter","id":4143890,"node_id":"MDQ6VXNlcjQxNDM4OTA=","avatar_url":"https://avatars.githubusercontent.com/u/4143890?v=4","gravatar_id":"","url":"https://api.github.com/users/mahinter","html_url":"https://github.com/mahinter","followers_url":"https://api.github.com/users/mahinter/followers","following_url":"https://api.github.com/users/mahinter/following{/other_user}","gists_url":"https://api.github.com/users/mahinter/gists{/gist_id}","starred_url":"https://api.github.com/users/mahinter/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mahinter/subscriptions","organizations_url":"https://api.github.com/users/mahinter/orgs","repos_url":"https://api.github.com/users/mahinter/repos","events_url":"https://api.github.com/users/mahinter/events{/privacy}","received_events_url":"https://api.github.com/users/mahinter/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Mike Hinterberg","company":null,"blog":"","location":null,"email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":6,"public_gists":9,"followers":0,"following":0,"created_at":"2013-04-13T07:43:07Z","updated_at":"2024-03-04T20:07:57Z"},"id":"5391491","created_at":"2013-04-15T21:41:57Z","updated_at":"2015-12-16T06:28:57Z"},{"url":"https://api.github.com/gists/5392616","user":{"login":"mahinter","id":4143890,"node_id":"MDQ6VXNlcjQxNDM4OTA=","avatar_url":"https://avatars.githubusercontent.com/u/4143890?v=4","gravatar_id":"","url":"https://api.github.com/users/mahinter","html_url":"https://github.com/mahinter","followers_url":"https://api.github.com/users/mahinter/followers","following_url":"https://api.github.com/users/mahinter/following{/other_user}","gists_url":"https://api.github.com/users/mahinter/gists{/gist_id}","starred_url":"https://api.github.com/users/mahinter/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mahinter/subscriptions","organizations_url":"https://api.github.com/users/mahinter/orgs","repos_url":"https://api.github.com/users/mahinter/repos","events_url":"https://api.github.com/users/mahinter/events{/privacy}","received_events_url":"https://api.github.com/users/mahinter/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Mike Hinterberg","company":null,"blog":"","location":null,"email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":6,"public_gists":9,"followers":0,"following":0,"created_at":"2013-04-13T07:43:07Z","updated_at":"2024-03-04T20:07:57Z"},"id":"5392616","created_at":"2013-04-16T01:18:12Z","updated_at":"2015-12-16T06:38:58Z"},{"url":"https://api.github.com/gists/5392879","user":{"login":"mahinter","id":4143890,"node_id":"MDQ6VXNlcjQxNDM4OTA=","avatar_url":"https://avatars.githubusercontent.com/u/4143890?v=4","gravatar_id":"","url":"https://api.github.com/users/mahinter","html_url":"https://github.com/mahinter","followers_url":"https://api.github.com/users/mahinter/followers","following_url":"https://api.github.com/users/mahinter/following{/other_user}","gists_url":"https://api.github.com/users/mahinter/gists{/gist_id}","starred_url":"https://api.github.com/users/mahinter/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mahinter/subscriptions","organizations_url":"https://api.github.com/users/mahinter/orgs","repos_url":"https://api.github.com/users/mahinter/repos","events_url":"https://api.github.com/users/mahinter/events{/privacy}","received_events_url":"https://api.github.com/users/mahinter/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Mike Hinterberg","company":null,"blog":"","location":null,"email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":6,"public_gists":9,"followers":0,"following":0,"created_at":"2013-04-13T07:43:07Z","updated_at":"2024-03-04T20:07:57Z"},"id":"5392879","created_at":"2013-04-16T02:25:47Z","updated_at":"2015-12-16T06:39:08Z"},{"url":"https://api.github.com/gists/5980452","user":{"login":"tmayse","id":2366109,"node_id":"MDQ6VXNlcjIzNjYxMDk=","avatar_url":"https://avatars.githubusercontent.com/u/2366109?v=4","gravatar_id":"","url":"https://api.github.com/users/tmayse","html_url":"https://github.com/tmayse","followers_url":"https://api.github.com/users/tmayse/followers","following_url":"https://api.github.com/users/tmayse/following{/other_user}","gists_url":"https://api.github.com/users/tmayse/gists{/gist_id}","starred_url":"https://api.github.com/users/tmayse/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tmayse/subscriptions","organizations_url":"https://api.github.com/users/tmayse/orgs","repos_url":"https://api.github.com/users/tmayse/repos","events_url":"https://api.github.com/users/tmayse/events{/privacy}","received_events_url":"https://api.github.com/users/tmayse/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Tony Mayse","company":null,"blog":"","location":"Portland, OR","email":null,"hireable":true,"bio":null,"twitter_username":null,"public_repos":12,"public_gists":10,"followers":0,"following":1,"created_at":"2012-09-17T23:12:08Z","updated_at":"2025-02-22T23:30:33Z"},"id":"5980452","created_at":"2013-07-12T00:28:00Z","updated_at":"2015-12-19T15:59:07Z"},{"url":"https://api.github.com/gists/6323769","user":{"login":"enjoylife","id":877194,"node_id":"MDQ6VXNlcjg3NzE5NA==","avatar_url":"https://avatars.githubusercontent.com/u/877194?v=4","gravatar_id":"","url":"https://api.github.com/users/enjoylife","html_url":"https://github.com/enjoylife","followers_url":"https://api.github.com/users/enjoylife/followers","following_url":"https://api.github.com/users/enjoylife/following{/other_user}","gists_url":"https://api.github.com/users/enjoylife/gists{/gist_id}","starred_url":"https://api.github.com/users/enjoylife/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/enjoylife/subscriptions","organizations_url":"https://api.github.com/users/enjoylife/orgs","repos_url":"https://api.github.com/users/enjoylife/repos","events_url":"https://api.github.com/users/enjoylife/events{/privacy}","received_events_url":"https://api.github.com/users/enjoylife/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Matthew Clemens","company":"Uber","blog":"mdc.life","location":"Berkeley, CA","email":"matt.d.clemens@gmail.com","hireable":null,"bio":"Try, fail, learn, improve.","twitter_username":null,"public_repos":142,"public_gists":238,"followers":26,"following":17,"created_at":"2011-06-26T19:09:45Z","updated_at":"2026-04-07T20:42:13Z"},"id":"6323769","created_at":"2013-08-23T20:38:34Z","updated_at":"2015-12-21T14:59:16Z"},{"url":"https://api.github.com/gists/9155443","user":{"login":"danse","id":885935,"node_id":"MDQ6VXNlcjg4NTkzNQ==","avatar_url":"https://avatars.githubusercontent.com/u/885935?v=4","gravatar_id":"","url":"https://api.github.com/users/danse","html_url":"https://github.com/danse","followers_url":"https://api.github.com/users/danse/followers","following_url":"https://api.github.com/users/danse/following{/other_user}","gists_url":"https://api.github.com/users/danse/gists{/gist_id}","starred_url":"https://api.github.com/users/danse/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/danse/subscriptions","organizations_url":"https://api.github.com/users/danse/orgs","repos_url":"https://api.github.com/users/danse/repos","events_url":"https://api.github.com/users/danse/events{/privacy}","received_events_url":"https://api.github.com/users/danse/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"frances","company":null,"blog":"","location":"Internet","email":"focchi.pinti@gmail.com","hireable":true,"bio":"never hide","twitter_username":null,"public_repos":129,"public_gists":70,"followers":61,"following":71,"created_at":"2011-06-30T08:18:34Z","updated_at":"2026-04-07T07:25:51Z"},"id":"9155443","created_at":"2014-02-22T14:11:42Z","updated_at":"2015-08-29T13:56:39Z"},{"url":"https://api.github.com/gists/e7bbbbb421b4eb271e33","user":{"login":"veralakif","id":8592071,"node_id":"MDQ6VXNlcjg1OTIwNzE=","avatar_url":"https://avatars.githubusercontent.com/u/8592071?v=4","gravatar_id":"","url":"https://api.github.com/users/veralakif","html_url":"https://github.com/veralakif","followers_url":"https://api.github.com/users/veralakif/followers","following_url":"https://api.github.com/users/veralakif/following{/other_user}","gists_url":"https://api.github.com/users/veralakif/gists{/gist_id}","starred_url":"https://api.github.com/users/veralakif/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/veralakif/subscriptions","organizations_url":"https://api.github.com/users/veralakif/orgs","repos_url":"https://api.github.com/users/veralakif/repos","events_url":"https://api.github.com/users/veralakif/events{/privacy}","received_events_url":"https://api.github.com/users/veralakif/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":3,"public_gists":1,"followers":0,"following":0,"created_at":"2014-08-29T15:48:59Z","updated_at":"2016-02-27T18:46:16Z"},"id":"e7bbbbb421b4eb271e33","created_at":"2015-03-03T17:08:57Z","updated_at":"2015-08-29T14:16:28Z"},{"url":"https://api.github.com/gists/8658307fde86e2e66e46","user":{"login":"batter","id":951821,"node_id":"MDQ6VXNlcjk1MTgyMQ==","avatar_url":"https://avatars.githubusercontent.com/u/951821?v=4","gravatar_id":"","url":"https://api.github.com/users/batter","html_url":"https://github.com/batter","followers_url":"https://api.github.com/users/batter/followers","following_url":"https://api.github.com/users/batter/following{/other_user}","gists_url":"https://api.github.com/users/batter/gists{/gist_id}","starred_url":"https://api.github.com/users/batter/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/batter/subscriptions","organizations_url":"https://api.github.com/users/batter/orgs","repos_url":"https://api.github.com/users/batter/repos","events_url":"https://api.github.com/users/batter/events{/privacy}","received_events_url":"https://api.github.com/users/batter/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Ben Atkins","company":null,"blog":"","location":"New York City","email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":43,"public_gists":10,"followers":42,"following":47,"created_at":"2011-08-01T14:01:05Z","updated_at":"2026-03-05T22:55:59Z"},"id":"8658307fde86e2e66e46","created_at":"2016-01-10T23:56:42Z","updated_at":"2016-01-10T23:58:46Z"},{"url":"https://api.github.com/gists/285843abf4e80eb137d95cfe81683d1a","user":{"login":"Greg-Johns","id":1156428,"node_id":"MDQ6VXNlcjExNTY0Mjg=","avatar_url":"https://avatars.githubusercontent.com/u/1156428?v=4","gravatar_id":"","url":"https://api.github.com/users/Greg-Johns","html_url":"https://github.com/Greg-Johns","followers_url":"https://api.github.com/users/Greg-Johns/followers","following_url":"https://api.github.com/users/Greg-Johns/following{/other_user}","gists_url":"https://api.github.com/users/Greg-Johns/gists{/gist_id}","starred_url":"https://api.github.com/users/Greg-Johns/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Greg-Johns/subscriptions","organizations_url":"https://api.github.com/users/Greg-Johns/orgs","repos_url":"https://api.github.com/users/Greg-Johns/repos","events_url":"https://api.github.com/users/Greg-Johns/events{/privacy}","received_events_url":"https://api.github.com/users/Greg-Johns/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Greg Johns","company":null,"blog":"https://greg-johns.vercel.app/","location":"Texas","email":"greg.johns@gmail.com","hireable":true,"bio":"A developer/designer guy.","twitter_username":null,"public_repos":27,"public_gists":20,"followers":33,"following":46,"created_at":"2011-10-27T19:20:30Z","updated_at":"2026-04-14T19:05:43Z"},"id":"285843abf4e80eb137d95cfe81683d1a","created_at":"2016-11-15T04:55:57Z","updated_at":"2016-11-15T17:37:51Z"},{"url":"https://api.github.com/gists/5e4a7dc6067aed56945d863f045759e3","user":{"login":"sokhals","id":8617075,"node_id":"MDQ6VXNlcjg2MTcwNzU=","avatar_url":"https://avatars.githubusercontent.com/u/8617075?v=4","gravatar_id":"","url":"https://api.github.com/users/sokhals","html_url":"https://github.com/sokhals","followers_url":"https://api.github.com/users/sokhals/followers","following_url":"https://api.github.com/users/sokhals/following{/other_user}","gists_url":"https://api.github.com/users/sokhals/gists{/gist_id}","starred_url":"https://api.github.com/users/sokhals/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/sokhals/subscriptions","organizations_url":"https://api.github.com/users/sokhals/orgs","repos_url":"https://api.github.com/users/sokhals/repos","events_url":"https://api.github.com/users/sokhals/events{/privacy}","received_events_url":"https://api.github.com/users/sokhals/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Surinder Sokhal","company":null,"blog":"","location":"Boston, MA, USA","email":"surindersokhal110@gmail.com","hireable":true,"bio":null,"twitter_username":null,"public_repos":9,"public_gists":4,"followers":0,"following":0,"created_at":"2014-09-01T15:58:19Z","updated_at":"2023-05-12T11:14:07Z"},"id":"5e4a7dc6067aed56945d863f045759e3","created_at":"2016-12-03T21:20:41Z","updated_at":"2016-12-03T21:23:44Z"},{"url":"https://api.github.com/gists/912fa635bdfe74030191703f8a0c02fe","user":{"login":"dorothyzhangxt","id":21233835,"node_id":"MDQ6VXNlcjIxMjMzODM1","avatar_url":"https://avatars.githubusercontent.com/u/21233835?v=4","gravatar_id":"","url":"https://api.github.com/users/dorothyzhangxt","html_url":"https://github.com/dorothyzhangxt","followers_url":"https://api.github.com/users/dorothyzhangxt/followers","following_url":"https://api.github.com/users/dorothyzhangxt/following{/other_user}","gists_url":"https://api.github.com/users/dorothyzhangxt/gists{/gist_id}","starred_url":"https://api.github.com/users/dorothyzhangxt/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dorothyzhangxt/subscriptions","organizations_url":"https://api.github.com/users/dorothyzhangxt/orgs","repos_url":"https://api.github.com/users/dorothyzhangxt/repos","events_url":"https://api.github.com/users/dorothyzhangxt/events{/privacy}","received_events_url":"https://api.github.com/users/dorothyzhangxt/received_events","type":"User","user_view_type":"public","site_admin":false,"name":null,"company":null,"blog":"","location":null,"email":"dorothyzhangxt@gmail.com","hireable":null,"bio":null,"twitter_username":null,"public_repos":27,"public_gists":2,"followers":0,"following":0,"created_at":"2016-08-25T04:12:30Z","updated_at":"2026-02-09T07:45:14Z"},"id":"912fa635bdfe74030191703f8a0c02fe","created_at":"2017-11-29T05:43:52Z","updated_at":"2017-11-29T05:43:53Z"},{"url":"https://api.github.com/gists/5e7e79209f80700eb7a73a0a07c390ed","user":{"login":"bumbeishvili","id":6873202,"node_id":"MDQ6VXNlcjY4NzMyMDI=","avatar_url":"https://avatars.githubusercontent.com/u/6873202?v=4","gravatar_id":"","url":"https://api.github.com/users/bumbeishvili","html_url":"https://github.com/bumbeishvili","followers_url":"https://api.github.com/users/bumbeishvili/followers","following_url":"https://api.github.com/users/bumbeishvili/following{/other_user}","gists_url":"https://api.github.com/users/bumbeishvili/gists{/gist_id}","starred_url":"https://api.github.com/users/bumbeishvili/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bumbeishvili/subscriptions","organizations_url":"https://api.github.com/users/bumbeishvili/orgs","repos_url":"https://api.github.com/users/bumbeishvili/repos","events_url":"https://api.github.com/users/bumbeishvili/events{/privacy}","received_events_url":"https://api.github.com/users/bumbeishvili/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"David  Bumbeishvili","company":null,"blog":"davidb.dev","location":"Tbilisi, Georgia","email":"me@davidb.dev","hireable":true,"bio":"Working on advanced data visualizations using d3, three.js webgl ","twitter_username":"dbumbeishvili","public_repos":273,"public_gists":274,"followers":404,"following":307,"created_at":"2014-03-06T13:24:42Z","updated_at":"2026-04-19T16:50:02Z"},"id":"5e7e79209f80700eb7a73a0a07c390ed","created_at":"2018-02-22T07:33:11Z","updated_at":"2018-02-22T07:33:11Z"},{"url":"https://api.github.com/gists/6363d1629b6a078667c62cfa83b9775b","user":{"login":"ix4","id":38112035,"node_id":"MDQ6VXNlcjM4MTEyMDM1","avatar_url":"https://avatars.githubusercontent.com/u/38112035?v=4","gravatar_id":"","url":"https://api.github.com/users/ix4","html_url":"https://github.com/ix4","followers_url":"https://api.github.com/users/ix4/followers","following_url":"https://api.github.com/users/ix4/following{/other_user}","gists_url":"https://api.github.com/users/ix4/gists{/gist_id}","starred_url":"https://api.github.com/users/ix4/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ix4/subscriptions","organizations_url":"https://api.github.com/users/ix4/orgs","repos_url":"https://api.github.com/users/ix4/repos","events_url":"https://api.github.com/users/ix4/events{/privacy}","received_events_url":"https://api.github.com/users/ix4/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":12,"public_gists":1448,"followers":67,"following":94,"created_at":"2018-04-05T17:37:06Z","updated_at":"2026-04-13T03:04:38Z"},"id":"6363d1629b6a078667c62cfa83b9775b","created_at":"2020-01-08T02:47:54Z","updated_at":"2020-01-08T02:48:06Z"}],"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":"3dd1325d60c074aec4c855f81da5778e9946d0a3","committed_at":"2018-10-07T23:00:29Z","change_status":{"total":1,"additions":1,"deletions":0},"url":"https://api.github.com/gists/3885705/3dd1325d60c074aec4c855f81da5778e9946d0a3"},{"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":"d72997db0cde45e4136b95b0ca83483a6c428edf","committed_at":"2016-02-09T01:40:16Z","change_status":{"total":1,"additions":1,"deletions":0},"url":"https://api.github.com/gists/3885705/d72997db0cde45e4136b95b0ca83483a6c428edf"},{"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":"db3c2b3d443eac478b68e31e2211178bbd325b2d","committed_at":"2015-10-31T01:09:17Z","change_status":{"total":2,"additions":1,"deletions":1},"url":"https://api.github.com/gists/3885705/db3c2b3d443eac478b68e31e2211178bbd325b2d"},{"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":"c941dd8b3d79075c68e65c58ec0acbd7789e35c1","committed_at":"2015-06-11T19:33:16Z","change_status":{"total":2,"additions":1,"deletions":1},"url":"https://api.github.com/gists/3885705/c941dd8b3d79075c68e65c58ec0acbd7789e35c1"},{"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":"0019e70694b8838bbd6618437574425b9be045d5","committed_at":"2015-03-09T21:06:40Z","change_status":{"total":5,"additions":4,"deletions":1},"url":"https://api.github.com/gists/3885705/0019e70694b8838bbd6618437574425b9be045d5"},{"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":"8784f05689d2970e0c0a8235a28f2604590794cd","committed_at":"2012-10-17T17:22:21Z","change_status":{"total":2,"additions":1,"deletions":1},"url":"https://api.github.com/gists/3885705/8784f05689d2970e0c0a8235a28f2604590794cd"},{"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":"9c095318aa3e03a1a4ba6d4bb60c9a7071eecd4b","committed_at":"2012-10-17T17:22:03Z","change_status":{"total":2,"additions":1,"deletions":1},"url":"https://api.github.com/gists/3885705/9c095318aa3e03a1a4ba6d4bb60c9a7071eecd4b"},{"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":"fb0235a76bc7e2a1a419be25f6208745912ab4e4","committed_at":"2012-10-14T16:03:58Z","change_status":{"total":8,"additions":7,"deletions":1},"url":"https://api.github.com/gists/3885705/fb0235a76bc7e2a1a419be25f6208745912ab4e4"},{"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":"91b15cdb8caa08e11469b42f48e9c1f4f3e7ee9b","committed_at":"2012-10-13T21:46:16Z","change_status":{"total":2,"additions":1,"deletions":1},"url":"https://api.github.com/gists/3885705/91b15cdb8caa08e11469b42f48e9c1f4f3e7ee9b"},{"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":"ff6c07ea8f2c03a6e03a1008d0fa80008c9e86e4","committed_at":"2012-10-13T19:07:31Z","change_status":{"total":8,"additions":5,"deletions":3},"url":"https://api.github.com/gists/3885705/ff6c07ea8f2c03a6e03a1008d0fa80008c9e86e4"},{"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":"5984d665c32452db296e9f00174a2404f10eada4","committed_at":"2012-10-13T18:59:47Z","change_status":{},"url":"https://api.github.com/gists/3885705/5984d665c32452db296e9f00174a2404f10eada4"},{"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":"7bac954212ca6b27dc350bb7179ac2f21c0adcf2","committed_at":"2012-10-13T18:58:28Z","change_status":{},"url":"https://api.github.com/gists/3885705/7bac954212ca6b27dc350bb7179ac2f21c0adcf2"},{"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":"aaeb70f11c4eb7ab107a2a0788aec135810cfc0d","committed_at":"2012-10-13T18:57:40Z","change_status":{},"url":"https://api.github.com/gists/3885705/aaeb70f11c4eb7ab107a2a0788aec135810cfc0d"},{"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":"978726900b34ef7de28607484d4559fc7d922782","committed_at":"2012-10-13T18:51:20Z","change_status":{},"url":"https://api.github.com/gists/3885705/978726900b34ef7de28607484d4559fc7d922782"},{"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":"b872ac97feccc6bf64155b06081670259f4b35d1","committed_at":"2012-10-13T18:48:36Z","change_status":{},"url":"https://api.github.com/gists/3885705/b872ac97feccc6bf64155b06081670259f4b35d1"},{"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":"b74bf28678c7e132b7ff230b41cbd75ca963e4b8","committed_at":"2012-10-13T18:47:59Z","change_status":{},"url":"https://api.github.com/gists/3885705/b74bf28678c7e132b7ff230b41cbd75ca963e4b8"},{"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":"f500e51809b1e5c3896ac9af16bf896f68b9d108","committed_at":"2012-10-13T18:47:31Z","change_status":{},"url":"https://api.github.com/gists/3885705/f500e51809b1e5c3896ac9af16bf896f68b9d108"},{"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":"7bc854479c317d3ba093b012ec3dd79e752fc877","committed_at":"2012-10-13T18:47:10Z","change_status":{},"url":"https://api.github.com/gists/3885705/7bc854479c317d3ba093b012ec3dd79e752fc877"},{"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":"93f4a6c4c91633fbc0d1e5a749927649f05dc74a","committed_at":"2012-10-13T18:42:35Z","change_status":{},"url":"https://api.github.com/gists/3885705/93f4a6c4c91633fbc0d1e5a749927649f05dc74a"},{"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":"eb52183e4109b91611c50aa91324cd8cdae8dd75","committed_at":"2012-10-13T16:49:18Z","change_status":{},"url":"https://api.github.com/gists/3885705/eb52183e4109b91611c50aa91324cd8cdae8dd75"},{"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":"2b85de5fbae171221de2563899d85079fece6799","committed_at":"2012-10-13T16:48:18Z","change_status":{},"url":"https://api.github.com/gists/3885705/2b85de5fbae171221de2563899d85079fece6799"},{"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":"ac06510efbe84a27d85e2e8a392c5d76bfd5c4f4","committed_at":"2012-10-12T03:56:40Z","change_status":{},"url":"https://api.github.com/gists/3885705/ac06510efbe84a27d85e2e8a392c5d76bfd5c4f4"},{"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":"4ebdcf2800cdb97c3936f5b42c6ff1e2a17c2926","committed_at":"2012-08-10T03:23:31Z","change_status":{},"url":"https://api.github.com/gists/3885705/4ebdcf2800cdb97c3936f5b42c6ff1e2a17c2926"},{"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":"3a6dc7720a7e19130db2bb86826105e7e34026fa","committed_at":"2012-08-10T02:51:17Z","change_status":{},"url":"https://api.github.com/gists/3885705/3a6dc7720a7e19130db2bb86826105e7e34026fa"}],"truncated":false}