{"url":"https://api.github.com/gists/1153292","forks_url":"https://api.github.com/gists/1153292/forks","commits_url":"https://api.github.com/gists/1153292/commits","id":"1153292","node_id":"MDQ6R2lzdDExNTMyOTI=","git_pull_url":"https://gist.github.com/1153292.git","git_push_url":"https://gist.github.com/1153292.git","html_url":"https://gist.github.com/mbostock/1153292","files":{".block":{"filename":".block","type":"text/plain","language":null,"raw_url":"https://gist.githubusercontent.com/mbostock/1153292/raw/6e817430ff6c11f499f207450ec7e7caaed47215/.block","size":82,"truncated":false,"content":"license: gpl-3.0\nredirect: https://observablehq.com/@mbostock/mobile-patent-suits\n","encoding":"utf-8"},"README.md":{"filename":"README.md","type":"text/markdown","language":"Markdown","raw_url":"https://gist.githubusercontent.com/mbostock/1153292/raw/388909d0bcf4efdcfb2737328951a8af1c7dd6c3/README.md","size":758,"truncated":false,"content":"**Click to drag nodes.** Dashed links are resolved suits; green links are licensing.\n\nThomson Reuters published a rather [abysmal infographic](http://blog.thomsonreuters.com/index.php/mobile-patent-suits-graphic-of-the-day/) showing the \"bowl of spaghetti\" that is current flurry of patent-related suits in the mobile communications industry. So, inspired by [a comment](https://twitter.com/jfire/status/104008561436270593) by John Firebaugh, I remade the visualization to better convey the network. That company in the center? Yeah, it's the [world's largest](http://www.businessweek.com/news/2011-08-09/apple-briefly-passes-exxon-as-world-s-largest-company.html), so little wonder it has the most incoming suits.\n\nImplemented in [D3.js](http://d3js.org/).\n","encoding":"utf-8"},"index.html":{"filename":"index.html","type":"text/html","language":"HTML","raw_url":"https://gist.githubusercontent.com/mbostock/1153292/raw/b372d3f0bc561e9eecf006b55a7481aa13be2d10/index.html","size":4232,"truncated":false,"content":"<!DOCTYPE html>\n<meta charset=\"utf-8\">\n<style>\n\n.link {\n  fill: none;\n  stroke: #666;\n  stroke-width: 1.5px;\n}\n\n#licensing {\n  fill: green;\n}\n\n.link.licensing {\n  stroke: green;\n}\n\n.link.resolved {\n  stroke-dasharray: 0,2 1;\n}\n\ncircle {\n  fill: #ccc;\n  stroke: #333;\n  stroke-width: 1.5px;\n}\n\ntext {\n  font: 10px sans-serif;\n  pointer-events: none;\n  text-shadow: 0 1px 0 #fff, 1px 0 0 #fff, 0 -1px 0 #fff, -1px 0 0 #fff;\n}\n\n</style>\n<body>\n<script src=\"//d3js.org/d3.v3.min.js\"></script>\n<script>\n\n// http://blog.thomsonreuters.com/index.php/mobile-patent-suits-graphic-of-the-day/\nvar links = [\n  {source: \"Microsoft\", target: \"Amazon\", type: \"licensing\"},\n  {source: \"Microsoft\", target: \"HTC\", type: \"licensing\"},\n  {source: \"Samsung\", target: \"Apple\", type: \"suit\"},\n  {source: \"Motorola\", target: \"Apple\", type: \"suit\"},\n  {source: \"Nokia\", target: \"Apple\", type: \"resolved\"},\n  {source: \"HTC\", target: \"Apple\", type: \"suit\"},\n  {source: \"Kodak\", target: \"Apple\", type: \"suit\"},\n  {source: \"Microsoft\", target: \"Barnes & Noble\", type: \"suit\"},\n  {source: \"Microsoft\", target: \"Foxconn\", type: \"suit\"},\n  {source: \"Oracle\", target: \"Google\", type: \"suit\"},\n  {source: \"Apple\", target: \"HTC\", type: \"suit\"},\n  {source: \"Microsoft\", target: \"Inventec\", type: \"suit\"},\n  {source: \"Samsung\", target: \"Kodak\", type: \"resolved\"},\n  {source: \"LG\", target: \"Kodak\", type: \"resolved\"},\n  {source: \"RIM\", target: \"Kodak\", type: \"suit\"},\n  {source: \"Sony\", target: \"LG\", type: \"suit\"},\n  {source: \"Kodak\", target: \"LG\", type: \"resolved\"},\n  {source: \"Apple\", target: \"Nokia\", type: \"resolved\"},\n  {source: \"Qualcomm\", target: \"Nokia\", type: \"resolved\"},\n  {source: \"Apple\", target: \"Motorola\", type: \"suit\"},\n  {source: \"Microsoft\", target: \"Motorola\", type: \"suit\"},\n  {source: \"Motorola\", target: \"Microsoft\", type: \"suit\"},\n  {source: \"Huawei\", target: \"ZTE\", type: \"suit\"},\n  {source: \"Ericsson\", target: \"ZTE\", type: \"suit\"},\n  {source: \"Kodak\", target: \"Samsung\", type: \"resolved\"},\n  {source: \"Apple\", target: \"Samsung\", type: \"suit\"},\n  {source: \"Kodak\", target: \"RIM\", type: \"suit\"},\n  {source: \"Nokia\", target: \"Qualcomm\", type: \"suit\"}\n];\n\nvar nodes = {};\n\n// Compute the distinct nodes from the links.\nlinks.forEach(function(link) {\n  link.source = nodes[link.source] || (nodes[link.source] = {name: link.source});\n  link.target = nodes[link.target] || (nodes[link.target] = {name: link.target});\n});\n\nvar width = 960,\n    height = 500;\n\nvar force = d3.layout.force()\n    .nodes(d3.values(nodes))\n    .links(links)\n    .size([width, height])\n    .linkDistance(60)\n    .charge(-300)\n    .on(\"tick\", tick)\n    .start();\n\nvar svg = d3.select(\"body\").append(\"svg\")\n    .attr(\"width\", width)\n    .attr(\"height\", height);\n\n// Per-type markers, as they don't inherit styles.\nsvg.append(\"defs\").selectAll(\"marker\")\n    .data([\"suit\", \"licensing\", \"resolved\"])\n  .enter().append(\"marker\")\n    .attr(\"id\", function(d) { return d; })\n    .attr(\"viewBox\", \"0 -5 10 10\")\n    .attr(\"refX\", 15)\n    .attr(\"refY\", -1.5)\n    .attr(\"markerWidth\", 6)\n    .attr(\"markerHeight\", 6)\n    .attr(\"orient\", \"auto\")\n  .append(\"path\")\n    .attr(\"d\", \"M0,-5L10,0L0,5\");\n\nvar path = svg.append(\"g\").selectAll(\"path\")\n    .data(force.links())\n  .enter().append(\"path\")\n    .attr(\"class\", function(d) { return \"link \" + d.type; })\n    .attr(\"marker-end\", function(d) { return \"url(#\" + d.type + \")\"; });\n\nvar circle = svg.append(\"g\").selectAll(\"circle\")\n    .data(force.nodes())\n  .enter().append(\"circle\")\n    .attr(\"r\", 6)\n    .call(force.drag);\n\nvar text = svg.append(\"g\").selectAll(\"text\")\n    .data(force.nodes())\n  .enter().append(\"text\")\n    .attr(\"x\", 8)\n    .attr(\"y\", \".31em\")\n    .text(function(d) { return d.name; });\n\n// Use elliptical arc path segments to doubly-encode directionality.\nfunction tick() {\n  path.attr(\"d\", linkArc);\n  circle.attr(\"transform\", transform);\n  text.attr(\"transform\", transform);\n}\n\nfunction linkArc(d) {\n  var dx = d.target.x - d.source.x,\n      dy = d.target.y - d.source.y,\n      dr = Math.sqrt(dx * dx + dy * dy);\n  return \"M\" + d.source.x + \",\" + d.source.y + \"A\" + dr + \",\" + dr + \" 0 0,1 \" + d.target.x + \",\" + d.target.y;\n}\n\nfunction transform(d) {\n  return \"translate(\" + d.x + \",\" + d.y + \")\";\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/1153292/raw/698996ea52cd7a26858b873ab8cfe14050af3872/thumbnail.png","size":6141,"truncated":false,"content":"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\nt8CLUDioXHcHrGbpBhSLmUOwh5EimihhstSusrJSTxjgYv/1QDFO5IweJpc2\nbNig42pOUJg/fx42b/4inK5RT4HrndfagVoQi5kTMGnDGT0TkRxhfEd3lkLI\nFWgx2WrGxurMNguEoy1podkrKrW1kvzJOZgE4siO7FmwN+I+cko6x0jm0ped\n/xdHkmQKHzJwaYf3y4yg2y9MuTReAYvHs+tWb9R9pDvK7Qlyyk36YGPd7Enx\nhBVCvJ9dK8LtRYQ5hgs6UbD/8kZmyN4s6BXwduVFgzW5LHDIjNoURJi5cUKU\ny3llremNwNI4Cv3Kzo9cESenuLOgIRtufMTiBLaNSfG7CPNjC7O8bN3KRViX\ny4vH+++/f9kF6U9/+pMefZk98V0QYd42mEU1T/A6HoXJ6pvs7pFcgm1pXCph\ni1rG7eau1Vw+YrUQl3tYLRQMS1/nLcsDSFb2cu6//37dH8kpdBMJW7XYXsbK\nm1yGFpIxJjO0rDzidgwDfX6Ul5YiaXCgtqIadkcS7We6YIolkXbbYTZZEU8E\nMRgIwW4CUhYn1qxeBZmYOW6kwOBK8fCLyE4QEo3FYbNaMLqd5eielgZ+3cbx\njWMNLl1GtmSx+yNXyYwzYcaWngMLJFLxCPp7/OgaTsB/5gyMDqDjdDdmVE9H\nIB1DOGlETaF6XaQPQxGenhhCy1fAZRGHTCzmDcJ+yb/85S/6ixgODqOouBiR\nQGx00kAyAZPdAUMqgZFUDH5/ACvvXIaaqpLreg+uH7KyiAkmipP1q2yazp5m\nkCuwxpfDv7iVPC8oM2dMVxYxDLfLpoRnREpdpywmI+IpZTXTBhS4Pepn8tJF\nzGS1isUUi3njMHNK4VRWVWHfnt3Iz3Ohr7cfIzYrLGYTLFYzWt89AW/tbAQH\n+9QXN3n9V0GDQVcV0UXkqEnWwZpNZjS3NCAUM6CqvAxmY1rFclEU5Hvhcjrg\ndDluy/lgtjbToJ3BnZcvKQuxmLeeN998U2cn2TjNJQM2GXOiB62A0ZDGSeWG\nVlZOR57bpq3EePfq4TLEP//5T93WxZ7N/t4exBJxJK02FFjz4VJWubu/D+vu\n24iZtaXywUxBiynCvA1wat3zzz+vi9yZbFm5YjksdqdyleNweXzwWFLYc+g4\nlq5YBZddxoCIMIVbBhNNXNtk10lmlGVWNIqUCuKkmFyEKcIUBBGmIAgiTEEQ\nYQqCIMIUBBGmIAgiTEEQYQqCIMIUBEGEKQgiTEEQRJiCIMIUBEGEKQgiTEEQ\nRJiCIIgwBUGEKQiCCHNSwYHKHAvJvUPMsnuzIMK8/XDy3p///Gc9hKvY50PL\n3FkYCZswvXYaEtEgAsEQ3DYrYkgjHk8hLy8f3vw8OXEiTOFmwoHPhw4d0lsl\n7N2zB50XTqPIVweLw4hAbw/6RkaQisUQUQJ15Ffi4c/fh/raaXLiRJjCzYQb\n97z00kuoqanRG/h8av0nUVJcilOnT49ux5Aywu500bQilU4gmojDZDBgxowZ\nEzI1jztmc0vAuro6vUmtIMIUPuDcuXN6dGVDQ4PeCezD4FYFbW1tGB4expEj\nR3DvvffqbRzGw8mTJ/VQa5vdjoYZNYgk0phWW4dEJAqLhXuyGJBIpuGwWvVF\nYDgSQs30OjitEgffamHKGb8N0Fry9u/ArQoaGxuxdetWPP744xhRru6CBQu0\nOGfWzUCP3w+D0QyzIQ2b0408j3vMY3HqOy1laXkFulqPo384rETnRue7bUh6\n7Bju60JXVy+8pTUoKSlUxw3B5CnArAqZBn+rEYs5SeC+Ktz5+eWXX8bq1atx\nUlncKl8eIkYnPE4nAh2tyK+bi2VL5l/1Wu7Lyd27uHESXVla4VUqxq2vn0mP\nWW//EEsm1JeB+yfpO2Aym2E1K1fXaIJJBk+LxRTGuIIqN7O8vFxv58cNkLiR\n7LYdu+AursD6NXfDXFaKcDiCYCiEeCym40i6v7xxSYYWmpaW2zNw+3Zuz0BM\nH3wDlAzlJIvFFMYLN5Tdt28fFi9eojcn6uo8j7vXrUVPz0WkldWLKWvI+JCb\n73Ibd5/Pp3eMFiT5I9xC9zZjTQURpiAIIkxBEGEKgiDCFARBhCkIIkxBEESY\ngiDCFARBhCkIIkxBEESYgiCIMAVhUggzHo+3qV9K1C0u50MQbjsWdfP/nwAD\nANciWmErbCulAAAAAElFTkSuQmCC\n","encoding":"base64"}},"public":true,"created_at":"2011-08-18T04:26:38Z","updated_at":"2025-01-31T21:03:24Z","description":"Mobile Patent Suits","comments":3,"user":null,"comments_enabled":true,"comments_url":"https://api.github.com/gists/1153292/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/1174768","user":{"login":"mnutt","id":3705,"node_id":"MDQ6VXNlcjM3MDU=","avatar_url":"https://avatars.githubusercontent.com/u/3705?v=4","gravatar_id":"","url":"https://api.github.com/users/mnutt","html_url":"https://github.com/mnutt","followers_url":"https://api.github.com/users/mnutt/followers","following_url":"https://api.github.com/users/mnutt/following{/other_user}","gists_url":"https://api.github.com/users/mnutt/gists{/gist_id}","starred_url":"https://api.github.com/users/mnutt/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mnutt/subscriptions","organizations_url":"https://api.github.com/users/mnutt/orgs","repos_url":"https://api.github.com/users/mnutt/repos","events_url":"https://api.github.com/users/mnutt/events{/privacy}","received_events_url":"https://api.github.com/users/mnutt/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Michael Nutt","company":"Movable Ink","blog":"http://nuttnet.net","location":"New York City, NY","email":"michael@nuttnet.net","hireable":null,"bio":null,"twitter_username":null,"public_repos":218,"public_gists":82,"followers":290,"following":34,"created_at":"2008-03-24T21:39:07Z","updated_at":"2026-04-29T22:41:50Z"},"id":"1174768","created_at":"2011-08-27T00:26:20Z","updated_at":"2015-09-26T23:18:00Z"},{"url":"https://api.github.com/gists/1410046","user":{"login":"Dirtwright","id":1231370,"node_id":"MDQ6VXNlcjEyMzEzNzA=","avatar_url":"https://avatars.githubusercontent.com/u/1231370?v=4","gravatar_id":"","url":"https://api.github.com/users/Dirtwright","html_url":"https://github.com/Dirtwright","followers_url":"https://api.github.com/users/Dirtwright/followers","following_url":"https://api.github.com/users/Dirtwright/following{/other_user}","gists_url":"https://api.github.com/users/Dirtwright/gists{/gist_id}","starred_url":"https://api.github.com/users/Dirtwright/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Dirtwright/subscriptions","organizations_url":"https://api.github.com/users/Dirtwright/orgs","repos_url":"https://api.github.com/users/Dirtwright/repos","events_url":"https://api.github.com/users/Dirtwright/events{/privacy}","received_events_url":"https://api.github.com/users/Dirtwright/received_events","type":"User","user_view_type":"public","site_admin":false,"name":null,"company":null,"blog":"","location":null,"email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":2,"public_gists":1,"followers":0,"following":0,"created_at":"2011-11-30T17:25:16Z","updated_at":"2015-04-07T15:17:32Z"},"id":"1410046","created_at":"2011-11-30T18:01:16Z","updated_at":"2015-09-28T08:07:57Z"},{"url":"https://api.github.com/gists/2226372","user":{"login":"reconbot","id":25966,"node_id":"MDQ6VXNlcjI1OTY2","avatar_url":"https://avatars.githubusercontent.com/u/25966?v=4","gravatar_id":"","url":"https://api.github.com/users/reconbot","html_url":"https://github.com/reconbot","followers_url":"https://api.github.com/users/reconbot/followers","following_url":"https://api.github.com/users/reconbot/following{/other_user}","gists_url":"https://api.github.com/users/reconbot/gists{/gist_id}","starred_url":"https://api.github.com/users/reconbot/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/reconbot/subscriptions","organizations_url":"https://api.github.com/users/reconbot/orgs","repos_url":"https://api.github.com/users/reconbot/repos","events_url":"https://api.github.com/users/reconbot/events{/privacy}","received_events_url":"https://api.github.com/users/reconbot/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Francis Gulotta","company":"@nhc-eng","blog":"https://www.roborooter.com","location":"New York","email":null,"hireable":null,"bio":"Maintainer of @node-serialport, Open source 🐛🧲, formerly ran MacCloud at @github and @azure no longer the reason why your builds are slow.","twitter_username":null,"public_repos":292,"public_gists":95,"followers":477,"following":91,"created_at":"2008-09-23T20:41:38Z","updated_at":"2026-04-24T21:16:45Z"},"id":"2226372","created_at":"2012-03-28T13:52:38Z","updated_at":"2015-10-02T10:17:59Z"},{"url":"https://api.github.com/gists/2246502","user":{"login":"tayf","id":1587699,"node_id":"MDQ6VXNlcjE1ODc2OTk=","avatar_url":"https://avatars.githubusercontent.com/u/1587699?v=4","gravatar_id":"","url":"https://api.github.com/users/tayf","html_url":"https://github.com/tayf","followers_url":"https://api.github.com/users/tayf/followers","following_url":"https://api.github.com/users/tayf/following{/other_user}","gists_url":"https://api.github.com/users/tayf/gists{/gist_id}","starred_url":"https://api.github.com/users/tayf/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tayf/subscriptions","organizations_url":"https://api.github.com/users/tayf/orgs","repos_url":"https://api.github.com/users/tayf/repos","events_url":"https://api.github.com/users/tayf/events{/privacy}","received_events_url":"https://api.github.com/users/tayf/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Tayfun Ozturkmen","company":"Ignician","blog":"www.ignician.net","location":"Brisbane, Australia","email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":4,"public_gists":2,"followers":5,"following":0,"created_at":"2012-03-29T16:19:56Z","updated_at":"2019-10-03T11:06:15Z"},"id":"2246502","created_at":"2012-03-30T04:32:46Z","updated_at":"2015-10-02T12:57:54Z"},{"url":"https://api.github.com/gists/2402666","user":{"login":"sagemintblue","id":440162,"node_id":"MDQ6VXNlcjQ0MDE2Mg==","avatar_url":"https://avatars.githubusercontent.com/u/440162?v=4","gravatar_id":"","url":"https://api.github.com/users/sagemintblue","html_url":"https://github.com/sagemintblue","followers_url":"https://api.github.com/users/sagemintblue/followers","following_url":"https://api.github.com/users/sagemintblue/following{/other_user}","gists_url":"https://api.github.com/users/sagemintblue/gists{/gist_id}","starred_url":"https://api.github.com/users/sagemintblue/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/sagemintblue/subscriptions","organizations_url":"https://api.github.com/users/sagemintblue/orgs","repos_url":"https://api.github.com/users/sagemintblue/repos","events_url":"https://api.github.com/users/sagemintblue/events{/privacy}","received_events_url":"https://api.github.com/users/sagemintblue/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Andy Schlaikjer","company":null,"blog":"","location":"San Francisco, CA","email":"andrew.schlaikjer@gmail.com","hireable":null,"bio":null,"twitter_username":null,"public_repos":22,"public_gists":3,"followers":0,"following":0,"created_at":"2010-10-15T01:33:42Z","updated_at":"2026-05-04T06:27:02Z"},"id":"2402666","created_at":"2012-04-17T01:01:02Z","updated_at":"2015-10-03T05:48:08Z"},{"url":"https://api.github.com/gists/2585129","user":{"login":"pajp","id":68399,"node_id":"MDQ6VXNlcjY4Mzk5","avatar_url":"https://avatars.githubusercontent.com/u/68399?v=4","gravatar_id":"","url":"https://api.github.com/users/pajp","html_url":"https://github.com/pajp","followers_url":"https://api.github.com/users/pajp/followers","following_url":"https://api.github.com/users/pajp/following{/other_user}","gists_url":"https://api.github.com/users/pajp/gists{/gist_id}","starred_url":"https://api.github.com/users/pajp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/pajp/subscriptions","organizations_url":"https://api.github.com/users/pajp/orgs","repos_url":"https://api.github.com/users/pajp/repos","events_url":"https://api.github.com/users/pajp/events{/privacy}","received_events_url":"https://api.github.com/users/pajp/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Rasmus Sten","company":null,"blog":"https://twitter.com/pajp","location":"Helsinki, Finland","email":"github@dll.nu","hireable":true,"bio":null,"twitter_username":null,"public_repos":40,"public_gists":20,"followers":46,"following":15,"created_at":"2009-03-29T18:13:06Z","updated_at":"2025-10-20T17:05:35Z"},"id":"2585129","created_at":"2012-05-03T11:38:12Z","updated_at":"2015-10-04T05:27:53Z"},{"url":"https://api.github.com/gists/2706022","user":{"login":"mbostock","id":230541,"node_id":"MDQ6VXNlcjIzMDU0MQ==","avatar_url":"https://avatars.githubusercontent.com/u/230541?v=4","gravatar_id":"","url":"https://api.github.com/users/mbostock","html_url":"https://github.com/mbostock","followers_url":"https://api.github.com/users/mbostock/followers","following_url":"https://api.github.com/users/mbostock/following{/other_user}","gists_url":"https://api.github.com/users/mbostock/gists{/gist_id}","starred_url":"https://api.github.com/users/mbostock/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mbostock/subscriptions","organizations_url":"https://api.github.com/users/mbostock/orgs","repos_url":"https://api.github.com/users/mbostock/repos","events_url":"https://api.github.com/users/mbostock/events{/privacy}","received_events_url":"https://api.github.com/users/mbostock/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Mike Bostock","company":"@observablehq ","blog":"https://observablehq.com/@mbostock","location":"San Francisco, CA","email":"mike@ocks.org","hireable":null,"bio":"Building a better computational medium. Co-founder @observablehq. Creator @d3. Former @nytgraphics. Pronounced BOSS-tock.","twitter_username":"mbostock","public_repos":88,"public_gists":1043,"followers":23378,"following":0,"created_at":"2010-03-25T22:02:56Z","updated_at":"2026-04-10T07:01:19Z"},"id":"2706022","created_at":"2012-05-15T23:41:31Z","updated_at":"2020-02-11T15:58:41Z"},{"url":"https://api.github.com/gists/2873404","user":{"login":"micahscopes","id":389782,"node_id":"MDQ6VXNlcjM4OTc4Mg==","avatar_url":"https://avatars.githubusercontent.com/u/389782?v=4","gravatar_id":"","url":"https://api.github.com/users/micahscopes","html_url":"https://github.com/micahscopes","followers_url":"https://api.github.com/users/micahscopes/followers","following_url":"https://api.github.com/users/micahscopes/following{/other_user}","gists_url":"https://api.github.com/users/micahscopes/gists{/gist_id}","starred_url":"https://api.github.com/users/micahscopes/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/micahscopes/subscriptions","organizations_url":"https://api.github.com/users/micahscopes/orgs","repos_url":"https://api.github.com/users/micahscopes/repos","events_url":"https://api.github.com/users/micahscopes/events{/privacy}","received_events_url":"https://api.github.com/users/micahscopes/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Micah","company":null,"blog":"wondering.xyz","location":"Minneapolis","email":"micahscopes@gmail.com","hireable":true,"bio":"curious creative;\r\n\r\nworking on tools for learning, creative expression and play","twitter_username":null,"public_repos":287,"public_gists":25,"followers":138,"following":205,"created_at":"2010-09-06T19:48:12Z","updated_at":"2026-03-20T10:13:06Z"},"id":"2873404","created_at":"2012-06-05T07:51:16Z","updated_at":"2015-10-05T20:38:22Z"},{"url":"https://api.github.com/gists/2964065","user":{"login":"kr1sp1n","id":64247,"node_id":"MDQ6VXNlcjY0MjQ3","avatar_url":"https://avatars.githubusercontent.com/u/64247?v=4","gravatar_id":"","url":"https://api.github.com/users/kr1sp1n","html_url":"https://github.com/kr1sp1n","followers_url":"https://api.github.com/users/kr1sp1n/followers","following_url":"https://api.github.com/users/kr1sp1n/following{/other_user}","gists_url":"https://api.github.com/users/kr1sp1n/gists{/gist_id}","starred_url":"https://api.github.com/users/kr1sp1n/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/kr1sp1n/subscriptions","organizations_url":"https://api.github.com/users/kr1sp1n/orgs","repos_url":"https://api.github.com/users/kr1sp1n/repos","events_url":"https://api.github.com/users/kr1sp1n/events{/privacy}","received_events_url":"https://api.github.com/users/kr1sp1n/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Krispin Schulz","company":"dikom-bb.de","blog":"https://kr1sp1n.io/","location":"Cottbus, Germany","email":null,"hireable":true,"bio":"Life loving, bass playing, bit shifting monkeee.\r\nSSB: @CdbxtxeHwET1HRU5naALgGaX5Q7BdzpyTCf78ZgIaEM=.ed25519","twitter_username":"kr1sp1n","public_repos":214,"public_gists":34,"followers":158,"following":270,"created_at":"2009-03-17T12:39:14Z","updated_at":"2026-01-10T21:39:17Z"},"id":"2964065","created_at":"2012-06-21T05:41:07Z","updated_at":"2015-10-06T08:18:15Z"},{"url":"https://api.github.com/gists/3190677","user":{"login":"stev47","id":227427,"node_id":"MDQ6VXNlcjIyNzQyNw==","avatar_url":"https://avatars.githubusercontent.com/u/227427?v=4","gravatar_id":"","url":"https://api.github.com/users/stev47","html_url":"https://github.com/stev47","followers_url":"https://api.github.com/users/stev47/followers","following_url":"https://api.github.com/users/stev47/following{/other_user}","gists_url":"https://api.github.com/users/stev47/gists{/gist_id}","starred_url":"https://api.github.com/users/stev47/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/stev47/subscriptions","organizations_url":"https://api.github.com/users/stev47/orgs","repos_url":"https://api.github.com/users/stev47/repos","events_url":"https://api.github.com/users/stev47/events{/privacy}","received_events_url":"https://api.github.com/users/stev47/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Stephan Hilb","company":null,"blog":"","location":null,"email":"stephan@ecshi.net","hireable":null,"bio":"mathematics, computer science","twitter_username":null,"public_repos":50,"public_gists":3,"followers":21,"following":0,"created_at":"2010-03-21T18:56:13Z","updated_at":"2026-03-08T10:38:11Z"},"id":"3190677","created_at":"2012-07-27T22:00:50Z","updated_at":"2015-10-07T15:58:10Z"},{"url":"https://api.github.com/gists/3784067","user":{"login":"yaronn","id":1359037,"node_id":"MDQ6VXNlcjEzNTkwMzc=","avatar_url":"https://avatars.githubusercontent.com/u/1359037?v=4","gravatar_id":"","url":"https://api.github.com/users/yaronn","html_url":"https://github.com/yaronn","followers_url":"https://api.github.com/users/yaronn/followers","following_url":"https://api.github.com/users/yaronn/following{/other_user}","gists_url":"https://api.github.com/users/yaronn/gists{/gist_id}","starred_url":"https://api.github.com/users/yaronn/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/yaronn/subscriptions","organizations_url":"https://api.github.com/users/yaronn/orgs","repos_url":"https://api.github.com/users/yaronn/repos","events_url":"https://api.github.com/users/yaronn/events{/privacy}","received_events_url":"https://api.github.com/users/yaronn/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Yaron Naveh","company":null,"blog":"https://twitter.com/YaronNaveh","location":null,"email":"yaronn01@gmail.com","hireable":null,"bio":null,"twitter_username":null,"public_repos":42,"public_gists":84,"followers":412,"following":5,"created_at":"2012-01-20T16:29:33Z","updated_at":"2026-04-20T05:58:32Z"},"id":"3784067","created_at":"2012-09-25T19:55:37Z","updated_at":"2015-10-11T01:48:23Z"},{"url":"https://api.github.com/gists/3785177","user":{"login":"yaronn","id":1359037,"node_id":"MDQ6VXNlcjEzNTkwMzc=","avatar_url":"https://avatars.githubusercontent.com/u/1359037?v=4","gravatar_id":"","url":"https://api.github.com/users/yaronn","html_url":"https://github.com/yaronn","followers_url":"https://api.github.com/users/yaronn/followers","following_url":"https://api.github.com/users/yaronn/following{/other_user}","gists_url":"https://api.github.com/users/yaronn/gists{/gist_id}","starred_url":"https://api.github.com/users/yaronn/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/yaronn/subscriptions","organizations_url":"https://api.github.com/users/yaronn/orgs","repos_url":"https://api.github.com/users/yaronn/repos","events_url":"https://api.github.com/users/yaronn/events{/privacy}","received_events_url":"https://api.github.com/users/yaronn/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Yaron Naveh","company":null,"blog":"https://twitter.com/YaronNaveh","location":null,"email":"yaronn01@gmail.com","hireable":null,"bio":null,"twitter_username":null,"public_repos":42,"public_gists":84,"followers":412,"following":5,"created_at":"2012-01-20T16:29:33Z","updated_at":"2026-04-20T05:58:32Z"},"id":"3785177","created_at":"2012-09-25T23:55:29Z","updated_at":"2015-10-11T01:58:21Z"},{"url":"https://api.github.com/gists/3860692","user":{"login":"chanelm","id":214237,"node_id":"MDQ6VXNlcjIxNDIzNw==","avatar_url":"https://avatars.githubusercontent.com/u/214237?v=4","gravatar_id":"","url":"https://api.github.com/users/chanelm","html_url":"https://github.com/chanelm","followers_url":"https://api.github.com/users/chanelm/followers","following_url":"https://api.github.com/users/chanelm/following{/other_user}","gists_url":"https://api.github.com/users/chanelm/gists{/gist_id}","starred_url":"https://api.github.com/users/chanelm/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/chanelm/subscriptions","organizations_url":"https://api.github.com/users/chanelm/orgs","repos_url":"https://api.github.com/users/chanelm/repos","events_url":"https://api.github.com/users/chanelm/events{/privacy}","received_events_url":"https://api.github.com/users/chanelm/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Chanel","company":null,"blog":"http://cmunezero.com","location":null,"email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":6,"public_gists":1,"followers":10,"following":20,"created_at":"2010-03-02T21:51:33Z","updated_at":"2020-05-25T21:01:39Z"},"id":"3860692","created_at":"2012-10-09T18:54:24Z","updated_at":"2015-10-11T12:47:54Z"},{"url":"https://api.github.com/gists/3992437","user":{"login":"recurse","id":351191,"node_id":"MDQ6VXNlcjM1MTE5MQ==","avatar_url":"https://avatars.githubusercontent.com/u/351191?v=4","gravatar_id":"","url":"https://api.github.com/users/recurse","html_url":"https://github.com/recurse","followers_url":"https://api.github.com/users/recurse/followers","following_url":"https://api.github.com/users/recurse/following{/other_user}","gists_url":"https://api.github.com/users/recurse/gists{/gist_id}","starred_url":"https://api.github.com/users/recurse/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/recurse/subscriptions","organizations_url":"https://api.github.com/users/recurse/orgs","repos_url":"https://api.github.com/users/recurse/repos","events_url":"https://api.github.com/users/recurse/events{/privacy}","received_events_url":"https://api.github.com/users/recurse/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Andrae Muys","company":null,"blog":"http://etymon.blogspot.com","location":null,"email":null,"hireable":true,"bio":null,"twitter_username":null,"public_repos":29,"public_gists":3,"followers":6,"following":1,"created_at":"2010-08-02T02:45:43Z","updated_at":"2026-04-29T05:11:13Z"},"id":"3992437","created_at":"2012-11-01T08:15:37Z","updated_at":"2015-10-12T07:28:05Z"},{"url":"https://api.github.com/gists/4024075","user":{"login":"sebbacon","id":211271,"node_id":"MDQ6VXNlcjIxMTI3MQ==","avatar_url":"https://avatars.githubusercontent.com/u/211271?v=4","gravatar_id":"","url":"https://api.github.com/users/sebbacon","html_url":"https://github.com/sebbacon","followers_url":"https://api.github.com/users/sebbacon/followers","following_url":"https://api.github.com/users/sebbacon/following{/other_user}","gists_url":"https://api.github.com/users/sebbacon/gists{/gist_id}","starred_url":"https://api.github.com/users/sebbacon/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/sebbacon/subscriptions","organizations_url":"https://api.github.com/users/sebbacon/orgs","repos_url":"https://api.github.com/users/sebbacon/repos","events_url":"https://api.github.com/users/sebbacon/events{/privacy}","received_events_url":"https://api.github.com/users/sebbacon/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Seb Bacon","company":"University of Oxford","blog":"https://sebbacon.github.io/","location":"Stroud, Gloucestershire, UK","email":"seb.bacon@gmail.com","hireable":null,"bio":null,"twitter_username":null,"public_repos":128,"public_gists":132,"followers":58,"following":15,"created_at":"2010-02-26T08:50:44Z","updated_at":"2026-05-11T12:42:39Z"},"id":"4024075","created_at":"2012-11-06T11:14:20Z","updated_at":"2015-10-12T12:07:56Z"},{"url":"https://api.github.com/gists/4316393","user":{"login":"antimatter15","id":30054,"node_id":"MDQ6VXNlcjMwMDU0","avatar_url":"https://avatars.githubusercontent.com/u/30054?v=4","gravatar_id":"","url":"https://api.github.com/users/antimatter15","html_url":"https://github.com/antimatter15","followers_url":"https://api.github.com/users/antimatter15/followers","following_url":"https://api.github.com/users/antimatter15/following{/other_user}","gists_url":"https://api.github.com/users/antimatter15/gists{/gist_id}","starred_url":"https://api.github.com/users/antimatter15/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/antimatter15/subscriptions","organizations_url":"https://api.github.com/users/antimatter15/orgs","repos_url":"https://api.github.com/users/antimatter15/repos","events_url":"https://api.github.com/users/antimatter15/events{/privacy}","received_events_url":"https://api.github.com/users/antimatter15/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Kevin Kwok","company":null,"blog":"https://antimatter15.com","location":"San Francisco, CA","email":"antimatter15@gmail.com","hireable":null,"bio":null,"twitter_username":null,"public_repos":344,"public_gists":201,"followers":1816,"following":678,"created_at":"2008-10-21T01:24:27Z","updated_at":"2026-04-27T00:56:39Z"},"id":"4316393","created_at":"2012-12-17T07:16:07Z","updated_at":"2015-12-09T19:18:59Z"},{"url":"https://api.github.com/gists/4655971","user":{"login":"hastebrot","id":496255,"node_id":"MDQ6VXNlcjQ5NjI1NQ==","avatar_url":"https://avatars.githubusercontent.com/u/496255?v=4","gravatar_id":"","url":"https://api.github.com/users/hastebrot","html_url":"https://github.com/hastebrot","followers_url":"https://api.github.com/users/hastebrot/followers","following_url":"https://api.github.com/users/hastebrot/following{/other_user}","gists_url":"https://api.github.com/users/hastebrot/gists{/gist_id}","starred_url":"https://api.github.com/users/hastebrot/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/hastebrot/subscriptions","organizations_url":"https://api.github.com/users/hastebrot/orgs","repos_url":"https://api.github.com/users/hastebrot/repos","events_url":"https://api.github.com/users/hastebrot/events{/privacy}","received_events_url":"https://api.github.com/users/hastebrot/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Benjamin Gudehus","company":"Freiheit.com","blog":"","location":"Hamburg, Germany","email":"hastebrot@gmail.com","hireable":null,"bio":null,"twitter_username":null,"public_repos":315,"public_gists":88,"followers":95,"following":152,"created_at":"2010-11-25T10:18:10Z","updated_at":"2026-05-03T15:36:14Z"},"id":"4655971","created_at":"2013-01-28T14:35:14Z","updated_at":"2015-12-11T20:29:08Z"},{"url":"https://api.github.com/gists/5066507","user":{"login":"fauxstor","id":70149,"node_id":"MDQ6VXNlcjcwMTQ5","avatar_url":"https://avatars.githubusercontent.com/u/70149?v=4","gravatar_id":"","url":"https://api.github.com/users/fauxstor","html_url":"https://github.com/fauxstor","followers_url":"https://api.github.com/users/fauxstor/followers","following_url":"https://api.github.com/users/fauxstor/following{/other_user}","gists_url":"https://api.github.com/users/fauxstor/gists{/gist_id}","starred_url":"https://api.github.com/users/fauxstor/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fauxstor/subscriptions","organizations_url":"https://api.github.com/users/fauxstor/orgs","repos_url":"https://api.github.com/users/fauxstor/repos","events_url":"https://api.github.com/users/fauxstor/events{/privacy}","received_events_url":"https://api.github.com/users/fauxstor/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Justin Foster","company":null,"blog":"sandlot.baby","location":"San Francisco, CA / Bastrop, TX","email":"fauxstor@gmail.com","hireable":null,"bio":null,"twitter_username":null,"public_repos":29,"public_gists":5,"followers":13,"following":4,"created_at":"2009-04-03T15:31:01Z","updated_at":"2026-05-08T14:44:24Z"},"id":"5066507","created_at":"2013-03-01T18:03:37Z","updated_at":"2015-12-14T09:39:14Z"},{"url":"https://api.github.com/gists/5282629","user":{"login":"minikomi","id":364725,"node_id":"MDQ6VXNlcjM2NDcyNQ==","avatar_url":"https://avatars.githubusercontent.com/u/364725?v=4","gravatar_id":"","url":"https://api.github.com/users/minikomi","html_url":"https://github.com/minikomi","followers_url":"https://api.github.com/users/minikomi/followers","following_url":"https://api.github.com/users/minikomi/following{/other_user}","gists_url":"https://api.github.com/users/minikomi/gists{/gist_id}","starred_url":"https://api.github.com/users/minikomi/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/minikomi/subscriptions","organizations_url":"https://api.github.com/users/minikomi/orgs","repos_url":"https://api.github.com/users/minikomi/repos","events_url":"https://api.github.com/users/minikomi/events{/privacy}","received_events_url":"https://api.github.com/users/minikomi/received_events","type":"User","user_view_type":"public","site_admin":false,"name":null,"company":null,"blog":"","location":"Tokyo, Japan","email":"nerdfunk@gmail.com","hireable":true,"bio":"clojure, js, go, let's go\r\n","twitter_username":null,"public_repos":99,"public_gists":152,"followers":191,"following":7,"created_at":"2010-08-15T01:52:46Z","updated_at":"2026-02-05T20:52:50Z"},"id":"5282629","created_at":"2013-04-01T00:40:43Z","updated_at":"2015-12-15T15:29:29Z"},{"url":"https://api.github.com/gists/5648881","user":{"login":"SimpleWhat","id":4187226,"node_id":"MDQ6VXNlcjQxODcyMjY=","avatar_url":"https://avatars.githubusercontent.com/u/4187226?v=4","gravatar_id":"","url":"https://api.github.com/users/SimpleWhat","html_url":"https://github.com/SimpleWhat","followers_url":"https://api.github.com/users/SimpleWhat/followers","following_url":"https://api.github.com/users/SimpleWhat/following{/other_user}","gists_url":"https://api.github.com/users/SimpleWhat/gists{/gist_id}","starred_url":"https://api.github.com/users/SimpleWhat/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/SimpleWhat/subscriptions","organizations_url":"https://api.github.com/users/SimpleWhat/orgs","repos_url":"https://api.github.com/users/SimpleWhat/repos","events_url":"https://api.github.com/users/SimpleWhat/events{/privacy}","received_events_url":"https://api.github.com/users/SimpleWhat/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Simple","company":null,"blog":"","location":"Taiwan","email":"wack242001@gmail.com","hireable":null,"bio":null,"twitter_username":null,"public_repos":2,"public_gists":2,"followers":0,"following":0,"created_at":"2013-04-18T03:17:45Z","updated_at":"2025-09-29T06:57:54Z"},"id":"5648881","created_at":"2013-05-25T12:09:04Z","updated_at":"2015-12-17T17:49:30Z"},{"url":"https://api.github.com/gists/5750740","user":{"login":"mtjhrsk","id":3810592,"node_id":"MDQ6VXNlcjM4MTA1OTI=","avatar_url":"https://avatars.githubusercontent.com/u/3810592?v=4","gravatar_id":"","url":"https://api.github.com/users/mtjhrsk","html_url":"https://github.com/mtjhrsk","followers_url":"https://api.github.com/users/mtjhrsk/followers","following_url":"https://api.github.com/users/mtjhrsk/following{/other_user}","gists_url":"https://api.github.com/users/mtjhrsk/gists{/gist_id}","starred_url":"https://api.github.com/users/mtjhrsk/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mtjhrsk/subscriptions","organizations_url":"https://api.github.com/users/mtjhrsk/orgs","repos_url":"https://api.github.com/users/mtjhrsk/repos","events_url":"https://api.github.com/users/mtjhrsk/events{/privacy}","received_events_url":"https://api.github.com/users/mtjhrsk/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Matej Hruska","company":null,"blog":"","location":null,"email":null,"hireable":null,"bio":"Quant PoliSci PhD (framing, persuasion, experiments, whatnot), data and comms hack for hire. ","twitter_username":null,"public_repos":6,"public_gists":3,"followers":15,"following":103,"created_at":"2013-03-08T16:26:46Z","updated_at":"2026-02-25T15:01:38Z"},"id":"5750740","created_at":"2013-06-10T17:40:59Z","updated_at":"2015-12-18T07:59:03Z"},{"url":"https://api.github.com/gists/6264480","user":{"login":"nickholub","id":3101066,"node_id":"MDQ6VXNlcjMxMDEwNjY=","avatar_url":"https://avatars.githubusercontent.com/u/3101066?v=4","gravatar_id":"","url":"https://api.github.com/users/nickholub","html_url":"https://github.com/nickholub","followers_url":"https://api.github.com/users/nickholub/followers","following_url":"https://api.github.com/users/nickholub/following{/other_user}","gists_url":"https://api.github.com/users/nickholub/gists{/gist_id}","starred_url":"https://api.github.com/users/nickholub/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/nickholub/subscriptions","organizations_url":"https://api.github.com/users/nickholub/orgs","repos_url":"https://api.github.com/users/nickholub/repos","events_url":"https://api.github.com/users/nickholub/events{/privacy}","received_events_url":"https://api.github.com/users/nickholub/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Nick Holub","company":null,"blog":"http://www.linkedin.com/in/nikholub","location":"San Francisco Bay Area","email":"nikholub@gmail.com","hireable":null,"bio":null,"twitter_username":null,"public_repos":30,"public_gists":3,"followers":28,"following":5,"created_at":"2012-12-21T21:02:54Z","updated_at":"2026-03-09T19:47:02Z"},"id":"6264480","created_at":"2013-08-18T22:53:38Z","updated_at":"2015-12-21T06:29:09Z"},{"url":"https://api.github.com/gists/6264965","user":{"login":"nickholub","id":3101066,"node_id":"MDQ6VXNlcjMxMDEwNjY=","avatar_url":"https://avatars.githubusercontent.com/u/3101066?v=4","gravatar_id":"","url":"https://api.github.com/users/nickholub","html_url":"https://github.com/nickholub","followers_url":"https://api.github.com/users/nickholub/followers","following_url":"https://api.github.com/users/nickholub/following{/other_user}","gists_url":"https://api.github.com/users/nickholub/gists{/gist_id}","starred_url":"https://api.github.com/users/nickholub/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/nickholub/subscriptions","organizations_url":"https://api.github.com/users/nickholub/orgs","repos_url":"https://api.github.com/users/nickholub/repos","events_url":"https://api.github.com/users/nickholub/events{/privacy}","received_events_url":"https://api.github.com/users/nickholub/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Nick Holub","company":null,"blog":"http://www.linkedin.com/in/nikholub","location":"San Francisco Bay Area","email":"nikholub@gmail.com","hireable":null,"bio":null,"twitter_username":null,"public_repos":30,"public_gists":3,"followers":28,"following":5,"created_at":"2012-12-21T21:02:54Z","updated_at":"2026-03-09T19:47:02Z"},"id":"6264965","created_at":"2013-08-19T01:02:46Z","updated_at":"2015-12-21T06:29:18Z"},{"url":"https://api.github.com/gists/6269308","user":{"login":"mfolnovic","id":20919,"node_id":"MDQ6VXNlcjIwOTE5","avatar_url":"https://avatars.githubusercontent.com/u/20919?v=4","gravatar_id":"","url":"https://api.github.com/users/mfolnovic","html_url":"https://github.com/mfolnovic","followers_url":"https://api.github.com/users/mfolnovic/followers","following_url":"https://api.github.com/users/mfolnovic/following{/other_user}","gists_url":"https://api.github.com/users/mfolnovic/gists{/gist_id}","starred_url":"https://api.github.com/users/mfolnovic/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mfolnovic/subscriptions","organizations_url":"https://api.github.com/users/mfolnovic/orgs","repos_url":"https://api.github.com/users/mfolnovic/repos","events_url":"https://api.github.com/users/mfolnovic/events{/privacy}","received_events_url":"https://api.github.com/users/mfolnovic/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Matija Folnovic","company":null,"blog":"","location":"Zagreb, Croatia","email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":29,"public_gists":7,"followers":23,"following":7,"created_at":"2008-08-17T11:07:27Z","updated_at":"2026-05-08T16:04:54Z"},"id":"6269308","created_at":"2013-08-19T13:48:42Z","updated_at":"2015-12-21T07:09:05Z"},{"url":"https://api.github.com/gists/8389924","user":{"login":"JT5D","id":391299,"node_id":"MDQ6VXNlcjM5MTI5OQ==","avatar_url":"https://avatars.githubusercontent.com/u/391299?v=4","gravatar_id":"","url":"https://api.github.com/users/JT5D","html_url":"https://github.com/JT5D","followers_url":"https://api.github.com/users/JT5D/followers","following_url":"https://api.github.com/users/JT5D/following{/other_user}","gists_url":"https://api.github.com/users/JT5D/gists{/gist_id}","starred_url":"https://api.github.com/users/JT5D/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/JT5D/subscriptions","organizations_url":"https://api.github.com/users/JT5D/orgs","repos_url":"https://api.github.com/users/JT5D/repos","events_url":"https://api.github.com/users/JT5D/events{/privacy}","received_events_url":"https://api.github.com/users/JT5D/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"JT5D","company":"The IMC Lab + Gallery","blog":"http://TheIMCLab.com","location":"New York City","email":"jtunick@theimclab.com","hireable":true,"bio":"Metaversal monk making magic @imclab & @ZeroSpace-Studios ","twitter_username":"TheIMCLab","public_repos":305,"public_gists":3072,"followers":494,"following":8041,"created_at":"2010-09-07T23:08:04Z","updated_at":"2026-05-04T11:47:56Z"},"id":"8389924","created_at":"2014-01-12T20:18:26Z","updated_at":"2016-01-03T01:29:25Z"},{"url":"https://api.github.com/gists/8503752","user":{"login":"jpillora","id":633843,"node_id":"MDQ6VXNlcjYzMzg0Mw==","avatar_url":"https://avatars.githubusercontent.com/u/633843?v=4","gravatar_id":"","url":"https://api.github.com/users/jpillora","html_url":"https://github.com/jpillora","followers_url":"https://api.github.com/users/jpillora/followers","following_url":"https://api.github.com/users/jpillora/following{/other_user}","gists_url":"https://api.github.com/users/jpillora/gists{/gist_id}","starred_url":"https://api.github.com/users/jpillora/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jpillora/subscriptions","organizations_url":"https://api.github.com/users/jpillora/orgs","repos_url":"https://api.github.com/users/jpillora/repos","events_url":"https://api.github.com/users/jpillora/events{/privacy}","received_events_url":"https://api.github.com/users/jpillora/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Jaime Pillora","company":null,"blog":"https://jpillora.com","location":"Sydney, Australia","email":"dev@jpillora.com","hireable":null,"bio":null,"twitter_username":"jpillora","public_repos":287,"public_gists":82,"followers":1732,"following":89,"created_at":"2011-02-23T11:59:12Z","updated_at":"2026-04-29T11:53:27Z"},"id":"8503752","created_at":"2014-01-19T11:47:10Z","updated_at":"2016-01-03T18:39:17Z"},{"url":"https://api.github.com/gists/8852277","user":{"login":"empiimp","id":4268766,"node_id":"MDQ6VXNlcjQyNjg3NjY=","avatar_url":"https://avatars.githubusercontent.com/u/4268766?v=4","gravatar_id":"","url":"https://api.github.com/users/empiimp","html_url":"https://github.com/empiimp","followers_url":"https://api.github.com/users/empiimp/followers","following_url":"https://api.github.com/users/empiimp/following{/other_user}","gists_url":"https://api.github.com/users/empiimp/gists{/gist_id}","starred_url":"https://api.github.com/users/empiimp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/empiimp/subscriptions","organizations_url":"https://api.github.com/users/empiimp/orgs","repos_url":"https://api.github.com/users/empiimp/repos","events_url":"https://api.github.com/users/empiimp/events{/privacy}","received_events_url":"https://api.github.com/users/empiimp/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Paul Moran","company":null,"blog":"","location":null,"email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":6,"public_gists":8,"followers":4,"following":7,"created_at":"2013-04-26T21:51:49Z","updated_at":"2026-04-11T14:55:06Z"},"id":"8852277","created_at":"2014-02-06T20:53:23Z","updated_at":"2015-08-29T13:56:06Z"},{"url":"https://api.github.com/gists/a436585ee39fb5ea1c3a","user":{"login":"anarchivist","id":73732,"node_id":"MDQ6VXNlcjczNzMy","avatar_url":"https://avatars.githubusercontent.com/u/73732?v=4","gravatar_id":"","url":"https://api.github.com/users/anarchivist","html_url":"https://github.com/anarchivist","followers_url":"https://api.github.com/users/anarchivist/followers","following_url":"https://api.github.com/users/anarchivist/following{/other_user}","gists_url":"https://api.github.com/users/anarchivist/gists{/gist_id}","starred_url":"https://api.github.com/users/anarchivist/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/anarchivist/subscriptions","organizations_url":"https://api.github.com/users/anarchivist/orgs","repos_url":"https://api.github.com/users/anarchivist/repos","events_url":"https://api.github.com/users/anarchivist/events{/privacy}","received_events_url":"https://api.github.com/users/anarchivist/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"maría a. matienzo","company":"@BerkeleyLibrary","blog":"https://matienzo.org/","location":"Seattle, WA","email":null,"hireable":true,"bio":"Head of Application Development Services, UC Berkeley Library","twitter_username":null,"public_repos":170,"public_gists":235,"followers":438,"following":206,"created_at":"2009-04-14T17:17:28Z","updated_at":"2026-05-01T23:23:40Z"},"id":"a436585ee39fb5ea1c3a","created_at":"2014-05-28T14:54:05Z","updated_at":"2015-08-29T14:01:55Z"},{"url":"https://api.github.com/gists/0f1c1ddc03b132b5b91e","user":{"login":"hoschi","id":163128,"node_id":"MDQ6VXNlcjE2MzEyOA==","avatar_url":"https://avatars.githubusercontent.com/u/163128?v=4","gravatar_id":"","url":"https://api.github.com/users/hoschi","html_url":"https://github.com/hoschi","followers_url":"https://api.github.com/users/hoschi/followers","following_url":"https://api.github.com/users/hoschi/following{/other_user}","gists_url":"https://api.github.com/users/hoschi/gists{/gist_id}","starred_url":"https://api.github.com/users/hoschi/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/hoschi/subscriptions","organizations_url":"https://api.github.com/users/hoschi/orgs","repos_url":"https://api.github.com/users/hoschi/repos","events_url":"https://api.github.com/users/hoschi/events{/privacy}","received_events_url":"https://api.github.com/users/hoschi/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Stefan Gojan","company":null,"blog":"https://stefan-gojan.de","location":null,"email":"vollekannehoschi@gmail.com","hireable":null,"bio":null,"twitter_username":null,"public_repos":83,"public_gists":15,"followers":30,"following":12,"created_at":"2009-12-05T23:27:48Z","updated_at":"2026-04-20T08:36:23Z"},"id":"0f1c1ddc03b132b5b91e","created_at":"2014-07-08T15:33:26Z","updated_at":"2015-08-29T14:03:41Z"},{"url":"https://api.github.com/gists/0b8a730aa90a39214514","user":{"login":"jedahan","id":32407,"node_id":"MDQ6VXNlcjMyNDA3","avatar_url":"https://avatars.githubusercontent.com/u/32407?v=4","gravatar_id":"","url":"https://api.github.com/users/jedahan","html_url":"https://github.com/jedahan","followers_url":"https://api.github.com/users/jedahan/followers","following_url":"https://api.github.com/users/jedahan/following{/other_user}","gists_url":"https://api.github.com/users/jedahan/gists{/gist_id}","starred_url":"https://api.github.com/users/jedahan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jedahan/subscriptions","organizations_url":"https://api.github.com/users/jedahan/orgs","repos_url":"https://api.github.com/users/jedahan/repos","events_url":"https://api.github.com/users/jedahan/events{/privacy}","received_events_url":"https://api.github.com/users/jedahan/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Jonathan Dahan","company":" - stuck at home -","blog":"https://jedahan.com","location":"brooklyn","email":"github@jonathan.is","hireable":null,"bio":"http://jonathan.is","twitter_username":null,"public_repos":642,"public_gists":147,"followers":307,"following":372,"created_at":"2008-11-03T12:40:58Z","updated_at":"2026-05-13T19:56:27Z"},"id":"0b8a730aa90a39214514","created_at":"2014-07-21T20:30:38Z","updated_at":"2015-08-29T14:04:18Z"},{"url":"https://api.github.com/gists/251e5d8be58177c09cd5","user":{"login":"nwillems","id":172633,"node_id":"MDQ6VXNlcjE3MjYzMw==","avatar_url":"https://avatars.githubusercontent.com/u/172633?v=4","gravatar_id":"","url":"https://api.github.com/users/nwillems","html_url":"https://github.com/nwillems","followers_url":"https://api.github.com/users/nwillems/followers","following_url":"https://api.github.com/users/nwillems/following{/other_user}","gists_url":"https://api.github.com/users/nwillems/gists{/gist_id}","starred_url":"https://api.github.com/users/nwillems/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/nwillems/subscriptions","organizations_url":"https://api.github.com/users/nwillems/orgs","repos_url":"https://api.github.com/users/nwillems/repos","events_url":"https://api.github.com/users/nwillems/events{/privacy}","received_events_url":"https://api.github.com/users/nwillems/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Nicolai Willems","company":"Nuuday","blog":"http://nwillems.dk","location":"Copenhagen, Denmark","email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":86,"public_gists":19,"followers":16,"following":31,"created_at":"2009-12-27T17:20:44Z","updated_at":"2026-05-09T11:30:49Z"},"id":"251e5d8be58177c09cd5","created_at":"2015-01-05T22:43:30Z","updated_at":"2015-08-29T14:12:54Z"},{"url":"https://api.github.com/gists/8ba126bcea55ad41d4a6","user":{"login":"robjens","id":11848802,"node_id":"MDQ6VXNlcjExODQ4ODAy","avatar_url":"https://avatars.githubusercontent.com/u/11848802?v=4","gravatar_id":"","url":"https://api.github.com/users/robjens","html_url":"https://github.com/robjens","followers_url":"https://api.github.com/users/robjens/followers","following_url":"https://api.github.com/users/robjens/following{/other_user}","gists_url":"https://api.github.com/users/robjens/gists{/gist_id}","starred_url":"https://api.github.com/users/robjens/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robjens/subscriptions","organizations_url":"https://api.github.com/users/robjens/orgs","repos_url":"https://api.github.com/users/robjens/repos","events_url":"https://api.github.com/users/robjens/events{/privacy}","received_events_url":"https://api.github.com/users/robjens/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Rob J","company":null,"blog":"","location":"Netherlands","email":null,"hireable":null,"bio":"I like simple but powerful concepts. I appreciate quality tools and in general, the finer paradigms of life. Love using Clojure, ArchLinux & zsh","twitter_username":null,"public_repos":10,"public_gists":52,"followers":5,"following":7,"created_at":"2015-04-08T06:55:56Z","updated_at":"2020-03-14T13:52:40Z"},"id":"8ba126bcea55ad41d4a6","created_at":"2015-04-24T19:16:24Z","updated_at":"2015-08-29T14:19:52Z"},{"url":"https://api.github.com/gists/86db933eeb107e2c1528f088b6547924","user":{"login":"mattyb678","id":1524704,"node_id":"MDQ6VXNlcjE1MjQ3MDQ=","avatar_url":"https://avatars.githubusercontent.com/u/1524704?v=4","gravatar_id":"","url":"https://api.github.com/users/mattyb678","html_url":"https://github.com/mattyb678","followers_url":"https://api.github.com/users/mattyb678/followers","following_url":"https://api.github.com/users/mattyb678/following{/other_user}","gists_url":"https://api.github.com/users/mattyb678/gists{/gist_id}","starred_url":"https://api.github.com/users/mattyb678/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mattyb678/subscriptions","organizations_url":"https://api.github.com/users/mattyb678/orgs","repos_url":"https://api.github.com/users/mattyb678/repos","events_url":"https://api.github.com/users/mattyb678/events{/privacy}","received_events_url":"https://api.github.com/users/mattyb678/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Matt Berteaux","company":"@adobe","blog":"mattyb.xyz","location":"Madison, WI","email":"matt.berteaux@gmail.com","hireable":null,"bio":"Currently @adobe. I use Java for my day job, love to write Kotlin for fun. Previously @Ancestry","twitter_username":null,"public_repos":51,"public_gists":2,"followers":15,"following":10,"created_at":"2012-03-11T02:53:41Z","updated_at":"2026-01-04T01:43:10Z"},"id":"86db933eeb107e2c1528f088b6547924","created_at":"2016-05-12T16:37:28Z","updated_at":"2016-05-12T16:42:16Z"},{"url":"https://api.github.com/gists/42b2e18d1994d1f8859a4cb296035ae5","user":{"login":"nicktsui","id":15768272,"node_id":"MDQ6VXNlcjE1NzY4Mjcy","avatar_url":"https://avatars.githubusercontent.com/u/15768272?v=4","gravatar_id":"","url":"https://api.github.com/users/nicktsui","html_url":"https://github.com/nicktsui","followers_url":"https://api.github.com/users/nicktsui/followers","following_url":"https://api.github.com/users/nicktsui/following{/other_user}","gists_url":"https://api.github.com/users/nicktsui/gists{/gist_id}","starred_url":"https://api.github.com/users/nicktsui/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/nicktsui/subscriptions","organizations_url":"https://api.github.com/users/nicktsui/orgs","repos_url":"https://api.github.com/users/nicktsui/repos","events_url":"https://api.github.com/users/nicktsui/events{/privacy}","received_events_url":"https://api.github.com/users/nicktsui/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":1,"following":1,"created_at":"2015-11-10T06:54:07Z","updated_at":"2022-12-01T11:58:16Z"},"id":"42b2e18d1994d1f8859a4cb296035ae5","created_at":"2016-09-27T19:27:44Z","updated_at":"2016-09-27T19:27:45Z"},{"url":"https://api.github.com/gists/3b73e5d241284d2ae4e063f9a22f1644","user":{"login":"bcrisp","id":1762117,"node_id":"MDQ6VXNlcjE3NjIxMTc=","avatar_url":"https://avatars.githubusercontent.com/u/1762117?v=4","gravatar_id":"","url":"https://api.github.com/users/bcrisp","html_url":"https://github.com/bcrisp","followers_url":"https://api.github.com/users/bcrisp/followers","following_url":"https://api.github.com/users/bcrisp/following{/other_user}","gists_url":"https://api.github.com/users/bcrisp/gists{/gist_id}","starred_url":"https://api.github.com/users/bcrisp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bcrisp/subscriptions","organizations_url":"https://api.github.com/users/bcrisp/orgs","repos_url":"https://api.github.com/users/bcrisp/repos","events_url":"https://api.github.com/users/bcrisp/events{/privacy}","received_events_url":"https://api.github.com/users/bcrisp/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Brandon Crisp","company":null,"blog":"https://www.linkedin.com/in/brandoncrisp","location":null,"email":null,"hireable":true,"bio":null,"twitter_username":null,"public_repos":24,"public_gists":9,"followers":10,"following":9,"created_at":"2012-05-22T02:03:34Z","updated_at":"2024-10-07T01:48:31Z"},"id":"3b73e5d241284d2ae4e063f9a22f1644","created_at":"2017-01-26T22:50:18Z","updated_at":"2017-01-26T22:50:18Z"},{"url":"https://api.github.com/gists/5159c8d002f554b236ebb78e89402431","user":{"login":"elliottwilliams","id":910198,"node_id":"MDQ6VXNlcjkxMDE5OA==","avatar_url":"https://avatars.githubusercontent.com/u/910198?v=4","gravatar_id":"","url":"https://api.github.com/users/elliottwilliams","html_url":"https://github.com/elliottwilliams","followers_url":"https://api.github.com/users/elliottwilliams/followers","following_url":"https://api.github.com/users/elliottwilliams/following{/other_user}","gists_url":"https://api.github.com/users/elliottwilliams/gists{/gist_id}","starred_url":"https://api.github.com/users/elliottwilliams/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/elliottwilliams/subscriptions","organizations_url":"https://api.github.com/users/elliottwilliams/orgs","repos_url":"https://api.github.com/users/elliottwilliams/repos","events_url":"https://api.github.com/users/elliottwilliams/events{/privacy}","received_events_url":"https://api.github.com/users/elliottwilliams/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Elliott Williams","company":"Apple","blog":"","location":null,"email":null,"hireable":null,"bio":"they/them :)","twitter_username":"elliottwil","public_repos":71,"public_gists":36,"followers":98,"following":25,"created_at":"2011-07-12T12:59:44Z","updated_at":"2025-02-04T05:28:07Z"},"id":"5159c8d002f554b236ebb78e89402431","created_at":"2019-03-20T20:29:39Z","updated_at":"2019-03-20T20:29:39Z"},{"url":"https://api.github.com/gists/34dbc9e1d3ae04c5a331af1f978849f2","user":{"login":"andylolz","id":464193,"node_id":"MDQ6VXNlcjQ2NDE5Mw==","avatar_url":"https://avatars.githubusercontent.com/u/464193?v=4","gravatar_id":"","url":"https://api.github.com/users/andylolz","html_url":"https://github.com/andylolz","followers_url":"https://api.github.com/users/andylolz/followers","following_url":"https://api.github.com/users/andylolz/following{/other_user}","gists_url":"https://api.github.com/users/andylolz/gists{/gist_id}","starred_url":"https://api.github.com/users/andylolz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/andylolz/subscriptions","organizations_url":"https://api.github.com/users/andylolz/orgs","repos_url":"https://api.github.com/users/andylolz/repos","events_url":"https://api.github.com/users/andylolz/events{/privacy}","received_events_url":"https://api.github.com/users/andylolz/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Andy Lulham","company":null,"blog":"","location":"Sheffield, UK","email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":164,"public_gists":43,"followers":86,"following":5,"created_at":"2010-11-02T13:20:36Z","updated_at":"2026-05-03T11:28:18Z"},"id":"34dbc9e1d3ae04c5a331af1f978849f2","created_at":"2019-04-24T19:22:29Z","updated_at":"2023-11-08T14:21:42Z"},{"url":"https://api.github.com/gists/f8e9667c67d370a8c33a591ddd46cbba","user":{"login":"varjagg","id":2544247,"node_id":"MDQ6VXNlcjI1NDQyNDc=","avatar_url":"https://avatars.githubusercontent.com/u/2544247?v=4","gravatar_id":"","url":"https://api.github.com/users/varjagg","html_url":"https://github.com/varjagg","followers_url":"https://api.github.com/users/varjagg/followers","following_url":"https://api.github.com/users/varjagg/following{/other_user}","gists_url":"https://api.github.com/users/varjagg/gists{/gist_id}","starred_url":"https://api.github.com/users/varjagg/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/varjagg/subscriptions","organizations_url":"https://api.github.com/users/varjagg/orgs","repos_url":"https://api.github.com/users/varjagg/repos","events_url":"https://api.github.com/users/varjagg/events{/privacy}","received_events_url":"https://api.github.com/users/varjagg/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Eugene Zaikonnikov","company":"Norphonic","blog":"http://funcall.org/","location":"Bergen, Norway","email":null,"hireable":null,"bio":"Empty Queue Engineer","twitter_username":null,"public_repos":56,"public_gists":4,"followers":63,"following":16,"created_at":"2012-10-12T11:05:43Z","updated_at":"2026-05-10T13:10:03Z"},"id":"f8e9667c67d370a8c33a591ddd46cbba","created_at":"2020-07-09T21:29:41Z","updated_at":"2020-07-09T21:29:41Z"},{"url":"https://api.github.com/gists/904ff893398efd6ca4cfe9167f85271b","user":{"login":"gerd54","id":24532029,"node_id":"MDQ6VXNlcjI0NTMyMDI5","avatar_url":"https://avatars.githubusercontent.com/u/24532029?v=4","gravatar_id":"","url":"https://api.github.com/users/gerd54","html_url":"https://github.com/gerd54","followers_url":"https://api.github.com/users/gerd54/followers","following_url":"https://api.github.com/users/gerd54/following{/other_user}","gists_url":"https://api.github.com/users/gerd54/gists{/gist_id}","starred_url":"https://api.github.com/users/gerd54/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/gerd54/subscriptions","organizations_url":"https://api.github.com/users/gerd54/orgs","repos_url":"https://api.github.com/users/gerd54/repos","events_url":"https://api.github.com/users/gerd54/events{/privacy}","received_events_url":"https://api.github.com/users/gerd54/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Gerhard Etges","company":"privat","blog":"","location":"Germany","email":"info@etges.eu","hireable":null,"bio":null,"twitter_username":null,"public_repos":3,"public_gists":2,"followers":0,"following":4,"created_at":"2016-12-12T20:40:17Z","updated_at":"2025-12-23T11:09:31Z"},"id":"904ff893398efd6ca4cfe9167f85271b","created_at":"2023-02-01T09:49:59Z","updated_at":"2023-02-01T09:49:59Z"},{"url":"https://api.github.com/gists/e699f0c761be8326dc8c0dbe546fb081","user":{"login":"gerd54","id":24532029,"node_id":"MDQ6VXNlcjI0NTMyMDI5","avatar_url":"https://avatars.githubusercontent.com/u/24532029?v=4","gravatar_id":"","url":"https://api.github.com/users/gerd54","html_url":"https://github.com/gerd54","followers_url":"https://api.github.com/users/gerd54/followers","following_url":"https://api.github.com/users/gerd54/following{/other_user}","gists_url":"https://api.github.com/users/gerd54/gists{/gist_id}","starred_url":"https://api.github.com/users/gerd54/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/gerd54/subscriptions","organizations_url":"https://api.github.com/users/gerd54/orgs","repos_url":"https://api.github.com/users/gerd54/repos","events_url":"https://api.github.com/users/gerd54/events{/privacy}","received_events_url":"https://api.github.com/users/gerd54/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Gerhard Etges","company":"privat","blog":"","location":"Germany","email":"info@etges.eu","hireable":null,"bio":null,"twitter_username":null,"public_repos":3,"public_gists":2,"followers":0,"following":4,"created_at":"2016-12-12T20:40:17Z","updated_at":"2025-12-23T11:09:31Z"},"id":"e699f0c761be8326dc8c0dbe546fb081","created_at":"2023-02-01T09:50:01Z","updated_at":"2023-02-01T09:50:01Z"}],"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":"6f05bcdc16060b8d7f2a44874aec09de3ef2928d","committed_at":"2020-01-16T21:06:17Z","change_status":{"total":1,"additions":1,"deletions":0},"url":"https://api.github.com/gists/1153292/6f05bcdc16060b8d7f2a44874aec09de3ef2928d"},{"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":"d2033324abe2af0aa02a179086ae568de50b6784","committed_at":"2016-02-09T00:24:12Z","change_status":{"total":1,"additions":1,"deletions":0},"url":"https://api.github.com/gists/1153292/d2033324abe2af0aa02a179086ae568de50b6784"},{"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":"6fcabf8c11e5af591b22c0dd1571c48cd49b5918","committed_at":"2015-11-17T20:35:14Z","change_status":{"total":10,"additions":5,"deletions":5},"url":"https://api.github.com/gists/1153292/6fcabf8c11e5af591b22c0dd1571c48cd49b5918"},{"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":"0e29a347d182ccc652ca7eae49a3795f8e939ed3","committed_at":"2015-10-30T21:33:44Z","change_status":{"total":2,"additions":1,"deletions":1},"url":"https://api.github.com/gists/1153292/0e29a347d182ccc652ca7eae49a3795f8e939ed3"},{"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":"840d91dd2df7354fcb5428d47638430d0572568a","committed_at":"2015-06-11T19:41:50Z","change_status":{"total":2,"additions":1,"deletions":1},"url":"https://api.github.com/gists/1153292/840d91dd2df7354fcb5428d47638430d0572568a"},{"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":"5be5606e28a564f83f4ba686d3421f1028993904","committed_at":"2013-11-22T18:03:10Z","change_status":{"total":108,"additions":43,"deletions":65},"url":"https://api.github.com/gists/1153292/5be5606e28a564f83f4ba686d3421f1028993904"},{"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":"92f44815b76c42aaaaea9aa9e4c2f274280b18b9","committed_at":"2012-10-12T03:47:01Z","change_status":{"total":0,"additions":0,"deletions":0},"url":"https://api.github.com/gists/1153292/92f44815b76c42aaaaea9aa9e4c2f274280b18b9"},{"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":"e93aee51819c41bd3050a83ef178dd9ccfbff812","committed_at":"2011-08-18T04:39:17Z","change_status":{"total":2,"additions":1,"deletions":1},"url":"https://api.github.com/gists/1153292/e93aee51819c41bd3050a83ef178dd9ccfbff812"},{"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":"387c1034274dbfe30ba6715b2133440de06f2da6","committed_at":"2011-08-18T04:28:58Z","change_status":{"total":2,"additions":1,"deletions":1},"url":"https://api.github.com/gists/1153292/387c1034274dbfe30ba6715b2133440de06f2da6"},{"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":"82dcc2277d62622adf769372cfb6c3c6384d0921","committed_at":"2011-08-18T04:28:21Z","change_status":{"total":2,"additions":1,"deletions":1},"url":"https://api.github.com/gists/1153292/82dcc2277d62622adf769372cfb6c3c6384d0921"},{"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":"5e56761b383157ea8e6eb36b0b0e1c138193d2d2","committed_at":"2011-08-18T04:27:21Z","change_status":{},"url":"https://api.github.com/gists/1153292/5e56761b383157ea8e6eb36b0b0e1c138193d2d2"},{"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":"9d41f065923187f3de7cc90cb864d0b73b73c8e5","committed_at":"2011-08-18T04:26:50Z","change_status":{},"url":"https://api.github.com/gists/1153292/9d41f065923187f3de7cc90cb864d0b73b73c8e5"},{"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":"04b9ebb6c885b1d5a028a3c29cf75bae07b11f9b","committed_at":"2011-08-18T04:26:38Z","change_status":{},"url":"https://api.github.com/gists/1153292/04b9ebb6c885b1d5a028a3c29cf75bae07b11f9b"}],"truncated":false}