{"url":"https://api.github.com/gists/1096355","forks_url":"https://api.github.com/gists/1096355/forks","commits_url":"https://api.github.com/gists/1096355/commits","id":"1096355","node_id":"MDQ6R2lzdDEwOTYzNTU=","git_pull_url":"https://gist.github.com/1096355.git","git_push_url":"https://gist.github.com/1096355.git","html_url":"https://gist.github.com/mbostock/1096355","files":{".block":{"filename":".block","type":"text/plain","language":null,"raw_url":"https://gist.githubusercontent.com/mbostock/1096355/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/1096355/raw/fa10db5d91ebe749f7e56b51c332ecf969a60ec2/README.md","size":315,"truncated":false,"content":"This unusual clock in polar coordinates is based on a [Flash screensaver by pixelbreaker](http://blog.pixelbreaker.com/polarclock). See also the earlier [Protovis version](http://vis.stanford.edu/protovis/ex/clock.html), and two [newer](/mbostock/c150b717e18d387e1b98) [variations](/mbostock/b89c89ec6b58435956a1).\n","encoding":"utf-8"},"index.html":{"filename":"index.html","type":"text/html","language":"HTML","raw_url":"https://gist.githubusercontent.com/mbostock/1096355/raw/1f90ea27bf80e5b311703d4820504b19d729ab00/index.html","size":3944,"truncated":false,"content":"<!DOCTYPE html>\n<meta charset=\"utf-8\">\n<style>\n\nbody {\n  background: #222;\n  margin: auto;\n  width: 960px;\n}\n\n.arc-text {\n  font: 16px sans-serif;\n}\n\n.arc-center {\n  fill: none;\n}\n\n#credit {\n  position: absolute;\n  font: 10px sans-serif;\n  right: 10px;\n  bottom: 10px;\n  color: #ddd;\n}\n\n#credit a {\n  color: inherit;\n}\n\n</style>\n<div id=\"credit\">Inspired by <a href=\"http://blog.pixelbreaker.com/polarclock/\">pixelbreaker</a>.</div>\n<script src=\"//d3js.org/d3.v3.min.js\"></script>\n<script>\n\nvar width = 960,\n    height = 800,\n    radius = Math.min(width, height) / 1.9,\n    spacing = .09;\n\nvar formatSecond = d3.time.format(\"%-S seconds\"),\n    formatMinute = d3.time.format(\"%-M minutes\"),\n    formatHour = d3.time.format(\"%-H hours\"),\n    formatDay = d3.time.format(\"%A\"),\n    formatDate = function(d) { d = d.getDate(); switch (10 <= d && d <= 19 ? 10 : d % 10) { case 1: d += \"st\"; break; case 2: d += \"nd\"; break; case 3: d += \"rd\"; break; default: d += \"th\"; break; } return d; },\n    formatMonth = d3.time.format(\"%B\");\n\nvar color = d3.scale.linear()\n    .range([\"hsl(-180,60%,50%)\", \"hsl(180,60%,50%)\"])\n    .interpolate(function(a, b) { var i = d3.interpolateString(a, b); return function(t) { return d3.hsl(i(t)); }; });\n\nvar arcBody = d3.svg.arc()\n    .startAngle(0)\n    .endAngle(function(d) { return d.value * 2 * Math.PI; })\n    .innerRadius(function(d) { return d.index * radius; })\n    .outerRadius(function(d) { return (d.index + spacing) * radius; })\n    .cornerRadius(6);\n\nvar arcCenter = d3.svg.arc()\n    .startAngle(0)\n    .endAngle(function(d) { return d.value * 2 * Math.PI; })\n    .innerRadius(function(d) { return (d.index + spacing / 2) * radius; })\n    .outerRadius(function(d) { return (d.index + spacing / 2) * radius; });\n\nvar svg = d3.select(\"body\").append(\"svg\")\n    .attr(\"width\", width)\n    .attr(\"height\", height)\n  .append(\"g\")\n    .attr(\"transform\", \"translate(\" + width / 2 + \",\" + height / 2 + \")\");\n\nvar field = svg.selectAll(\"g\")\n    .data(fields)\n  .enter().append(\"g\");\n\nfield.append(\"path\")\n    .attr(\"class\", \"arc-body\");\n\nfield.append(\"path\")\n    .attr(\"id\", function(d, i) { return \"arc-center-\" + i; })\n    .attr(\"class\", \"arc-center\");\n\nfield.append(\"text\")\n    .attr(\"dy\", \".35em\")\n    .attr(\"dx\", \".75em\")\n    .style(\"text-anchor\", \"start\")\n  .append(\"textPath\")\n    .attr(\"startOffset\", \"50%\")\n    .attr(\"class\", \"arc-text\")\n    .attr(\"xlink:href\", function(d, i) { return \"#arc-center-\" + i; });\n\ntick();\n\nd3.select(self.frameElement).style(\"height\", height + \"px\");\n\nfunction tick() {\n  if (!document.hidden) field\n      .each(function(d) { this._value = d.value; })\n      .data(fields)\n      .each(function(d) { d.previousValue = this._value; })\n    .transition()\n      .ease(\"elastic\")\n      .duration(500)\n      .each(fieldTransition);\n\n  setTimeout(tick, 1000 - Date.now() % 1000);\n}\n\nfunction fieldTransition() {\n  var field = d3.select(this).transition();\n\n  field.select(\".arc-body\")\n      .attrTween(\"d\", arcTween(arcBody))\n      .style(\"fill\", function(d) { return color(d.value); });\n\n  field.select(\".arc-center\")\n      .attrTween(\"d\", arcTween(arcCenter));\n\n  field.select(\".arc-text\")\n      .text(function(d) { return d.text; });\n}\n\nfunction arcTween(arc) {\n  return function(d) {\n    var i = d3.interpolateNumber(d.previousValue, d.value);\n    return function(t) {\n      d.value = i(t);\n      return arc(d);\n    };\n  };\n}\n\nfunction fields() {\n  var now = new Date;\n  return [\n    {index: .7, text: formatSecond(now), value: now.getSeconds() / 60},\n    {index: .6, text: formatMinute(now), value: now.getMinutes() / 60},\n    {index: .5, text: formatHour(now),   value: now.getHours() / 24},\n    {index: .3, text: formatDay(now),    value: now.getDay() / 7},\n    {index: .2, text: formatDate(now),   value: (now.getDate() - 1) / (32 - new Date(now.getYear(), now.getMonth(), 32).getDate())},\n    {index: .1, text: formatMonth(now),  value: now.getMonth() / 12}\n  ];\n}\n\n</script>\n","encoding":"utf-8"},"thumbnail.png":{"filename":"thumbnail.png","type":"image/png","language":null,"raw_url":"https://gist.githubusercontent.com/mbostock/1096355/raw/99e7d82c5d2f685d1ea44c3cddace045ffb8cd1e/thumbnail.png","size":12253,"truncated":false,"content":"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\nlwAAAABJRU5ErkJggg==\n","encoding":"base64"}},"public":true,"created_at":"2011-07-21T01:59:37Z","updated_at":"2025-12-08T19:22:34Z","description":"Polar Clock","comments":4,"user":null,"comments_enabled":true,"comments_url":"https://api.github.com/gists/1096355/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/4330339","user":{"login":"davo","id":76307,"node_id":"MDQ6VXNlcjc2MzA3","avatar_url":"https://avatars.githubusercontent.com/u/76307?v=4","gravatar_id":"","url":"https://api.github.com/users/davo","html_url":"https://github.com/davo","followers_url":"https://api.github.com/users/davo/followers","following_url":"https://api.github.com/users/davo/following{/other_user}","gists_url":"https://api.github.com/users/davo/gists{/gist_id}","starred_url":"https://api.github.com/users/davo/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/davo/subscriptions","organizations_url":"https://api.github.com/users/davo/orgs","repos_url":"https://api.github.com/users/davo/repos","events_url":"https://api.github.com/users/davo/events{/privacy}","received_events_url":"https://api.github.com/users/davo/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Davo Galavotti","company":"@DataDog ","blog":"https//pixelbeat.co/","location":"New York, NY","email":null,"hireable":true,"bio":"A designer who codes. My work is focused on data visualization, frontend & prototyping with web technologies.","twitter_username":"pixelbeat","public_repos":301,"public_gists":159,"followers":248,"following":440,"created_at":"2009-04-21T22:48:40Z","updated_at":"2026-05-13T01:16:43Z"},"id":"4330339","created_at":"2012-12-18T17:55:38Z","updated_at":"2015-12-09T21:28:37Z"},{"url":"https://api.github.com/gists/4524367","user":{"login":"espinielli","id":891692,"node_id":"MDQ6VXNlcjg5MTY5Mg==","avatar_url":"https://avatars.githubusercontent.com/u/891692?v=4","gravatar_id":"","url":"https://api.github.com/users/espinielli","html_url":"https://github.com/espinielli","followers_url":"https://api.github.com/users/espinielli/followers","following_url":"https://api.github.com/users/espinielli/following{/other_user}","gists_url":"https://api.github.com/users/espinielli/gists{/gist_id}","starred_url":"https://api.github.com/users/espinielli/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/espinielli/subscriptions","organizations_url":"https://api.github.com/users/espinielli/orgs","repos_url":"https://api.github.com/users/espinielli/repos","events_url":"https://api.github.com/users/espinielli/events{/privacy}","received_events_url":"https://api.github.com/users/espinielli/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Enrico Spinielli","company":"EUROCONTROL","blog":"http://enrico.spinielli.net/","location":"Bruxelles, Belgium","email":null,"hireable":null,"bio":"I am interested in dataviz and am looking forward to a world where human brains are freed from boring, repetitive, manual, click-copy-paste tasks.\r\n ","twitter_username":null,"public_repos":52,"public_gists":81,"followers":93,"following":88,"created_at":"2011-07-03T14:11:00Z","updated_at":"2026-05-08T11:34:16Z"},"id":"4524367","created_at":"2013-01-13T14:33:27Z","updated_at":"2015-12-11T01:38:49Z"},{"url":"https://api.github.com/gists/5653418","user":{"login":"yoshuawuyts","id":2467194,"node_id":"MDQ6VXNlcjI0NjcxOTQ=","avatar_url":"https://avatars.githubusercontent.com/u/2467194?v=4","gravatar_id":"","url":"https://api.github.com/users/yoshuawuyts","html_url":"https://github.com/yoshuawuyts","followers_url":"https://api.github.com/users/yoshuawuyts/followers","following_url":"https://api.github.com/users/yoshuawuyts/following{/other_user}","gists_url":"https://api.github.com/users/yoshuawuyts/gists{/gist_id}","starred_url":"https://api.github.com/users/yoshuawuyts/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/yoshuawuyts/subscriptions","organizations_url":"https://api.github.com/users/yoshuawuyts/orgs","repos_url":"https://api.github.com/users/yoshuawuyts/repos","events_url":"https://api.github.com/users/yoshuawuyts/events{/privacy}","received_events_url":"https://api.github.com/users/yoshuawuyts/received_events","type":"User","user_view_type":"public","site_admin":true,"name":"Yosh","company":null,"blog":"blog.yoshuawuyts.com","location":"København, Denmark","email":null,"hireable":null,"bio":"WebAssembly and Rust @microsoft","twitter_username":null,"public_repos":855,"public_gists":385,"followers":3274,"following":25,"created_at":"2012-10-01T21:40:46Z","updated_at":"2026-04-29T13:06:21Z"},"id":"5653418","created_at":"2013-05-26T17:23:54Z","updated_at":"2015-12-17T18:29:17Z"},{"url":"https://api.github.com/gists/9307807","user":{"login":"il-juggler","id":2476149,"node_id":"MDQ6VXNlcjI0NzYxNDk=","avatar_url":"https://avatars.githubusercontent.com/u/2476149?v=4","gravatar_id":"","url":"https://api.github.com/users/il-juggler","html_url":"https://github.com/il-juggler","followers_url":"https://api.github.com/users/il-juggler/followers","following_url":"https://api.github.com/users/il-juggler/following{/other_user}","gists_url":"https://api.github.com/users/il-juggler/gists{/gist_id}","starred_url":"https://api.github.com/users/il-juggler/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/il-juggler/subscriptions","organizations_url":"https://api.github.com/users/il-juggler/orgs","repos_url":"https://api.github.com/users/il-juggler/repos","events_url":"https://api.github.com/users/il-juggler/events{/privacy}","received_events_url":"https://api.github.com/users/il-juggler/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Mario-Alonso ","company":"oorden | itera ","blog":"","location":"QROO | GDL | CDMX","email":null,"hireable":true,"bio":"---","twitter_username":null,"public_repos":11,"public_gists":12,"followers":7,"following":8,"created_at":"2012-10-03T02:35:58Z","updated_at":"2026-02-18T14:21:49Z"},"id":"9307807","created_at":"2014-03-02T15:02:31Z","updated_at":"2015-08-29T13:56:55Z"},{"url":"https://api.github.com/gists/9423702","user":{"login":"andrewstuart","id":2635025,"node_id":"MDQ6VXNlcjI2MzUwMjU=","avatar_url":"https://avatars.githubusercontent.com/u/2635025?v=4","gravatar_id":"","url":"https://api.github.com/users/andrewstuart","html_url":"https://github.com/andrewstuart","followers_url":"https://api.github.com/users/andrewstuart/followers","following_url":"https://api.github.com/users/andrewstuart/following{/other_user}","gists_url":"https://api.github.com/users/andrewstuart/gists{/gist_id}","starred_url":"https://api.github.com/users/andrewstuart/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/andrewstuart/subscriptions","organizations_url":"https://api.github.com/users/andrewstuart/orgs","repos_url":"https://api.github.com/users/andrewstuart/repos","events_url":"https://api.github.com/users/andrewstuart/events{/privacy}","received_events_url":"https://api.github.com/users/andrewstuart/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Andrew Stuart","company":null,"blog":"https://microcumul.us","location":"AZ","email":"andrew.stuart2@gmail.com","hireable":true,"bio":null,"twitter_username":null,"public_repos":198,"public_gists":12,"followers":105,"following":86,"created_at":"2012-10-23T20:18:50Z","updated_at":"2026-03-04T18:32:17Z"},"id":"9423702","created_at":"2014-03-08T01:29:35Z","updated_at":"2015-08-29T13:57:09Z"},{"url":"https://api.github.com/gists/59fc8ef5e699ce441deb","user":{"login":"dcao","id":6006837,"node_id":"MDQ6VXNlcjYwMDY4Mzc=","avatar_url":"https://avatars.githubusercontent.com/u/6006837?v=4","gravatar_id":"","url":"https://api.github.com/users/dcao","html_url":"https://github.com/dcao","followers_url":"https://api.github.com/users/dcao/followers","following_url":"https://api.github.com/users/dcao/following{/other_user}","gists_url":"https://api.github.com/users/dcao/gists{/gist_id}","starred_url":"https://api.github.com/users/dcao/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dcao/subscriptions","organizations_url":"https://api.github.com/users/dcao/orgs","repos_url":"https://api.github.com/users/dcao/repos","events_url":"https://api.github.com/users/dcao/events{/privacy}","received_events_url":"https://api.github.com/users/dcao/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"david cao","company":"UC San Diego","blog":"cao.sh","location":null,"email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":74,"public_gists":9,"followers":25,"following":1,"created_at":"2013-11-22T03:22:52Z","updated_at":"2026-05-14T16:59:36Z"},"id":"59fc8ef5e699ce441deb","created_at":"2015-02-23T03:36:06Z","updated_at":"2015-08-29T14:15:58Z"},{"url":"https://api.github.com/gists/bda82d92f7895a5b67a2","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":60,"public_gists":60,"followers":92,"following":0,"created_at":"2011-01-23T14:17:58Z","updated_at":"2025-12-09T08:05:04Z"},"id":"bda82d92f7895a5b67a2","created_at":"2015-05-19T19:15:39Z","updated_at":"2015-08-29T14:21:31Z"},{"url":"https://api.github.com/gists/d27514f2dc25774f10c9","user":{"login":"spock74","id":377364,"node_id":"MDQ6VXNlcjM3NzM2NA==","avatar_url":"https://avatars.githubusercontent.com/u/377364?v=4","gravatar_id":"","url":"https://api.github.com/users/spock74","html_url":"https://github.com/spock74","followers_url":"https://api.github.com/users/spock74/followers","following_url":"https://api.github.com/users/spock74/following{/other_user}","gists_url":"https://api.github.com/users/spock74/gists{/gist_id}","starred_url":"https://api.github.com/users/spock74/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/spock74/subscriptions","organizations_url":"https://api.github.com/users/spock74/orgs","repos_url":"https://api.github.com/users/spock74/repos","events_url":"https://api.github.com/users/spock74/events{/privacy}","received_events_url":"https://api.github.com/users/spock74/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Jose Moraes","company":null,"blog":"","location":"Brazil","email":null,"hireable":true,"bio":null,"twitter_username":null,"public_repos":284,"public_gists":19,"followers":14,"following":26,"created_at":"2010-08-26T22:22:51Z","updated_at":"2026-03-23T04:39:50Z"},"id":"d27514f2dc25774f10c9","created_at":"2015-06-01T00:12:07Z","updated_at":"2015-08-29T14:22:18Z"},{"url":"https://api.github.com/gists/be815e45b9e172552f43","user":{"login":"syntagmatic","id":156229,"node_id":"MDQ6VXNlcjE1NjIyOQ==","avatar_url":"https://avatars.githubusercontent.com/u/156229?v=4","gravatar_id":"","url":"https://api.github.com/users/syntagmatic","html_url":"https://github.com/syntagmatic","followers_url":"https://api.github.com/users/syntagmatic/followers","following_url":"https://api.github.com/users/syntagmatic/following{/other_user}","gists_url":"https://api.github.com/users/syntagmatic/gists{/gist_id}","starred_url":"https://api.github.com/users/syntagmatic/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/syntagmatic/subscriptions","organizations_url":"https://api.github.com/users/syntagmatic/orgs","repos_url":"https://api.github.com/users/syntagmatic/repos","events_url":"https://api.github.com/users/syntagmatic/events{/privacy}","received_events_url":"https://api.github.com/users/syntagmatic/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Kai","company":null,"blog":"","location":"San Francisco","email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":61,"public_gists":168,"followers":405,"following":13,"created_at":"2009-11-21T04:15:57Z","updated_at":"2026-03-23T00:28:49Z"},"id":"be815e45b9e172552f43","created_at":"2015-08-15T05:35:34Z","updated_at":"2019-11-08T07:57:06Z"},{"url":"https://api.github.com/gists/6124497e4e9ee26f6db4","user":{"login":"AntarjotSingh","id":7971840,"node_id":"MDQ6VXNlcjc5NzE4NDA=","avatar_url":"https://avatars.githubusercontent.com/u/7971840?v=4","gravatar_id":"","url":"https://api.github.com/users/AntarjotSingh","html_url":"https://github.com/AntarjotSingh","followers_url":"https://api.github.com/users/AntarjotSingh/followers","following_url":"https://api.github.com/users/AntarjotSingh/following{/other_user}","gists_url":"https://api.github.com/users/AntarjotSingh/gists{/gist_id}","starred_url":"https://api.github.com/users/AntarjotSingh/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/AntarjotSingh/subscriptions","organizations_url":"https://api.github.com/users/AntarjotSingh/orgs","repos_url":"https://api.github.com/users/AntarjotSingh/repos","events_url":"https://api.github.com/users/AntarjotSingh/events{/privacy}","received_events_url":"https://api.github.com/users/AntarjotSingh/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Naj","company":null,"blog":"https://play.google.com/store/apps/details?id=com.coffeewithandroid.kirtandarbar_final&hl=en","location":null,"email":"antarjot74@gmail.com","hireable":null,"bio":"Developer, tech-savvy","twitter_username":null,"public_repos":17,"public_gists":1,"followers":2,"following":4,"created_at":"2014-06-24T05:26:48Z","updated_at":"2024-10-04T20:51:46Z"},"id":"6124497e4e9ee26f6db4","created_at":"2015-12-09T09:32:14Z","updated_at":"2015-12-09T09:35:45Z"},{"url":"https://api.github.com/gists/02bbc47b21c06a478ca5aab61f24276f","user":{"login":"dysbulic","id":181523,"node_id":"MDQ6VXNlcjE4MTUyMw==","avatar_url":"https://avatars.githubusercontent.com/u/181523?v=4","gravatar_id":"","url":"https://api.github.com/users/dysbulic","html_url":"https://github.com/dysbulic","followers_url":"https://api.github.com/users/dysbulic/followers","following_url":"https://api.github.com/users/dysbulic/following{/other_user}","gists_url":"https://api.github.com/users/dysbulic/gists{/gist_id}","starred_url":"https://api.github.com/users/dysbulic/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dysbulic/subscriptions","organizations_url":"https://api.github.com/users/dysbulic/orgs","repos_url":"https://api.github.com/users/dysbulic/repos","events_url":"https://api.github.com/users/dysbulic/events{/privacy}","received_events_url":"https://api.github.com/users/dysbulic/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"δυς","company":"Department of Happiness","blog":"https://trwb.live","location":"sᴡ VA, U.S.A.","email":"dys@dhappy.org","hireable":true,"bio":"¡WAGMI‼️","twitter_username":"dysbulic","public_repos":75,"public_gists":27,"followers":58,"following":35,"created_at":"2010-01-13T16:05:54Z","updated_at":"2026-04-02T13:58:37Z"},"id":"02bbc47b21c06a478ca5aab61f24276f","created_at":"2016-04-07T15:53:44Z","updated_at":"2016-04-07T15:53:44Z"},{"url":"https://api.github.com/gists/b8cd96e6fbd78965b0eb5e8804bbb2c6","user":{"login":"leetheguy","id":550003,"node_id":"MDQ6VXNlcjU1MDAwMw==","avatar_url":"https://avatars.githubusercontent.com/u/550003?v=4","gravatar_id":"","url":"https://api.github.com/users/leetheguy","html_url":"https://github.com/leetheguy","followers_url":"https://api.github.com/users/leetheguy/followers","following_url":"https://api.github.com/users/leetheguy/following{/other_user}","gists_url":"https://api.github.com/users/leetheguy/gists{/gist_id}","starred_url":"https://api.github.com/users/leetheguy/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/leetheguy/subscriptions","organizations_url":"https://api.github.com/users/leetheguy/orgs","repos_url":"https://api.github.com/users/leetheguy/repos","events_url":"https://api.github.com/users/leetheguy/events{/privacy}","received_events_url":"https://api.github.com/users/leetheguy/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Lee Nathan","company":null,"blog":"https://onetap.software","location":"Henderson, NV","email":null,"hireable":true,"bio":"I build mobile and web apps using front-end and serverless web tech.","twitter_username":null,"public_repos":42,"public_gists":18,"followers":5,"following":8,"created_at":"2011-01-06T08:45:48Z","updated_at":"2026-04-24T19:33:11Z"},"id":"b8cd96e6fbd78965b0eb5e8804bbb2c6","created_at":"2017-03-10T22:48:15Z","updated_at":"2017-03-10T22:56:41Z"},{"url":"https://api.github.com/gists/b9179914e455f0e173e0d6c3ad7c045a","user":{"login":"gbegley","id":691725,"node_id":"MDQ6VXNlcjY5MTcyNQ==","avatar_url":"https://avatars.githubusercontent.com/u/691725?v=4","gravatar_id":"","url":"https://api.github.com/users/gbegley","html_url":"https://github.com/gbegley","followers_url":"https://api.github.com/users/gbegley/followers","following_url":"https://api.github.com/users/gbegley/following{/other_user}","gists_url":"https://api.github.com/users/gbegley/gists{/gist_id}","starred_url":"https://api.github.com/users/gbegley/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/gbegley/subscriptions","organizations_url":"https://api.github.com/users/gbegley/orgs","repos_url":"https://api.github.com/users/gbegley/repos","events_url":"https://api.github.com/users/gbegley/events{/privacy}","received_events_url":"https://api.github.com/users/gbegley/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Geoffrey Begley","company":null,"blog":"","location":"Jacksonville Beach, Florida, USA","email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":15,"public_gists":4,"followers":5,"following":5,"created_at":"2011-03-26T08:20:27Z","updated_at":"2026-05-06T20:41:49Z"},"id":"b9179914e455f0e173e0d6c3ad7c045a","created_at":"2017-10-11T18:35:49Z","updated_at":"2017-10-11T18:36:14Z"},{"url":"https://api.github.com/gists/057d7504f953bf175be077bd23ac1dc8","user":{"login":"danse","id":885935,"node_id":"MDQ6VXNlcjg4NTkzNQ==","avatar_url":"https://avatars.githubusercontent.com/u/885935?v=4","gravatar_id":"","url":"https://api.github.com/users/danse","html_url":"https://github.com/danse","followers_url":"https://api.github.com/users/danse/followers","following_url":"https://api.github.com/users/danse/following{/other_user}","gists_url":"https://api.github.com/users/danse/gists{/gist_id}","starred_url":"https://api.github.com/users/danse/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/danse/subscriptions","organizations_url":"https://api.github.com/users/danse/orgs","repos_url":"https://api.github.com/users/danse/repos","events_url":"https://api.github.com/users/danse/events{/privacy}","received_events_url":"https://api.github.com/users/danse/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"frances","company":null,"blog":"","location":"Internet","email":"focchi.pinti@gmail.com","hireable":true,"bio":"never hide","twitter_username":null,"public_repos":129,"public_gists":70,"followers":62,"following":72,"created_at":"2011-06-30T08:18:34Z","updated_at":"2026-04-07T07:25:51Z"},"id":"057d7504f953bf175be077bd23ac1dc8","created_at":"2017-11-20T20:06:07Z","updated_at":"2019-07-30T04:20:31Z"},{"url":"https://api.github.com/gists/947da1ff731366167079a17e0752ff3c","user":{"login":"carmensalas14","id":22507797,"node_id":"MDQ6VXNlcjIyNTA3Nzk3","avatar_url":"https://avatars.githubusercontent.com/u/22507797?v=4","gravatar_id":"","url":"https://api.github.com/users/carmensalas14","html_url":"https://github.com/carmensalas14","followers_url":"https://api.github.com/users/carmensalas14/followers","following_url":"https://api.github.com/users/carmensalas14/following{/other_user}","gists_url":"https://api.github.com/users/carmensalas14/gists{/gist_id}","starred_url":"https://api.github.com/users/carmensalas14/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/carmensalas14/subscriptions","organizations_url":"https://api.github.com/users/carmensalas14/orgs","repos_url":"https://api.github.com/users/carmensalas14/repos","events_url":"https://api.github.com/users/carmensalas14/events{/privacy}","received_events_url":"https://api.github.com/users/carmensalas14/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Carmen Salas","company":"@The-Marcy-Lab-School","blog":"","location":"Brooklyn, NY","email":null,"hireable":null,"bio":"Senior Associate Instructor ","twitter_username":"cs_carms","public_repos":153,"public_gists":49,"followers":17,"following":19,"created_at":"2016-09-28T20:57:50Z","updated_at":"2026-01-13T20:47:43Z"},"id":"947da1ff731366167079a17e0752ff3c","created_at":"2018-07-18T16:02:20Z","updated_at":"2018-07-18T16:02:20Z"},{"url":"https://api.github.com/gists/c0a3a2f183571726c0d774ae10869a88","user":{"login":"carmensalas14","id":22507797,"node_id":"MDQ6VXNlcjIyNTA3Nzk3","avatar_url":"https://avatars.githubusercontent.com/u/22507797?v=4","gravatar_id":"","url":"https://api.github.com/users/carmensalas14","html_url":"https://github.com/carmensalas14","followers_url":"https://api.github.com/users/carmensalas14/followers","following_url":"https://api.github.com/users/carmensalas14/following{/other_user}","gists_url":"https://api.github.com/users/carmensalas14/gists{/gist_id}","starred_url":"https://api.github.com/users/carmensalas14/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/carmensalas14/subscriptions","organizations_url":"https://api.github.com/users/carmensalas14/orgs","repos_url":"https://api.github.com/users/carmensalas14/repos","events_url":"https://api.github.com/users/carmensalas14/events{/privacy}","received_events_url":"https://api.github.com/users/carmensalas14/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Carmen Salas","company":"@The-Marcy-Lab-School","blog":"","location":"Brooklyn, NY","email":null,"hireable":null,"bio":"Senior Associate Instructor ","twitter_username":"cs_carms","public_repos":153,"public_gists":49,"followers":17,"following":19,"created_at":"2016-09-28T20:57:50Z","updated_at":"2026-01-13T20:47:43Z"},"id":"c0a3a2f183571726c0d774ae10869a88","created_at":"2018-07-18T16:02:21Z","updated_at":"2018-07-18T16:02:21Z"},{"url":"https://api.github.com/gists/b6c598d2b803a8cac2d1523eccef8c80","user":{"login":"dwstevens","id":1444370,"node_id":"MDQ6VXNlcjE0NDQzNzA=","avatar_url":"https://avatars.githubusercontent.com/u/1444370?v=4","gravatar_id":"","url":"https://api.github.com/users/dwstevens","html_url":"https://github.com/dwstevens","followers_url":"https://api.github.com/users/dwstevens/followers","following_url":"https://api.github.com/users/dwstevens/following{/other_user}","gists_url":"https://api.github.com/users/dwstevens/gists{/gist_id}","starred_url":"https://api.github.com/users/dwstevens/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dwstevens/subscriptions","organizations_url":"https://api.github.com/users/dwstevens/orgs","repos_url":"https://api.github.com/users/dwstevens/repos","events_url":"https://api.github.com/users/dwstevens/events{/privacy}","received_events_url":"https://api.github.com/users/dwstevens/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"David Stevens","company":"Radians per Second Squared","blog":"https://radsquared.ai","location":"State College, PA","email":"spilt.ramble-0j@icloud.com","hireable":null,"bio":"Building towards the AI future I'd like for my kids to live in.","twitter_username":"stevewdavens","public_repos":78,"public_gists":3,"followers":10,"following":10,"created_at":"2012-02-16T19:43:34Z","updated_at":"2026-05-10T09:57:56Z"},"id":"b6c598d2b803a8cac2d1523eccef8c80","created_at":"2020-06-07T16:43:17Z","updated_at":"2020-06-07T16:43:33Z"},{"url":"https://api.github.com/gists/c3ea103a8d1249b0cd1f42745d4836b1","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":2062,"public_gists":92,"followers":12,"following":141,"created_at":"2022-03-29T18:05:29Z","updated_at":"2026-04-24T13:54:33Z"},"id":"c3ea103a8d1249b0cd1f42745d4836b1","created_at":"2025-12-08T19:22:34Z","updated_at":"2025-12-08T19:27:59Z"}],"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":"e1d22f1ab1a3ae84f13a701dae53158d1566e6c9","committed_at":"2016-02-24T19:46:00Z","change_status":{"total":2,"additions":1,"deletions":1},"url":"https://api.github.com/gists/1096355/e1d22f1ab1a3ae84f13a701dae53158d1566e6c9"},{"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":"7f6566b489b9688e6b3e622e3a39446194a901ba","committed_at":"2016-02-24T19:45:49Z","change_status":{"total":2,"additions":1,"deletions":1},"url":"https://api.github.com/gists/1096355/7f6566b489b9688e6b3e622e3a39446194a901ba"},{"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":"4397f74c690d95f8001e2a4aa4d3766d79bd07b7","committed_at":"2016-02-23T21:47:57Z","change_status":{"total":2,"additions":1,"deletions":1},"url":"https://api.github.com/gists/1096355/4397f74c690d95f8001e2a4aa4d3766d79bd07b7"},{"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":"d21e7d0faf33c866e55a448b41c203a4db6547b5","committed_at":"2016-02-23T21:42:39Z","change_status":{"total":0,"additions":0,"deletions":0},"url":"https://api.github.com/gists/1096355/d21e7d0faf33c866e55a448b41c203a4db6547b5"},{"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":"2bb5c04569b40a08513cf7f289edbc9832c90b62","committed_at":"2016-02-09T00:20:54Z","change_status":{"total":1,"additions":1,"deletions":0},"url":"https://api.github.com/gists/1096355/2bb5c04569b40a08513cf7f289edbc9832c90b62"},{"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":"40d4eacfffbf21b137a08c12f84b852ed443b3c0","committed_at":"2015-11-10T18:37:36Z","change_status":{"total":115,"additions":67,"deletions":48},"url":"https://api.github.com/gists/1096355/40d4eacfffbf21b137a08c12f84b852ed443b3c0"},{"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":"c20b426d58c3f677e92b899ea6ca7888f2819611","committed_at":"2015-10-30T21:30:50Z","change_status":{"total":2,"additions":1,"deletions":1},"url":"https://api.github.com/gists/1096355/c20b426d58c3f677e92b899ea6ca7888f2819611"},{"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":"3e538419712f918669119a1ce2d56fd09a4f75dc","committed_at":"2015-06-11T19:42:43Z","change_status":{"total":2,"additions":1,"deletions":1},"url":"https://api.github.com/gists/1096355/3e538419712f918669119a1ce2d56fd09a4f75dc"},{"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":"e8656a03041f390da3e09c094f28653bf7d4ccb0","committed_at":"2014-03-03T17:46:20Z","change_status":{"total":20,"additions":7,"deletions":13},"url":"https://api.github.com/gists/1096355/e8656a03041f390da3e09c094f28653bf7d4ccb0"},{"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":"a64adc20b14ea9f24168d888ed5a320b8454b3a4","committed_at":"2013-12-20T00:52:19Z","change_status":{"total":14,"additions":7,"deletions":7},"url":"https://api.github.com/gists/1096355/a64adc20b14ea9f24168d888ed5a320b8454b3a4"},{"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":"7efb90a7823e2d281b5c10c46b762e1e460ba12e","committed_at":"2013-12-20T00:40:10Z","change_status":{},"url":"https://api.github.com/gists/1096355/7efb90a7823e2d281b5c10c46b762e1e460ba12e"},{"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":"f57a6fe4520bfe6e4f2babf1c382079ebb689344","committed_at":"2013-12-20T00:37:58Z","change_status":{},"url":"https://api.github.com/gists/1096355/f57a6fe4520bfe6e4f2babf1c382079ebb689344"},{"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":"b6479caedab7d1bceaf66d182df38b53289f7e43","committed_at":"2012-12-19T18:42:18Z","change_status":{},"url":"https://api.github.com/gists/1096355/b6479caedab7d1bceaf66d182df38b53289f7e43"},{"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":"6fad12109464e3217ee057c4b8e06176d03228c1","committed_at":"2012-12-19T18:41:52Z","change_status":{},"url":"https://api.github.com/gists/1096355/6fad12109464e3217ee057c4b8e06176d03228c1"},{"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":"8280d1bc7f7464cb722ae56d3831d9ffd8df18a0","committed_at":"2012-12-19T18:41:12Z","change_status":{},"url":"https://api.github.com/gists/1096355/8280d1bc7f7464cb722ae56d3831d9ffd8df18a0"},{"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":"57132a5640aa35133726956b9d428addfa3b2b8a","committed_at":"2012-10-12T03:43:47Z","change_status":{},"url":"https://api.github.com/gists/1096355/57132a5640aa35133726956b9d428addfa3b2b8a"},{"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":"1ca0c60a5c8c70b5983dee51ec78b11ae83e7605","committed_at":"2012-10-12T02:46:08Z","change_status":{},"url":"https://api.github.com/gists/1096355/1ca0c60a5c8c70b5983dee51ec78b11ae83e7605"},{"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":"d7cdf97a8b8e87b23e51a4cc80be39cb541ef551","committed_at":"2012-10-12T02:45:50Z","change_status":{},"url":"https://api.github.com/gists/1096355/d7cdf97a8b8e87b23e51a4cc80be39cb541ef551"},{"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":"086fc5f63152e265bcb683edebdb0afd0eedd8aa","committed_at":"2012-10-12T02:44:40Z","change_status":{},"url":"https://api.github.com/gists/1096355/086fc5f63152e265bcb683edebdb0afd0eedd8aa"},{"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":"5c581b91f8ec1f0b746f551ff5c6ab91fe8d12a4","committed_at":"2012-10-12T02:44:13Z","change_status":{},"url":"https://api.github.com/gists/1096355/5c581b91f8ec1f0b746f551ff5c6ab91fe8d12a4"},{"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":"e3e4c3b63547169005043ee816f17b421392c27b","committed_at":"2011-07-21T02:00:00Z","change_status":{},"url":"https://api.github.com/gists/1096355/e3e4c3b63547169005043ee816f17b421392c27b"},{"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":"e561551e755b804bbb27fb80e201fd5a11bf6080","committed_at":"2011-07-21T01:59:37Z","change_status":{},"url":"https://api.github.com/gists/1096355/e561551e755b804bbb27fb80e201fd5a11bf6080"}],"truncated":false}