{"url":"https://api.github.com/gists/4062045","forks_url":"https://api.github.com/gists/4062045/forks","commits_url":"https://api.github.com/gists/4062045/commits","id":"4062045","node_id":"MDQ6R2lzdDQwNjIwNDU=","git_pull_url":"https://gist.github.com/4062045.git","git_push_url":"https://gist.github.com/4062045.git","html_url":"https://gist.github.com/mbostock/4062045","files":{".block":{"filename":".block","type":"text/plain","language":null,"raw_url":"https://gist.githubusercontent.com/mbostock/4062045/raw/3305a26ac2070acfcd9be72454c0c23768e18e5f/.block","size":92,"truncated":false,"content":"license: gpl-3.0\nheight: 600\nredirect: https://observablehq.com/@d3/d3-force-directed-graph\n","encoding":"utf-8"},"README.md":{"filename":"README.md","type":"text/markdown","language":"Markdown","raw_url":"https://gist.githubusercontent.com/mbostock/4062045/raw/58914a2fb1a3d5b09a7994c302785edf97a353a6/README.md","size":787,"truncated":false,"content":"This simple force-directed graph shows character co-occurence in *Les Misérables*. A physical simulation of charged particles and springs places related characters in closer proximity, while unrelated characters are farther apart. Layout algorithm inspired by [Tim Dwyer](http://www.csse.monash.edu.au/~tdwyer/) and [Thomas Jakobsen](http://web.archive.org/web/20080410171619/http://www.teknikus.dk/tj/gdc2001.htm). Data based on character coappearence in Victor Hugo's *Les Misérables*, compiled by [Donald Knuth](http://www-cs-faculty.stanford.edu/~uno/sgb.html).\n\nCompare this display to a force layout with [curved links](/mbostock/4600693), a force layout with [fisheye distortion](http://bost.ocks.org/mike/fisheye/) and a [matrix diagram](http://bost.ocks.org/mike/miserables/).","encoding":"utf-8"},"index.html":{"filename":"index.html","type":"text/html","language":"HTML","raw_url":"https://gist.githubusercontent.com/mbostock/4062045/raw/d27d1f0c3d72e242e71048f0d206cac70ef74b0c/index.html","size":2122,"truncated":false,"content":"<!DOCTYPE html>\n<meta charset=\"utf-8\">\n<style>\n\n.links line {\n  stroke: #999;\n  stroke-opacity: 0.6;\n}\n\n.nodes circle {\n  stroke: #fff;\n  stroke-width: 1.5px;\n}\n\n</style>\n<svg width=\"960\" height=\"600\"></svg>\n<script src=\"https://d3js.org/d3.v4.min.js\"></script>\n<script>\n\nvar svg = d3.select(\"svg\"),\n    width = +svg.attr(\"width\"),\n    height = +svg.attr(\"height\");\n\nvar color = d3.scaleOrdinal(d3.schemeCategory20);\n\nvar simulation = d3.forceSimulation()\n    .force(\"link\", d3.forceLink().id(function(d) { return d.id; }))\n    .force(\"charge\", d3.forceManyBody())\n    .force(\"center\", d3.forceCenter(width / 2, height / 2));\n\nd3.json(\"miserables.json\", function(error, graph) {\n  if (error) throw error;\n\n  var link = svg.append(\"g\")\n      .attr(\"class\", \"links\")\n    .selectAll(\"line\")\n    .data(graph.links)\n    .enter().append(\"line\")\n      .attr(\"stroke-width\", function(d) { return Math.sqrt(d.value); });\n\n  var node = svg.append(\"g\")\n      .attr(\"class\", \"nodes\")\n    .selectAll(\"circle\")\n    .data(graph.nodes)\n    .enter().append(\"circle\")\n      .attr(\"r\", 5)\n      .attr(\"fill\", function(d) { return color(d.group); })\n      .call(d3.drag()\n          .on(\"start\", dragstarted)\n          .on(\"drag\", dragged)\n          .on(\"end\", dragended));\n\n  node.append(\"title\")\n      .text(function(d) { return d.id; });\n\n  simulation\n      .nodes(graph.nodes)\n      .on(\"tick\", ticked);\n\n  simulation.force(\"link\")\n      .links(graph.links);\n\n  function ticked() {\n    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    node\n        .attr(\"cx\", function(d) { return d.x; })\n        .attr(\"cy\", function(d) { return d.y; });\n  }\n});\n\nfunction dragstarted(d) {\n  if (!d3.event.active) simulation.alphaTarget(0.3).restart();\n  d.fx = d.x;\n  d.fy = d.y;\n}\n\nfunction dragged(d) {\n  d.fx = d3.event.x;\n  d.fy = d3.event.y;\n}\n\nfunction dragended(d) {\n  if (!d3.event.active) simulation.alphaTarget(0);\n  d.fx = null;\n  d.fy = null;\n}\n\n</script>\n","encoding":"utf-8"},"miserables.json":{"filename":"miserables.json","type":"application/json","language":"JSON","raw_url":"https://gist.githubusercontent.com/mbostock/4062045/raw/7db92850f88361c85f9fe4efa20333a454c5632a/miserables.json","size":18844,"truncated":false,"content":"{\n  \"nodes\": [\n    {\"id\": \"Myriel\", \"group\": 1},\n    {\"id\": \"Napoleon\", \"group\": 1},\n    {\"id\": \"Mlle.Baptistine\", \"group\": 1},\n    {\"id\": \"Mme.Magloire\", \"group\": 1},\n    {\"id\": \"CountessdeLo\", \"group\": 1},\n    {\"id\": \"Geborand\", \"group\": 1},\n    {\"id\": \"Champtercier\", \"group\": 1},\n    {\"id\": \"Cravatte\", \"group\": 1},\n    {\"id\": \"Count\", \"group\": 1},\n    {\"id\": \"OldMan\", \"group\": 1},\n    {\"id\": \"Labarre\", \"group\": 2},\n    {\"id\": \"Valjean\", \"group\": 2},\n    {\"id\": \"Marguerite\", \"group\": 3},\n    {\"id\": \"Mme.deR\", \"group\": 2},\n    {\"id\": \"Isabeau\", \"group\": 2},\n    {\"id\": \"Gervais\", \"group\": 2},\n    {\"id\": \"Tholomyes\", \"group\": 3},\n    {\"id\": \"Listolier\", \"group\": 3},\n    {\"id\": \"Fameuil\", \"group\": 3},\n    {\"id\": \"Blacheville\", \"group\": 3},\n    {\"id\": \"Favourite\", \"group\": 3},\n    {\"id\": \"Dahlia\", \"group\": 3},\n    {\"id\": \"Zephine\", \"group\": 3},\n    {\"id\": \"Fantine\", \"group\": 3},\n    {\"id\": \"Mme.Thenardier\", \"group\": 4},\n    {\"id\": \"Thenardier\", \"group\": 4},\n    {\"id\": \"Cosette\", \"group\": 5},\n    {\"id\": \"Javert\", \"group\": 4},\n    {\"id\": \"Fauchelevent\", \"group\": 0},\n    {\"id\": \"Bamatabois\", \"group\": 2},\n    {\"id\": \"Perpetue\", \"group\": 3},\n    {\"id\": \"Simplice\", \"group\": 2},\n    {\"id\": \"Scaufflaire\", \"group\": 2},\n    {\"id\": \"Woman1\", \"group\": 2},\n    {\"id\": \"Judge\", \"group\": 2},\n    {\"id\": \"Champmathieu\", \"group\": 2},\n    {\"id\": \"Brevet\", \"group\": 2},\n    {\"id\": \"Chenildieu\", \"group\": 2},\n    {\"id\": \"Cochepaille\", \"group\": 2},\n    {\"id\": \"Pontmercy\", \"group\": 4},\n    {\"id\": \"Boulatruelle\", \"group\": 6},\n    {\"id\": \"Eponine\", \"group\": 4},\n    {\"id\": \"Anzelma\", \"group\": 4},\n    {\"id\": \"Woman2\", \"group\": 5},\n    {\"id\": \"MotherInnocent\", \"group\": 0},\n    {\"id\": \"Gribier\", \"group\": 0},\n    {\"id\": \"Jondrette\", \"group\": 7},\n    {\"id\": \"Mme.Burgon\", \"group\": 7},\n    {\"id\": \"Gavroche\", \"group\": 8},\n    {\"id\": \"Gillenormand\", \"group\": 5},\n    {\"id\": \"Magnon\", \"group\": 5},\n    {\"id\": \"Mlle.Gillenormand\", \"group\": 5},\n    {\"id\": \"Mme.Pontmercy\", \"group\": 5},\n    {\"id\": \"Mlle.Vaubois\", \"group\": 5},\n    {\"id\": \"Lt.Gillenormand\", \"group\": 5},\n    {\"id\": \"Marius\", \"group\": 8},\n    {\"id\": \"BaronessT\", \"group\": 5},\n    {\"id\": \"Mabeuf\", \"group\": 8},\n    {\"id\": \"Enjolras\", \"group\": 8},\n    {\"id\": \"Combeferre\", \"group\": 8},\n    {\"id\": \"Prouvaire\", \"group\": 8},\n    {\"id\": \"Feuilly\", \"group\": 8},\n    {\"id\": \"Courfeyrac\", \"group\": 8},\n    {\"id\": \"Bahorel\", \"group\": 8},\n    {\"id\": \"Bossuet\", \"group\": 8},\n    {\"id\": \"Joly\", \"group\": 8},\n    {\"id\": \"Grantaire\", \"group\": 8},\n    {\"id\": \"MotherPlutarch\", \"group\": 9},\n    {\"id\": \"Gueulemer\", \"group\": 4},\n    {\"id\": \"Babet\", \"group\": 4},\n    {\"id\": \"Claquesous\", \"group\": 4},\n    {\"id\": \"Montparnasse\", \"group\": 4},\n    {\"id\": \"Toussaint\", \"group\": 5},\n    {\"id\": \"Child1\", \"group\": 10},\n    {\"id\": \"Child2\", \"group\": 10},\n    {\"id\": \"Brujon\", \"group\": 4},\n    {\"id\": \"Mme.Hucheloup\", \"group\": 8}\n  ],\n  \"links\": [\n    {\"source\": \"Napoleon\", \"target\": \"Myriel\", \"value\": 1},\n    {\"source\": \"Mlle.Baptistine\", \"target\": \"Myriel\", \"value\": 8},\n    {\"source\": \"Mme.Magloire\", \"target\": \"Myriel\", \"value\": 10},\n    {\"source\": \"Mme.Magloire\", \"target\": \"Mlle.Baptistine\", \"value\": 6},\n    {\"source\": \"CountessdeLo\", \"target\": \"Myriel\", \"value\": 1},\n    {\"source\": \"Geborand\", \"target\": \"Myriel\", \"value\": 1},\n    {\"source\": \"Champtercier\", \"target\": \"Myriel\", \"value\": 1},\n    {\"source\": \"Cravatte\", \"target\": \"Myriel\", \"value\": 1},\n    {\"source\": \"Count\", \"target\": \"Myriel\", \"value\": 2},\n    {\"source\": \"OldMan\", \"target\": \"Myriel\", \"value\": 1},\n    {\"source\": \"Valjean\", \"target\": \"Labarre\", \"value\": 1},\n    {\"source\": \"Valjean\", \"target\": \"Mme.Magloire\", \"value\": 3},\n    {\"source\": \"Valjean\", \"target\": \"Mlle.Baptistine\", \"value\": 3},\n    {\"source\": \"Valjean\", \"target\": \"Myriel\", \"value\": 5},\n    {\"source\": \"Marguerite\", \"target\": \"Valjean\", \"value\": 1},\n    {\"source\": \"Mme.deR\", \"target\": \"Valjean\", \"value\": 1},\n    {\"source\": \"Isabeau\", \"target\": \"Valjean\", \"value\": 1},\n    {\"source\": \"Gervais\", \"target\": \"Valjean\", \"value\": 1},\n    {\"source\": \"Listolier\", \"target\": \"Tholomyes\", \"value\": 4},\n    {\"source\": \"Fameuil\", \"target\": \"Tholomyes\", \"value\": 4},\n    {\"source\": \"Fameuil\", \"target\": \"Listolier\", \"value\": 4},\n    {\"source\": \"Blacheville\", \"target\": \"Tholomyes\", \"value\": 4},\n    {\"source\": \"Blacheville\", \"target\": \"Listolier\", \"value\": 4},\n    {\"source\": \"Blacheville\", \"target\": \"Fameuil\", \"value\": 4},\n    {\"source\": \"Favourite\", \"target\": \"Tholomyes\", \"value\": 3},\n    {\"source\": \"Favourite\", \"target\": \"Listolier\", \"value\": 3},\n    {\"source\": \"Favourite\", \"target\": \"Fameuil\", \"value\": 3},\n    {\"source\": \"Favourite\", \"target\": \"Blacheville\", \"value\": 4},\n    {\"source\": \"Dahlia\", \"target\": \"Tholomyes\", \"value\": 3},\n    {\"source\": \"Dahlia\", \"target\": \"Listolier\", \"value\": 3},\n    {\"source\": \"Dahlia\", \"target\": \"Fameuil\", \"value\": 3},\n    {\"source\": \"Dahlia\", \"target\": \"Blacheville\", \"value\": 3},\n    {\"source\": \"Dahlia\", \"target\": \"Favourite\", \"value\": 5},\n    {\"source\": \"Zephine\", \"target\": \"Tholomyes\", \"value\": 3},\n    {\"source\": \"Zephine\", \"target\": \"Listolier\", \"value\": 3},\n    {\"source\": \"Zephine\", \"target\": \"Fameuil\", \"value\": 3},\n    {\"source\": \"Zephine\", \"target\": \"Blacheville\", \"value\": 3},\n    {\"source\": \"Zephine\", \"target\": \"Favourite\", \"value\": 4},\n    {\"source\": \"Zephine\", \"target\": \"Dahlia\", \"value\": 4},\n    {\"source\": \"Fantine\", \"target\": \"Tholomyes\", \"value\": 3},\n    {\"source\": \"Fantine\", \"target\": \"Listolier\", \"value\": 3},\n    {\"source\": \"Fantine\", \"target\": \"Fameuil\", \"value\": 3},\n    {\"source\": \"Fantine\", \"target\": \"Blacheville\", \"value\": 3},\n    {\"source\": \"Fantine\", \"target\": \"Favourite\", \"value\": 4},\n    {\"source\": \"Fantine\", \"target\": \"Dahlia\", \"value\": 4},\n    {\"source\": \"Fantine\", \"target\": \"Zephine\", \"value\": 4},\n    {\"source\": \"Fantine\", \"target\": \"Marguerite\", \"value\": 2},\n    {\"source\": \"Fantine\", \"target\": \"Valjean\", \"value\": 9},\n    {\"source\": \"Mme.Thenardier\", \"target\": \"Fantine\", \"value\": 2},\n    {\"source\": \"Mme.Thenardier\", \"target\": \"Valjean\", \"value\": 7},\n    {\"source\": \"Thenardier\", \"target\": \"Mme.Thenardier\", \"value\": 13},\n    {\"source\": \"Thenardier\", \"target\": \"Fantine\", \"value\": 1},\n    {\"source\": \"Thenardier\", \"target\": \"Valjean\", \"value\": 12},\n    {\"source\": \"Cosette\", \"target\": \"Mme.Thenardier\", \"value\": 4},\n    {\"source\": \"Cosette\", \"target\": \"Valjean\", \"value\": 31},\n    {\"source\": \"Cosette\", \"target\": \"Tholomyes\", \"value\": 1},\n    {\"source\": \"Cosette\", \"target\": \"Thenardier\", \"value\": 1},\n    {\"source\": \"Javert\", \"target\": \"Valjean\", \"value\": 17},\n    {\"source\": \"Javert\", \"target\": \"Fantine\", \"value\": 5},\n    {\"source\": \"Javert\", \"target\": \"Thenardier\", \"value\": 5},\n    {\"source\": \"Javert\", \"target\": \"Mme.Thenardier\", \"value\": 1},\n    {\"source\": \"Javert\", \"target\": \"Cosette\", \"value\": 1},\n    {\"source\": \"Fauchelevent\", \"target\": \"Valjean\", \"value\": 8},\n    {\"source\": \"Fauchelevent\", \"target\": \"Javert\", \"value\": 1},\n    {\"source\": \"Bamatabois\", \"target\": \"Fantine\", \"value\": 1},\n    {\"source\": \"Bamatabois\", \"target\": \"Javert\", \"value\": 1},\n    {\"source\": \"Bamatabois\", \"target\": \"Valjean\", \"value\": 2},\n    {\"source\": \"Perpetue\", \"target\": \"Fantine\", \"value\": 1},\n    {\"source\": \"Simplice\", \"target\": \"Perpetue\", \"value\": 2},\n    {\"source\": \"Simplice\", \"target\": \"Valjean\", \"value\": 3},\n    {\"source\": \"Simplice\", \"target\": \"Fantine\", \"value\": 2},\n    {\"source\": \"Simplice\", \"target\": \"Javert\", \"value\": 1},\n    {\"source\": \"Scaufflaire\", \"target\": \"Valjean\", \"value\": 1},\n    {\"source\": \"Woman1\", \"target\": \"Valjean\", \"value\": 2},\n    {\"source\": \"Woman1\", \"target\": \"Javert\", \"value\": 1},\n    {\"source\": \"Judge\", \"target\": \"Valjean\", \"value\": 3},\n    {\"source\": \"Judge\", \"target\": \"Bamatabois\", \"value\": 2},\n    {\"source\": \"Champmathieu\", \"target\": \"Valjean\", \"value\": 3},\n    {\"source\": \"Champmathieu\", \"target\": \"Judge\", \"value\": 3},\n    {\"source\": \"Champmathieu\", \"target\": \"Bamatabois\", \"value\": 2},\n    {\"source\": \"Brevet\", \"target\": \"Judge\", \"value\": 2},\n    {\"source\": \"Brevet\", \"target\": \"Champmathieu\", \"value\": 2},\n    {\"source\": \"Brevet\", \"target\": \"Valjean\", \"value\": 2},\n    {\"source\": \"Brevet\", \"target\": \"Bamatabois\", \"value\": 1},\n    {\"source\": \"Chenildieu\", \"target\": \"Judge\", \"value\": 2},\n    {\"source\": \"Chenildieu\", \"target\": \"Champmathieu\", \"value\": 2},\n    {\"source\": \"Chenildieu\", \"target\": \"Brevet\", \"value\": 2},\n    {\"source\": \"Chenildieu\", \"target\": \"Valjean\", \"value\": 2},\n    {\"source\": \"Chenildieu\", \"target\": \"Bamatabois\", \"value\": 1},\n    {\"source\": \"Cochepaille\", \"target\": \"Judge\", \"value\": 2},\n    {\"source\": \"Cochepaille\", \"target\": \"Champmathieu\", \"value\": 2},\n    {\"source\": \"Cochepaille\", \"target\": \"Brevet\", \"value\": 2},\n    {\"source\": \"Cochepaille\", \"target\": \"Chenildieu\", \"value\": 2},\n    {\"source\": \"Cochepaille\", \"target\": \"Valjean\", \"value\": 2},\n    {\"source\": \"Cochepaille\", \"target\": \"Bamatabois\", \"value\": 1},\n    {\"source\": \"Pontmercy\", \"target\": \"Thenardier\", \"value\": 1},\n    {\"source\": \"Boulatruelle\", \"target\": \"Thenardier\", \"value\": 1},\n    {\"source\": \"Eponine\", \"target\": \"Mme.Thenardier\", \"value\": 2},\n    {\"source\": \"Eponine\", \"target\": \"Thenardier\", \"value\": 3},\n    {\"source\": \"Anzelma\", \"target\": \"Eponine\", \"value\": 2},\n    {\"source\": \"Anzelma\", \"target\": \"Thenardier\", \"value\": 2},\n    {\"source\": \"Anzelma\", \"target\": \"Mme.Thenardier\", \"value\": 1},\n    {\"source\": \"Woman2\", \"target\": \"Valjean\", \"value\": 3},\n    {\"source\": \"Woman2\", \"target\": \"Cosette\", \"value\": 1},\n    {\"source\": \"Woman2\", \"target\": \"Javert\", \"value\": 1},\n    {\"source\": \"MotherInnocent\", \"target\": \"Fauchelevent\", \"value\": 3},\n    {\"source\": \"MotherInnocent\", \"target\": \"Valjean\", \"value\": 1},\n    {\"source\": \"Gribier\", \"target\": \"Fauchelevent\", \"value\": 2},\n    {\"source\": \"Mme.Burgon\", \"target\": \"Jondrette\", \"value\": 1},\n    {\"source\": \"Gavroche\", \"target\": \"Mme.Burgon\", \"value\": 2},\n    {\"source\": \"Gavroche\", \"target\": \"Thenardier\", \"value\": 1},\n    {\"source\": \"Gavroche\", \"target\": \"Javert\", \"value\": 1},\n    {\"source\": \"Gavroche\", \"target\": \"Valjean\", \"value\": 1},\n    {\"source\": \"Gillenormand\", \"target\": \"Cosette\", \"value\": 3},\n    {\"source\": \"Gillenormand\", \"target\": \"Valjean\", \"value\": 2},\n    {\"source\": \"Magnon\", \"target\": \"Gillenormand\", \"value\": 1},\n    {\"source\": \"Magnon\", \"target\": \"Mme.Thenardier\", \"value\": 1},\n    {\"source\": \"Mlle.Gillenormand\", \"target\": \"Gillenormand\", \"value\": 9},\n    {\"source\": \"Mlle.Gillenormand\", \"target\": \"Cosette\", \"value\": 2},\n    {\"source\": \"Mlle.Gillenormand\", \"target\": \"Valjean\", \"value\": 2},\n    {\"source\": \"Mme.Pontmercy\", \"target\": \"Mlle.Gillenormand\", \"value\": 1},\n    {\"source\": \"Mme.Pontmercy\", \"target\": \"Pontmercy\", \"value\": 1},\n    {\"source\": \"Mlle.Vaubois\", \"target\": \"Mlle.Gillenormand\", \"value\": 1},\n    {\"source\": \"Lt.Gillenormand\", \"target\": \"Mlle.Gillenormand\", \"value\": 2},\n    {\"source\": \"Lt.Gillenormand\", \"target\": \"Gillenormand\", \"value\": 1},\n    {\"source\": \"Lt.Gillenormand\", \"target\": \"Cosette\", \"value\": 1},\n    {\"source\": \"Marius\", \"target\": \"Mlle.Gillenormand\", \"value\": 6},\n    {\"source\": \"Marius\", \"target\": \"Gillenormand\", \"value\": 12},\n    {\"source\": \"Marius\", \"target\": \"Pontmercy\", \"value\": 1},\n    {\"source\": \"Marius\", \"target\": \"Lt.Gillenormand\", \"value\": 1},\n    {\"source\": \"Marius\", \"target\": \"Cosette\", \"value\": 21},\n    {\"source\": \"Marius\", \"target\": \"Valjean\", \"value\": 19},\n    {\"source\": \"Marius\", \"target\": \"Tholomyes\", \"value\": 1},\n    {\"source\": \"Marius\", \"target\": \"Thenardier\", \"value\": 2},\n    {\"source\": \"Marius\", \"target\": \"Eponine\", \"value\": 5},\n    {\"source\": \"Marius\", \"target\": \"Gavroche\", \"value\": 4},\n    {\"source\": \"BaronessT\", \"target\": \"Gillenormand\", \"value\": 1},\n    {\"source\": \"BaronessT\", \"target\": \"Marius\", \"value\": 1},\n    {\"source\": \"Mabeuf\", \"target\": \"Marius\", \"value\": 1},\n    {\"source\": \"Mabeuf\", \"target\": \"Eponine\", \"value\": 1},\n    {\"source\": \"Mabeuf\", \"target\": \"Gavroche\", \"value\": 1},\n    {\"source\": \"Enjolras\", \"target\": \"Marius\", \"value\": 7},\n    {\"source\": \"Enjolras\", \"target\": \"Gavroche\", \"value\": 7},\n    {\"source\": \"Enjolras\", \"target\": \"Javert\", \"value\": 6},\n    {\"source\": \"Enjolras\", \"target\": \"Mabeuf\", \"value\": 1},\n    {\"source\": \"Enjolras\", \"target\": \"Valjean\", \"value\": 4},\n    {\"source\": \"Combeferre\", \"target\": \"Enjolras\", \"value\": 15},\n    {\"source\": \"Combeferre\", \"target\": \"Marius\", \"value\": 5},\n    {\"source\": \"Combeferre\", \"target\": \"Gavroche\", \"value\": 6},\n    {\"source\": \"Combeferre\", \"target\": \"Mabeuf\", \"value\": 2},\n    {\"source\": \"Prouvaire\", \"target\": \"Gavroche\", \"value\": 1},\n    {\"source\": \"Prouvaire\", \"target\": \"Enjolras\", \"value\": 4},\n    {\"source\": \"Prouvaire\", \"target\": \"Combeferre\", \"value\": 2},\n    {\"source\": \"Feuilly\", \"target\": \"Gavroche\", \"value\": 2},\n    {\"source\": \"Feuilly\", \"target\": \"Enjolras\", \"value\": 6},\n    {\"source\": \"Feuilly\", \"target\": \"Prouvaire\", \"value\": 2},\n    {\"source\": \"Feuilly\", \"target\": \"Combeferre\", \"value\": 5},\n    {\"source\": \"Feuilly\", \"target\": \"Mabeuf\", \"value\": 1},\n    {\"source\": \"Feuilly\", \"target\": \"Marius\", \"value\": 1},\n    {\"source\": \"Courfeyrac\", \"target\": \"Marius\", \"value\": 9},\n    {\"source\": \"Courfeyrac\", \"target\": \"Enjolras\", \"value\": 17},\n    {\"source\": \"Courfeyrac\", \"target\": \"Combeferre\", \"value\": 13},\n    {\"source\": \"Courfeyrac\", \"target\": \"Gavroche\", \"value\": 7},\n    {\"source\": \"Courfeyrac\", \"target\": \"Mabeuf\", \"value\": 2},\n    {\"source\": \"Courfeyrac\", \"target\": \"Eponine\", \"value\": 1},\n    {\"source\": \"Courfeyrac\", \"target\": \"Feuilly\", \"value\": 6},\n    {\"source\": \"Courfeyrac\", \"target\": \"Prouvaire\", \"value\": 3},\n    {\"source\": \"Bahorel\", \"target\": \"Combeferre\", \"value\": 5},\n    {\"source\": \"Bahorel\", \"target\": \"Gavroche\", \"value\": 5},\n    {\"source\": \"Bahorel\", \"target\": \"Courfeyrac\", \"value\": 6},\n    {\"source\": \"Bahorel\", \"target\": \"Mabeuf\", \"value\": 2},\n    {\"source\": \"Bahorel\", \"target\": \"Enjolras\", \"value\": 4},\n    {\"source\": \"Bahorel\", \"target\": \"Feuilly\", \"value\": 3},\n    {\"source\": \"Bahorel\", \"target\": \"Prouvaire\", \"value\": 2},\n    {\"source\": \"Bahorel\", \"target\": \"Marius\", \"value\": 1},\n    {\"source\": \"Bossuet\", \"target\": \"Marius\", \"value\": 5},\n    {\"source\": \"Bossuet\", \"target\": \"Courfeyrac\", \"value\": 12},\n    {\"source\": \"Bossuet\", \"target\": \"Gavroche\", \"value\": 5},\n    {\"source\": \"Bossuet\", \"target\": \"Bahorel\", \"value\": 4},\n    {\"source\": \"Bossuet\", \"target\": \"Enjolras\", \"value\": 10},\n    {\"source\": \"Bossuet\", \"target\": \"Feuilly\", \"value\": 6},\n    {\"source\": \"Bossuet\", \"target\": \"Prouvaire\", \"value\": 2},\n    {\"source\": \"Bossuet\", \"target\": \"Combeferre\", \"value\": 9},\n    {\"source\": \"Bossuet\", \"target\": \"Mabeuf\", \"value\": 1},\n    {\"source\": \"Bossuet\", \"target\": \"Valjean\", \"value\": 1},\n    {\"source\": \"Joly\", \"target\": \"Bahorel\", \"value\": 5},\n    {\"source\": \"Joly\", \"target\": \"Bossuet\", \"value\": 7},\n    {\"source\": \"Joly\", \"target\": \"Gavroche\", \"value\": 3},\n    {\"source\": \"Joly\", \"target\": \"Courfeyrac\", \"value\": 5},\n    {\"source\": \"Joly\", \"target\": \"Enjolras\", \"value\": 5},\n    {\"source\": \"Joly\", \"target\": \"Feuilly\", \"value\": 5},\n    {\"source\": \"Joly\", \"target\": \"Prouvaire\", \"value\": 2},\n    {\"source\": \"Joly\", \"target\": \"Combeferre\", \"value\": 5},\n    {\"source\": \"Joly\", \"target\": \"Mabeuf\", \"value\": 1},\n    {\"source\": \"Joly\", \"target\": \"Marius\", \"value\": 2},\n    {\"source\": \"Grantaire\", \"target\": \"Bossuet\", \"value\": 3},\n    {\"source\": \"Grantaire\", \"target\": \"Enjolras\", \"value\": 3},\n    {\"source\": \"Grantaire\", \"target\": \"Combeferre\", \"value\": 1},\n    {\"source\": \"Grantaire\", \"target\": \"Courfeyrac\", \"value\": 2},\n    {\"source\": \"Grantaire\", \"target\": \"Joly\", \"value\": 2},\n    {\"source\": \"Grantaire\", \"target\": \"Gavroche\", \"value\": 1},\n    {\"source\": \"Grantaire\", \"target\": \"Bahorel\", \"value\": 1},\n    {\"source\": \"Grantaire\", \"target\": \"Feuilly\", \"value\": 1},\n    {\"source\": \"Grantaire\", \"target\": \"Prouvaire\", \"value\": 1},\n    {\"source\": \"MotherPlutarch\", \"target\": \"Mabeuf\", \"value\": 3},\n    {\"source\": \"Gueulemer\", \"target\": \"Thenardier\", \"value\": 5},\n    {\"source\": \"Gueulemer\", \"target\": \"Valjean\", \"value\": 1},\n    {\"source\": \"Gueulemer\", \"target\": \"Mme.Thenardier\", \"value\": 1},\n    {\"source\": \"Gueulemer\", \"target\": \"Javert\", \"value\": 1},\n    {\"source\": \"Gueulemer\", \"target\": \"Gavroche\", \"value\": 1},\n    {\"source\": \"Gueulemer\", \"target\": \"Eponine\", \"value\": 1},\n    {\"source\": \"Babet\", \"target\": \"Thenardier\", \"value\": 6},\n    {\"source\": \"Babet\", \"target\": \"Gueulemer\", \"value\": 6},\n    {\"source\": \"Babet\", \"target\": \"Valjean\", \"value\": 1},\n    {\"source\": \"Babet\", \"target\": \"Mme.Thenardier\", \"value\": 1},\n    {\"source\": \"Babet\", \"target\": \"Javert\", \"value\": 2},\n    {\"source\": \"Babet\", \"target\": \"Gavroche\", \"value\": 1},\n    {\"source\": \"Babet\", \"target\": \"Eponine\", \"value\": 1},\n    {\"source\": \"Claquesous\", \"target\": \"Thenardier\", \"value\": 4},\n    {\"source\": \"Claquesous\", \"target\": \"Babet\", \"value\": 4},\n    {\"source\": \"Claquesous\", \"target\": \"Gueulemer\", \"value\": 4},\n    {\"source\": \"Claquesous\", \"target\": \"Valjean\", \"value\": 1},\n    {\"source\": \"Claquesous\", \"target\": \"Mme.Thenardier\", \"value\": 1},\n    {\"source\": \"Claquesous\", \"target\": \"Javert\", \"value\": 1},\n    {\"source\": \"Claquesous\", \"target\": \"Eponine\", \"value\": 1},\n    {\"source\": \"Claquesous\", \"target\": \"Enjolras\", \"value\": 1},\n    {\"source\": \"Montparnasse\", \"target\": \"Javert\", \"value\": 1},\n    {\"source\": \"Montparnasse\", \"target\": \"Babet\", \"value\": 2},\n    {\"source\": \"Montparnasse\", \"target\": \"Gueulemer\", \"value\": 2},\n    {\"source\": \"Montparnasse\", \"target\": \"Claquesous\", \"value\": 2},\n    {\"source\": \"Montparnasse\", \"target\": \"Valjean\", \"value\": 1},\n    {\"source\": \"Montparnasse\", \"target\": \"Gavroche\", \"value\": 1},\n    {\"source\": \"Montparnasse\", \"target\": \"Eponine\", \"value\": 1},\n    {\"source\": \"Montparnasse\", \"target\": \"Thenardier\", \"value\": 1},\n    {\"source\": \"Toussaint\", \"target\": \"Cosette\", \"value\": 2},\n    {\"source\": \"Toussaint\", \"target\": \"Javert\", \"value\": 1},\n    {\"source\": \"Toussaint\", \"target\": \"Valjean\", \"value\": 1},\n    {\"source\": \"Child1\", \"target\": \"Gavroche\", \"value\": 2},\n    {\"source\": \"Child2\", \"target\": \"Gavroche\", \"value\": 2},\n    {\"source\": \"Child2\", \"target\": \"Child1\", \"value\": 3},\n    {\"source\": \"Brujon\", \"target\": \"Babet\", \"value\": 3},\n    {\"source\": \"Brujon\", \"target\": \"Gueulemer\", \"value\": 3},\n    {\"source\": \"Brujon\", \"target\": \"Thenardier\", \"value\": 3},\n    {\"source\": \"Brujon\", \"target\": \"Gavroche\", \"value\": 1},\n    {\"source\": \"Brujon\", \"target\": \"Eponine\", \"value\": 1},\n    {\"source\": \"Brujon\", \"target\": \"Claquesous\", \"value\": 1},\n    {\"source\": \"Brujon\", \"target\": \"Montparnasse\", \"value\": 1},\n    {\"source\": \"Mme.Hucheloup\", \"target\": \"Bossuet\", \"value\": 1},\n    {\"source\": \"Mme.Hucheloup\", \"target\": \"Joly\", \"value\": 1},\n    {\"source\": \"Mme.Hucheloup\", \"target\": \"Grantaire\", \"value\": 1},\n    {\"source\": \"Mme.Hucheloup\", \"target\": \"Bahorel\", \"value\": 1},\n    {\"source\": \"Mme.Hucheloup\", \"target\": \"Courfeyrac\", \"value\": 1},\n    {\"source\": \"Mme.Hucheloup\", \"target\": \"Gavroche\", \"value\": 1},\n    {\"source\": \"Mme.Hucheloup\", \"target\": \"Enjolras\", \"value\": 1}\n  ]\n}\n","encoding":"utf-8"},"preview.png":{"filename":"preview.png","type":"image/png","language":null,"raw_url":"https://gist.githubusercontent.com/mbostock/4062045/raw/0a568417d9b3617d7e13cc44f8113ba98908d84e/preview.png","size":91130,"truncated":false,"content":"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\ny02vmxHNnM0yzHaYdZij5g7maeZl5lctUAtHC57FDovOCYQJLhP4E8on3LKk\nWnpb5ltWWXZbMaxCrQqt6qxeTjScmDhx3cTWiV+tHawzrfdZ37NRsZlsU2jT\nYPPa1tyWbVtme92OZhdgt8iu3u6VvYU9136n/W0HusMUh+UOzQ5fHJ0chY7V\njn1Ohk5JTtudbjmrOkc4r3K+6EJw8XFZ5NLo8tHV0TXP9ajrX26WbhluB92e\nTTKZxJ20b1KPu747y32Pu9iD6ZHksdtD7KnnyfIs93zkZeDF8drv9dTbzDvd\n+5D3Sx9rH6HPCZ/3vq6+C3yb/DC/QL9iv3Z/Ff8Y/23+DwP0A1IDqgIGAh0C\n5wU2BRGCQoLWBd0K1g5mB1cGD0x2mrxgcksINSQqZFvIo1DzUGFowxR0yuQp\nG6bcDzMK44fVhYPw4PAN4Q8iTCJyIn6bSpwaMbVs6pNIm8j5ka1R9KhZUQej\n3kX7RK+JvhdjGiOKaY5VjJ0eWxn7Ps4vbn2cOH5i/IL4KwmaCbyE+kRSYmzi\n/sTBaf7TNk3rne4wvWj6zRkmM+bMuDRTc2bmzFOzFGexZh1LIiTFJR1M+swK\nZ5WzBpODk7cnD7B92ZvZLzhenI2cPq47dz33aYp7yvqUZ6nuqRtS+9I800rT\n+nm+vG28V+lB6bvS32eEZxzIGM6My6zJImclZZ3kq/Az+C3ZOtlzsjsFFoIi\ngTjHNWdTzoAwRLg/F8mdkVufpwqPOm0iU9FPou58j/yy/A+zY2cfm6M8hz+n\nba753JVznxYEFPwyD5/Hntc8X2/+kvndC7wX7FmILExe2LzIYNGyRb2LAxdX\nLKEsyVjye6F14frCt0vjljYs0162eFnPT4E/VRUpFAmLbi13W75rBb6Ct6J9\npd3KrSu/FnOKL5dYl5SWfF7FXnX5Z5uft/w8vDpldfsaxzU71xLX8tfeXOe5\nrmK98vqC9T0bpmyo3cjcWLzx7aZZmy6V2pfu2kzZLNos3hK6pX6r4da1Wz9v\nS9t2o8ynrGa71vaV29/v4Ozo2um1s3qX9q6SXZ9283bf3hO4p7bcuLx0L3Fv\n/t4n+2L3tf7i/Evlfs39Jfu/HOAfEFdEVrRUOlVWHtQ6uKYKrRJV9R2afqjj\nsN/h+mrL6j01jJqSI+CI6MjzX5N+vXk05GjzMedj1ceNjm8/QT9RXIvUzq0d\n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\nX/rSl877IkRE5JPJ9wOYuILh9uHg5rhsOXzfdfIV+OK/D4vfjmWaxGIxer0e\n9XqdTqeD4zjE43FisRiO49Dtdjk+PmZ3d5cgCJiZmaF6dMTvfvUr+J6HYYxD\nr+d5LC4uks/n6Xa7VKtVRqMRmUxGIVhEROQlp/8lICIiz4XrumxtbZHN5Zj4\ngZ/GXPx22Pgd6DegvAKv/mEGxevsrq6SSqVot9u4rsvExASlUolEIkG/36fb\n7TIcDul0OjQaDVzXpVwuc3h4SLPZpNFoMBgMKJVKZLNZWq0WzWaTyclJXnnl\nFdbX1zk4OGA4HLKyskImk1FfsIiIyEtKJdAiIvLMeZ7H5uYm29vbZLNZXnvt\nNeKJBJ7jgOcQ2AkC4O03f59bt26RzWaZnJxkamqK2dnZqAfY931GoxHtdpvV\n1VX29vawLIt8Po9pmjSbTY6Pj1lcXOTq1au0Wi2q1SrT09O8+uqrWJaF4zhs\nbm6yt7dHKpXi0qVLlMtlhWAREZGXkE6ARUTkmfJ9n93dXXZ2drBtm8XFReLx\nOJ7rsrq2TrPZwPd9EokE9XqdIAhotVosLi5y+fLlE2XKlmWRSqVwHAfDMJia\nmmJpaQnbtmm1WvT7fYIgoNPpsLGxge/7tFoter0eiUSCmZkZkskkly5dIpVK\nsbGxwebmJtlsjoTpwuY/hf03wfdh8jqsfB8kC+d9C0VEROQ5UQAWEZFnJggC\nDg4O2NzcxDRNVlZWmJiYwDAMgiCg2Wywvb2N67rkcjkqlQpTU1Pcv3+fra0t\nZmZmmJ+fP/GYYSn1cDhkbm6OhYUFTNNkbm4O13WpVquUSiXK5TKdToder0er\n1eLmzZscHh6STqfJ5/Nks1mWlpZIJJPEvQ785n8C3/zb0K+P+5ITOXj1R+AP\n/gyUls/7VoqIiMhzoAAsIiLPRBAEVKtV1tfXCYKA5eVlpqenMQyD0WjE4eEh\nh4eHDIdDbNtmamoqKlM2TZNbt27x1ltvkU6nKZVK0WMeHR1Rr9fJZDLMz89H\nK43CEmbbtpmZmeHatWv0+32q1SrvvvsuvV6P4XCI67o0m01M02RmZobZmWmM\nf/LX4Cs/D74DGGAYMOrAm78IdgL+mf8EYqnzvqUiIiLyjGkxooiIPBONRoO1\ntTVc12V+fp5KpRIF2Fu3bnH//n0cx6FUKjExMUEikcA0TSzL4tq1aywuLtJs\n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\n7/U1DHzfp9PpUK/X8X2fZDJJLBbDsixu3rzJaDTi1VdfPXWdVHhye1oADq8h\nk8mQSqVot9sMBgPa7faJENxut1lfX2dmZobp6enolPpx+4Ef1uv1oj3A3W6X\n4XBIoVB44uAtERF5eagEWkRELhTHcVhbXWXkA7k5mLjKyM6zsbWF44we+f6w\nD7jdbkclr4ZhMDc3RzKZjIZMhWuGnsZHLYMOe3pv3HiN+dlJykYTu/oOqcEe\ny5VpKpUK8Xicy5cvc/nyZWq12okS7TCUxmKxx55ghlOaw1LrJ72m5eVlvu3b\nvo2lpSU8z6PZbDIcDqPeYBifmO/s7HBweIj73gTt2dk5CoUC6XT6zJPmMKT7\nvn+i9zlkGAblcpkrV66QSqWi/b6Hh4d0u102NjYol8vMzMyceA7Lspifn2c0\nGrG/v//YsubyxARLy5ewbZvp6Wna7fZTl76LiMjLQVviRUTkQgnD5oMhyDQN\net0urVaLycnJE98f7pgN+4DDk9B4PM7S0hJ7e3vRieqDX3+Sh6dBP80pcBAE\n0eTlqelpksMqvPMb0FgH3x0P9ypeIn35i3zrZz+LZZq4rsvx8XH0msPpzxMT\nE4xGI5rN5pml2+G+4P39faanp5/42gzDoFQq8elPf5pSqcTGxkZ031KpFKZp\nUiwWWVxaIpdJYbkDsnF448Z1Bq6P7/snwvLDj/3gfTjr+cvlMgD3799nMBhw\n9+5dLMtiZmaGSqVy6glvMplkcXGR9fX100vZnT7U7mH1jsCwIT9PvrDE3Nxc\ndIr/QQRBQM/t0XN6mIZJLp4jbqmUWkTkk0ABWERELpRwmNWDgSoWi1EoFGg0\nGkxMTJz4mm3bZLNZjo+PGQwGJ0JgoVCgUChwfHwcnTqGk4ufJJwGXa/XaTQa\nTwzAvu9TrVbZ399nfmGBpN+Fd/8XqK+D8V6o8xw4fAecLok3/iTEy9GQqdBo\nNMIwDObn58nn8+zs7JBMJs+87nD/cb1eZ3p6+qleWyKR4PLly+TzedbW1jg+\nPqbT6VCpVLh2/Toprw2rvwXNLfBGGJlp0vPfhl+6eurjGYYRBddw6NhZwhBs\nWRZ3795lb28Py7KoVCqPLVXO5/NRqfiJ+9Grwr1fg+odcAfj3vFYBqPybZQv\nfYGeM/4z9aQd0NH990Z8eefL/J27f4f15joJK8G3Tn8rP/bKj/FK6RWVU4uI\n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\n7t271Gq16E2Vpy0RB6JS94cHeomIyMeXArCIiFwYYQB+UrmpYRiUSiV2dnai\nAAnjk+FsNsvBwQH9fj8Kr/F4PDoZfTAAp9NpZmdn2d/fJ5lMMhqNaLVaVOYq\nlCfKJ4K467p0u108z2NiYuLM8Bu+jmazGT13OIn6+Pg4miwcBAGZTIZarYZl\nWVy5coVWq8XW1hYjx2H2i19k7vu/H2M4BNvGTyYZOA5Hu7vRUKiZmRm63S47\nOzusrKxE15tIJMjn81SrVfL5PIZh4LouW1tb1Go1VlZWzjy59jyPTqdDJpM5\nsU85vO+zs7N0Op1x+felFb569FX+9q2/Tc/tvd8ja4DjO/y9+3+PT099mh9d\n/lFWV1dpNBvUajU2NzdJp9NMTExQLpfJ5/PR6WytVmN6eppKpRKVLgNcunQJ\ngIODA46PjwEeCcEPvymQSqWYmppif38/eo5iscjh4SGNRoOpqanH/jmLxWJR\nb7aIiHwyaA2SiIhcGE97AgzjtUcwPq0MGYZBLpcjCAI6nU70+XCScxiIH1wT\nNDk5STKZpF6vk8vmmJmfwcyZtJ02ju9Ez7G2tkYikaBYLEanuGfp9Xr03ytf\nzuVymKaJ67ocHx9jmia2bTMcDkkmk9HpcLVaZX5+nsXFRQ7293n7rbdY3d1l\nu9tl/fiYd+/d49bNmzSbTer1OhsbG8D4lLTX63F4eHjiPkxOTtLpdKLp19vb\n2xwcHLC4uMj09PSZ4X00GtHpdMjlcqeW/VqWxeLi4vg+E/D1g69THzy6N9c0\nTIbekN/d/11cXBLJBKZpkkqlyGQyWJZ1YhXV7u4urVaL+fl5rly5QjabPXGN\n8Xg8Cv2GYXB8fMz9+/ej+xy+7rC/d2trC8/z3tvLbEfl6LFYjHK5TPW9XuzH\nMU0T0zSf+H0iIvLxoRNgERG5MJ40AfpBsViMXC4XTRoOw1IYrtrtNp7nYVkW\ntm3z2quvjU9xe93oOXzfp9lsjntJ81l+++C3+eX7v8xac410LM23TH0LP/7q\nj1O2ypTLZSqVCuvr63S7XbrdblQW/bBGo4HruliWRT6f5/j4mHa7Ta/Xi3pR\nB4MBvu+TTCbJ5XK0Wq1onVIymWRtbY29vb3oMcN1Tp7nMRqN2NrawjAMLl++\nzPz8PFtbW2Qymai3NZ1Ok06no57ovb09KpVKVFJ8lm63G/XRniWVSkXDt1qj\nFgHBqYHawKDjdPDxyefy9Pv9E9/X6XR46623ME2T+fl5rl27FvUcnyYMwYZh\nRCfBnuedmGIdBvR79+5xcHBApVJhbm6O9fV1isUiuVyOcrnM0dERrVbrsROh\nDcNQABYR+YRRABYRkQvB931c1yWdTj/1zxSLRTY2NhiNRtHpbrgmKQxah71D\nfu/g99jp7FBMFPnM1Ge4mroanYqORiOWlpf4u6t/l7/6tb9KY9jANMZrc755\n+E1uHt/kS9/9JVZWVnBdl6OjI+r1Oo1G49QA7LourVYr6qFNJpP4vk+tVsP3\n/SgA93o9BoMBk5OTlMtlOp0OR0dHZDIZyuUy8Xic9fX1aHhXEASMRiOy2SxT\nU1PUajXu3LmD53lRP+/W1hZXr14lHo9jmiYTExPcvHkTgEqlwvz8/BNP1zud\nTnRifhbDMKLf00JuAcuwTky0hnEfdEDAQm6BuBnHcZ3o877vMxgMGAwG2LZN\nIpGg0+mwsbFBpVIhl8udeUIdj8dZWVnBsix2d3dpNBrcu3ePq1evRtecTCZZ\nWFiI+oELhQKFQoG9vT3S6XR0kn90dEShUDjznhiGEZXOi4jIJ4OmQIuIyIXg\neR7VapVcLvfUIdi2ber1+onAFpatTk9P807jHf6Df/of8Iu3f5Evb3+ZL+98\nmd/e+W0SVoLrpes4I4epySm2B9v8x1/9jznoHmCb4z2/pjEORTudHWzT5jvm\nvgPbGpcuN5tNgiBgYmLikTLhsCfX8zwmJyfJZDIcHBwwGAyAcagyDAPHcXBd\nl8uXL1OpVKI9t+12m3w+Hw1y8n2fbrcbheDhcIhpmtFqprW1NXq9XtQPPBwO\no8FXrVaLtbU1yuUy169fj6Y3n8V13ah/9nFl0vDeWiYMiski3zj8Bge9gxNl\n0H7gU8lW+Mlv+UmKRpHtnW1c12UwGNBut6NT5nQ6jWVZ0eus1+u4rhtNiz7t\nGkzTJJfL4fs+nU6HwWBAr9cjl8tFfcuJRALf9zk4OKBQKJDL5Tg8PMQ0TTLv\n7U8+PDw8URp/2mus1+skEonHviEgIiIfH+oBFhGRCyEIgmg/7tOybZtcLkej\n0YgGFRmGwdTUFE2/yV/92l/lq3tfZeSNMA0TP/DZaG3w177x1/jqwVeZmZkh\nlU7xdvVt9jp7UegNhVOJf3f/d2mNxpOJi8ViNNG52+0+ck3NZjMqfy4UCnie\nF5UVh2HOMIxodU+hUIiGNYWnqOE6n/C089KlSydKw9vtNvv7+0xOTvLGG29w\ndHTEm2++CUC1WqVWq0XDpiYmJp76no5GIwaDAfl8/rEnxUEQ0Gw2WVtfYzYx\ny1/83F/kM1OfwTZtvMDDNEwuFy/zFz77F3i9/Do7uzt0u11arVY0nCyVSkX3\nN7wnMO7P3tra4ubNm9Gu57N+90tLS1FJd7i6KewJf7AfeHt7G9u2mZmZid6M\nSKVSZLNZjo6OzpzyHO6kfly/t4iIfLyoBFpERC4E3/fxPO+Jp5QPK5VKrK6u\nMhwOo/5RwzD4p3v/lN8/+n0s4+QpoolJtV/lV1d/lW+f/XbiVpz2qI0bnB5y\nDMOg63Tx/HEfaDqdjlYwPVwG7XletGc2lUqRz+c5PDxkNBo90tts23bUowzj\nYVzhKXCv1+Po6IiZmRksy6JSqZBMJllfX6fX6/H/Z+/PfiRL0/RO7HcWO3Zs\n3xc3N989InKprOp9I5vDfaY5Q4KkSAkYSCAgEMJA+h+EvpsbXepi7gQBgm40\nwlBDkZJmhuSQvbG7q7sqKzMrY/HV3G3f9+0suvD4vjSL8Niysqoys75fwRFZ\n4e5mx+wcD/hznvd9HrjrNr6+vmZ3d5ePPvqIp0+fUq/XMQyDTz/9lEAgQCKR\nYH9/n+vra4bDIZlM5rXv5WQyeeP+r+u6NJtNbm9vsSyLfD7Pb5d+m73YHn/Z\n+kvqkzrJYJJfLf4qJ4kTxuMx7XZbjlZHo1FM05Tdv/P5HNM05Q0BQIaYnZ+f\n0+v12N3dlWFiL76H+/v7mKbJzc0Nw+GQZ8+ecXJyQiKReGkfuFAoyH7mg4MD\ncrkcl5eXzOfze6cOxA6wGoFWKBSKbw9KACsUCoXia4Fw2e5LHn4doVAIy7IY\nDAZbAUpXoyuW7hJD2348TdPQfI3byS1zZ45lWBwljogEIoxX45fSjD3f4yB+\nQDhwJ5BM0ySZTDIYDBgMBqzXayluF4uFTJ8W47ij0WjL/RUurxB8oqvXNE2K\nxSKVSoVUKkWz2SQcDkvhJ5xc0eMr3rObmxuy2SwnJyfc3t6yWCxotVqEw2Ee\nPnxILBYjmUzS6XRIpVKvdHZ932c8HhMIBF4ZRDWfz7m5uaHb7ZLJZNjb25Nf\nW7SL/Ge7/xlmwEQ37oKjWq0WrVaLbDbL8fExo9GIfr/Per1G0zSCwaBMxF4u\n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\nBp0psXSA0maCjWsbDIdD9vf3mUwmKmDvdDoMh0NM06TRaNDr9ej3+7z22muE\nw2EmkwnJZJJWq6Uev3txIJlMYo4ddl6r4jjnKyc05ln1w3ebNMsD8mtynBZC\nPBtyFiDEFfftW3n+p5+W+fFe83w21XbYzEf5Sy8V+airhc9mefv9vsoguCeK\nmUxG7Y9sNptUKhW8Xi/RaFSt2vjSSpH//K9/kR/vNym3R2Qjfl5eSrCWCUt5\n8zPQbrcZDof4/X5SqdSF30G73WZnZwfbtllfXycej2Oapjq53t3dVdN03Qzx\n436P0+mUWq2G4ziPLLk+y92ZKlUB4qxoJsgLv7jAD//ZDqZpc6YFGK/f4MWv\nL2D4YTgYEovFVCDqZnbdi3fj8ZjJZKImM7sBsltybRgGsViMrT9t0jqdB7/n\nK2NgMpix/VqVr25ukE6n6ff7aJpGIpEgEomcq7w5+33P7gV2hwdqmkYul2N1\ndY3Dt9r88Dd36FRGmKaN16eTW43x8/+zDV783Iu0221OT0+xLOvcNG3bttWO\nY7e/v9Pp4Pf71fvp4dkPtmMz6s0YD8xH/rthTi367Qn5Z/3LF0JcWRIAC3HF\nLaVC/Ed/8Rb/j9++x+uH7Xk21dC5WYzx67+0ya1i7Ge/E1ADsEajkSptnkwm\namJpJpMhFAqp0sJWq0WlUkHTNAqFAtPplMPDQyKRCIZhsLe3z9raGn/ppdKz\nfgqvPNM0qdfrOI6j+hDP6na77OzsqAyRWx7t9/sZj8fs7e0xm824ceOGWucy\nm83Ora96mJv91XVd7SJ9FNu26ff7T9X/K64WXdd48WslLNPmvT8uq0nQobif\nl765yI0vFxiO3794YhjGuSAzFAqRTCaJRqPq79xdv2c/fD4vXq+PXnOCbTno\nxiUXazSNXnOMY2vqdWpZFvX6fP6CW5bslly7f3Z7et2VRrPZDL/fz/Ub12kd\njfij/+E+vcb4QZ8zmDOb47st/uh/2OLP/a0Xefnll+ZZ6MGAWCyGrutMJhPG\n4zGBQED9vG75t8/nOzcUcf48zjPBju3gD3vwBgxGPeCSIFj36AQjj35vCyHE\nx00CYCEEr66m+Pt//Qu8edSh3B6Rifh5aSlOIRb4mbKpl2V53X5NN2hxh7K4\nw1TcbIRpmuRyOZLJJPV6nYODA5LJJAsLC+zv76s+NfHsueXpHo+HZDJ5rsR4\n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\nRK5CYII=\n","encoding":"base64"},"thumbnail.png":{"filename":"thumbnail.png","type":"image/png","language":null,"raw_url":"https://gist.githubusercontent.com/mbostock/4062045/raw/0bf73a11321b9ffe4d9c59aa3df2161c90ee9235/thumbnail.png","size":12145,"truncated":false,"content":"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\ny02vmxHNnM0yzHaYdZij5g7maeZl5lctUAtHC57FDovOCYQJLhP4E8on3LKk\nWnpb5ltWWXZbMaxCrQqt6qxeTjScmDhx3cTWiV+tHawzrfdZ37NRsZlsU2jT\nYPPa1tyWbVtme92OZhdgt8iu3u6VvYU9136n/W0HusMUh+UOzQ5fHJ0chY7V\njn1Ohk5JTtudbjmrOkc4r3K+6EJw8XFZ5NLo8tHV0TXP9ajrX26WbhluB92e\nTTKZxJ20b1KPu747y32Pu9iD6ZHksdtD7KnnyfIs93zkZeDF8drv9dTbzDvd\n+5D3Sx9rH6HPCZ/3vq6+C3yb/DC/QL9iv3Z/Ff8Y/23+DwP0A1IDqgIGAh0C\n5wU2BRGCQoLWBd0K1g5mB1cGD0x2mrxgcksINSQqZFvIo1DzUGFowxR0yuQp\nG6bcDzMK44fVhYPw4PAN4Q8iTCJyIn6bSpwaMbVs6pNIm8j5ka1R9KhZUQej\n3kX7RK+JvhdjGiOKaY5VjJ0eWxn7Ps4vbn2cOH5i/IL4KwmaCbyE+kRSYmzi\n/sTBaf7TNk3rne4wvWj6zRkmM+bMuDRTc2bmzFOzFGexZh1LIiTFJR1M+swK\nZ5WzBpODk7cnD7B92ZvZLzhenI2cPq47dz33aYp7yvqUZ6nuqRtS+9I800rT\n+nm+vG28V+lB6bvS32eEZxzIGM6My6zJImclZZ3kq/Az+C3ZOtlzsjsFFoIi\ngTjHNWdTzoAwRLg/F8mdkVufpwqPOm0iU9FPou58j/yy/A+zY2cfm6M8hz+n\nba753JVznxYEFPwyD5/Hntc8X2/+kvndC7wX7FmILExe2LzIYNGyRb2LAxdX\nLKEsyVjye6F14frCt0vjljYs0162eFnPT4E/VRUpFAmLbi13W75rBb6Ct6J9\npd3KrSu/FnOKL5dYl5SWfF7FXnX5Z5uft/w8vDpldfsaxzU71xLX8tfeXOe5\nrmK98vqC9T0bpmyo3cjcWLzx7aZZmy6V2pfu2kzZLNos3hK6pX6r4da1Wz9v\nS9t2o8ynrGa71vaV29/v4Ozo2um1s3qX9q6SXZ9283bf3hO4p7bcuLx0L3Fv\n/t4n+2L3tf7i/Evlfs39Jfu/HOAfEFdEVrRUOlVWHtQ6uKYKrRJV9R2afqjj\nsN/h+mrL6j01jJqSI+CI6MjzX5N+vXk05GjzMedj1ceNjm8/QT9RXIvUzq0d\n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\nURWF/ZGL48Toqob2rnchLa8wPXkCDg6wr1lXWZapVquMRhmVxhnqxi7/+unf\noL/T5xfXfpHdnV1q9RoLCws4joMTpmj1U0S+j6bJJGnCWnWNttLG1ux536a3\nPEKYx4w0Ta+vkw1Cnp8+z28//9t8+N4P8/n1z/OV3lf4xHd9gnbcLrZ8+b5H\nt9PBbDZJm012t7eZbm9j2zaaprGysnLttUFVFMqWzfnGeQb+ACVV2Nvfw/Vc\nNE2j0+lwcHDA8GBQbB/LryfLMjIypFsO1RR8JwhhHgF5nChJ334If7gMTlVV\nwiBkHI+5OLrIMBzyaPdRFFlhsb6IP/WJ3ZgoipAkiVarhWWaZFnGmdOnuXTp\nEgcHB3Q6HTzPKwQ/HA1RFIWfuedncFyHeqXOoDlge3ubF154gb29PVZXV9E0\njclkgmEY+L6PZVnFOnrB0SLOMd9gsizjhek36AU7PF5/FyW1/G0933Gc69qw\nPNfDCRxe2nuJptqk2+qSkkICrjfLpLquS7VaZW1tDVVVmU6n6LrOdDplMBjg\nOA6t9sLsdTWVarUKzHozc8HllUQ7OztsbGwQhiFLS0tFE7eiKFQqFXRdxzRN\nUap3xIi7+waTkbHpX2HTu8IZ7TwxKaqmFjN3bjV4+cbCcU3XUHyFZtYk9mbF\n7KEfFsmhfBNYq9XCsiyCIMA0TXZ2djhx4gTdbpfLV65QifcpRRMm9hn8wKBR\nr6OqKoZhMBwOUVUVy7I4deoUi4uLbG1tsb6+PuvHrMyK6aMoot1uC4t5BxDC\nfIORJZkn6u/Dqzq01AXiKCEMw6JAQFGUYvGPpEg48RRLsdBkvSguPyxeRVFQ\n1Nkvx3UKMcGsKXo8HtPpdKhWq6iqiuM4RNFsEZHrzmJGU9dojv8Gffwy2ZlF\n+hOZ8FqJn2EYKIrCYDCg2WwiyzKmaXLmzBmWl5fZ2NhgfX0d3/cxDKPY3yk4\nWoQwj4CqVqNKDQBVmbVx5WM88uZm3/MZKvv85fhz3F95Gw+VHifNUqIoIkmS\nmTilWYpF07RivEi+QkFVVTzfp2TqdJtlTMMgjmP29/eL2UD7+/u4rouu69jt\nB5H0DoFcQZc1sixjNBphGEbRoL2zs4Nt28WXgyzLdLtdarUaV69eZdA/4NKX\nRmwbCY99/xqaIYpojwohzDuEJEmoqlq4jGQQBh5ltUIWQM/tUalUiil42wch\ne+OEtZaCnM7ashzHodfrUS6XSdOUJI55bMGj1v8sE0tmaypjGHpx9hmGIaZp\nsrq6ysF0yt40omOldLs1sizDcRzCMMR1XRqNRtHXqet68XzHcRiPxyRJQrVc\nY/3pgMB1OP/OBRodMXLkqBDCnBcStLUu7za/j6pdYW+3x97eHtVqlXK5zJXB\nhO2DgKWGTdOyqFQqyNfavzRNY29vr8jGZlnK/n6PRG9Tq9WuS95UKhWyLCMK\nQ3RNxTQNHMeh2WxSLpfxPI/hcMjVq1cxDIPReEy1bDMcjRgOR0UTda1WY3Fx\nkZVOwvrVTZ597mucDU6ztLT8HSeC8phVLD76FkKYcyRJEojB0E1OnDjBYDA7\nskjTlNOdJosNAyl2McwKrVaLzc1NsiyjVCrhui6e57EurbF06hGCA4fxaMTl\nV15BURRWV1dZWFgAYDgcIsnyzKW1y/i+V1QOBUFQJJG2trdZqqpU+y8jWyeJ\nyydYWlqi2WxiGAaSJBFFO6TGFNso8cILL+L7AYuLi8U4km8X3wnZvjSgsVim\nvvDtZbDfyghhzpG8Fha+Ne9HURQcx2Fna51ut4tsGoxGI2q1GqVSCcdxmEwm\n7O/vzxJBlo1kVkFycV2XM2fOoGkaYRiysbGBpmmMxmMWayaN6BXwFK70Ylxn\ntkZe13UMw6DRaNDpdqklfbQr61SsBkm7jXkt0XT4Wk3TYmlpCcuy2NraKiyq\nbdvFkOpbkWUZURwx7E/YvjRAkiUhzEMIYc6Rwx92gOza9PVarc5kMmZnZ4dS\nqYRlWTiOQ71ep9frceXKFVzXZWlpCcMw2FhfR5Zlzp07h23bWJbFzs4Omqax\nv7/PxuYWrczEOPgyYRpilx5B1zQWFhaKEZjT6XRmPc0u4YMfQSu3sGK52NmZ\nu6ue56GqKq7rsry8DMDu7m5RFRRFUbEM6WauaZZlBMFs7WCaplRbFS684ySl\nijnvf45jhRDmHMlnuuaEqQRISBJUq1VKpRJ7e3v0+30MwyjW6eVzf1RVZX9/\nn3a7TavVwnVdLl26VOzEzAviu90OabVGT/sAU8rX7UTxfZ/JZEK1Wp3NGpIk\nMqOFZOjYBsUkvTAMkWUZTdNoNBr0+31arRbNZhPf91lfX2d1dbU48skTTzeO\nxpxOp0iSVOwBlSSJkjh9eRWi8mdOTOIR3xx+jdXSWZatk4Rxyl+/NAYyHjtT\nRlNAlmcFCY7jsL6+ThiGpJLKoN/HmQyp1+s0Gg1gNqRZvhZHhmFIt9ulWq3i\nOE5xhDJ1PAzTQFMVnOm0sLrlchlN06hWq8XYkhvd0Vk9rs/29jaWZbG5uclD\nDz1EHMdkWcbFixdxHIcTJ06gqrOCe03VWX9mgjMMuefdTRQ9w7bLRbwqeG2E\nxZwT++EeX59+hUzKqKctkgwsXUYCPNdlEgXFDhPf92cup11l26+hLXSoyi+Q\nJLMzz3q9zsrKSjETaDKZMBqNiOOEIIyKpI+euiwpm4TV04ysDkkSM5lMiml7\n+Z6Um8WIubUslUpFmV6/36fdbhOGIefPn+fFF19kf3+fs2fPEsURURhz+Rt9\nxj2f+9+7TKMlTOPtonzsYx/72Lwv4m6kpJRZMBY5VTpH2aygqTI1M6Vb04G0\niMV6vR69Xo/BYEAGSEaNSsmgrMUE16ao59MK8jGUwCwudHcww31CpYzjBrTT\nbapbn0ezm1jLD6BdK1rodrsArK+vF/GkpmmvEmj+M+r1elEKaFlW8cXRbrcZ\nDocMh0Psko3jTql2NRbOWVTbeuG6Cm6NcGWPiDhNkZBQ5G8NT86rf5JkNjUg\niVPiJCoWAY0DhSCRKcsOo+Gs+BzAMAzK5TKDwQBNN7hw4QKmoTEez0ry8pmy\niqLMYjpJwlBlFrY+jexssdn9EIPIoKolLGsHhOU1DsLZwqI4jqnValQqFXq9\nHtPplCiKkGWZZrNJ/VpNLcwSP5PJhE6nw6VLl4jjmLNnz5KmKYPBoJhRe/Hi\nRdI05cyZM6iayuXLl2k1W7Tb7eI8VvD6CFf2CBi6IZ/40xdZqVv85OOLJGFA\ncmgLVz4uRFZkNHlWHJ5mGbtTiQMn5nxbRtNUOp0O5XKZUqnE5uZs47Np6JCl\nyLJCvV6nWq3i+34xYzYvp1M1jaD1EJK9gl7rkO4NuLwzZNhoUkpjnOmQMAyp\n1WrFktxqtUqtVptdT5rS7/fp9/vUajWazSZJkhSiymfc5mM1a7UaBwcHhGFI\no9HAdV22trZYXV2lXq8hSVJhZW8Wwwqu564WZpZlxGmGKktviIuVZRmB77Ox\nO+Spl3qcaZf5e48tYpVKxUq93EX1PK9YIJtbuhN1WKxqqIlPtdmkXK5gGAaX\nLl0q1hk0m83rujtkWaZUKmGaZpE9TdOUNE2ZlE4zipvIbsjS4iJkGe1Ws5gf\n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\n","encoding":"base64"}},"public":true,"created_at":"2012-11-12T21:31:44Z","updated_at":"2025-10-24T13:10:44Z","description":"Force-Directed Graph","comments":15,"user":null,"comments_enabled":true,"comments_url":"https://api.github.com/gists/4062045/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/4274326","user":{"login":"nrrb","id":486230,"node_id":"MDQ6VXNlcjQ4NjIzMA==","avatar_url":"https://avatars.githubusercontent.com/u/486230?v=4","gravatar_id":"","url":"https://api.github.com/users/nrrb","html_url":"https://github.com/nrrb","followers_url":"https://api.github.com/users/nrrb/followers","following_url":"https://api.github.com/users/nrrb/following{/other_user}","gists_url":"https://api.github.com/users/nrrb/gists{/gist_id}","starred_url":"https://api.github.com/users/nrrb/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/nrrb/subscriptions","organizations_url":"https://api.github.com/users/nrrb/orgs","repos_url":"https://api.github.com/users/nrrb/repos","events_url":"https://api.github.com/users/nrrb/events{/privacy}","received_events_url":"https://api.github.com/users/nrrb/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Nicholas Bennett","company":"CyberMaxx","blog":"","location":"Baltimore, MD","email":"nicholasbennett.work@gmail.com","hireable":true,"bio":null,"twitter_username":null,"public_repos":45,"public_gists":77,"followers":118,"following":173,"created_at":"2010-11-17T22:43:04Z","updated_at":"2026-03-23T14:26:19Z"},"id":"4274326","created_at":"2012-12-13T05:44:00Z","updated_at":"2015-10-13T23:38:28Z"},{"url":"https://api.github.com/gists/4370536","user":{"login":"caseyg","id":462020,"node_id":"MDQ6VXNlcjQ2MjAyMA==","avatar_url":"https://avatars.githubusercontent.com/u/462020?v=4","gravatar_id":"","url":"https://api.github.com/users/caseyg","html_url":"https://github.com/caseyg","followers_url":"https://api.github.com/users/caseyg/followers","following_url":"https://api.github.com/users/caseyg/following{/other_user}","gists_url":"https://api.github.com/users/caseyg/gists{/gist_id}","starred_url":"https://api.github.com/users/caseyg/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/caseyg/subscriptions","organizations_url":"https://api.github.com/users/caseyg/orgs","repos_url":"https://api.github.com/users/caseyg/repos","events_url":"https://api.github.com/users/caseyg/events{/privacy}","received_events_url":"https://api.github.com/users/caseyg/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Casey Gollan","company":"Senior Engineering Manager @IBM","blog":"https://caseyagollan.com","location":"New York, NY","email":"hello@caseyagollan.com","hireable":null,"bio":null,"twitter_username":"CaseyG","public_repos":135,"public_gists":15,"followers":149,"following":328,"created_at":"2010-10-31T21:19:24Z","updated_at":"2026-04-05T19:42:23Z"},"id":"4370536","created_at":"2012-12-24T20:02:49Z","updated_at":"2015-12-10T02:48:51Z"},{"url":"https://api.github.com/gists/4490624","user":{"login":"Checksum","id":91416,"node_id":"MDQ6VXNlcjkxNDE2","avatar_url":"https://avatars.githubusercontent.com/u/91416?v=4","gravatar_id":"","url":"https://api.github.com/users/Checksum","html_url":"https://github.com/Checksum","followers_url":"https://api.github.com/users/Checksum/followers","following_url":"https://api.github.com/users/Checksum/following{/other_user}","gists_url":"https://api.github.com/users/Checksum/gists{/gist_id}","starred_url":"https://api.github.com/users/Checksum/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Checksum/subscriptions","organizations_url":"https://api.github.com/users/Checksum/orgs","repos_url":"https://api.github.com/users/Checksum/repos","events_url":"https://api.github.com/users/Checksum/events{/privacy}","received_events_url":"https://api.github.com/users/Checksum/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Srinath Sankar","company":"@Chargebee","blog":"https://noisybrain.dev","location":"Melbourne","email":null,"hireable":null,"bio":"Painstakingly handcrafted, environment friendly, artisanal bugs.","twitter_username":"Checksum","public_repos":43,"public_gists":26,"followers":42,"following":40,"created_at":"2009-06-03T12:34:56Z","updated_at":"2026-04-08T02:08:13Z"},"id":"4490624","created_at":"2013-01-09T04:39:44Z","updated_at":"2015-12-10T20:48:49Z"},{"url":"https://api.github.com/gists/4589092","user":{"login":"thedod","id":225574,"node_id":"MDQ6VXNlcjIyNTU3NA==","avatar_url":"https://avatars.githubusercontent.com/u/225574?v=4","gravatar_id":"","url":"https://api.github.com/users/thedod","html_url":"https://github.com/thedod","followers_url":"https://api.github.com/users/thedod/followers","following_url":"https://api.github.com/users/thedod/following{/other_user}","gists_url":"https://api.github.com/users/thedod/gists{/gist_id}","starred_url":"https://api.github.com/users/thedod/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/thedod/subscriptions","organizations_url":"https://api.github.com/users/thedod/orgs","repos_url":"https://api.github.com/users/thedod/repos","events_url":"https://api.github.com/users/thedod/events{/privacy}","received_events_url":"https://api.github.com/users/thedod/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"The Dod","company":"Retirement trainee","blog":"https://zzzen.com","location":"Israel","email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":100,"public_gists":88,"followers":61,"following":63,"created_at":"2010-03-18T18:52:07Z","updated_at":"2026-04-09T14:18:51Z"},"id":"4589092","created_at":"2013-01-21T20:36:22Z","updated_at":"2015-12-11T10:48:50Z"},{"url":"https://api.github.com/gists/4600693","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,"name":"Mike Bostock","company":"@observablehq ","blog":"https://observablehq.com/@mbostock","location":"San Francisco, CA","email":"mike@ocks.org","hireable":null,"bio":"Building a better computational medium. Co-founder @observablehq. Creator @d3. Former @nytgraphics. Pronounced BOSS-tock.","twitter_username":"mbostock","public_repos":88,"public_gists":1043,"followers":23371,"following":0,"created_at":"2010-03-25T22:02:56Z","updated_at":"2026-04-10T07:01:19Z"},"id":"4600693","created_at":"2013-01-23T01:00:48Z","updated_at":"2024-03-26T18:26:06Z"},{"url":"https://api.github.com/gists/4739252","user":{"login":"PhilippStelzer","id":2028063,"node_id":"MDQ6VXNlcjIwMjgwNjM=","avatar_url":"https://avatars.githubusercontent.com/u/2028063?v=4","gravatar_id":"","url":"https://api.github.com/users/PhilippStelzer","html_url":"https://github.com/PhilippStelzer","followers_url":"https://api.github.com/users/PhilippStelzer/followers","following_url":"https://api.github.com/users/PhilippStelzer/following{/other_user}","gists_url":"https://api.github.com/users/PhilippStelzer/gists{/gist_id}","starred_url":"https://api.github.com/users/PhilippStelzer/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/PhilippStelzer/subscriptions","organizations_url":"https://api.github.com/users/PhilippStelzer/orgs","repos_url":"https://api.github.com/users/PhilippStelzer/repos","events_url":"https://api.github.com/users/PhilippStelzer/events{/privacy}","received_events_url":"https://api.github.com/users/PhilippStelzer/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Philipp Stelzer","company":"Wooga","blog":"www.wooga.com","location":"Berlin","email":"Philipp.Stelzer@wooga.net","hireable":null,"bio":null,"twitter_username":null,"public_repos":0,"public_gists":1,"followers":0,"following":0,"created_at":"2012-07-23T15:40:08Z","updated_at":"2020-01-26T00:10:02Z"},"id":"4739252","created_at":"2013-02-08T14:13:08Z","updated_at":"2015-12-12T07:48:58Z"},{"url":"https://api.github.com/gists/4963194","user":{"login":"syntagmatic","id":156229,"node_id":"MDQ6VXNlcjE1NjIyOQ==","avatar_url":"https://avatars.githubusercontent.com/u/156229?v=4","gravatar_id":"","url":"https://api.github.com/users/syntagmatic","html_url":"https://github.com/syntagmatic","followers_url":"https://api.github.com/users/syntagmatic/followers","following_url":"https://api.github.com/users/syntagmatic/following{/other_user}","gists_url":"https://api.github.com/users/syntagmatic/gists{/gist_id}","starred_url":"https://api.github.com/users/syntagmatic/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/syntagmatic/subscriptions","organizations_url":"https://api.github.com/users/syntagmatic/orgs","repos_url":"https://api.github.com/users/syntagmatic/repos","events_url":"https://api.github.com/users/syntagmatic/events{/privacy}","received_events_url":"https://api.github.com/users/syntagmatic/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Kai","company":null,"blog":"","location":"San Francisco","email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":61,"public_gists":168,"followers":406,"following":13,"created_at":"2009-11-21T04:15:57Z","updated_at":"2026-03-23T00:28:49Z"},"id":"4963194","created_at":"2013-02-15T20:15:49Z","updated_at":"2015-12-13T19:28:58Z"},{"url":"https://api.github.com/gists/5000142","user":{"login":"shoha99","id":3074910,"node_id":"MDQ6VXNlcjMwNzQ5MTA=","avatar_url":"https://avatars.githubusercontent.com/u/3074910?v=4","gravatar_id":"","url":"https://api.github.com/users/shoha99","html_url":"https://github.com/shoha99","followers_url":"https://api.github.com/users/shoha99/followers","following_url":"https://api.github.com/users/shoha99/following{/other_user}","gists_url":"https://api.github.com/users/shoha99/gists{/gist_id}","starred_url":"https://api.github.com/users/shoha99/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/shoha99/subscriptions","organizations_url":"https://api.github.com/users/shoha99/orgs","repos_url":"https://api.github.com/users/shoha99/repos","events_url":"https://api.github.com/users/shoha99/events{/privacy}","received_events_url":"https://api.github.com/users/shoha99/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":19,"public_gists":1,"followers":0,"following":2,"created_at":"2012-12-18T19:44:59Z","updated_at":"2020-01-14T16:14:01Z"},"id":"5000142","created_at":"2013-02-20T22:11:07Z","updated_at":"2015-12-14T00:39:05Z"},{"url":"https://api.github.com/gists/5028030","user":{"login":"ChrisJamesC","id":1410314,"node_id":"MDQ6VXNlcjE0MTAzMTQ=","avatar_url":"https://avatars.githubusercontent.com/u/1410314?v=4","gravatar_id":"","url":"https://api.github.com/users/ChrisJamesC","html_url":"https://github.com/ChrisJamesC","followers_url":"https://api.github.com/users/ChrisJamesC/followers","following_url":"https://api.github.com/users/ChrisJamesC/following{/other_user}","gists_url":"https://api.github.com/users/ChrisJamesC/gists{/gist_id}","starred_url":"https://api.github.com/users/ChrisJamesC/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ChrisJamesC/subscriptions","organizations_url":"https://api.github.com/users/ChrisJamesC/orgs","repos_url":"https://api.github.com/users/ChrisJamesC/repos","events_url":"https://api.github.com/users/ChrisJamesC/events{/privacy}","received_events_url":"https://api.github.com/users/ChrisJamesC/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Christopher Chiche","company":"beeld","blog":"http://www.christopherchiche.com ","location":"Lausanne, Switzerland","email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":33,"public_gists":12,"followers":54,"following":36,"created_at":"2012-02-05T17:01:26Z","updated_at":"2026-04-09T11:18:53Z"},"id":"5028030","created_at":"2013-02-25T05:55:46Z","updated_at":"2015-12-14T04:28:56Z"},{"url":"https://api.github.com/gists/5049980","user":{"login":"timelyportfolio","id":837910,"node_id":"MDQ6VXNlcjgzNzkxMA==","avatar_url":"https://avatars.githubusercontent.com/u/837910?v=4","gravatar_id":"","url":"https://api.github.com/users/timelyportfolio","html_url":"https://github.com/timelyportfolio","followers_url":"https://api.github.com/users/timelyportfolio/followers","following_url":"https://api.github.com/users/timelyportfolio/following{/other_user}","gists_url":"https://api.github.com/users/timelyportfolio/gists{/gist_id}","starred_url":"https://api.github.com/users/timelyportfolio/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/timelyportfolio/subscriptions","organizations_url":"https://api.github.com/users/timelyportfolio/orgs","repos_url":"https://api.github.com/users/timelyportfolio/repos","events_url":"https://api.github.com/users/timelyportfolio/events{/privacy}","received_events_url":"https://api.github.com/users/timelyportfolio/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"timelyportfolio","company":"available","blog":"http://buildingwidgets.com","location":"Birmingham, AL  USA","email":"kent.russell@timelyportfolio.com","hireable":null,"bio":"open source with R and JavaScript","twitter_username":null,"public_repos":538,"public_gists":597,"followers":1161,"following":1287,"created_at":"2011-06-08T15:57:01Z","updated_at":"2025-11-17T00:20:19Z"},"id":"5049980","created_at":"2013-02-27T17:53:52Z","updated_at":"2018-10-29T13:58:55Z"},{"url":"https://api.github.com/gists/5144816","user":{"login":"gka","id":617518,"node_id":"MDQ6VXNlcjYxNzUxOA==","avatar_url":"https://avatars.githubusercontent.com/u/617518?v=4","gravatar_id":"","url":"https://api.github.com/users/gka","html_url":"https://github.com/gka","followers_url":"https://api.github.com/users/gka/followers","following_url":"https://api.github.com/users/gka/following{/other_user}","gists_url":"https://api.github.com/users/gka/gists{/gist_id}","starred_url":"https://api.github.com/users/gka/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/gka/subscriptions","organizations_url":"https://api.github.com/users/gka/orgs","repos_url":"https://api.github.com/users/gka/repos","events_url":"https://api.github.com/users/gka/events{/privacy}","received_events_url":"https://api.github.com/users/gka/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Gregor Aisch","company":"@zeitOnline","blog":"https://driven-by-data.net","location":"Berlin","email":null,"hireable":null,"bio":"Senior visual data journalist @ZeitOnline, Co-founder @Datawrapper, proud @nytgraphics alumni. most of my old repos live at @vis4 now","twitter_username":null,"public_repos":44,"public_gists":143,"followers":1269,"following":87,"created_at":"2011-02-14T15:48:07Z","updated_at":"2026-03-12T12:56:53Z"},"id":"5144816","created_at":"2013-03-12T17:09:09Z","updated_at":"2015-12-14T20:38:49Z"},{"url":"https://api.github.com/gists/5210859","user":{"login":"orph","id":28068,"node_id":"MDQ6VXNlcjI4MDY4","avatar_url":"https://avatars.githubusercontent.com/u/28068?v=4","gravatar_id":"","url":"https://api.github.com/users/orph","html_url":"https://github.com/orph","followers_url":"https://api.github.com/users/orph/followers","following_url":"https://api.github.com/users/orph/following{/other_user}","gists_url":"https://api.github.com/users/orph/gists{/gist_id}","starred_url":"https://api.github.com/users/orph/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/orph/subscriptions","organizations_url":"https://api.github.com/users/orph/orgs","repos_url":"https://api.github.com/users/orph/repos","events_url":"https://api.github.com/users/orph/events{/privacy}","received_events_url":"https://api.github.com/users/orph/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Alex Graveley","company":null,"blog":"https://alexgraveley.com","location":null,"email":null,"hireable":null,"bio":"I’m Alex Graveley, creator of GitHub Copilot, Dropbox Paper, MobileCoin, Hackpad, and Tomboy.","twitter_username":"alexgraveley","public_repos":20,"public_gists":6,"followers":175,"following":1,"created_at":"2008-10-08T06:39:09Z","updated_at":"2026-04-05T07:14:12Z"},"id":"5210859","created_at":"2013-03-21T05:22:22Z","updated_at":"2015-12-15T05:39:39Z"},{"url":"https://api.github.com/gists/5327849","user":{"login":"kondi","id":278688,"node_id":"MDQ6VXNlcjI3ODY4OA==","avatar_url":"https://avatars.githubusercontent.com/u/278688?v=4","gravatar_id":"","url":"https://api.github.com/users/kondi","html_url":"https://github.com/kondi","followers_url":"https://api.github.com/users/kondi/followers","following_url":"https://api.github.com/users/kondi/following{/other_user}","gists_url":"https://api.github.com/users/kondi/gists{/gist_id}","starred_url":"https://api.github.com/users/kondi/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/kondi/subscriptions","organizations_url":"https://api.github.com/users/kondi/orgs","repos_url":"https://api.github.com/users/kondi/repos","events_url":"https://api.github.com/users/kondi/events{/privacy}","received_events_url":"https://api.github.com/users/kondi/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Pusztai Tibor","company":null,"blog":"","location":null,"email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":61,"public_gists":3,"followers":16,"following":3,"created_at":"2010-05-16T21:24:18Z","updated_at":"2026-03-28T13:41:51Z"},"id":"5327849","created_at":"2013-04-06T22:13:22Z","updated_at":"2015-12-15T21:39:49Z"},{"url":"https://api.github.com/gists/5542862","user":{"login":"ddnn55","id":186277,"node_id":"MDQ6VXNlcjE4NjI3Nw==","avatar_url":"https://avatars.githubusercontent.com/u/186277?v=4","gravatar_id":"","url":"https://api.github.com/users/ddnn55","html_url":"https://github.com/ddnn55","followers_url":"https://api.github.com/users/ddnn55/followers","following_url":"https://api.github.com/users/ddnn55/following{/other_user}","gists_url":"https://api.github.com/users/ddnn55/gists{/gist_id}","starred_url":"https://api.github.com/users/ddnn55/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ddnn55/subscriptions","organizations_url":"https://api.github.com/users/ddnn55/orgs","repos_url":"https://api.github.com/users/ddnn55/repos","events_url":"https://api.github.com/users/ddnn55/events{/privacy}","received_events_url":"https://api.github.com/users/ddnn55/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"David Stolarsky","company":"@Google","blog":"","location":"Brooklyn","email":null,"hireable":null,"bio":"Also known as @dnsnyt","twitter_username":"davidstolarsky","public_repos":142,"public_gists":25,"followers":71,"following":40,"created_at":"2010-01-20T16:03:25Z","updated_at":"2026-03-26T19:06:42Z"},"id":"5542862","created_at":"2013-05-08T19:15:28Z","updated_at":"2015-12-17T03:19:50Z"},{"url":"https://api.github.com/gists/5601693","user":{"login":"mccannf","id":1247916,"node_id":"MDQ6VXNlcjEyNDc5MTY=","avatar_url":"https://avatars.githubusercontent.com/u/1247916?v=4","gravatar_id":"","url":"https://api.github.com/users/mccannf","html_url":"https://github.com/mccannf","followers_url":"https://api.github.com/users/mccannf/followers","following_url":"https://api.github.com/users/mccannf/following{/other_user}","gists_url":"https://api.github.com/users/mccannf/gists{/gist_id}","starred_url":"https://api.github.com/users/mccannf/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mccannf/subscriptions","organizations_url":"https://api.github.com/users/mccannf/orgs","repos_url":"https://api.github.com/users/mccannf/repos","events_url":"https://api.github.com/users/mccannf/events{/privacy}","received_events_url":"https://api.github.com/users/mccannf/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":5,"public_gists":13,"followers":1,"following":0,"created_at":"2011-12-07T18:31:37Z","updated_at":"2021-08-30T13:07:18Z"},"id":"5601693","created_at":"2013-05-17T20:12:14Z","updated_at":"2015-12-17T11:19:44Z"},{"url":"https://api.github.com/gists/5776628","user":{"login":"1wheel","id":1643998,"node_id":"MDQ6VXNlcjE2NDM5OTg=","avatar_url":"https://avatars.githubusercontent.com/u/1643998?v=4","gravatar_id":"","url":"https://api.github.com/users/1wheel","html_url":"https://github.com/1wheel","followers_url":"https://api.github.com/users/1wheel/followers","following_url":"https://api.github.com/users/1wheel/following{/other_user}","gists_url":"https://api.github.com/users/1wheel/gists{/gist_id}","starred_url":"https://api.github.com/users/1wheel/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/1wheel/subscriptions","organizations_url":"https://api.github.com/users/1wheel/orgs","repos_url":"https://api.github.com/users/1wheel/repos","events_url":"https://api.github.com/users/1wheel/events{/privacy}","received_events_url":"https://api.github.com/users/1wheel/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Adam Pearce","company":"@anthropics","blog":"https://roadtolarissa.com/","location":"nyc","email":"1wheel@gmail.com","hireable":null,"bio":null,"twitter_username":"adamrpearce","public_repos":160,"public_gists":217,"followers":636,"following":144,"created_at":"2012-04-14T21:24:51Z","updated_at":"2026-04-03T01:34:03Z"},"id":"5776628","created_at":"2013-06-13T19:31:05Z","updated_at":"2015-12-18T11:38:51Z"},{"url":"https://api.github.com/gists/5818958","user":{"login":"erprateek","id":2459065,"node_id":"MDQ6VXNlcjI0NTkwNjU=","avatar_url":"https://avatars.githubusercontent.com/u/2459065?v=4","gravatar_id":"","url":"https://api.github.com/users/erprateek","html_url":"https://github.com/erprateek","followers_url":"https://api.github.com/users/erprateek/followers","following_url":"https://api.github.com/users/erprateek/following{/other_user}","gists_url":"https://api.github.com/users/erprateek/gists{/gist_id}","starred_url":"https://api.github.com/users/erprateek/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/erprateek/subscriptions","organizations_url":"https://api.github.com/users/erprateek/orgs","repos_url":"https://api.github.com/users/erprateek/repos","events_url":"https://api.github.com/users/erprateek/events{/privacy}","received_events_url":"https://api.github.com/users/erprateek/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Prateek Tandon","company":null,"blog":"http://erprateek.github.io","location":"Fremont, CA","email":null,"hireable":null,"bio":null,"twitter_username":"PrateekTandon19","public_repos":47,"public_gists":13,"followers":6,"following":23,"created_at":"2012-09-30T20:44:50Z","updated_at":"2026-04-06T07:52:09Z"},"id":"5818958","created_at":"2013-06-19T23:11:59Z","updated_at":"2015-12-18T17:29:25Z"},{"url":"https://api.github.com/gists/5915027","user":{"login":"jfsiii","id":57655,"node_id":"MDQ6VXNlcjU3NjU1","avatar_url":"https://avatars.githubusercontent.com/u/57655?v=4","gravatar_id":"","url":"https://api.github.com/users/jfsiii","html_url":"https://github.com/jfsiii","followers_url":"https://api.github.com/users/jfsiii/followers","following_url":"https://api.github.com/users/jfsiii/following{/other_user}","gists_url":"https://api.github.com/users/jfsiii/gists{/gist_id}","starred_url":"https://api.github.com/users/jfsiii/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jfsiii/subscriptions","organizations_url":"https://api.github.com/users/jfsiii/orgs","repos_url":"https://api.github.com/users/jfsiii/repos","events_url":"https://api.github.com/users/jfsiii/events{/privacy}","received_events_url":"https://api.github.com/users/jfsiii/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"John Schulz","company":"@blinemedical","blog":"JFSIII.org","location":"Maryland","email":"JFSIII@Gmail.com","hireable":null,"bio":null,"twitter_username":"JFSIII","public_repos":115,"public_gists":188,"followers":129,"following":1,"created_at":"2009-02-24T22:34:48Z","updated_at":"2026-03-19T11:24:10Z"},"id":"5915027","created_at":"2013-07-03T02:37:25Z","updated_at":"2015-12-19T06:59:05Z"},{"url":"https://api.github.com/gists/5982652","user":{"login":"nsonnad","id":1362219,"node_id":"MDQ6VXNlcjEzNjIyMTk=","avatar_url":"https://avatars.githubusercontent.com/u/1362219?v=4","gravatar_id":"","url":"https://api.github.com/users/nsonnad","html_url":"https://github.com/nsonnad","followers_url":"https://api.github.com/users/nsonnad/followers","following_url":"https://api.github.com/users/nsonnad/following{/other_user}","gists_url":"https://api.github.com/users/nsonnad/gists{/gist_id}","starred_url":"https://api.github.com/users/nsonnad/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/nsonnad/subscriptions","organizations_url":"https://api.github.com/users/nsonnad/orgs","repos_url":"https://api.github.com/users/nsonnad/repos","events_url":"https://api.github.com/users/nsonnad/events{/privacy}","received_events_url":"https://api.github.com/users/nsonnad/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Nikhil S","company":null,"blog":"","location":"Taipei / NYC","email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":94,"public_gists":41,"followers":44,"following":4,"created_at":"2012-01-21T08:04:49Z","updated_at":"2026-02-03T22:10:41Z"},"id":"5982652","created_at":"2013-07-12T07:53:04Z","updated_at":"2015-12-19T16:19:03Z"},{"url":"https://api.github.com/gists/6384889","user":{"login":"eurica","id":51648,"node_id":"MDQ6VXNlcjUxNjQ4","avatar_url":"https://avatars.githubusercontent.com/u/51648?v=4","gravatar_id":"","url":"https://api.github.com/users/eurica","html_url":"https://github.com/eurica","followers_url":"https://api.github.com/users/eurica/followers","following_url":"https://api.github.com/users/eurica/following{/other_user}","gists_url":"https://api.github.com/users/eurica/gists{/gist_id}","starred_url":"https://api.github.com/users/eurica/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/eurica/subscriptions","organizations_url":"https://api.github.com/users/eurica/orgs","repos_url":"https://api.github.com/users/eurica/repos","events_url":"https://api.github.com/users/eurica/events{/privacy}","received_events_url":"https://api.github.com/users/eurica/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"David Hayes","company":null,"blog":"https://euri.ca","location":"Pacfic Northwest","email":"dave@euri.ca","hireable":null,"bio":null,"twitter_username":null,"public_repos":43,"public_gists":20,"followers":41,"following":16,"created_at":"2009-02-04T07:03:12Z","updated_at":"2026-03-27T01:15:08Z"},"id":"6384889","created_at":"2013-08-30T00:08:09Z","updated_at":"2015-12-21T23:49:09Z"},{"url":"https://api.github.com/gists/6418898","user":{"login":"syntagmatic","id":156229,"node_id":"MDQ6VXNlcjE1NjIyOQ==","avatar_url":"https://avatars.githubusercontent.com/u/156229?v=4","gravatar_id":"","url":"https://api.github.com/users/syntagmatic","html_url":"https://github.com/syntagmatic","followers_url":"https://api.github.com/users/syntagmatic/followers","following_url":"https://api.github.com/users/syntagmatic/following{/other_user}","gists_url":"https://api.github.com/users/syntagmatic/gists{/gist_id}","starred_url":"https://api.github.com/users/syntagmatic/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/syntagmatic/subscriptions","organizations_url":"https://api.github.com/users/syntagmatic/orgs","repos_url":"https://api.github.com/users/syntagmatic/repos","events_url":"https://api.github.com/users/syntagmatic/events{/privacy}","received_events_url":"https://api.github.com/users/syntagmatic/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Kai","company":null,"blog":"","location":"San Francisco","email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":61,"public_gists":168,"followers":406,"following":13,"created_at":"2009-11-21T04:15:57Z","updated_at":"2026-03-23T00:28:49Z"},"id":"6418898","created_at":"2013-09-03T01:50:28Z","updated_at":"2015-12-22T04:39:14Z"},{"url":"https://api.github.com/gists/6451601","user":{"login":"clkao","id":69736,"node_id":"MDQ6VXNlcjY5NzM2","avatar_url":"https://avatars.githubusercontent.com/u/69736?v=4","gravatar_id":"","url":"https://api.github.com/users/clkao","html_url":"https://github.com/clkao","followers_url":"https://api.github.com/users/clkao/followers","following_url":"https://api.github.com/users/clkao/following{/other_user}","gists_url":"https://api.github.com/users/clkao/gists{/gist_id}","starred_url":"https://api.github.com/users/clkao/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/clkao/subscriptions","organizations_url":"https://api.github.com/users/clkao/orgs","repos_url":"https://api.github.com/users/clkao/repos","events_url":"https://api.github.com/users/clkao/events{/privacy}","received_events_url":"https://api.github.com/users/clkao/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"CL Kao","company":"Recce","blog":"www.clkao.org","location":"San Francisco","email":null,"hireable":null,"bio":"Founder @ Recce","twitter_username":null,"public_repos":284,"public_gists":76,"followers":690,"following":77,"created_at":"2009-04-02T10:07:27Z","updated_at":"2026-04-10T19:08:27Z"},"id":"6451601","created_at":"2013-09-05T15:18:48Z","updated_at":"2015-12-22T09:28:50Z"},{"url":"https://api.github.com/gists/6495846","user":{"login":"couchand","id":793969,"node_id":"MDQ6VXNlcjc5Mzk2OQ==","avatar_url":"https://avatars.githubusercontent.com/u/793969?v=4","gravatar_id":"","url":"https://api.github.com/users/couchand","html_url":"https://github.com/couchand","followers_url":"https://api.github.com/users/couchand/followers","following_url":"https://api.github.com/users/couchand/following{/other_user}","gists_url":"https://api.github.com/users/couchand/gists{/gist_id}","starred_url":"https://api.github.com/users/couchand/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/couchand/subscriptions","organizations_url":"https://api.github.com/users/couchand/orgs","repos_url":"https://api.github.com/users/couchand/repos","events_url":"https://api.github.com/users/couchand/events{/privacy}","received_events_url":"https://api.github.com/users/couchand/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Andrew Dona-Couch -- GitHub drop ICE","company":null,"blog":"http://couchand.github.io","location":null,"email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":255,"public_gists":21,"followers":68,"following":71,"created_at":"2011-05-17T17:33:56Z","updated_at":"2026-02-12T15:37:08Z"},"id":"6495846","created_at":"2013-09-09T13:50:43Z","updated_at":"2015-12-22T15:58:54Z"},{"url":"https://api.github.com/gists/6551304","user":{"login":"nrrb","id":486230,"node_id":"MDQ6VXNlcjQ4NjIzMA==","avatar_url":"https://avatars.githubusercontent.com/u/486230?v=4","gravatar_id":"","url":"https://api.github.com/users/nrrb","html_url":"https://github.com/nrrb","followers_url":"https://api.github.com/users/nrrb/followers","following_url":"https://api.github.com/users/nrrb/following{/other_user}","gists_url":"https://api.github.com/users/nrrb/gists{/gist_id}","starred_url":"https://api.github.com/users/nrrb/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/nrrb/subscriptions","organizations_url":"https://api.github.com/users/nrrb/orgs","repos_url":"https://api.github.com/users/nrrb/repos","events_url":"https://api.github.com/users/nrrb/events{/privacy}","received_events_url":"https://api.github.com/users/nrrb/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Nicholas Bennett","company":"CyberMaxx","blog":"","location":"Baltimore, MD","email":"nicholasbennett.work@gmail.com","hireable":true,"bio":null,"twitter_username":null,"public_repos":45,"public_gists":77,"followers":118,"following":173,"created_at":"2010-11-17T22:43:04Z","updated_at":"2026-03-23T14:26:19Z"},"id":"6551304","created_at":"2013-09-13T14:15:12Z","updated_at":"2015-12-23T00:09:03Z"},{"url":"https://api.github.com/gists/6666264","user":{"login":"lychen1109","id":433194,"node_id":"MDQ6VXNlcjQzMzE5NA==","avatar_url":"https://avatars.githubusercontent.com/u/433194?v=4","gravatar_id":"","url":"https://api.github.com/users/lychen1109","html_url":"https://github.com/lychen1109","followers_url":"https://api.github.com/users/lychen1109/followers","following_url":"https://api.github.com/users/lychen1109/following{/other_user}","gists_url":"https://api.github.com/users/lychen1109/gists{/gist_id}","starred_url":"https://api.github.com/users/lychen1109/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/lychen1109/subscriptions","organizations_url":"https://api.github.com/users/lychen1109/orgs","repos_url":"https://api.github.com/users/lychen1109/repos","events_url":"https://api.github.com/users/lychen1109/events{/privacy}","received_events_url":"https://api.github.com/users/lychen1109/received_events","type":"User","user_view_type":"public","site_admin":false,"name":null,"company":null,"blog":"","location":null,"email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":2,"public_gists":2,"followers":1,"following":0,"created_at":"2010-10-09T05:26:53Z","updated_at":"2019-12-18T09:23:19Z"},"id":"6666264","created_at":"2013-09-23T03:39:44Z","updated_at":"2015-12-23T17:00:01Z"},{"url":"https://api.github.com/gists/6944484","user":{"login":"syntagmatic","id":156229,"node_id":"MDQ6VXNlcjE1NjIyOQ==","avatar_url":"https://avatars.githubusercontent.com/u/156229?v=4","gravatar_id":"","url":"https://api.github.com/users/syntagmatic","html_url":"https://github.com/syntagmatic","followers_url":"https://api.github.com/users/syntagmatic/followers","following_url":"https://api.github.com/users/syntagmatic/following{/other_user}","gists_url":"https://api.github.com/users/syntagmatic/gists{/gist_id}","starred_url":"https://api.github.com/users/syntagmatic/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/syntagmatic/subscriptions","organizations_url":"https://api.github.com/users/syntagmatic/orgs","repos_url":"https://api.github.com/users/syntagmatic/repos","events_url":"https://api.github.com/users/syntagmatic/events{/privacy}","received_events_url":"https://api.github.com/users/syntagmatic/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Kai","company":null,"blog":"","location":"San Francisco","email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":61,"public_gists":168,"followers":406,"following":13,"created_at":"2009-11-21T04:15:57Z","updated_at":"2026-03-23T00:28:49Z"},"id":"6944484","created_at":"2013-10-12T01:20:35Z","updated_at":"2015-12-25T08:09:09Z"},{"url":"https://api.github.com/gists/7093249","user":{"login":"gka","id":617518,"node_id":"MDQ6VXNlcjYxNzUxOA==","avatar_url":"https://avatars.githubusercontent.com/u/617518?v=4","gravatar_id":"","url":"https://api.github.com/users/gka","html_url":"https://github.com/gka","followers_url":"https://api.github.com/users/gka/followers","following_url":"https://api.github.com/users/gka/following{/other_user}","gists_url":"https://api.github.com/users/gka/gists{/gist_id}","starred_url":"https://api.github.com/users/gka/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/gka/subscriptions","organizations_url":"https://api.github.com/users/gka/orgs","repos_url":"https://api.github.com/users/gka/repos","events_url":"https://api.github.com/users/gka/events{/privacy}","received_events_url":"https://api.github.com/users/gka/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Gregor Aisch","company":"@zeitOnline","blog":"https://driven-by-data.net","location":"Berlin","email":null,"hireable":null,"bio":"Senior visual data journalist @ZeitOnline, Co-founder @Datawrapper, proud @nytgraphics alumni. most of my old repos live at @vis4 now","twitter_username":null,"public_repos":44,"public_gists":143,"followers":1269,"following":87,"created_at":"2011-02-14T15:48:07Z","updated_at":"2026-03-12T12:56:53Z"},"id":"7093249","created_at":"2013-10-22T00:25:20Z","updated_at":"2015-12-26T04:29:02Z"},{"url":"https://api.github.com/gists/7190660","user":{"login":"couchand","id":793969,"node_id":"MDQ6VXNlcjc5Mzk2OQ==","avatar_url":"https://avatars.githubusercontent.com/u/793969?v=4","gravatar_id":"","url":"https://api.github.com/users/couchand","html_url":"https://github.com/couchand","followers_url":"https://api.github.com/users/couchand/followers","following_url":"https://api.github.com/users/couchand/following{/other_user}","gists_url":"https://api.github.com/users/couchand/gists{/gist_id}","starred_url":"https://api.github.com/users/couchand/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/couchand/subscriptions","organizations_url":"https://api.github.com/users/couchand/orgs","repos_url":"https://api.github.com/users/couchand/repos","events_url":"https://api.github.com/users/couchand/events{/privacy}","received_events_url":"https://api.github.com/users/couchand/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Andrew Dona-Couch -- GitHub drop ICE","company":null,"blog":"http://couchand.github.io","location":null,"email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":255,"public_gists":21,"followers":68,"following":71,"created_at":"2011-05-17T17:33:56Z","updated_at":"2026-02-12T15:37:08Z"},"id":"7190660","created_at":"2013-10-28T02:45:07Z","updated_at":"2017-11-09T21:52:43Z"},{"url":"https://api.github.com/gists/7277123","user":{"login":"sukiiime","id":5764523,"node_id":"MDQ6VXNlcjU3NjQ1MjM=","avatar_url":"https://avatars.githubusercontent.com/u/5764523?v=4","gravatar_id":"","url":"https://api.github.com/users/sukiiime","html_url":"https://github.com/sukiiime","followers_url":"https://api.github.com/users/sukiiime/followers","following_url":"https://api.github.com/users/sukiiime/following{/other_user}","gists_url":"https://api.github.com/users/sukiiime/gists{/gist_id}","starred_url":"https://api.github.com/users/sukiiime/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/sukiiime/subscriptions","organizations_url":"https://api.github.com/users/sukiiime/orgs","repos_url":"https://api.github.com/users/sukiiime/repos","events_url":"https://api.github.com/users/sukiiime/events{/privacy}","received_events_url":"https://api.github.com/users/sukiiime/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Kristen","company":null,"blog":"","location":null,"email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":10,"public_gists":2,"followers":0,"following":2,"created_at":"2013-10-24T10:28:53Z","updated_at":"2021-04-11T02:54:26Z"},"id":"7277123","created_at":"2013-11-02T09:24:53Z","updated_at":"2015-12-27T05:49:08Z"},{"url":"https://api.github.com/gists/7343271","user":{"login":"zarazum","id":1675008,"node_id":"MDQ6VXNlcjE2NzUwMDg=","avatar_url":"https://avatars.githubusercontent.com/u/1675008?v=4","gravatar_id":"","url":"https://api.github.com/users/zarazum","html_url":"https://github.com/zarazum","followers_url":"https://api.github.com/users/zarazum/followers","following_url":"https://api.github.com/users/zarazum/following{/other_user}","gists_url":"https://api.github.com/users/zarazum/gists{/gist_id}","starred_url":"https://api.github.com/users/zarazum/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zarazum/subscriptions","organizations_url":"https://api.github.com/users/zarazum/orgs","repos_url":"https://api.github.com/users/zarazum/repos","events_url":"https://api.github.com/users/zarazum/events{/privacy}","received_events_url":"https://api.github.com/users/zarazum/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Pavel Gertman","company":"Enter","blog":"","location":null,"email":"zarazum@gmail.com","hireable":null,"bio":null,"twitter_username":null,"public_repos":11,"public_gists":19,"followers":7,"following":12,"created_at":"2012-04-24T15:03:06Z","updated_at":"2026-03-16T15:42:21Z"},"id":"7343271","created_at":"2013-11-06T20:11:56Z","updated_at":"2015-12-27T14:49:12Z"},{"url":"https://api.github.com/gists/8066221","user":{"login":"nrrb","id":486230,"node_id":"MDQ6VXNlcjQ4NjIzMA==","avatar_url":"https://avatars.githubusercontent.com/u/486230?v=4","gravatar_id":"","url":"https://api.github.com/users/nrrb","html_url":"https://github.com/nrrb","followers_url":"https://api.github.com/users/nrrb/followers","following_url":"https://api.github.com/users/nrrb/following{/other_user}","gists_url":"https://api.github.com/users/nrrb/gists{/gist_id}","starred_url":"https://api.github.com/users/nrrb/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/nrrb/subscriptions","organizations_url":"https://api.github.com/users/nrrb/orgs","repos_url":"https://api.github.com/users/nrrb/repos","events_url":"https://api.github.com/users/nrrb/events{/privacy}","received_events_url":"https://api.github.com/users/nrrb/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Nicholas Bennett","company":"CyberMaxx","blog":"","location":"Baltimore, MD","email":"nicholasbennett.work@gmail.com","hireable":true,"bio":null,"twitter_username":null,"public_repos":45,"public_gists":77,"followers":118,"following":173,"created_at":"2010-11-17T22:43:04Z","updated_at":"2026-03-23T14:26:19Z"},"id":"8066221","created_at":"2013-12-21T06:49:11Z","updated_at":"2016-01-01T00:19:22Z"},{"url":"https://api.github.com/gists/8193673","user":{"login":"mfolnovic","id":20919,"node_id":"MDQ6VXNlcjIwOTE5","avatar_url":"https://avatars.githubusercontent.com/u/20919?v=4","gravatar_id":"","url":"https://api.github.com/users/mfolnovic","html_url":"https://github.com/mfolnovic","followers_url":"https://api.github.com/users/mfolnovic/followers","following_url":"https://api.github.com/users/mfolnovic/following{/other_user}","gists_url":"https://api.github.com/users/mfolnovic/gists{/gist_id}","starred_url":"https://api.github.com/users/mfolnovic/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mfolnovic/subscriptions","organizations_url":"https://api.github.com/users/mfolnovic/orgs","repos_url":"https://api.github.com/users/mfolnovic/repos","events_url":"https://api.github.com/users/mfolnovic/events{/privacy}","received_events_url":"https://api.github.com/users/mfolnovic/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Matija Folnovic","company":null,"blog":"","location":"Zagreb, Croatia","email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":29,"public_gists":7,"followers":23,"following":7,"created_at":"2008-08-17T11:07:27Z","updated_at":"2026-03-17T20:25:54Z"},"id":"8193673","created_at":"2013-12-31T07:25:47Z","updated_at":"2016-01-01T19:59:02Z"},{"url":"https://api.github.com/gists/8324819","user":{"login":"marcellodesales","id":131457,"node_id":"MDQ6VXNlcjEzMTQ1Nw==","avatar_url":"https://avatars.githubusercontent.com/u/131457?v=4","gravatar_id":"","url":"https://api.github.com/users/marcellodesales","html_url":"https://github.com/marcellodesales","followers_url":"https://api.github.com/users/marcellodesales/followers","following_url":"https://api.github.com/users/marcellodesales/following{/other_user}","gists_url":"https://api.github.com/users/marcellodesales/gists{/gist_id}","starred_url":"https://api.github.com/users/marcellodesales/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/marcellodesales/subscriptions","organizations_url":"https://api.github.com/users/marcellodesales/orgs","repos_url":"https://api.github.com/users/marcellodesales/repos","events_url":"https://api.github.com/users/marcellodesales/events{/privacy}","received_events_url":"https://api.github.com/users/marcellodesales/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Marcello DeSales","company":"Viasat","blog":"http://linkedin.com/in/marcellodesales","location":"San Diego, California, USA","email":"marcello.desales@gmail.com","hireable":null,"bio":"M.S. in C.S. from California State University at San Francisco @2009, \r\nB.S. in C.S. from Universidade Federal de Alagoas, Brazil @2002, OSS Engineer","twitter_username":"marcellodesales","public_repos":610,"public_gists":54,"followers":124,"following":76,"created_at":"2009-09-26T00:38:09Z","updated_at":"2026-03-18T10:01:21Z"},"id":"8324819","created_at":"2014-01-08T21:16:48Z","updated_at":"2016-01-02T15:39:15Z"},{"url":"https://api.github.com/gists/8425194","user":{"login":"larskotthoff","id":579233,"node_id":"MDQ6VXNlcjU3OTIzMw==","avatar_url":"https://avatars.githubusercontent.com/u/579233?v=4","gravatar_id":"","url":"https://api.github.com/users/larskotthoff","html_url":"https://github.com/larskotthoff","followers_url":"https://api.github.com/users/larskotthoff/followers","following_url":"https://api.github.com/users/larskotthoff/following{/other_user}","gists_url":"https://api.github.com/users/larskotthoff/gists{/gist_id}","starred_url":"https://api.github.com/users/larskotthoff/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/larskotthoff/subscriptions","organizations_url":"https://api.github.com/users/larskotthoff/orgs","repos_url":"https://api.github.com/users/larskotthoff/repos","events_url":"https://api.github.com/users/larskotthoff/events{/privacy}","received_events_url":"https://api.github.com/users/larskotthoff/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Lars Kotthoff","company":null,"blog":"","location":null,"email":null,"hireable":true,"bio":null,"twitter_username":null,"public_repos":59,"public_gists":60,"followers":91,"following":0,"created_at":"2011-01-23T14:17:58Z","updated_at":"2025-12-09T08:05:04Z"},"id":"8425194","created_at":"2014-01-14T20:35:23Z","updated_at":"2016-01-03T06:49:14Z"},{"url":"https://api.github.com/gists/8593822","user":{"login":"kanitw","id":111269,"node_id":"MDQ6VXNlcjExMTI2OQ==","avatar_url":"https://avatars.githubusercontent.com/u/111269?v=4","gravatar_id":"","url":"https://api.github.com/users/kanitw","html_url":"https://github.com/kanitw","followers_url":"https://api.github.com/users/kanitw/followers","following_url":"https://api.github.com/users/kanitw/following{/other_user}","gists_url":"https://api.github.com/users/kanitw/gists{/gist_id}","starred_url":"https://api.github.com/users/kanitw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/kanitw/subscriptions","organizations_url":"https://api.github.com/users/kanitw/orgs","repos_url":"https://api.github.com/users/kanitw/repos","events_url":"https://api.github.com/users/kanitw/events{/privacy}","received_events_url":"https://api.github.com/users/kanitw/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Kanit Wongsuphasawat","company":"@databricks ","blog":"http://kanitw.github.io","location":"Seattle","email":null,"hireable":null,"bio":"Visualization at @databricks . Co-author of Vega-Lite, Swift Charts, Data Voyager, and Graph Visualization in TensorBoard. Formerly at @uwdata and Apple.","twitter_username":"kanitw","public_repos":52,"public_gists":14,"followers":512,"following":13,"created_at":"2009-08-03T04:56:14Z","updated_at":"2026-03-20T19:24:10Z"},"id":"8593822","created_at":"2014-01-24T08:17:22Z","updated_at":"2016-01-04T08:09:19Z"},{"url":"https://api.github.com/gists/8715802","user":{"login":"careo","id":1156,"node_id":"MDQ6VXNlcjExNTY=","avatar_url":"https://avatars.githubusercontent.com/u/1156?v=4","gravatar_id":"","url":"https://api.github.com/users/careo","html_url":"https://github.com/careo","followers_url":"https://api.github.com/users/careo/followers","following_url":"https://api.github.com/users/careo/following{/other_user}","gists_url":"https://api.github.com/users/careo/gists{/gist_id}","starred_url":"https://api.github.com/users/careo/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/careo/subscriptions","organizations_url":"https://api.github.com/users/careo/orgs","repos_url":"https://api.github.com/users/careo/repos","events_url":"https://api.github.com/users/careo/events{/privacy}","received_events_url":"https://api.github.com/users/careo/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Dane Jensen","company":null,"blog":"","location":"Oregon","email":"dane.jensen@gmail.com","hireable":null,"bio":null,"twitter_username":null,"public_repos":62,"public_gists":67,"followers":76,"following":59,"created_at":"2008-02-27T19:42:40Z","updated_at":"2026-01-05T19:59:55Z"},"id":"8715802","created_at":"2014-01-30T18:43:09Z","updated_at":"2015-08-29T13:55:49Z"},{"url":"https://api.github.com/gists/9406665","user":{"login":"jamesdavidson","id":1326735,"node_id":"MDQ6VXNlcjEzMjY3MzU=","avatar_url":"https://avatars.githubusercontent.com/u/1326735?v=4","gravatar_id":"","url":"https://api.github.com/users/jamesdavidson","html_url":"https://github.com/jamesdavidson","followers_url":"https://api.github.com/users/jamesdavidson/followers","following_url":"https://api.github.com/users/jamesdavidson/following{/other_user}","gists_url":"https://api.github.com/users/jamesdavidson/gists{/gist_id}","starred_url":"https://api.github.com/users/jamesdavidson/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jamesdavidson/subscriptions","organizations_url":"https://api.github.com/users/jamesdavidson/orgs","repos_url":"https://api.github.com/users/jamesdavidson/repos","events_url":"https://api.github.com/users/jamesdavidson/events{/privacy}","received_events_url":"https://api.github.com/users/jamesdavidson/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"James Davidson","company":null,"blog":"jamesd3142.wordpress.com","location":"Perth, Western Australia","email":null,"hireable":null,"bio":"I'm a computer programmer.","twitter_username":null,"public_repos":46,"public_gists":55,"followers":28,"following":82,"created_at":"2012-01-13T04:50:42Z","updated_at":"2026-04-07T04:47:07Z"},"id":"9406665","created_at":"2014-03-07T07:03:55Z","updated_at":"2015-08-29T13:57:08Z"},{"url":"https://api.github.com/gists/9537313","user":{"login":"brandonhamric","id":3901798,"node_id":"MDQ6VXNlcjM5MDE3OTg=","avatar_url":"https://avatars.githubusercontent.com/u/3901798?v=4","gravatar_id":"","url":"https://api.github.com/users/brandonhamric","html_url":"https://github.com/brandonhamric","followers_url":"https://api.github.com/users/brandonhamric/followers","following_url":"https://api.github.com/users/brandonhamric/following{/other_user}","gists_url":"https://api.github.com/users/brandonhamric/gists{/gist_id}","starred_url":"https://api.github.com/users/brandonhamric/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/brandonhamric/subscriptions","organizations_url":"https://api.github.com/users/brandonhamric/orgs","repos_url":"https://api.github.com/users/brandonhamric/repos","events_url":"https://api.github.com/users/brandonhamric/events{/privacy}","received_events_url":"https://api.github.com/users/brandonhamric/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Brandon Hamric","company":null,"blog":"","location":null,"email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":16,"public_gists":6,"followers":4,"following":2,"created_at":"2013-03-18T18:01:54Z","updated_at":"2023-04-13T16:38:06Z"},"id":"9537313","created_at":"2014-03-13T21:26:17Z","updated_at":"2015-08-29T13:57:21Z"},{"url":"https://api.github.com/gists/9592035","user":{"login":"larryaubstore","id":1501160,"node_id":"MDQ6VXNlcjE1MDExNjA=","avatar_url":"https://avatars.githubusercontent.com/u/1501160?v=4","gravatar_id":"","url":"https://api.github.com/users/larryaubstore","html_url":"https://github.com/larryaubstore","followers_url":"https://api.github.com/users/larryaubstore/followers","following_url":"https://api.github.com/users/larryaubstore/following{/other_user}","gists_url":"https://api.github.com/users/larryaubstore/gists{/gist_id}","starred_url":"https://api.github.com/users/larryaubstore/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/larryaubstore/subscriptions","organizations_url":"https://api.github.com/users/larryaubstore/orgs","repos_url":"https://api.github.com/users/larryaubstore/repos","events_url":"https://api.github.com/users/larryaubstore/events{/privacy}","received_events_url":"https://api.github.com/users/larryaubstore/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Laurence Morin-Daoust","company":null,"blog":"","location":"Montréal, Canada","email":"laurence.morin.daoust@gmail.com","hireable":null,"bio":null,"twitter_username":null,"public_repos":81,"public_gists":4,"followers":18,"following":47,"created_at":"2012-03-05T02:20:01Z","updated_at":"2026-04-04T07:01:27Z"},"id":"9592035","created_at":"2014-03-17T00:42:47Z","updated_at":"2015-08-29T13:57:27Z"},{"url":"https://api.github.com/gists/9904859","user":{"login":"renecnielsen","id":1473552,"node_id":"MDQ6VXNlcjE0NzM1NTI=","avatar_url":"https://avatars.githubusercontent.com/u/1473552?v=4","gravatar_id":"","url":"https://api.github.com/users/renecnielsen","html_url":"https://github.com/renecnielsen","followers_url":"https://api.github.com/users/renecnielsen/followers","following_url":"https://api.github.com/users/renecnielsen/following{/other_user}","gists_url":"https://api.github.com/users/renecnielsen/gists{/gist_id}","starred_url":"https://api.github.com/users/renecnielsen/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/renecnielsen/subscriptions","organizations_url":"https://api.github.com/users/renecnielsen/orgs","repos_url":"https://api.github.com/users/renecnielsen/repos","events_url":"https://api.github.com/users/renecnielsen/events{/privacy}","received_events_url":"https://api.github.com/users/renecnielsen/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"René Clausen Nielsen","company":"@UNGlobalPulse","blog":"http://renecnielsen.com","location":"Copenhagen, Denmark","email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":80,"public_gists":159,"followers":23,"following":43,"created_at":"2012-02-25T18:05:22Z","updated_at":"2026-03-19T07:12:58Z"},"id":"9904859","created_at":"2014-03-31T23:44:18Z","updated_at":"2015-08-29T13:57:58Z"},{"url":"https://api.github.com/gists/11277604","user":{"login":"humanrelationships","id":6633476,"node_id":"MDQ6VXNlcjY2MzM0NzY=","avatar_url":"https://avatars.githubusercontent.com/u/6633476?v=4","gravatar_id":"","url":"https://api.github.com/users/humanrelationships","html_url":"https://github.com/humanrelationships","followers_url":"https://api.github.com/users/humanrelationships/followers","following_url":"https://api.github.com/users/humanrelationships/following{/other_user}","gists_url":"https://api.github.com/users/humanrelationships/gists{/gist_id}","starred_url":"https://api.github.com/users/humanrelationships/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/humanrelationships/subscriptions","organizations_url":"https://api.github.com/users/humanrelationships/orgs","repos_url":"https://api.github.com/users/humanrelationships/repos","events_url":"https://api.github.com/users/humanrelationships/events{/privacy}","received_events_url":"https://api.github.com/users/humanrelationships/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"HumanRelationships","company":"Human Relationships","blog":"http://human-relationships.com/","location":"USA","email":"humanrelationshins@gmail.com","hireable":true,"bio":null,"twitter_username":null,"public_repos":100,"public_gists":24,"followers":0,"following":0,"created_at":"2014-02-09T21:29:15Z","updated_at":"2020-07-05T08:17:45Z"},"id":"11277604","created_at":"2014-04-25T04:21:48Z","updated_at":"2015-08-29T14:00:29Z"},{"url":"https://api.github.com/gists/5ee4ef53ac0700b0badf","user":{"login":"uberFoo","id":363700,"node_id":"MDQ6VXNlcjM2MzcwMA==","avatar_url":"https://avatars.githubusercontent.com/u/363700?v=4","gravatar_id":"","url":"https://api.github.com/users/uberFoo","html_url":"https://github.com/uberFoo","followers_url":"https://api.github.com/users/uberFoo/followers","following_url":"https://api.github.com/users/uberFoo/following{/other_user}","gists_url":"https://api.github.com/users/uberFoo/gists{/gist_id}","starred_url":"https://api.github.com/users/uberFoo/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/uberFoo/subscriptions","organizations_url":"https://api.github.com/users/uberFoo/orgs","repos_url":"https://api.github.com/users/uberFoo/repos","events_url":"https://api.github.com/users/uberFoo/events{/privacy}","received_events_url":"https://api.github.com/users/uberFoo/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Keith Star","company":null,"blog":"https://uberfoo.github.io","location":null,"email":null,"hireable":null,"bio":"Eat, sleep, hack.","twitter_username":"uberfoo","public_repos":73,"public_gists":5,"followers":8,"following":8,"created_at":"2010-08-13T17:53:56Z","updated_at":"2025-12-16T14:47:39Z"},"id":"5ee4ef53ac0700b0badf","created_at":"2014-05-15T00:13:13Z","updated_at":"2015-08-29T14:01:26Z"},{"url":"https://api.github.com/gists/260db0c88e99b95851ec","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":"260db0c88e99b95851ec","created_at":"2014-07-03T01:44:05Z","updated_at":"2015-08-29T14:03:24Z"},{"url":"https://api.github.com/gists/aeae503a525835486151","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":"aeae503a525835486151","created_at":"2014-07-03T02:15:39Z","updated_at":"2015-08-29T14:03:24Z"},{"url":"https://api.github.com/gists/b7285227e89c224480a0","user":{"login":"orls","id":155430,"node_id":"MDQ6VXNlcjE1NTQzMA==","avatar_url":"https://avatars.githubusercontent.com/u/155430?v=4","gravatar_id":"","url":"https://api.github.com/users/orls","html_url":"https://github.com/orls","followers_url":"https://api.github.com/users/orls/followers","following_url":"https://api.github.com/users/orls/following{/other_user}","gists_url":"https://api.github.com/users/orls/gists{/gist_id}","starred_url":"https://api.github.com/users/orls/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/orls/subscriptions","organizations_url":"https://api.github.com/users/orls/orgs","repos_url":"https://api.github.com/users/orls/repos","events_url":"https://api.github.com/users/orls/events{/privacy}","received_events_url":"https://api.github.com/users/orls/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Owen Smith","company":null,"blog":"http://orls.co.uk","location":"London","email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":47,"public_gists":12,"followers":30,"following":6,"created_at":"2009-11-19T14:16:10Z","updated_at":"2026-01-29T00:29:42Z"},"id":"b7285227e89c224480a0","created_at":"2014-07-11T16:44:34Z","updated_at":"2015-08-29T14:03:52Z"},{"url":"https://api.github.com/gists/d93fe6b5fbe251357489","user":{"login":"easytiger","id":1534,"node_id":"MDQ6VXNlcjE1MzQ=","avatar_url":"https://avatars.githubusercontent.com/u/1534?v=4","gravatar_id":"","url":"https://api.github.com/users/easytiger","html_url":"https://github.com/easytiger","followers_url":"https://api.github.com/users/easytiger/followers","following_url":"https://api.github.com/users/easytiger/following{/other_user}","gists_url":"https://api.github.com/users/easytiger/gists{/gist_id}","starred_url":"https://api.github.com/users/easytiger/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/easytiger/subscriptions","organizations_url":"https://api.github.com/users/easytiger/orgs","repos_url":"https://api.github.com/users/easytiger/repos","events_url":"https://api.github.com/users/easytiger/events{/privacy}","received_events_url":"https://api.github.com/users/easytiger/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"easytiger","company":null,"blog":"","location":null,"email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":0,"public_gists":18,"followers":8,"following":0,"created_at":"2008-02-28T10:08:34Z","updated_at":"2026-02-09T22:24:16Z"},"id":"d93fe6b5fbe251357489","created_at":"2014-07-30T08:16:15Z","updated_at":"2015-08-29T14:04:42Z"},{"url":"https://api.github.com/gists/26a696d2aef05977013e","user":{"login":"mbbui","id":1134791,"node_id":"MDQ6VXNlcjExMzQ3OTE=","avatar_url":"https://avatars.githubusercontent.com/u/1134791?v=4","gravatar_id":"","url":"https://api.github.com/users/mbbui","html_url":"https://github.com/mbbui","followers_url":"https://api.github.com/users/mbbui/followers","following_url":"https://api.github.com/users/mbbui/following{/other_user}","gists_url":"https://api.github.com/users/mbbui/gists{/gist_id}","starred_url":"https://api.github.com/users/mbbui/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mbbui/subscriptions","organizations_url":"https://api.github.com/users/mbbui/orgs","repos_url":"https://api.github.com/users/mbbui/repos","events_url":"https://api.github.com/users/mbbui/events{/privacy}","received_events_url":"https://api.github.com/users/mbbui/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Michael B. Bui","company":null,"blog":"","location":null,"email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":3,"public_gists":1,"followers":11,"following":2,"created_at":"2011-10-18T02:50:19Z","updated_at":"2021-05-28T13:47:30Z"},"id":"26a696d2aef05977013e","created_at":"2014-08-07T18:13:46Z","updated_at":"2015-08-29T14:05:00Z"},{"url":"https://api.github.com/gists/2686646672a92aa89a0e","user":{"login":"4ndr01d3","id":2870295,"node_id":"MDQ6VXNlcjI4NzAyOTU=","avatar_url":"https://avatars.githubusercontent.com/u/2870295?v=4","gravatar_id":"","url":"https://api.github.com/users/4ndr01d3","html_url":"https://github.com/4ndr01d3","followers_url":"https://api.github.com/users/4ndr01d3/followers","following_url":"https://api.github.com/users/4ndr01d3/following{/other_user}","gists_url":"https://api.github.com/users/4ndr01d3/gists{/gist_id}","starred_url":"https://api.github.com/users/4ndr01d3/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/4ndr01d3/subscriptions","organizations_url":"https://api.github.com/users/4ndr01d3/orgs","repos_url":"https://api.github.com/users/4ndr01d3/repos","events_url":"https://api.github.com/users/4ndr01d3/events{/privacy}","received_events_url":"https://api.github.com/users/4ndr01d3/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Gustavo Salazar","company":null,"blog":"","location":"South Africa","email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":30,"public_gists":3,"followers":11,"following":0,"created_at":"2012-11-23T09:49:29Z","updated_at":"2018-11-21T10:42:23Z"},"id":"2686646672a92aa89a0e","created_at":"2014-08-20T14:14:21Z","updated_at":"2019-07-17T06:01:48Z"},{"url":"https://api.github.com/gists/ed526186cd2b01c72aaa","user":{"login":"reinpk","id":658545,"node_id":"MDQ6VXNlcjY1ODU0NQ==","avatar_url":"https://avatars.githubusercontent.com/u/658545?v=4","gravatar_id":"","url":"https://api.github.com/users/reinpk","html_url":"https://github.com/reinpk","followers_url":"https://api.github.com/users/reinpk/followers","following_url":"https://api.github.com/users/reinpk/following{/other_user}","gists_url":"https://api.github.com/users/reinpk/gists{/gist_id}","starred_url":"https://api.github.com/users/reinpk/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/reinpk/subscriptions","organizations_url":"https://api.github.com/users/reinpk/orgs","repos_url":"https://api.github.com/users/reinpk/repos","events_url":"https://api.github.com/users/reinpk/events{/privacy}","received_events_url":"https://api.github.com/users/reinpk/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Peter Reinhardt","company":"Charm Industrial","blog":"http://rein.pk","location":"San Francisco","email":null,"hireable":null,"bio":"CEO and co-founder at Charm Industrial, prev CEO and co-founder at Segment, MIT aerospace.","twitter_username":"reinpk","public_repos":13,"public_gists":8,"followers":232,"following":2,"created_at":"2011-03-08T20:58:46Z","updated_at":"2026-03-09T17:40:33Z"},"id":"ed526186cd2b01c72aaa","created_at":"2014-09-19T03:05:24Z","updated_at":"2015-08-29T14:06:39Z"},{"url":"https://api.github.com/gists/f8b1e2ebdcc9a9a40371","user":{"login":"alexvandesande","id":112898,"node_id":"MDQ6VXNlcjExMjg5OA==","avatar_url":"https://avatars.githubusercontent.com/u/112898?v=4","gravatar_id":"","url":"https://api.github.com/users/alexvandesande","html_url":"https://github.com/alexvandesande","followers_url":"https://api.github.com/users/alexvandesande/followers","following_url":"https://api.github.com/users/alexvandesande/following{/other_user}","gists_url":"https://api.github.com/users/alexvandesande/gists{/gist_id}","starred_url":"https://api.github.com/users/alexvandesande/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/alexvandesande/subscriptions","organizations_url":"https://api.github.com/users/alexvandesande/orgs","repos_url":"https://api.github.com/users/alexvandesande/repos","events_url":"https://api.github.com/users/alexvandesande/events{/privacy}","received_events_url":"https://api.github.com/users/alexvandesande/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Alex Van de Sande","company":"Ethereum","blog":"ethereum.org","location":"Rio de Janeiro","email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":48,"public_gists":32,"followers":413,"following":8,"created_at":"2009-08-07T12:30:15Z","updated_at":"2021-03-02T17:17:20Z"},"id":"f8b1e2ebdcc9a9a40371","created_at":"2014-10-01T13:03:12Z","updated_at":"2015-08-29T14:07:07Z"},{"url":"https://api.github.com/gists/8d67bd3d21b778f0d2d8","user":{"login":"csenkbeil","id":4535772,"node_id":"MDQ6VXNlcjQ1MzU3NzI=","avatar_url":"https://avatars.githubusercontent.com/u/4535772?v=4","gravatar_id":"","url":"https://api.github.com/users/csenkbeil","html_url":"https://github.com/csenkbeil","followers_url":"https://api.github.com/users/csenkbeil/followers","following_url":"https://api.github.com/users/csenkbeil/following{/other_user}","gists_url":"https://api.github.com/users/csenkbeil/gists{/gist_id}","starred_url":"https://api.github.com/users/csenkbeil/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/csenkbeil/subscriptions","organizations_url":"https://api.github.com/users/csenkbeil/orgs","repos_url":"https://api.github.com/users/csenkbeil/repos","events_url":"https://api.github.com/users/csenkbeil/events{/privacy}","received_events_url":"https://api.github.com/users/csenkbeil/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Cliff Senkbeil","company":"Grifby Pty. Ltd.","blog":"www.cliffsenkbeil.com","location":null,"email":null,"hireable":true,"bio":null,"twitter_username":null,"public_repos":19,"public_gists":5,"followers":4,"following":3,"created_at":"2013-05-27T00:45:22Z","updated_at":"2026-04-06T12:11:58Z"},"id":"8d67bd3d21b778f0d2d8","created_at":"2014-10-07T00:06:55Z","updated_at":"2015-08-29T14:07:19Z"},{"url":"https://api.github.com/gists/bbfb365c03c90ad3f03d","user":{"login":"lianyi","id":8431331,"node_id":"MDQ6VXNlcjg0MzEzMzE=","avatar_url":"https://avatars.githubusercontent.com/u/8431331?v=4","gravatar_id":"","url":"https://api.github.com/users/lianyi","html_url":"https://github.com/lianyi","followers_url":"https://api.github.com/users/lianyi/followers","following_url":"https://api.github.com/users/lianyi/following{/other_user}","gists_url":"https://api.github.com/users/lianyi/gists{/gist_id}","starred_url":"https://api.github.com/users/lianyi/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/lianyi/subscriptions","organizations_url":"https://api.github.com/users/lianyi/orgs","repos_url":"https://api.github.com/users/lianyi/repos","events_url":"https://api.github.com/users/lianyi/events{/privacy}","received_events_url":"https://api.github.com/users/lianyi/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"lianyi","company":null,"blog":"","location":"Bethesda MD","email":null,"hireable":null,"bio":"Software Architect\r\nData Visualization\r\nFrontend\r\nBackend\r\nSQL/NoSQL\r\nUI/UX\r\niOS/Mobile\r\nJavaScript\r\nJava\r\nC/C++\r\nObject-C\r\nSwift\r\nPerl\r\nPython\r\nFortran","twitter_username":null,"public_repos":128,"public_gists":30,"followers":15,"following":8,"created_at":"2014-08-12T19:47:18Z","updated_at":"2025-12-08T14:46:59Z"},"id":"bbfb365c03c90ad3f03d","created_at":"2014-12-09T19:53:01Z","updated_at":"2016-02-04T15:32:47Z"},{"url":"https://api.github.com/gists/ce130b954e05d8064b30","user":{"login":"leoh","id":717640,"node_id":"MDQ6VXNlcjcxNzY0MA==","avatar_url":"https://avatars.githubusercontent.com/u/717640?v=4","gravatar_id":"","url":"https://api.github.com/users/leoh","html_url":"https://github.com/leoh","followers_url":"https://api.github.com/users/leoh/followers","following_url":"https://api.github.com/users/leoh/following{/other_user}","gists_url":"https://api.github.com/users/leoh/gists{/gist_id}","starred_url":"https://api.github.com/users/leoh/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/leoh/subscriptions","organizations_url":"https://api.github.com/users/leoh/orgs","repos_url":"https://api.github.com/users/leoh/repos","events_url":"https://api.github.com/users/leoh/events{/privacy}","received_events_url":"https://api.github.com/users/leoh/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":21,"public_gists":11,"followers":4,"following":1,"created_at":"2011-04-08T14:52:53Z","updated_at":"2026-03-03T22:51:29Z"},"id":"ce130b954e05d8064b30","created_at":"2014-12-09T19:54:46Z","updated_at":"2015-08-29T14:11:03Z"},{"url":"https://api.github.com/gists/10720a98eae70971aa6a","user":{"login":"rossant","id":1942359,"node_id":"MDQ6VXNlcjE5NDIzNTk=","avatar_url":"https://avatars.githubusercontent.com/u/1942359?v=4","gravatar_id":"","url":"https://api.github.com/users/rossant","html_url":"https://github.com/rossant","followers_url":"https://api.github.com/users/rossant/followers","following_url":"https://api.github.com/users/rossant/following{/other_user}","gists_url":"https://api.github.com/users/rossant/gists{/gist_id}","starred_url":"https://api.github.com/users/rossant/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rossant/subscriptions","organizations_url":"https://api.github.com/users/rossant/orgs","repos_url":"https://api.github.com/users/rossant/repos","events_url":"https://api.github.com/users/rossant/events{/privacy}","received_events_url":"https://api.github.com/users/rossant/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Cyrille Rossant","company":"@int-brain-lab @cortex-lab ","blog":"https://cyrille.rossant.net","location":"Paris","email":null,"hireable":null,"bio":"Neuroscience researcher and software engineer","twitter_username":"cyrillerossant","public_repos":77,"public_gists":49,"followers":1199,"following":709,"created_at":"2012-07-09T11:30:06Z","updated_at":"2026-03-19T20:27:41Z"},"id":"10720a98eae70971aa6a","created_at":"2014-12-30T10:41:45Z","updated_at":"2015-08-29T14:12:28Z"},{"url":"https://api.github.com/gists/cff1db0bd1ac17fbd20f","user":{"login":"sdjacobs","id":5751667,"node_id":"MDQ6VXNlcjU3NTE2Njc=","avatar_url":"https://avatars.githubusercontent.com/u/5751667?v=4","gravatar_id":"","url":"https://api.github.com/users/sdjacobs","html_url":"https://github.com/sdjacobs","followers_url":"https://api.github.com/users/sdjacobs/followers","following_url":"https://api.github.com/users/sdjacobs/following{/other_user}","gists_url":"https://api.github.com/users/sdjacobs/gists{/gist_id}","starred_url":"https://api.github.com/users/sdjacobs/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/sdjacobs/subscriptions","organizations_url":"https://api.github.com/users/sdjacobs/orgs","repos_url":"https://api.github.com/users/sdjacobs/repos","events_url":"https://api.github.com/users/sdjacobs/events{/privacy}","received_events_url":"https://api.github.com/users/sdjacobs/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Simon Jacobs","company":null,"blog":"","location":null,"email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":16,"public_gists":11,"followers":13,"following":0,"created_at":"2013-10-22T23:37:45Z","updated_at":"2026-02-16T18:44:35Z"},"id":"cff1db0bd1ac17fbd20f","created_at":"2015-01-21T16:56:14Z","updated_at":"2015-08-29T14:13:53Z"},{"url":"https://api.github.com/gists/dd14ea28f377caecb5e5","user":{"login":"jyguo","id":10849811,"node_id":"MDQ6VXNlcjEwODQ5ODEx","avatar_url":"https://avatars.githubusercontent.com/u/10849811?v=4","gravatar_id":"","url":"https://api.github.com/users/jyguo","html_url":"https://github.com/jyguo","followers_url":"https://api.github.com/users/jyguo/followers","following_url":"https://api.github.com/users/jyguo/following{/other_user}","gists_url":"https://api.github.com/users/jyguo/gists{/gist_id}","starred_url":"https://api.github.com/users/jyguo/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jyguo/subscriptions","organizations_url":"https://api.github.com/users/jyguo/orgs","repos_url":"https://api.github.com/users/jyguo/repos","events_url":"https://api.github.com/users/jyguo/events{/privacy}","received_events_url":"https://api.github.com/users/jyguo/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"John Guo","company":null,"blog":"https://www.alkahest.com/","location":null,"email":null,"hireable":null,"bio":"Senior Biostatistician @ Alkahest","twitter_username":null,"public_repos":3,"public_gists":6,"followers":1,"following":0,"created_at":"2015-02-04T14:10:50Z","updated_at":"2025-08-04T22:23:36Z"},"id":"dd14ea28f377caecb5e5","created_at":"2015-02-04T17:46:02Z","updated_at":"2015-08-29T14:14:45Z"},{"url":"https://api.github.com/gists/c9cad6d831fd15e33c91","user":{"login":"eglassman","id":2320194,"node_id":"MDQ6VXNlcjIzMjAxOTQ=","avatar_url":"https://avatars.githubusercontent.com/u/2320194?v=4","gravatar_id":"","url":"https://api.github.com/users/eglassman","html_url":"https://github.com/eglassman","followers_url":"https://api.github.com/users/eglassman/followers","following_url":"https://api.github.com/users/eglassman/following{/other_user}","gists_url":"https://api.github.com/users/eglassman/gists{/gist_id}","starred_url":"https://api.github.com/users/eglassman/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/eglassman/subscriptions","organizations_url":"https://api.github.com/users/eglassman/orgs","repos_url":"https://api.github.com/users/eglassman/repos","events_url":"https://api.github.com/users/eglassman/events{/privacy}","received_events_url":"https://api.github.com/users/eglassman/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Elena Glassman","company":"Harvard University","blog":"http://eglassman.github.io/","location":"Cambridge, MA","email":"eglassman@g.harvard.edu","hireable":null,"bio":"Assistant Professor of Computer Science at Harvard University @HSEAS and @RadInstitute (1/1/19). MIT EECS PhD'16.","twitter_username":null,"public_repos":91,"public_gists":25,"followers":138,"following":180,"created_at":"2012-09-10T20:25:22Z","updated_at":"2026-03-28T11:27:45Z"},"id":"c9cad6d831fd15e33c91","created_at":"2015-02-05T03:49:21Z","updated_at":"2015-08-29T14:14:48Z"},{"url":"https://api.github.com/gists/ea260922fe35c0e6eb5c","user":{"login":"matt-bernhardt","id":1403248,"node_id":"MDQ6VXNlcjE0MDMyNDg=","avatar_url":"https://avatars.githubusercontent.com/u/1403248?v=4","gravatar_id":"","url":"https://api.github.com/users/matt-bernhardt","html_url":"https://github.com/matt-bernhardt","followers_url":"https://api.github.com/users/matt-bernhardt/followers","following_url":"https://api.github.com/users/matt-bernhardt/following{/other_user}","gists_url":"https://api.github.com/users/matt-bernhardt/gists{/gist_id}","starred_url":"https://api.github.com/users/matt-bernhardt/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/matt-bernhardt/subscriptions","organizations_url":"https://api.github.com/users/matt-bernhardt/orgs","repos_url":"https://api.github.com/users/matt-bernhardt/repos","events_url":"https://api.github.com/users/matt-bernhardt/events{/privacy}","received_events_url":"https://api.github.com/users/matt-bernhardt/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Matthew Bernhardt","company":"@MITLibraries ","blog":"http://morphosis7.wordpress.com","location":"Cambridge, MA","email":"mjbernha@mit.edu","hireable":null,"bio":"Senior Software Engineer at @MITLibraries. Soccer fanatic generally.","twitter_username":null,"public_repos":124,"public_gists":69,"followers":25,"following":19,"created_at":"2012-02-02T21:15:44Z","updated_at":"2026-01-16T15:23:40Z"},"id":"ea260922fe35c0e6eb5c","created_at":"2015-02-12T01:57:22Z","updated_at":"2015-12-30T16:46:02Z"},{"url":"https://api.github.com/gists/0b3e145812a14a8372bd","user":{"login":"matt-bernhardt","id":1403248,"node_id":"MDQ6VXNlcjE0MDMyNDg=","avatar_url":"https://avatars.githubusercontent.com/u/1403248?v=4","gravatar_id":"","url":"https://api.github.com/users/matt-bernhardt","html_url":"https://github.com/matt-bernhardt","followers_url":"https://api.github.com/users/matt-bernhardt/followers","following_url":"https://api.github.com/users/matt-bernhardt/following{/other_user}","gists_url":"https://api.github.com/users/matt-bernhardt/gists{/gist_id}","starred_url":"https://api.github.com/users/matt-bernhardt/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/matt-bernhardt/subscriptions","organizations_url":"https://api.github.com/users/matt-bernhardt/orgs","repos_url":"https://api.github.com/users/matt-bernhardt/repos","events_url":"https://api.github.com/users/matt-bernhardt/events{/privacy}","received_events_url":"https://api.github.com/users/matt-bernhardt/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Matthew Bernhardt","company":"@MITLibraries ","blog":"http://morphosis7.wordpress.com","location":"Cambridge, MA","email":"mjbernha@mit.edu","hireable":null,"bio":"Senior Software Engineer at @MITLibraries. Soccer fanatic generally.","twitter_username":null,"public_repos":124,"public_gists":69,"followers":25,"following":19,"created_at":"2012-02-02T21:15:44Z","updated_at":"2026-01-16T15:23:40Z"},"id":"0b3e145812a14a8372bd","created_at":"2015-02-12T02:09:24Z","updated_at":"2015-08-29T14:15:16Z"},{"url":"https://api.github.com/gists/808191e5ffc547722cb7","user":{"login":"spock74","id":377364,"node_id":"MDQ6VXNlcjM3NzM2NA==","avatar_url":"https://avatars.githubusercontent.com/u/377364?v=4","gravatar_id":"","url":"https://api.github.com/users/spock74","html_url":"https://github.com/spock74","followers_url":"https://api.github.com/users/spock74/followers","following_url":"https://api.github.com/users/spock74/following{/other_user}","gists_url":"https://api.github.com/users/spock74/gists{/gist_id}","starred_url":"https://api.github.com/users/spock74/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/spock74/subscriptions","organizations_url":"https://api.github.com/users/spock74/orgs","repos_url":"https://api.github.com/users/spock74/repos","events_url":"https://api.github.com/users/spock74/events{/privacy}","received_events_url":"https://api.github.com/users/spock74/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Jose Moraes","company":null,"blog":"","location":"Brazil","email":null,"hireable":true,"bio":null,"twitter_username":null,"public_repos":283,"public_gists":19,"followers":14,"following":26,"created_at":"2010-08-26T22:22:51Z","updated_at":"2026-03-23T04:39:50Z"},"id":"808191e5ffc547722cb7","created_at":"2015-04-17T16:32:18Z","updated_at":"2015-08-29T14:19:22Z"},{"url":"https://api.github.com/gists/8b648d62ca799c9440e0","user":{"login":"apcj","id":98962,"node_id":"MDQ6VXNlcjk4OTYy","avatar_url":"https://avatars.githubusercontent.com/u/98962?v=4","gravatar_id":"","url":"https://api.github.com/users/apcj","html_url":"https://github.com/apcj","followers_url":"https://api.github.com/users/apcj/followers","following_url":"https://api.github.com/users/apcj/following{/other_user}","gists_url":"https://api.github.com/users/apcj/gists{/gist_id}","starred_url":"https://api.github.com/users/apcj/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/apcj/subscriptions","organizations_url":"https://api.github.com/users/apcj/orgs","repos_url":"https://api.github.com/users/apcj/repos","events_url":"https://api.github.com/users/apcj/events{/privacy}","received_events_url":"https://api.github.com/users/apcj/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Alistair Jones","company":"Neo Technology","blog":"","location":"London","email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":47,"public_gists":13,"followers":102,"following":1,"created_at":"2009-06-25T19:33:06Z","updated_at":"2025-12-12T08:11:02Z"},"id":"8b648d62ca799c9440e0","created_at":"2015-07-09T08:16:34Z","updated_at":"2015-08-29T14:24:31Z"},{"url":"https://api.github.com/gists/6ff0bec65992d9cd7eb2","user":{"login":"moredip","id":65444,"node_id":"MDQ6VXNlcjY1NDQ0","avatar_url":"https://avatars.githubusercontent.com/u/65444?v=4","gravatar_id":"","url":"https://api.github.com/users/moredip","html_url":"https://github.com/moredip","followers_url":"https://api.github.com/users/moredip/followers","following_url":"https://api.github.com/users/moredip/following{/other_user}","gists_url":"https://api.github.com/users/moredip/gists{/gist_id}","starred_url":"https://api.github.com/users/moredip/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/moredip/subscriptions","organizations_url":"https://api.github.com/users/moredip/orgs","repos_url":"https://api.github.com/users/moredip/repos","events_url":"https://api.github.com/users/moredip/events{/privacy}","received_events_url":"https://api.github.com/users/moredip/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Pete Hodgson","company":"Independent Consultant","blog":"thepete.net","location":"Bellingham, WA","email":"github@thepete.net","hireable":true,"bio":"Independent consultant helping engineering teams tackle thorny problems. Formerly Earnest, ThoughtWorks","twitter_username":"ph1","public_repos":202,"public_gists":16,"followers":323,"following":7,"created_at":"2009-03-21T00:54:55Z","updated_at":"2026-02-21T02:47:22Z"},"id":"6ff0bec65992d9cd7eb2","created_at":"2015-07-09T16:23:21Z","updated_at":"2015-08-29T14:24:32Z"},{"url":"https://api.github.com/gists/d07f8c7a5da8557d88db","user":{"login":"saurabh67","id":13630028,"node_id":"MDQ6VXNlcjEzNjMwMDI4","avatar_url":"https://avatars.githubusercontent.com/u/13630028?v=4","gravatar_id":"","url":"https://api.github.com/users/saurabh67","html_url":"https://github.com/saurabh67","followers_url":"https://api.github.com/users/saurabh67/followers","following_url":"https://api.github.com/users/saurabh67/following{/other_user}","gists_url":"https://api.github.com/users/saurabh67/gists{/gist_id}","starred_url":"https://api.github.com/users/saurabh67/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/saurabh67/subscriptions","organizations_url":"https://api.github.com/users/saurabh67/orgs","repos_url":"https://api.github.com/users/saurabh67/repos","events_url":"https://api.github.com/users/saurabh67/events{/privacy}","received_events_url":"https://api.github.com/users/saurabh67/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Saurabh Sarathe","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":"2015-08-03T18:41:25Z","updated_at":"2019-08-16T15:09:01Z"},"id":"d07f8c7a5da8557d88db","created_at":"2015-09-19T23:00:05Z","updated_at":"2015-09-19T23:00:05Z"},{"url":"https://api.github.com/gists/84d3243572ffb51c71de","user":{"login":"popopanha","id":15022860,"node_id":"MDQ6VXNlcjE1MDIyODYw","avatar_url":"https://avatars.githubusercontent.com/u/15022860?v=4","gravatar_id":"","url":"https://api.github.com/users/popopanha","html_url":"https://github.com/popopanha","followers_url":"https://api.github.com/users/popopanha/followers","following_url":"https://api.github.com/users/popopanha/following{/other_user}","gists_url":"https://api.github.com/users/popopanha/gists{/gist_id}","starred_url":"https://api.github.com/users/popopanha/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/popopanha/subscriptions","organizations_url":"https://api.github.com/users/popopanha/orgs","repos_url":"https://api.github.com/users/popopanha/repos","events_url":"https://api.github.com/users/popopanha/events{/privacy}","received_events_url":"https://api.github.com/users/popopanha/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":3,"followers":0,"following":0,"created_at":"2015-10-07T22:51:03Z","updated_at":"2023-07-31T02:24:08Z"},"id":"84d3243572ffb51c71de","created_at":"2015-10-07T22:53:30Z","updated_at":"2015-10-07T22:53:31Z"},{"url":"https://api.github.com/gists/9e08fe6d296f59102324","user":{"login":"iwate","id":1011232,"node_id":"MDQ6VXNlcjEwMTEyMzI=","avatar_url":"https://avatars.githubusercontent.com/u/1011232?v=4","gravatar_id":"","url":"https://api.github.com/users/iwate","html_url":"https://github.com/iwate","followers_url":"https://api.github.com/users/iwate/followers","following_url":"https://api.github.com/users/iwate/following{/other_user}","gists_url":"https://api.github.com/users/iwate/gists{/gist_id}","starred_url":"https://api.github.com/users/iwate/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iwate/subscriptions","organizations_url":"https://api.github.com/users/iwate/orgs","repos_url":"https://api.github.com/users/iwate/repos","events_url":"https://api.github.com/users/iwate/events{/privacy}","received_events_url":"https://api.github.com/users/iwate/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Yoshiyuki Taniguchi","company":null,"blog":"https://blog.iwate.me","location":"Japan","email":"github@iwate.me","hireable":null,"bio":null,"twitter_username":"_iwate","public_repos":96,"public_gists":32,"followers":13,"following":10,"created_at":"2011-08-29T07:30:46Z","updated_at":"2026-03-11T09:36:51Z"},"id":"9e08fe6d296f59102324","created_at":"2015-10-10T14:21:59Z","updated_at":"2015-10-12T08:40:35Z"},{"url":"https://api.github.com/gists/1d45d796af042ddac904","user":{"login":"sudoq","id":3897778,"node_id":"MDQ6VXNlcjM4OTc3Nzg=","avatar_url":"https://avatars.githubusercontent.com/u/3897778?v=4","gravatar_id":"","url":"https://api.github.com/users/sudoq","html_url":"https://github.com/sudoq","followers_url":"https://api.github.com/users/sudoq/followers","following_url":"https://api.github.com/users/sudoq/following{/other_user}","gists_url":"https://api.github.com/users/sudoq/gists{/gist_id}","starred_url":"https://api.github.com/users/sudoq/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/sudoq/subscriptions","organizations_url":"https://api.github.com/users/sudoq/orgs","repos_url":"https://api.github.com/users/sudoq/repos","events_url":"https://api.github.com/users/sudoq/events{/privacy}","received_events_url":"https://api.github.com/users/sudoq/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Simon Lindroos","company":"Fyndiq","blog":"","location":"Stockholm","email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":28,"public_gists":1,"followers":13,"following":7,"created_at":"2013-03-18T10:28:12Z","updated_at":"2026-03-18T13:56:50Z"},"id":"1d45d796af042ddac904","created_at":"2015-11-12T11:27:24Z","updated_at":"2015-11-12T11:33:06Z"},{"url":"https://api.github.com/gists/e8a55a47b900096eea3b","user":{"login":"beshur","id":532273,"node_id":"MDQ6VXNlcjUzMjI3Mw==","avatar_url":"https://avatars.githubusercontent.com/u/532273?v=4","gravatar_id":"","url":"https://api.github.com/users/beshur","html_url":"https://github.com/beshur","followers_url":"https://api.github.com/users/beshur/followers","following_url":"https://api.github.com/users/beshur/following{/other_user}","gists_url":"https://api.github.com/users/beshur/gists{/gist_id}","starred_url":"https://api.github.com/users/beshur/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/beshur/subscriptions","organizations_url":"https://api.github.com/users/beshur/orgs","repos_url":"https://api.github.com/users/beshur/repos","events_url":"https://api.github.com/users/beshur/events{/privacy}","received_events_url":"https://api.github.com/users/beshur/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Alex Buznik","company":"@starkfuture","blog":"https://buznik.net/","location":"Spain","email":"shu@buznik.net","hireable":null,"bio":"🇺🇦 Front-end developer, tinkerer of sorts","twitter_username":null,"public_repos":122,"public_gists":83,"followers":42,"following":64,"created_at":"2010-12-21T18:03:42Z","updated_at":"2026-04-09T11:46:27Z"},"id":"e8a55a47b900096eea3b","created_at":"2015-12-01T15:29:01Z","updated_at":"2015-12-01T15:40:16Z"},{"url":"https://api.github.com/gists/3ad7359dc3d6f0d25734","user":{"login":"rpgove","id":2725258,"node_id":"MDQ6VXNlcjI3MjUyNTg=","avatar_url":"https://avatars.githubusercontent.com/u/2725258?v=4","gravatar_id":"","url":"https://api.github.com/users/rpgove","html_url":"https://github.com/rpgove","followers_url":"https://api.github.com/users/rpgove/followers","following_url":"https://api.github.com/users/rpgove/following{/other_user}","gists_url":"https://api.github.com/users/rpgove/gists{/gist_id}","starred_url":"https://api.github.com/users/rpgove/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rpgove/subscriptions","organizations_url":"https://api.github.com/users/rpgove/orgs","repos_url":"https://api.github.com/users/rpgove/repos","events_url":"https://api.github.com/users/rpgove/events{/privacy}","received_events_url":"https://api.github.com/users/rpgove/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Robert Gove","company":null,"blog":"http://www.rpgove.com","location":"DC","email":"rpgove@gmail.com","hireable":null,"bio":"Data visualization engineer at the intersection of UX, algorithm design, and engineering.","twitter_username":"rpgove","public_repos":8,"public_gists":26,"followers":30,"following":0,"created_at":"2012-11-05T08:55:35Z","updated_at":"2026-01-07T17:36:13Z"},"id":"3ad7359dc3d6f0d25734","created_at":"2015-12-06T15:47:38Z","updated_at":"2015-12-06T20:34:09Z"},{"url":"https://api.github.com/gists/f43c40c8a360f801f368","user":{"login":"jesseflorig","id":2729384,"node_id":"MDQ6VXNlcjI3MjkzODQ=","avatar_url":"https://avatars.githubusercontent.com/u/2729384?v=4","gravatar_id":"","url":"https://api.github.com/users/jesseflorig","html_url":"https://github.com/jesseflorig","followers_url":"https://api.github.com/users/jesseflorig/followers","following_url":"https://api.github.com/users/jesseflorig/following{/other_user}","gists_url":"https://api.github.com/users/jesseflorig/gists{/gist_id}","starred_url":"https://api.github.com/users/jesseflorig/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jesseflorig/subscriptions","organizations_url":"https://api.github.com/users/jesseflorig/orgs","repos_url":"https://api.github.com/users/jesseflorig/repos","events_url":"https://api.github.com/users/jesseflorig/events{/privacy}","received_events_url":"https://api.github.com/users/jesseflorig/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Jesse Florig","company":"@deloitte","blog":"http://jesseflorig.com","location":"Washington, D.C.","email":null,"hireable":null,"bio":"🍑💨","twitter_username":null,"public_repos":93,"public_gists":19,"followers":46,"following":51,"created_at":"2012-11-05T19:54:40Z","updated_at":"2026-03-13T00:27:31Z"},"id":"f43c40c8a360f801f368","created_at":"2015-12-28T15:12:38Z","updated_at":"2015-12-28T16:01:44Z"},{"url":"https://api.github.com/gists/bdd52199bdaf9c9f408c","user":{"login":"noelnamai","id":6143442,"node_id":"MDQ6VXNlcjYxNDM0NDI=","avatar_url":"https://avatars.githubusercontent.com/u/6143442?v=4","gravatar_id":"","url":"https://api.github.com/users/noelnamai","html_url":"https://github.com/noelnamai","followers_url":"https://api.github.com/users/noelnamai/followers","following_url":"https://api.github.com/users/noelnamai/following{/other_user}","gists_url":"https://api.github.com/users/noelnamai/gists{/gist_id}","starred_url":"https://api.github.com/users/noelnamai/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/noelnamai/subscriptions","organizations_url":"https://api.github.com/users/noelnamai/orgs","repos_url":"https://api.github.com/users/noelnamai/repos","events_url":"https://api.github.com/users/noelnamai/events{/privacy}","received_events_url":"https://api.github.com/users/noelnamai/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Noel Namai","company":null,"blog":"","location":"United States","email":null,"hireable":true,"bio":null,"twitter_username":null,"public_repos":158,"public_gists":3,"followers":11,"following":11,"created_at":"2013-12-09T14:37:46Z","updated_at":"2026-04-11T01:37:10Z"},"id":"bdd52199bdaf9c9f408c","created_at":"2016-02-28T01:10:45Z","updated_at":"2016-03-01T15:57:14Z"},{"url":"https://api.github.com/gists/0788baa94835dcb4e930e3d3910a1f5c","user":{"login":"billautomata","id":432483,"node_id":"MDQ6VXNlcjQzMjQ4Mw==","avatar_url":"https://avatars.githubusercontent.com/u/432483?v=4","gravatar_id":"","url":"https://api.github.com/users/billautomata","html_url":"https://github.com/billautomata","followers_url":"https://api.github.com/users/billautomata/followers","following_url":"https://api.github.com/users/billautomata/following{/other_user}","gists_url":"https://api.github.com/users/billautomata/gists{/gist_id}","starred_url":"https://api.github.com/users/billautomata/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/billautomata/subscriptions","organizations_url":"https://api.github.com/users/billautomata/orgs","repos_url":"https://api.github.com/users/billautomata/repos","events_url":"https://api.github.com/users/billautomata/events{/privacy}","received_events_url":"https://api.github.com/users/billautomata/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Bill McKessy","company":null,"blog":"https://billautomata.github.io/portfolio","location":"Nederland","email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":188,"public_gists":50,"followers":76,"following":55,"created_at":"2010-10-08T14:54:20Z","updated_at":"2026-04-05T05:35:31Z"},"id":"0788baa94835dcb4e930e3d3910a1f5c","created_at":"2016-05-23T00:50:09Z","updated_at":"2016-05-23T00:50:10Z"},{"url":"https://api.github.com/gists/f20cedca024d79c50a62c9279a7bdcd1","user":{"login":"mohitjainsahab","id":8233324,"node_id":"MDQ6VXNlcjgyMzMzMjQ=","avatar_url":"https://avatars.githubusercontent.com/u/8233324?v=4","gravatar_id":"","url":"https://api.github.com/users/mohitjainsahab","html_url":"https://github.com/mohitjainsahab","followers_url":"https://api.github.com/users/mohitjainsahab/followers","following_url":"https://api.github.com/users/mohitjainsahab/following{/other_user}","gists_url":"https://api.github.com/users/mohitjainsahab/gists{/gist_id}","starred_url":"https://api.github.com/users/mohitjainsahab/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mohitjainsahab/subscriptions","organizations_url":"https://api.github.com/users/mohitjainsahab/orgs","repos_url":"https://api.github.com/users/mohitjainsahab/repos","events_url":"https://api.github.com/users/mohitjainsahab/events{/privacy}","received_events_url":"https://api.github.com/users/mohitjainsahab/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":"2014-07-22T09:04:01Z","updated_at":"2016-09-07T10:02:23Z"},"id":"f20cedca024d79c50a62c9279a7bdcd1","created_at":"2016-06-08T10:39:16Z","updated_at":"2016-06-08T10:39:16Z"},{"url":"https://api.github.com/gists/5ede96a76360f39e4b0aa1f93706547a","user":{"login":"jrladd","id":6046784,"node_id":"MDQ6VXNlcjYwNDY3ODQ=","avatar_url":"https://avatars.githubusercontent.com/u/6046784?v=4","gravatar_id":"","url":"https://api.github.com/users/jrladd","html_url":"https://github.com/jrladd","followers_url":"https://api.github.com/users/jrladd/followers","following_url":"https://api.github.com/users/jrladd/following{/other_user}","gists_url":"https://api.github.com/users/jrladd/gists{/gist_id}","starred_url":"https://api.github.com/users/jrladd/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jrladd/subscriptions","organizations_url":"https://api.github.com/users/jrladd/orgs","repos_url":"https://api.github.com/users/jrladd/repos","events_url":"https://api.github.com/users/jrladd/events{/privacy}","received_events_url":"https://api.github.com/users/jrladd/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"JR Ladd","company":null,"blog":"http://jrladd.com","location":null,"email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":44,"public_gists":11,"followers":31,"following":11,"created_at":"2013-11-27T04:58:56Z","updated_at":"2026-03-28T11:33:26Z"},"id":"5ede96a76360f39e4b0aa1f93706547a","created_at":"2016-06-28T20:08:17Z","updated_at":"2016-07-06T18:46:54Z"},{"url":"https://api.github.com/gists/65d7d2b3a671ee2d73047c7bd04965cc","user":{"login":"macwilko","id":19474610,"node_id":"MDQ6VXNlcjE5NDc0NjEw","avatar_url":"https://avatars.githubusercontent.com/u/19474610?v=4","gravatar_id":"","url":"https://api.github.com/users/macwilko","html_url":"https://github.com/macwilko","followers_url":"https://api.github.com/users/macwilko/followers","following_url":"https://api.github.com/users/macwilko/following{/other_user}","gists_url":"https://api.github.com/users/macwilko/gists{/gist_id}","starred_url":"https://api.github.com/users/macwilko/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/macwilko/subscriptions","organizations_url":"https://api.github.com/users/macwilko/orgs","repos_url":"https://api.github.com/users/macwilko/repos","events_url":"https://api.github.com/users/macwilko/events{/privacy}","received_events_url":"https://api.github.com/users/macwilko/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Matt","company":null,"blog":"https://wilko.dev","location":"Remote","email":null,"hireable":true,"bio":"Code warrior","twitter_username":"macwilko","public_repos":21,"public_gists":5,"followers":23,"following":18,"created_at":"2016-05-19T15:39:58Z","updated_at":"2026-02-02T22:40:41Z"},"id":"65d7d2b3a671ee2d73047c7bd04965cc","created_at":"2016-07-11T23:37:13Z","updated_at":"2016-07-12T00:02:28Z"},{"url":"https://api.github.com/gists/93e0ac09e4e436e6d01825333768e51c","user":{"login":"owendall","id":10927,"node_id":"MDQ6VXNlcjEwOTI3","avatar_url":"https://avatars.githubusercontent.com/u/10927?v=4","gravatar_id":"","url":"https://api.github.com/users/owendall","html_url":"https://github.com/owendall","followers_url":"https://api.github.com/users/owendall/followers","following_url":"https://api.github.com/users/owendall/following{/other_user}","gists_url":"https://api.github.com/users/owendall/gists{/gist_id}","starred_url":"https://api.github.com/users/owendall/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/owendall/subscriptions","organizations_url":"https://api.github.com/users/owendall/orgs","repos_url":"https://api.github.com/users/owendall/repos","events_url":"https://api.github.com/users/owendall/events{/privacy}","received_events_url":"https://api.github.com/users/owendall/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Owen Dall Sotomayor","company":"Agile Innovations, LLC","blog":"http://agile-innovations.net","location":"USA","email":"owendall@agile-innovations.net","hireable":true,"bio":"CEO/CTO of Agile Innovations, LLC.  Former VP/CTO of Barquin International","twitter_username":null,"public_repos":47,"public_gists":103,"followers":43,"following":56,"created_at":"2008-05-20T20:20:59Z","updated_at":"2026-03-10T16:39:47Z"},"id":"93e0ac09e4e436e6d01825333768e51c","created_at":"2016-07-19T15:38:18Z","updated_at":"2016-12-12T02:13:42Z"},{"url":"https://api.github.com/gists/181c55db86b37ed061b7bfcc521f7dce","user":{"login":"rtarun","id":1824696,"node_id":"MDQ6VXNlcjE4MjQ2OTY=","avatar_url":"https://avatars.githubusercontent.com/u/1824696?v=4","gravatar_id":"","url":"https://api.github.com/users/rtarun","html_url":"https://github.com/rtarun","followers_url":"https://api.github.com/users/rtarun/followers","following_url":"https://api.github.com/users/rtarun/following{/other_user}","gists_url":"https://api.github.com/users/rtarun/gists{/gist_id}","starred_url":"https://api.github.com/users/rtarun/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rtarun/subscriptions","organizations_url":"https://api.github.com/users/rtarun/orgs","repos_url":"https://api.github.com/users/rtarun/repos","events_url":"https://api.github.com/users/rtarun/events{/privacy}","received_events_url":"https://api.github.com/users/rtarun/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Tarun Ruchandani","company":null,"blog":"","location":null,"email":null,"hireable":true,"bio":null,"twitter_username":null,"public_repos":0,"public_gists":4,"followers":0,"following":0,"created_at":"2012-06-06T20:54:05Z","updated_at":"2025-03-12T04:34:23Z"},"id":"181c55db86b37ed061b7bfcc521f7dce","created_at":"2016-08-31T19:49:55Z","updated_at":"2016-08-31T20:14:48Z"},{"url":"https://api.github.com/gists/4757f406e0292b339985a7dc3cec2d42","user":{"login":"steveharoz","id":2257540,"node_id":"MDQ6VXNlcjIyNTc1NDA=","avatar_url":"https://avatars.githubusercontent.com/u/2257540?v=4","gravatar_id":"","url":"https://api.github.com/users/steveharoz","html_url":"https://github.com/steveharoz","followers_url":"https://api.github.com/users/steveharoz/followers","following_url":"https://api.github.com/users/steveharoz/following{/other_user}","gists_url":"https://api.github.com/users/steveharoz/gists{/gist_id}","starred_url":"https://api.github.com/users/steveharoz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/steveharoz/subscriptions","organizations_url":"https://api.github.com/users/steveharoz/orgs","repos_url":"https://api.github.com/users/steveharoz/repos","events_url":"https://api.github.com/users/steveharoz/events{/privacy}","received_events_url":"https://api.github.com/users/steveharoz/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Steve Haroz","company":null,"blog":"http://steveharoz.com","location":null,"email":null,"hireable":true,"bio":null,"twitter_username":null,"public_repos":57,"public_gists":85,"followers":36,"following":3,"created_at":"2012-08-31T22:53:14Z","updated_at":"2025-11-06T04:13:19Z"},"id":"4757f406e0292b339985a7dc3cec2d42","created_at":"2016-09-28T01:38:14Z","updated_at":"2022-01-13T22:59:48Z"},{"url":"https://api.github.com/gists/c82de058a96a83db4a07ad2d98bae17b","user":{"login":"cmeinco","id":1312111,"node_id":"MDQ6VXNlcjEzMTIxMTE=","avatar_url":"https://avatars.githubusercontent.com/u/1312111?v=4","gravatar_id":"","url":"https://api.github.com/users/cmeinco","html_url":"https://github.com/cmeinco","followers_url":"https://api.github.com/users/cmeinco/followers","following_url":"https://api.github.com/users/cmeinco/following{/other_user}","gists_url":"https://api.github.com/users/cmeinco/gists{/gist_id}","starred_url":"https://api.github.com/users/cmeinco/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cmeinco/subscriptions","organizations_url":"https://api.github.com/users/cmeinco/orgs","repos_url":"https://api.github.com/users/cmeinco/repos","events_url":"https://api.github.com/users/cmeinco/events{/privacy}","received_events_url":"https://api.github.com/users/cmeinco/received_events","type":"User","user_view_type":"public","site_admin":false,"name":null,"company":null,"blog":"https://appsec.wtf","location":null,"email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":26,"public_gists":4,"followers":2,"following":4,"created_at":"2012-01-07T22:19:39Z","updated_at":"2025-12-10T04:07:48Z"},"id":"c82de058a96a83db4a07ad2d98bae17b","created_at":"2017-01-11T04:23:04Z","updated_at":"2017-01-11T04:23:04Z"},{"url":"https://api.github.com/gists/e3ec4d251fd5d2de2c50584b60bf8d87","user":{"login":"arnauuc","id":2345289,"node_id":"MDQ6VXNlcjIzNDUyODk=","avatar_url":"https://avatars.githubusercontent.com/u/2345289?v=4","gravatar_id":"","url":"https://api.github.com/users/arnauuc","html_url":"https://github.com/arnauuc","followers_url":"https://api.github.com/users/arnauuc/followers","following_url":"https://api.github.com/users/arnauuc/following{/other_user}","gists_url":"https://api.github.com/users/arnauuc/gists{/gist_id}","starred_url":"https://api.github.com/users/arnauuc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/arnauuc/subscriptions","organizations_url":"https://api.github.com/users/arnauuc/orgs","repos_url":"https://api.github.com/users/arnauuc/repos","events_url":"https://api.github.com/users/arnauuc/events{/privacy}","received_events_url":"https://api.github.com/users/arnauuc/received_events","type":"User","user_view_type":"public","site_admin":false,"name":null,"company":null,"blog":"","location":null,"email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":6,"public_gists":1,"followers":0,"following":0,"created_at":"2012-09-14T08:05:10Z","updated_at":"2026-02-23T11:45:18Z"},"id":"e3ec4d251fd5d2de2c50584b60bf8d87","created_at":"2017-01-14T11:33:21Z","updated_at":"2017-01-14T11:33:21Z"},{"url":"https://api.github.com/gists/4207d1b04b274716730db8943eafc69e","user":{"login":"qaisarmehmood","id":25517858,"node_id":"MDQ6VXNlcjI1NTE3ODU4","avatar_url":"https://avatars.githubusercontent.com/u/25517858?v=4","gravatar_id":"","url":"https://api.github.com/users/qaisarmehmood","html_url":"https://github.com/qaisarmehmood","followers_url":"https://api.github.com/users/qaisarmehmood/followers","following_url":"https://api.github.com/users/qaisarmehmood/following{/other_user}","gists_url":"https://api.github.com/users/qaisarmehmood/gists{/gist_id}","starred_url":"https://api.github.com/users/qaisarmehmood/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/qaisarmehmood/subscriptions","organizations_url":"https://api.github.com/users/qaisarmehmood/orgs","repos_url":"https://api.github.com/users/qaisarmehmood/repos","events_url":"https://api.github.com/users/qaisarmehmood/events{/privacy}","received_events_url":"https://api.github.com/users/qaisarmehmood/received_events","type":"User","user_view_type":"public","site_admin":false,"name":null,"company":null,"blog":"","location":null,"email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":8,"public_gists":44,"followers":1,"following":3,"created_at":"2017-02-02T23:34:08Z","updated_at":"2017-07-06T13:06:39Z"},"id":"4207d1b04b274716730db8943eafc69e","created_at":"2017-02-10T00:03:43Z","updated_at":"2017-02-10T00:03:43Z"},{"url":"https://api.github.com/gists/550e972829a97741b185160aa7287567","user":{"login":"antimufa","id":11063115,"node_id":"MDQ6VXNlcjExMDYzMTE1","avatar_url":"https://avatars.githubusercontent.com/u/11063115?v=4","gravatar_id":"","url":"https://api.github.com/users/antimufa","html_url":"https://github.com/antimufa","followers_url":"https://api.github.com/users/antimufa/followers","following_url":"https://api.github.com/users/antimufa/following{/other_user}","gists_url":"https://api.github.com/users/antimufa/gists{/gist_id}","starred_url":"https://api.github.com/users/antimufa/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/antimufa/subscriptions","organizations_url":"https://api.github.com/users/antimufa/orgs","repos_url":"https://api.github.com/users/antimufa/repos","events_url":"https://api.github.com/users/antimufa/events{/privacy}","received_events_url":"https://api.github.com/users/antimufa/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"AntiMufa","company":null,"blog":"","location":null,"email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":4,"public_gists":1,"followers":0,"following":3,"created_at":"2015-02-18T17:03:33Z","updated_at":"2023-02-08T13:16:58Z"},"id":"550e972829a97741b185160aa7287567","created_at":"2017-03-08T20:57:54Z","updated_at":"2017-03-08T20:57:54Z"},{"url":"https://api.github.com/gists/5d13d9d84344d1f69b878c7926dacd7f","user":{"login":"agovino","id":18645810,"node_id":"MDQ6VXNlcjE4NjQ1ODEw","avatar_url":"https://avatars.githubusercontent.com/u/18645810?v=4","gravatar_id":"","url":"https://api.github.com/users/agovino","html_url":"https://github.com/agovino","followers_url":"https://api.github.com/users/agovino/followers","following_url":"https://api.github.com/users/agovino/following{/other_user}","gists_url":"https://api.github.com/users/agovino/gists{/gist_id}","starred_url":"https://api.github.com/users/agovino/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/agovino/subscriptions","organizations_url":"https://api.github.com/users/agovino/orgs","repos_url":"https://api.github.com/users/agovino/repos","events_url":"https://api.github.com/users/agovino/events{/privacy}","received_events_url":"https://api.github.com/users/agovino/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":39,"public_gists":14,"followers":0,"following":0,"created_at":"2016-04-24T16:26:20Z","updated_at":"2019-03-14T22:15:47Z"},"id":"5d13d9d84344d1f69b878c7926dacd7f","created_at":"2017-03-14T13:57:02Z","updated_at":"2017-03-14T13:57:02Z"},{"url":"https://api.github.com/gists/4448d7dc7cf85a97d561503ae6360067","user":{"login":"Bigg-Iron","id":19870186,"node_id":"MDQ6VXNlcjE5ODcwMTg2","avatar_url":"https://avatars.githubusercontent.com/u/19870186?v=4","gravatar_id":"","url":"https://api.github.com/users/Bigg-Iron","html_url":"https://github.com/Bigg-Iron","followers_url":"https://api.github.com/users/Bigg-Iron/followers","following_url":"https://api.github.com/users/Bigg-Iron/following{/other_user}","gists_url":"https://api.github.com/users/Bigg-Iron/gists{/gist_id}","starred_url":"https://api.github.com/users/Bigg-Iron/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Bigg-Iron/subscriptions","organizations_url":"https://api.github.com/users/Bigg-Iron/orgs","repos_url":"https://api.github.com/users/Bigg-Iron/repos","events_url":"https://api.github.com/users/Bigg-Iron/events{/privacy}","received_events_url":"https://api.github.com/users/Bigg-Iron/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Renzo ","company":null,"blog":"","location":null,"email":null,"hireable":true,"bio":"I like long walks on the beach.","twitter_username":null,"public_repos":76,"public_gists":2,"followers":20,"following":26,"created_at":"2016-06-11T07:56:18Z","updated_at":"2026-04-12T04:16:15Z"},"id":"4448d7dc7cf85a97d561503ae6360067","created_at":"2017-03-20T00:48:02Z","updated_at":"2017-03-20T00:48:02Z"},{"url":"https://api.github.com/gists/0231317fb92638726dc9f64382dd38ba","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":341,"public_gists":21,"followers":122,"following":60,"created_at":"2010-08-02T14:48:39Z","updated_at":"2026-04-10T11:27:15Z"},"id":"0231317fb92638726dc9f64382dd38ba","created_at":"2017-04-02T14:10:16Z","updated_at":"2017-04-02T14:13:02Z"},{"url":"https://api.github.com/gists/ce5103d43cfa6cd516f5dd7d434a291f","user":{"login":"aberner","id":151174,"node_id":"MDQ6VXNlcjE1MTE3NA==","avatar_url":"https://avatars.githubusercontent.com/u/151174?v=4","gravatar_id":"","url":"https://api.github.com/users/aberner","html_url":"https://github.com/aberner","followers_url":"https://api.github.com/users/aberner/followers","following_url":"https://api.github.com/users/aberner/following{/other_user}","gists_url":"https://api.github.com/users/aberner/gists{/gist_id}","starred_url":"https://api.github.com/users/aberner/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/aberner/subscriptions","organizations_url":"https://api.github.com/users/aberner/orgs","repos_url":"https://api.github.com/users/aberner/repos","events_url":"https://api.github.com/users/aberner/events{/privacy}","received_events_url":"https://api.github.com/users/aberner/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Arne Berner","company":"Advisense","blog":"","location":"Oslo, Norway","email":"aberner@practical.no","hireable":null,"bio":null,"twitter_username":null,"public_repos":27,"public_gists":1,"followers":7,"following":7,"created_at":"2009-11-10T08:58:39Z","updated_at":"2026-04-07T06:57:35Z"},"id":"ce5103d43cfa6cd516f5dd7d434a291f","created_at":"2017-05-03T12:13:55Z","updated_at":"2017-05-03T13:05:24Z"},{"url":"https://api.github.com/gists/7c5f24ef7d4237f7eb33f17e59a6976e","user":{"login":"vasturiano","id":6784226,"node_id":"MDQ6VXNlcjY3ODQyMjY=","avatar_url":"https://avatars.githubusercontent.com/u/6784226?v=4","gravatar_id":"","url":"https://api.github.com/users/vasturiano","html_url":"https://github.com/vasturiano","followers_url":"https://api.github.com/users/vasturiano/followers","following_url":"https://api.github.com/users/vasturiano/following{/other_user}","gists_url":"https://api.github.com/users/vasturiano/gists{/gist_id}","starred_url":"https://api.github.com/users/vasturiano/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/vasturiano/subscriptions","organizations_url":"https://api.github.com/users/vasturiano/orgs","repos_url":"https://api.github.com/users/vasturiano/repos","events_url":"https://api.github.com/users/vasturiano/events{/privacy}","received_events_url":"https://api.github.com/users/vasturiano/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Vasco Asturiano","company":"@cloudflare ","blog":"observablehq.com/@vasturiano","location":"Lisbon, Portugal","email":"vastur@gmail.com","hireable":null,"bio":"Data sculptor","twitter_username":"vastur","public_repos":95,"public_gists":58,"followers":2266,"following":41,"created_at":"2014-02-25T15:57:32Z","updated_at":"2026-01-12T12:52:38Z"},"id":"7c5f24ef7d4237f7eb33f17e59a6976e","created_at":"2017-05-21T07:27:51Z","updated_at":"2020-12-12T18:27:35Z"},{"url":"https://api.github.com/gists/5b3b452a126c643ff07757e82020e5c9","user":{"login":"schluppeck","id":10121356,"node_id":"MDQ6VXNlcjEwMTIxMzU2","avatar_url":"https://avatars.githubusercontent.com/u/10121356?v=4","gravatar_id":"","url":"https://api.github.com/users/schluppeck","html_url":"https://github.com/schluppeck","followers_url":"https://api.github.com/users/schluppeck/followers","following_url":"https://api.github.com/users/schluppeck/following{/other_user}","gists_url":"https://api.github.com/users/schluppeck/gists{/gist_id}","starred_url":"https://api.github.com/users/schluppeck/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/schluppeck/subscriptions","organizations_url":"https://api.github.com/users/schluppeck/orgs","repos_url":"https://api.github.com/users/schluppeck/repos","events_url":"https://api.github.com/users/schluppeck/events{/privacy}","received_events_url":"https://api.github.com/users/schluppeck/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Denis Schluppeck","company":"University of Nottingham","blog":"http://schluppeck.github.io/ds1/","location":"Nottingham, UK","email":"denis.schluppeck@gmail.com","hireable":null,"bio":"Neuroscientist at University of Nottingham @nottingham-neuroimaging \r\n #matlab #rstats #julialang","twitter_username":"schluppeck","public_repos":72,"public_gists":79,"followers":37,"following":6,"created_at":"2014-12-08T20:45:05Z","updated_at":"2026-03-25T11:35:23Z"},"id":"5b3b452a126c643ff07757e82020e5c9","created_at":"2017-06-09T11:09:25Z","updated_at":"2017-06-09T13:38:10Z"},{"url":"https://api.github.com/gists/04b7df3f85264f46048c7730a4c15e53","user":{"login":"chrisfrancis27","id":273311,"node_id":"MDQ6VXNlcjI3MzMxMQ==","avatar_url":"https://avatars.githubusercontent.com/u/273311?v=4","gravatar_id":"","url":"https://api.github.com/users/chrisfrancis27","html_url":"https://github.com/chrisfrancis27","followers_url":"https://api.github.com/users/chrisfrancis27/followers","following_url":"https://api.github.com/users/chrisfrancis27/following{/other_user}","gists_url":"https://api.github.com/users/chrisfrancis27/gists{/gist_id}","starred_url":"https://api.github.com/users/chrisfrancis27/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/chrisfrancis27/subscriptions","organizations_url":"https://api.github.com/users/chrisfrancis27/orgs","repos_url":"https://api.github.com/users/chrisfrancis27/repos","events_url":"https://api.github.com/users/chrisfrancis27/events{/privacy}","received_events_url":"https://api.github.com/users/chrisfrancis27/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Chris Francis","company":null,"blog":"linkedin.com/in/chrisfrancis27","location":"Scotland","email":"chris@event-loop.dev","hireable":null,"bio":"I type into computers and sometimes things happen.","twitter_username":"chrisfrancis27","public_repos":22,"public_gists":27,"followers":28,"following":41,"created_at":"2010-05-11T12:46:18Z","updated_at":"2025-02-14T14:10:27Z"},"id":"04b7df3f85264f46048c7730a4c15e53","created_at":"2017-06-12T19:41:28Z","updated_at":"2017-06-12T19:41:29Z"},{"url":"https://api.github.com/gists/a8e8c5e9aed71ba96bd52332682c0399","user":{"login":"XavierGimenez","id":5372293,"node_id":"MDQ6VXNlcjUzNzIyOTM=","avatar_url":"https://avatars.githubusercontent.com/u/5372293?v=4","gravatar_id":"","url":"https://api.github.com/users/XavierGimenez","html_url":"https://github.com/XavierGimenez","followers_url":"https://api.github.com/users/XavierGimenez/followers","following_url":"https://api.github.com/users/XavierGimenez/following{/other_user}","gists_url":"https://api.github.com/users/XavierGimenez/gists{/gist_id}","starred_url":"https://api.github.com/users/XavierGimenez/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/XavierGimenez/subscriptions","organizations_url":"https://api.github.com/users/XavierGimenez/orgs","repos_url":"https://api.github.com/users/XavierGimenez/repos","events_url":"https://api.github.com/users/XavierGimenez/events{/privacy}","received_events_url":"https://api.github.com/users/XavierGimenez/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Xavi Gimenez","company":"@TheEconomist","blog":"http://www.xavigimenez.net","location":"Barcelona","email":"xavi@xavigimenez.net","hireable":true,"bio":null,"twitter_username":"xavigimenez","public_repos":28,"public_gists":24,"followers":24,"following":4,"created_at":"2013-09-03T11:10:42Z","updated_at":"2026-03-30T09:56:08Z"},"id":"a8e8c5e9aed71ba96bd52332682c0399","created_at":"2017-07-04T08:41:45Z","updated_at":"2026-02-13T05:49:16Z"},{"url":"https://api.github.com/gists/a5b3ba6b010f807b4e06f3b5e4e48cc7","user":{"login":"nateberkopec","id":845662,"node_id":"MDQ6VXNlcjg0NTY2Mg==","avatar_url":"https://avatars.githubusercontent.com/u/845662?v=4","gravatar_id":"","url":"https://api.github.com/users/nateberkopec","html_url":"https://github.com/nateberkopec","followers_url":"https://api.github.com/users/nateberkopec/followers","following_url":"https://api.github.com/users/nateberkopec/following{/other_user}","gists_url":"https://api.github.com/users/nateberkopec/gists{/gist_id}","starred_url":"https://api.github.com/users/nateberkopec/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/nateberkopec/subscriptions","organizations_url":"https://api.github.com/users/nateberkopec/orgs","repos_url":"https://api.github.com/users/nateberkopec/repos","events_url":"https://api.github.com/users/nateberkopec/events{/privacy}","received_events_url":"https://api.github.com/users/nateberkopec/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Nate Berkopec","company":"@speedshop ","blog":"http://nateberkopec.com","location":"Tokyo, JP","email":"me@nateberkopec.com","hireable":null,"bio":"Owner @ https://www.speedshop.co, author of www.railsspeed.com.","twitter_username":"nateberkopec","public_repos":149,"public_gists":100,"followers":1078,"following":68,"created_at":"2011-06-12T20:17:39Z","updated_at":"2026-04-01T01:01:54Z"},"id":"a5b3ba6b010f807b4e06f3b5e4e48cc7","created_at":"2017-07-14T21:26:35Z","updated_at":"2017-07-14T21:26:35Z"},{"url":"https://api.github.com/gists/62ee4ae2cd4eb2d6ad9fb84cda48e6ac","user":{"login":"dbravin","id":25751505,"node_id":"MDQ6VXNlcjI1NzUxNTA1","avatar_url":"https://avatars.githubusercontent.com/u/25751505?v=4","gravatar_id":"","url":"https://api.github.com/users/dbravin","html_url":"https://github.com/dbravin","followers_url":"https://api.github.com/users/dbravin/followers","following_url":"https://api.github.com/users/dbravin/following{/other_user}","gists_url":"https://api.github.com/users/dbravin/gists{/gist_id}","starred_url":"https://api.github.com/users/dbravin/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dbravin/subscriptions","organizations_url":"https://api.github.com/users/dbravin/orgs","repos_url":"https://api.github.com/users/dbravin/repos","events_url":"https://api.github.com/users/dbravin/events{/privacy}","received_events_url":"https://api.github.com/users/dbravin/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":3,"followers":0,"following":0,"created_at":"2017-02-13T18:29:59Z","updated_at":"2026-04-02T14:52:45Z"},"id":"62ee4ae2cd4eb2d6ad9fb84cda48e6ac","created_at":"2017-07-21T19:53:03Z","updated_at":"2017-07-21T20:43:10Z"},{"url":"https://api.github.com/gists/d744d0799dc19c77db9f200017d9c113","user":{"login":"stv0g","id":285829,"node_id":"MDQ6VXNlcjI4NTgyOQ==","avatar_url":"https://avatars.githubusercontent.com/u/285829?v=4","gravatar_id":"","url":"https://api.github.com/users/stv0g","html_url":"https://github.com/stv0g","followers_url":"https://api.github.com/users/stv0g/followers","following_url":"https://api.github.com/users/stv0g/following{/other_user}","gists_url":"https://api.github.com/users/stv0g/gists{/gist_id}","starred_url":"https://api.github.com/users/stv0g/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/stv0g/subscriptions","organizations_url":"https://api.github.com/users/stv0g/orgs","repos_url":"https://api.github.com/users/stv0g/repos","events_url":"https://api.github.com/users/stv0g/events{/privacy}","received_events_url":"https://api.github.com/users/stv0g/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Steffen Vogel","company":"@opal-rt-germany","blog":"http://www.steffenvogel.de","location":"Germany","email":"post@steffenvogel.de","hireable":true,"bio":"Find my work at https://codeberg.org/stv0g","twitter_username":null,"public_repos":11,"public_gists":17,"followers":172,"following":101,"created_at":"2010-05-24T17:31:19Z","updated_at":"2026-04-05T17:32:44Z"},"id":"d744d0799dc19c77db9f200017d9c113","created_at":"2017-07-31T07:38:52Z","updated_at":"2017-07-31T08:10:47Z"},{"url":"https://api.github.com/gists/c4502b8229e181d365f0f6d6637872e8","user":{"login":"rodighiero","id":2089004,"node_id":"MDQ6VXNlcjIwODkwMDQ=","avatar_url":"https://avatars.githubusercontent.com/u/2089004?v=4","gravatar_id":"","url":"https://api.github.com/users/rodighiero","html_url":"https://github.com/rodighiero","followers_url":"https://api.github.com/users/rodighiero/followers","following_url":"https://api.github.com/users/rodighiero/following{/other_user}","gists_url":"https://api.github.com/users/rodighiero/gists{/gist_id}","starred_url":"https://api.github.com/users/rodighiero/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rodighiero/subscriptions","organizations_url":"https://api.github.com/users/rodighiero/orgs","repos_url":"https://api.github.com/users/rodighiero/repos","events_url":"https://api.github.com/users/rodighiero/events{/privacy}","received_events_url":"https://api.github.com/users/rodighiero/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Dario Rodighiero","company":"University of Groningen","blog":"dariorodighiero.com","location":"Netherlands","email":null,"hireable":null,"bio":"Assistant Professor of STS","twitter_username":null,"public_repos":21,"public_gists":9,"followers":73,"following":28,"created_at":"2012-08-03T10:30:30Z","updated_at":"2026-04-11T06:27:09Z"},"id":"c4502b8229e181d365f0f6d6637872e8","created_at":"2017-08-12T08:31:20Z","updated_at":"2024-04-02T02:39:58Z"},{"url":"https://api.github.com/gists/23e03e1c678fc5e138e3913e88bc1b64","user":{"login":"ulope","id":55078,"node_id":"MDQ6VXNlcjU1MDc4","avatar_url":"https://avatars.githubusercontent.com/u/55078?v=4","gravatar_id":"","url":"https://api.github.com/users/ulope","html_url":"https://github.com/ulope","followers_url":"https://api.github.com/users/ulope/followers","following_url":"https://api.github.com/users/ulope/following{/other_user}","gists_url":"https://api.github.com/users/ulope/gists{/gist_id}","starred_url":"https://api.github.com/users/ulope/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ulope/subscriptions","organizations_url":"https://api.github.com/users/ulope/orgs","repos_url":"https://api.github.com/users/ulope/repos","events_url":"https://api.github.com/users/ulope/events{/privacy}","received_events_url":"https://api.github.com/users/ulope/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Ulrich Petri","company":null,"blog":"","location":"Mainz, Germany","email":"github@ulo.pe","hireable":null,"bio":null,"twitter_username":"ulope","public_repos":121,"public_gists":52,"followers":355,"following":6,"created_at":"2009-02-16T23:23:32Z","updated_at":"2026-04-07T12:17:09Z"},"id":"23e03e1c678fc5e138e3913e88bc1b64","created_at":"2017-08-21T15:06:15Z","updated_at":"2017-08-21T15:31:51Z"},{"url":"https://api.github.com/gists/3325858a41e0c2b1e510424bc197a1bc","user":{"login":"akollegger","id":53756,"node_id":"MDQ6VXNlcjUzNzU2","avatar_url":"https://avatars.githubusercontent.com/u/53756?v=4","gravatar_id":"","url":"https://api.github.com/users/akollegger","html_url":"https://github.com/akollegger","followers_url":"https://api.github.com/users/akollegger/followers","following_url":"https://api.github.com/users/akollegger/following{/other_user}","gists_url":"https://api.github.com/users/akollegger/gists{/gist_id}","starred_url":"https://api.github.com/users/akollegger/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/akollegger/subscriptions","organizations_url":"https://api.github.com/users/akollegger/orgs","repos_url":"https://api.github.com/users/akollegger/repos","events_url":"https://api.github.com/users/akollegger/events{/privacy}","received_events_url":"https://api.github.com/users/akollegger/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Andreas Kollegger","company":"@neo4j ","blog":"https://neo4j.com","location":"Cambridge, UK","email":"akollegger@gmail.com","hireable":null,"bio":"Developing software for a developing world.","twitter_username":"akollegger","public_repos":201,"public_gists":35,"followers":150,"following":26,"created_at":"2009-02-11T21:06:42Z","updated_at":"2026-04-10T07:42:17Z"},"id":"3325858a41e0c2b1e510424bc197a1bc","created_at":"2017-08-25T05:32:05Z","updated_at":"2017-08-25T05:32:06Z"},{"url":"https://api.github.com/gists/369cb26eea3c8c383c79358d1564a9f4","user":{"login":"PallaviTS","id":3283172,"node_id":"MDQ6VXNlcjMyODMxNzI=","avatar_url":"https://avatars.githubusercontent.com/u/3283172?v=4","gravatar_id":"","url":"https://api.github.com/users/PallaviTS","html_url":"https://github.com/PallaviTS","followers_url":"https://api.github.com/users/PallaviTS/followers","following_url":"https://api.github.com/users/PallaviTS/following{/other_user}","gists_url":"https://api.github.com/users/PallaviTS/gists{/gist_id}","starred_url":"https://api.github.com/users/PallaviTS/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/PallaviTS/subscriptions","organizations_url":"https://api.github.com/users/PallaviTS/orgs","repos_url":"https://api.github.com/users/PallaviTS/repos","events_url":"https://api.github.com/users/PallaviTS/events{/privacy}","received_events_url":"https://api.github.com/users/PallaviTS/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Pallavi TS","company":null,"blog":"","location":"Berlin, Germany","email":null,"hireable":true,"bio":null,"twitter_username":null,"public_repos":53,"public_gists":11,"followers":24,"following":35,"created_at":"2013-01-16T07:17:45Z","updated_at":"2025-12-22T09:04:43Z"},"id":"369cb26eea3c8c383c79358d1564a9f4","created_at":"2017-09-22T06:49:50Z","updated_at":"2017-09-22T06:49:50Z"},{"url":"https://api.github.com/gists/9e15537405d0390e210965c1d629ed12","user":{"login":"abaisero","id":1794938,"node_id":"MDQ6VXNlcjE3OTQ5Mzg=","avatar_url":"https://avatars.githubusercontent.com/u/1794938?v=4","gravatar_id":"","url":"https://api.github.com/users/abaisero","html_url":"https://github.com/abaisero","followers_url":"https://api.github.com/users/abaisero/followers","following_url":"https://api.github.com/users/abaisero/following{/other_user}","gists_url":"https://api.github.com/users/abaisero/gists{/gist_id}","starred_url":"https://api.github.com/users/abaisero/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/abaisero/subscriptions","organizations_url":"https://api.github.com/users/abaisero/orgs","repos_url":"https://api.github.com/users/abaisero/repos","events_url":"https://api.github.com/users/abaisero/events{/privacy}","received_events_url":"https://api.github.com/users/abaisero/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"A. Baisero","company":null,"blog":"https://www.khoury.northeastern.edu/home/abaisero/","location":null,"email":"andrea.baisero@gmail.com","hireable":null,"bio":"PhD student, reinforcement learning, partial observability","twitter_username":null,"public_repos":50,"public_gists":5,"followers":13,"following":2,"created_at":"2012-05-30T19:07:08Z","updated_at":"2026-04-02T21:20:43Z"},"id":"9e15537405d0390e210965c1d629ed12","created_at":"2017-09-22T14:37:55Z","updated_at":"2017-09-22T14:37:55Z"},{"url":"https://api.github.com/gists/c1abfcb0ac04175cf61045ec6f2a26e3","user":{"login":"soodimilanlouei","id":12864506,"node_id":"MDQ6VXNlcjEyODY0NTA2","avatar_url":"https://avatars.githubusercontent.com/u/12864506?v=4","gravatar_id":"","url":"https://api.github.com/users/soodimilanlouei","html_url":"https://github.com/soodimilanlouei","followers_url":"https://api.github.com/users/soodimilanlouei/followers","following_url":"https://api.github.com/users/soodimilanlouei/following{/other_user}","gists_url":"https://api.github.com/users/soodimilanlouei/gists{/gist_id}","starred_url":"https://api.github.com/users/soodimilanlouei/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/soodimilanlouei/subscriptions","organizations_url":"https://api.github.com/users/soodimilanlouei/orgs","repos_url":"https://api.github.com/users/soodimilanlouei/repos","events_url":"https://api.github.com/users/soodimilanlouei/events{/privacy}","received_events_url":"https://api.github.com/users/soodimilanlouei/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Soodi","company":"Northeastern University","blog":"https://www.soodabehmilanlouei.com/","location":null,"email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":16,"public_gists":5,"followers":3,"following":8,"created_at":"2015-06-12T18:22:38Z","updated_at":"2024-06-07T13:49:56Z"},"id":"c1abfcb0ac04175cf61045ec6f2a26e3","created_at":"2017-09-25T20:09:43Z","updated_at":"2017-09-30T14:05:20Z"},{"url":"https://api.github.com/gists/13211d86f693a0a88d9a8180621d0d1a","user":{"login":"mohammadire","id":32391334,"node_id":"MDQ6VXNlcjMyMzkxMzM0","avatar_url":"https://avatars.githubusercontent.com/u/32391334?v=4","gravatar_id":"","url":"https://api.github.com/users/mohammadire","html_url":"https://github.com/mohammadire","followers_url":"https://api.github.com/users/mohammadire/followers","following_url":"https://api.github.com/users/mohammadire/following{/other_user}","gists_url":"https://api.github.com/users/mohammadire/gists{/gist_id}","starred_url":"https://api.github.com/users/mohammadire/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mohammadire/subscriptions","organizations_url":"https://api.github.com/users/mohammadire/orgs","repos_url":"https://api.github.com/users/mohammadire/repos","events_url":"https://api.github.com/users/mohammadire/events{/privacy}","received_events_url":"https://api.github.com/users/mohammadire/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":2,"followers":0,"following":0,"created_at":"2017-09-29T12:50:58Z","updated_at":"2023-11-25T02:33:07Z"},"id":"13211d86f693a0a88d9a8180621d0d1a","created_at":"2017-09-29T12:53:29Z","updated_at":"2017-10-18T18:41:20Z"},{"url":"https://api.github.com/gists/ccf0f615e89b914f9ec96b5968b48215","user":{"login":"jlyon","id":550909,"node_id":"MDQ6VXNlcjU1MDkwOQ==","avatar_url":"https://avatars.githubusercontent.com/u/550909?v=4","gravatar_id":"","url":"https://api.github.com/users/jlyon","html_url":"https://github.com/jlyon","followers_url":"https://api.github.com/users/jlyon/followers","following_url":"https://api.github.com/users/jlyon/following{/other_user}","gists_url":"https://api.github.com/users/jlyon/gists{/gist_id}","starred_url":"https://api.github.com/users/jlyon/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jlyon/subscriptions","organizations_url":"https://api.github.com/users/jlyon/orgs","repos_url":"https://api.github.com/users/jlyon/repos","events_url":"https://api.github.com/users/jlyon/events{/privacy}","received_events_url":"https://api.github.com/users/jlyon/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Jeff Lyon","company":null,"blog":"","location":"Oakland, CA","email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":60,"public_gists":43,"followers":14,"following":3,"created_at":"2011-01-06T20:21:18Z","updated_at":"2025-12-15T04:14:02Z"},"id":"ccf0f615e89b914f9ec96b5968b48215","created_at":"2017-09-30T21:45:56Z","updated_at":"2017-10-01T01:29:36Z"},{"url":"https://api.github.com/gists/f907bca52bf61dbc44de61f09a550dd4","user":{"login":"XinyuHua","id":8295434,"node_id":"MDQ6VXNlcjgyOTU0MzQ=","avatar_url":"https://avatars.githubusercontent.com/u/8295434?v=4","gravatar_id":"","url":"https://api.github.com/users/XinyuHua","html_url":"https://github.com/XinyuHua","followers_url":"https://api.github.com/users/XinyuHua/followers","following_url":"https://api.github.com/users/XinyuHua/following{/other_user}","gists_url":"https://api.github.com/users/XinyuHua/gists{/gist_id}","starred_url":"https://api.github.com/users/XinyuHua/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/XinyuHua/subscriptions","organizations_url":"https://api.github.com/users/XinyuHua/orgs","repos_url":"https://api.github.com/users/XinyuHua/repos","events_url":"https://api.github.com/users/XinyuHua/events{/privacy}","received_events_url":"https://api.github.com/users/XinyuHua/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Xinyu Hua","company":"Bloomberg LP","blog":"https://xyhua.me","location":"New York City","email":"xinyuhua1994@gmail.com","hireable":null,"bio":"MLE at Bloomberg AI","twitter_username":null,"public_repos":30,"public_gists":7,"followers":30,"following":9,"created_at":"2014-07-29T02:56:02Z","updated_at":"2025-07-03T02:58:34Z"},"id":"f907bca52bf61dbc44de61f09a550dd4","created_at":"2017-10-01T03:07:48Z","updated_at":"2017-10-17T02:13:44Z"},{"url":"https://api.github.com/gists/744ee518eb1f24aa960497295e6dcbdf","user":{"login":"KechenQin","id":11895497,"node_id":"MDQ6VXNlcjExODk1NDk3","avatar_url":"https://avatars.githubusercontent.com/u/11895497?v=4","gravatar_id":"","url":"https://api.github.com/users/KechenQin","html_url":"https://github.com/KechenQin","followers_url":"https://api.github.com/users/KechenQin/followers","following_url":"https://api.github.com/users/KechenQin/following{/other_user}","gists_url":"https://api.github.com/users/KechenQin/gists{/gist_id}","starred_url":"https://api.github.com/users/KechenQin/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/KechenQin/subscriptions","organizations_url":"https://api.github.com/users/KechenQin/orgs","repos_url":"https://api.github.com/users/KechenQin/repos","events_url":"https://api.github.com/users/KechenQin/events{/privacy}","received_events_url":"https://api.github.com/users/KechenQin/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":19,"public_gists":3,"followers":2,"following":0,"created_at":"2015-04-11T03:07:44Z","updated_at":"2025-03-25T14:54:01Z"},"id":"744ee518eb1f24aa960497295e6dcbdf","created_at":"2017-10-02T00:32:32Z","updated_at":"2017-10-18T15:08:47Z"},{"url":"https://api.github.com/gists/b30fe07867860b639d5c9edd4669fb18","user":{"login":"giridhariv","id":32473439,"node_id":"MDQ6VXNlcjMyNDczNDM5","avatar_url":"https://avatars.githubusercontent.com/u/32473439?v=4","gravatar_id":"","url":"https://api.github.com/users/giridhariv","html_url":"https://github.com/giridhariv","followers_url":"https://api.github.com/users/giridhariv/followers","following_url":"https://api.github.com/users/giridhariv/following{/other_user}","gists_url":"https://api.github.com/users/giridhariv/gists{/gist_id}","starred_url":"https://api.github.com/users/giridhariv/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/giridhariv/subscriptions","organizations_url":"https://api.github.com/users/giridhariv/orgs","repos_url":"https://api.github.com/users/giridhariv/repos","events_url":"https://api.github.com/users/giridhariv/events{/privacy}","received_events_url":"https://api.github.com/users/giridhariv/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":3,"followers":0,"following":0,"created_at":"2017-10-03T02:38:37Z","updated_at":"2026-04-09T22:59:11Z"},"id":"b30fe07867860b639d5c9edd4669fb18","created_at":"2017-10-03T02:40:02Z","updated_at":"2017-10-03T04:49:57Z"},{"url":"https://api.github.com/gists/0ce9224ee467d1d9fcbebd6b95b27541","user":{"login":"anirudh-k","id":19635161,"node_id":"MDQ6VXNlcjE5NjM1MTYx","avatar_url":"https://avatars.githubusercontent.com/u/19635161?v=4","gravatar_id":"","url":"https://api.github.com/users/anirudh-k","html_url":"https://github.com/anirudh-k","followers_url":"https://api.github.com/users/anirudh-k/followers","following_url":"https://api.github.com/users/anirudh-k/following{/other_user}","gists_url":"https://api.github.com/users/anirudh-k/gists{/gist_id}","starred_url":"https://api.github.com/users/anirudh-k/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/anirudh-k/subscriptions","organizations_url":"https://api.github.com/users/anirudh-k/orgs","repos_url":"https://api.github.com/users/anirudh-k/repos","events_url":"https://api.github.com/users/anirudh-k/events{/privacy}","received_events_url":"https://api.github.com/users/anirudh-k/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Anirudh Kaushik","company":"Hinge","blog":"https://linkedin.com/in/anirudh-k","location":"New York","email":null,"hireable":null,"bio":"software engineer","twitter_username":null,"public_repos":27,"public_gists":8,"followers":18,"following":23,"created_at":"2016-05-29T14:13:24Z","updated_at":"2025-09-23T15:27:08Z"},"id":"0ce9224ee467d1d9fcbebd6b95b27541","created_at":"2017-10-03T03:17:40Z","updated_at":"2017-10-03T03:39:01Z"},{"url":"https://api.github.com/gists/d34bc449eb4696c419305302f85aeb82","user":{"login":"ryancebulko","id":32822737,"node_id":"MDQ6VXNlcjMyODIyNzM3","avatar_url":"https://avatars.githubusercontent.com/u/32822737?v=4","gravatar_id":"","url":"https://api.github.com/users/ryancebulko","html_url":"https://github.com/ryancebulko","followers_url":"https://api.github.com/users/ryancebulko/followers","following_url":"https://api.github.com/users/ryancebulko/following{/other_user}","gists_url":"https://api.github.com/users/ryancebulko/gists{/gist_id}","starred_url":"https://api.github.com/users/ryancebulko/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ryancebulko/subscriptions","organizations_url":"https://api.github.com/users/ryancebulko/orgs","repos_url":"https://api.github.com/users/ryancebulko/repos","events_url":"https://api.github.com/users/ryancebulko/events{/privacy}","received_events_url":"https://api.github.com/users/ryancebulko/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":0,"public_gists":1,"followers":0,"following":0,"created_at":"2017-10-15T20:47:22Z","updated_at":"2017-10-15T20:47:22Z"},"id":"d34bc449eb4696c419305302f85aeb82","created_at":"2017-10-15T20:49:06Z","updated_at":"2017-10-15T20:49:07Z"},{"url":"https://api.github.com/gists/73a13f262eaa8e014b41436adacaeced","user":{"login":"skyfall314","id":1703665,"node_id":"MDQ6VXNlcjE3MDM2NjU=","avatar_url":"https://avatars.githubusercontent.com/u/1703665?v=4","gravatar_id":"","url":"https://api.github.com/users/skyfall314","html_url":"https://github.com/skyfall314","followers_url":"https://api.github.com/users/skyfall314/followers","following_url":"https://api.github.com/users/skyfall314/following{/other_user}","gists_url":"https://api.github.com/users/skyfall314/gists{/gist_id}","starred_url":"https://api.github.com/users/skyfall314/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skyfall314/subscriptions","organizations_url":"https://api.github.com/users/skyfall314/orgs","repos_url":"https://api.github.com/users/skyfall314/repos","events_url":"https://api.github.com/users/skyfall314/events{/privacy}","received_events_url":"https://api.github.com/users/skyfall314/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"skyfall314","company":null,"blog":"","location":null,"email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":3,"public_gists":1,"followers":0,"following":3,"created_at":"2012-05-03T19:40:00Z","updated_at":"2026-03-26T18:40:21Z"},"id":"73a13f262eaa8e014b41436adacaeced","created_at":"2017-10-25T11:50:44Z","updated_at":"2017-10-25T11:50:44Z"},{"url":"https://api.github.com/gists/35787bb4e8e71b25296fbfa7a3627524","user":{"login":"budajeff","id":1819085,"node_id":"MDQ6VXNlcjE4MTkwODU=","avatar_url":"https://avatars.githubusercontent.com/u/1819085?v=4","gravatar_id":"","url":"https://api.github.com/users/budajeff","html_url":"https://github.com/budajeff","followers_url":"https://api.github.com/users/budajeff/followers","following_url":"https://api.github.com/users/budajeff/following{/other_user}","gists_url":"https://api.github.com/users/budajeff/gists{/gist_id}","starred_url":"https://api.github.com/users/budajeff/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/budajeff/subscriptions","organizations_url":"https://api.github.com/users/budajeff/orgs","repos_url":"https://api.github.com/users/budajeff/repos","events_url":"https://api.github.com/users/budajeff/events{/privacy}","received_events_url":"https://api.github.com/users/budajeff/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Jeff","company":null,"blog":"","location":null,"email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":14,"public_gists":1,"followers":1,"following":1,"created_at":"2012-06-05T12:11:23Z","updated_at":"2022-07-03T02:22:15Z"},"id":"35787bb4e8e71b25296fbfa7a3627524","created_at":"2017-10-27T12:48:27Z","updated_at":"2017-10-27T12:48:27Z"},{"url":"https://api.github.com/gists/d1f00f040ba726785b03ac9477b4711f","user":{"login":"michaschwab","id":288117,"node_id":"MDQ6VXNlcjI4ODExNw==","avatar_url":"https://avatars.githubusercontent.com/u/288117?v=4","gravatar_id":"","url":"https://api.github.com/users/michaschwab","html_url":"https://github.com/michaschwab","followers_url":"https://api.github.com/users/michaschwab/followers","following_url":"https://api.github.com/users/michaschwab/following{/other_user}","gists_url":"https://api.github.com/users/michaschwab/gists{/gist_id}","starred_url":"https://api.github.com/users/michaschwab/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/michaschwab/subscriptions","organizations_url":"https://api.github.com/users/michaschwab/orgs","repos_url":"https://api.github.com/users/michaschwab/repos","events_url":"https://api.github.com/users/michaschwab/events{/privacy}","received_events_url":"https://api.github.com/users/michaschwab/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Micha Schwab","company":"Google","blog":"http://michailschwab.com","location":"Boston, MA","email":"me@michailschwab.com","hireable":null,"bio":"Developer & Data Visualization Researcher","twitter_username":"michaschwab","public_repos":36,"public_gists":22,"followers":46,"following":7,"created_at":"2010-05-26T22:33:04Z","updated_at":"2026-01-20T04:51:06Z"},"id":"d1f00f040ba726785b03ac9477b4711f","created_at":"2017-11-07T22:05:51Z","updated_at":"2017-11-07T22:09:54Z"},{"url":"https://api.github.com/gists/51df2316ec481c64b18d9a9769b152ce","user":{"login":"RamyKhorshed","id":2699562,"node_id":"MDQ6VXNlcjI2OTk1NjI=","avatar_url":"https://avatars.githubusercontent.com/u/2699562?v=4","gravatar_id":"","url":"https://api.github.com/users/RamyKhorshed","html_url":"https://github.com/RamyKhorshed","followers_url":"https://api.github.com/users/RamyKhorshed/followers","following_url":"https://api.github.com/users/RamyKhorshed/following{/other_user}","gists_url":"https://api.github.com/users/RamyKhorshed/gists{/gist_id}","starred_url":"https://api.github.com/users/RamyKhorshed/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RamyKhorshed/subscriptions","organizations_url":"https://api.github.com/users/RamyKhorshed/orgs","repos_url":"https://api.github.com/users/RamyKhorshed/repos","events_url":"https://api.github.com/users/RamyKhorshed/events{/privacy}","received_events_url":"https://api.github.com/users/RamyKhorshed/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Ramy Khorshed","company":"Sakneen","blog":"www.ramykhorshed.com","location":"Egypt","email":"Ramy@sakneen.com","hireable":null,"bio":null,"twitter_username":null,"public_repos":243,"public_gists":1,"followers":6,"following":6,"created_at":"2012-11-01T14:59:02Z","updated_at":"2026-04-09T11:16:33Z"},"id":"51df2316ec481c64b18d9a9769b152ce","created_at":"2017-11-13T22:32:07Z","updated_at":"2017-11-13T22:32:07Z"},{"url":"https://api.github.com/gists/e892543805abc658a6a78c8c0230cc7c","user":{"login":"AltiusRupert","id":33985,"node_id":"MDQ6VXNlcjMzOTg1","avatar_url":"https://avatars.githubusercontent.com/u/33985?v=4","gravatar_id":"","url":"https://api.github.com/users/AltiusRupert","html_url":"https://github.com/AltiusRupert","followers_url":"https://api.github.com/users/AltiusRupert/followers","following_url":"https://api.github.com/users/AltiusRupert/following{/other_user}","gists_url":"https://api.github.com/users/AltiusRupert/gists{/gist_id}","starred_url":"https://api.github.com/users/AltiusRupert/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/AltiusRupert/subscriptions","organizations_url":"https://api.github.com/users/AltiusRupert/orgs","repos_url":"https://api.github.com/users/AltiusRupert/repos","events_url":"https://api.github.com/users/AltiusRupert/events{/privacy}","received_events_url":"https://api.github.com/users/AltiusRupert/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Rupert Barrow","company":"DEVOTEAM","blog":"http://customer-effectiveness.devoteam.com","location":"Lyon, France","email":null,"hireable":null,"bio":"CTO Salesforce at Devoteam, Salesforce Platinum partner in France","twitter_username":"altius_rup","public_repos":32,"public_gists":7,"followers":19,"following":16,"created_at":"2008-11-12T06:16:56Z","updated_at":"2025-01-21T18:55:09Z"},"id":"e892543805abc658a6a78c8c0230cc7c","created_at":"2017-11-19T12:51:51Z","updated_at":"2017-11-19T13:21:36Z"},{"url":"https://api.github.com/gists/b439539fab3c390fc9a1fd02f7df257f","user":{"login":"gabycampagna","id":597090,"node_id":"MDQ6VXNlcjU5NzA5MA==","avatar_url":"https://avatars.githubusercontent.com/u/597090?v=4","gravatar_id":"","url":"https://api.github.com/users/gabycampagna","html_url":"https://github.com/gabycampagna","followers_url":"https://api.github.com/users/gabycampagna/followers","following_url":"https://api.github.com/users/gabycampagna/following{/other_user}","gists_url":"https://api.github.com/users/gabycampagna/gists{/gist_id}","starred_url":"https://api.github.com/users/gabycampagna/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/gabycampagna/subscriptions","organizations_url":"https://api.github.com/users/gabycampagna/orgs","repos_url":"https://api.github.com/users/gabycampagna/repos","events_url":"https://api.github.com/users/gabycampagna/events{/privacy}","received_events_url":"https://api.github.com/users/gabycampagna/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Gabrielle Campagna","company":"Centers for Medicare/Medicaid, UCSF, Cisco","blog":"http://gabycampagnadesign.com/","location":"Silicon Valley","email":"gabycampagna@gmail.com","hireable":true,"bio":null,"twitter_username":null,"public_repos":61,"public_gists":7,"followers":0,"following":0,"created_at":"2011-02-02T16:45:43Z","updated_at":"2024-11-07T12:00:13Z"},"id":"b439539fab3c390fc9a1fd02f7df257f","created_at":"2017-11-27T02:38:44Z","updated_at":"2017-11-27T02:38:45Z"},{"url":"https://api.github.com/gists/9daa1fefec1fefa0cf60d8d7ba24f0da","user":{"login":"kwltrs","id":493924,"node_id":"MDQ6VXNlcjQ5MzkyNA==","avatar_url":"https://avatars.githubusercontent.com/u/493924?v=4","gravatar_id":"","url":"https://api.github.com/users/kwltrs","html_url":"https://github.com/kwltrs","followers_url":"https://api.github.com/users/kwltrs/followers","following_url":"https://api.github.com/users/kwltrs/following{/other_user}","gists_url":"https://api.github.com/users/kwltrs/gists{/gist_id}","starred_url":"https://api.github.com/users/kwltrs/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/kwltrs/subscriptions","organizations_url":"https://api.github.com/users/kwltrs/orgs","repos_url":"https://api.github.com/users/kwltrs/repos","events_url":"https://api.github.com/users/kwltrs/events{/privacy}","received_events_url":"https://api.github.com/users/kwltrs/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Kristofer Walters","company":null,"blog":"","location":"Oslo, Norway","email":"kris@wltrs.org","hireable":null,"bio":null,"twitter_username":null,"public_repos":22,"public_gists":10,"followers":9,"following":1,"created_at":"2010-11-23T19:57:04Z","updated_at":"2026-03-11T08:09:36Z"},"id":"9daa1fefec1fefa0cf60d8d7ba24f0da","created_at":"2018-03-22T13:48:29Z","updated_at":"2018-03-22T14:21:09Z"},{"url":"https://api.github.com/gists/5471ad7306d5c32e2472b9b1127dc42d","user":{"login":"cool-Blue","id":8417135,"node_id":"MDQ6VXNlcjg0MTcxMzU=","avatar_url":"https://avatars.githubusercontent.com/u/8417135?v=4","gravatar_id":"","url":"https://api.github.com/users/cool-Blue","html_url":"https://github.com/cool-Blue","followers_url":"https://api.github.com/users/cool-Blue/followers","following_url":"https://api.github.com/users/cool-Blue/following{/other_user}","gists_url":"https://api.github.com/users/cool-Blue/gists{/gist_id}","starred_url":"https://api.github.com/users/cool-Blue/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cool-Blue/subscriptions","organizations_url":"https://api.github.com/users/cool-Blue/orgs","repos_url":"https://api.github.com/users/cool-Blue/repos","events_url":"https://api.github.com/users/cool-Blue/events{/privacy}","received_events_url":"https://api.github.com/users/cool-Blue/received_events","type":"User","user_view_type":"public","site_admin":false,"name":null,"company":null,"blog":"","location":null,"email":"cool.blue@y7mail.com","hireable":true,"bio":null,"twitter_username":null,"public_repos":44,"public_gists":52,"followers":3,"following":0,"created_at":"2014-08-11T13:39:45Z","updated_at":"2026-03-29T00:09:49Z"},"id":"5471ad7306d5c32e2472b9b1127dc42d","created_at":"2018-04-01T07:14:36Z","updated_at":"2018-04-01T07:14:37Z"},{"url":"https://api.github.com/gists/fb4045531da2d1c14b0dbbf2033bcd21","user":{"login":"mhciael","id":31549821,"node_id":"MDQ6VXNlcjMxNTQ5ODIx","avatar_url":"https://avatars.githubusercontent.com/u/31549821?v=4","gravatar_id":"","url":"https://api.github.com/users/mhciael","html_url":"https://github.com/mhciael","followers_url":"https://api.github.com/users/mhciael/followers","following_url":"https://api.github.com/users/mhciael/following{/other_user}","gists_url":"https://api.github.com/users/mhciael/gists{/gist_id}","starred_url":"https://api.github.com/users/mhciael/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mhciael/subscriptions","organizations_url":"https://api.github.com/users/mhciael/orgs","repos_url":"https://api.github.com/users/mhciael/repos","events_url":"https://api.github.com/users/mhciael/events{/privacy}","received_events_url":"https://api.github.com/users/mhciael/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Michael Stewart","company":null,"blog":"http://hcientist.com","location":"Harrisonburg, VA","email":null,"hireable":null,"bio":"Asst. Prof. of C.S. at James Madison University","twitter_username":null,"public_repos":12,"public_gists":3,"followers":34,"following":47,"created_at":"2017-09-01T18:50:46Z","updated_at":"2026-01-15T19:39:21Z"},"id":"fb4045531da2d1c14b0dbbf2033bcd21","created_at":"2018-04-02T18:39:33Z","updated_at":"2018-04-02T18:39:33Z"},{"url":"https://api.github.com/gists/650262dd76754e38f0c8eacb4ca485a8","user":{"login":"shaneyao","id":36338035,"node_id":"MDQ6VXNlcjM2MzM4MDM1","avatar_url":"https://avatars.githubusercontent.com/u/36338035?v=4","gravatar_id":"","url":"https://api.github.com/users/shaneyao","html_url":"https://github.com/shaneyao","followers_url":"https://api.github.com/users/shaneyao/followers","following_url":"https://api.github.com/users/shaneyao/following{/other_user}","gists_url":"https://api.github.com/users/shaneyao/gists{/gist_id}","starred_url":"https://api.github.com/users/shaneyao/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/shaneyao/subscriptions","organizations_url":"https://api.github.com/users/shaneyao/orgs","repos_url":"https://api.github.com/users/shaneyao/repos","events_url":"https://api.github.com/users/shaneyao/events{/privacy}","received_events_url":"https://api.github.com/users/shaneyao/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Shane Yao","company":null,"blog":"","location":null,"email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":3,"public_gists":1,"followers":11,"following":6,"created_at":"2018-02-10T17:07:05Z","updated_at":"2021-11-03T22:34:10Z"},"id":"650262dd76754e38f0c8eacb4ca485a8","created_at":"2018-04-16T19:55:31Z","updated_at":"2018-04-16T19:55:31Z"},{"url":"https://api.github.com/gists/5c7ef2689f0cad21fbbb117871cb9391","user":{"login":"adamfeuer","id":324915,"node_id":"MDQ6VXNlcjMyNDkxNQ==","avatar_url":"https://avatars.githubusercontent.com/u/324915?v=4","gravatar_id":"","url":"https://api.github.com/users/adamfeuer","html_url":"https://github.com/adamfeuer","followers_url":"https://api.github.com/users/adamfeuer/followers","following_url":"https://api.github.com/users/adamfeuer/following{/other_user}","gists_url":"https://api.github.com/users/adamfeuer/gists{/gist_id}","starred_url":"https://api.github.com/users/adamfeuer/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/adamfeuer/subscriptions","organizations_url":"https://api.github.com/users/adamfeuer/orgs","repos_url":"https://api.github.com/users/adamfeuer/repos","events_url":"https://api.github.com/users/adamfeuer/events{/privacy}","received_events_url":"https://api.github.com/users/adamfeuer/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Adam Feuer","company":null,"blog":"http://adamfeuer.com","location":"Seattle, WA, USA","email":"adam@adamfeuer.com","hireable":true,"bio":null,"twitter_username":null,"public_repos":147,"public_gists":8,"followers":71,"following":2,"created_at":"2010-07-07T03:18:30Z","updated_at":"2026-02-11T06:44:14Z"},"id":"5c7ef2689f0cad21fbbb117871cb9391","created_at":"2018-05-10T17:51:31Z","updated_at":"2018-05-10T17:51:31Z"},{"url":"https://api.github.com/gists/5a016a4b4f0bdc767643a8ec1b51b179","user":{"login":"FruitBrother","id":9460195,"node_id":"MDQ6VXNlcjk0NjAxOTU=","avatar_url":"https://avatars.githubusercontent.com/u/9460195?v=4","gravatar_id":"","url":"https://api.github.com/users/FruitBrother","html_url":"https://github.com/FruitBrother","followers_url":"https://api.github.com/users/FruitBrother/followers","following_url":"https://api.github.com/users/FruitBrother/following{/other_user}","gists_url":"https://api.github.com/users/FruitBrother/gists{/gist_id}","starred_url":"https://api.github.com/users/FruitBrother/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/FruitBrother/subscriptions","organizations_url":"https://api.github.com/users/FruitBrother/orgs","repos_url":"https://api.github.com/users/FruitBrother/repos","events_url":"https://api.github.com/users/FruitBrother/events{/privacy}","received_events_url":"https://api.github.com/users/FruitBrother/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Watermelon","company":null,"blog":"","location":null,"email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":36,"public_gists":12,"followers":8,"following":11,"created_at":"2014-10-30T08:56:17Z","updated_at":"2024-08-31T05:46:18Z"},"id":"5a016a4b4f0bdc767643a8ec1b51b179","created_at":"2018-05-24T03:30:11Z","updated_at":"2018-05-24T03:32:12Z"},{"url":"https://api.github.com/gists/c077bf1cbd4f1b609301625c04fc56a4","user":{"login":"rudeigerc","id":18243819,"node_id":"MDQ6VXNlcjE4MjQzODE5","avatar_url":"https://avatars.githubusercontent.com/u/18243819?v=4","gravatar_id":"","url":"https://api.github.com/users/rudeigerc","html_url":"https://github.com/rudeigerc","followers_url":"https://api.github.com/users/rudeigerc/followers","following_url":"https://api.github.com/users/rudeigerc/following{/other_user}","gists_url":"https://api.github.com/users/rudeigerc/gists{/gist_id}","starred_url":"https://api.github.com/users/rudeigerc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rudeigerc/subscriptions","organizations_url":"https://api.github.com/users/rudeigerc/orgs","repos_url":"https://api.github.com/users/rudeigerc/repos","events_url":"https://api.github.com/users/rudeigerc/events{/privacy}","received_events_url":"https://api.github.com/users/rudeigerc/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Yuchen Cheng","company":"@Tencent @TencentCloud ","blog":"https://rudeigerc.dev","location":"Shanghai, China","email":"rudeigerc@gmail.com","hireable":null,"bio":"Software Engineer @Tencent @TencentCloud TI-ONE / #Kubernetes / #LLMOps / #Inference","twitter_username":"yuchenrcheng","public_repos":176,"public_gists":2,"followers":256,"following":196,"created_at":"2016-04-03T11:26:09Z","updated_at":"2026-04-07T17:14:12Z"},"id":"c077bf1cbd4f1b609301625c04fc56a4","created_at":"2018-06-13T07:49:17Z","updated_at":"2018-06-13T07:50:22Z"},{"url":"https://api.github.com/gists/d90ae20eb192d0ee12de2a96feaaf146","user":{"login":"JeffCave","id":10996821,"node_id":"MDQ6VXNlcjEwOTk2ODIx","avatar_url":"https://avatars.githubusercontent.com/u/10996821?v=4","gravatar_id":"","url":"https://api.github.com/users/JeffCave","html_url":"https://github.com/JeffCave","followers_url":"https://api.github.com/users/JeffCave/followers","following_url":"https://api.github.com/users/JeffCave/following{/other_user}","gists_url":"https://api.github.com/users/JeffCave/gists{/gist_id}","starred_url":"https://api.github.com/users/JeffCave/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/JeffCave/subscriptions","organizations_url":"https://api.github.com/users/JeffCave/orgs","repos_url":"https://api.github.com/users/JeffCave/repos","events_url":"https://api.github.com/users/JeffCave/events{/privacy}","received_events_url":"https://api.github.com/users/JeffCave/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Jeff Cave","company":null,"blog":"https://gitlab.com/jefferey-cave","location":"Alberta, Nova Scotia","email":null,"hireable":true,"bio":null,"twitter_username":null,"public_repos":12,"public_gists":5,"followers":10,"following":2,"created_at":"2015-02-13T18:17:01Z","updated_at":"2024-04-15T02:57:40Z"},"id":"d90ae20eb192d0ee12de2a96feaaf146","created_at":"2018-08-08T18:31:50Z","updated_at":"2018-08-08T21:58:40Z"},{"url":"https://api.github.com/gists/2a3972cc826035d3e7a156888f3d24e2","user":{"login":"cstow","id":42198392,"node_id":"MDQ6VXNlcjQyMTk4Mzky","avatar_url":"https://avatars.githubusercontent.com/u/42198392?v=4","gravatar_id":"","url":"https://api.github.com/users/cstow","html_url":"https://github.com/cstow","followers_url":"https://api.github.com/users/cstow/followers","following_url":"https://api.github.com/users/cstow/following{/other_user}","gists_url":"https://api.github.com/users/cstow/gists{/gist_id}","starred_url":"https://api.github.com/users/cstow/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cstow/subscriptions","organizations_url":"https://api.github.com/users/cstow/orgs","repos_url":"https://api.github.com/users/cstow/repos","events_url":"https://api.github.com/users/cstow/events{/privacy}","received_events_url":"https://api.github.com/users/cstow/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":"2018-08-08T05:52:03Z","updated_at":"2026-04-11T10:25:33Z"},"id":"2a3972cc826035d3e7a156888f3d24e2","created_at":"2018-08-10T09:11:00Z","updated_at":"2018-08-10T13:13:38Z"},{"url":"https://api.github.com/gists/5503e97eba878f6d89962ecf7a779053","user":{"login":"reminyborg","id":1716596,"node_id":"MDQ6VXNlcjE3MTY1OTY=","avatar_url":"https://avatars.githubusercontent.com/u/1716596?v=4","gravatar_id":"","url":"https://api.github.com/users/reminyborg","html_url":"https://github.com/reminyborg","followers_url":"https://api.github.com/users/reminyborg/followers","following_url":"https://api.github.com/users/reminyborg/following{/other_user}","gists_url":"https://api.github.com/users/reminyborg/gists{/gist_id}","starred_url":"https://api.github.com/users/reminyborg/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/reminyborg/subscriptions","organizations_url":"https://api.github.com/users/reminyborg/orgs","repos_url":"https://api.github.com/users/reminyborg/repos","events_url":"https://api.github.com/users/reminyborg/events{/privacy}","received_events_url":"https://api.github.com/users/reminyborg/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Remi Nyborg","company":null,"blog":"reminyborg.com","location":"Norway","email":"remi@nyborg.priv.no","hireable":null,"bio":null,"twitter_username":null,"public_repos":24,"public_gists":11,"followers":31,"following":27,"created_at":"2012-05-08T11:11:05Z","updated_at":"2026-03-06T17:42:35Z"},"id":"5503e97eba878f6d89962ecf7a779053","created_at":"2018-09-04T18:51:02Z","updated_at":"2018-09-04T18:51:02Z"},{"url":"https://api.github.com/gists/92519436e652354503c7436809dd4343","user":{"login":"shadiakiki1986","id":8392324,"node_id":"MDQ6VXNlcjgzOTIzMjQ=","avatar_url":"https://avatars.githubusercontent.com/u/8392324?v=4","gravatar_id":"","url":"https://api.github.com/users/shadiakiki1986","html_url":"https://github.com/shadiakiki1986","followers_url":"https://api.github.com/users/shadiakiki1986/followers","following_url":"https://api.github.com/users/shadiakiki1986/following{/other_user}","gists_url":"https://api.github.com/users/shadiakiki1986/gists{/gist_id}","starred_url":"https://api.github.com/users/shadiakiki1986/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/shadiakiki1986/subscriptions","organizations_url":"https://api.github.com/users/shadiakiki1986/orgs","repos_url":"https://api.github.com/users/shadiakiki1986/repos","events_url":"https://api.github.com/users/shadiakiki1986/events{/privacy}","received_events_url":"https://api.github.com/users/shadiakiki1986/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Shadi Akiki","company":null,"blog":"","location":null,"email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":153,"public_gists":41,"followers":35,"following":23,"created_at":"2014-08-08T07:00:19Z","updated_at":"2026-03-24T15:12:48Z"},"id":"92519436e652354503c7436809dd4343","created_at":"2018-09-28T08:02:41Z","updated_at":"2018-09-28T08:02:41Z"},{"url":"https://api.github.com/gists/a4c669973510af5c2f34405ef77c1015","user":{"login":"hogwild","id":13252718,"node_id":"MDQ6VXNlcjEzMjUyNzE4","avatar_url":"https://avatars.githubusercontent.com/u/13252718?v=4","gravatar_id":"","url":"https://api.github.com/users/hogwild","html_url":"https://github.com/hogwild","followers_url":"https://api.github.com/users/hogwild/followers","following_url":"https://api.github.com/users/hogwild/following{/other_user}","gists_url":"https://api.github.com/users/hogwild/gists{/gist_id}","starred_url":"https://api.github.com/users/hogwild/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/hogwild/subscriptions","organizations_url":"https://api.github.com/users/hogwild/orgs","repos_url":"https://api.github.com/users/hogwild/repos","events_url":"https://api.github.com/users/hogwild/events{/privacy}","received_events_url":"https://api.github.com/users/hogwild/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Xianbin Gu (Bing)","company":null,"blog":"","location":null,"email":"guxianbinmail@gmail.com","hireable":null,"bio":"A Ph.D. in information science. My research interests are machine learning and its applications in image processing and data analysis. ","twitter_username":null,"public_repos":177,"public_gists":23,"followers":29,"following":4,"created_at":"2015-07-09T09:32:44Z","updated_at":"2026-03-29T10:54:38Z"},"id":"a4c669973510af5c2f34405ef77c1015","created_at":"2018-10-29T13:50:10Z","updated_at":"2018-10-29T13:50:10Z"},{"url":"https://api.github.com/gists/54c38da0aa6b89a6a14d4f9f004952e7","user":{"login":"Marina-DU","id":49026930,"node_id":"MDQ6VXNlcjQ5MDI2OTMw","avatar_url":"https://avatars.githubusercontent.com/u/49026930?v=4","gravatar_id":"","url":"https://api.github.com/users/Marina-DU","html_url":"https://github.com/Marina-DU","followers_url":"https://api.github.com/users/Marina-DU/followers","following_url":"https://api.github.com/users/Marina-DU/following{/other_user}","gists_url":"https://api.github.com/users/Marina-DU/gists{/gist_id}","starred_url":"https://api.github.com/users/Marina-DU/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Marina-DU/subscriptions","organizations_url":"https://api.github.com/users/Marina-DU/orgs","repos_url":"https://api.github.com/users/Marina-DU/repos","events_url":"https://api.github.com/users/Marina-DU/events{/privacy}","received_events_url":"https://api.github.com/users/Marina-DU/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":0,"public_gists":1,"followers":0,"following":0,"created_at":"2019-03-28T11:23:36Z","updated_at":"2025-07-28T08:49:07Z"},"id":"54c38da0aa6b89a6a14d4f9f004952e7","created_at":"2019-03-28T11:27:24Z","updated_at":"2019-03-28T11:27:24Z"},{"url":"https://api.github.com/gists/ce60cd76f2f6b4e4d4e3acbba86928e9","user":{"login":"IsaacChong","id":73460910,"node_id":"MDQ6VXNlcjczNDYwOTEw","avatar_url":"https://avatars.githubusercontent.com/u/73460910?v=4","gravatar_id":"","url":"https://api.github.com/users/IsaacChong","html_url":"https://github.com/IsaacChong","followers_url":"https://api.github.com/users/IsaacChong/followers","following_url":"https://api.github.com/users/IsaacChong/following{/other_user}","gists_url":"https://api.github.com/users/IsaacChong/gists{/gist_id}","starred_url":"https://api.github.com/users/IsaacChong/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/IsaacChong/subscriptions","organizations_url":"https://api.github.com/users/IsaacChong/orgs","repos_url":"https://api.github.com/users/IsaacChong/repos","events_url":"https://api.github.com/users/IsaacChong/events{/privacy}","received_events_url":"https://api.github.com/users/IsaacChong/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"isaacchong","company":null,"blog":"","location":null,"email":null,"hireable":null,"bio":"Frontend Developer\r\n","twitter_username":"ichong1996","public_repos":25,"public_gists":1,"followers":1,"following":0,"created_at":"2020-10-26T06:43:14Z","updated_at":"2025-06-30T09:07:43Z"},"id":"ce60cd76f2f6b4e4d4e3acbba86928e9","created_at":"2021-05-04T03:32:15Z","updated_at":"2021-05-04T03:32:15Z"},{"url":"https://api.github.com/gists/56720db5a92961c73a3c4d41e48f2e82","user":{"login":"guenp","id":4041805,"node_id":"MDQ6VXNlcjQwNDE4MDU=","avatar_url":"https://avatars.githubusercontent.com/u/4041805?v=4","gravatar_id":"","url":"https://api.github.com/users/guenp","html_url":"https://github.com/guenp","followers_url":"https://api.github.com/users/guenp/followers","following_url":"https://api.github.com/users/guenp/following{/other_user}","gists_url":"https://api.github.com/users/guenp/gists{/gist_id}","starred_url":"https://api.github.com/users/guenp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/guenp/subscriptions","organizations_url":"https://api.github.com/users/guenp/orgs","repos_url":"https://api.github.com/users/guenp/repos","events_url":"https://api.github.com/users/guenp/events{/privacy}","received_events_url":"https://api.github.com/users/guenp/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Guen Prawiroatmodjo","company":null,"blog":"linkedin.guen.pw","location":"Seattle, WA","email":null,"hireable":null,"bio":null,"twitter_username":"guenp","public_repos":98,"public_gists":29,"followers":80,"following":25,"created_at":"2013-04-02T21:31:53Z","updated_at":"2026-04-03T18:41:44Z"},"id":"56720db5a92961c73a3c4d41e48f2e82","created_at":"2021-10-14T04:39:19Z","updated_at":"2021-10-14T04:39:19Z"},{"url":"https://api.github.com/gists/be8fe3870c297353f577be6974ba6d22","user":{"login":"HimaEedala","id":101810941,"node_id":"U_kgDOBhGC_Q","avatar_url":"https://avatars.githubusercontent.com/u/101810941?v=4","gravatar_id":"","url":"https://api.github.com/users/HimaEedala","html_url":"https://github.com/HimaEedala","followers_url":"https://api.github.com/users/HimaEedala/followers","following_url":"https://api.github.com/users/HimaEedala/following{/other_user}","gists_url":"https://api.github.com/users/HimaEedala/gists{/gist_id}","starred_url":"https://api.github.com/users/HimaEedala/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/HimaEedala/subscriptions","organizations_url":"https://api.github.com/users/HimaEedala/orgs","repos_url":"https://api.github.com/users/HimaEedala/repos","events_url":"https://api.github.com/users/HimaEedala/events{/privacy}","received_events_url":"https://api.github.com/users/HimaEedala/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":"2022-03-17T13:04:59Z","updated_at":"2022-07-05T20:16:05Z"},"id":"be8fe3870c297353f577be6974ba6d22","created_at":"2022-05-31T14:59:44Z","updated_at":"2022-05-31T14:59:44Z"},{"url":"https://api.github.com/gists/dde42d3046fde4407beba7559711d4ac","user":{"login":"a1ip","id":177965,"node_id":"MDQ6VXNlcjE3Nzk2NQ==","avatar_url":"https://avatars.githubusercontent.com/u/177965?v=4","gravatar_id":"","url":"https://api.github.com/users/a1ip","html_url":"https://github.com/a1ip","followers_url":"https://api.github.com/users/a1ip/followers","following_url":"https://api.github.com/users/a1ip/following{/other_user}","gists_url":"https://api.github.com/users/a1ip/gists{/gist_id}","starred_url":"https://api.github.com/users/a1ip/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/a1ip/subscriptions","organizations_url":"https://api.github.com/users/a1ip/orgs","repos_url":"https://api.github.com/users/a1ip/repos","events_url":"https://api.github.com/users/a1ip/events{/privacy}","received_events_url":"https://api.github.com/users/a1ip/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Philippe Rigovanov","company":"@PPA4IPA","blog":"https://phil.rigovanov.ru","location":"Novorossiysk, Russia","email":"phil@rigovanov.ru","hireable":null,"bio":"Math & Informatics Teacher interested in DataViz, DA, ML, Natural Language Processing & WebTech ☦","twitter_username":"phil_rigovanov","public_repos":2684,"public_gists":450,"followers":95,"following":12,"created_at":"2010-01-07T14:14:04Z","updated_at":"2026-03-19T07:29:46Z"},"id":"dde42d3046fde4407beba7559711d4ac","created_at":"2022-12-28T15:22:24Z","updated_at":"2022-12-28T15:22:29Z"},{"url":"https://api.github.com/gists/59ff8aa57eb64a58e84404d2052ed248","user":{"login":"paulgro1","id":68597696,"node_id":"MDQ6VXNlcjY4NTk3Njk2","avatar_url":"https://avatars.githubusercontent.com/u/68597696?v=4","gravatar_id":"","url":"https://api.github.com/users/paulgro1","html_url":"https://github.com/paulgro1","followers_url":"https://api.github.com/users/paulgro1/followers","following_url":"https://api.github.com/users/paulgro1/following{/other_user}","gists_url":"https://api.github.com/users/paulgro1/gists{/gist_id}","starred_url":"https://api.github.com/users/paulgro1/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/paulgro1/subscriptions","organizations_url":"https://api.github.com/users/paulgro1/orgs","repos_url":"https://api.github.com/users/paulgro1/repos","events_url":"https://api.github.com/users/paulgro1/events{/privacy}","received_events_url":"https://api.github.com/users/paulgro1/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Paul Gronemeyer","company":null,"blog":"","location":"Berlin, Germany","email":null,"hireable":null,"bio":"23 jähriger Medieninformatik-Student aus Berlin","twitter_username":null,"public_repos":6,"public_gists":1,"followers":0,"following":0,"created_at":"2020-07-21T12:53:08Z","updated_at":"2025-05-25T11:17:46Z"},"id":"59ff8aa57eb64a58e84404d2052ed248","created_at":"2023-01-09T01:18:16Z","updated_at":"2023-01-09T01:18:16Z"},{"url":"https://api.github.com/gists/52834aad7b123f066603986b13acd22b","user":{"login":"NiklasInteraxt","id":117711941,"node_id":"U_kgDOBwQkRQ","avatar_url":"https://avatars.githubusercontent.com/u/117711941?v=4","gravatar_id":"","url":"https://api.github.com/users/NiklasInteraxt","html_url":"https://github.com/NiklasInteraxt","followers_url":"https://api.github.com/users/NiklasInteraxt/followers","following_url":"https://api.github.com/users/NiklasInteraxt/following{/other_user}","gists_url":"https://api.github.com/users/NiklasInteraxt/gists{/gist_id}","starred_url":"https://api.github.com/users/NiklasInteraxt/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/NiklasInteraxt/subscriptions","organizations_url":"https://api.github.com/users/NiklasInteraxt/orgs","repos_url":"https://api.github.com/users/NiklasInteraxt/repos","events_url":"https://api.github.com/users/NiklasInteraxt/events{/privacy}","received_events_url":"https://api.github.com/users/NiklasInteraxt/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Niklas Andersson","company":null,"blog":"","location":"London","email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":0,"public_gists":2,"followers":0,"following":1,"created_at":"2022-11-08T06:32:57Z","updated_at":"2023-09-11T08:49:23Z"},"id":"52834aad7b123f066603986b13acd22b","created_at":"2023-01-18T17:17:17Z","updated_at":"2023-01-18T17:17:18Z"},{"url":"https://api.github.com/gists/caac11427d420d05cae66a3f003f435a","user":{"login":"nomdauteur","id":137619537,"node_id":"U_kgDOCDPoUQ","avatar_url":"https://avatars.githubusercontent.com/u/137619537?v=4","gravatar_id":"","url":"https://api.github.com/users/nomdauteur","html_url":"https://github.com/nomdauteur","followers_url":"https://api.github.com/users/nomdauteur/followers","following_url":"https://api.github.com/users/nomdauteur/following{/other_user}","gists_url":"https://api.github.com/users/nomdauteur/gists{/gist_id}","starred_url":"https://api.github.com/users/nomdauteur/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/nomdauteur/subscriptions","organizations_url":"https://api.github.com/users/nomdauteur/orgs","repos_url":"https://api.github.com/users/nomdauteur/repos","events_url":"https://api.github.com/users/nomdauteur/events{/privacy}","received_events_url":"https://api.github.com/users/nomdauteur/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":18,"public_gists":1,"followers":0,"following":0,"created_at":"2023-06-24T12:40:56Z","updated_at":"2026-04-05T19:15:36Z"},"id":"caac11427d420d05cae66a3f003f435a","created_at":"2023-06-24T12:42:32Z","updated_at":"2023-06-24T22:16:22Z"},{"url":"https://api.github.com/gists/2d85590bbe82734b01c28a4d009c14bd","user":{"login":"keeplearningandtrying","id":33985383,"node_id":"MDQ6VXNlcjMzOTg1Mzgz","avatar_url":"https://avatars.githubusercontent.com/u/33985383?v=4","gravatar_id":"","url":"https://api.github.com/users/keeplearningandtrying","html_url":"https://github.com/keeplearningandtrying","followers_url":"https://api.github.com/users/keeplearningandtrying/followers","following_url":"https://api.github.com/users/keeplearningandtrying/following{/other_user}","gists_url":"https://api.github.com/users/keeplearningandtrying/gists{/gist_id}","starred_url":"https://api.github.com/users/keeplearningandtrying/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/keeplearningandtrying/subscriptions","organizations_url":"https://api.github.com/users/keeplearningandtrying/orgs","repos_url":"https://api.github.com/users/keeplearningandtrying/repos","events_url":"https://api.github.com/users/keeplearningandtrying/events{/privacy}","received_events_url":"https://api.github.com/users/keeplearningandtrying/received_events","type":"User","user_view_type":"public","site_admin":false,"name":null,"company":"Self employment","blog":"","location":null,"email":null,"hireable":null,"bio":null,"twitter_username":"twitterli","public_repos":1108,"public_gists":14,"followers":7,"following":86,"created_at":"2017-11-25T16:21:23Z","updated_at":"2026-03-22T11:56:07Z"},"id":"2d85590bbe82734b01c28a4d009c14bd","created_at":"2023-07-23T23:56:19Z","updated_at":"2023-07-23T23:56:19Z"},{"url":"https://api.github.com/gists/e990cdb35c7fa7a5dcf35ead92585107","user":{"login":"beldyga","id":64138786,"node_id":"MDQ6VXNlcjY0MTM4Nzg2","avatar_url":"https://avatars.githubusercontent.com/u/64138786?v=4","gravatar_id":"","url":"https://api.github.com/users/beldyga","html_url":"https://github.com/beldyga","followers_url":"https://api.github.com/users/beldyga/followers","following_url":"https://api.github.com/users/beldyga/following{/other_user}","gists_url":"https://api.github.com/users/beldyga/gists{/gist_id}","starred_url":"https://api.github.com/users/beldyga/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/beldyga/subscriptions","organizations_url":"https://api.github.com/users/beldyga/orgs","repos_url":"https://api.github.com/users/beldyga/repos","events_url":"https://api.github.com/users/beldyga/events{/privacy}","received_events_url":"https://api.github.com/users/beldyga/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Kuba Bełdyga","company":null,"blog":"","location":"Warsaw, Poland","email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":8,"public_gists":2,"followers":0,"following":0,"created_at":"2020-04-22T11:05:09Z","updated_at":"2025-12-02T19:53:43Z"},"id":"e990cdb35c7fa7a5dcf35ead92585107","created_at":"2024-10-14T10:59:14Z","updated_at":"2024-10-14T10:59:15Z"},{"url":"https://api.github.com/gists/e67f1b8dc90704c3f19a56632af78462","user":{"login":"AndreasHeese","id":77440904,"node_id":"MDQ6VXNlcjc3NDQwOTA0","avatar_url":"https://avatars.githubusercontent.com/u/77440904?v=4","gravatar_id":"","url":"https://api.github.com/users/AndreasHeese","html_url":"https://github.com/AndreasHeese","followers_url":"https://api.github.com/users/AndreasHeese/followers","following_url":"https://api.github.com/users/AndreasHeese/following{/other_user}","gists_url":"https://api.github.com/users/AndreasHeese/gists{/gist_id}","starred_url":"https://api.github.com/users/AndreasHeese/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/AndreasHeese/subscriptions","organizations_url":"https://api.github.com/users/AndreasHeese/orgs","repos_url":"https://api.github.com/users/AndreasHeese/repos","events_url":"https://api.github.com/users/AndreasHeese/events{/privacy}","received_events_url":"https://api.github.com/users/AndreasHeese/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Andreas Heese","company":null,"blog":"","location":"Northern Germany","email":null,"hireable":null,"bio":"My professional background is public administration. I like to use XSLT or JS/D3 for data visualisation with SVG.","twitter_username":null,"public_repos":6,"public_gists":1,"followers":2,"following":1,"created_at":"2021-01-14T11:19:52Z","updated_at":"2025-12-07T20:51:55Z"},"id":"e67f1b8dc90704c3f19a56632af78462","created_at":"2024-10-29T20:34:38Z","updated_at":"2024-11-03T22:28:36Z"},{"url":"https://api.github.com/gists/b0489a8de515ef4ff641d5e17f4d9c55","user":{"login":"tu-rt","id":222984720,"node_id":"U_kgDODUp6EA","avatar_url":"https://avatars.githubusercontent.com/u/222984720?v=4","gravatar_id":"","url":"https://api.github.com/users/tu-rt","html_url":"https://github.com/tu-rt","followers_url":"https://api.github.com/users/tu-rt/followers","following_url":"https://api.github.com/users/tu-rt/following{/other_user}","gists_url":"https://api.github.com/users/tu-rt/gists{/gist_id}","starred_url":"https://api.github.com/users/tu-rt/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tu-rt/subscriptions","organizations_url":"https://api.github.com/users/tu-rt/orgs","repos_url":"https://api.github.com/users/tu-rt/repos","events_url":"https://api.github.com/users/tu-rt/events{/privacy}","received_events_url":"https://api.github.com/users/tu-rt/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":"2025-07-26T14:15:04Z","updated_at":"2026-04-10T14:10:01Z"},"id":"b0489a8de515ef4ff641d5e17f4d9c55","created_at":"2025-09-02T02:07:37Z","updated_at":"2025-09-02T02:07:37Z"},{"url":"https://api.github.com/gists/a90c2389b9bd95f14ef10e38c8c8c826","user":{"login":"barionleg","id":102619282,"node_id":"U_kgDOBh3Ykg","avatar_url":"https://avatars.githubusercontent.com/u/102619282?v=4","gravatar_id":"","url":"https://api.github.com/users/barionleg","html_url":"https://github.com/barionleg","followers_url":"https://api.github.com/users/barionleg/followers","following_url":"https://api.github.com/users/barionleg/following{/other_user}","gists_url":"https://api.github.com/users/barionleg/gists{/gist_id}","starred_url":"https://api.github.com/users/barionleg/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/barionleg/subscriptions","organizations_url":"https://api.github.com/users/barionleg/orgs","repos_url":"https://api.github.com/users/barionleg/repos","events_url":"https://api.github.com/users/barionleg/events{/privacy}","received_events_url":"https://api.github.com/users/barionleg/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Bankn8II©$A","company":"©YÄMÅHÄTiD℞Åßu®","blog":"https://ard.de","location":"fb.me/Georgien.fr","email":null,"hireable":true,"bio":"©om₽o$€℞AРхитектBunoom\r\nBunioonArcomposers\r\nHere Just ©omposers Union of Georgia Represented science 1932. 1942E_BernVakUeartz B℞oliKBil©A₽$ \r\nвÅRDavweli Д3e uR","twitter_username":"YNKDBVLGARI","public_repos":2058,"public_gists":92,"followers":13,"following":141,"created_at":"2022-03-29T18:05:29Z","updated_at":"2026-03-24T13:43:23Z"},"id":"a90c2389b9bd95f14ef10e38c8c8c826","created_at":"2025-10-24T13:10:44Z","updated_at":"2025-10-24T13:28: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":"35f1541d6e814e51eb4b6ddf4d235b4d39012fab","committed_at":"2019-02-26T22:41:24Z","change_status":{"total":2,"additions":1,"deletions":1},"url":"https://api.github.com/gists/4062045/35f1541d6e814e51eb4b6ddf4d235b4d39012fab"},{"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":"94d1b56d1e6c0d4bcc1edd86a41385a14ed4c1b3","committed_at":"2018-10-05T17:11:10Z","change_status":{"total":1,"additions":1,"deletions":0},"url":"https://api.github.com/gists/4062045/94d1b56d1e6c0d4bcc1edd86a41385a14ed4c1b3"},{"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":"5916d145c8c048a6e3086915a6be464467391c62","committed_at":"2016-07-05T12:01:23Z","change_status":{"total":766,"additions":395,"deletions":371},"url":"https://api.github.com/gists/4062045/5916d145c8c048a6e3086915a6be464467391c62"},{"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":"4176c7d0c0c5ce15630d16072da0af67bb50eb6a","committed_at":"2016-02-09T01:43:52Z","change_status":{"total":1,"additions":1,"deletions":0},"url":"https://api.github.com/gists/4062045/4176c7d0c0c5ce15630d16072da0af67bb50eb6a"},{"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":"7dafe85b3b741172cfd0cf89dbae26f1239bf66e","committed_at":"2015-10-31T01:14:58Z","change_status":{"total":2,"additions":1,"deletions":1},"url":"https://api.github.com/gists/4062045/7dafe85b3b741172cfd0cf89dbae26f1239bf66e"},{"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":"9653f99dbf6050b0f28ceafbba659ac5e1e66fbd","committed_at":"2015-06-11T19:31:46Z","change_status":{"total":4,"additions":3,"deletions":1},"url":"https://api.github.com/gists/4062045/9653f99dbf6050b0f28ceafbba659ac5e1e66fbd"},{"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":"8781145235fb469685c9147648423ca5e6f1342f","committed_at":"2013-11-23T21:22:31Z","change_status":{"total":2,"additions":2,"deletions":0},"url":"https://api.github.com/gists/4062045/8781145235fb469685c9147648423ca5e6f1342f"},{"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":"d89ba00bbdcc7695b63696902f0f7e95cbe3a679","committed_at":"2013-01-23T00:52:06Z","change_status":{"total":4,"additions":2,"deletions":2},"url":"https://api.github.com/gists/4062045/d89ba00bbdcc7695b63696902f0f7e95cbe3a679"},{"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":"f73d3285f10394ed89b33a17763025deb58f7a6b","committed_at":"2012-11-13T03:17:51Z","change_status":{"total":0,"additions":0,"deletions":0},"url":"https://api.github.com/gists/4062045/f73d3285f10394ed89b33a17763025deb58f7a6b"},{"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":"f4c3ce0ca8e9ba442d5031c92cf7645a7a3103c5","committed_at":"2012-11-12T21:31:44Z","change_status":{"total":406,"additions":406,"deletions":0},"url":"https://api.github.com/gists/4062045/f4c3ce0ca8e9ba442d5031c92cf7645a7a3103c5"}],"truncated":false}