{"url":"https://api.github.com/gists/3887235","forks_url":"https://api.github.com/gists/3887235/forks","commits_url":"https://api.github.com/gists/3887235/commits","id":"3887235","node_id":"MDQ6R2lzdDM4ODcyMzU=","git_pull_url":"https://gist.github.com/3887235.git","git_push_url":"https://gist.github.com/3887235.git","html_url":"https://gist.github.com/mbostock/3887235","files":{".block":{"filename":".block","type":"text/plain","language":null,"raw_url":"https://gist.githubusercontent.com/mbostock/3887235/raw/7fa4937e3f91a92cbde9a7fd55fa8536a9d4576c/.block","size":80,"truncated":false,"content":"license: gpl-3.0\nredirect: https://beta.observablehq.com/@mbostock/d3-pie-chart\n","encoding":"utf-8"},"README.md":{"filename":"README.md","type":"text/markdown","language":"Markdown","raw_url":"https://gist.githubusercontent.com/mbostock/3887235/raw/79bc634f252bd8a75cc12d003241320c30d93ef9/README.md","size":332,"truncated":false,"content":"This pie chart is constructed from a CSV file storing the populations of various age groups. The chart employs a number of D3 features:\n\n* [d3-dsv](https://github.com/d3/d3-dsv) - load and parse data\n* [d3-scale](https://github.com/d3/d3-scale) - color encoding\n* [d3-shape](https://github.com/d3/d3-shape) - layout and render arcs\n","encoding":"utf-8"},"data.csv":{"filename":"data.csv","type":"text/csv","language":"CSV","raw_url":"https://gist.githubusercontent.com/mbostock/3887235/raw/9784cea87cbce2a8dd80398d92b55aada22d43f7/data.csv","size":109,"truncated":false,"content":"age,population\n<5,2704659\n5-13,4499890\n14-17,2159981\n18-24,3853788\n25-44,14106543\n45-64,8819342\n≥65,612463\n","encoding":"utf-8"},"index.html":{"filename":"index.html","type":"text/html","language":"HTML","raw_url":"https://gist.githubusercontent.com/mbostock/3887235/raw/d651009bd3249862dbc8f6142cf352d51552da5c/index.html","size":1383,"truncated":false,"content":"<!DOCTYPE html>\n<meta charset=\"utf-8\">\n<style>\n\n.arc text {\n  font: 10px sans-serif;\n  text-anchor: middle;\n}\n\n.arc path {\n  stroke: #fff;\n}\n\n</style>\n<svg width=\"960\" height=\"500\"></svg>\n<script src=\"https://d3js.org/d3.v4.min.js\"></script>\n<script>\n\nvar svg = d3.select(\"svg\"),\n    width = +svg.attr(\"width\"),\n    height = +svg.attr(\"height\"),\n    radius = Math.min(width, height) / 2,\n    g = svg.append(\"g\").attr(\"transform\", \"translate(\" + width / 2 + \",\" + height / 2 + \")\");\n\nvar color = d3.scaleOrdinal([\"#98abc5\", \"#8a89a6\", \"#7b6888\", \"#6b486b\", \"#a05d56\", \"#d0743c\", \"#ff8c00\"]);\n\nvar pie = d3.pie()\n    .sort(null)\n    .value(function(d) { return d.population; });\n\nvar path = d3.arc()\n    .outerRadius(radius - 10)\n    .innerRadius(0);\n\nvar label = d3.arc()\n    .outerRadius(radius - 40)\n    .innerRadius(radius - 40);\n\nd3.csv(\"data.csv\", function(d) {\n  d.population = +d.population;\n  return d;\n}, function(error, data) {\n  if (error) throw error;\n\n  var arc = g.selectAll(\".arc\")\n    .data(pie(data))\n    .enter().append(\"g\")\n      .attr(\"class\", \"arc\");\n\n  arc.append(\"path\")\n      .attr(\"d\", path)\n      .attr(\"fill\", function(d) { return color(d.data.age); });\n\n  arc.append(\"text\")\n      .attr(\"transform\", function(d) { return \"translate(\" + label.centroid(d) + \")\"; })\n      .attr(\"dy\", \"0.35em\")\n      .text(function(d) { return d.data.age; });\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/3887235/raw/cf1ab42270efaef55eb951de3cefbd2e2ee3f62f/thumbnail.png","size":8906,"truncated":false,"content":"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\nw3XDheE9EeIRsRH1EVORHpFFkcNRJlHro65FK0RzozticDERMTUxk8s8l+1f\nNhZrFZsfe2e5zvLVy6+sUFiRuuLMSvGVzJUn4zBxkXENcV+Zgcwq5mQ8I748\nfoLlzjrAesV2Ye9jjyc4JhQlPE90TCxKfMFx5OzljCc5JxUnvea6c0u5b5N9\nkiuSp1ICU2pTZlIjU5vT8GlxaZ08KV4KrzddJX11+hDfgJ/PH86wz9ifMSHw\nE9RkQpnLMzuypBFz0y/UFf4gHMl2yi7L/rQqYtXJ1ZKreav71+iv2b7meY5X\nzk9r0WtZa3vWqa3bvG5kvev6yg3QhvgNPRs1NuZtHNvkvaluM3FzyuZfc01z\ni3I/bInc0pWnnLcpb/QH7x8a88XyBfl3tzpsrdiG3sbdNrDdYvvB7d8L2AVX\nC00Liwu/7mDtuPqj2Y8lP87sTNw5sMt61+Hd2N283Xf2OO+pK5Isyika3Ruw\nt20ffV/Bvg/7V+6/UmxZXHGAeEB4YLjEv6TjoObB3Qe/liaV3i5zK2suVyrf\nXj51iH3oxmGXw00VyhWFFV+OcI/cq/SubKvSrio+ij2affRZdUR130+2P9XX\nKNQU1nyr5dUO14XU9dbb1Nc3KDXsaoQbhY3jx2KPDR73ON7RZNRU2UxrLmwB\nLcKWlz/H/XznhN+JnpO2J5tOaZ0qb6W2FrRBbWvaJtqT2oc7ojuGOn07e7oc\nulp/Mf6l9rTa6bIzMmd2nSWezTs7cy7n3GQ3v/v1ec750Z6VPQ8vRF241Rvc\nO3DR7+LlS16XLvS59p277Hj59BX7K51Xba+2X7O+1tZv1d/6q9WvrQPWA23X\nba53DNoNdg0tGTp7w/nG+ZseNy/dYty6dnvp7aE74Xfu3Y29O3yPfe/F/dT7\nbx9kP5h+uOkR5lHBY4nHxU+UnlT9pvdb87D18JkRj5H+p6FPH46yRl/9nvn7\n17G8Z5Rnxc9Vn9e/MH9xetxrfPDlspdjr/ivpl/n/yH5R/kb3Ten/nT5s38i\namLsreDtzLsd7+Xf136w/NAzGTT55GPax+mpgk/yn+o+237u+xL55fn0qq+4\nryXf9L51fff7/mgmbWaGzxQw56wACgk4MRGAd7UAUKIR7zAIAFFs3hPPCZr3\n8XME/hPP++Y5WQNQ6wJA+CYA/BGPchgJLYTJyDhricJcAGxhIYp/KDPRwny+\n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\n","encoding":"base64"}},"public":true,"created_at":"2012-10-14T03:57:04Z","updated_at":"2025-11-20T17:35:55Z","description":"Pie Chart","comments":5,"user":null,"comments_enabled":true,"comments_url":"https://api.github.com/gists/3887235/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/3887193","forks_url":"https://api.github.com/gists/3887193/forks","commits_url":"https://api.github.com/gists/3887193/commits","id":"3887193","node_id":"MDQ6R2lzdDM4ODcxOTM=","git_pull_url":"https://gist.github.com/3887193.git","git_push_url":"https://gist.github.com/3887193.git","html_url":"https://gist.github.com/mbostock/3887193","files":{},"public":true,"created_at":"2012-10-14T03:46:39Z","updated_at":"2018-07-25T18:52:30Z","description":"Donut Chart","comments":0,"user":null,"comments_enabled":true,"comments_url":"https://api.github.com/gists/3887193/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/3925054","user":{"login":"tmaiaroto","id":202653,"node_id":"MDQ6VXNlcjIwMjY1Mw==","avatar_url":"https://avatars.githubusercontent.com/u/202653?v=4","gravatar_id":"","url":"https://api.github.com/users/tmaiaroto","html_url":"https://github.com/tmaiaroto","followers_url":"https://api.github.com/users/tmaiaroto/followers","following_url":"https://api.github.com/users/tmaiaroto/following{/other_user}","gists_url":"https://api.github.com/users/tmaiaroto/gists{/gist_id}","starred_url":"https://api.github.com/users/tmaiaroto/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tmaiaroto/subscriptions","organizations_url":"https://api.github.com/users/tmaiaroto/orgs","repos_url":"https://api.github.com/users/tmaiaroto/repos","events_url":"https://api.github.com/users/tmaiaroto/events{/privacy}","received_events_url":"https://api.github.com/users/tmaiaroto/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Tom Maiaroto","company":"@ExtrackerInc","blog":"","location":"Bay Area, CA","email":null,"hireable":null,"bio":"🦄 Full stack developer and whatever else is needed.","twitter_username":null,"public_repos":114,"public_gists":26,"followers":176,"following":28,"created_at":"2010-02-12T19:09:47Z","updated_at":"2026-04-06T13:03:34Z"},"id":"3925054","created_at":"2012-10-20T22:29:55Z","updated_at":"2015-10-11T21:57:54Z"},{"url":"https://api.github.com/gists/4241696","user":{"login":"parryc","id":1934943,"node_id":"MDQ6VXNlcjE5MzQ5NDM=","avatar_url":"https://avatars.githubusercontent.com/u/1934943?v=4","gravatar_id":"","url":"https://api.github.com/users/parryc","html_url":"https://github.com/parryc","followers_url":"https://api.github.com/users/parryc/followers","following_url":"https://api.github.com/users/parryc/following{/other_user}","gists_url":"https://api.github.com/users/parryc/gists{/gist_id}","starred_url":"https://api.github.com/users/parryc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/parryc/subscriptions","organizations_url":"https://api.github.com/users/parryc/orgs","repos_url":"https://api.github.com/users/parryc/repos","events_url":"https://api.github.com/users/parryc/events{/privacy}","received_events_url":"https://api.github.com/users/parryc/received_events","type":"User","user_view_type":"public","site_admin":false,"name":null,"company":null,"blog":"http://parryc.com","location":null,"email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":24,"public_gists":5,"followers":12,"following":20,"created_at":"2012-07-07T05:37:48Z","updated_at":"2025-12-12T20:08:50Z"},"id":"4241696","created_at":"2012-12-08T20:06:32Z","updated_at":"2015-10-13T19:07:53Z"},{"url":"https://api.github.com/gists/4262336","user":{"login":"antimatter15","id":30054,"node_id":"MDQ6VXNlcjMwMDU0","avatar_url":"https://avatars.githubusercontent.com/u/30054?v=4","gravatar_id":"","url":"https://api.github.com/users/antimatter15","html_url":"https://github.com/antimatter15","followers_url":"https://api.github.com/users/antimatter15/followers","following_url":"https://api.github.com/users/antimatter15/following{/other_user}","gists_url":"https://api.github.com/users/antimatter15/gists{/gist_id}","starred_url":"https://api.github.com/users/antimatter15/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/antimatter15/subscriptions","organizations_url":"https://api.github.com/users/antimatter15/orgs","repos_url":"https://api.github.com/users/antimatter15/repos","events_url":"https://api.github.com/users/antimatter15/events{/privacy}","received_events_url":"https://api.github.com/users/antimatter15/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Kevin Kwok","company":null,"blog":"https://antimatter15.com","location":"San Francisco, CA","email":"antimatter15@gmail.com","hireable":null,"bio":null,"twitter_username":null,"public_repos":342,"public_gists":201,"followers":1808,"following":675,"created_at":"2008-10-21T01:24:27Z","updated_at":"2026-03-30T03:17:59Z"},"id":"4262336","created_at":"2012-12-11T21:35:36Z","updated_at":"2015-10-13T21:58:12Z"},{"url":"https://api.github.com/gists/5419485","user":{"login":"Jedius","id":1271058,"node_id":"MDQ6VXNlcjEyNzEwNTg=","avatar_url":"https://avatars.githubusercontent.com/u/1271058?v=4","gravatar_id":"","url":"https://api.github.com/users/Jedius","html_url":"https://github.com/Jedius","followers_url":"https://api.github.com/users/Jedius/followers","following_url":"https://api.github.com/users/Jedius/following{/other_user}","gists_url":"https://api.github.com/users/Jedius/gists{/gist_id}","starred_url":"https://api.github.com/users/Jedius/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Jedius/subscriptions","organizations_url":"https://api.github.com/users/Jedius/orgs","repos_url":"https://api.github.com/users/Jedius/repos","events_url":"https://api.github.com/users/Jedius/events{/privacy}","received_events_url":"https://api.github.com/users/Jedius/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":17,"public_gists":5,"followers":0,"following":0,"created_at":"2011-12-18T15:31:44Z","updated_at":"2026-02-10T23:02:40Z"},"id":"5419485","created_at":"2013-04-19T10:27:04Z","updated_at":"2015-12-16T10:19:25Z"},{"url":"https://api.github.com/gists/6541897","user":{"login":"AmusingTeebs","id":5391578,"node_id":"MDQ6VXNlcjUzOTE1Nzg=","avatar_url":"https://avatars.githubusercontent.com/u/5391578?v=4","gravatar_id":"","url":"https://api.github.com/users/AmusingTeebs","html_url":"https://github.com/AmusingTeebs","followers_url":"https://api.github.com/users/AmusingTeebs/followers","following_url":"https://api.github.com/users/AmusingTeebs/following{/other_user}","gists_url":"https://api.github.com/users/AmusingTeebs/gists{/gist_id}","starred_url":"https://api.github.com/users/AmusingTeebs/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/AmusingTeebs/subscriptions","organizations_url":"https://api.github.com/users/AmusingTeebs/orgs","repos_url":"https://api.github.com/users/AmusingTeebs/repos","events_url":"https://api.github.com/users/AmusingTeebs/events{/privacy}","received_events_url":"https://api.github.com/users/AmusingTeebs/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":2,"public_gists":1,"followers":1,"following":1,"created_at":"2013-09-05T13:47:03Z","updated_at":"2024-06-26T03:59:46Z"},"id":"6541897","created_at":"2013-09-12T18:30:22Z","updated_at":"2015-12-22T22:39:18Z"},{"url":"https://api.github.com/gists/7379226","user":{"login":"yigu404","id":4166060,"node_id":"MDQ6VXNlcjQxNjYwNjA=","avatar_url":"https://avatars.githubusercontent.com/u/4166060?v=4","gravatar_id":"","url":"https://api.github.com/users/yigu404","html_url":"https://github.com/yigu404","followers_url":"https://api.github.com/users/yigu404/followers","following_url":"https://api.github.com/users/yigu404/following{/other_user}","gists_url":"https://api.github.com/users/yigu404/gists{/gist_id}","starred_url":"https://api.github.com/users/yigu404/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/yigu404/subscriptions","organizations_url":"https://api.github.com/users/yigu404/orgs","repos_url":"https://api.github.com/users/yigu404/repos","events_url":"https://api.github.com/users/yigu404/events{/privacy}","received_events_url":"https://api.github.com/users/yigu404/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":14,"public_gists":1,"followers":0,"following":0,"created_at":"2013-04-16T00:48:51Z","updated_at":"2022-04-19T14:45:10Z"},"id":"7379226","created_at":"2013-11-08T23:19:20Z","updated_at":"2015-12-27T19:48:57Z"},{"url":"https://api.github.com/gists/7878021","user":{"login":"mdjaman","id":803262,"node_id":"MDQ6VXNlcjgwMzI2Mg==","avatar_url":"https://avatars.githubusercontent.com/u/803262?v=4","gravatar_id":"","url":"https://api.github.com/users/mdjaman","html_url":"https://github.com/mdjaman","followers_url":"https://api.github.com/users/mdjaman/followers","following_url":"https://api.github.com/users/mdjaman/following{/other_user}","gists_url":"https://api.github.com/users/mdjaman/gists{/gist_id}","starred_url":"https://api.github.com/users/mdjaman/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mdjaman/subscriptions","organizations_url":"https://api.github.com/users/mdjaman/orgs","repos_url":"https://api.github.com/users/mdjaman/repos","events_url":"https://api.github.com/users/mdjaman/events{/privacy}","received_events_url":"https://api.github.com/users/mdjaman/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Marcel Djaman","company":"WebCorporate","blog":"https://x.com/m_djaman","location":"Abidjan, Côte d'Ivoire","email":"marceldjaman@gmail.com","hireable":true,"bio":null,"twitter_username":"m_djaman","public_repos":77,"public_gists":55,"followers":28,"following":89,"created_at":"2011-05-22T10:40:41Z","updated_at":"2026-03-11T17:18:09Z"},"id":"7878021","created_at":"2013-12-09T18:37:47Z","updated_at":"2015-12-30T19:59:15Z"},{"url":"https://api.github.com/gists/11236624","user":{"login":"mheiber","id":4691093,"node_id":"MDQ6VXNlcjQ2OTEwOTM=","avatar_url":"https://avatars.githubusercontent.com/u/4691093?v=4","gravatar_id":"","url":"https://api.github.com/users/mheiber","html_url":"https://github.com/mheiber","followers_url":"https://api.github.com/users/mheiber/followers","following_url":"https://api.github.com/users/mheiber/following{/other_user}","gists_url":"https://api.github.com/users/mheiber/gists{/gist_id}","starred_url":"https://api.github.com/users/mheiber/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mheiber/subscriptions","organizations_url":"https://api.github.com/users/mheiber/orgs","repos_url":"https://api.github.com/users/mheiber/repos","events_url":"https://api.github.com/users/mheiber/events{/privacy}","received_events_url":"https://api.github.com/users/mheiber/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Max Heiber","company":"@whatsapp","blog":"https://twitter.com/@maxheiber","location":"London, UK","email":"max.heiber@gmail.com","hireable":true,"bio":"Computer-Aided Programming, Unguided Human Learning. Views are my own. he/him/his","twitter_username":null,"public_repos":148,"public_gists":71,"followers":57,"following":5,"created_at":"2013-06-13T17:53:24Z","updated_at":"2026-03-20T21:34:29Z"},"id":"11236624","created_at":"2014-04-23T23:56:22Z","updated_at":"2015-08-29T14:00:26Z"},{"url":"https://api.github.com/gists/7e548ce769135e15281c","user":{"login":"chilijung","id":1216029,"node_id":"MDQ6VXNlcjEyMTYwMjk=","avatar_url":"https://avatars.githubusercontent.com/u/1216029?v=4","gravatar_id":"","url":"https://api.github.com/users/chilijung","html_url":"https://github.com/chilijung","followers_url":"https://api.github.com/users/chilijung/followers","following_url":"https://api.github.com/users/chilijung/following{/other_user}","gists_url":"https://api.github.com/users/chilijung/gists{/gist_id}","starred_url":"https://api.github.com/users/chilijung/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/chilijung/subscriptions","organizations_url":"https://api.github.com/users/chilijung/orgs","repos_url":"https://api.github.com/users/chilijung/repos","events_url":"https://api.github.com/users/chilijung/events{/privacy}","received_events_url":"https://api.github.com/users/chilijung/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Howard Chi","company":"@Canner","blog":"https://work.chilijung.com/","location":null,"email":null,"hireable":null,"bio":"Bringing AI to Data","twitter_username":"chilijung","public_repos":28,"public_gists":34,"followers":209,"following":209,"created_at":"2011-11-23T16:20:59Z","updated_at":"2026-04-06T06:17:17Z"},"id":"7e548ce769135e15281c","created_at":"2014-05-10T07:59:03Z","updated_at":"2023-01-22T14:23:12Z"},{"url":"https://api.github.com/gists/2d2a1f6f049981fabcf2","user":{"login":"mshwery","id":710752,"node_id":"MDQ6VXNlcjcxMDc1Mg==","avatar_url":"https://avatars.githubusercontent.com/u/710752?v=4","gravatar_id":"","url":"https://api.github.com/users/mshwery","html_url":"https://github.com/mshwery","followers_url":"https://api.github.com/users/mshwery/followers","following_url":"https://api.github.com/users/mshwery/following{/other_user}","gists_url":"https://api.github.com/users/mshwery/gists{/gist_id}","starred_url":"https://api.github.com/users/mshwery/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mshwery/subscriptions","organizations_url":"https://api.github.com/users/mshwery/orgs","repos_url":"https://api.github.com/users/mshwery/repos","events_url":"https://api.github.com/users/mshwery/events{/privacy}","received_events_url":"https://api.github.com/users/mshwery/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Matt Shwery","company":"@anysphere ","blog":"https://mattshwery.com","location":"San Francisco, CA","email":null,"hireable":null,"bio":null,"twitter_username":"mshwery","public_repos":60,"public_gists":13,"followers":129,"following":162,"created_at":"2011-04-05T13:35:20Z","updated_at":"2026-03-16T06:01:54Z"},"id":"2d2a1f6f049981fabcf2","created_at":"2014-05-27T20:00:48Z","updated_at":"2015-08-29T14:01:54Z"},{"url":"https://api.github.com/gists/c6037a6e6bcae7381244","user":{"login":"saravanak","id":389180,"node_id":"MDQ6VXNlcjM4OTE4MA==","avatar_url":"https://avatars.githubusercontent.com/u/389180?v=4","gravatar_id":"","url":"https://api.github.com/users/saravanak","html_url":"https://github.com/saravanak","followers_url":"https://api.github.com/users/saravanak/followers","following_url":"https://api.github.com/users/saravanak/following{/other_user}","gists_url":"https://api.github.com/users/saravanak/gists{/gist_id}","starred_url":"https://api.github.com/users/saravanak/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/saravanak/subscriptions","organizations_url":"https://api.github.com/users/saravanak/orgs","repos_url":"https://api.github.com/users/saravanak/repos","events_url":"https://api.github.com/users/saravanak/events{/privacy}","received_events_url":"https://api.github.com/users/saravanak/received_events","type":"User","user_view_type":"public","site_admin":false,"name":null,"company":"Self","blog":"https://labs.oldweaver.co.in","location":"Coimbatore, India","email":null,"hireable":true,"bio":"Open to work, India, GMT+5:30","twitter_username":null,"public_repos":45,"public_gists":9,"followers":10,"following":16,"created_at":"2010-09-06T09:20:18Z","updated_at":"2026-02-20T15:36:14Z"},"id":"c6037a6e6bcae7381244","created_at":"2014-09-02T11:56:42Z","updated_at":"2015-08-29T14:05:59Z"},{"url":"https://api.github.com/gists/a12b563819b04a3555aa","user":{"login":"wayneminton","id":8617796,"node_id":"MDQ6VXNlcjg2MTc3OTY=","avatar_url":"https://avatars.githubusercontent.com/u/8617796?v=4","gravatar_id":"","url":"https://api.github.com/users/wayneminton","html_url":"https://github.com/wayneminton","followers_url":"https://api.github.com/users/wayneminton/followers","following_url":"https://api.github.com/users/wayneminton/following{/other_user}","gists_url":"https://api.github.com/users/wayneminton/gists{/gist_id}","starred_url":"https://api.github.com/users/wayneminton/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/wayneminton/subscriptions","organizations_url":"https://api.github.com/users/wayneminton/orgs","repos_url":"https://api.github.com/users/wayneminton/repos","events_url":"https://api.github.com/users/wayneminton/events{/privacy}","received_events_url":"https://api.github.com/users/wayneminton/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Wayne Minton","company":null,"blog":"","location":null,"email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":6,"public_gists":2,"followers":1,"following":0,"created_at":"2014-09-01T17:24:55Z","updated_at":"2025-08-30T17:12:29Z"},"id":"a12b563819b04a3555aa","created_at":"2014-10-18T17:06:38Z","updated_at":"2015-08-29T14:07:50Z"},{"url":"https://api.github.com/gists/aa88db3313e831d4788e","user":{"login":"Basanta-Phool","id":13720292,"node_id":"MDQ6VXNlcjEzNzIwMjky","avatar_url":"https://avatars.githubusercontent.com/u/13720292?v=4","gravatar_id":"","url":"https://api.github.com/users/Basanta-Phool","html_url":"https://github.com/Basanta-Phool","followers_url":"https://api.github.com/users/Basanta-Phool/followers","following_url":"https://api.github.com/users/Basanta-Phool/following{/other_user}","gists_url":"https://api.github.com/users/Basanta-Phool/gists{/gist_id}","starred_url":"https://api.github.com/users/Basanta-Phool/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Basanta-Phool/subscriptions","organizations_url":"https://api.github.com/users/Basanta-Phool/orgs","repos_url":"https://api.github.com/users/Basanta-Phool/repos","events_url":"https://api.github.com/users/Basanta-Phool/events{/privacy}","received_events_url":"https://api.github.com/users/Basanta-Phool/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":8,"public_gists":1,"followers":0,"following":1,"created_at":"2015-08-09T17:30:21Z","updated_at":"2016-02-28T08:31:15Z"},"id":"aa88db3313e831d4788e","created_at":"2015-08-16T15:38:27Z","updated_at":"2015-08-29T14:27:29Z"},{"url":"https://api.github.com/gists/13847b8657326aab02d8","user":{"login":"steve-kasica","id":2933702,"node_id":"MDQ6VXNlcjI5MzM3MDI=","avatar_url":"https://avatars.githubusercontent.com/u/2933702?v=4","gravatar_id":"","url":"https://api.github.com/users/steve-kasica","html_url":"https://github.com/steve-kasica","followers_url":"https://api.github.com/users/steve-kasica/followers","following_url":"https://api.github.com/users/steve-kasica/following{/other_user}","gists_url":"https://api.github.com/users/steve-kasica/gists{/gist_id}","starred_url":"https://api.github.com/users/steve-kasica/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/steve-kasica/subscriptions","organizations_url":"https://api.github.com/users/steve-kasica/orgs","repos_url":"https://api.github.com/users/steve-kasica/repos","events_url":"https://api.github.com/users/steve-kasica/events{/privacy}","received_events_url":"https://api.github.com/users/steve-kasica/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Steve","company":"University of British Columbia","blog":"https://cs.ubc.ca/~kasica","location":"Rochester, Minnesota","email":"kasica@cs.ubc.ca","hireable":null,"bio":"PhD candidate in computer science at the University of British Columbia, CU Boulder School of Long Distance Running alum","twitter_username":null,"public_repos":86,"public_gists":17,"followers":9,"following":13,"created_at":"2012-11-30T20:08:44Z","updated_at":"2026-03-29T10:23:47Z"},"id":"13847b8657326aab02d8","created_at":"2015-08-19T22:39:47Z","updated_at":"2015-08-29T14:27:48Z"},{"url":"https://api.github.com/gists/0638d230c133da1de385","user":{"login":"steveharoz","id":2257540,"node_id":"MDQ6VXNlcjIyNTc1NDA=","avatar_url":"https://avatars.githubusercontent.com/u/2257540?v=4","gravatar_id":"","url":"https://api.github.com/users/steveharoz","html_url":"https://github.com/steveharoz","followers_url":"https://api.github.com/users/steveharoz/followers","following_url":"https://api.github.com/users/steveharoz/following{/other_user}","gists_url":"https://api.github.com/users/steveharoz/gists{/gist_id}","starred_url":"https://api.github.com/users/steveharoz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/steveharoz/subscriptions","organizations_url":"https://api.github.com/users/steveharoz/orgs","repos_url":"https://api.github.com/users/steveharoz/repos","events_url":"https://api.github.com/users/steveharoz/events{/privacy}","received_events_url":"https://api.github.com/users/steveharoz/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Steve Haroz","company":null,"blog":"http://steveharoz.com","location":null,"email":null,"hireable":true,"bio":null,"twitter_username":null,"public_repos":57,"public_gists":85,"followers":36,"following":3,"created_at":"2012-08-31T22:53:14Z","updated_at":"2025-11-06T04:13:19Z"},"id":"0638d230c133da1de385","created_at":"2015-09-14T17:24:53Z","updated_at":"2015-09-14T18:02:50Z"},{"url":"https://api.github.com/gists/251cf5458a4c9ab2886ac9d92a305468","user":{"login":"axtury","id":16626901,"node_id":"MDQ6VXNlcjE2NjI2OTAx","avatar_url":"https://avatars.githubusercontent.com/u/16626901?v=4","gravatar_id":"","url":"https://api.github.com/users/axtury","html_url":"https://github.com/axtury","followers_url":"https://api.github.com/users/axtury/followers","following_url":"https://api.github.com/users/axtury/following{/other_user}","gists_url":"https://api.github.com/users/axtury/gists{/gist_id}","starred_url":"https://api.github.com/users/axtury/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/axtury/subscriptions","organizations_url":"https://api.github.com/users/axtury/orgs","repos_url":"https://api.github.com/users/axtury/repos","events_url":"https://api.github.com/users/axtury/events{/privacy}","received_events_url":"https://api.github.com/users/axtury/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":11,"public_gists":4,"followers":0,"following":0,"created_at":"2016-01-09T19:43:08Z","updated_at":"2018-01-11T22:29:17Z"},"id":"251cf5458a4c9ab2886ac9d92a305468","created_at":"2017-07-17T17:42:45Z","updated_at":"2017-07-17T17:42:45Z"},{"url":"https://api.github.com/gists/6ea75f2769fd0436709210842a161831","user":{"login":"reconbot","id":25966,"node_id":"MDQ6VXNlcjI1OTY2","avatar_url":"https://avatars.githubusercontent.com/u/25966?v=4","gravatar_id":"","url":"https://api.github.com/users/reconbot","html_url":"https://github.com/reconbot","followers_url":"https://api.github.com/users/reconbot/followers","following_url":"https://api.github.com/users/reconbot/following{/other_user}","gists_url":"https://api.github.com/users/reconbot/gists{/gist_id}","starred_url":"https://api.github.com/users/reconbot/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/reconbot/subscriptions","organizations_url":"https://api.github.com/users/reconbot/orgs","repos_url":"https://api.github.com/users/reconbot/repos","events_url":"https://api.github.com/users/reconbot/events{/privacy}","received_events_url":"https://api.github.com/users/reconbot/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Francis Gulotta","company":"@nhc-eng","blog":"https://www.roborooter.com","location":"New York","email":null,"hireable":null,"bio":"Maintainer of @node-serialport, Open source 🐛🧲, formerly ran MacCloud at @github and @azure no longer the reason why your builds are slow.","twitter_username":null,"public_repos":292,"public_gists":95,"followers":477,"following":91,"created_at":"2008-09-23T20:41:38Z","updated_at":"2026-04-06T17:44:26Z"},"id":"6ea75f2769fd0436709210842a161831","created_at":"2017-11-30T00:51:37Z","updated_at":"2017-11-30T00:53:21Z"},{"url":"https://api.github.com/gists/09c982dfafdafb110fc77fa48f3df669","user":{"login":"barionleg","id":102619282,"node_id":"U_kgDOBh3Ykg","avatar_url":"https://avatars.githubusercontent.com/u/102619282?v=4","gravatar_id":"","url":"https://api.github.com/users/barionleg","html_url":"https://github.com/barionleg","followers_url":"https://api.github.com/users/barionleg/followers","following_url":"https://api.github.com/users/barionleg/following{/other_user}","gists_url":"https://api.github.com/users/barionleg/gists{/gist_id}","starred_url":"https://api.github.com/users/barionleg/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/barionleg/subscriptions","organizations_url":"https://api.github.com/users/barionleg/orgs","repos_url":"https://api.github.com/users/barionleg/repos","events_url":"https://api.github.com/users/barionleg/events{/privacy}","received_events_url":"https://api.github.com/users/barionleg/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Bankn8II©$A","company":"©YÄMÅHÄTiD℞Åßu®","blog":"https://ard.de","location":"fb.me/Georgien.fr","email":null,"hireable":true,"bio":"©om₽o$€℞AРхитектBunoom\r\nBunioonArcomposers\r\nHere Just ©omposers Union of Georgia Represented science 1932. 1942E_BernVakUeartz B℞oliKBil©A₽$ \r\nвÅRDavweli Д3e uR","twitter_username":"YNKDBVLGARI","public_repos":2056,"public_gists":92,"followers":13,"following":141,"created_at":"2022-03-29T18:05:29Z","updated_at":"2026-03-24T13:43:23Z"},"id":"09c982dfafdafb110fc77fa48f3df669","created_at":"2025-06-03T17:21:58Z","updated_at":"2025-06-03T17:24:26Z"}],"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":"24e421a21e7f10da21db203944420b41561b7108","committed_at":"2018-10-07T23:01:23Z","change_status":{"total":1,"additions":1,"deletions":0},"url":"https://api.github.com/gists/3887235/24e421a21e7f10da21db203944420b41561b7108"},{"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":"e8f21e130ddc82f9f47d37d0b9d6345049dfd0f2","committed_at":"2017-03-07T22:10:43Z","change_status":{"total":66,"additions":29,"deletions":37},"url":"https://api.github.com/gists/3887235/e8f21e130ddc82f9f47d37d0b9d6345049dfd0f2"},{"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":"4e7ba9518d4f9654549b6cd9a7fd20d3cc89a988","committed_at":"2016-02-09T01:41:02Z","change_status":{"total":1,"additions":1,"deletions":0},"url":"https://api.github.com/gists/3887235/4e7ba9518d4f9654549b6cd9a7fd20d3cc89a988"},{"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":"6bea7dc06f71cdaccec6c07766e124423ea1f584","committed_at":"2015-11-26T01:02:04Z","change_status":{"total":23,"additions":14,"deletions":9},"url":"https://api.github.com/gists/3887235/6bea7dc06f71cdaccec6c07766e124423ea1f584"},{"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":"7f9496087bcab513f983c6b91ddb0f9bc456dce9","committed_at":"2015-10-31T01:10:11Z","change_status":{"total":2,"additions":1,"deletions":1},"url":"https://api.github.com/gists/3887235/7f9496087bcab513f983c6b91ddb0f9bc456dce9"},{"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":"64a85a99c1209f27d030df170d2cbf4576bacd8c","committed_at":"2015-06-11T19:33:00Z","change_status":{"total":4,"additions":2,"deletions":2},"url":"https://api.github.com/gists/3887235/64a85a99c1209f27d030df170d2cbf4576bacd8c"},{"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":"7292aaaf4cb62da49f72deacc3c7ddf047e24908","committed_at":"2012-10-14T04:00:34Z","change_status":{"total":0,"additions":0,"deletions":0},"url":"https://api.github.com/gists/3887235/7292aaaf4cb62da49f72deacc3c7ddf047e24908"},{"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":"d918481d9ddab0910325d757814e120902d4d7a5","committed_at":"2012-10-14T03:57:28Z","change_status":{"total":4,"additions":2,"deletions":2},"url":"https://api.github.com/gists/3887235/d918481d9ddab0910325d757814e120902d4d7a5"},{"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":"75d9f9504eb1c4c0144dac1cd866b55d499425cf","committed_at":"2012-10-14T03:56:25Z","change_status":{"total":6,"additions":6,"deletions":0},"url":"https://api.github.com/gists/3887235/75d9f9504eb1c4c0144dac1cd866b55d499425cf"},{"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":"7a22d1f33a939b5a59ec8737b7da4c68438c49e5","committed_at":"2012-10-14T03:53:47Z","change_status":{"total":8,"additions":8,"deletions":0},"url":"https://api.github.com/gists/3887235/7a22d1f33a939b5a59ec8737b7da4c68438c49e5"},{"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":"8b12d880f322947da739d4cd87bb43bbb8136787","committed_at":"2012-10-14T03:53:13Z","change_status":{},"url":"https://api.github.com/gists/3887235/8b12d880f322947da739d4cd87bb43bbb8136787"},{"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":"f6c0a94a13c66f1dde054b0cc581bef02986a269","committed_at":"2012-10-14T03:52:24Z","change_status":{},"url":"https://api.github.com/gists/3887235/f6c0a94a13c66f1dde054b0cc581bef02986a269"},{"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":"35148a7fd2cadd295e271c672c5f41240a31e380","committed_at":"2012-10-14T03:52:11Z","change_status":{},"url":"https://api.github.com/gists/3887235/35148a7fd2cadd295e271c672c5f41240a31e380"},{"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":"c2e22b990181fda110e73ba78937c42684613e0b","committed_at":"2012-10-14T03:49:28Z","change_status":{},"url":"https://api.github.com/gists/3887235/c2e22b990181fda110e73ba78937c42684613e0b"},{"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":"b087a2b8dcbf12cd3a925a10323389facdf79cec","committed_at":"2012-10-14T03:49:11Z","change_status":{},"url":"https://api.github.com/gists/3887235/b087a2b8dcbf12cd3a925a10323389facdf79cec"},{"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":"d070a33533fa471316e51a32fb8d1ba5d0b534e3","committed_at":"2012-10-14T03:48:44Z","change_status":{},"url":"https://api.github.com/gists/3887235/d070a33533fa471316e51a32fb8d1ba5d0b534e3"},{"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":"8ed8ed8ffa7e77dff301d29dee5e77a71b4736f3","committed_at":"2012-10-14T03:48:07Z","change_status":{},"url":"https://api.github.com/gists/3887235/8ed8ed8ffa7e77dff301d29dee5e77a71b4736f3"},{"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":"59ea674dc46c90da83d82a16c872bad03aa3fb2d","committed_at":"2012-10-14T03:47:06Z","change_status":{},"url":"https://api.github.com/gists/3887235/59ea674dc46c90da83d82a16c872bad03aa3fb2d"},{"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":"1f90657d9cb05821fe69dcd134b11412cea03788","committed_at":"2012-10-14T03:46:39Z","change_status":{},"url":"https://api.github.com/gists/3887235/1f90657d9cb05821fe69dcd134b11412cea03788"}],"truncated":false}