{"url":"https://api.github.com/gists/910126","forks_url":"https://api.github.com/gists/910126/forks","commits_url":"https://api.github.com/gists/910126/commits","id":"910126","node_id":"MDQ6R2lzdDkxMDEyNg==","git_pull_url":"https://gist.github.com/910126.git","git_push_url":"https://gist.github.com/910126.git","html_url":"https://gist.github.com/mbostock/910126","files":{"index.html":{"filename":"index.html","type":"text/html","language":"HTML","raw_url":"https://gist.githubusercontent.com/mbostock/910126/raw/d4e2bf197bb6f6ec3910058b73313c90072c2bd1/index.html","size":2035,"truncated":false,"content":"<html>\n  <head>\n    <meta http-equiv=\"Content-Type\" content=\"text/html;charset=utf-8\">\n    <title>Sunburst with Text</title>\n    <script type=\"text/javascript\" src=\"http://mbostock.github.com/d3/d3.js\"></script>\n    <script type=\"text/javascript\" src=\"http://mbostock.github.com/d3/d3.layout.js\"></script>\n    <style type=\"text/css\">\n\nsvg {\n  font: 10px sans-serif;\n}\n\n    </style>\n  </head>\n  <body>\n    <div id=\"chart\"></div>\n    <script type=\"text/javascript\">\n    \t\nvar w = window.innerWidth - 1,\n    h = window.innerHeight - 1,\n    r = Math.min(w, h) / 2,\n    color = d3.scale.category20c();\n\nvar vis = d3.select(\"#chart\").append(\"svg:svg\")\n    .attr(\"width\", w)\n    .attr(\"height\", h)\n  .append(\"svg:g\")\n    .attr(\"transform\", \"translate(\" + w / 2 + \",\" + h / 2 + \")\");\n\nvar partition = d3.layout.partition()\n    .sort(null)\n    .size([2 * Math.PI, r * r])\n    .children(function(d) { return isNaN(d.value) ? d3.entries(d.value) : null; })\n    .value(function(d) { return d.value; });\n\nvar arc = d3.svg.arc()\n    .startAngle(function(d) { return d.x; })\n    .endAngle(function(d) { return d.x + d.dx; })\n    .innerRadius(function(d) { return Math.sqrt(d.y); })\n    .outerRadius(function(d) { return Math.sqrt(d.y + d.dy); });\n\nd3.json(\"readme.json\", function(json) {\n\n  var g = vis.data(d3.entries(json)).selectAll(\"g\")\n      .data(partition)\n    .enter().append(\"svg:g\")\n      .attr(\"display\", function(d) { return d.depth ? null : \"none\"; }); // hide inner ring\n\n  g.append(\"svg:path\")\n      .attr(\"d\", arc)\n      .attr(\"stroke\", \"#fff\")\n      .attr(\"fill\", function(d) { return color((d.children ? d : d.parent).data.key); })\n      .attr(\"fill-rule\", \"evenodd\");\n\t  \n  g.append(\"svg:text\")\n      .attr(\"transform\", function(d) { return \"rotate(\" + (d.x + d.dx / 2 - Math.PI / 2) / Math.PI * 180 + \")\"; })\n      .attr(\"x\", function(d) { return Math.sqrt(d.y); })\n      .attr(\"dx\", \"6\") // margin\n      .attr(\"dy\", \".35em\") // vertical-align\n      .text(function(d) { return d.data.key; });\n});\n\n    </script>\n  </body>\n</html>\n","encoding":"utf-8"},"readme.json":{"filename":"readme.json","type":"application/json","language":"JSON","raw_url":"https://gist.githubusercontent.com/mbostock/910126/raw/ec93c038e829cb40c2b6576c0cdc4b92ceb00a0f/readme.json","size":6814,"truncated":false,"content":"{\n  \"flare\": {\n    \"analytics\": {\n      \"cluster\": {\n        \"AgglomerativeCluster\": 3938,\n        \"CommunityStructure\": 3812,\n        \"HierarchicalCluster\": 6714,\n        \"MergeEdge\": 743\n      },\n      \"graph\": {\n        \"BetweennessCentrality\": 3534,\n        \"LinkDistance\": 5731,\n        \"MaxFlowMinCut\": 7840,\n        \"ShortestPaths\": 5914,\n        \"SpanningTree\": 3416\n      },\n      \"optimization\": {\n        \"AspectRatioBanker\": 7074\n      }\n    },\n    \"animate\": {\n      \"Easing\": 17010,\n      \"FunctionSequence\": 5842,\n      \"interpolate\": {\n        \"ArrayInterpolator\": 1983,\n        \"ColorInterpolator\": 2047,\n        \"DateInterpolator\": 1375,\n        \"Interpolator\": 8746,\n        \"MatrixInterpolator\": 2202,\n        \"NumberInterpolator\": 1382,\n        \"ObjectInterpolator\": 1629,\n        \"PointInterpolator\": 1675,\n        \"RectangleInterpolator\": 2042\n      },\n      \"ISchedulable\": 1041,\n      \"Parallel\": 5176,\n      \"Pause\": 449,\n      \"Scheduler\": 5593,\n      \"Sequence\": 5534,\n      \"Transition\": 9201,\n      \"Transitioner\": 19975,\n      \"TransitionEvent\": 1116,\n      \"Tween\": 6006\n    },\n    \"data\": {\n      \"converters\": {\n        \"Converters\": 721,\n        \"DelimitedTextConverter\": 4294,\n        \"GraphMLConverter\": 9800,\n        \"IDataConverter\": 1314,\n        \"JSONConverter\": 2220\n      },\n      \"DataField\": 1759,\n      \"DataSchema\": 2165,\n      \"DataSet\": 586,\n      \"DataSource\": 3331,\n      \"DataTable\": 772,\n      \"DataUtil\": 3322\n    },\n    \"display\": {\n      \"DirtySprite\": 8833,\n      \"LineSprite\": 1732,\n      \"RectSprite\": 3623,\n      \"TextSprite\": 10066\n    },\n    \"flex\": {\n      \"FlareVis\": 4116\n    },\n    \"physics\": {\n      \"DragForce\": 1082,\n      \"GravityForce\": 1336,\n      \"IForce\": 319,\n      \"NBodyForce\": 10498,\n      \"Particle\": 2822,\n      \"Simulation\": 9983,\n      \"Spring\": 2213,\n      \"SpringForce\": 1681\n    },\n    \"query\": {\n      \"AggregateExpression\": 1616,\n      \"And\": 1027,\n      \"Arithmetic\": 3891,\n      \"Average\": 891,\n      \"BinaryExpression\": 2893,\n      \"Comparison\": 5103,\n      \"CompositeExpression\": 3677,\n      \"Count\": 781,\n      \"DateUtil\": 4141,\n      \"Distinct\": 933,\n      \"Expression\": 5130,\n      \"ExpressionIterator\": 3617,\n      \"Fn\": 3240,\n      \"If\": 2732,\n      \"IsA\": 2039,\n      \"Literal\": 1214,\n      \"Match\": 3748,\n      \"Maximum\": 843,\n      \"methods\": {\n        \"add\": 593,\n        \"and\": 330,\n        \"average\": 287,\n        \"count\": 277,\n        \"distinct\": 292,\n        \"div\": 595,\n        \"eq\": 594,\n        \"fn\": 460,\n        \"gt\": 603,\n        \"gte\": 625,\n        \"iff\": 748,\n        \"isa\": 461,\n        \"lt\": 597,\n        \"lte\": 619,\n        \"max\": 283,\n        \"min\": 283,\n        \"mod\": 591,\n        \"mul\": 603,\n        \"neq\": 599,\n        \"not\": 386,\n        \"or\": 323,\n        \"orderby\": 307,\n        \"range\": 772,\n        \"select\": 296,\n        \"stddev\": 363,\n        \"sub\": 600,\n        \"sum\": 280,\n        \"update\": 307,\n        \"variance\": 335,\n        \"where\": 299,\n        \"xor\": 354,\n        \"_\": 264\n      },\n      \"Minimum\": 843,\n      \"Not\": 1554,\n      \"Or\": 970,\n      \"Query\": 13896,\n      \"Range\": 1594,\n      \"StringUtil\": 4130,\n      \"Sum\": 791,\n      \"Variable\": 1124,\n      \"Variance\": 1876,\n      \"Xor\": 1101\n    },\n    \"scale\": {\n      \"IScaleMap\": 2105,\n      \"LinearScale\": 1316,\n      \"LogScale\": 3151,\n      \"OrdinalScale\": 3770,\n      \"QuantileScale\": 2435,\n      \"QuantitativeScale\": 4839,\n      \"RootScale\": 1756,\n      \"Scale\": 4268,\n      \"ScaleType\": 1821,\n      \"TimeScale\": 5833\n    },\n    \"util\": {\n      \"Arrays\": 8258,\n      \"Colors\": 10001,\n      \"Dates\": 8217,\n      \"Displays\": 12555,\n      \"Filter\": 2324,\n      \"Geometry\": 10993,\n      \"heap\": {\n        \"FibonacciHeap\": 9354,\n        \"HeapNode\": 1233\n      },\n      \"IEvaluable\": 335,\n      \"IPredicate\": 383,\n      \"IValueProxy\": 874,\n      \"math\": {\n        \"DenseMatrix\": 3165,\n        \"IMatrix\": 2815,\n        \"SparseMatrix\": 3366\n      },\n      \"Maths\": 17705,\n      \"Orientation\": 1486,\n      \"palette\": {\n        \"ColorPalette\": 6367,\n        \"Palette\": 1229,\n        \"ShapePalette\": 2059,\n        \"SizePalette\": 2291\n      },\n      \"Property\": 5559,\n      \"Shapes\": 19118,\n      \"Sort\": 6887,\n      \"Stats\": 6557,\n      \"Strings\": 22026\n    },\n    \"vis\": {\n      \"axis\": {\n        \"Axes\": 1302,\n        \"Axis\": 24593,\n        \"AxisGridLine\": 652,\n        \"AxisLabel\": 636,\n        \"CartesianAxes\": 6703\n      },\n      \"controls\": {\n        \"AnchorControl\": 2138,\n        \"ClickControl\": 3824,\n        \"Control\": 1353,\n        \"ControlList\": 4665,\n        \"DragControl\": 2649,\n        \"ExpandControl\": 2832,\n        \"HoverControl\": 4896,\n        \"IControl\": 763,\n        \"PanZoomControl\": 5222,\n        \"SelectionControl\": 7862,\n        \"TooltipControl\": 8435\n      },\n      \"data\": {\n        \"Data\": 20544,\n        \"DataList\": 19788,\n        \"DataSprite\": 10349,\n        \"EdgeSprite\": 3301,\n        \"NodeSprite\": 19382,\n        \"render\": {\n          \"ArrowType\": 698,\n          \"EdgeRenderer\": 5569,\n          \"IRenderer\": 353,\n          \"ShapeRenderer\": 2247\n        },\n        \"ScaleBinding\": 11275,\n        \"Tree\": 7147,\n        \"TreeBuilder\": 9930\n      },\n      \"events\": {\n        \"DataEvent\": 2313,\n        \"SelectionEvent\": 1880,\n        \"TooltipEvent\": 1701,\n        \"VisualizationEvent\": 1117\n      },\n      \"legend\": {\n        \"Legend\": 20859,\n        \"LegendItem\": 4614,\n        \"LegendRange\": 10530\n      },\n      \"operator\": {\n        \"distortion\": {\n          \"BifocalDistortion\": 4461,\n          \"Distortion\": 6314,\n          \"FisheyeDistortion\": 3444\n        },\n        \"encoder\": {\n          \"ColorEncoder\": 3179,\n          \"Encoder\": 4060,\n          \"PropertyEncoder\": 4138,\n          \"ShapeEncoder\": 1690,\n          \"SizeEncoder\": 1830\n        },\n        \"filter\": {\n          \"FisheyeTreeFilter\": 5219,\n          \"GraphDistanceFilter\": 3165,\n          \"VisibilityFilter\": 3509\n        },\n        \"IOperator\": 1286,\n        \"label\": {\n          \"Labeler\": 9956,\n          \"RadialLabeler\": 3899,\n          \"StackedAreaLabeler\": 3202\n        },\n        \"layout\": {\n          \"AxisLayout\": 6725,\n          \"BundledEdgeRouter\": 3727,\n          \"CircleLayout\": 9317,\n          \"CirclePackingLayout\": 12003,\n          \"DendrogramLayout\": 4853,\n          \"ForceDirectedLayout\": 8411,\n          \"IcicleTreeLayout\": 4864,\n          \"IndentedTreeLayout\": 3174,\n          \"Layout\": 7881,\n          \"NodeLinkTreeLayout\": 12870,\n          \"PieLayout\": 2728,\n          \"RadialTreeLayout\": 12348,\n          \"RandomLayout\": 870,\n          \"StackedAreaLayout\": 9121,\n          \"TreeMapLayout\": 9191\n        },\n        \"Operator\": 2490,\n        \"OperatorList\": 5248,\n        \"OperatorSequence\": 4190,\n        \"OperatorSwitch\": 2581,\n        \"SortOperator\": 2023\n      },\n      \"Visualization\": 16540\n    }\n  }\n}\n","encoding":"utf-8"}},"public":false,"created_at":"2011-04-08T15:38:12Z","updated_at":"2016-02-08T23:56:48Z","description":null,"comments":0,"user":null,"comments_enabled":true,"comments_url":"https://api.github.com/gists/910126/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/909364","forks_url":"https://api.github.com/gists/909364/forks","commits_url":"https://api.github.com/gists/909364/commits","id":"909364","node_id":"MDQ6R2lzdDkwOTM2NA==","git_pull_url":"https://gist.github.com/909364.git","git_push_url":"https://gist.github.com/909364.git","html_url":"https://gist.github.com/devangmundhra/909364","files":{},"public":true,"created_at":"2011-04-08T05:55:28Z","updated_at":"2015-09-25T10:48:11Z","description":"The first part uses the sunburst example. The last part attempts to add text for each of the arcs.","comments":0,"user":null,"comments_enabled":true,"comments_url":"https://api.github.com/gists/909364/comments","owner":{"login":"devangmundhra","id":490236,"node_id":"MDQ6VXNlcjQ5MDIzNg==","avatar_url":"https://avatars.githubusercontent.com/u/490236?v=4","gravatar_id":"","url":"https://api.github.com/users/devangmundhra","html_url":"https://github.com/devangmundhra","followers_url":"https://api.github.com/users/devangmundhra/followers","following_url":"https://api.github.com/users/devangmundhra/following{/other_user}","gists_url":"https://api.github.com/users/devangmundhra/gists{/gist_id}","starred_url":"https://api.github.com/users/devangmundhra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/devangmundhra/subscriptions","organizations_url":"https://api.github.com/users/devangmundhra/orgs","repos_url":"https://api.github.com/users/devangmundhra/repos","events_url":"https://api.github.com/users/devangmundhra/events{/privacy}","received_events_url":"https://api.github.com/users/devangmundhra/received_events","type":"User","user_view_type":"public","site_admin":false}},"forks":[{"url":"https://api.github.com/gists/1356991","user":{"login":"ndefreitas","id":77572,"node_id":"MDQ6VXNlcjc3NTcy","avatar_url":"https://avatars.githubusercontent.com/u/77572?v=4","gravatar_id":"","url":"https://api.github.com/users/ndefreitas","html_url":"https://github.com/ndefreitas","followers_url":"https://api.github.com/users/ndefreitas/followers","following_url":"https://api.github.com/users/ndefreitas/following{/other_user}","gists_url":"https://api.github.com/users/ndefreitas/gists{/gist_id}","starred_url":"https://api.github.com/users/ndefreitas/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ndefreitas/subscriptions","organizations_url":"https://api.github.com/users/ndefreitas/orgs","repos_url":"https://api.github.com/users/ndefreitas/repos","events_url":"https://api.github.com/users/ndefreitas/events{/privacy}","received_events_url":"https://api.github.com/users/ndefreitas/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Nigel DeFreitas","company":"Black Knight Labs","blog":"http://www.bk-labs.com","location":"Jersey City, NJ","email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":6,"public_gists":3,"followers":6,"following":28,"created_at":"2009-04-24T23:14:25Z","updated_at":"2026-04-04T00:02:35Z"},"id":"1356991","created_at":"2011-11-11T02:28:33Z","updated_at":"2015-09-28T00:38:01Z"},{"url":"https://api.github.com/gists/2707180","user":{"login":"saidur2k","id":1744353,"node_id":"MDQ6VXNlcjE3NDQzNTM=","avatar_url":"https://avatars.githubusercontent.com/u/1744353?v=4","gravatar_id":"","url":"https://api.github.com/users/saidur2k","html_url":"https://github.com/saidur2k","followers_url":"https://api.github.com/users/saidur2k/followers","following_url":"https://api.github.com/users/saidur2k/following{/other_user}","gists_url":"https://api.github.com/users/saidur2k/gists{/gist_id}","starred_url":"https://api.github.com/users/saidur2k/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/saidur2k/subscriptions","organizations_url":"https://api.github.com/users/saidur2k/orgs","repos_url":"https://api.github.com/users/saidur2k/repos","events_url":"https://api.github.com/users/saidur2k/events{/privacy}","received_events_url":"https://api.github.com/users/saidur2k/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Saidur Rahman","company":null,"blog":"rudias.com","location":"Sydney, Australia","email":"saidur2k@hotmail.com","hireable":true,"bio":null,"twitter_username":null,"public_repos":54,"public_gists":1,"followers":3,"following":3,"created_at":"2012-05-16T03:41:44Z","updated_at":"2026-04-28T11:32:26Z"},"id":"2707180","created_at":"2012-05-16T03:43:05Z","updated_at":"2015-10-04T22:08:03Z"},{"url":"https://api.github.com/gists/3099912","user":{"login":"jacksonhenry3","id":1857496,"node_id":"MDQ6VXNlcjE4NTc0OTY=","avatar_url":"https://avatars.githubusercontent.com/u/1857496?v=4","gravatar_id":"","url":"https://api.github.com/users/jacksonhenry3","html_url":"https://github.com/jacksonhenry3","followers_url":"https://api.github.com/users/jacksonhenry3/followers","following_url":"https://api.github.com/users/jacksonhenry3/following{/other_user}","gists_url":"https://api.github.com/users/jacksonhenry3/gists{/gist_id}","starred_url":"https://api.github.com/users/jacksonhenry3/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jacksonhenry3/subscriptions","organizations_url":"https://api.github.com/users/jacksonhenry3/orgs","repos_url":"https://api.github.com/users/jacksonhenry3/repos","events_url":"https://api.github.com/users/jacksonhenry3/events{/privacy}","received_events_url":"https://api.github.com/users/jacksonhenry3/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Jackson Henry","company":"Worcester Polytechnic Institute","blog":"","location":"United States","email":null,"hireable":null,"bio":"Scientist with WPI's Academic and Research Computing Group","twitter_username":null,"public_repos":82,"public_gists":27,"followers":15,"following":11,"created_at":"2012-06-16T18:46:04Z","updated_at":"2026-04-14T16:19:56Z"},"id":"3099912","created_at":"2012-07-12T18:23:02Z","updated_at":"2015-10-07T03:47:51Z"},{"url":"https://api.github.com/gists/3218690","user":{"login":"jacksonhenry3","id":1857496,"node_id":"MDQ6VXNlcjE4NTc0OTY=","avatar_url":"https://avatars.githubusercontent.com/u/1857496?v=4","gravatar_id":"","url":"https://api.github.com/users/jacksonhenry3","html_url":"https://github.com/jacksonhenry3","followers_url":"https://api.github.com/users/jacksonhenry3/followers","following_url":"https://api.github.com/users/jacksonhenry3/following{/other_user}","gists_url":"https://api.github.com/users/jacksonhenry3/gists{/gist_id}","starred_url":"https://api.github.com/users/jacksonhenry3/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jacksonhenry3/subscriptions","organizations_url":"https://api.github.com/users/jacksonhenry3/orgs","repos_url":"https://api.github.com/users/jacksonhenry3/repos","events_url":"https://api.github.com/users/jacksonhenry3/events{/privacy}","received_events_url":"https://api.github.com/users/jacksonhenry3/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Jackson Henry","company":"Worcester Polytechnic Institute","blog":"","location":"United States","email":null,"hireable":null,"bio":"Scientist with WPI's Academic and Research Computing Group","twitter_username":null,"public_repos":82,"public_gists":27,"followers":15,"following":11,"created_at":"2012-06-16T18:46:04Z","updated_at":"2026-04-14T16:19:56Z"},"id":"3218690","created_at":"2012-07-31T17:21:39Z","updated_at":"2015-10-07T20:08:03Z"},{"url":"https://api.github.com/gists/4186300","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":"4186300","created_at":"2012-12-02T01:08:56Z","updated_at":"2016-05-06T07:21:44Z"},{"url":"https://api.github.com/gists/4982077","user":{"login":"biovisualize","id":824534,"node_id":"MDQ6VXNlcjgyNDUzNA==","avatar_url":"https://avatars.githubusercontent.com/u/824534?v=4","gravatar_id":"","url":"https://api.github.com/users/biovisualize","html_url":"https://github.com/biovisualize","followers_url":"https://api.github.com/users/biovisualize/followers","following_url":"https://api.github.com/users/biovisualize/following{/other_user}","gists_url":"https://api.github.com/users/biovisualize/gists{/gist_id}","starred_url":"https://api.github.com/users/biovisualize/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/biovisualize/subscriptions","organizations_url":"https://api.github.com/users/biovisualize/orgs","repos_url":"https://api.github.com/users/biovisualize/repos","events_url":"https://api.github.com/users/biovisualize/events{/privacy}","received_events_url":"https://api.github.com/users/biovisualize/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Chris Viau","company":null,"blog":"http://christopheviau.com","location":null,"email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":39,"public_gists":176,"followers":151,"following":0,"created_at":"2011-06-02T03:09:20Z","updated_at":"2025-12-21T17:19:20Z"},"id":"4982077","created_at":"2013-02-19T00:42:48Z","updated_at":"2015-12-13T22:08:49Z"}],"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":"3ed9500901019dfb8069db067641a804f0ff28f4","committed_at":"2011-04-08T15:46:08Z","change_status":{"total":3,"additions":2,"deletions":1},"url":"https://api.github.com/gists/910126/3ed9500901019dfb8069db067641a804f0ff28f4"},{"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":"45a49d6881da486c64315279948d8cbabfc6764a","committed_at":"2011-04-08T15:45:18Z","change_status":{"total":8,"additions":7,"deletions":1},"url":"https://api.github.com/gists/910126/45a49d6881da486c64315279948d8cbabfc6764a"},{"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":"11027a77e1b2105fda6fade0e6b62bfc8288cfe1","committed_at":"2011-04-08T15:44:11Z","change_status":{"total":2,"additions":1,"deletions":1},"url":"https://api.github.com/gists/910126/11027a77e1b2105fda6fade0e6b62bfc8288cfe1"},{"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":"27ac67b8735a589de5c567bfc5bde52faa46876d","committed_at":"2011-04-08T15:43:25Z","change_status":{"total":25,"additions":11,"deletions":14},"url":"https://api.github.com/gists/910126/27ac67b8735a589de5c567bfc5bde52faa46876d"},{"user":{"login":"devangmundhra","id":490236,"node_id":"MDQ6VXNlcjQ5MDIzNg==","avatar_url":"https://avatars.githubusercontent.com/u/490236?v=4","gravatar_id":"","url":"https://api.github.com/users/devangmundhra","html_url":"https://github.com/devangmundhra","followers_url":"https://api.github.com/users/devangmundhra/followers","following_url":"https://api.github.com/users/devangmundhra/following{/other_user}","gists_url":"https://api.github.com/users/devangmundhra/gists{/gist_id}","starred_url":"https://api.github.com/users/devangmundhra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/devangmundhra/subscriptions","organizations_url":"https://api.github.com/users/devangmundhra/orgs","repos_url":"https://api.github.com/users/devangmundhra/repos","events_url":"https://api.github.com/users/devangmundhra/events{/privacy}","received_events_url":"https://api.github.com/users/devangmundhra/received_events","type":"User","user_view_type":"public","site_admin":false},"version":"130dae07c6429bb10d52883c772a3c64f2a3656e","committed_at":"2011-04-08T06:36:25Z","change_status":{"total":290,"additions":288,"deletions":2},"url":"https://api.github.com/gists/910126/130dae07c6429bb10d52883c772a3c64f2a3656e"},{"user":{"login":"devangmundhra","id":490236,"node_id":"MDQ6VXNlcjQ5MDIzNg==","avatar_url":"https://avatars.githubusercontent.com/u/490236?v=4","gravatar_id":"","url":"https://api.github.com/users/devangmundhra","html_url":"https://github.com/devangmundhra","followers_url":"https://api.github.com/users/devangmundhra/followers","following_url":"https://api.github.com/users/devangmundhra/following{/other_user}","gists_url":"https://api.github.com/users/devangmundhra/gists{/gist_id}","starred_url":"https://api.github.com/users/devangmundhra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/devangmundhra/subscriptions","organizations_url":"https://api.github.com/users/devangmundhra/orgs","repos_url":"https://api.github.com/users/devangmundhra/repos","events_url":"https://api.github.com/users/devangmundhra/events{/privacy}","received_events_url":"https://api.github.com/users/devangmundhra/received_events","type":"User","user_view_type":"public","site_admin":false},"version":"9f171259404d01b4a34d262549e08ef0e3401090","committed_at":"2011-04-08T06:00:04Z","change_status":{"total":2,"additions":1,"deletions":1},"url":"https://api.github.com/gists/910126/9f171259404d01b4a34d262549e08ef0e3401090"},{"user":{"login":"invalid-email-address","id":148100,"node_id":"MDQ6VXNlcjE0ODEwMA==","avatar_url":"https://avatars.githubusercontent.com/u/148100?v=4","gravatar_id":"","url":"https://api.github.com/users/invalid-email-address","html_url":"https://github.com/invalid-email-address","followers_url":"https://api.github.com/users/invalid-email-address/followers","following_url":"https://api.github.com/users/invalid-email-address/following{/other_user}","gists_url":"https://api.github.com/users/invalid-email-address/gists{/gist_id}","starred_url":"https://api.github.com/users/invalid-email-address/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/invalid-email-address/subscriptions","organizations_url":"https://api.github.com/users/invalid-email-address/orgs","repos_url":"https://api.github.com/users/invalid-email-address/repos","events_url":"https://api.github.com/users/invalid-email-address/events{/privacy}","received_events_url":"https://api.github.com/users/invalid-email-address/received_events","type":"User","user_view_type":"public","site_admin":false},"version":"31826ab11c08284926abe335e8f003de402a4e19","committed_at":"2011-04-08T05:57:50Z","change_status":{"total":2,"additions":1,"deletions":1},"url":"https://api.github.com/gists/910126/31826ab11c08284926abe335e8f003de402a4e19"},{"user":{"login":"invalid-email-address","id":148100,"node_id":"MDQ6VXNlcjE0ODEwMA==","avatar_url":"https://avatars.githubusercontent.com/u/148100?v=4","gravatar_id":"","url":"https://api.github.com/users/invalid-email-address","html_url":"https://github.com/invalid-email-address","followers_url":"https://api.github.com/users/invalid-email-address/followers","following_url":"https://api.github.com/users/invalid-email-address/following{/other_user}","gists_url":"https://api.github.com/users/invalid-email-address/gists{/gist_id}","starred_url":"https://api.github.com/users/invalid-email-address/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/invalid-email-address/subscriptions","organizations_url":"https://api.github.com/users/invalid-email-address/orgs","repos_url":"https://api.github.com/users/invalid-email-address/repos","events_url":"https://api.github.com/users/invalid-email-address/events{/privacy}","received_events_url":"https://api.github.com/users/invalid-email-address/received_events","type":"User","user_view_type":"public","site_admin":false},"version":"df83896ea2e90ccea94eab16853d9377f099f18d","committed_at":"2011-04-08T05:57:10Z","change_status":{"total":0,"additions":0,"deletions":0},"url":"https://api.github.com/gists/910126/df83896ea2e90ccea94eab16853d9377f099f18d"},{"user":{"login":"invalid-email-address","id":148100,"node_id":"MDQ6VXNlcjE0ODEwMA==","avatar_url":"https://avatars.githubusercontent.com/u/148100?v=4","gravatar_id":"","url":"https://api.github.com/users/invalid-email-address","html_url":"https://github.com/invalid-email-address","followers_url":"https://api.github.com/users/invalid-email-address/followers","following_url":"https://api.github.com/users/invalid-email-address/following{/other_user}","gists_url":"https://api.github.com/users/invalid-email-address/gists{/gist_id}","starred_url":"https://api.github.com/users/invalid-email-address/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/invalid-email-address/subscriptions","organizations_url":"https://api.github.com/users/invalid-email-address/orgs","repos_url":"https://api.github.com/users/invalid-email-address/repos","events_url":"https://api.github.com/users/invalid-email-address/events{/privacy}","received_events_url":"https://api.github.com/users/invalid-email-address/received_events","type":"User","user_view_type":"public","site_admin":false},"version":"fbf2fdae9406d9485709a80f61c743496c235758","committed_at":"2011-04-08T05:55:29Z","change_status":{"total":61,"additions":61,"deletions":0},"url":"https://api.github.com/gists/910126/fbf2fdae9406d9485709a80f61c743496c235758"}],"truncated":false}