{"url":"https://api.github.com/gists/2206590","forks_url":"https://api.github.com/gists/2206590/forks","commits_url":"https://api.github.com/gists/2206590/commits","id":"2206590","node_id":"MDQ6R2lzdDIyMDY1OTA=","git_pull_url":"https://gist.github.com/2206590.git","git_push_url":"https://gist.github.com/2206590.git","html_url":"https://gist.github.com/mbostock/2206590","files":{".block":{"filename":".block","type":"text/plain","language":null,"raw_url":"https://gist.githubusercontent.com/mbostock/2206590/raw/703d310b399098a243a76a50bc209167e924cfd2/.block","size":17,"truncated":false,"content":"license: gpl-3.0\n","encoding":"utf-8"},"README.md":{"filename":"README.md","type":"text/markdown","language":"Markdown","raw_url":"https://gist.githubusercontent.com/mbostock/2206590/raw/a001943ada385e085b7334ada8e6c52a16298b87/README.md","size":380,"truncated":false,"content":"Part of a series of examples. See:\n\n1. [mousewheel-zoom + click-to-center via projection](http://bl.ocks.org/2206340)\n2. [click-to-center via projection](http://bl.ocks.org/2206489)\n3. [click-to-center via transform](http://bl.ocks.org/2206529)\n4. [click-to-zoom via transform](http://bl.ocks.org/2206590)\n\nMore recently, see the [Zoom to Bounding Box](/mbostock/4699541) example.","encoding":"utf-8"},"index.html":{"filename":"index.html","type":"text/html","language":"HTML","raw_url":"https://gist.githubusercontent.com/mbostock/2206590/raw/7fda8d3fdfe07a6092fa8a12fec5a5e13f69c963/index.html","size":1954,"truncated":false,"content":"<!DOCTYPE html>\n<meta charset=\"utf-8\">\n<style>\n\n.background {\n  fill: none;\n  pointer-events: all;\n}\n\n#states {\n  fill: #aaa;\n}\n\n#states .active {\n  fill: orange;\n}\n\n#state-borders {\n  fill: none;\n  stroke: #fff;\n  stroke-width: 1.5px;\n  stroke-linejoin: round;\n  stroke-linecap: round;\n  pointer-events: none;\n}\n\n</style>\n<body>\n<script src=\"//d3js.org/d3.v3.min.js\"></script>\n<script src=\"//d3js.org/topojson.v1.min.js\"></script>\n<script>\n\nvar width = 960,\n    height = 500,\n    centered;\n\nvar projection = d3.geo.albersUsa()\n    .scale(1070)\n    .translate([width / 2, height / 2]);\n\nvar path = d3.geo.path()\n    .projection(projection);\n\nvar svg = d3.select(\"body\").append(\"svg\")\n    .attr(\"width\", width)\n    .attr(\"height\", height);\n\nsvg.append(\"rect\")\n    .attr(\"class\", \"background\")\n    .attr(\"width\", width)\n    .attr(\"height\", height)\n    .on(\"click\", clicked);\n\nvar g = svg.append(\"g\");\n\nd3.json(\"/mbostock/raw/4090846/us.json\", function(error, us) {\n  if (error) throw error;\n\n  g.append(\"g\")\n      .attr(\"id\", \"states\")\n    .selectAll(\"path\")\n      .data(topojson.feature(us, us.objects.states).features)\n    .enter().append(\"path\")\n      .attr(\"d\", path)\n      .on(\"click\", clicked);\n\n  g.append(\"path\")\n      .datum(topojson.mesh(us, us.objects.states, function(a, b) { return a !== b; }))\n      .attr(\"id\", \"state-borders\")\n      .attr(\"d\", path);\n});\n\nfunction clicked(d) {\n  var x, y, k;\n\n  if (d && centered !== d) {\n    var centroid = path.centroid(d);\n    x = centroid[0];\n    y = centroid[1];\n    k = 4;\n    centered = d;\n  } else {\n    x = width / 2;\n    y = height / 2;\n    k = 1;\n    centered = null;\n  }\n\n  g.selectAll(\"path\")\n      .classed(\"active\", centered && function(d) { return d === centered; });\n\n  g.transition()\n      .duration(750)\n      .attr(\"transform\", \"translate(\" + width / 2 + \",\" + height / 2 + \")scale(\" + k + \")translate(\" + -x + \",\" + -y + \")\")\n      .style(\"stroke-width\", 1.5 / k + \"px\");\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/2206590/raw/e7a4a6219ac2f2e2fe963c5f1fa088878d0c86c4/thumbnail.png","size":10408,"truncated":false,"content":"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\nxgAAAABJRU5ErkJggg==\n","encoding":"base64"}},"public":true,"created_at":"2012-03-26T17:16:19Z","updated_at":"2021-10-19T16:36:32Z","description":"click-to-zoom via transform","comments":4,"user":null,"comments_enabled":true,"comments_url":"https://api.github.com/gists/2206590/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/2206529","forks_url":"https://api.github.com/gists/2206529/forks","commits_url":"https://api.github.com/gists/2206529/commits","id":"2206529","node_id":"MDQ6R2lzdDIyMDY1Mjk=","git_pull_url":"https://gist.github.com/2206529.git","git_push_url":"https://gist.github.com/2206529.git","html_url":"https://gist.github.com/mbostock/2206529","files":{},"public":true,"created_at":"2012-03-26T17:05:45Z","updated_at":"2016-02-09T01:16:57Z","description":"click-to-center via transform","comments":0,"user":null,"comments_enabled":true,"comments_url":"https://api.github.com/gists/2206529/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/3057470","user":{"login":"tommedhurst","id":1326376,"node_id":"MDQ6VXNlcjEzMjYzNzY=","avatar_url":"https://avatars.githubusercontent.com/u/1326376?v=4","gravatar_id":"","url":"https://api.github.com/users/tommedhurst","html_url":"https://github.com/tommedhurst","followers_url":"https://api.github.com/users/tommedhurst/followers","following_url":"https://api.github.com/users/tommedhurst/following{/other_user}","gists_url":"https://api.github.com/users/tommedhurst/gists{/gist_id}","starred_url":"https://api.github.com/users/tommedhurst/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tommedhurst/subscriptions","organizations_url":"https://api.github.com/users/tommedhurst/orgs","repos_url":"https://api.github.com/users/tommedhurst/repos","events_url":"https://api.github.com/users/tommedhurst/events{/privacy}","received_events_url":"https://api.github.com/users/tommedhurst/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Tom","company":null,"blog":"tommedhurst.com","location":"San Francisco","email":"thomas.medhurst@gmail.com","hireable":null,"bio":null,"twitter_username":"thomasmedhurst","public_repos":2,"public_gists":2,"followers":10,"following":26,"created_at":"2012-01-13T01:10:09Z","updated_at":"2026-03-25T17:57:27Z"},"id":"3057470","created_at":"2012-07-06T01:31:53Z","updated_at":"2015-10-06T21:47:51Z"},{"url":"https://api.github.com/gists/4070487","user":{"login":"ravinGit","id":2015991,"node_id":"MDQ6VXNlcjIwMTU5OTE=","avatar_url":"https://avatars.githubusercontent.com/u/2015991?v=4","gravatar_id":"","url":"https://api.github.com/users/ravinGit","html_url":"https://github.com/ravinGit","followers_url":"https://api.github.com/users/ravinGit/followers","following_url":"https://api.github.com/users/ravinGit/following{/other_user}","gists_url":"https://api.github.com/users/ravinGit/gists{/gist_id}","starred_url":"https://api.github.com/users/ravinGit/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ravinGit/subscriptions","organizations_url":"https://api.github.com/users/ravinGit/orgs","repos_url":"https://api.github.com/users/ravinGit/repos","events_url":"https://api.github.com/users/ravinGit/events{/privacy}","received_events_url":"https://api.github.com/users/ravinGit/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"ravin","company":null,"blog":"","location":"Malaysia","email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":0,"public_gists":20,"followers":0,"following":1,"created_at":"2012-07-21T04:40:28Z","updated_at":"2022-07-12T16:31:45Z"},"id":"4070487","created_at":"2012-11-14T05:36:22Z","updated_at":"2015-10-12T18:38:45Z"},{"url":"https://api.github.com/gists/4113847","user":{"login":"rajatanantharam","id":1805339,"node_id":"MDQ6VXNlcjE4MDUzMzk=","avatar_url":"https://avatars.githubusercontent.com/u/1805339?v=4","gravatar_id":"","url":"https://api.github.com/users/rajatanantharam","html_url":"https://github.com/rajatanantharam","followers_url":"https://api.github.com/users/rajatanantharam/followers","following_url":"https://api.github.com/users/rajatanantharam/following{/other_user}","gists_url":"https://api.github.com/users/rajatanantharam/gists{/gist_id}","starred_url":"https://api.github.com/users/rajatanantharam/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rajatanantharam/subscriptions","organizations_url":"https://api.github.com/users/rajatanantharam/orgs","repos_url":"https://api.github.com/users/rajatanantharam/repos","events_url":"https://api.github.com/users/rajatanantharam/events{/privacy}","received_events_url":"https://api.github.com/users/rajatanantharam/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Rajat Anantharam","company":"@snappet","blog":"","location":"The Netherlands","email":"a.rajat@gmail.com","hireable":null,"bio":null,"twitter_username":null,"public_repos":9,"public_gists":1,"followers":4,"following":1,"created_at":"2012-06-01T12:45:05Z","updated_at":"2026-03-29T09:30:54Z"},"id":"4113847","created_at":"2012-11-19T21:00:31Z","updated_at":"2015-10-13T00:57:56Z"},{"url":"https://api.github.com/gists/4197097","user":{"login":"ddnn55","id":186277,"node_id":"MDQ6VXNlcjE4NjI3Nw==","avatar_url":"https://avatars.githubusercontent.com/u/186277?v=4","gravatar_id":"","url":"https://api.github.com/users/ddnn55","html_url":"https://github.com/ddnn55","followers_url":"https://api.github.com/users/ddnn55/followers","following_url":"https://api.github.com/users/ddnn55/following{/other_user}","gists_url":"https://api.github.com/users/ddnn55/gists{/gist_id}","starred_url":"https://api.github.com/users/ddnn55/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ddnn55/subscriptions","organizations_url":"https://api.github.com/users/ddnn55/orgs","repos_url":"https://api.github.com/users/ddnn55/repos","events_url":"https://api.github.com/users/ddnn55/events{/privacy}","received_events_url":"https://api.github.com/users/ddnn55/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"David Stolarsky","company":"@Google","blog":"","location":"Brooklyn","email":null,"hireable":null,"bio":"Also known as @dnsnyt","twitter_username":"davidstolarsky","public_repos":142,"public_gists":25,"followers":71,"following":40,"created_at":"2010-01-20T16:03:25Z","updated_at":"2026-03-26T19:06:42Z"},"id":"4197097","created_at":"2012-12-03T18:55:35Z","updated_at":"2015-10-13T12:38:02Z"},{"url":"https://api.github.com/gists/4431184","user":{"login":"milkypostman","id":38066,"node_id":"MDQ6VXNlcjM4MDY2","avatar_url":"https://avatars.githubusercontent.com/u/38066?v=4","gravatar_id":"","url":"https://api.github.com/users/milkypostman","html_url":"https://github.com/milkypostman","followers_url":"https://api.github.com/users/milkypostman/followers","following_url":"https://api.github.com/users/milkypostman/following{/other_user}","gists_url":"https://api.github.com/users/milkypostman/gists{/gist_id}","starred_url":"https://api.github.com/users/milkypostman/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/milkypostman/subscriptions","organizations_url":"https://api.github.com/users/milkypostman/orgs","repos_url":"https://api.github.com/users/milkypostman/repos","events_url":"https://api.github.com/users/milkypostman/events{/privacy}","received_events_url":"https://api.github.com/users/milkypostman/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Donald Curtis","company":null,"blog":"","location":"Madison, WI","email":null,"hireable":null,"bio":null,"twitter_username":"milkypostman","public_repos":90,"public_gists":47,"followers":236,"following":16,"created_at":"2008-12-03T16:35:02Z","updated_at":"2026-01-17T13:54:16Z"},"id":"4431184","created_at":"2013-01-02T00:11:26Z","updated_at":"2015-12-10T11:59:08Z"},{"url":"https://api.github.com/gists/4548858","user":{"login":"thedod","id":225574,"node_id":"MDQ6VXNlcjIyNTU3NA==","avatar_url":"https://avatars.githubusercontent.com/u/225574?v=4","gravatar_id":"","url":"https://api.github.com/users/thedod","html_url":"https://github.com/thedod","followers_url":"https://api.github.com/users/thedod/followers","following_url":"https://api.github.com/users/thedod/following{/other_user}","gists_url":"https://api.github.com/users/thedod/gists{/gist_id}","starred_url":"https://api.github.com/users/thedod/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/thedod/subscriptions","organizations_url":"https://api.github.com/users/thedod/orgs","repos_url":"https://api.github.com/users/thedod/repos","events_url":"https://api.github.com/users/thedod/events{/privacy}","received_events_url":"https://api.github.com/users/thedod/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"The Dod","company":"Retirement trainee","blog":"https://zzzen.com","location":"Israel","email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":100,"public_gists":88,"followers":61,"following":63,"created_at":"2010-03-18T18:52:07Z","updated_at":"2026-04-09T14:18:51Z"},"id":"4548858","created_at":"2013-01-16T17:07:46Z","updated_at":"2015-12-11T04:58:52Z"},{"url":"https://api.github.com/gists/4577161","user":{"login":"Nsewell","id":92747,"node_id":"MDQ6VXNlcjkyNzQ3","avatar_url":"https://avatars.githubusercontent.com/u/92747?v=4","gravatar_id":"","url":"https://api.github.com/users/Nsewell","html_url":"https://github.com/Nsewell","followers_url":"https://api.github.com/users/Nsewell/followers","following_url":"https://api.github.com/users/Nsewell/following{/other_user}","gists_url":"https://api.github.com/users/Nsewell/gists{/gist_id}","starred_url":"https://api.github.com/users/Nsewell/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Nsewell/subscriptions","organizations_url":"https://api.github.com/users/Nsewell/orgs","repos_url":"https://api.github.com/users/Nsewell/repos","events_url":"https://api.github.com/users/Nsewell/events{/privacy}","received_events_url":"https://api.github.com/users/Nsewell/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Nick Sewell","company":null,"blog":"http://www.nsewell.info","location":"Sydney","email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":9,"public_gists":1,"followers":17,"following":3,"created_at":"2009-06-07T04:52:49Z","updated_at":"2017-08-14T19:41:29Z"},"id":"4577161","created_at":"2013-01-20T07:32:29Z","updated_at":"2015-12-11T08:59:03Z"},{"url":"https://api.github.com/gists/4614623","user":{"login":"mojowen","id":700444,"node_id":"MDQ6VXNlcjcwMDQ0NA==","avatar_url":"https://avatars.githubusercontent.com/u/700444?v=4","gravatar_id":"","url":"https://api.github.com/users/mojowen","html_url":"https://github.com/mojowen","followers_url":"https://api.github.com/users/mojowen/followers","following_url":"https://api.github.com/users/mojowen/following{/other_user}","gists_url":"https://api.github.com/users/mojowen/gists{/gist_id}","starred_url":"https://api.github.com/users/mojowen/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mojowen/subscriptions","organizations_url":"https://api.github.com/users/mojowen/orgs","repos_url":"https://api.github.com/users/mojowen/repos","events_url":"https://api.github.com/users/mojowen/events{/privacy}","received_events_url":"https://api.github.com/users/mojowen/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Scott Duncombe","company":"@Shopify ","blog":"http://scottduncombe.com","location":"Portland, OR","email":"srduncombe@gmail.com","hireable":true,"bio":null,"twitter_username":null,"public_repos":62,"public_gists":47,"followers":21,"following":5,"created_at":"2011-03-30T23:50:36Z","updated_at":"2026-03-08T20:23:19Z"},"id":"4614623","created_at":"2013-01-23T22:14:03Z","updated_at":"2015-12-11T14:29:02Z"},{"url":"https://api.github.com/gists/4990265","user":{"login":"mojowen","id":700444,"node_id":"MDQ6VXNlcjcwMDQ0NA==","avatar_url":"https://avatars.githubusercontent.com/u/700444?v=4","gravatar_id":"","url":"https://api.github.com/users/mojowen","html_url":"https://github.com/mojowen","followers_url":"https://api.github.com/users/mojowen/followers","following_url":"https://api.github.com/users/mojowen/following{/other_user}","gists_url":"https://api.github.com/users/mojowen/gists{/gist_id}","starred_url":"https://api.github.com/users/mojowen/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mojowen/subscriptions","organizations_url":"https://api.github.com/users/mojowen/orgs","repos_url":"https://api.github.com/users/mojowen/repos","events_url":"https://api.github.com/users/mojowen/events{/privacy}","received_events_url":"https://api.github.com/users/mojowen/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Scott Duncombe","company":"@Shopify ","blog":"http://scottduncombe.com","location":"Portland, OR","email":"srduncombe@gmail.com","hireable":true,"bio":null,"twitter_username":null,"public_repos":62,"public_gists":47,"followers":21,"following":5,"created_at":"2011-03-30T23:50:36Z","updated_at":"2026-03-08T20:23:19Z"},"id":"4990265","created_at":"2013-02-19T21:39:28Z","updated_at":"2015-12-13T23:18:50Z"},{"url":"https://api.github.com/gists/5008598","user":{"login":"paulgemini","id":1046321,"node_id":"MDQ6VXNlcjEwNDYzMjE=","avatar_url":"https://avatars.githubusercontent.com/u/1046321?v=4","gravatar_id":"","url":"https://api.github.com/users/paulgemini","html_url":"https://github.com/paulgemini","followers_url":"https://api.github.com/users/paulgemini/followers","following_url":"https://api.github.com/users/paulgemini/following{/other_user}","gists_url":"https://api.github.com/users/paulgemini/gists{/gist_id}","starred_url":"https://api.github.com/users/paulgemini/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/paulgemini/subscriptions","organizations_url":"https://api.github.com/users/paulgemini/orgs","repos_url":"https://api.github.com/users/paulgemini/repos","events_url":"https://api.github.com/users/paulgemini/events{/privacy}","received_events_url":"https://api.github.com/users/paulgemini/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":0,"following":0,"created_at":"2011-09-13T03:55:45Z","updated_at":"2015-04-07T15:05:22Z"},"id":"5008598","created_at":"2013-02-21T21:52:07Z","updated_at":"2015-12-14T01:48:54Z"},{"url":"https://api.github.com/gists/5339779","user":{"login":"mpmckenna8","id":1895795,"node_id":"MDQ6VXNlcjE4OTU3OTU=","avatar_url":"https://avatars.githubusercontent.com/u/1895795?v=4","gravatar_id":"","url":"https://api.github.com/users/mpmckenna8","html_url":"https://github.com/mpmckenna8","followers_url":"https://api.github.com/users/mpmckenna8/followers","following_url":"https://api.github.com/users/mpmckenna8/following{/other_user}","gists_url":"https://api.github.com/users/mpmckenna8/gists{/gist_id}","starred_url":"https://api.github.com/users/mpmckenna8/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mpmckenna8/subscriptions","organizations_url":"https://api.github.com/users/mpmckenna8/orgs","repos_url":"https://api.github.com/users/mpmckenna8/repos","events_url":"https://api.github.com/users/mpmckenna8/events{/privacy}","received_events_url":"https://api.github.com/users/mpmckenna8/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Matthew McKenna","company":null,"blog":"mpmckenna8.github.io","location":"San Francisco","email":"mpmckenna8@me.com","hireable":true,"bio":null,"twitter_username":null,"public_repos":139,"public_gists":148,"followers":79,"following":183,"created_at":"2012-06-26T20:38:16Z","updated_at":"2022-01-12T22:05:47Z"},"id":"5339779","created_at":"2013-04-08T19:34:54Z","updated_at":"2015-12-15T23:19:59Z"},{"url":"https://api.github.com/gists/5352584","user":{"login":"ManojkumarMuralidharan","id":1487717,"node_id":"MDQ6VXNlcjE0ODc3MTc=","avatar_url":"https://avatars.githubusercontent.com/u/1487717?v=4","gravatar_id":"","url":"https://api.github.com/users/ManojkumarMuralidharan","html_url":"https://github.com/ManojkumarMuralidharan","followers_url":"https://api.github.com/users/ManojkumarMuralidharan/followers","following_url":"https://api.github.com/users/ManojkumarMuralidharan/following{/other_user}","gists_url":"https://api.github.com/users/ManojkumarMuralidharan/gists{/gist_id}","starred_url":"https://api.github.com/users/ManojkumarMuralidharan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ManojkumarMuralidharan/subscriptions","organizations_url":"https://api.github.com/users/ManojkumarMuralidharan/orgs","repos_url":"https://api.github.com/users/ManojkumarMuralidharan/repos","events_url":"https://api.github.com/users/ManojkumarMuralidharan/events{/privacy}","received_events_url":"https://api.github.com/users/ManojkumarMuralidharan/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Manojkumar Muralidharan","company":"@Google","blog":"https://manoj.io","location":"Menlo Park","email":"Manoj.wolfpack@gmail.com","hireable":null,"bio":"Full Stack engineer and Javascript enthusiast ! Starts every single day with a good cup of coffee and stack full of JS.","twitter_username":null,"public_repos":35,"public_gists":2,"followers":16,"following":5,"created_at":"2012-03-01T06:43:11Z","updated_at":"2024-05-12T07:00:29Z"},"id":"5352584","created_at":"2013-04-10T07:38:12Z","updated_at":"2015-12-16T01:09:02Z"},{"url":"https://api.github.com/gists/5436348","user":{"login":"jkpatel5","id":3451849,"node_id":"MDQ6VXNlcjM0NTE4NDk=","avatar_url":"https://avatars.githubusercontent.com/u/3451849?v=4","gravatar_id":"","url":"https://api.github.com/users/jkpatel5","html_url":"https://github.com/jkpatel5","followers_url":"https://api.github.com/users/jkpatel5/followers","following_url":"https://api.github.com/users/jkpatel5/following{/other_user}","gists_url":"https://api.github.com/users/jkpatel5/gists{/gist_id}","starred_url":"https://api.github.com/users/jkpatel5/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jkpatel5/subscriptions","organizations_url":"https://api.github.com/users/jkpatel5/orgs","repos_url":"https://api.github.com/users/jkpatel5/repos","events_url":"https://api.github.com/users/jkpatel5/events{/privacy}","received_events_url":"https://api.github.com/users/jkpatel5/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Jay Patel","company":null,"blog":"","location":"Northeast","email":"jkpatel5@gmail.com","hireable":null,"bio":null,"twitter_username":null,"public_repos":26,"public_gists":1,"followers":3,"following":1,"created_at":"2013-02-01T19:48:39Z","updated_at":"2019-12-19T15:28:59Z"},"id":"5436348","created_at":"2013-04-22T16:06:09Z","updated_at":"2015-12-16T12:39:13Z"},{"url":"https://api.github.com/gists/5782700","user":{"login":"defiantShaun","id":4564879,"node_id":"MDQ6VXNlcjQ1NjQ4Nzk=","avatar_url":"https://avatars.githubusercontent.com/u/4564879?v=4","gravatar_id":"","url":"https://api.github.com/users/defiantShaun","html_url":"https://github.com/defiantShaun","followers_url":"https://api.github.com/users/defiantShaun/followers","following_url":"https://api.github.com/users/defiantShaun/following{/other_user}","gists_url":"https://api.github.com/users/defiantShaun/gists{/gist_id}","starred_url":"https://api.github.com/users/defiantShaun/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/defiantShaun/subscriptions","organizations_url":"https://api.github.com/users/defiantShaun/orgs","repos_url":"https://api.github.com/users/defiantShaun/repos","events_url":"https://api.github.com/users/defiantShaun/events{/privacy}","received_events_url":"https://api.github.com/users/defiantShaun/received_events","type":"User","user_view_type":"public","site_admin":false,"name":null,"company":null,"blog":"www.defiance.org","location":"Seattle","email":"shaunoneil4@gmail.com","hireable":null,"bio":null,"twitter_username":null,"public_repos":13,"public_gists":4,"followers":6,"following":4,"created_at":"2013-05-29T23:44:10Z","updated_at":"2020-11-09T02:59:00Z"},"id":"5782700","created_at":"2013-06-14T15:22:50Z","updated_at":"2015-12-18T12:28:57Z"},{"url":"https://api.github.com/gists/5809366","user":{"login":"janab","id":2974629,"node_id":"MDQ6VXNlcjI5NzQ2Mjk=","avatar_url":"https://avatars.githubusercontent.com/u/2974629?v=4","gravatar_id":"","url":"https://api.github.com/users/janab","html_url":"https://github.com/janab","followers_url":"https://api.github.com/users/janab/followers","following_url":"https://api.github.com/users/janab/following{/other_user}","gists_url":"https://api.github.com/users/janab/gists{/gist_id}","starred_url":"https://api.github.com/users/janab/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/janab/subscriptions","organizations_url":"https://api.github.com/users/janab/orgs","repos_url":"https://api.github.com/users/janab/repos","events_url":"https://api.github.com/users/janab/events{/privacy}","received_events_url":"https://api.github.com/users/janab/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":1,"following":0,"created_at":"2012-12-05T21:04:24Z","updated_at":"2021-11-08T06:02:30Z"},"id":"5809366","created_at":"2013-06-18T21:08:12Z","updated_at":"2015-12-18T16:09:19Z"},{"url":"https://api.github.com/gists/5861978","user":{"login":"1wheel","id":1643998,"node_id":"MDQ6VXNlcjE2NDM5OTg=","avatar_url":"https://avatars.githubusercontent.com/u/1643998?v=4","gravatar_id":"","url":"https://api.github.com/users/1wheel","html_url":"https://github.com/1wheel","followers_url":"https://api.github.com/users/1wheel/followers","following_url":"https://api.github.com/users/1wheel/following{/other_user}","gists_url":"https://api.github.com/users/1wheel/gists{/gist_id}","starred_url":"https://api.github.com/users/1wheel/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/1wheel/subscriptions","organizations_url":"https://api.github.com/users/1wheel/orgs","repos_url":"https://api.github.com/users/1wheel/repos","events_url":"https://api.github.com/users/1wheel/events{/privacy}","received_events_url":"https://api.github.com/users/1wheel/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Adam Pearce","company":"@anthropics","blog":"https://roadtolarissa.com/","location":"nyc","email":"1wheel@gmail.com","hireable":null,"bio":null,"twitter_username":"adamrpearce","public_repos":160,"public_gists":217,"followers":636,"following":144,"created_at":"2012-04-14T21:24:51Z","updated_at":"2026-04-03T01:34:03Z"},"id":"5861978","created_at":"2013-06-25T20:18:30Z","updated_at":"2019-09-13T12:31:45Z"},{"url":"https://api.github.com/gists/6205326","user":{"login":"leoken","id":196876,"node_id":"MDQ6VXNlcjE5Njg3Ng==","avatar_url":"https://avatars.githubusercontent.com/u/196876?v=4","gravatar_id":"","url":"https://api.github.com/users/leoken","html_url":"https://github.com/leoken","followers_url":"https://api.github.com/users/leoken/followers","following_url":"https://api.github.com/users/leoken/following{/other_user}","gists_url":"https://api.github.com/users/leoken/gists{/gist_id}","starred_url":"https://api.github.com/users/leoken/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/leoken/subscriptions","organizations_url":"https://api.github.com/users/leoken/orgs","repos_url":"https://api.github.com/users/leoken/repos","events_url":"https://api.github.com/users/leoken/events{/privacy}","received_events_url":"https://api.github.com/users/leoken/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Erik James Albaugh","company":"Maintain Web","blog":"","location":"Long Beach, CA","email":"leoken@gmail.com","hireable":true,"bio":null,"twitter_username":"leoken","public_repos":363,"public_gists":171,"followers":32,"following":101,"created_at":"2010-02-04T16:54:37Z","updated_at":"2023-02-01T11:00:05Z"},"id":"6205326","created_at":"2013-08-11T15:19:11Z","updated_at":"2015-12-20T22:29:12Z"},{"url":"https://api.github.com/gists/6360969","user":{"login":"dspnorman","id":577238,"node_id":"MDQ6VXNlcjU3NzIzOA==","avatar_url":"https://avatars.githubusercontent.com/u/577238?v=4","gravatar_id":"","url":"https://api.github.com/users/dspnorman","html_url":"https://github.com/dspnorman","followers_url":"https://api.github.com/users/dspnorman/followers","following_url":"https://api.github.com/users/dspnorman/following{/other_user}","gists_url":"https://api.github.com/users/dspnorman/gists{/gist_id}","starred_url":"https://api.github.com/users/dspnorman/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dspnorman/subscriptions","organizations_url":"https://api.github.com/users/dspnorman/orgs","repos_url":"https://api.github.com/users/dspnorman/repos","events_url":"https://api.github.com/users/dspnorman/events{/privacy}","received_events_url":"https://api.github.com/users/dspnorman/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Daniel Norman","company":null,"blog":"","location":"Seattle, WA","email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":5,"public_gists":3,"followers":1,"following":0,"created_at":"2011-01-21T21:28:38Z","updated_at":"2026-03-28T06:58:15Z"},"id":"6360969","created_at":"2013-08-28T01:03:05Z","updated_at":"2015-12-21T20:28:53Z"},{"url":"https://api.github.com/gists/6547517","user":{"login":"evelynriossf","id":5421879,"node_id":"MDQ6VXNlcjU0MjE4Nzk=","avatar_url":"https://avatars.githubusercontent.com/u/5421879?v=4","gravatar_id":"","url":"https://api.github.com/users/evelynriossf","html_url":"https://github.com/evelynriossf","followers_url":"https://api.github.com/users/evelynriossf/followers","following_url":"https://api.github.com/users/evelynriossf/following{/other_user}","gists_url":"https://api.github.com/users/evelynriossf/gists{/gist_id}","starred_url":"https://api.github.com/users/evelynriossf/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/evelynriossf/subscriptions","organizations_url":"https://api.github.com/users/evelynriossf/orgs","repos_url":"https://api.github.com/users/evelynriossf/repos","events_url":"https://api.github.com/users/evelynriossf/events{/privacy}","received_events_url":"https://api.github.com/users/evelynriossf/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Evelyn Rios Stafford","company":null,"blog":"","location":"United States","email":null,"hireable":true,"bio":null,"twitter_username":null,"public_repos":22,"public_gists":5,"followers":9,"following":19,"created_at":"2013-09-09T21:16:39Z","updated_at":"2024-03-22T15:12:28Z"},"id":"6547517","created_at":"2013-09-13T07:06:09Z","updated_at":"2015-12-22T23:29:21Z"},{"url":"https://api.github.com/gists/6657509","user":{"login":"kashivreddy","id":1762380,"node_id":"MDQ6VXNlcjE3NjIzODA=","avatar_url":"https://avatars.githubusercontent.com/u/1762380?v=4","gravatar_id":"","url":"https://api.github.com/users/kashivreddy","html_url":"https://github.com/kashivreddy","followers_url":"https://api.github.com/users/kashivreddy/followers","following_url":"https://api.github.com/users/kashivreddy/following{/other_user}","gists_url":"https://api.github.com/users/kashivreddy/gists{/gist_id}","starred_url":"https://api.github.com/users/kashivreddy/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/kashivreddy/subscriptions","organizations_url":"https://api.github.com/users/kashivreddy/orgs","repos_url":"https://api.github.com/users/kashivreddy/repos","events_url":"https://api.github.com/users/kashivreddy/events{/privacy}","received_events_url":"https://api.github.com/users/kashivreddy/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":6,"public_gists":3,"followers":2,"following":0,"created_at":"2012-05-22T03:18:21Z","updated_at":"2026-03-22T11:14:55Z"},"id":"6657509","created_at":"2013-09-22T07:13:21Z","updated_at":"2015-12-23T15:48:58Z"},{"url":"https://api.github.com/gists/6706604","user":{"login":"kts","id":94947,"node_id":"MDQ6VXNlcjk0OTQ3","avatar_url":"https://avatars.githubusercontent.com/u/94947?v=4","gravatar_id":"","url":"https://api.github.com/users/kts","html_url":"https://github.com/kts","followers_url":"https://api.github.com/users/kts/followers","following_url":"https://api.github.com/users/kts/following{/other_user}","gists_url":"https://api.github.com/users/kts/gists{/gist_id}","starred_url":"https://api.github.com/users/kts/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/kts/subscriptions","organizations_url":"https://api.github.com/users/kts/orgs","repos_url":"https://api.github.com/users/kts/repos","events_url":"https://api.github.com/users/kts/events{/privacy}","received_events_url":"https://api.github.com/users/kts/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Ken Schutte","company":null,"blog":"http://kenschutte.com","location":null,"email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":36,"public_gists":3,"followers":21,"following":0,"created_at":"2009-06-13T05:48:57Z","updated_at":"2026-03-15T21:03:10Z"},"id":"6706604","created_at":"2013-09-25T21:54:04Z","updated_at":"2015-12-23T22:59:07Z"},{"url":"https://api.github.com/gists/7770244","user":{"login":"larskotthoff","id":579233,"node_id":"MDQ6VXNlcjU3OTIzMw==","avatar_url":"https://avatars.githubusercontent.com/u/579233?v=4","gravatar_id":"","url":"https://api.github.com/users/larskotthoff","html_url":"https://github.com/larskotthoff","followers_url":"https://api.github.com/users/larskotthoff/followers","following_url":"https://api.github.com/users/larskotthoff/following{/other_user}","gists_url":"https://api.github.com/users/larskotthoff/gists{/gist_id}","starred_url":"https://api.github.com/users/larskotthoff/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/larskotthoff/subscriptions","organizations_url":"https://api.github.com/users/larskotthoff/orgs","repos_url":"https://api.github.com/users/larskotthoff/repos","events_url":"https://api.github.com/users/larskotthoff/events{/privacy}","received_events_url":"https://api.github.com/users/larskotthoff/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Lars Kotthoff","company":null,"blog":"","location":null,"email":null,"hireable":true,"bio":null,"twitter_username":null,"public_repos":59,"public_gists":60,"followers":91,"following":0,"created_at":"2011-01-23T14:17:58Z","updated_at":"2025-12-09T08:05:04Z"},"id":"7770244","created_at":"2013-12-03T14:41:11Z","updated_at":"2015-12-30T03:38:55Z"},{"url":"https://api.github.com/gists/c5712dfcdd9f2a68bd2e","user":{"login":"mpmckenna8","id":1895795,"node_id":"MDQ6VXNlcjE4OTU3OTU=","avatar_url":"https://avatars.githubusercontent.com/u/1895795?v=4","gravatar_id":"","url":"https://api.github.com/users/mpmckenna8","html_url":"https://github.com/mpmckenna8","followers_url":"https://api.github.com/users/mpmckenna8/followers","following_url":"https://api.github.com/users/mpmckenna8/following{/other_user}","gists_url":"https://api.github.com/users/mpmckenna8/gists{/gist_id}","starred_url":"https://api.github.com/users/mpmckenna8/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mpmckenna8/subscriptions","organizations_url":"https://api.github.com/users/mpmckenna8/orgs","repos_url":"https://api.github.com/users/mpmckenna8/repos","events_url":"https://api.github.com/users/mpmckenna8/events{/privacy}","received_events_url":"https://api.github.com/users/mpmckenna8/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Matthew McKenna","company":null,"blog":"mpmckenna8.github.io","location":"San Francisco","email":"mpmckenna8@me.com","hireable":true,"bio":null,"twitter_username":null,"public_repos":139,"public_gists":148,"followers":79,"following":183,"created_at":"2012-06-26T20:38:16Z","updated_at":"2022-01-12T22:05:47Z"},"id":"c5712dfcdd9f2a68bd2e","created_at":"2014-06-01T17:39:00Z","updated_at":"2015-08-29T14:02:05Z"},{"url":"https://api.github.com/gists/b67e7a5b1bf59a218759","user":{"login":"brentgardner","id":281004,"node_id":"MDQ6VXNlcjI4MTAwNA==","avatar_url":"https://avatars.githubusercontent.com/u/281004?v=4","gravatar_id":"","url":"https://api.github.com/users/brentgardner","html_url":"https://github.com/brentgardner","followers_url":"https://api.github.com/users/brentgardner/followers","following_url":"https://api.github.com/users/brentgardner/following{/other_user}","gists_url":"https://api.github.com/users/brentgardner/gists{/gist_id}","starred_url":"https://api.github.com/users/brentgardner/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/brentgardner/subscriptions","organizations_url":"https://api.github.com/users/brentgardner/orgs","repos_url":"https://api.github.com/users/brentgardner/repos","events_url":"https://api.github.com/users/brentgardner/events{/privacy}","received_events_url":"https://api.github.com/users/brentgardner/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Brent","company":"Evidation Health","blog":"","location":"VA","email":"btgardner@gmail.com","hireable":true,"bio":null,"twitter_username":null,"public_repos":30,"public_gists":21,"followers":7,"following":6,"created_at":"2010-05-19T03:43:04Z","updated_at":"2026-04-07T01:11:03Z"},"id":"b67e7a5b1bf59a218759","created_at":"2014-10-03T02:18:57Z","updated_at":"2015-08-29T14:07:10Z"},{"url":"https://api.github.com/gists/6835b3a90b58a71e0b3d","user":{"login":"xavipolo","id":7552078,"node_id":"MDQ6VXNlcjc1NTIwNzg=","avatar_url":"https://avatars.githubusercontent.com/u/7552078?v=4","gravatar_id":"","url":"https://api.github.com/users/xavipolo","html_url":"https://github.com/xavipolo","followers_url":"https://api.github.com/users/xavipolo/followers","following_url":"https://api.github.com/users/xavipolo/following{/other_user}","gists_url":"https://api.github.com/users/xavipolo/gists{/gist_id}","starred_url":"https://api.github.com/users/xavipolo/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/xavipolo/subscriptions","organizations_url":"https://api.github.com/users/xavipolo/orgs","repos_url":"https://api.github.com/users/xavipolo/repos","events_url":"https://api.github.com/users/xavipolo/events{/privacy}","received_events_url":"https://api.github.com/users/xavipolo/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Xavi","company":null,"blog":"","location":"Barcelona","email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":25,"public_gists":3,"followers":0,"following":0,"created_at":"2014-05-11T23:05:12Z","updated_at":"2026-04-02T10:19:29Z"},"id":"6835b3a90b58a71e0b3d","created_at":"2014-12-22T01:22:43Z","updated_at":"2019-12-10T09:33:08Z"},{"url":"https://api.github.com/gists/c218ded519018e1388ca69dfe1333be7","user":{"login":"Castroyesid","id":7917239,"node_id":"MDQ6VXNlcjc5MTcyMzk=","avatar_url":"https://avatars.githubusercontent.com/u/7917239?v=4","gravatar_id":"","url":"https://api.github.com/users/Castroyesid","html_url":"https://github.com/Castroyesid","followers_url":"https://api.github.com/users/Castroyesid/followers","following_url":"https://api.github.com/users/Castroyesid/following{/other_user}","gists_url":"https://api.github.com/users/Castroyesid/gists{/gist_id}","starred_url":"https://api.github.com/users/Castroyesid/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Castroyesid/subscriptions","organizations_url":"https://api.github.com/users/Castroyesid/orgs","repos_url":"https://api.github.com/users/Castroyesid/repos","events_url":"https://api.github.com/users/Castroyesid/events{/privacy}","received_events_url":"https://api.github.com/users/Castroyesid/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":25,"public_gists":1,"followers":4,"following":3,"created_at":"2014-06-17T21:27:31Z","updated_at":"2025-09-22T07:33:04Z"},"id":"c218ded519018e1388ca69dfe1333be7","created_at":"2016-05-19T00:29:17Z","updated_at":"2016-05-19T00:29:18Z"},{"url":"https://api.github.com/gists/d3a9a6beb5e44646d8b777757483e6a8","user":{"login":"Tporkka","id":17013795,"node_id":"MDQ6VXNlcjE3MDEzNzk1","avatar_url":"https://avatars.githubusercontent.com/u/17013795?v=4","gravatar_id":"","url":"https://api.github.com/users/Tporkka","html_url":"https://github.com/Tporkka","followers_url":"https://api.github.com/users/Tporkka/followers","following_url":"https://api.github.com/users/Tporkka/following{/other_user}","gists_url":"https://api.github.com/users/Tporkka/gists{/gist_id}","starred_url":"https://api.github.com/users/Tporkka/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Tporkka/subscriptions","organizations_url":"https://api.github.com/users/Tporkka/orgs","repos_url":"https://api.github.com/users/Tporkka/repos","events_url":"https://api.github.com/users/Tporkka/events{/privacy}","received_events_url":"https://api.github.com/users/Tporkka/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Tom Porkka","company":"Meta","blog":"www.nulango.com","location":"Denver, CO","email":null,"hireable":true,"bio":"Network Infra AI Systems @ Meta | Co-Founder @ Nulango","twitter_username":"tomporkka","public_repos":3,"public_gists":2,"followers":8,"following":10,"created_at":"2016-02-01T21:13:20Z","updated_at":"2026-04-07T03:15:33Z"},"id":"d3a9a6beb5e44646d8b777757483e6a8","created_at":"2016-10-21T23:55:37Z","updated_at":"2016-10-21T23:55:37Z"},{"url":"https://api.github.com/gists/873e232b67d099aec98eca9b132d2179","user":{"login":"rjpadgett2","id":19784794,"node_id":"MDQ6VXNlcjE5Nzg0Nzk0","avatar_url":"https://avatars.githubusercontent.com/u/19784794?v=4","gravatar_id":"","url":"https://api.github.com/users/rjpadgett2","html_url":"https://github.com/rjpadgett2","followers_url":"https://api.github.com/users/rjpadgett2/followers","following_url":"https://api.github.com/users/rjpadgett2/following{/other_user}","gists_url":"https://api.github.com/users/rjpadgett2/gists{/gist_id}","starred_url":"https://api.github.com/users/rjpadgett2/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rjpadgett2/subscriptions","organizations_url":"https://api.github.com/users/rjpadgett2/orgs","repos_url":"https://api.github.com/users/rjpadgett2/repos","events_url":"https://api.github.com/users/rjpadgett2/events{/privacy}","received_events_url":"https://api.github.com/users/rjpadgett2/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Reggie Padgett","company":null,"blog":"","location":null,"email":"reggie.padgett2@gmail.com","hireable":null,"bio":null,"twitter_username":null,"public_repos":33,"public_gists":1,"followers":0,"following":0,"created_at":"2016-06-06T19:45:09Z","updated_at":"2026-03-21T05:40:48Z"},"id":"873e232b67d099aec98eca9b132d2179","created_at":"2018-01-18T20:27:00Z","updated_at":"2018-01-18T20:27:00Z"},{"url":"https://api.github.com/gists/020760869ab8bbff1d96e836e02cc9be","user":{"login":"dsaffo","id":13991410,"node_id":"MDQ6VXNlcjEzOTkxNDEw","avatar_url":"https://avatars.githubusercontent.com/u/13991410?v=4","gravatar_id":"","url":"https://api.github.com/users/dsaffo","html_url":"https://github.com/dsaffo","followers_url":"https://api.github.com/users/dsaffo/followers","following_url":"https://api.github.com/users/dsaffo/following{/other_user}","gists_url":"https://api.github.com/users/dsaffo/gists{/gist_id}","starred_url":"https://api.github.com/users/dsaffo/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dsaffo/subscriptions","organizations_url":"https://api.github.com/users/dsaffo/orgs","repos_url":"https://api.github.com/users/dsaffo/repos","events_url":"https://api.github.com/users/dsaffo/events{/privacy}","received_events_url":"https://api.github.com/users/dsaffo/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"David Saffo","company":null,"blog":"dsaffo.dev","location":"New York","email":"davidysaffo@gmail.com","hireable":true,"bio":"Applied Research Lead at JPMorgan Chase Global Technology Applied Research. Working in data visualization, immersive analytics, and immersive technologies. ","twitter_username":null,"public_repos":49,"public_gists":33,"followers":28,"following":10,"created_at":"2015-08-27T02:45:06Z","updated_at":"2026-03-31T18:14:51Z"},"id":"020760869ab8bbff1d96e836e02cc9be","created_at":"2020-07-21T18:34:55Z","updated_at":"2020-10-15T19:20:02Z"}],"history":[{"user":{"login":"mbostock","id":230541,"node_id":"MDQ6VXNlcjIzMDU0MQ==","avatar_url":"https://avatars.githubusercontent.com/u/230541?v=4","gravatar_id":"","url":"https://api.github.com/users/mbostock","html_url":"https://github.com/mbostock","followers_url":"https://api.github.com/users/mbostock/followers","following_url":"https://api.github.com/users/mbostock/following{/other_user}","gists_url":"https://api.github.com/users/mbostock/gists{/gist_id}","starred_url":"https://api.github.com/users/mbostock/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mbostock/subscriptions","organizations_url":"https://api.github.com/users/mbostock/orgs","repos_url":"https://api.github.com/users/mbostock/repos","events_url":"https://api.github.com/users/mbostock/events{/privacy}","received_events_url":"https://api.github.com/users/mbostock/received_events","type":"User","user_view_type":"public","site_admin":false},"version":"7a7483a2bda54102a872babefb9ee47339b0d77a","committed_at":"2016-02-09T01:17:00Z","change_status":{"total":1,"additions":1,"deletions":0},"url":"https://api.github.com/gists/2206590/7a7483a2bda54102a872babefb9ee47339b0d77a"},{"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":"a571933389aa2f8316ab38e36893bcffc3c56dcb","committed_at":"2015-10-31T00:42:15Z","change_status":{"total":4,"additions":2,"deletions":2},"url":"https://api.github.com/gists/2206590/a571933389aa2f8316ab38e36893bcffc3c56dcb"},{"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":"be840af9225cd4c2430029364c6153c3493f3203","committed_at":"2015-06-11T19:39:31Z","change_status":{"total":6,"additions":4,"deletions":2},"url":"https://api.github.com/gists/2206590/be840af9225cd4c2430029364c6153c3493f3203"},{"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":"507c493819053fde96d29a4cde3828baab4b137b","committed_at":"2014-03-20T02:56:09Z","change_status":{"total":2,"additions":2,"deletions":0},"url":"https://api.github.com/gists/2206590/507c493819053fde96d29a4cde3828baab4b137b"},{"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":"5d9158c10beaa471c90f4552909b3fe0298baa4e","committed_at":"2013-06-14T16:55:07Z","change_status":{"total":1,"additions":1,"deletions":0},"url":"https://api.github.com/gists/2206590/5d9158c10beaa471c90f4552909b3fe0298baa4e"},{"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":"d15b582d9d8f0e729bba76c6dbbc6c0f91d657ca","committed_at":"2013-06-14T16:51:53Z","change_status":{"total":6,"additions":2,"deletions":4},"url":"https://api.github.com/gists/2206590/d15b582d9d8f0e729bba76c6dbbc6c0f91d657ca"},{"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":"c19f86d7c466263f4b3110971364d8a2bddbd9ab","committed_at":"2013-06-14T16:37:03Z","change_status":{"total":99,"additions":33,"deletions":66},"url":"https://api.github.com/gists/2206590/c19f86d7c466263f4b3110971364d8a2bddbd9ab"},{"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":"a6315f5de608d44bbe9bab17e0d67c693dff5ed2","committed_at":"2013-03-21T01:42:09Z","change_status":{"total":28,"additions":11,"deletions":17},"url":"https://api.github.com/gists/2206590/a6315f5de608d44bbe9bab17e0d67c693dff5ed2"},{"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":"2cf0fd36bceb64aa4ec1aaad40bfa943f4f921e1","committed_at":"2012-10-12T03:52:05Z","change_status":{"total":0,"additions":0,"deletions":0},"url":"https://api.github.com/gists/2206590/2cf0fd36bceb64aa4ec1aaad40bfa943f4f921e1"},{"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":"b2fbf84f7d31f44df05a95c5f48c30fff77e7052","committed_at":"2012-07-04T20:01:32Z","change_status":{"total":2,"additions":1,"deletions":1},"url":"https://api.github.com/gists/2206590/b2fbf84f7d31f44df05a95c5f48c30fff77e7052"},{"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":"4dfedc5b1b900d5edb23da097f846676394d5a70","committed_at":"2012-07-04T20:01:05Z","change_status":{},"url":"https://api.github.com/gists/2206590/4dfedc5b1b900d5edb23da097f846676394d5a70"},{"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":"abd28bc9fe65737dbe79e2f1299d158b3f762a4c","committed_at":"2012-07-04T20:00:28Z","change_status":{},"url":"https://api.github.com/gists/2206590/abd28bc9fe65737dbe79e2f1299d158b3f762a4c"},{"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":"6a0c318ba299693688d54ffb883806018f6ac17e","committed_at":"2012-07-04T19:59:23Z","change_status":{},"url":"https://api.github.com/gists/2206590/6a0c318ba299693688d54ffb883806018f6ac17e"},{"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":"0be5e658f11e3c44e7cf57ccda35463e3686e8b0","committed_at":"2012-07-04T19:58:50Z","change_status":{},"url":"https://api.github.com/gists/2206590/0be5e658f11e3c44e7cf57ccda35463e3686e8b0"},{"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":"2e02e322f222dc10d6cd9b405ec8b60c3597e19a","committed_at":"2012-07-04T19:56:37Z","change_status":{},"url":"https://api.github.com/gists/2206590/2e02e322f222dc10d6cd9b405ec8b60c3597e19a"},{"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":"e91491ef8f419f5e91dadd2932b4dda25719ced4","committed_at":"2012-03-26T17:27:05Z","change_status":{},"url":"https://api.github.com/gists/2206590/e91491ef8f419f5e91dadd2932b4dda25719ced4"},{"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":"3e94d15f072661029c78e53d2fa6cd9b64a93386","committed_at":"2012-03-26T17:22:22Z","change_status":{},"url":"https://api.github.com/gists/2206590/3e94d15f072661029c78e53d2fa6cd9b64a93386"},{"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":"36944911a3d94e52f5d27f3af8fcf2e559a9f1a0","committed_at":"2012-03-26T17:16:41Z","change_status":{},"url":"https://api.github.com/gists/2206590/36944911a3d94e52f5d27f3af8fcf2e559a9f1a0"},{"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":"d53a640d98b26bc11253a0129b17c126bae6db8c","committed_at":"2012-03-26T17:10:57Z","change_status":{},"url":"https://api.github.com/gists/2206590/d53a640d98b26bc11253a0129b17c126bae6db8c"},{"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":"0bac8fd89333ba61c3e0bab63c7ad63ddc928843","committed_at":"2012-03-26T17:10:15Z","change_status":{},"url":"https://api.github.com/gists/2206590/0bac8fd89333ba61c3e0bab63c7ad63ddc928843"},{"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":"b3e0af1200c194b4a8e2eaced5bb4a1847be73d9","committed_at":"2012-03-26T17:03:54Z","change_status":{},"url":"https://api.github.com/gists/2206590/b3e0af1200c194b4a8e2eaced5bb4a1847be73d9"},{"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":"310a1e4db33f559b90af847a19d1f6711bf20c5e","committed_at":"2012-03-26T17:03:03Z","change_status":{},"url":"https://api.github.com/gists/2206590/310a1e4db33f559b90af847a19d1f6711bf20c5e"},{"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":"731b6b7a9ac4867400fe197a94a7feb4ce3aa2f6","committed_at":"2012-03-26T16:57:46Z","change_status":{},"url":"https://api.github.com/gists/2206590/731b6b7a9ac4867400fe197a94a7feb4ce3aa2f6"},{"user":{"login":"scotthmurray","id":1034002,"node_id":"MDQ6VXNlcjEwMzQwMDI=","avatar_url":"https://avatars.githubusercontent.com/u/1034002?v=4","gravatar_id":"","url":"https://api.github.com/users/scotthmurray","html_url":"https://github.com/scotthmurray","followers_url":"https://api.github.com/users/scotthmurray/followers","following_url":"https://api.github.com/users/scotthmurray/following{/other_user}","gists_url":"https://api.github.com/users/scotthmurray/gists{/gist_id}","starred_url":"https://api.github.com/users/scotthmurray/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/scotthmurray/subscriptions","organizations_url":"https://api.github.com/users/scotthmurray/orgs","repos_url":"https://api.github.com/users/scotthmurray/repos","events_url":"https://api.github.com/users/scotthmurray/events{/privacy}","received_events_url":"https://api.github.com/users/scotthmurray/received_events","type":"User","user_view_type":"public","site_admin":false},"version":"e9330e7383e88a5468eb0ab36c1e9930ef2f6f56","committed_at":"2012-03-21T22:10:15Z","change_status":{},"url":"https://api.github.com/gists/2206590/e9330e7383e88a5468eb0ab36c1e9930ef2f6f56"},{"user":{"login":"scotthmurray","id":1034002,"node_id":"MDQ6VXNlcjEwMzQwMDI=","avatar_url":"https://avatars.githubusercontent.com/u/1034002?v=4","gravatar_id":"","url":"https://api.github.com/users/scotthmurray","html_url":"https://github.com/scotthmurray","followers_url":"https://api.github.com/users/scotthmurray/followers","following_url":"https://api.github.com/users/scotthmurray/following{/other_user}","gists_url":"https://api.github.com/users/scotthmurray/gists{/gist_id}","starred_url":"https://api.github.com/users/scotthmurray/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/scotthmurray/subscriptions","organizations_url":"https://api.github.com/users/scotthmurray/orgs","repos_url":"https://api.github.com/users/scotthmurray/repos","events_url":"https://api.github.com/users/scotthmurray/events{/privacy}","received_events_url":"https://api.github.com/users/scotthmurray/received_events","type":"User","user_view_type":"public","site_admin":false},"version":"b5250bc82a8a99fecd7a8eb5f5bed9edb8b9ab5d","committed_at":"2012-03-21T22:09:05Z","change_status":{},"url":"https://api.github.com/gists/2206590/b5250bc82a8a99fecd7a8eb5f5bed9edb8b9ab5d"},{"user":{"login":"scotthmurray","id":1034002,"node_id":"MDQ6VXNlcjEwMzQwMDI=","avatar_url":"https://avatars.githubusercontent.com/u/1034002?v=4","gravatar_id":"","url":"https://api.github.com/users/scotthmurray","html_url":"https://github.com/scotthmurray","followers_url":"https://api.github.com/users/scotthmurray/followers","following_url":"https://api.github.com/users/scotthmurray/following{/other_user}","gists_url":"https://api.github.com/users/scotthmurray/gists{/gist_id}","starred_url":"https://api.github.com/users/scotthmurray/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/scotthmurray/subscriptions","organizations_url":"https://api.github.com/users/scotthmurray/orgs","repos_url":"https://api.github.com/users/scotthmurray/repos","events_url":"https://api.github.com/users/scotthmurray/events{/privacy}","received_events_url":"https://api.github.com/users/scotthmurray/received_events","type":"User","user_view_type":"public","site_admin":false},"version":"af56035f49c30e09e9cbd5f52d1564e2897d9b6f","committed_at":"2012-03-21T22:08:46Z","change_status":{},"url":"https://api.github.com/gists/2206590/af56035f49c30e09e9cbd5f52d1564e2897d9b6f"},{"user":{"login":"scotthmurray","id":1034002,"node_id":"MDQ6VXNlcjEwMzQwMDI=","avatar_url":"https://avatars.githubusercontent.com/u/1034002?v=4","gravatar_id":"","url":"https://api.github.com/users/scotthmurray","html_url":"https://github.com/scotthmurray","followers_url":"https://api.github.com/users/scotthmurray/followers","following_url":"https://api.github.com/users/scotthmurray/following{/other_user}","gists_url":"https://api.github.com/users/scotthmurray/gists{/gist_id}","starred_url":"https://api.github.com/users/scotthmurray/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/scotthmurray/subscriptions","organizations_url":"https://api.github.com/users/scotthmurray/orgs","repos_url":"https://api.github.com/users/scotthmurray/repos","events_url":"https://api.github.com/users/scotthmurray/events{/privacy}","received_events_url":"https://api.github.com/users/scotthmurray/received_events","type":"User","user_view_type":"public","site_admin":false},"version":"ea5e90073896db901cfd43a75001558b482a9aae","committed_at":"2012-03-21T22:07:56Z","change_status":{},"url":"https://api.github.com/gists/2206590/ea5e90073896db901cfd43a75001558b482a9aae"}],"truncated":false}