{"url":"https://api.github.com/gists/7555321","forks_url":"https://api.github.com/gists/7555321/forks","commits_url":"https://api.github.com/gists/7555321/commits","id":"7555321","node_id":"MDQ6R2lzdDc1NTUzMjE=","git_pull_url":"https://gist.github.com/7555321.git","git_push_url":"https://gist.github.com/7555321.git","html_url":"https://gist.github.com/mbostock/7555321","files":{".block":{"filename":".block","type":"text/plain","language":null,"raw_url":"https://gist.githubusercontent.com/mbostock/7555321/raw/703d310b399098a243a76a50bc209167e924cfd2/.block","size":17,"truncated":false,"content":"license: gpl-3.0\n","encoding":"utf-8"},"README.md":{"filename":"README.md","type":"text/markdown","language":"Markdown","raw_url":"https://gist.githubusercontent.com/mbostock/7555321/raw/2361f0a6506f0893d52786ec83c9366669663f46/README.md","size":189,"truncated":false,"content":"This example, using satirical data from [The Onion](http://www.theonion.com/articles/why-are-we-leaving-facebook,34167/), demonstrates how to wrap long axis labels to fit on multiple lines.","encoding":"utf-8"},"data.tsv":{"filename":"data.tsv","type":"text/tab-separated-values","language":"TSV","raw_url":"https://gist.githubusercontent.com/mbostock/7555321/raw/5e0a096afbdd8d871264b458ad1dd3d9ee939925/data.tsv","size":220,"truncated":false,"content":"name\tvalue\nFamily in feud with Zuckerbergs\t.17\nCommitted 671 birthdays to memory\t.19\nEx is doing too well\t.10\nHigh school friends all dead now\t.15\nDiscovered how to “like” things mentally\t.27\nNot enough politics\t.12\n","encoding":"utf-8"},"index.html":{"filename":"index.html","type":"text/html","language":"HTML","raw_url":"https://gist.githubusercontent.com/mbostock/7555321/raw/182303e98eb181bfb0297b500049871b8a64ee5a/index.html","size":2814,"truncated":false,"content":"<!DOCTYPE html>\n<meta charset=\"utf-8\">\n<style>\n\n.bar {\n  fill: steelblue;\n}\n\n.bar:hover {\n  fill: brown;\n}\n\n.title {\n  font: bold 14px \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n}\n\n.axis {\n  font: 10px sans-serif;\n}\n\n.axis path,\n.axis line {\n  fill: none;\n  stroke: #000;\n  shape-rendering: crispEdges;\n}\n\n.x.axis path {\n  display: none;\n}\n\n</style>\n<body>\n<script src=\"//d3js.org/d3.v3.min.js\"></script>\n<script>\n\nvar margin = {top: 80, right: 180, bottom: 80, left: 180},\n    width = 960 - margin.left - margin.right,\n    height = 500 - margin.top - margin.bottom;\n\nvar x = d3.scale.ordinal()\n    .rangeRoundBands([0, width], .1, .3);\n\nvar y = d3.scale.linear()\n    .range([height, 0]);\n\nvar xAxis = d3.svg.axis()\n    .scale(x)\n    .orient(\"bottom\");\n\nvar yAxis = d3.svg.axis()\n    .scale(y)\n    .orient(\"left\")\n    .ticks(8, \"%\");\n\nvar svg = d3.select(\"body\").append(\"svg\")\n    .attr(\"width\", width + margin.left + margin.right)\n    .attr(\"height\", height + margin.top + margin.bottom)\n  .append(\"g\")\n    .attr(\"transform\", \"translate(\" + margin.left + \",\" + margin.top + \")\");\n\nd3.tsv(\"data.tsv\", type, function(error, data) {\n  x.domain(data.map(function(d) { return d.name; }));\n  y.domain([0, d3.max(data, function(d) { return d.value; })]);\n\n  svg.append(\"text\")\n      .attr(\"class\", \"title\")\n      .attr(\"x\", x(data[0].name))\n      .attr(\"y\", -26)\n      .text(\"Why Are We Leaving Facebook?\");\n\n  svg.append(\"g\")\n      .attr(\"class\", \"x axis\")\n      .attr(\"transform\", \"translate(0,\" + height + \")\")\n      .call(xAxis)\n    .selectAll(\".tick text\")\n      .call(wrap, x.rangeBand());\n\n  svg.append(\"g\")\n      .attr(\"class\", \"y axis\")\n      .call(yAxis);\n\n  svg.selectAll(\".bar\")\n      .data(data)\n    .enter().append(\"rect\")\n      .attr(\"class\", \"bar\")\n      .attr(\"x\", function(d) { return x(d.name); })\n      .attr(\"width\", x.rangeBand())\n      .attr(\"y\", function(d) { return y(d.value); })\n      .attr(\"height\", function(d) { return height - y(d.value); });\n});\n\nfunction wrap(text, width) {\n  text.each(function() {\n    var text = d3.select(this),\n        words = text.text().split(/\\s+/).reverse(),\n        word,\n        line = [],\n        lineNumber = 0,\n        lineHeight = 1.1, // ems\n        y = text.attr(\"y\"),\n        dy = parseFloat(text.attr(\"dy\")),\n        tspan = text.text(null).append(\"tspan\").attr(\"x\", 0).attr(\"y\", y).attr(\"dy\", dy + \"em\");\n    while (word = words.pop()) {\n      line.push(word);\n      tspan.text(line.join(\" \"));\n      if (tspan.node().getComputedTextLength() > width) {\n        line.pop();\n        tspan.text(line.join(\" \"));\n        line = [word];\n        tspan = text.append(\"tspan\").attr(\"x\", 0).attr(\"y\", y).attr(\"dy\", ++lineNumber * lineHeight + dy + \"em\").text(word);\n      }\n    }\n  });\n}\n\nfunction type(d) {\n  d.value = +d.value;\n  return d;\n}\n\n</script>\n","encoding":"utf-8"},"thumbnail.png":{"filename":"thumbnail.png","type":"image/png","language":null,"raw_url":"https://gist.githubusercontent.com/mbostock/7555321/raw/a566d0c0915468c352c54b95492de3244ac41c73/thumbnail.png","size":8219,"truncated":false,"content":"iVBORw0KGgoAAAANSUhEUgAAAOYAAAB4CAIAAABpZBnfAAAKnmlDQ1BpY20A\nAEjHlZYHUFPpFse/e9MbLRDphN57B+k1gIB0EJWQhBBKCIEAYlfEFVgLKiIo\nKhYEFFwLIGtBLKiwCChgX5BFQFkXC6Ki8i7wiO/Nm503e2ZOvl/OnPnf73z3\nfjN/AMhNTIEgBZYCIJWfKQzxcadHRcfQcc8AEaCBBLAFVkxWhsAtODgA/G18\n7APQ7HrfeFYL/LOQZnMyWABAwQjHszNYqQifR7KCJRBmAoAKQ+pa2ZmCWc5B\nWFaIbBDholnmzvPhWY6f5/NzPWEhHgjfBgBPZjKFXABID5A6PYvFRXRIHxA2\n47N5fADIWgg7sxKZbISRBEapqWmzvBNhvfj/0OH+l2a8WJPJ5Ip5fpa5wHvy\nMgQpzFX/8Dj+f6SmiBaeoYokOSM51B9ZdZAzy2ExvUIXOJHDCFhgQaZ7yALz\nMhlh4h6Rb/gCi5LD3RY4Oc1f3M+PDwwS62d4xCxwbmJY5AKzOZ5eCyxMCxH3\nZ2SFev3o9whc4CSmX/ACM4Vzs8wxJ8Un5Meeg8X75KcEimdJEHqLezgZP+bN\nTAzzFTPyAYj7ed4M8bxC3x/6KcFiTaEoRHwOHH64WJPN9BSfLQgDiUAE+IAN\nOEAI4kEaSAGZgA48AQ9kAAHyjwmQ153JycmcHcgjTbBKyOMmZtLdkFvBMaIz\n+CwTI7qFmbklmL1j86/wPW3u7kC0uz9q6S0A2BcgRe6PGlMTgIsvAaB+/FHT\nfDf/nV7uYomEWfM19OwPBrm9kkAWKCBfiCbQA8bAAtgAR+AKvIAfCEImiQYr\nAAuZJxWZJBusARtBPigEO8FeUAYOgaPgJDgNzoJGcAlcA7dAO+gCveAJGADD\n4DWYAB/BNARBOIgCUSEFSA3ShgwhC8gOcoa8oAAoBIqG4iAuxIdE0BpoM1QI\nFUNl0BGoGvoFughdg+5A3dAjaBAag95BX2AUTIZlYRVYBzaF7WA32B8Og5fD\nXDgdzoXz4O1wKVwJn4Ib4GtwO9wLD8Cv4UkUQJFQNJQ6yhhlh/JABaFiUAko\nIWodqgBVgqpE1aGaUW2o+6gB1DjqMxqLpqLpaGO0I9oXHY5modPR69BF6DL0\nSXQD+gb6PnoQPYH+jqFglDGGGAcMAxOF4WKyMfmYEswJzAXMTUwvZhjzEYvF\n0rC6WFusLzYam4RdjS3CHsTWY1uw3dgh7CQOh1PAGeKccEE4Ji4Tl4/bjzuF\nu4rrwQ3jPuFJeDW8Bd4bH4Pn4zfhS/A1+Cv4HvwIfpogRdAmOBCCCGzCKsIO\nwjFCM+EeYZgwTZQm6hKdiGHEJOJGYimxjniT+JT4nkQiaZDsSUtJPNIGUinp\nDOk2aZD0mSxDNiB7kGPJIvJ2chW5hfyI/J5CoehQXCkxlEzKdko15TrlOeWT\nBFXCRIIhwZZYL1Eu0SDRI/FGkiCpLekmuUIyV7JE8pzkPclxKYKUjpSHFFNq\nnVS51EWpfqlJaaq0uXSQdKp0kXSN9B3pURmcjI6MlwxbJk/mqMx1mSEqiqpJ\n9aCyqJupx6g3qcOyWFldWYZskmyh7GnZTtkJORk5K7kIuRy5crnLcgM0FE2H\nxqCl0HbQztL6aF8WqSxyW8RZtG1R3aKeRVPySvKu8hz5Avl6+V75Lwp0BS+F\nZIVdCo0KzxTRigaKSxWzFSsUbyqOK8kqOSqxlAqUzio9VoaVDZRDlFcrH1Xu\nUJ5UUVXxURGo7Fe5rjKuSlN1VU1S3aN6RXVMjarmrMZT26N2Ve0VXY7uRk+h\nl9Jv0CfUldV91UXqR9Q71ac1dDXCNTZp1Gs80yRq2mkmaO7RbNWc0FLTWqK1\nRqtW67E2QdtOO1F7n3ab9pSOrk6kzladRp1RXXldhm6ubq3uUz2Knoteul6l\n3gN9rL6dfrL+Qf0uA9jA2iDRoNzgniFsaGPIMzxo2G2EMbI34htVGvUbk43d\njLOMa40HTWgmASabTBpN3phqmcaY7jJtM/1uZm2WYnbM7Im5jLmf+SbzZvN3\nFgYWLItyiweWFEtvy/WWTZZvrQytOFYVVg+tqdZLrLdat1p/s7G1EdrU2YzZ\natnG2R6w7beTtQu2K7K7bY+xd7dfb3/J/rODjUOmw1mHvxyNHZMdaxxHF+su\n5iw+tnjIScOJ6XTEacCZ7hznfNh5wEXdhelS6fLCVdOV7XrCdcRN3y3J7ZTb\nG3czd6H7BfcpDwePtR4tnihPH88Cz04vGa9wrzKv594a3lzvWu8JH2uf1T4t\nvhhff99dvv0MFQaLUc2Y8LP1W+t3w5/sH+pf5v8iwCBAGNC8BF7it2T3kqeB\n2oH8wMYgEMQI2h30LFg3OD3416XYpcFLy5e+DDEPWRPSFkoNXRlaE/oxzD1s\nR9iTcL1wUXhrhGREbER1xFSkZ2Rx5ECUadTaqPZoxWhedFMMLiYi5kTM5DKv\nZXuXDcdax+bH9i3XXZ6z/M4KxRUpKy6vlFzJXHkuDhMXGVcT95UZxKxkTsYz\n4g/ET7A8WPtYr9mu7D3sMY4Tp5gzkuCUUJwwynXi7uaOJbokliSO8zx4Zby3\nSb5Jh5KmkoOSq5JnUiJT6lPxqXGpF/ky/GT+jTTVtJy0boGhIF8wkO6Qvjd9\nQugvPJEBZSzPaMqURcxMh0hPtEU0mOWcVZ71KTsi+1yOdA4/p2OVwaptq0Zy\nvXOPr0avZq1uXaO+ZuOawbVua4+sg9bFr2tdr7k+b/3wBp8NJzcSNyZv/G2T\n2abiTR82R25uzlPJ25A3tMVnS22+RL4wv3+r49ZDP6F/4v3Uuc1y2/5t3wvY\nBXcLzQpLCr8WsYru/mz+c+nPM9sTtnfusNlRsRO7k7+zb5fLrpPF0sW5xUO7\nl+xu2EPfU7Dnw96Ve++UWJUc2kfcJ9o3UBpQ2rRfa//O/V/LEst6y93L6w8o\nH9h2YOog+2BPhWtF3SGVQ4WHvhzmHX54xOdIQ6VOZclR7NGsoy+PRRxrO253\nvPqE4onCE9+q+FUDJ0NO3qi2ra6uUa7ZUQvXimrHTsWe6jrtebqpzrjuSD2t\nvvAMOCM68+qXuF/6zvqfbT1nd67uvPb5AxeoFwoaoIZVDRONiY0DTdFN3Rf9\nLrY2OzZf+NXk16pL6pfKL8td3nGFeCXvyszV3KuTLYKW8Wvca0OtK1ufXI+6\n/uDG0hudN/1v3r7lfet6m1vb1dtOty/dcbhz8a7d3cZ2m/aGDuuOC79Z/3ah\n06az4Z7tvaYu+67m7sXdV3pceq7d97x/6wHjQXtvYG93X3jfw/7Y/oGH7Iej\nj1IevX2c9Xj6yYanmKcFz6SelTxXfl75u/7v9QM2A5cHPQc7XoS+eDLEGnr9\nR8YfX4fzXlJeloyojVSPWoxeGvMe63q17NXwa8Hr6fH8P6X/PPBG7835v1z/\n6piImhh+K3w7867ovcL7qg9WH1ongyeff0z9OD1V8Enh08nPdp/bvkR+GZnO\n/or7WvpN/1vzd//vT2dSZ2YETCFzzgqgkIQTEgB4VwUAJRrxDl0AECXmPfBc\nQPO+fY7A3/G8T54LGwCqXAEI3wBAAOJRKpDURpiMrLN2LswVwJaW4vx3ZCRY\n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\n02ZwyXLajP8Hl7B5bkEwpTIAAAAASUVORK5CYII=\n","encoding":"base64"}},"public":true,"created_at":"2013-11-20T00:37:49Z","updated_at":"2025-03-10T09:49:03Z","description":"Wrapping Long Labels","comments":9,"user":null,"comments_enabled":true,"comments_url":"https://api.github.com/gists/7555321/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/7864867","user":{"login":"jimkang","id":324298,"node_id":"MDQ6VXNlcjMyNDI5OA==","avatar_url":"https://avatars.githubusercontent.com/u/324298?v=4","gravatar_id":"","url":"https://api.github.com/users/jimkang","html_url":"https://github.com/jimkang","followers_url":"https://api.github.com/users/jimkang/followers","following_url":"https://api.github.com/users/jimkang/following{/other_user}","gists_url":"https://api.github.com/users/jimkang/gists{/gist_id}","starred_url":"https://api.github.com/users/jimkang/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jimkang/subscriptions","organizations_url":"https://api.github.com/users/jimkang/orgs","repos_url":"https://api.github.com/users/jimkang/repos","events_url":"https://api.github.com/users/jimkang/events{/privacy}","received_events_url":"https://api.github.com/users/jimkang/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Jim Kang","company":null,"blog":"https://jimkang.com/","location":"Boston","email":null,"hireable":true,"bio":"Corporate credentials","twitter_username":null,"public_repos":556,"public_gists":129,"followers":189,"following":126,"created_at":"2010-07-06T14:12:20Z","updated_at":"2025-08-14T23:28:30Z"},"id":"7864867","created_at":"2013-12-08T22:54:06Z","updated_at":"2015-12-30T17:59:23Z"},{"url":"https://api.github.com/gists/9030183","user":{"login":"ivanlanin","id":15313,"node_id":"MDQ6VXNlcjE1MzEz","avatar_url":"https://avatars.githubusercontent.com/u/15313?v=4","gravatar_id":"","url":"https://api.github.com/users/ivanlanin","html_url":"https://github.com/ivanlanin","followers_url":"https://api.github.com/users/ivanlanin/followers","following_url":"https://api.github.com/users/ivanlanin/following{/other_user}","gists_url":"https://api.github.com/users/ivanlanin/gists{/gist_id}","starred_url":"https://api.github.com/users/ivanlanin/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ivanlanin/subscriptions","organizations_url":"https://api.github.com/users/ivanlanin/orgs","repos_url":"https://api.github.com/users/ivanlanin/repos","events_url":"https://api.github.com/users/ivanlanin/events{/privacy}","received_events_url":"https://api.github.com/users/ivanlanin/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Ivan Lanin","company":null,"blog":"http://linktr.ee/ivanlanin","location":null,"email":"ivanlanin@gmail.com","hireable":null,"bio":"Wikipediawan pencinta bahasa Indonesia","twitter_username":null,"public_repos":40,"public_gists":14,"followers":292,"following":12,"created_at":"2008-06-27T19:06:01Z","updated_at":"2026-03-22T06:57:27Z"},"id":"9030183","created_at":"2014-02-16T06:40:17Z","updated_at":"2015-08-29T13:56:24Z"},{"url":"https://api.github.com/gists/10359683","user":{"login":"mindrones","id":1309648,"node_id":"MDQ6VXNlcjEzMDk2NDg=","avatar_url":"https://avatars.githubusercontent.com/u/1309648?v=4","gravatar_id":"","url":"https://api.github.com/users/mindrones","html_url":"https://github.com/mindrones","followers_url":"https://api.github.com/users/mindrones/followers","following_url":"https://api.github.com/users/mindrones/following{/other_user}","gists_url":"https://api.github.com/users/mindrones/gists{/gist_id}","starred_url":"https://api.github.com/users/mindrones/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mindrones/subscriptions","organizations_url":"https://api.github.com/users/mindrones/orgs","repos_url":"https://api.github.com/users/mindrones/repos","events_url":"https://api.github.com/users/mindrones/events{/privacy}","received_events_url":"https://api.github.com/users/mindrones/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Luca Bonavita","company":null,"blog":"https://mindrones.com","location":null,"email":null,"hireable":true,"bio":"Data visualization, linked data, all things visual.","twitter_username":null,"public_repos":20,"public_gists":29,"followers":113,"following":80,"created_at":"2012-01-06T15:28:39Z","updated_at":"2026-04-19T14:51:43Z"},"id":"10359683","created_at":"2014-04-10T09:07:28Z","updated_at":"2015-08-29T13:58:51Z"},{"url":"https://api.github.com/gists/10451574","user":{"login":"Forumruner","id":6774944,"node_id":"MDQ6VXNlcjY3NzQ5NDQ=","avatar_url":"https://avatars.githubusercontent.com/u/6774944?v=4","gravatar_id":"","url":"https://api.github.com/users/Forumruner","html_url":"https://github.com/Forumruner","followers_url":"https://api.github.com/users/Forumruner/followers","following_url":"https://api.github.com/users/Forumruner/following{/other_user}","gists_url":"https://api.github.com/users/Forumruner/gists{/gist_id}","starred_url":"https://api.github.com/users/Forumruner/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Forumruner/subscriptions","organizations_url":"https://api.github.com/users/Forumruner/orgs","repos_url":"https://api.github.com/users/Forumruner/repos","events_url":"https://api.github.com/users/Forumruner/events{/privacy}","received_events_url":"https://api.github.com/users/Forumruner/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Anonymous","company":"https://github.com","blog":"https://github.com/Forumrunner","location":"United Kingdom","email":null,"hireable":true,"bio":null,"twitter_username":null,"public_repos":6,"public_gists":1,"followers":0,"following":0,"created_at":"2014-02-24T19:29:14Z","updated_at":"2020-07-14T14:31:41Z"},"id":"10451574","created_at":"2014-04-11T08:58:40Z","updated_at":"2015-08-29T13:59:00Z"},{"url":"https://api.github.com/gists/10465357","user":{"login":"git-ashish","id":2697421,"node_id":"MDQ6VXNlcjI2OTc0MjE=","avatar_url":"https://avatars.githubusercontent.com/u/2697421?v=4","gravatar_id":"","url":"https://api.github.com/users/git-ashish","html_url":"https://github.com/git-ashish","followers_url":"https://api.github.com/users/git-ashish/followers","following_url":"https://api.github.com/users/git-ashish/following{/other_user}","gists_url":"https://api.github.com/users/git-ashish/gists{/gist_id}","starred_url":"https://api.github.com/users/git-ashish/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/git-ashish/subscriptions","organizations_url":"https://api.github.com/users/git-ashish/orgs","repos_url":"https://api.github.com/users/git-ashish/repos","events_url":"https://api.github.com/users/git-ashish/events{/privacy}","received_events_url":"https://api.github.com/users/git-ashish/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Ashish Singh","company":null,"blog":"https://iashishsingh.com","location":"Vadodara, Gujarat, India","email":null,"hireable":true,"bio":"Freelance Data Visualisation Consultant","twitter_username":null,"public_repos":153,"public_gists":157,"followers":21,"following":57,"created_at":"2012-11-01T08:37:06Z","updated_at":"2026-03-27T06:23:39Z"},"id":"10465357","created_at":"2014-04-11T12:39:55Z","updated_at":"2015-08-29T13:59:01Z"},{"url":"https://api.github.com/gists/0d707368c381a0d3d9c6","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":"0d707368c381a0d3d9c6","created_at":"2014-09-11T20:44:22Z","updated_at":"2015-08-29T14:06:21Z"},{"url":"https://api.github.com/gists/02b06ffc269982fa987f","user":{"login":"jml6m","id":5168718,"node_id":"MDQ6VXNlcjUxNjg3MTg=","avatar_url":"https://avatars.githubusercontent.com/u/5168718?v=4","gravatar_id":"","url":"https://api.github.com/users/jml6m","html_url":"https://github.com/jml6m","followers_url":"https://api.github.com/users/jml6m/followers","following_url":"https://api.github.com/users/jml6m/following{/other_user}","gists_url":"https://api.github.com/users/jml6m/gists{/gist_id}","starred_url":"https://api.github.com/users/jml6m/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jml6m/subscriptions","organizations_url":"https://api.github.com/users/jml6m/orgs","repos_url":"https://api.github.com/users/jml6m/repos","events_url":"https://api.github.com/users/jml6m/events{/privacy}","received_events_url":"https://api.github.com/users/jml6m/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Joseph Lewkovich","company":null,"blog":"","location":"United States","email":null,"hireable":true,"bio":"Software Engineer, Writer, Competitor","twitter_username":null,"public_repos":3,"public_gists":1,"followers":1,"following":6,"created_at":"2013-08-05T19:50:51Z","updated_at":"2026-01-24T18:59:42Z"},"id":"02b06ffc269982fa987f","created_at":"2014-11-02T00:44:24Z","updated_at":"2023-09-25T08:55:11Z"},{"url":"https://api.github.com/gists/a647e60b209e67602304","user":{"login":"enactdev","id":5055624,"node_id":"MDQ6VXNlcjUwNTU2MjQ=","avatar_url":"https://avatars.githubusercontent.com/u/5055624?v=4","gravatar_id":"","url":"https://api.github.com/users/enactdev","html_url":"https://github.com/enactdev","followers_url":"https://api.github.com/users/enactdev/followers","following_url":"https://api.github.com/users/enactdev/following{/other_user}","gists_url":"https://api.github.com/users/enactdev/gists{/gist_id}","starred_url":"https://api.github.com/users/enactdev/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/enactdev/subscriptions","organizations_url":"https://api.github.com/users/enactdev/orgs","repos_url":"https://api.github.com/users/enactdev/repos","events_url":"https://api.github.com/users/enactdev/events{/privacy}","received_events_url":"https://api.github.com/users/enactdev/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Chris A. Williams","company":"Enact Development","blog":"","location":"Washington, DC","email":null,"hireable":true,"bio":null,"twitter_username":null,"public_repos":8,"public_gists":20,"followers":3,"following":2,"created_at":"2013-07-20T21:47:06Z","updated_at":"2021-02-10T02:11:07Z"},"id":"a647e60b209e67602304","created_at":"2015-01-15T19:46:50Z","updated_at":"2022-01-13T23:01:11Z"},{"url":"https://api.github.com/gists/e0b9da299766b1d4e550","user":{"login":"davewood","id":304895,"node_id":"MDQ6VXNlcjMwNDg5NQ==","avatar_url":"https://avatars.githubusercontent.com/u/304895?v=4","gravatar_id":"","url":"https://api.github.com/users/davewood","html_url":"https://github.com/davewood","followers_url":"https://api.github.com/users/davewood/followers","following_url":"https://api.github.com/users/davewood/following{/other_user}","gists_url":"https://api.github.com/users/davewood/gists{/gist_id}","starred_url":"https://api.github.com/users/davewood/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/davewood/subscriptions","organizations_url":"https://api.github.com/users/davewood/orgs","repos_url":"https://api.github.com/users/davewood/repos","events_url":"https://api.github.com/users/davewood/events{/privacy}","received_events_url":"https://api.github.com/users/davewood/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"David Schmidt","company":"University of Vienna","blog":"","location":"Vienna/Austria","email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":66,"public_gists":3,"followers":25,"following":26,"created_at":"2010-06-14T14:51:10Z","updated_at":"2026-02-02T13:31:36Z"},"id":"e0b9da299766b1d4e550","created_at":"2015-05-27T09:29:32Z","updated_at":"2015-08-29T14:21:59Z"},{"url":"https://api.github.com/gists/9195fd99ca4c01ffdc52","user":{"login":"davewood","id":304895,"node_id":"MDQ6VXNlcjMwNDg5NQ==","avatar_url":"https://avatars.githubusercontent.com/u/304895?v=4","gravatar_id":"","url":"https://api.github.com/users/davewood","html_url":"https://github.com/davewood","followers_url":"https://api.github.com/users/davewood/followers","following_url":"https://api.github.com/users/davewood/following{/other_user}","gists_url":"https://api.github.com/users/davewood/gists{/gist_id}","starred_url":"https://api.github.com/users/davewood/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/davewood/subscriptions","organizations_url":"https://api.github.com/users/davewood/orgs","repos_url":"https://api.github.com/users/davewood/repos","events_url":"https://api.github.com/users/davewood/events{/privacy}","received_events_url":"https://api.github.com/users/davewood/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"David Schmidt","company":"University of Vienna","blog":"","location":"Vienna/Austria","email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":66,"public_gists":3,"followers":25,"following":26,"created_at":"2010-06-14T14:51:10Z","updated_at":"2026-02-02T13:31:36Z"},"id":"9195fd99ca4c01ffdc52","created_at":"2015-05-27T09:32:33Z","updated_at":"2015-08-29T14:21:59Z"},{"url":"https://api.github.com/gists/418d3f6d91915602e4fd","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":"418d3f6d91915602e4fd","created_at":"2015-06-21T03:26:39Z","updated_at":"2023-07-30T20:39:37Z"},{"url":"https://api.github.com/gists/8b3ea6ac7f54ada1b25e","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":94,"public_gists":19,"followers":46,"following":51,"created_at":"2012-11-05T19:54:40Z","updated_at":"2026-03-13T00:27:31Z"},"id":"8b3ea6ac7f54ada1b25e","created_at":"2016-01-05T21:15:03Z","updated_at":"2016-01-05T21:15:03Z"},{"url":"https://api.github.com/gists/f47d8cd11a8ff24854305505dbbd8c07","user":{"login":"guypursey","id":1826451,"node_id":"MDQ6VXNlcjE4MjY0NTE=","avatar_url":"https://avatars.githubusercontent.com/u/1826451?v=4","gravatar_id":"","url":"https://api.github.com/users/guypursey","html_url":"https://github.com/guypursey","followers_url":"https://api.github.com/users/guypursey/followers","following_url":"https://api.github.com/users/guypursey/following{/other_user}","gists_url":"https://api.github.com/users/guypursey/gists{/gist_id}","starred_url":"https://api.github.com/users/guypursey/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/guypursey/subscriptions","organizations_url":"https://api.github.com/users/guypursey/orgs","repos_url":"https://api.github.com/users/guypursey/repos","events_url":"https://api.github.com/users/guypursey/events{/privacy}","received_events_url":"https://api.github.com/users/guypursey/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Guy Pursey","company":null,"blog":"https://guypursey.com","location":"Reading","email":"guypursey@gmail.com","hireable":true,"bio":"An experienced developer, manager and communicator with a focus on making content creation more efficient and strategic.","twitter_username":null,"public_repos":20,"public_gists":28,"followers":9,"following":0,"created_at":"2012-06-07T10:26:56Z","updated_at":"2026-03-20T07:56:46Z"},"id":"f47d8cd11a8ff24854305505dbbd8c07","created_at":"2017-07-29T10:58:43Z","updated_at":"2023-09-21T09:51:19Z"},{"url":"https://api.github.com/gists/dbf36ea246be5f9a79c0dd2797f24436","user":{"login":"gregorynicholas","id":407650,"node_id":"MDQ6VXNlcjQwNzY1MA==","avatar_url":"https://avatars.githubusercontent.com/u/407650?v=4","gravatar_id":"","url":"https://api.github.com/users/gregorynicholas","html_url":"https://github.com/gregorynicholas","followers_url":"https://api.github.com/users/gregorynicholas/followers","following_url":"https://api.github.com/users/gregorynicholas/following{/other_user}","gists_url":"https://api.github.com/users/gregorynicholas/gists{/gist_id}","starred_url":"https://api.github.com/users/gregorynicholas/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/gregorynicholas/subscriptions","organizations_url":"https://api.github.com/users/gregorynicholas/orgs","repos_url":"https://api.github.com/users/gregorynicholas/repos","events_url":"https://api.github.com/users/gregorynicholas/events{/privacy}","received_events_url":"https://api.github.com/users/gregorynicholas/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"gregory nicholas","company":"alter union","blog":"https://gregorynicholas.com","location":"los angeles","email":"gn@gregorynicholas.com","hireable":true,"bio":"software engineer.","twitter_username":null,"public_repos":306,"public_gists":857,"followers":133,"following":790,"created_at":"2010-09-20T01:42:09Z","updated_at":"2026-04-16T21:51:09Z"},"id":"dbf36ea246be5f9a79c0dd2797f24436","created_at":"2017-08-15T20:00:49Z","updated_at":"2017-08-15T20:00:49Z"},{"url":"https://api.github.com/gists/5b8d30b319bdac286848f220a2801633","user":{"login":"deborahgump","id":37985084,"node_id":"MDQ6VXNlcjM3OTg1MDg0","avatar_url":"https://avatars.githubusercontent.com/u/37985084?v=4","gravatar_id":"","url":"https://api.github.com/users/deborahgump","html_url":"https://github.com/deborahgump","followers_url":"https://api.github.com/users/deborahgump/followers","following_url":"https://api.github.com/users/deborahgump/following{/other_user}","gists_url":"https://api.github.com/users/deborahgump/gists{/gist_id}","starred_url":"https://api.github.com/users/deborahgump/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/deborahgump/subscriptions","organizations_url":"https://api.github.com/users/deborahgump/orgs","repos_url":"https://api.github.com/users/deborahgump/repos","events_url":"https://api.github.com/users/deborahgump/events{/privacy}","received_events_url":"https://api.github.com/users/deborahgump/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":"2018-04-01T19:16:11Z","updated_at":"2018-04-04T13:36:16Z"},"id":"5b8d30b319bdac286848f220a2801633","created_at":"2018-04-04T15:26:24Z","updated_at":"2018-04-04T15:35:49Z"},{"url":"https://api.github.com/gists/11398a82a221bb185a824aa8f62c62c5","user":{"login":"erin-evans","id":38012317,"node_id":"MDQ6VXNlcjM4MDEyMzE3","avatar_url":"https://avatars.githubusercontent.com/u/38012317?v=4","gravatar_id":"","url":"https://api.github.com/users/erin-evans","html_url":"https://github.com/erin-evans","followers_url":"https://api.github.com/users/erin-evans/followers","following_url":"https://api.github.com/users/erin-evans/following{/other_user}","gists_url":"https://api.github.com/users/erin-evans/gists{/gist_id}","starred_url":"https://api.github.com/users/erin-evans/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/erin-evans/subscriptions","organizations_url":"https://api.github.com/users/erin-evans/orgs","repos_url":"https://api.github.com/users/erin-evans/repos","events_url":"https://api.github.com/users/erin-evans/events{/privacy}","received_events_url":"https://api.github.com/users/erin-evans/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":"2018-04-02T16:49:27Z","updated_at":"2022-05-09T17:28:01Z"},"id":"11398a82a221bb185a824aa8f62c62c5","created_at":"2018-04-04T16:49:26Z","updated_at":"2018-04-04T16:57:44Z"},{"url":"https://api.github.com/gists/384acd77e1999199e150daf836e1903c","user":{"login":"beedolan","id":17089314,"node_id":"MDQ6VXNlcjE3MDg5MzE0","avatar_url":"https://avatars.githubusercontent.com/u/17089314?v=4","gravatar_id":"","url":"https://api.github.com/users/beedolan","html_url":"https://github.com/beedolan","followers_url":"https://api.github.com/users/beedolan/followers","following_url":"https://api.github.com/users/beedolan/following{/other_user}","gists_url":"https://api.github.com/users/beedolan/gists{/gist_id}","starred_url":"https://api.github.com/users/beedolan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/beedolan/subscriptions","organizations_url":"https://api.github.com/users/beedolan/orgs","repos_url":"https://api.github.com/users/beedolan/repos","events_url":"https://api.github.com/users/beedolan/events{/privacy}","received_events_url":"https://api.github.com/users/beedolan/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Bridget Dolan","company":null,"blog":"","location":null,"email":null,"hireable":null,"bio":"Astronomy major at the University of Delaware","twitter_username":null,"public_repos":0,"public_gists":1,"followers":0,"following":0,"created_at":"2016-02-05T19:51:59Z","updated_at":"2018-04-04T16:24:43Z"},"id":"384acd77e1999199e150daf836e1903c","created_at":"2018-04-04T16:49:32Z","updated_at":"2018-04-04T16:58:41Z"},{"url":"https://api.github.com/gists/29f2f5d8d53e3fea3b56a8f9678dead6","user":{"login":"nicolegirillo","id":38079819,"node_id":"MDQ6VXNlcjM4MDc5ODE5","avatar_url":"https://avatars.githubusercontent.com/u/38079819?v=4","gravatar_id":"","url":"https://api.github.com/users/nicolegirillo","html_url":"https://github.com/nicolegirillo","followers_url":"https://api.github.com/users/nicolegirillo/followers","following_url":"https://api.github.com/users/nicolegirillo/following{/other_user}","gists_url":"https://api.github.com/users/nicolegirillo/gists{/gist_id}","starred_url":"https://api.github.com/users/nicolegirillo/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/nicolegirillo/subscriptions","organizations_url":"https://api.github.com/users/nicolegirillo/orgs","repos_url":"https://api.github.com/users/nicolegirillo/repos","events_url":"https://api.github.com/users/nicolegirillo/events{/privacy}","received_events_url":"https://api.github.com/users/nicolegirillo/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Nicole Girillo","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":"2018-04-04T16:15:54Z","updated_at":"2021-05-25T21:59:12Z"},"id":"29f2f5d8d53e3fea3b56a8f9678dead6","created_at":"2018-04-04T16:49:32Z","updated_at":"2018-04-04T17:03:04Z"},{"url":"https://api.github.com/gists/832b0d69ca6731ad905da7cecc7f4d5b","user":{"login":"paigesav","id":38060592,"node_id":"MDQ6VXNlcjM4MDYwNTky","avatar_url":"https://avatars.githubusercontent.com/u/38060592?v=4","gravatar_id":"","url":"https://api.github.com/users/paigesav","html_url":"https://github.com/paigesav","followers_url":"https://api.github.com/users/paigesav/followers","following_url":"https://api.github.com/users/paigesav/following{/other_user}","gists_url":"https://api.github.com/users/paigesav/gists{/gist_id}","starred_url":"https://api.github.com/users/paigesav/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/paigesav/subscriptions","organizations_url":"https://api.github.com/users/paigesav/orgs","repos_url":"https://api.github.com/users/paigesav/repos","events_url":"https://api.github.com/users/paigesav/events{/privacy}","received_events_url":"https://api.github.com/users/paigesav/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Paige Savitt","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":"2018-04-04T03:31:29Z","updated_at":"2018-04-04T16:23:25Z"},"id":"832b0d69ca6731ad905da7cecc7f4d5b","created_at":"2018-04-04T16:49:33Z","updated_at":"2018-04-04T16:54:12Z"},{"url":"https://api.github.com/gists/bbf1b339ca286821f57ab8da294c9dcb","user":{"login":"joshodo","id":38011895,"node_id":"MDQ6VXNlcjM4MDExODk1","avatar_url":"https://avatars.githubusercontent.com/u/38011895?v=4","gravatar_id":"","url":"https://api.github.com/users/joshodo","html_url":"https://github.com/joshodo","followers_url":"https://api.github.com/users/joshodo/followers","following_url":"https://api.github.com/users/joshodo/following{/other_user}","gists_url":"https://api.github.com/users/joshodo/gists{/gist_id}","starred_url":"https://api.github.com/users/joshodo/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/joshodo/subscriptions","organizations_url":"https://api.github.com/users/joshodo/orgs","repos_url":"https://api.github.com/users/joshodo/repos","events_url":"https://api.github.com/users/joshodo/events{/privacy}","received_events_url":"https://api.github.com/users/joshodo/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":"2018-04-02T16:33:38Z","updated_at":"2022-03-01T07:38:07Z"},"id":"bbf1b339ca286821f57ab8da294c9dcb","created_at":"2018-04-04T16:49:42Z","updated_at":"2018-04-04T16:58:32Z"},{"url":"https://api.github.com/gists/84db05938df55ccedca703c1f17ef55b","user":{"login":"kbearnarth","id":38076629,"node_id":"MDQ6VXNlcjM4MDc2NjI5","avatar_url":"https://avatars.githubusercontent.com/u/38076629?v=4","gravatar_id":"","url":"https://api.github.com/users/kbearnarth","html_url":"https://github.com/kbearnarth","followers_url":"https://api.github.com/users/kbearnarth/followers","following_url":"https://api.github.com/users/kbearnarth/following{/other_user}","gists_url":"https://api.github.com/users/kbearnarth/gists{/gist_id}","starred_url":"https://api.github.com/users/kbearnarth/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/kbearnarth/subscriptions","organizations_url":"https://api.github.com/users/kbearnarth/orgs","repos_url":"https://api.github.com/users/kbearnarth/repos","events_url":"https://api.github.com/users/kbearnarth/events{/privacy}","received_events_url":"https://api.github.com/users/kbearnarth/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":"2018-04-04T14:21:07Z","updated_at":"2018-04-04T14:21:07Z"},"id":"84db05938df55ccedca703c1f17ef55b","created_at":"2018-04-04T16:49:42Z","updated_at":"2018-04-04T16:58:52Z"},{"url":"https://api.github.com/gists/f06c5d1e29550d87bafb3a14f4660ae9","user":{"login":"morganzys","id":38052166,"node_id":"MDQ6VXNlcjM4MDUyMTY2","avatar_url":"https://avatars.githubusercontent.com/u/38052166?v=4","gravatar_id":"","url":"https://api.github.com/users/morganzys","html_url":"https://github.com/morganzys","followers_url":"https://api.github.com/users/morganzys/followers","following_url":"https://api.github.com/users/morganzys/following{/other_user}","gists_url":"https://api.github.com/users/morganzys/gists{/gist_id}","starred_url":"https://api.github.com/users/morganzys/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/morganzys/subscriptions","organizations_url":"https://api.github.com/users/morganzys/orgs","repos_url":"https://api.github.com/users/morganzys/repos","events_url":"https://api.github.com/users/morganzys/events{/privacy}","received_events_url":"https://api.github.com/users/morganzys/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":"2018-04-03T19:58:37Z","updated_at":"2018-04-03T19:58:37Z"},"id":"f06c5d1e29550d87bafb3a14f4660ae9","created_at":"2018-04-04T16:49:43Z","updated_at":"2018-04-04T16:58:45Z"},{"url":"https://api.github.com/gists/76d3c65fb6c424c1f29cfdb0ee84fb5e","user":{"login":"morganzys","id":38052166,"node_id":"MDQ6VXNlcjM4MDUyMTY2","avatar_url":"https://avatars.githubusercontent.com/u/38052166?v=4","gravatar_id":"","url":"https://api.github.com/users/morganzys","html_url":"https://github.com/morganzys","followers_url":"https://api.github.com/users/morganzys/followers","following_url":"https://api.github.com/users/morganzys/following{/other_user}","gists_url":"https://api.github.com/users/morganzys/gists{/gist_id}","starred_url":"https://api.github.com/users/morganzys/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/morganzys/subscriptions","organizations_url":"https://api.github.com/users/morganzys/orgs","repos_url":"https://api.github.com/users/morganzys/repos","events_url":"https://api.github.com/users/morganzys/events{/privacy}","received_events_url":"https://api.github.com/users/morganzys/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":"2018-04-03T19:58:37Z","updated_at":"2018-04-03T19:58:37Z"},"id":"76d3c65fb6c424c1f29cfdb0ee84fb5e","created_at":"2018-04-04T16:49:45Z","updated_at":"2018-04-04T16:49:46Z"},{"url":"https://api.github.com/gists/8c52eb5e0f0f133cccc2a04e3afebf78","user":{"login":"jennalandesman","id":38051989,"node_id":"MDQ6VXNlcjM4MDUxOTg5","avatar_url":"https://avatars.githubusercontent.com/u/38051989?v=4","gravatar_id":"","url":"https://api.github.com/users/jennalandesman","html_url":"https://github.com/jennalandesman","followers_url":"https://api.github.com/users/jennalandesman/followers","following_url":"https://api.github.com/users/jennalandesman/following{/other_user}","gists_url":"https://api.github.com/users/jennalandesman/gists{/gist_id}","starred_url":"https://api.github.com/users/jennalandesman/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jennalandesman/subscriptions","organizations_url":"https://api.github.com/users/jennalandesman/orgs","repos_url":"https://api.github.com/users/jennalandesman/repos","events_url":"https://api.github.com/users/jennalandesman/events{/privacy}","received_events_url":"https://api.github.com/users/jennalandesman/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":"2018-04-03T19:50:04Z","updated_at":"2018-04-04T16:50:28Z"},"id":"8c52eb5e0f0f133cccc2a04e3afebf78","created_at":"2018-04-04T16:49:45Z","updated_at":"2018-04-04T16:58:46Z"},{"url":"https://api.github.com/gists/bbdec9636d741e103fecfecc6689f725","user":{"login":"tmrichmond","id":38058963,"node_id":"MDQ6VXNlcjM4MDU4OTYz","avatar_url":"https://avatars.githubusercontent.com/u/38058963?v=4","gravatar_id":"","url":"https://api.github.com/users/tmrichmond","html_url":"https://github.com/tmrichmond","followers_url":"https://api.github.com/users/tmrichmond/followers","following_url":"https://api.github.com/users/tmrichmond/following{/other_user}","gists_url":"https://api.github.com/users/tmrichmond/gists{/gist_id}","starred_url":"https://api.github.com/users/tmrichmond/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tmrichmond/subscriptions","organizations_url":"https://api.github.com/users/tmrichmond/orgs","repos_url":"https://api.github.com/users/tmrichmond/repos","events_url":"https://api.github.com/users/tmrichmond/events{/privacy}","received_events_url":"https://api.github.com/users/tmrichmond/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":"2018-04-04T02:18:55Z","updated_at":"2018-04-04T11:54:44Z"},"id":"bbdec9636d741e103fecfecc6689f725","created_at":"2018-04-04T16:49:53Z","updated_at":"2018-04-04T17:00:39Z"},{"url":"https://api.github.com/gists/be92a224632e3a116a9c392478cbcb50","user":{"login":"kamaurer","id":38079699,"node_id":"MDQ6VXNlcjM4MDc5Njk5","avatar_url":"https://avatars.githubusercontent.com/u/38079699?v=4","gravatar_id":"","url":"https://api.github.com/users/kamaurer","html_url":"https://github.com/kamaurer","followers_url":"https://api.github.com/users/kamaurer/followers","following_url":"https://api.github.com/users/kamaurer/following{/other_user}","gists_url":"https://api.github.com/users/kamaurer/gists{/gist_id}","starred_url":"https://api.github.com/users/kamaurer/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/kamaurer/subscriptions","organizations_url":"https://api.github.com/users/kamaurer/orgs","repos_url":"https://api.github.com/users/kamaurer/repos","events_url":"https://api.github.com/users/kamaurer/events{/privacy}","received_events_url":"https://api.github.com/users/kamaurer/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":"2018-04-04T16:12:05Z","updated_at":"2018-04-04T16:12:05Z"},"id":"be92a224632e3a116a9c392478cbcb50","created_at":"2018-04-04T16:50:02Z","updated_at":"2018-04-04T16:58:40Z"},{"url":"https://api.github.com/gists/f6c4da7272705e3b1b69bfad64da1b37","user":{"login":"v12crankshaft","id":38055620,"node_id":"MDQ6VXNlcjM4MDU1NjIw","avatar_url":"https://avatars.githubusercontent.com/u/38055620?v=4","gravatar_id":"","url":"https://api.github.com/users/v12crankshaft","html_url":"https://github.com/v12crankshaft","followers_url":"https://api.github.com/users/v12crankshaft/followers","following_url":"https://api.github.com/users/v12crankshaft/following{/other_user}","gists_url":"https://api.github.com/users/v12crankshaft/gists{/gist_id}","starred_url":"https://api.github.com/users/v12crankshaft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/v12crankshaft/subscriptions","organizations_url":"https://api.github.com/users/v12crankshaft/orgs","repos_url":"https://api.github.com/users/v12crankshaft/repos","events_url":"https://api.github.com/users/v12crankshaft/events{/privacy}","received_events_url":"https://api.github.com/users/v12crankshaft/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":"2018-04-03T23:23:28Z","updated_at":"2018-04-03T23:23:29Z"},"id":"f6c4da7272705e3b1b69bfad64da1b37","created_at":"2018-04-04T16:50:05Z","updated_at":"2018-04-04T16:59:57Z"},{"url":"https://api.github.com/gists/947ebfda9d1eb449ffc79026b6529b66","user":{"login":"cjpeer","id":38022660,"node_id":"MDQ6VXNlcjM4MDIyNjYw","avatar_url":"https://avatars.githubusercontent.com/u/38022660?v=4","gravatar_id":"","url":"https://api.github.com/users/cjpeer","html_url":"https://github.com/cjpeer","followers_url":"https://api.github.com/users/cjpeer/followers","following_url":"https://api.github.com/users/cjpeer/following{/other_user}","gists_url":"https://api.github.com/users/cjpeer/gists{/gist_id}","starred_url":"https://api.github.com/users/cjpeer/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cjpeer/subscriptions","organizations_url":"https://api.github.com/users/cjpeer/orgs","repos_url":"https://api.github.com/users/cjpeer/repos","events_url":"https://api.github.com/users/cjpeer/events{/privacy}","received_events_url":"https://api.github.com/users/cjpeer/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":"2018-04-03T01:23:22Z","updated_at":"2018-04-03T01:23:22Z"},"id":"947ebfda9d1eb449ffc79026b6529b66","created_at":"2018-04-04T16:50:07Z","updated_at":"2018-04-04T16:58:41Z"},{"url":"https://api.github.com/gists/7bf6da35bd8269d02b43a6476006eeec","user":{"login":"chanifee","id":38079675,"node_id":"MDQ6VXNlcjM4MDc5Njc1","avatar_url":"https://avatars.githubusercontent.com/u/38079675?v=4","gravatar_id":"","url":"https://api.github.com/users/chanifee","html_url":"https://github.com/chanifee","followers_url":"https://api.github.com/users/chanifee/followers","following_url":"https://api.github.com/users/chanifee/following{/other_user}","gists_url":"https://api.github.com/users/chanifee/gists{/gist_id}","starred_url":"https://api.github.com/users/chanifee/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/chanifee/subscriptions","organizations_url":"https://api.github.com/users/chanifee/orgs","repos_url":"https://api.github.com/users/chanifee/repos","events_url":"https://api.github.com/users/chanifee/events{/privacy}","received_events_url":"https://api.github.com/users/chanifee/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":"2018-04-04T16:11:17Z","updated_at":"2018-04-04T16:11:18Z"},"id":"7bf6da35bd8269d02b43a6476006eeec","created_at":"2018-04-04T16:50:08Z","updated_at":"2018-04-04T16:59:54Z"},{"url":"https://api.github.com/gists/36bb74d735540e759b1ac4ace752a91e","user":{"login":"fbartok","id":38079963,"node_id":"MDQ6VXNlcjM4MDc5OTYz","avatar_url":"https://avatars.githubusercontent.com/u/38079963?v=4","gravatar_id":"","url":"https://api.github.com/users/fbartok","html_url":"https://github.com/fbartok","followers_url":"https://api.github.com/users/fbartok/followers","following_url":"https://api.github.com/users/fbartok/following{/other_user}","gists_url":"https://api.github.com/users/fbartok/gists{/gist_id}","starred_url":"https://api.github.com/users/fbartok/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fbartok/subscriptions","organizations_url":"https://api.github.com/users/fbartok/orgs","repos_url":"https://api.github.com/users/fbartok/repos","events_url":"https://api.github.com/users/fbartok/events{/privacy}","received_events_url":"https://api.github.com/users/fbartok/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":"2018-04-04T16:21:24Z","updated_at":"2022-06-18T12:51:57Z"},"id":"36bb74d735540e759b1ac4ace752a91e","created_at":"2018-04-04T16:50:08Z","updated_at":"2018-04-04T16:50:08Z"},{"url":"https://api.github.com/gists/a5658d41eedba69d561583f3143dd93f","user":{"login":"sashaarellano","id":38012303,"node_id":"MDQ6VXNlcjM4MDEyMzAz","avatar_url":"https://avatars.githubusercontent.com/u/38012303?v=4","gravatar_id":"","url":"https://api.github.com/users/sashaarellano","html_url":"https://github.com/sashaarellano","followers_url":"https://api.github.com/users/sashaarellano/followers","following_url":"https://api.github.com/users/sashaarellano/following{/other_user}","gists_url":"https://api.github.com/users/sashaarellano/gists{/gist_id}","starred_url":"https://api.github.com/users/sashaarellano/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/sashaarellano/subscriptions","organizations_url":"https://api.github.com/users/sashaarellano/orgs","repos_url":"https://api.github.com/users/sashaarellano/repos","events_url":"https://api.github.com/users/sashaarellano/events{/privacy}","received_events_url":"https://api.github.com/users/sashaarellano/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":"2018-04-02T16:49:04Z","updated_at":"2018-04-02T16:49:04Z"},"id":"a5658d41eedba69d561583f3143dd93f","created_at":"2018-04-04T16:50:13Z","updated_at":"2018-04-04T16:58:54Z"},{"url":"https://api.github.com/gists/26bc7312f93af95325ac6fb7f963594e","user":{"login":"Abby-Skryd4","id":38079980,"node_id":"MDQ6VXNlcjM4MDc5OTgw","avatar_url":"https://avatars.githubusercontent.com/u/38079980?v=4","gravatar_id":"","url":"https://api.github.com/users/Abby-Skryd4","html_url":"https://github.com/Abby-Skryd4","followers_url":"https://api.github.com/users/Abby-Skryd4/followers","following_url":"https://api.github.com/users/Abby-Skryd4/following{/other_user}","gists_url":"https://api.github.com/users/Abby-Skryd4/gists{/gist_id}","starred_url":"https://api.github.com/users/Abby-Skryd4/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Abby-Skryd4/subscriptions","organizations_url":"https://api.github.com/users/Abby-Skryd4/orgs","repos_url":"https://api.github.com/users/Abby-Skryd4/repos","events_url":"https://api.github.com/users/Abby-Skryd4/events{/privacy}","received_events_url":"https://api.github.com/users/Abby-Skryd4/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":"2018-04-04T16:22:10Z","updated_at":"2018-04-04T16:22:10Z"},"id":"26bc7312f93af95325ac6fb7f963594e","created_at":"2018-04-04T16:50:13Z","updated_at":"2018-04-04T16:59:01Z"},{"url":"https://api.github.com/gists/8d26da09d5b154bbdbdccd31263aacce","user":{"login":"rachelstamberg","id":38012064,"node_id":"MDQ6VXNlcjM4MDEyMDY0","avatar_url":"https://avatars.githubusercontent.com/u/38012064?v=4","gravatar_id":"","url":"https://api.github.com/users/rachelstamberg","html_url":"https://github.com/rachelstamberg","followers_url":"https://api.github.com/users/rachelstamberg/followers","following_url":"https://api.github.com/users/rachelstamberg/following{/other_user}","gists_url":"https://api.github.com/users/rachelstamberg/gists{/gist_id}","starred_url":"https://api.github.com/users/rachelstamberg/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rachelstamberg/subscriptions","organizations_url":"https://api.github.com/users/rachelstamberg/orgs","repos_url":"https://api.github.com/users/rachelstamberg/repos","events_url":"https://api.github.com/users/rachelstamberg/events{/privacy}","received_events_url":"https://api.github.com/users/rachelstamberg/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":"2018-04-02T16:39:14Z","updated_at":"2018-04-02T16:39:14Z"},"id":"8d26da09d5b154bbdbdccd31263aacce","created_at":"2018-04-04T16:50:18Z","updated_at":"2018-04-04T16:58:41Z"},{"url":"https://api.github.com/gists/c19fb095bafa8bbb4436a03a3eed2a4c","user":{"login":"kyrad123","id":38055767,"node_id":"MDQ6VXNlcjM4MDU1NzY3","avatar_url":"https://avatars.githubusercontent.com/u/38055767?v=4","gravatar_id":"","url":"https://api.github.com/users/kyrad123","html_url":"https://github.com/kyrad123","followers_url":"https://api.github.com/users/kyrad123/followers","following_url":"https://api.github.com/users/kyrad123/following{/other_user}","gists_url":"https://api.github.com/users/kyrad123/gists{/gist_id}","starred_url":"https://api.github.com/users/kyrad123/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/kyrad123/subscriptions","organizations_url":"https://api.github.com/users/kyrad123/orgs","repos_url":"https://api.github.com/users/kyrad123/repos","events_url":"https://api.github.com/users/kyrad123/events{/privacy}","received_events_url":"https://api.github.com/users/kyrad123/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":"2018-04-03T23:33:10Z","updated_at":"2018-04-03T23:33:10Z"},"id":"c19fb095bafa8bbb4436a03a3eed2a4c","created_at":"2018-04-04T16:50:23Z","updated_at":"2018-04-04T16:58:42Z"},{"url":"https://api.github.com/gists/17f4d46ebce07a92fbf2b98d12ed3df3","user":{"login":"bryntompkins","id":38076541,"node_id":"MDQ6VXNlcjM4MDc2NTQx","avatar_url":"https://avatars.githubusercontent.com/u/38076541?v=4","gravatar_id":"","url":"https://api.github.com/users/bryntompkins","html_url":"https://github.com/bryntompkins","followers_url":"https://api.github.com/users/bryntompkins/followers","following_url":"https://api.github.com/users/bryntompkins/following{/other_user}","gists_url":"https://api.github.com/users/bryntompkins/gists{/gist_id}","starred_url":"https://api.github.com/users/bryntompkins/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bryntompkins/subscriptions","organizations_url":"https://api.github.com/users/bryntompkins/orgs","repos_url":"https://api.github.com/users/bryntompkins/repos","events_url":"https://api.github.com/users/bryntompkins/events{/privacy}","received_events_url":"https://api.github.com/users/bryntompkins/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":"2018-04-04T14:18:03Z","updated_at":"2022-10-16T09:06:40Z"},"id":"17f4d46ebce07a92fbf2b98d12ed3df3","created_at":"2018-04-04T16:50:23Z","updated_at":"2018-04-04T16:58:41Z"},{"url":"https://api.github.com/gists/b00baa6e070b880000a966b12fc6ac84","user":{"login":"brettk4","id":38078296,"node_id":"MDQ6VXNlcjM4MDc4Mjk2","avatar_url":"https://avatars.githubusercontent.com/u/38078296?v=4","gravatar_id":"","url":"https://api.github.com/users/brettk4","html_url":"https://github.com/brettk4","followers_url":"https://api.github.com/users/brettk4/followers","following_url":"https://api.github.com/users/brettk4/following{/other_user}","gists_url":"https://api.github.com/users/brettk4/gists{/gist_id}","starred_url":"https://api.github.com/users/brettk4/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/brettk4/subscriptions","organizations_url":"https://api.github.com/users/brettk4/orgs","repos_url":"https://api.github.com/users/brettk4/repos","events_url":"https://api.github.com/users/brettk4/events{/privacy}","received_events_url":"https://api.github.com/users/brettk4/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":"2018-04-04T15:19:54Z","updated_at":"2021-10-25T05:39:42Z"},"id":"b00baa6e070b880000a966b12fc6ac84","created_at":"2018-04-04T16:50:27Z","updated_at":"2018-04-04T16:50:27Z"},{"url":"https://api.github.com/gists/ddaebbbbe90a297c3b4cd16fd533c966","user":{"login":"leannasmith","id":38079951,"node_id":"MDQ6VXNlcjM4MDc5OTUx","avatar_url":"https://avatars.githubusercontent.com/u/38079951?v=4","gravatar_id":"","url":"https://api.github.com/users/leannasmith","html_url":"https://github.com/leannasmith","followers_url":"https://api.github.com/users/leannasmith/followers","following_url":"https://api.github.com/users/leannasmith/following{/other_user}","gists_url":"https://api.github.com/users/leannasmith/gists{/gist_id}","starred_url":"https://api.github.com/users/leannasmith/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/leannasmith/subscriptions","organizations_url":"https://api.github.com/users/leannasmith/orgs","repos_url":"https://api.github.com/users/leannasmith/repos","events_url":"https://api.github.com/users/leannasmith/events{/privacy}","received_events_url":"https://api.github.com/users/leannasmith/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":"2018-04-04T16:20:59Z","updated_at":"2018-04-04T16:21:00Z"},"id":"ddaebbbbe90a297c3b4cd16fd533c966","created_at":"2018-04-04T16:50:32Z","updated_at":"2018-04-04T16:59:29Z"},{"url":"https://api.github.com/gists/cba4e33a96f593e04be52bd4bf7bf88f","user":{"login":"elizaeggleston","id":38079680,"node_id":"MDQ6VXNlcjM4MDc5Njgw","avatar_url":"https://avatars.githubusercontent.com/u/38079680?v=4","gravatar_id":"","url":"https://api.github.com/users/elizaeggleston","html_url":"https://github.com/elizaeggleston","followers_url":"https://api.github.com/users/elizaeggleston/followers","following_url":"https://api.github.com/users/elizaeggleston/following{/other_user}","gists_url":"https://api.github.com/users/elizaeggleston/gists{/gist_id}","starred_url":"https://api.github.com/users/elizaeggleston/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/elizaeggleston/subscriptions","organizations_url":"https://api.github.com/users/elizaeggleston/orgs","repos_url":"https://api.github.com/users/elizaeggleston/repos","events_url":"https://api.github.com/users/elizaeggleston/events{/privacy}","received_events_url":"https://api.github.com/users/elizaeggleston/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":"2018-04-04T16:11:34Z","updated_at":"2018-04-04T16:11:34Z"},"id":"cba4e33a96f593e04be52bd4bf7bf88f","created_at":"2018-04-04T16:50:33Z","updated_at":"2018-04-04T16:58:38Z"},{"url":"https://api.github.com/gists/810be579794b799209e59752717eb100","user":{"login":"heekej","id":38051120,"node_id":"MDQ6VXNlcjM4MDUxMTIw","avatar_url":"https://avatars.githubusercontent.com/u/38051120?v=4","gravatar_id":"","url":"https://api.github.com/users/heekej","html_url":"https://github.com/heekej","followers_url":"https://api.github.com/users/heekej/followers","following_url":"https://api.github.com/users/heekej/following{/other_user}","gists_url":"https://api.github.com/users/heekej/gists{/gist_id}","starred_url":"https://api.github.com/users/heekej/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/heekej/subscriptions","organizations_url":"https://api.github.com/users/heekej/orgs","repos_url":"https://api.github.com/users/heekej/repos","events_url":"https://api.github.com/users/heekej/events{/privacy}","received_events_url":"https://api.github.com/users/heekej/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":"2018-04-03T19:11:02Z","updated_at":"2018-04-03T19:11:02Z"},"id":"810be579794b799209e59752717eb100","created_at":"2018-04-04T16:50:36Z","updated_at":"2018-04-04T16:58:41Z"},{"url":"https://api.github.com/gists/fbc0b11950eca369b65e226f366d6d7b","user":{"login":"thamilton15","id":38079793,"node_id":"MDQ6VXNlcjM4MDc5Nzkz","avatar_url":"https://avatars.githubusercontent.com/u/38079793?v=4","gravatar_id":"","url":"https://api.github.com/users/thamilton15","html_url":"https://github.com/thamilton15","followers_url":"https://api.github.com/users/thamilton15/followers","following_url":"https://api.github.com/users/thamilton15/following{/other_user}","gists_url":"https://api.github.com/users/thamilton15/gists{/gist_id}","starred_url":"https://api.github.com/users/thamilton15/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/thamilton15/subscriptions","organizations_url":"https://api.github.com/users/thamilton15/orgs","repos_url":"https://api.github.com/users/thamilton15/repos","events_url":"https://api.github.com/users/thamilton15/events{/privacy}","received_events_url":"https://api.github.com/users/thamilton15/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":"2018-04-04T16:15:07Z","updated_at":"2018-04-04T16:15:07Z"},"id":"fbc0b11950eca369b65e226f366d6d7b","created_at":"2018-04-04T16:50:38Z","updated_at":"2018-04-04T16:58:40Z"},{"url":"https://api.github.com/gists/024fd60799a280ef7010cc1aa6823fad","user":{"login":"ANestor18","id":38079717,"node_id":"MDQ6VXNlcjM4MDc5NzE3","avatar_url":"https://avatars.githubusercontent.com/u/38079717?v=4","gravatar_id":"","url":"https://api.github.com/users/ANestor18","html_url":"https://github.com/ANestor18","followers_url":"https://api.github.com/users/ANestor18/followers","following_url":"https://api.github.com/users/ANestor18/following{/other_user}","gists_url":"https://api.github.com/users/ANestor18/gists{/gist_id}","starred_url":"https://api.github.com/users/ANestor18/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ANestor18/subscriptions","organizations_url":"https://api.github.com/users/ANestor18/orgs","repos_url":"https://api.github.com/users/ANestor18/repos","events_url":"https://api.github.com/users/ANestor18/events{/privacy}","received_events_url":"https://api.github.com/users/ANestor18/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":"2018-04-04T16:12:40Z","updated_at":"2018-04-04T16:49:37Z"},"id":"024fd60799a280ef7010cc1aa6823fad","created_at":"2018-04-04T16:50:54Z","updated_at":"2018-04-04T16:55:04Z"},{"url":"https://api.github.com/gists/8bdec3ee74c4b1fa1135f8294ad4a22e","user":{"login":"mdaher54","id":38078478,"node_id":"MDQ6VXNlcjM4MDc4NDc4","avatar_url":"https://avatars.githubusercontent.com/u/38078478?v=4","gravatar_id":"","url":"https://api.github.com/users/mdaher54","html_url":"https://github.com/mdaher54","followers_url":"https://api.github.com/users/mdaher54/followers","following_url":"https://api.github.com/users/mdaher54/following{/other_user}","gists_url":"https://api.github.com/users/mdaher54/gists{/gist_id}","starred_url":"https://api.github.com/users/mdaher54/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mdaher54/subscriptions","organizations_url":"https://api.github.com/users/mdaher54/orgs","repos_url":"https://api.github.com/users/mdaher54/repos","events_url":"https://api.github.com/users/mdaher54/events{/privacy}","received_events_url":"https://api.github.com/users/mdaher54/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Michael Daher","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":"2018-04-04T15:26:13Z","updated_at":"2018-04-04T16:20:35Z"},"id":"8bdec3ee74c4b1fa1135f8294ad4a22e","created_at":"2018-04-04T16:50:57Z","updated_at":"2018-04-04T16:59:21Z"},{"url":"https://api.github.com/gists/8faa302447303bb59e81f4d89e3ae7e9","user":{"login":"ddetitta","id":38076527,"node_id":"MDQ6VXNlcjM4MDc2NTI3","avatar_url":"https://avatars.githubusercontent.com/u/38076527?v=4","gravatar_id":"","url":"https://api.github.com/users/ddetitta","html_url":"https://github.com/ddetitta","followers_url":"https://api.github.com/users/ddetitta/followers","following_url":"https://api.github.com/users/ddetitta/following{/other_user}","gists_url":"https://api.github.com/users/ddetitta/gists{/gist_id}","starred_url":"https://api.github.com/users/ddetitta/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ddetitta/subscriptions","organizations_url":"https://api.github.com/users/ddetitta/orgs","repos_url":"https://api.github.com/users/ddetitta/repos","events_url":"https://api.github.com/users/ddetitta/events{/privacy}","received_events_url":"https://api.github.com/users/ddetitta/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":"2018-04-04T14:17:39Z","updated_at":"2018-04-04T14:17:39Z"},"id":"8faa302447303bb59e81f4d89e3ae7e9","created_at":"2018-04-04T16:50:59Z","updated_at":"2018-04-04T16:58:44Z"},{"url":"https://api.github.com/gists/1a3e48666f3fb3cc0324847ab70d3108","user":{"login":"trodgers10","id":37986164,"node_id":"MDQ6VXNlcjM3OTg2MTY0","avatar_url":"https://avatars.githubusercontent.com/u/37986164?v=4","gravatar_id":"","url":"https://api.github.com/users/trodgers10","html_url":"https://github.com/trodgers10","followers_url":"https://api.github.com/users/trodgers10/followers","following_url":"https://api.github.com/users/trodgers10/following{/other_user}","gists_url":"https://api.github.com/users/trodgers10/gists{/gist_id}","starred_url":"https://api.github.com/users/trodgers10/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/trodgers10/subscriptions","organizations_url":"https://api.github.com/users/trodgers10/orgs","repos_url":"https://api.github.com/users/trodgers10/repos","events_url":"https://api.github.com/users/trodgers10/events{/privacy}","received_events_url":"https://api.github.com/users/trodgers10/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":"2018-04-01T20:35:39Z","updated_at":"2023-07-10T06:13:50Z"},"id":"1a3e48666f3fb3cc0324847ab70d3108","created_at":"2018-04-04T16:51:11Z","updated_at":"2018-04-04T16:58:42Z"},{"url":"https://api.github.com/gists/2dd3e5f6a7259d289a543c4fcd04725f","user":{"login":"jonnypassman","id":38077710,"node_id":"MDQ6VXNlcjM4MDc3NzEw","avatar_url":"https://avatars.githubusercontent.com/u/38077710?v=4","gravatar_id":"","url":"https://api.github.com/users/jonnypassman","html_url":"https://github.com/jonnypassman","followers_url":"https://api.github.com/users/jonnypassman/followers","following_url":"https://api.github.com/users/jonnypassman/following{/other_user}","gists_url":"https://api.github.com/users/jonnypassman/gists{/gist_id}","starred_url":"https://api.github.com/users/jonnypassman/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jonnypassman/subscriptions","organizations_url":"https://api.github.com/users/jonnypassman/orgs","repos_url":"https://api.github.com/users/jonnypassman/repos","events_url":"https://api.github.com/users/jonnypassman/events{/privacy}","received_events_url":"https://api.github.com/users/jonnypassman/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Jonathan Passman","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":"2018-04-04T14:58:30Z","updated_at":"2018-04-04T16:14:06Z"},"id":"2dd3e5f6a7259d289a543c4fcd04725f","created_at":"2018-04-04T16:51:13Z","updated_at":"2018-04-04T16:55:13Z"},{"url":"https://api.github.com/gists/a21e38f687a07431cf112d6964dd45fa","user":{"login":"alliedionisi","id":38079351,"node_id":"MDQ6VXNlcjM4MDc5MzUx","avatar_url":"https://avatars.githubusercontent.com/u/38079351?v=4","gravatar_id":"","url":"https://api.github.com/users/alliedionisi","html_url":"https://github.com/alliedionisi","followers_url":"https://api.github.com/users/alliedionisi/followers","following_url":"https://api.github.com/users/alliedionisi/following{/other_user}","gists_url":"https://api.github.com/users/alliedionisi/gists{/gist_id}","starred_url":"https://api.github.com/users/alliedionisi/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/alliedionisi/subscriptions","organizations_url":"https://api.github.com/users/alliedionisi/orgs","repos_url":"https://api.github.com/users/alliedionisi/repos","events_url":"https://api.github.com/users/alliedionisi/events{/privacy}","received_events_url":"https://api.github.com/users/alliedionisi/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":"2018-04-04T15:58:32Z","updated_at":"2018-04-04T15:58:33Z"},"id":"a21e38f687a07431cf112d6964dd45fa","created_at":"2018-04-04T16:51:16Z","updated_at":"2018-04-04T16:58:44Z"},{"url":"https://api.github.com/gists/99552905536459957ec5e6ac1c72ff52","user":{"login":"kenziecullen","id":38079985,"node_id":"MDQ6VXNlcjM4MDc5OTg1","avatar_url":"https://avatars.githubusercontent.com/u/38079985?v=4","gravatar_id":"","url":"https://api.github.com/users/kenziecullen","html_url":"https://github.com/kenziecullen","followers_url":"https://api.github.com/users/kenziecullen/followers","following_url":"https://api.github.com/users/kenziecullen/following{/other_user}","gists_url":"https://api.github.com/users/kenziecullen/gists{/gist_id}","starred_url":"https://api.github.com/users/kenziecullen/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/kenziecullen/subscriptions","organizations_url":"https://api.github.com/users/kenziecullen/orgs","repos_url":"https://api.github.com/users/kenziecullen/repos","events_url":"https://api.github.com/users/kenziecullen/events{/privacy}","received_events_url":"https://api.github.com/users/kenziecullen/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":"2018-04-04T16:22:18Z","updated_at":"2022-02-21T21:34:32Z"},"id":"99552905536459957ec5e6ac1c72ff52","created_at":"2018-04-04T16:51:19Z","updated_at":"2018-04-04T16:59:23Z"},{"url":"https://api.github.com/gists/a9c52709365178c6fca85bfbeb37b653","user":{"login":"davissmithI","id":37985962,"node_id":"MDQ6VXNlcjM3OTg1OTYy","avatar_url":"https://avatars.githubusercontent.com/u/37985962?v=4","gravatar_id":"","url":"https://api.github.com/users/davissmithI","html_url":"https://github.com/davissmithI","followers_url":"https://api.github.com/users/davissmithI/followers","following_url":"https://api.github.com/users/davissmithI/following{/other_user}","gists_url":"https://api.github.com/users/davissmithI/gists{/gist_id}","starred_url":"https://api.github.com/users/davissmithI/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/davissmithI/subscriptions","organizations_url":"https://api.github.com/users/davissmithI/orgs","repos_url":"https://api.github.com/users/davissmithI/repos","events_url":"https://api.github.com/users/davissmithI/events{/privacy}","received_events_url":"https://api.github.com/users/davissmithI/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":1,"followers":0,"following":0,"created_at":"2018-04-01T20:20:46Z","updated_at":"2020-10-13T15:30:13Z"},"id":"a9c52709365178c6fca85bfbeb37b653","created_at":"2018-04-04T16:51:21Z","updated_at":"2018-04-04T16:51:21Z"},{"url":"https://api.github.com/gists/f7d8f25b39f1f9c144a5726d599bdff1","user":{"login":"loumase","id":38079684,"node_id":"MDQ6VXNlcjM4MDc5Njg0","avatar_url":"https://avatars.githubusercontent.com/u/38079684?v=4","gravatar_id":"","url":"https://api.github.com/users/loumase","html_url":"https://github.com/loumase","followers_url":"https://api.github.com/users/loumase/followers","following_url":"https://api.github.com/users/loumase/following{/other_user}","gists_url":"https://api.github.com/users/loumase/gists{/gist_id}","starred_url":"https://api.github.com/users/loumase/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/loumase/subscriptions","organizations_url":"https://api.github.com/users/loumase/orgs","repos_url":"https://api.github.com/users/loumase/repos","events_url":"https://api.github.com/users/loumase/events{/privacy}","received_events_url":"https://api.github.com/users/loumase/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":"2018-04-04T16:11:42Z","updated_at":"2020-10-18T08:35:47Z"},"id":"f7d8f25b39f1f9c144a5726d599bdff1","created_at":"2018-04-04T16:51:22Z","updated_at":"2018-04-04T16:51:23Z"},{"url":"https://api.github.com/gists/3c517c57529306f464accdb151810366","user":{"login":"clarahanifin","id":38009074,"node_id":"MDQ6VXNlcjM4MDA5MDc0","avatar_url":"https://avatars.githubusercontent.com/u/38009074?v=4","gravatar_id":"","url":"https://api.github.com/users/clarahanifin","html_url":"https://github.com/clarahanifin","followers_url":"https://api.github.com/users/clarahanifin/followers","following_url":"https://api.github.com/users/clarahanifin/following{/other_user}","gists_url":"https://api.github.com/users/clarahanifin/gists{/gist_id}","starred_url":"https://api.github.com/users/clarahanifin/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/clarahanifin/subscriptions","organizations_url":"https://api.github.com/users/clarahanifin/orgs","repos_url":"https://api.github.com/users/clarahanifin/repos","events_url":"https://api.github.com/users/clarahanifin/events{/privacy}","received_events_url":"https://api.github.com/users/clarahanifin/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":"2018-04-02T14:45:36Z","updated_at":"2018-04-02T14:45:36Z"},"id":"3c517c57529306f464accdb151810366","created_at":"2018-04-04T16:51:47Z","updated_at":"2018-04-04T16:58:46Z"},{"url":"https://api.github.com/gists/f3d93b8481c23163b8e0c840af96d467","user":{"login":"kayleedrab","id":38078752,"node_id":"MDQ6VXNlcjM4MDc4NzUy","avatar_url":"https://avatars.githubusercontent.com/u/38078752?v=4","gravatar_id":"","url":"https://api.github.com/users/kayleedrab","html_url":"https://github.com/kayleedrab","followers_url":"https://api.github.com/users/kayleedrab/followers","following_url":"https://api.github.com/users/kayleedrab/following{/other_user}","gists_url":"https://api.github.com/users/kayleedrab/gists{/gist_id}","starred_url":"https://api.github.com/users/kayleedrab/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/kayleedrab/subscriptions","organizations_url":"https://api.github.com/users/kayleedrab/orgs","repos_url":"https://api.github.com/users/kayleedrab/repos","events_url":"https://api.github.com/users/kayleedrab/events{/privacy}","received_events_url":"https://api.github.com/users/kayleedrab/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":"2018-04-04T15:35:53Z","updated_at":"2018-04-04T15:35:53Z"},"id":"f3d93b8481c23163b8e0c840af96d467","created_at":"2018-04-04T16:51:52Z","updated_at":"2018-04-04T16:58:42Z"},{"url":"https://api.github.com/gists/60d30bb27e16538e90879553141b5316","user":{"login":"frajraff","id":38079899,"node_id":"MDQ6VXNlcjM4MDc5ODk5","avatar_url":"https://avatars.githubusercontent.com/u/38079899?v=4","gravatar_id":"","url":"https://api.github.com/users/frajraff","html_url":"https://github.com/frajraff","followers_url":"https://api.github.com/users/frajraff/followers","following_url":"https://api.github.com/users/frajraff/following{/other_user}","gists_url":"https://api.github.com/users/frajraff/gists{/gist_id}","starred_url":"https://api.github.com/users/frajraff/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/frajraff/subscriptions","organizations_url":"https://api.github.com/users/frajraff/orgs","repos_url":"https://api.github.com/users/frajraff/repos","events_url":"https://api.github.com/users/frajraff/events{/privacy}","received_events_url":"https://api.github.com/users/frajraff/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":"2018-04-04T16:19:08Z","updated_at":"2022-05-09T17:57:08Z"},"id":"60d30bb27e16538e90879553141b5316","created_at":"2018-04-04T16:51:56Z","updated_at":"2018-04-04T16:58:44Z"},{"url":"https://api.github.com/gists/3baa832a1b164d10aafa61b8ce1ec9dc","user":{"login":"ariellew","id":38080062,"node_id":"MDQ6VXNlcjM4MDgwMDYy","avatar_url":"https://avatars.githubusercontent.com/u/38080062?v=4","gravatar_id":"","url":"https://api.github.com/users/ariellew","html_url":"https://github.com/ariellew","followers_url":"https://api.github.com/users/ariellew/followers","following_url":"https://api.github.com/users/ariellew/following{/other_user}","gists_url":"https://api.github.com/users/ariellew/gists{/gist_id}","starred_url":"https://api.github.com/users/ariellew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ariellew/subscriptions","organizations_url":"https://api.github.com/users/ariellew/orgs","repos_url":"https://api.github.com/users/ariellew/repos","events_url":"https://api.github.com/users/ariellew/events{/privacy}","received_events_url":"https://api.github.com/users/ariellew/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":"2018-04-04T16:25:00Z","updated_at":"2022-09-08T09:07:39Z"},"id":"3baa832a1b164d10aafa61b8ce1ec9dc","created_at":"2018-04-04T16:51:57Z","updated_at":"2018-04-04T16:51:57Z"},{"url":"https://api.github.com/gists/3f4527640aa8fff6bcd7991c01a392fc","user":{"login":"jmbalasa","id":38079972,"node_id":"MDQ6VXNlcjM4MDc5OTcy","avatar_url":"https://avatars.githubusercontent.com/u/38079972?v=4","gravatar_id":"","url":"https://api.github.com/users/jmbalasa","html_url":"https://github.com/jmbalasa","followers_url":"https://api.github.com/users/jmbalasa/followers","following_url":"https://api.github.com/users/jmbalasa/following{/other_user}","gists_url":"https://api.github.com/users/jmbalasa/gists{/gist_id}","starred_url":"https://api.github.com/users/jmbalasa/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jmbalasa/subscriptions","organizations_url":"https://api.github.com/users/jmbalasa/orgs","repos_url":"https://api.github.com/users/jmbalasa/repos","events_url":"https://api.github.com/users/jmbalasa/events{/privacy}","received_events_url":"https://api.github.com/users/jmbalasa/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":"2018-04-04T16:21:48Z","updated_at":"2022-04-11T08:06:48Z"},"id":"3f4527640aa8fff6bcd7991c01a392fc","created_at":"2018-04-04T16:52:12Z","updated_at":"2018-04-04T17:02:57Z"},{"url":"https://api.github.com/gists/da7ed39f283dbed3f57db8b77c896f7b","user":{"login":"mattjk98","id":38079692,"node_id":"MDQ6VXNlcjM4MDc5Njky","avatar_url":"https://avatars.githubusercontent.com/u/38079692?v=4","gravatar_id":"","url":"https://api.github.com/users/mattjk98","html_url":"https://github.com/mattjk98","followers_url":"https://api.github.com/users/mattjk98/followers","following_url":"https://api.github.com/users/mattjk98/following{/other_user}","gists_url":"https://api.github.com/users/mattjk98/gists{/gist_id}","starred_url":"https://api.github.com/users/mattjk98/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mattjk98/subscriptions","organizations_url":"https://api.github.com/users/mattjk98/orgs","repos_url":"https://api.github.com/users/mattjk98/repos","events_url":"https://api.github.com/users/mattjk98/events{/privacy}","received_events_url":"https://api.github.com/users/mattjk98/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":"2018-04-04T16:11:51Z","updated_at":"2018-04-04T16:11:52Z"},"id":"da7ed39f283dbed3f57db8b77c896f7b","created_at":"2018-04-04T16:52:17Z","updated_at":"2018-04-04T17:00:18Z"},{"url":"https://api.github.com/gists/967894d0d89d1df3d07eea583e1b6565","user":{"login":"ryanhoney22","id":38079802,"node_id":"MDQ6VXNlcjM4MDc5ODAy","avatar_url":"https://avatars.githubusercontent.com/u/38079802?v=4","gravatar_id":"","url":"https://api.github.com/users/ryanhoney22","html_url":"https://github.com/ryanhoney22","followers_url":"https://api.github.com/users/ryanhoney22/followers","following_url":"https://api.github.com/users/ryanhoney22/following{/other_user}","gists_url":"https://api.github.com/users/ryanhoney22/gists{/gist_id}","starred_url":"https://api.github.com/users/ryanhoney22/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ryanhoney22/subscriptions","organizations_url":"https://api.github.com/users/ryanhoney22/orgs","repos_url":"https://api.github.com/users/ryanhoney22/repos","events_url":"https://api.github.com/users/ryanhoney22/events{/privacy}","received_events_url":"https://api.github.com/users/ryanhoney22/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":"2018-04-04T16:15:25Z","updated_at":"2018-04-04T16:15:25Z"},"id":"967894d0d89d1df3d07eea583e1b6565","created_at":"2018-04-04T16:52:36Z","updated_at":"2018-04-04T16:58:42Z"},{"url":"https://api.github.com/gists/7d85f1a5dc35ee9d6fd0f99d24481216","user":{"login":"jcooperr","id":38080036,"node_id":"MDQ6VXNlcjM4MDgwMDM2","avatar_url":"https://avatars.githubusercontent.com/u/38080036?v=4","gravatar_id":"","url":"https://api.github.com/users/jcooperr","html_url":"https://github.com/jcooperr","followers_url":"https://api.github.com/users/jcooperr/followers","following_url":"https://api.github.com/users/jcooperr/following{/other_user}","gists_url":"https://api.github.com/users/jcooperr/gists{/gist_id}","starred_url":"https://api.github.com/users/jcooperr/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jcooperr/subscriptions","organizations_url":"https://api.github.com/users/jcooperr/orgs","repos_url":"https://api.github.com/users/jcooperr/repos","events_url":"https://api.github.com/users/jcooperr/events{/privacy}","received_events_url":"https://api.github.com/users/jcooperr/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":"2018-04-04T16:24:12Z","updated_at":"2018-04-04T16:24:12Z"},"id":"7d85f1a5dc35ee9d6fd0f99d24481216","created_at":"2018-04-04T16:53:40Z","updated_at":"2018-04-04T16:58:40Z"},{"url":"https://api.github.com/gists/a32e07b6bc3a55b8c440788667f39f26","user":{"login":"Tarasmy","id":38075324,"node_id":"MDQ6VXNlcjM4MDc1MzI0","avatar_url":"https://avatars.githubusercontent.com/u/38075324?v=4","gravatar_id":"","url":"https://api.github.com/users/Tarasmy","html_url":"https://github.com/Tarasmy","followers_url":"https://api.github.com/users/Tarasmy/followers","following_url":"https://api.github.com/users/Tarasmy/following{/other_user}","gists_url":"https://api.github.com/users/Tarasmy/gists{/gist_id}","starred_url":"https://api.github.com/users/Tarasmy/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Tarasmy/subscriptions","organizations_url":"https://api.github.com/users/Tarasmy/orgs","repos_url":"https://api.github.com/users/Tarasmy/repos","events_url":"https://api.github.com/users/Tarasmy/events{/privacy}","received_events_url":"https://api.github.com/users/Tarasmy/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":"2018-04-04T13:37:19Z","updated_at":"2018-04-04T13:37:20Z"},"id":"a32e07b6bc3a55b8c440788667f39f26","created_at":"2018-04-04T16:55:21Z","updated_at":"2018-04-04T16:56:06Z"},{"url":"https://api.github.com/gists/fb8dc01cbd8c998d6e69d356644ff6c8","user":{"login":"ofeldman","id":38051690,"node_id":"MDQ6VXNlcjM4MDUxNjkw","avatar_url":"https://avatars.githubusercontent.com/u/38051690?v=4","gravatar_id":"","url":"https://api.github.com/users/ofeldman","html_url":"https://github.com/ofeldman","followers_url":"https://api.github.com/users/ofeldman/followers","following_url":"https://api.github.com/users/ofeldman/following{/other_user}","gists_url":"https://api.github.com/users/ofeldman/gists{/gist_id}","starred_url":"https://api.github.com/users/ofeldman/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ofeldman/subscriptions","organizations_url":"https://api.github.com/users/ofeldman/orgs","repos_url":"https://api.github.com/users/ofeldman/repos","events_url":"https://api.github.com/users/ofeldman/events{/privacy}","received_events_url":"https://api.github.com/users/ofeldman/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":"2018-04-03T19:36:44Z","updated_at":"2018-04-03T19:36:44Z"},"id":"fb8dc01cbd8c998d6e69d356644ff6c8","created_at":"2018-04-04T16:56:27Z","updated_at":"2018-04-04T16:56:27Z"},{"url":"https://api.github.com/gists/4184fdd13010850a234da19c79367d81","user":{"login":"zenfinity","id":10538339,"node_id":"MDQ6VXNlcjEwNTM4MzM5","avatar_url":"https://avatars.githubusercontent.com/u/10538339?v=4","gravatar_id":"","url":"https://api.github.com/users/zenfinity","html_url":"https://github.com/zenfinity","followers_url":"https://api.github.com/users/zenfinity/followers","following_url":"https://api.github.com/users/zenfinity/following{/other_user}","gists_url":"https://api.github.com/users/zenfinity/gists{/gist_id}","starred_url":"https://api.github.com/users/zenfinity/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zenfinity/subscriptions","organizations_url":"https://api.github.com/users/zenfinity/orgs","repos_url":"https://api.github.com/users/zenfinity/repos","events_url":"https://api.github.com/users/zenfinity/events{/privacy}","received_events_url":"https://api.github.com/users/zenfinity/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Ian Mac Moore","company":"BluePlusRed LLC","blog":"https://www.blueplusred.com/","location":"Portland, OR","email":"ianmac@blueplusred.com","hireable":true,"bio":"Sustainability Software Expert, Data Visualization Designer | Inspiring action","twitter_username":null,"public_repos":47,"public_gists":1,"followers":8,"following":17,"created_at":"2015-01-14T21:59:47Z","updated_at":"2026-04-07T22:38:01Z"},"id":"4184fdd13010850a234da19c79367d81","created_at":"2023-11-14T21:36:56Z","updated_at":"2023-11-14T21:37:49Z"},{"url":"https://api.github.com/gists/49bf7a629766e754d293933de241eabc","user":{"login":"saurookadook","id":32578064,"node_id":"MDQ6VXNlcjMyNTc4MDY0","avatar_url":"https://avatars.githubusercontent.com/u/32578064?v=4","gravatar_id":"","url":"https://api.github.com/users/saurookadook","html_url":"https://github.com/saurookadook","followers_url":"https://api.github.com/users/saurookadook/followers","following_url":"https://api.github.com/users/saurookadook/following{/other_user}","gists_url":"https://api.github.com/users/saurookadook/gists{/gist_id}","starred_url":"https://api.github.com/users/saurookadook/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/saurookadook/subscriptions","organizations_url":"https://api.github.com/users/saurookadook/orgs","repos_url":"https://api.github.com/users/saurookadook/repos","events_url":"https://api.github.com/users/saurookadook/events{/privacy}","received_events_url":"https://api.github.com/users/saurookadook/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Andy Maskiell","company":null,"blog":"","location":"Boston, MA","email":null,"hireable":null,"bio":"Musician-turned-Software Engineer. \r\nFull-time cat dad. 😸","twitter_username":null,"public_repos":443,"public_gists":28,"followers":28,"following":30,"created_at":"2017-10-06T17:04:10Z","updated_at":"2026-03-15T16:57:57Z"},"id":"49bf7a629766e754d293933de241eabc","created_at":"2024-08-20T14:19:38Z","updated_at":"2024-08-20T14:19:38Z"}],"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":"1b17baa35f75336a8d9f4c8292b1d1ab850f3d86","committed_at":"2016-02-09T01:59:48Z","change_status":{"total":1,"additions":1,"deletions":0},"url":"https://api.github.com/gists/7555321/1b17baa35f75336a8d9f4c8292b1d1ab850f3d86"},{"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":"e04040f80ea38b4d02a429c6affd77d84924c51f","committed_at":"2015-10-31T02:01:32Z","change_status":{"total":2,"additions":1,"deletions":1},"url":"https://api.github.com/gists/7555321/e04040f80ea38b4d02a429c6affd77d84924c51f"},{"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":"3417719fa3b616875a459ae3c922c6726c2ad29c","committed_at":"2015-06-11T19:11:49Z","change_status":{"total":2,"additions":1,"deletions":1},"url":"https://api.github.com/gists/7555321/3417719fa3b616875a459ae3c922c6726c2ad29c"},{"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":"e5cea2bebf537f12a4f2087e6486b29d72401f60","committed_at":"2013-11-20T00:45:45Z","change_status":{"total":0,"additions":0,"deletions":0},"url":"https://api.github.com/gists/7555321/e5cea2bebf537f12a4f2087e6486b29d72401f60"},{"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":"3f3809134f37714bac409d26471808b217182503","committed_at":"2013-11-20T00:37:49Z","change_status":{"total":130,"additions":130,"deletions":0},"url":"https://api.github.com/gists/7555321/3f3809134f37714bac409d26471808b217182503"}],"truncated":false}