{"url":"https://api.github.com/gists/1062288","forks_url":"https://api.github.com/gists/1062288/forks","commits_url":"https://api.github.com/gists/1062288/commits","id":"1062288","node_id":"MDQ6R2lzdDEwNjIyODg=","git_pull_url":"https://gist.github.com/1062288.git","git_push_url":"https://gist.github.com/1062288.git","html_url":"https://gist.github.com/mbostock/1062288","files":{".block":{"filename":".block","type":"text/plain","language":null,"raw_url":"https://gist.githubusercontent.com/mbostock/1062288/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/1062288/raw/9206fcf80bb496dcf6a65fb6cf2406b77d8da197/README.md","size":82,"truncated":false,"content":"Click to expand or collapse nodes in the tree. Built with [D3](http://d3js.org/).\n","encoding":"utf-8"},"index.html":{"filename":"index.html","type":"text/html","language":"HTML","raw_url":"https://gist.githubusercontent.com/mbostock/1062288/raw/628a95b11656851470a7325ec4bbd90701eeec59/index.html","size":2863,"truncated":false,"content":"<!DOCTYPE html>\n<meta charset=\"utf-8\">\n<title>Force-Directed Graph</title>\n<style>\n\n.node {\n  cursor: pointer;\n  stroke: #3182bd;\n  stroke-width: 1.5px;\n}\n\n.link {\n  fill: none;\n  stroke: #9ecae1;\n  stroke-width: 1.5px;\n}\n\n</style>\n<body>\n<script src=\"//d3js.org/d3.v3.min.js\"></script>\n<script>\n\nvar width = 960,\n    height = 500,\n    root;\n\nvar force = d3.layout.force()\n    .size([width, height])\n    .on(\"tick\", tick);\n\nvar svg = d3.select(\"body\").append(\"svg\")\n    .attr(\"width\", width)\n    .attr(\"height\", height);\n\nvar link = svg.selectAll(\".link\"),\n    node = svg.selectAll(\".node\");\n\nd3.json(\"readme.json\", function(error, json) {\n  if (error) throw error;\n\n  root = json;\n  update();\n});\n\nfunction update() {\n  var nodes = flatten(root),\n      links = d3.layout.tree().links(nodes);\n\n  // Restart the force layout.\n  force\n      .nodes(nodes)\n      .links(links)\n      .start();\n\n  // Update the links…\n  link = link.data(links, function(d) { return d.target.id; });\n\n  // Exit any old links.\n  link.exit().remove();\n\n  // Enter any new links.\n  link.enter().insert(\"line\", \".node\")\n      .attr(\"class\", \"link\")\n      .attr(\"x1\", function(d) { return d.source.x; })\n      .attr(\"y1\", function(d) { return d.source.y; })\n      .attr(\"x2\", function(d) { return d.target.x; })\n      .attr(\"y2\", function(d) { return d.target.y; });\n\n  // Update the nodes…\n  node = node.data(nodes, function(d) { return d.id; }).style(\"fill\", color);\n\n  // Exit any old nodes.\n  node.exit().remove();\n\n  // Enter any new nodes.\n  node.enter().append(\"circle\")\n      .attr(\"class\", \"node\")\n      .attr(\"cx\", function(d) { return d.x; })\n      .attr(\"cy\", function(d) { return d.y; })\n      .attr(\"r\", function(d) { return Math.sqrt(d.size) / 10 || 4.5; })\n      .style(\"fill\", color)\n      .on(\"click\", click)\n      .call(force.drag);\n}\n\nfunction tick() {\n  link.attr(\"x1\", function(d) { return d.source.x; })\n      .attr(\"y1\", function(d) { return d.source.y; })\n      .attr(\"x2\", function(d) { return d.target.x; })\n      .attr(\"y2\", function(d) { return d.target.y; });\n\n  node.attr(\"cx\", function(d) { return d.x; })\n      .attr(\"cy\", function(d) { return d.y; });\n}\n\n// Color leaf nodes orange, and packages white or blue.\nfunction color(d) {\n  return d._children ? \"#3182bd\" : d.children ? \"#c6dbef\" : \"#fd8d3c\";\n}\n\n// Toggle children on click.\nfunction click(d) {\n  if (!d3.event.defaultPrevented) {\n    if (d.children) {\n      d._children = d.children;\n      d.children = null;\n    } else {\n      d.children = d._children;\n      d._children = null;\n    }\n    update();\n  }\n}\n\n// Returns a list of all nodes under the root.\nfunction flatten(root) {\n  var nodes = [], i = 0;\n\n  function recurse(node) {\n    if (node.children) node.children.forEach(recurse);\n    if (!node.id) node.id = ++i;\n    nodes.push(node);\n  }\n\n  recurse(root);\n  return nodes;\n}\n\n</script>\n","encoding":"utf-8"},"readme.json":{"filename":"readme.json","type":"application/json","language":"JSON","raw_url":"https://gist.githubusercontent.com/mbostock/1062288/raw/a05a94858375bd0ae023f6950a2b13fac5127637/readme.json","size":11413,"truncated":false,"content":"{\n \"name\": \"flare\",\n \"children\": [\n  {\n   \"name\": \"analytics\",\n   \"children\": [\n    {\n     \"name\": \"cluster\",\n     \"children\": [\n      {\"name\": \"AgglomerativeCluster\", \"size\": 3938},\n      {\"name\": \"CommunityStructure\", \"size\": 3812},\n      {\"name\": \"HierarchicalCluster\", \"size\": 6714},\n      {\"name\": \"MergeEdge\", \"size\": 743}\n     ]\n    },\n    {\n     \"name\": \"graph\",\n     \"children\": [\n      {\"name\": \"BetweennessCentrality\", \"size\": 3534},\n      {\"name\": \"LinkDistance\", \"size\": 5731},\n      {\"name\": \"MaxFlowMinCut\", \"size\": 7840},\n      {\"name\": \"ShortestPaths\", \"size\": 5914},\n      {\"name\": \"SpanningTree\", \"size\": 3416}\n     ]\n    },\n    {\n     \"name\": \"optimization\",\n     \"children\": [\n      {\"name\": \"AspectRatioBanker\", \"size\": 7074}\n     ]\n    }\n   ]\n  },\n  {\n   \"name\": \"animate\",\n   \"children\": [\n    {\"name\": \"Easing\", \"size\": 17010},\n    {\"name\": \"FunctionSequence\", \"size\": 5842},\n    {\n     \"name\": \"interpolate\",\n     \"children\": [\n      {\"name\": \"ArrayInterpolator\", \"size\": 1983},\n      {\"name\": \"ColorInterpolator\", \"size\": 2047},\n      {\"name\": \"DateInterpolator\", \"size\": 1375},\n      {\"name\": \"Interpolator\", \"size\": 8746},\n      {\"name\": \"MatrixInterpolator\", \"size\": 2202},\n      {\"name\": \"NumberInterpolator\", \"size\": 1382},\n      {\"name\": \"ObjectInterpolator\", \"size\": 1629},\n      {\"name\": \"PointInterpolator\", \"size\": 1675},\n      {\"name\": \"RectangleInterpolator\", \"size\": 2042}\n     ]\n    },\n    {\"name\": \"ISchedulable\", \"size\": 1041},\n    {\"name\": \"Parallel\", \"size\": 5176},\n    {\"name\": \"Pause\", \"size\": 449},\n    {\"name\": \"Scheduler\", \"size\": 5593},\n    {\"name\": \"Sequence\", \"size\": 5534},\n    {\"name\": \"Transition\", \"size\": 9201},\n    {\"name\": \"Transitioner\", \"size\": 19975},\n    {\"name\": \"TransitionEvent\", \"size\": 1116},\n    {\"name\": \"Tween\", \"size\": 6006}\n   ]\n  },\n  {\n   \"name\": \"data\",\n   \"children\": [\n    {\n     \"name\": \"converters\",\n     \"children\": [\n      {\"name\": \"Converters\", \"size\": 721},\n      {\"name\": \"DelimitedTextConverter\", \"size\": 4294},\n      {\"name\": \"GraphMLConverter\", \"size\": 9800},\n      {\"name\": \"IDataConverter\", \"size\": 1314},\n      {\"name\": \"JSONConverter\", \"size\": 2220}\n     ]\n    },\n    {\"name\": \"DataField\", \"size\": 1759},\n    {\"name\": \"DataSchema\", \"size\": 2165},\n    {\"name\": \"DataSet\", \"size\": 586},\n    {\"name\": \"DataSource\", \"size\": 3331},\n    {\"name\": \"DataTable\", \"size\": 772},\n    {\"name\": \"DataUtil\", \"size\": 3322}\n   ]\n  },\n  {\n   \"name\": \"display\",\n   \"children\": [\n    {\"name\": \"DirtySprite\", \"size\": 8833},\n    {\"name\": \"LineSprite\", \"size\": 1732},\n    {\"name\": \"RectSprite\", \"size\": 3623},\n    {\"name\": \"TextSprite\", \"size\": 10066}\n   ]\n  },\n  {\n   \"name\": \"flex\",\n   \"children\": [\n    {\"name\": \"FlareVis\", \"size\": 4116}\n   ]\n  },\n  {\n   \"name\": \"physics\",\n   \"children\": [\n    {\"name\": \"DragForce\", \"size\": 1082},\n    {\"name\": \"GravityForce\", \"size\": 1336},\n    {\"name\": \"IForce\", \"size\": 319},\n    {\"name\": \"NBodyForce\", \"size\": 10498},\n    {\"name\": \"Particle\", \"size\": 2822},\n    {\"name\": \"Simulation\", \"size\": 9983},\n    {\"name\": \"Spring\", \"size\": 2213},\n    {\"name\": \"SpringForce\", \"size\": 1681}\n   ]\n  },\n  {\n   \"name\": \"query\",\n   \"children\": [\n    {\"name\": \"AggregateExpression\", \"size\": 1616},\n    {\"name\": \"And\", \"size\": 1027},\n    {\"name\": \"Arithmetic\", \"size\": 3891},\n    {\"name\": \"Average\", \"size\": 891},\n    {\"name\": \"BinaryExpression\", \"size\": 2893},\n    {\"name\": \"Comparison\", \"size\": 5103},\n    {\"name\": \"CompositeExpression\", \"size\": 3677},\n    {\"name\": \"Count\", \"size\": 781},\n    {\"name\": \"DateUtil\", \"size\": 4141},\n    {\"name\": \"Distinct\", \"size\": 933},\n    {\"name\": \"Expression\", \"size\": 5130},\n    {\"name\": \"ExpressionIterator\", \"size\": 3617},\n    {\"name\": \"Fn\", \"size\": 3240},\n    {\"name\": \"If\", \"size\": 2732},\n    {\"name\": \"IsA\", \"size\": 2039},\n    {\"name\": \"Literal\", \"size\": 1214},\n    {\"name\": \"Match\", \"size\": 3748},\n    {\"name\": \"Maximum\", \"size\": 843},\n    {\n     \"name\": \"methods\",\n     \"children\": [\n      {\"name\": \"add\", \"size\": 593},\n      {\"name\": \"and\", \"size\": 330},\n      {\"name\": \"average\", \"size\": 287},\n      {\"name\": \"count\", \"size\": 277},\n      {\"name\": \"distinct\", \"size\": 292},\n      {\"name\": \"div\", \"size\": 595},\n      {\"name\": \"eq\", \"size\": 594},\n      {\"name\": \"fn\", \"size\": 460},\n      {\"name\": \"gt\", \"size\": 603},\n      {\"name\": \"gte\", \"size\": 625},\n      {\"name\": \"iff\", \"size\": 748},\n      {\"name\": \"isa\", \"size\": 461},\n      {\"name\": \"lt\", \"size\": 597},\n      {\"name\": \"lte\", \"size\": 619},\n      {\"name\": \"max\", \"size\": 283},\n      {\"name\": \"min\", \"size\": 283},\n      {\"name\": \"mod\", \"size\": 591},\n      {\"name\": \"mul\", \"size\": 603},\n      {\"name\": \"neq\", \"size\": 599},\n      {\"name\": \"not\", \"size\": 386},\n      {\"name\": \"or\", \"size\": 323},\n      {\"name\": \"orderby\", \"size\": 307},\n      {\"name\": \"range\", \"size\": 772},\n      {\"name\": \"select\", \"size\": 296},\n      {\"name\": \"stddev\", \"size\": 363},\n      {\"name\": \"sub\", \"size\": 600},\n      {\"name\": \"sum\", \"size\": 280},\n      {\"name\": \"update\", \"size\": 307},\n      {\"name\": \"variance\", \"size\": 335},\n      {\"name\": \"where\", \"size\": 299},\n      {\"name\": \"xor\", \"size\": 354},\n      {\"name\": \"_\", \"size\": 264}\n     ]\n    },\n    {\"name\": \"Minimum\", \"size\": 843},\n    {\"name\": \"Not\", \"size\": 1554},\n    {\"name\": \"Or\", \"size\": 970},\n    {\"name\": \"Query\", \"size\": 13896},\n    {\"name\": \"Range\", \"size\": 1594},\n    {\"name\": \"StringUtil\", \"size\": 4130},\n    {\"name\": \"Sum\", \"size\": 791},\n    {\"name\": \"Variable\", \"size\": 1124},\n    {\"name\": \"Variance\", \"size\": 1876},\n    {\"name\": \"Xor\", \"size\": 1101}\n   ]\n  },\n  {\n   \"name\": \"scale\",\n   \"children\": [\n    {\"name\": \"IScaleMap\", \"size\": 2105},\n    {\"name\": \"LinearScale\", \"size\": 1316},\n    {\"name\": \"LogScale\", \"size\": 3151},\n    {\"name\": \"OrdinalScale\", \"size\": 3770},\n    {\"name\": \"QuantileScale\", \"size\": 2435},\n    {\"name\": \"QuantitativeScale\", \"size\": 4839},\n    {\"name\": \"RootScale\", \"size\": 1756},\n    {\"name\": \"Scale\", \"size\": 4268},\n    {\"name\": \"ScaleType\", \"size\": 1821},\n    {\"name\": \"TimeScale\", \"size\": 5833}\n   ]\n  },\n  {\n   \"name\": \"util\",\n   \"children\": [\n    {\"name\": \"Arrays\", \"size\": 8258},\n    {\"name\": \"Colors\", \"size\": 10001},\n    {\"name\": \"Dates\", \"size\": 8217},\n    {\"name\": \"Displays\", \"size\": 12555},\n    {\"name\": \"Filter\", \"size\": 2324},\n    {\"name\": \"Geometry\", \"size\": 10993},\n    {\n     \"name\": \"heap\",\n     \"children\": [\n      {\"name\": \"FibonacciHeap\", \"size\": 9354},\n      {\"name\": \"HeapNode\", \"size\": 1233}\n     ]\n    },\n    {\"name\": \"IEvaluable\", \"size\": 335},\n    {\"name\": \"IPredicate\", \"size\": 383},\n    {\"name\": \"IValueProxy\", \"size\": 874},\n    {\n     \"name\": \"math\",\n     \"children\": [\n      {\"name\": \"DenseMatrix\", \"size\": 3165},\n      {\"name\": \"IMatrix\", \"size\": 2815},\n      {\"name\": \"SparseMatrix\", \"size\": 3366}\n     ]\n    },\n    {\"name\": \"Maths\", \"size\": 17705},\n    {\"name\": \"Orientation\", \"size\": 1486},\n    {\n     \"name\": \"palette\",\n     \"children\": [\n      {\"name\": \"ColorPalette\", \"size\": 6367},\n      {\"name\": \"Palette\", \"size\": 1229},\n      {\"name\": \"ShapePalette\", \"size\": 2059},\n      {\"name\": \"SizePalette\", \"size\": 2291}\n     ]\n    },\n    {\"name\": \"Property\", \"size\": 5559},\n    {\"name\": \"Shapes\", \"size\": 19118},\n    {\"name\": \"Sort\", \"size\": 6887},\n    {\"name\": \"Stats\", \"size\": 6557},\n    {\"name\": \"Strings\", \"size\": 22026}\n   ]\n  },\n  {\n   \"name\": \"vis\",\n   \"children\": [\n    {\n     \"name\": \"axis\",\n     \"children\": [\n      {\"name\": \"Axes\", \"size\": 1302},\n      {\"name\": \"Axis\", \"size\": 24593},\n      {\"name\": \"AxisGridLine\", \"size\": 652},\n      {\"name\": \"AxisLabel\", \"size\": 636},\n      {\"name\": \"CartesianAxes\", \"size\": 6703}\n     ]\n    },\n    {\n     \"name\": \"controls\",\n     \"children\": [\n      {\"name\": \"AnchorControl\", \"size\": 2138},\n      {\"name\": \"ClickControl\", \"size\": 3824},\n      {\"name\": \"Control\", \"size\": 1353},\n      {\"name\": \"ControlList\", \"size\": 4665},\n      {\"name\": \"DragControl\", \"size\": 2649},\n      {\"name\": \"ExpandControl\", \"size\": 2832},\n      {\"name\": \"HoverControl\", \"size\": 4896},\n      {\"name\": \"IControl\", \"size\": 763},\n      {\"name\": \"PanZoomControl\", \"size\": 5222},\n      {\"name\": \"SelectionControl\", \"size\": 7862},\n      {\"name\": \"TooltipControl\", \"size\": 8435}\n     ]\n    },\n    {\n     \"name\": \"data\",\n     \"children\": [\n      {\"name\": \"Data\", \"size\": 20544},\n      {\"name\": \"DataList\", \"size\": 19788},\n      {\"name\": \"DataSprite\", \"size\": 10349},\n      {\"name\": \"EdgeSprite\", \"size\": 3301},\n      {\"name\": \"NodeSprite\", \"size\": 19382},\n      {\n       \"name\": \"render\",\n       \"children\": [\n        {\"name\": \"ArrowType\", \"size\": 698},\n        {\"name\": \"EdgeRenderer\", \"size\": 5569},\n        {\"name\": \"IRenderer\", \"size\": 353},\n        {\"name\": \"ShapeRenderer\", \"size\": 2247}\n       ]\n      },\n      {\"name\": \"ScaleBinding\", \"size\": 11275},\n      {\"name\": \"Tree\", \"size\": 7147},\n      {\"name\": \"TreeBuilder\", \"size\": 9930}\n     ]\n    },\n    {\n     \"name\": \"events\",\n     \"children\": [\n      {\"name\": \"DataEvent\", \"size\": 2313},\n      {\"name\": \"SelectionEvent\", \"size\": 1880},\n      {\"name\": \"TooltipEvent\", \"size\": 1701},\n      {\"name\": \"VisualizationEvent\", \"size\": 1117}\n     ]\n    },\n    {\n     \"name\": \"legend\",\n     \"children\": [\n      {\"name\": \"Legend\", \"size\": 20859},\n      {\"name\": \"LegendItem\", \"size\": 4614},\n      {\"name\": \"LegendRange\", \"size\": 10530}\n     ]\n    },\n    {\n     \"name\": \"operator\",\n     \"children\": [\n      {\n       \"name\": \"distortion\",\n       \"children\": [\n        {\"name\": \"BifocalDistortion\", \"size\": 4461},\n        {\"name\": \"Distortion\", \"size\": 6314},\n        {\"name\": \"FisheyeDistortion\", \"size\": 3444}\n       ]\n      },\n      {\n       \"name\": \"encoder\",\n       \"children\": [\n        {\"name\": \"ColorEncoder\", \"size\": 3179},\n        {\"name\": \"Encoder\", \"size\": 4060},\n        {\"name\": \"PropertyEncoder\", \"size\": 4138},\n        {\"name\": \"ShapeEncoder\", \"size\": 1690},\n        {\"name\": \"SizeEncoder\", \"size\": 1830}\n       ]\n      },\n      {\n       \"name\": \"filter\",\n       \"children\": [\n        {\"name\": \"FisheyeTreeFilter\", \"size\": 5219},\n        {\"name\": \"GraphDistanceFilter\", \"size\": 3165},\n        {\"name\": \"VisibilityFilter\", \"size\": 3509}\n       ]\n      },\n      {\"name\": \"IOperator\", \"size\": 1286},\n      {\n       \"name\": \"label\",\n       \"children\": [\n        {\"name\": \"Labeler\", \"size\": 9956},\n        {\"name\": \"RadialLabeler\", \"size\": 3899},\n        {\"name\": \"StackedAreaLabeler\", \"size\": 3202}\n       ]\n      },\n      {\n       \"name\": \"layout\",\n       \"children\": [\n        {\"name\": \"AxisLayout\", \"size\": 6725},\n        {\"name\": \"BundledEdgeRouter\", \"size\": 3727},\n        {\"name\": \"CircleLayout\", \"size\": 9317},\n        {\"name\": \"CirclePackingLayout\", \"size\": 12003},\n        {\"name\": \"DendrogramLayout\", \"size\": 4853},\n        {\"name\": \"ForceDirectedLayout\", \"size\": 8411},\n        {\"name\": \"IcicleTreeLayout\", \"size\": 4864},\n        {\"name\": \"IndentedTreeLayout\", \"size\": 3174},\n        {\"name\": \"Layout\", \"size\": 7881},\n        {\"name\": \"NodeLinkTreeLayout\", \"size\": 12870},\n        {\"name\": \"PieLayout\", \"size\": 2728},\n        {\"name\": \"RadialTreeLayout\", \"size\": 12348},\n        {\"name\": \"RandomLayout\", \"size\": 870},\n        {\"name\": \"StackedAreaLayout\", \"size\": 9121},\n        {\"name\": \"TreeMapLayout\", \"size\": 9191}\n       ]\n      },\n      {\"name\": \"Operator\", \"size\": 2490},\n      {\"name\": \"OperatorList\", \"size\": 5248},\n      {\"name\": \"OperatorSequence\", \"size\": 4190},\n      {\"name\": \"OperatorSwitch\", \"size\": 2581},\n      {\"name\": \"SortOperator\", \"size\": 2023}\n     ]\n    },\n    {\"name\": \"Visualization\", \"size\": 16540}\n   ]\n  }\n ]\n}","encoding":"utf-8"},"thumbnail.png":{"filename":"thumbnail.png","type":"image/png","language":null,"raw_url":"https://gist.githubusercontent.com/mbostock/1062288/raw/dae954d20718dabfbcc62bcc309bc8971f680afe/thumbnail.png","size":16739,"truncated":false,"content":"iVBORw0KGgoAAAANSUhEUgAAAOYAAAB4CAIAAABpZBnfAAAKn2lDQ1BpY20A\nAEjHlZYHUFPpFse/e9MbLRABKaH3Ll16DaAgVRCVkIQQSgiBICI2RFyBFUVE\nBGyIIKLgWmhrQUSxsAhYsKALsigo62IBCyrvAo/w3rzZebNn5uT75cyZ//3O\nd+838weA3MQUCBJgKQAS+anCQC9X+srwCDquH5AABRCBOjBkslIELgEBfuBv\nY/IhgGbWe0YzWuCfhTSbk8ICAApAOJqdwkpE+DySh1gCYSoAqGCkrrkuVTDD\n6QjLCpENIpw/w9w5PjLD0XN8frYnONAN4ZsA4MlMppALAOk+UqensbiIDukj\nwqZ8No8PAFkTYUdWLJONMJLAMDExaYZ3I6wb/R863P/SjBZrMplcMc/NMht4\nd16KIIG5/h8ex/+PxATR/DNUkCSnxAf5Iqs2cmbpLKZH0DzHchh+8yxIdQ2c\nZ14qI1jcI/IOmWdRfIjLPMcn+Yr7+dHL/cX6KW4R85wRGxw2z2yOu8c8C5MC\nxf0paUEeC/1uy+c5jukTMM9M4ewss8xJ8Apc2HOAeJ/8hOXiWWKEnuIeTsrC\nvKmxwd5iRj4AcT/PkyGeV+i9oJ8QINYUigLF58Dhh4g12Ux38dmCYBALRIAP\n2IADhCAaJIEEkArowB3wQAoQIP+YAHndqZz01JmB3JIE64U8bmwq3QW5FRxD\nOoPPMjakm5uamYOZOzb3Cj/QZu8ORLu9UEtuBcA2FylyF2pMDQCaXwJAnVyo\nabyf+04vdbNEwrS5GnrmB4PcXEkgCxSQL0QD6AIjYA6sgD1wBh7AB/gjk4SD\nNYCFzJOITLIOZIKtIAfkgd1gHygFh8ExcAKcBmdBI7gIroIb4A7oBg/AUzAA\nhsEbMA4mwRQEQTiIAlEhBUgV0oIMIHPIBnKEPCA/KBAKh6IgLsSHRFAmtA3K\ngwqhUugoVAP9AjVDV6FbUA/0GBqERqH30FcYBZNhWVgZ1oZNYBvYBfaFg+HV\nMBdOhjPgbHgXXAJXwKfgBvgqfAd+AA/Ab+AJFECRUDSUGsoIZYNyQ/mjIlAx\nKCFqEyoXVYyqQNWhWlAdqHuoAdQY6gsai6ai6WgjtD3aGx2CZqGT0ZvQ+ehS\n9Al0A7odfQ89iB5H/8BQMEoYA4wdhoFZieFi1mFyMMWYKswFzHXMA8wwZhKL\nxdKwOlhrrDc2HBuH3YDNxx7E1mNbsT3YIewEDodTwBngHHD+OCYuFZeDO4A7\nhbuC68UN4z7jSXhVvDneEx+B5+Oz8MX4k/jL+F78K/wUQYqgRbAj+BPYhPWE\nAkIloYVwlzBMmCJKE3WIDsRgYhxxK7GEWEe8TuwnfiCRSOokW9IKEo+0hVRC\nOkO6SRokfSHLkPXJbuRIsoi8i1xNbiU/Jn+gUCjaFGdKBCWVsotSQ7lGeU75\nLEGVMJZgSLAlNkuUSTRI9Eq8lSRIakm6SK6RzJAsljwneVdyTIogpS3lJsWU\n2iRVJtUs1Sc1IU2VNpP2l06Uzpc+KX1LekQGJ6Mt4yHDlsmWOSZzTWaIiqJq\nUN2oLOo2aiX1OnVYFiurI8uQjZPNkz0t2yU7Licjt0QuVC5drkzuktwADUXT\npjFoCbQC2lnaQ9rXRcqLXBZxFu1cVLeod9En+cXyzvIc+Vz5evkH8l8V6Aoe\nCvEKexQaFZ4pohX1FVcorlM8pHhdcWyx7GL7xazFuYvPLn6iBCvpKwUqbVA6\nptSpNKGsouylLFA+oHxNeUyFpuKsEqdSpHJZZVSVquqoylMtUr2i+pouR3eh\nJ9BL6O30cTUlNW81kdpRtS61KXUd9RD1LPV69WcaRA0bjRiNIo02jXFNVc1l\nmpmatZpPtAhaNlqxWvu1OrQ+aetoh2nv0G7UHtGR12HoZOjU6vTrUnSddJN1\nK3Tv62H1bPTi9Q7qdevD+pb6sfpl+ncNYAMrA57BQYMeQ4yhrSHfsMKwz4hs\n5GKUZlRrNGhMM/YzzjJuNH5romkSYbLHpMPkh6mlaYJppelTMxkzH7Mssxaz\n9+b65izzMvP7FhQLT4vNFk0W75YYLOEsObTkkSXVcpnlDss2y+9W1lZCqzqr\nUWtN6yjrcus+G1mbAJt8m5u2GFtX2822F22/2FnZpdqdtfvL3sg+3v6k/chS\nnaWcpZVLhxzUHZgORx0GHOmOUY5HHAec1JyYThVOL5w1nNnOVc6vXPRc4lxO\nubx1NXUVul5w/eRm57bRrdUd5e7lnuve5SHjEeJR6vHcU92T61nrOe5l6bXB\nq9Ub4+3rvce7j6HMYDFqGOM+1j4bfdp9yb5BvqW+L/z0/YR+LcvgZT7L9i7r\nX661nL+80R/4M/z3+j8L0AlIDvh1BXZFwIqyFS8DzQIzAzuCqEFrg04GTQa7\nBhcEPw3RDRGFtIVKhkaG1oR+CnMPKwwbWGmycuPKO+GK4bzwpghcRGhEVcTE\nKo9V+1YNR1pG5kQ+XK2zOn31rTWKaxLWXForuZa59lwUJios6mTUN6Y/s4I5\nEc2ILo8eZ7mx9rPesJ3ZRexRjgOnkPMqxiGmMGaE68Ddyx2NdYotjh3jufFK\nee/ivOMOx32K94+vjp9OCEuoT8QnRiU282X48fz2JJWk9KQegYEgRzCQbJe8\nL3lc6CusSoFSVqc0pcoiZqZTpCvaLhpMc0wrS/u8LnTduXTpdH5653r99TvX\nv8rwzDi+Ab2BtaEtUy1za+bgRpeNRzdBm6I3tW3W2Jy9eXiL15YTW4lb47f+\nlmWaVZj1cVvYtpZs5ewt2UPbvbbX5kjkCHP6dtjvOPwT+ifeT107LXYe2Pkj\nl517O880rzjvWz4r//bPZj+X/Dy9K2ZXV4FVwaHd2N383Q/3OO05UShdmFE4\ntHfZ3oYielFu0cd9a/fdKl5SfHg/cb9o/0CJX0nTAc0Duw98K40tfVDmWlZf\nrlS+s/zTQfbB3kPOh+oOKx/OO/z1CO/Io6NeRxsqtCuKj2GPpR17WRla2XHc\n5nhNlWJVXtX3an71wInAE+011jU1J5VOFtTCtaLa0VORp7pPu59uqjOqO1pP\nq887A86Izrz+JeqXh2d9z7adszlXd17rfPkF6oXcBqhhfcN4Y2zjQFN4U0+z\nT3Nbi33LhV+Nf62+qHax7JLcpYLLxMvZl6evZFyZaBW0jl3lXh1qW9v29NrK\na/fbV7R3Xfe9fvOG541rHS4dV2463Lx4y+5W822b2413rO40dFp2XvjN8rcL\nXVZdDXet7zZ123a39Cztudzr1Hv1nvu9G/cZ9+88WP6g52HIw0d9kX0Dj9iP\nRh4nPH73JO3J1NMt/Zj+3GdSz4qfKz2v+F3v9/oBq4FLg+6DnS+CXjwdYg29\n+SPlj2/D2S8pL4tfqb6qGTEfuTjqOdr9etXr4TeCN1NjOX9K/1n+Vvft+b+c\n/+ocXzk+/E74bvp9/geFD9Ufl3xsmwiYeD6ZODn1KfezwucTX2y+dHwN+/pq\nat033LeS73rfW374/uifTpyeFjCFzFkrgEISjokB4H01AJRwxDt0A0CUmPPA\nswHN+fZZAn/Hcz55NqwAqHYGIGQLAH6IRzmEpBbCZGSdsXPBzgC2sBDnvyMl\n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\nwGTWWdlLYIBVcwpnfrrSxA4AMJf9lCCAGfGav363OD5GKK5qYCQCrF3nShtI\n1xhxRsfl5XkCQhgB3bBp41PE6j33G6/EdJLslWA/B+X3S4fP6/UDJIMAumgU\n1eDxQcjcwF5Uk0hD3HSjmLSZnc1WFqZ7aNJrHZanBFDTua7xge6+gYFlod0n\nCj+F5ciqgScCt/3kpsW1hkEYBo0l0YHnfmkbOy1gOkGsU0SqxiMGMDezFwHU\nDlLwtLGijnTPJx2n3Wvr7vt/KrwpN3LugzJ7rSxMT0645iJACGBVfanaUL7/\nuV8Lo/6FS1cKgY6xiaIMuwQACCNKUZZg3PnI55964/R9TfeP2apDjOuCnreE\nbQdEFWorZidLkx3BnEV9N/6vVTmWTAuTjsheYlZb2Y8OQgjGaDxOBoLJBXk2\njcJYEgqtb+7cmF7vaFg+unt73/DYn8V+E+HdA2rGcq4ZGG44yu9e8sM7b1rs\nYKavT1qvl0hL9iPEdD4vLeP+ZNPhUpFM95Tc/PJjmZOnjrtvnqO1SfHhscp7\n1m3c5GSpQQC/78mhKU5ash8hZibulYY7v/kAAIIQCutoIkbz7Cii0YQGeXbE\n0bQvcGXSkv34oZTOjGqe7lZP31Y3keYSacl+Upju4jHtuX7c7+YTTFqyaa4z\n0rspaa4z0pJNc52Rlmya64y0ZNNcZ/wftF/iLolzSCAAAAAASUVORK5CYII=\n","encoding":"base64"}},"public":true,"created_at":"2011-07-03T14:47:54Z","updated_at":"2025-02-02T03:20:20Z","description":"Collapsible Force Layout","comments":5,"user":null,"comments_enabled":true,"comments_url":"https://api.github.com/gists/1062288/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/2727824","user":{"login":"GerHobbelt","id":402462,"node_id":"MDQ6VXNlcjQwMjQ2Mg==","avatar_url":"https://avatars.githubusercontent.com/u/402462?v=4","gravatar_id":"","url":"https://api.github.com/users/GerHobbelt","html_url":"https://github.com/GerHobbelt","followers_url":"https://api.github.com/users/GerHobbelt/followers","following_url":"https://api.github.com/users/GerHobbelt/following{/other_user}","gists_url":"https://api.github.com/users/GerHobbelt/gists{/gist_id}","starred_url":"https://api.github.com/users/GerHobbelt/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/GerHobbelt/subscriptions","organizations_url":"https://api.github.com/users/GerHobbelt/orgs","repos_url":"https://api.github.com/users/GerHobbelt/repos","events_url":"https://api.github.com/users/GerHobbelt/events{/privacy}","received_events_url":"https://api.github.com/users/GerHobbelt/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Ger Hobbelt","company":null,"blog":"http://hebbut.net/","location":"Almelo (NL)","email":"ger@hobbelt.com","hireable":true,"bio":null,"twitter_username":null,"public_repos":3810,"public_gists":82,"followers":223,"following":3,"created_at":"2010-09-16T13:25:37Z","updated_at":"2026-05-07T11:22:29Z"},"id":"2727824","created_at":"2012-05-18T22:04:04Z","updated_at":"2015-10-05T00:58:00Z"},{"url":"https://api.github.com/gists/3390371","user":{"login":"terrysmith2000","id":1406518,"node_id":"MDQ6VXNlcjE0MDY1MTg=","avatar_url":"https://avatars.githubusercontent.com/u/1406518?v=4","gravatar_id":"","url":"https://api.github.com/users/terrysmith2000","html_url":"https://github.com/terrysmith2000","followers_url":"https://api.github.com/users/terrysmith2000/followers","following_url":"https://api.github.com/users/terrysmith2000/following{/other_user}","gists_url":"https://api.github.com/users/terrysmith2000/gists{/gist_id}","starred_url":"https://api.github.com/users/terrysmith2000/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/terrysmith2000/subscriptions","organizations_url":"https://api.github.com/users/terrysmith2000/orgs","repos_url":"https://api.github.com/users/terrysmith2000/repos","events_url":"https://api.github.com/users/terrysmith2000/events{/privacy}","received_events_url":"https://api.github.com/users/terrysmith2000/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":4,"public_gists":17,"followers":0,"following":0,"created_at":"2012-02-03T20:08:32Z","updated_at":"2018-01-25T13:56:44Z"},"id":"3390371","created_at":"2012-08-18T23:39:39Z","updated_at":"2015-10-08T21:18:19Z"},{"url":"https://api.github.com/gists/5294443","user":{"login":"enjoylife","id":877194,"node_id":"MDQ6VXNlcjg3NzE5NA==","avatar_url":"https://avatars.githubusercontent.com/u/877194?v=4","gravatar_id":"","url":"https://api.github.com/users/enjoylife","html_url":"https://github.com/enjoylife","followers_url":"https://api.github.com/users/enjoylife/followers","following_url":"https://api.github.com/users/enjoylife/following{/other_user}","gists_url":"https://api.github.com/users/enjoylife/gists{/gist_id}","starred_url":"https://api.github.com/users/enjoylife/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/enjoylife/subscriptions","organizations_url":"https://api.github.com/users/enjoylife/orgs","repos_url":"https://api.github.com/users/enjoylife/repos","events_url":"https://api.github.com/users/enjoylife/events{/privacy}","received_events_url":"https://api.github.com/users/enjoylife/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Matthew Clemens","company":"Uber","blog":"mdc.life","location":"Berkeley, CA","email":"matt.d.clemens@gmail.com","hireable":null,"bio":"Try, fail, learn, improve.","twitter_username":null,"public_repos":142,"public_gists":238,"followers":27,"following":17,"created_at":"2011-06-26T19:09:45Z","updated_at":"2026-04-07T20:42:13Z"},"id":"5294443","created_at":"2013-04-02T17:46:19Z","updated_at":"2015-12-15T17:09:40Z"},{"url":"https://api.github.com/gists/6171908","user":{"login":"sebbacon","id":211271,"node_id":"MDQ6VXNlcjIxMTI3MQ==","avatar_url":"https://avatars.githubusercontent.com/u/211271?v=4","gravatar_id":"","url":"https://api.github.com/users/sebbacon","html_url":"https://github.com/sebbacon","followers_url":"https://api.github.com/users/sebbacon/followers","following_url":"https://api.github.com/users/sebbacon/following{/other_user}","gists_url":"https://api.github.com/users/sebbacon/gists{/gist_id}","starred_url":"https://api.github.com/users/sebbacon/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/sebbacon/subscriptions","organizations_url":"https://api.github.com/users/sebbacon/orgs","repos_url":"https://api.github.com/users/sebbacon/repos","events_url":"https://api.github.com/users/sebbacon/events{/privacy}","received_events_url":"https://api.github.com/users/sebbacon/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Seb Bacon","company":"University of Oxford","blog":"https://sebbacon.github.io/","location":"Stroud, Gloucestershire, UK","email":"seb.bacon@gmail.com","hireable":null,"bio":null,"twitter_username":null,"public_repos":128,"public_gists":132,"followers":58,"following":15,"created_at":"2010-02-26T08:50:44Z","updated_at":"2026-05-11T12:42:39Z"},"id":"6171908","created_at":"2013-08-07T07:19:47Z","updated_at":"2015-12-20T17:58:51Z"},{"url":"https://api.github.com/gists/6338183","user":{"login":"SpaceActuary","id":3255263,"node_id":"MDQ6VXNlcjMyNTUyNjM=","avatar_url":"https://avatars.githubusercontent.com/u/3255263?v=4","gravatar_id":"","url":"https://api.github.com/users/SpaceActuary","html_url":"https://github.com/SpaceActuary","followers_url":"https://api.github.com/users/SpaceActuary/followers","following_url":"https://api.github.com/users/SpaceActuary/following{/other_user}","gists_url":"https://api.github.com/users/SpaceActuary/gists{/gist_id}","starred_url":"https://api.github.com/users/SpaceActuary/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/SpaceActuary/subscriptions","organizations_url":"https://api.github.com/users/SpaceActuary/orgs","repos_url":"https://api.github.com/users/SpaceActuary/repos","events_url":"https://api.github.com/users/SpaceActuary/events{/privacy}","received_events_url":"https://api.github.com/users/SpaceActuary/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":15,"public_gists":76,"followers":7,"following":4,"created_at":"2013-01-13T02:14:12Z","updated_at":"2026-05-12T22:44:27Z"},"id":"6338183","created_at":"2013-08-26T04:48:49Z","updated_at":"2015-12-21T17:08:56Z"},{"url":"https://api.github.com/gists/7274265","user":{"login":"momeara","id":129072,"node_id":"MDQ6VXNlcjEyOTA3Mg==","avatar_url":"https://avatars.githubusercontent.com/u/129072?v=4","gravatar_id":"","url":"https://api.github.com/users/momeara","html_url":"https://github.com/momeara","followers_url":"https://api.github.com/users/momeara/followers","following_url":"https://api.github.com/users/momeara/following{/other_user}","gists_url":"https://api.github.com/users/momeara/gists{/gist_id}","starred_url":"https://api.github.com/users/momeara/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/momeara/subscriptions","organizations_url":"https://api.github.com/users/momeara/orgs","repos_url":"https://api.github.com/users/momeara/repos","events_url":"https://api.github.com/users/momeara/events{/privacy}","received_events_url":"https://api.github.com/users/momeara/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Matthew O'Meara","company":"University of Michigan","blog":"maomlab.github.io","location":"Ann Arbor, MI","email":null,"hireable":null,"bio":"I work in computational pharmacology at the University of Michigan and I'm interest are statistical analysis of high-content screens and virtual screening","twitter_username":"momeara","public_repos":23,"public_gists":7,"followers":46,"following":3,"created_at":"2009-09-19T23:42:42Z","updated_at":"2026-04-08T12:11:19Z"},"id":"7274265","created_at":"2013-11-02T01:02:24Z","updated_at":"2015-12-27T05:29:05Z"},{"url":"https://api.github.com/gists/8469729","user":{"login":"carefree123","id":6407175,"node_id":"MDQ6VXNlcjY0MDcxNzU=","avatar_url":"https://avatars.githubusercontent.com/u/6407175?v=4","gravatar_id":"","url":"https://api.github.com/users/carefree123","html_url":"https://github.com/carefree123","followers_url":"https://api.github.com/users/carefree123/followers","following_url":"https://api.github.com/users/carefree123/following{/other_user}","gists_url":"https://api.github.com/users/carefree123/gists{/gist_id}","starred_url":"https://api.github.com/users/carefree123/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/carefree123/subscriptions","organizations_url":"https://api.github.com/users/carefree123/orgs","repos_url":"https://api.github.com/users/carefree123/repos","events_url":"https://api.github.com/users/carefree123/events{/privacy}","received_events_url":"https://api.github.com/users/carefree123/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":1,"public_gists":1,"followers":0,"following":0,"created_at":"2014-01-15T07:39:31Z","updated_at":"2021-01-07T06:04:40Z"},"id":"8469729","created_at":"2014-01-17T07:39:00Z","updated_at":"2016-01-03T13:29:08Z"},{"url":"https://api.github.com/gists/9002792","user":{"login":"Ashleyfarlow","id":5837531,"node_id":"MDQ6VXNlcjU4Mzc1MzE=","avatar_url":"https://avatars.githubusercontent.com/u/5837531?v=4","gravatar_id":"","url":"https://api.github.com/users/Ashleyfarlow","html_url":"https://github.com/Ashleyfarlow","followers_url":"https://api.github.com/users/Ashleyfarlow/followers","following_url":"https://api.github.com/users/Ashleyfarlow/following{/other_user}","gists_url":"https://api.github.com/users/Ashleyfarlow/gists{/gist_id}","starred_url":"https://api.github.com/users/Ashleyfarlow/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Ashleyfarlow/subscriptions","organizations_url":"https://api.github.com/users/Ashleyfarlow/orgs","repos_url":"https://api.github.com/users/Ashleyfarlow/repos","events_url":"https://api.github.com/users/Ashleyfarlow/events{/privacy}","received_events_url":"https://api.github.com/users/Ashleyfarlow/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"AshleyF","company":null,"blog":"","location":null,"email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":1,"public_gists":1,"followers":0,"following":0,"created_at":"2013-11-02T11:17:47Z","updated_at":"2026-04-22T00:35:09Z"},"id":"9002792","created_at":"2014-02-14T15:15:52Z","updated_at":"2015-08-29T13:56:22Z"},{"url":"https://api.github.com/gists/9003558","user":{"login":"timeu","id":374296,"node_id":"MDQ6VXNlcjM3NDI5Ng==","avatar_url":"https://avatars.githubusercontent.com/u/374296?v=4","gravatar_id":"","url":"https://api.github.com/users/timeu","html_url":"https://github.com/timeu","followers_url":"https://api.github.com/users/timeu/followers","following_url":"https://api.github.com/users/timeu/following{/other_user}","gists_url":"https://api.github.com/users/timeu/gists{/gist_id}","starred_url":"https://api.github.com/users/timeu/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/timeu/subscriptions","organizations_url":"https://api.github.com/users/timeu/orgs","repos_url":"https://api.github.com/users/timeu/repos","events_url":"https://api.github.com/users/timeu/events{/privacy}","received_events_url":"https://api.github.com/users/timeu/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Ümit Seren","company":"Vienna BioCenter","blog":"","location":"Vienna","email":null,"hireable":null,"bio":"HPC & Cloud Systems Engineer at Vienna BioCenter (VBC)","twitter_username":"timeu_s","public_repos":92,"public_gists":36,"followers":75,"following":9,"created_at":"2010-08-24T06:47:03Z","updated_at":"2026-04-11T20:07:55Z"},"id":"9003558","created_at":"2014-02-14T15:57:43Z","updated_at":"2015-08-29T13:56:22Z"},{"url":"https://api.github.com/gists/9117789","user":{"login":"ff6347","id":315106,"node_id":"MDQ6VXNlcjMxNTEwNg==","avatar_url":"https://avatars.githubusercontent.com/u/315106?v=4","gravatar_id":"","url":"https://api.github.com/users/ff6347","html_url":"https://github.com/ff6347","followers_url":"https://api.github.com/users/ff6347/followers","following_url":"https://api.github.com/users/ff6347/following{/other_user}","gists_url":"https://api.github.com/users/ff6347/gists{/gist_id}","starred_url":"https://api.github.com/users/ff6347/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ff6347/subscriptions","organizations_url":"https://api.github.com/users/ff6347/orgs","repos_url":"https://api.github.com/users/ff6347/repos","events_url":"https://api.github.com/users/ff6347/events{/privacy}","received_events_url":"https://api.github.com/users/ff6347/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Fabian Morón Zirfas","company":"@fh-potsdam","blog":"https://fabianmoronzirfas.me","location":"Berlin","email":null,"hireable":true,"bio":"👋🏽  I'm Fabian. I'm a creative technologist, educator and master student @fh-potsdam living in Berlin who occasionally does stuff that involves things.","twitter_username":"fmoronzirfas","public_repos":540,"public_gists":490,"followers":467,"following":657,"created_at":"2010-06-26T09:38:16Z","updated_at":"2026-05-06T16:38:28Z"},"id":"9117789","created_at":"2014-02-20T16:32:59Z","updated_at":"2015-08-29T13:56:34Z"},{"url":"https://api.github.com/gists/9995695","user":{"login":"enjoylife","id":877194,"node_id":"MDQ6VXNlcjg3NzE5NA==","avatar_url":"https://avatars.githubusercontent.com/u/877194?v=4","gravatar_id":"","url":"https://api.github.com/users/enjoylife","html_url":"https://github.com/enjoylife","followers_url":"https://api.github.com/users/enjoylife/followers","following_url":"https://api.github.com/users/enjoylife/following{/other_user}","gists_url":"https://api.github.com/users/enjoylife/gists{/gist_id}","starred_url":"https://api.github.com/users/enjoylife/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/enjoylife/subscriptions","organizations_url":"https://api.github.com/users/enjoylife/orgs","repos_url":"https://api.github.com/users/enjoylife/repos","events_url":"https://api.github.com/users/enjoylife/events{/privacy}","received_events_url":"https://api.github.com/users/enjoylife/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Matthew Clemens","company":"Uber","blog":"mdc.life","location":"Berkeley, CA","email":"matt.d.clemens@gmail.com","hireable":null,"bio":"Try, fail, learn, improve.","twitter_username":null,"public_repos":142,"public_gists":238,"followers":27,"following":17,"created_at":"2011-06-26T19:09:45Z","updated_at":"2026-04-07T20:42:13Z"},"id":"9995695","created_at":"2014-04-05T18:07:42Z","updated_at":"2015-08-29T13:58:08Z"},{"url":"https://api.github.com/gists/e5379b66c3f17c9d4815","user":{"login":"sunshinebeibei","id":8042643,"node_id":"MDQ6VXNlcjgwNDI2NDM=","avatar_url":"https://avatars.githubusercontent.com/u/8042643?v=4","gravatar_id":"","url":"https://api.github.com/users/sunshinebeibei","html_url":"https://github.com/sunshinebeibei","followers_url":"https://api.github.com/users/sunshinebeibei/followers","following_url":"https://api.github.com/users/sunshinebeibei/following{/other_user}","gists_url":"https://api.github.com/users/sunshinebeibei/gists{/gist_id}","starred_url":"https://api.github.com/users/sunshinebeibei/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/sunshinebeibei/subscriptions","organizations_url":"https://api.github.com/users/sunshinebeibei/orgs","repos_url":"https://api.github.com/users/sunshinebeibei/repos","events_url":"https://api.github.com/users/sunshinebeibei/events{/privacy}","received_events_url":"https://api.github.com/users/sunshinebeibei/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"张贝贝","company":null,"blog":"","location":null,"email":"shatanshibei@163.com","hireable":null,"bio":null,"twitter_username":null,"public_repos":7,"public_gists":3,"followers":0,"following":0,"created_at":"2014-07-02T01:54:41Z","updated_at":"2016-02-27T17:25:01Z"},"id":"e5379b66c3f17c9d4815","created_at":"2014-07-03T06:27:44Z","updated_at":"2015-08-29T14:03:24Z"},{"url":"https://api.github.com/gists/effa90091fee5f5172e7","user":{"login":"maruthiprithivi","id":7231702,"node_id":"MDQ6VXNlcjcyMzE3MDI=","avatar_url":"https://avatars.githubusercontent.com/u/7231702?v=4","gravatar_id":"","url":"https://api.github.com/users/maruthiprithivi","html_url":"https://github.com/maruthiprithivi","followers_url":"https://api.github.com/users/maruthiprithivi/followers","following_url":"https://api.github.com/users/maruthiprithivi/following{/other_user}","gists_url":"https://api.github.com/users/maruthiprithivi/gists{/gist_id}","starred_url":"https://api.github.com/users/maruthiprithivi/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/maruthiprithivi/subscriptions","organizations_url":"https://api.github.com/users/maruthiprithivi/orgs","repos_url":"https://api.github.com/users/maruthiprithivi/repos","events_url":"https://api.github.com/users/maruthiprithivi/events{/privacy}","received_events_url":"https://api.github.com/users/maruthiprithivi/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Maruthi Prithivirajan","company":"Typeless","blog":"typeless.io","location":"Singapore","email":null,"hireable":null,"bio":"Builder @ TypelessIO, Vibe Engineering  and Building for the world where we build for agents! ...and high on caffeine!","twitter_username":null,"public_repos":168,"public_gists":12,"followers":20,"following":34,"created_at":"2014-04-08T22:15:59Z","updated_at":"2026-05-10T13:36:07Z"},"id":"effa90091fee5f5172e7","created_at":"2014-12-30T23:01:23Z","updated_at":"2015-08-29T14:12:30Z"},{"url":"https://api.github.com/gists/392217edf396c37033cb","user":{"login":"Buzz-Lightyear","id":4279885,"node_id":"MDQ6VXNlcjQyNzk4ODU=","avatar_url":"https://avatars.githubusercontent.com/u/4279885?v=4","gravatar_id":"","url":"https://api.github.com/users/Buzz-Lightyear","html_url":"https://github.com/Buzz-Lightyear","followers_url":"https://api.github.com/users/Buzz-Lightyear/followers","following_url":"https://api.github.com/users/Buzz-Lightyear/following{/other_user}","gists_url":"https://api.github.com/users/Buzz-Lightyear/gists{/gist_id}","starred_url":"https://api.github.com/users/Buzz-Lightyear/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Buzz-Lightyear/subscriptions","organizations_url":"https://api.github.com/users/Buzz-Lightyear/orgs","repos_url":"https://api.github.com/users/Buzz-Lightyear/repos","events_url":"https://api.github.com/users/Buzz-Lightyear/events{/privacy}","received_events_url":"https://api.github.com/users/Buzz-Lightyear/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Srini Muthu","company":"LinkedIn","blog":"","location":"Pittsburgh","email":"m.srinivas1729@gmail.com","hireable":null,"bio":"Husband, son and a dog parent","twitter_username":null,"public_repos":19,"public_gists":4,"followers":6,"following":3,"created_at":"2013-04-28T10:36:31Z","updated_at":"2026-04-26T15:10:33Z"},"id":"392217edf396c37033cb","created_at":"2015-03-26T18:23:12Z","updated_at":"2015-08-29T14:17:48Z"},{"url":"https://api.github.com/gists/80effaf261e82cbc7ec6","user":{"login":"viniciusfranulovic","id":6737664,"node_id":"MDQ6VXNlcjY3Mzc2NjQ=","avatar_url":"https://avatars.githubusercontent.com/u/6737664?v=4","gravatar_id":"","url":"https://api.github.com/users/viniciusfranulovic","html_url":"https://github.com/viniciusfranulovic","followers_url":"https://api.github.com/users/viniciusfranulovic/followers","following_url":"https://api.github.com/users/viniciusfranulovic/following{/other_user}","gists_url":"https://api.github.com/users/viniciusfranulovic/gists{/gist_id}","starred_url":"https://api.github.com/users/viniciusfranulovic/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/viniciusfranulovic/subscriptions","organizations_url":"https://api.github.com/users/viniciusfranulovic/orgs","repos_url":"https://api.github.com/users/viniciusfranulovic/repos","events_url":"https://api.github.com/users/viniciusfranulovic/events{/privacy}","received_events_url":"https://api.github.com/users/viniciusfranulovic/received_events","type":"User","user_view_type":"public","site_admin":false,"name":null,"company":null,"blog":"viniciusvilic.com.br","location":null,"email":"vfranulovic@gmail.com","hireable":null,"bio":null,"twitter_username":null,"public_repos":3,"public_gists":1,"followers":0,"following":0,"created_at":"2014-02-20T13:24:29Z","updated_at":"2021-06-28T16:50:05Z"},"id":"80effaf261e82cbc7ec6","created_at":"2015-04-23T21:51:14Z","updated_at":"2015-08-29T14:19:47Z"},{"url":"https://api.github.com/gists/9998e65f6390c5a3d0d5","user":{"login":"male1st","id":3324477,"node_id":"MDQ6VXNlcjMzMjQ0Nzc=","avatar_url":"https://avatars.githubusercontent.com/u/3324477?v=4","gravatar_id":"","url":"https://api.github.com/users/male1st","html_url":"https://github.com/male1st","followers_url":"https://api.github.com/users/male1st/followers","following_url":"https://api.github.com/users/male1st/following{/other_user}","gists_url":"https://api.github.com/users/male1st/gists{/gist_id}","starred_url":"https://api.github.com/users/male1st/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/male1st/subscriptions","organizations_url":"https://api.github.com/users/male1st/orgs","repos_url":"https://api.github.com/users/male1st/repos","events_url":"https://api.github.com/users/male1st/events{/privacy}","received_events_url":"https://api.github.com/users/male1st/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"ferb","company":null,"blog":"","location":null,"email":null,"hireable":true,"bio":null,"twitter_username":null,"public_repos":55,"public_gists":3,"followers":4,"following":4,"created_at":"2013-01-21T02:00:16Z","updated_at":"2025-02-19T05:12:16Z"},"id":"9998e65f6390c5a3d0d5","created_at":"2015-08-28T06:49:26Z","updated_at":"2015-08-28T06:49:26Z"},{"url":"https://api.github.com/gists/d68b999217ce7836dcaeeeba6ded4a22","user":{"login":"elipousson","id":931136,"node_id":"MDQ6VXNlcjkzMTEzNg==","avatar_url":"https://avatars.githubusercontent.com/u/931136?v=4","gravatar_id":"","url":"https://api.github.com/users/elipousson","html_url":"https://github.com/elipousson","followers_url":"https://api.github.com/users/elipousson/followers","following_url":"https://api.github.com/users/elipousson/following{/other_user}","gists_url":"https://api.github.com/users/elipousson/gists{/gist_id}","starred_url":"https://api.github.com/users/elipousson/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/elipousson/subscriptions","organizations_url":"https://api.github.com/users/elipousson/orgs","repos_url":"https://api.github.com/users/elipousson/repos","events_url":"https://api.github.com/users/elipousson/events{/privacy}","received_events_url":"https://api.github.com/users/elipousson/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Eli Pousson","company":"Baltimore City Department of Planning","blog":"https://elipousson.github.io/","location":"Baltimore, MD","email":null,"hireable":null,"bio":"I love old buildings and bicycles. Planner with the Baltimore City Department of Planning. Former preservationist @baltimoreheritage","twitter_username":"elipousson","public_repos":145,"public_gists":226,"followers":138,"following":297,"created_at":"2011-07-21T21:14:25Z","updated_at":"2026-03-06T15:58:18Z"},"id":"d68b999217ce7836dcaeeeba6ded4a22","created_at":"2016-05-13T01:01:10Z","updated_at":"2016-05-13T01:31:07Z"},{"url":"https://api.github.com/gists/e9f6b841cb672e7bb8fab2b0cccff5a5","user":{"login":"aleberg","id":10801301,"node_id":"MDQ6VXNlcjEwODAxMzAx","avatar_url":"https://avatars.githubusercontent.com/u/10801301?v=4","gravatar_id":"","url":"https://api.github.com/users/aleberg","html_url":"https://github.com/aleberg","followers_url":"https://api.github.com/users/aleberg/followers","following_url":"https://api.github.com/users/aleberg/following{/other_user}","gists_url":"https://api.github.com/users/aleberg/gists{/gist_id}","starred_url":"https://api.github.com/users/aleberg/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/aleberg/subscriptions","organizations_url":"https://api.github.com/users/aleberg/orgs","repos_url":"https://api.github.com/users/aleberg/repos","events_url":"https://api.github.com/users/aleberg/events{/privacy}","received_events_url":"https://api.github.com/users/aleberg/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Ale","company":null,"blog":"","location":null,"email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":5,"public_gists":5,"followers":3,"following":5,"created_at":"2015-02-01T20:59:30Z","updated_at":"2022-12-20T15:08:30Z"},"id":"e9f6b841cb672e7bb8fab2b0cccff5a5","created_at":"2016-06-02T16:01:15Z","updated_at":"2016-06-02T16:01:16Z"},{"url":"https://api.github.com/gists/8156d9597a0966c136fb43ce3c39614a","user":{"login":"hcientist","id":351751,"node_id":"MDQ6VXNlcjM1MTc1MQ==","avatar_url":"https://avatars.githubusercontent.com/u/351751?v=4","gravatar_id":"","url":"https://api.github.com/users/hcientist","html_url":"https://github.com/hcientist","followers_url":"https://api.github.com/users/hcientist/followers","following_url":"https://api.github.com/users/hcientist/following{/other_user}","gists_url":"https://api.github.com/users/hcientist/gists{/gist_id}","starred_url":"https://api.github.com/users/hcientist/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/hcientist/subscriptions","organizations_url":"https://api.github.com/users/hcientist/orgs","repos_url":"https://api.github.com/users/hcientist/repos","events_url":"https://api.github.com/users/hcientist/events{/privacy}","received_events_url":"https://api.github.com/users/hcientist/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Michael C. Stewart","company":"James Madison University","blog":"http://hcientist.com","location":"Harrisonburg, VA","email":null,"hireable":null,"bio":"Assoc. Prof. in CS at JMU","twitter_username":null,"public_repos":344,"public_gists":21,"followers":121,"following":60,"created_at":"2010-08-02T14:48:39Z","updated_at":"2026-05-10T11:27:19Z"},"id":"8156d9597a0966c136fb43ce3c39614a","created_at":"2017-04-01T19:51:44Z","updated_at":"2017-04-01T19:56:05Z"},{"url":"https://api.github.com/gists/b34fa186bce051a474604ce2443b0aa1","user":{"login":"wser","id":6226428,"node_id":"MDQ6VXNlcjYyMjY0Mjg=","avatar_url":"https://avatars.githubusercontent.com/u/6226428?v=4","gravatar_id":"","url":"https://api.github.com/users/wser","html_url":"https://github.com/wser","followers_url":"https://api.github.com/users/wser/followers","following_url":"https://api.github.com/users/wser/following{/other_user}","gists_url":"https://api.github.com/users/wser/gists{/gist_id}","starred_url":"https://api.github.com/users/wser/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/wser/subscriptions","organizations_url":"https://api.github.com/users/wser/orgs","repos_url":"https://api.github.com/users/wser/repos","events_url":"https://api.github.com/users/wser/events{/privacy}","received_events_url":"https://api.github.com/users/wser/received_events","type":"User","user_view_type":"public","site_admin":false,"name":null,"company":null,"blog":"wser.github.io","location":null,"email":"w.web.dev@gmail.com","hireable":true,"bio":null,"twitter_username":"wserz","public_repos":367,"public_gists":18,"followers":1,"following":0,"created_at":"2013-12-19T22:34:53Z","updated_at":"2026-03-29T16:19:44Z"},"id":"b34fa186bce051a474604ce2443b0aa1","created_at":"2017-10-17T13:34:45Z","updated_at":"2017-10-17T13:34:45Z"},{"url":"https://api.github.com/gists/a9366259904bbcdbb901cfbfd16b7deb","user":{"login":"vitch","id":9898,"node_id":"MDQ6VXNlcjk4OTg=","avatar_url":"https://avatars.githubusercontent.com/u/9898?v=4","gravatar_id":"","url":"https://api.github.com/users/vitch","html_url":"https://github.com/vitch","followers_url":"https://api.github.com/users/vitch/followers","following_url":"https://api.github.com/users/vitch/following{/other_user}","gists_url":"https://api.github.com/users/vitch/gists{/gist_id}","starred_url":"https://api.github.com/users/vitch/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/vitch/subscriptions","organizations_url":"https://api.github.com/users/vitch/orgs","repos_url":"https://api.github.com/users/vitch/repos","events_url":"https://api.github.com/users/vitch/events{/privacy}","received_events_url":"https://api.github.com/users/vitch/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Kelvin Luck","company":"Luck Laboratories Ltd","blog":"http://www.kelvinluck.com/","location":"London, UK","email":null,"hireable":true,"bio":null,"twitter_username":null,"public_repos":119,"public_gists":79,"followers":154,"following":14,"created_at":"2008-05-10T20:50:14Z","updated_at":"2026-04-20T10:34:57Z"},"id":"a9366259904bbcdbb901cfbfd16b7deb","created_at":"2018-02-01T18:22:31Z","updated_at":"2018-02-01T18:26:52Z"},{"url":"https://api.github.com/gists/b9e9693f3ae9183e910242dd1c33fd2d","user":{"login":"ChiragMathur","id":28727070,"node_id":"MDQ6VXNlcjI4NzI3MDcw","avatar_url":"https://avatars.githubusercontent.com/u/28727070?v=4","gravatar_id":"","url":"https://api.github.com/users/ChiragMathur","html_url":"https://github.com/ChiragMathur","followers_url":"https://api.github.com/users/ChiragMathur/followers","following_url":"https://api.github.com/users/ChiragMathur/following{/other_user}","gists_url":"https://api.github.com/users/ChiragMathur/gists{/gist_id}","starred_url":"https://api.github.com/users/ChiragMathur/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ChiragMathur/subscriptions","organizations_url":"https://api.github.com/users/ChiragMathur/orgs","repos_url":"https://api.github.com/users/ChiragMathur/repos","events_url":"https://api.github.com/users/ChiragMathur/events{/privacy}","received_events_url":"https://api.github.com/users/ChiragMathur/received_events","type":"User","user_view_type":"public","site_admin":false,"name":null,"company":null,"blog":"","location":null,"email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":3,"public_gists":1,"followers":0,"following":0,"created_at":"2017-05-16T08:50:01Z","updated_at":"2020-02-27T04:52:50Z"},"id":"b9e9693f3ae9183e910242dd1c33fd2d","created_at":"2018-06-18T03:35:03Z","updated_at":"2018-06-18T03:35:03Z"},{"url":"https://api.github.com/gists/14b0f4ef3e2502b6acd699295a55e227","user":{"login":"junhuili","id":13682229,"node_id":"MDQ6VXNlcjEzNjgyMjI5","avatar_url":"https://avatars.githubusercontent.com/u/13682229?v=4","gravatar_id":"","url":"https://api.github.com/users/junhuili","html_url":"https://github.com/junhuili","followers_url":"https://api.github.com/users/junhuili/followers","following_url":"https://api.github.com/users/junhuili/following{/other_user}","gists_url":"https://api.github.com/users/junhuili/gists{/gist_id}","starred_url":"https://api.github.com/users/junhuili/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/junhuili/subscriptions","organizations_url":"https://api.github.com/users/junhuili/orgs","repos_url":"https://api.github.com/users/junhuili/repos","events_url":"https://api.github.com/users/junhuili/events{/privacy}","received_events_url":"https://api.github.com/users/junhuili/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Junhui","company":"APC Microbiome Ireland, University College Cork","blog":"","location":"Cork, Ireland","email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":37,"public_gists":3,"followers":13,"following":67,"created_at":"2015-08-06T17:26:49Z","updated_at":"2025-11-27T13:25:40Z"},"id":"14b0f4ef3e2502b6acd699295a55e227","created_at":"2019-02-18T03:27:21Z","updated_at":"2019-02-18T03:27:21Z"},{"url":"https://api.github.com/gists/de7a5285c645eea24ddcb2c3473ec500","user":{"login":"mattbcliff","id":5659525,"node_id":"MDQ6VXNlcjU2NTk1MjU=","avatar_url":"https://avatars.githubusercontent.com/u/5659525?v=4","gravatar_id":"","url":"https://api.github.com/users/mattbcliff","html_url":"https://github.com/mattbcliff","followers_url":"https://api.github.com/users/mattbcliff/followers","following_url":"https://api.github.com/users/mattbcliff/following{/other_user}","gists_url":"https://api.github.com/users/mattbcliff/gists{/gist_id}","starred_url":"https://api.github.com/users/mattbcliff/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mattbcliff/subscriptions","organizations_url":"https://api.github.com/users/mattbcliff/orgs","repos_url":"https://api.github.com/users/mattbcliff/repos","events_url":"https://api.github.com/users/mattbcliff/events{/privacy}","received_events_url":"https://api.github.com/users/mattbcliff/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"njcode","company":null,"blog":"","location":null,"email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":14,"public_gists":9,"followers":0,"following":0,"created_at":"2013-10-10T21:19:37Z","updated_at":"2026-01-18T21:03:01Z"},"id":"de7a5285c645eea24ddcb2c3473ec500","created_at":"2019-07-04T06:31:45Z","updated_at":"2019-07-04T06:31:45Z"},{"url":"https://api.github.com/gists/6cafb1e9d6fb7880c8f83b434af9af35","user":{"login":"chloerulesok","id":33102817,"node_id":"MDQ6VXNlcjMzMTAyODE3","avatar_url":"https://avatars.githubusercontent.com/u/33102817?v=4","gravatar_id":"","url":"https://api.github.com/users/chloerulesok","html_url":"https://github.com/chloerulesok","followers_url":"https://api.github.com/users/chloerulesok/followers","following_url":"https://api.github.com/users/chloerulesok/following{/other_user}","gists_url":"https://api.github.com/users/chloerulesok/gists{/gist_id}","starred_url":"https://api.github.com/users/chloerulesok/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/chloerulesok/subscriptions","organizations_url":"https://api.github.com/users/chloerulesok/orgs","repos_url":"https://api.github.com/users/chloerulesok/repos","events_url":"https://api.github.com/users/chloerulesok/events{/privacy}","received_events_url":"https://api.github.com/users/chloerulesok/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":12,"followers":0,"following":0,"created_at":"2017-10-25T19:34:46Z","updated_at":"2026-04-28T18:01:17Z"},"id":"6cafb1e9d6fb7880c8f83b434af9af35","created_at":"2019-09-24T21:11:18Z","updated_at":"2019-09-24T21:11:19Z"},{"url":"https://api.github.com/gists/3f1907aac5d5f8d4532be8954355b3e7","user":{"login":"ix4","id":38112035,"node_id":"MDQ6VXNlcjM4MTEyMDM1","avatar_url":"https://avatars.githubusercontent.com/u/38112035?v=4","gravatar_id":"","url":"https://api.github.com/users/ix4","html_url":"https://github.com/ix4","followers_url":"https://api.github.com/users/ix4/followers","following_url":"https://api.github.com/users/ix4/following{/other_user}","gists_url":"https://api.github.com/users/ix4/gists{/gist_id}","starred_url":"https://api.github.com/users/ix4/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ix4/subscriptions","organizations_url":"https://api.github.com/users/ix4/orgs","repos_url":"https://api.github.com/users/ix4/repos","events_url":"https://api.github.com/users/ix4/events{/privacy}","received_events_url":"https://api.github.com/users/ix4/received_events","type":"User","user_view_type":"public","site_admin":false,"name":null,"company":null,"blog":"","location":null,"email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":12,"public_gists":1448,"followers":68,"following":94,"created_at":"2018-04-05T17:37:06Z","updated_at":"2026-04-13T03:04:38Z"},"id":"3f1907aac5d5f8d4532be8954355b3e7","created_at":"2019-10-25T09:29:34Z","updated_at":"2019-10-25T09:29:34Z"},{"url":"https://api.github.com/gists/52dd97d3d9190874a1c22cc8cb57235d","user":{"login":"evelynmatson","id":13567786,"node_id":"MDQ6VXNlcjEzNTY3Nzg2","avatar_url":"https://avatars.githubusercontent.com/u/13567786?v=4","gravatar_id":"","url":"https://api.github.com/users/evelynmatson","html_url":"https://github.com/evelynmatson","followers_url":"https://api.github.com/users/evelynmatson/followers","following_url":"https://api.github.com/users/evelynmatson/following{/other_user}","gists_url":"https://api.github.com/users/evelynmatson/gists{/gist_id}","starred_url":"https://api.github.com/users/evelynmatson/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/evelynmatson/subscriptions","organizations_url":"https://api.github.com/users/evelynmatson/orgs","repos_url":"https://api.github.com/users/evelynmatson/repos","events_url":"https://api.github.com/users/evelynmatson/events{/privacy}","received_events_url":"https://api.github.com/users/evelynmatson/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Eve Matson","company":null,"blog":"","location":null,"email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":5,"public_gists":3,"followers":1,"following":0,"created_at":"2015-07-30T07:38:41Z","updated_at":"2026-05-14T05:08:33Z"},"id":"52dd97d3d9190874a1c22cc8cb57235d","created_at":"2021-04-06T21:40:47Z","updated_at":"2021-04-06T21:43:42Z"},{"url":"https://api.github.com/gists/13546796b8f03ff12aa27ce19c2a39ba","user":{"login":"muratabur","id":12458414,"node_id":"MDQ6VXNlcjEyNDU4NDE0","avatar_url":"https://avatars.githubusercontent.com/u/12458414?v=4","gravatar_id":"","url":"https://api.github.com/users/muratabur","html_url":"https://github.com/muratabur","followers_url":"https://api.github.com/users/muratabur/followers","following_url":"https://api.github.com/users/muratabur/following{/other_user}","gists_url":"https://api.github.com/users/muratabur/gists{/gist_id}","starred_url":"https://api.github.com/users/muratabur/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/muratabur/subscriptions","organizations_url":"https://api.github.com/users/muratabur/orgs","repos_url":"https://api.github.com/users/muratabur/repos","events_url":"https://api.github.com/users/muratabur/events{/privacy}","received_events_url":"https://api.github.com/users/muratabur/received_events","type":"User","user_view_type":"public","site_admin":false,"name":null,"company":null,"blog":"https://suade.org","location":"London","email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":6,"public_gists":6,"followers":4,"following":1,"created_at":"2015-05-15T09:29:55Z","updated_at":"2026-05-05T16:24:06Z"},"id":"13546796b8f03ff12aa27ce19c2a39ba","created_at":"2021-08-23T22:57:48Z","updated_at":"2021-08-23T23:18:46Z"},{"url":"https://api.github.com/gists/5242e814116873d6af9fd9d96943fadc","user":{"login":"charles-lehman","id":106848989,"node_id":"U_kgDOBl5i3Q","avatar_url":"https://avatars.githubusercontent.com/u/106848989?v=4","gravatar_id":"","url":"https://api.github.com/users/charles-lehman","html_url":"https://github.com/charles-lehman","followers_url":"https://api.github.com/users/charles-lehman/followers","following_url":"https://api.github.com/users/charles-lehman/following{/other_user}","gists_url":"https://api.github.com/users/charles-lehman/gists{/gist_id}","starred_url":"https://api.github.com/users/charles-lehman/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/charles-lehman/subscriptions","organizations_url":"https://api.github.com/users/charles-lehman/orgs","repos_url":"https://api.github.com/users/charles-lehman/repos","events_url":"https://api.github.com/users/charles-lehman/events{/privacy}","received_events_url":"https://api.github.com/users/charles-lehman/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Charles Lehman","company":"SynchPay","blog":"","location":null,"email":null,"hireable":null,"bio":"Building the next generation of A2A payments at SynchPay (while learning to code)","twitter_username":null,"public_repos":133,"public_gists":3,"followers":0,"following":0,"created_at":"2022-06-03T23:11:55Z","updated_at":"2026-05-05T19:12:58Z"},"id":"5242e814116873d6af9fd9d96943fadc","created_at":"2025-02-02T03:20:19Z","updated_at":"2025-02-02T03:20:20Z"}],"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":"e061c29ebd3071ddd87129f8bec359fde05b829e","committed_at":"2016-02-09T00:17:26Z","change_status":{"total":1,"additions":1,"deletions":0},"url":"https://api.github.com/gists/1062288/e061c29ebd3071ddd87129f8bec359fde05b829e"},{"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":"398aa8e93c950a6c411a45710e951e94da59eeb8","committed_at":"2015-11-17T19:19:10Z","change_status":{"total":6,"additions":4,"deletions":2},"url":"https://api.github.com/gists/1062288/398aa8e93c950a6c411a45710e951e94da59eeb8"},{"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":"d9718e318aced63f442e9e93d845748ec2a32952","committed_at":"2015-10-30T21:29:32Z","change_status":{"total":2,"additions":1,"deletions":1},"url":"https://api.github.com/gists/1062288/d9718e318aced63f442e9e93d845748ec2a32952"},{"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":"0a57b0b23f49b3fdd122b1ceef2fbdcae97aad28","committed_at":"2015-06-11T19:43:07Z","change_status":{"total":2,"additions":1,"deletions":1},"url":"https://api.github.com/gists/1062288/0a57b0b23f49b3fdd122b1ceef2fbdcae97aad28"},{"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":"1cfafdc6b2b173330e2667cc17c2c6118d55dfcb","committed_at":"2013-09-19T04:51:16Z","change_status":{"total":88,"additions":40,"deletions":48},"url":"https://api.github.com/gists/1062288/1cfafdc6b2b173330e2667cc17c2c6118d55dfcb"},{"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":"befa671c8c3c0f1c30a99c9ee2e55efd00c563af","committed_at":"2012-12-20T22:16:40Z","change_status":{"total":0,"additions":0,"deletions":0},"url":"https://api.github.com/gists/1062288/befa671c8c3c0f1c30a99c9ee2e55efd00c563af"},{"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":"46f7b6a1521569c77458c82e7a8c1d5ac70e8d2f","committed_at":"2012-12-20T22:15:57Z","change_status":{"total":0,"additions":0,"deletions":0},"url":"https://api.github.com/gists/1062288/46f7b6a1521569c77458c82e7a8c1d5ac70e8d2f"},{"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":"eb10846f608f0e4dbe4b1ffa39f9af5903e9d989","committed_at":"2012-10-12T03:43:03Z","change_status":{"total":0,"additions":0,"deletions":0},"url":"https://api.github.com/gists/1062288/eb10846f608f0e4dbe4b1ffa39f9af5903e9d989"},{"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":"8ec2afa8386d414a02957fa190619baca982fbf9","committed_at":"2011-09-21T17:07:43Z","change_status":{"total":27,"additions":13,"deletions":14},"url":"https://api.github.com/gists/1062288/8ec2afa8386d414a02957fa190619baca982fbf9"},{"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":"4a38cae9902ca36d50005e3dc354eec207244605","committed_at":"2011-07-03T15:00:42Z","change_status":{"total":2,"additions":1,"deletions":1},"url":"https://api.github.com/gists/1062288/4a38cae9902ca36d50005e3dc354eec207244605"},{"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":"168d08f45b499a216839354e70669c033fc589f9","committed_at":"2011-07-03T15:00:16Z","change_status":{},"url":"https://api.github.com/gists/1062288/168d08f45b499a216839354e70669c033fc589f9"},{"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":"db875ec88a5cf0696fdac35535c5a43a9934d0b1","committed_at":"2011-07-03T14:47:54Z","change_status":{},"url":"https://api.github.com/gists/1062288/db875ec88a5cf0696fdac35535c5a43a9934d0b1"}],"truncated":false}