{"url":"https://api.github.com/gists/1642874","forks_url":"https://api.github.com/gists/1642874/forks","commits_url":"https://api.github.com/gists/1642874/commits","id":"1642874","node_id":"MDQ6R2lzdDE2NDI4NzQ=","git_pull_url":"https://gist.github.com/1642874.git","git_push_url":"https://gist.github.com/1642874.git","html_url":"https://gist.github.com/mbostock/1642874","files":{".block":{"filename":".block","type":"text/plain","language":null,"raw_url":"https://gist.githubusercontent.com/mbostock/1642874/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/1642874/raw/96c7386d868a150b86e879bf44ef7e65045194d8/README.md","size":1642,"truncated":false,"content":"This example is the second of three in the [Path Transitions tutorial](http://bost.ocks.org/mike/path/); see the [previous example](/mbostock/1643051) for context.\n\nThe desired pairing of numbers for path interpolation is like this:\n\n    M x0, y0 L x1, y1 L x2, y2 L x3, y3 L xR, y4\n       ↓   ↓    ↓   ↓    ↓   ↓    ↓   ↓\n    M xl, y0 L x0, y1 L x1, y2 L x2, y3 L x3, y4\n\nWhere `xl` is some negative value off the left side, and `xr` is some positive value off the right side. This way, the first point ⟨x0,y0⟩ is interpolated to ⟨xl,y0⟩; meaning, the x-coordinate is interpolated rather than the y-coordinate, and so the path appears to slide off to the left. Likewise, the incoming point ⟨xr,y4⟩ is interpolated to ⟨x3,y4⟩.\n\nWhile you could write a custom interpolator and use [*transition*.attrTween](https://github.com/d3/d3-transition#transition_attrTween) to achieve this, a much simpler solution is to **interpolate the transform attribute** rather than the path. This way, the shape of the path remains static while the it translates left during the transition.\n\nImmediately prior to the transition, the path is redrawn as follows:\n\n    M x0, y0 L x1, y1 L x2, y2 L x3, y3 L xr, y4\n\nThen, a transform transition is applied:\n\n    translate(0,0)\n              ↓\n    translate(xl,0)\n\nThis causes the path to slide left. A clip path is used so the path is not visible outside of the chart body.\n\nNote that for charts with spline interpolation, you’ll need to crop the visible part of the line by an extra point, so that the change in tangent is not visible; see the [next example](/mbostock/1642989).\n","encoding":"utf-8"},"index.html":{"filename":"index.html","type":"text/html","language":"HTML","raw_url":"https://gist.githubusercontent.com/mbostock/1642874/raw/f568d1da0989961c91233fbeb6a50f4e0cd51533/index.html","size":1796,"truncated":false,"content":"<!DOCTYPE html>\n<meta charset=\"utf-8\">\n<style>\n\n.line {\n  fill: none;\n  stroke: #000;\n  stroke-width: 1.5px;\n}\n\n</style>\n<svg width=\"960\" height=\"500\"></svg>\n<script src=\"//d3js.org/d3.v4.min.js\"></script>\n<script>\n\nvar n = 40,\n    random = d3.randomNormal(0, .2),\n    data = d3.range(n).map(random);\n\nvar svg = d3.select(\"svg\"),\n    margin = {top: 20, right: 20, bottom: 20, left: 40},\n    width = +svg.attr(\"width\") - margin.left - margin.right,\n    height = +svg.attr(\"height\") - margin.top - margin.bottom,\n    g = svg.append(\"g\").attr(\"transform\", \"translate(\" + margin.left + \",\" + margin.top + \")\");\n\nvar x = d3.scaleLinear()\n    .domain([0, n - 1])\n    .range([0, width]);\n\nvar y = d3.scaleLinear()\n    .domain([-1, 1])\n    .range([height, 0]);\n\nvar line = d3.line()\n    .x(function(d, i) { return x(i); })\n    .y(function(d, i) { return y(d); });\n\ng.append(\"defs\").append(\"clipPath\")\n    .attr(\"id\", \"clip\")\n  .append(\"rect\")\n    .attr(\"width\", width)\n    .attr(\"height\", height);\n\ng.append(\"g\")\n    .attr(\"class\", \"axis axis--x\")\n    .attr(\"transform\", \"translate(0,\" + y(0) + \")\")\n    .call(d3.axisBottom(x));\n\ng.append(\"g\")\n    .attr(\"class\", \"axis axis--y\")\n    .call(d3.axisLeft(y));\n\ng.append(\"g\")\n    .attr(\"clip-path\", \"url(#clip)\")\n  .append(\"path\")\n    .datum(data)\n    .attr(\"class\", \"line\")\n  .transition()\n    .duration(500)\n    .ease(d3.easeLinear)\n    .on(\"start\", tick);\n\nfunction tick() {\n\n  // Push a new data point onto the back.\n  data.push(random());\n\n  // Redraw the line.\n  d3.select(this)\n      .attr(\"d\", line)\n      .attr(\"transform\", null);\n\n  // Slide it to the left.\n  d3.active(this)\n      .attr(\"transform\", \"translate(\" + x(-1) + \",0)\")\n    .transition()\n      .on(\"start\", tick);\n\n  // Pop the old data point off the front.\n  data.shift();\n\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/1642874/raw/b3858c418cf20e1ceb408b1160cead8ad5b35f6f/thumbnail.png","size":6288,"truncated":false,"content":"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\nEY9Y/9wPvvD50tFGRrfkFU6TIsN19w/0S1d7n1QY7p8PRYweRMxM5Jf2MNCS\nvjOxD3MssXHjRtNi06wQZuN4OqAEw8J8++23Yx/1GQeEkYTOUZRm1Eq3I1ko\nlbCo03kRFGR65plnzHyXIybt71SNCp6DdAoHEbTtkHvgVRHB0nVSoySjsooq\nuf+RRyQ3J09WXr+cjNb430wz/AqSrwk5o/bH+nka5HSr/JKNcklSYGJpwcJ6\nP//881m/Hwvi5ZdfTvRdLXy+qOkG3oe2RCeY83ROQ3R7rnTHAsMTVjgiJ6Vx\nAK+dMWKav8izfpUT+iLWUQtxVC8/ctK2FjdpH0+g4yVsv2omgGVPd1N5VGMQ\n1UOgWLqdM0R0lsm+6EykVyjUYeveCJe0e3LCezoIpcqiuCEsoPyRmDs7ToJ6\nKuOGsxAz09cdK685UfPkbMHqL3W20eExo5ZKkhC4whoLq3Ei3U39oWIGBpCF\nhVJKyMrg8Z2ckoSfXIGwIZPAw1Cjm8hhrCLYa2LU7aURRKuwfcnjEbfddlto\nESxtYsJ+evss+Zd8k24PJOl3333XDEkeMXLTTAJjYJ1sQElAceUBw85OGXsn\nFPlgNpTrpMCazYToFivLhqgIPXxBUtx32Bg8CjjzJlNCgGL8gfyPFMkCKRJp\n03gLZccCaa96SBr2NLM4FlVx5cI6F4hSBCUOqy86nVLJlYJcXR6KsQRNEFY5\ng5QonRdYXdHEHBjoz+oLORUKOyjrWJuRUWgncn6ZNWJ2pZrkh2+/lbOnm2X7\n91+MvFHab++cQpFWLpWfP9J+CTEzWcO8YoiZav2z/e5iU4ucOVYv3Ze6pL6+\nzjzKYqK8bk4xsUAbn7VtjDLcldBQkhGDZf+hevEKub+0Qgqnl8jqNf8waEtL\nXq4RanTFfqO0QuEHxB/WFlvGUGQncl901ogJSmeV66goEgWdNZxawfY4LZW4\nhLIKxViAejh5JoV5LZUoMRXjBJRM2CqlpFRiKsYRKJHQ4pmN7jElpkKRBjj4\nK1P7ea8EaCOqYlzg8ccf10FQj6lQKDEVCkU6xBwa6JHdO3dIY2OzbNm2RRpb\nOnSEFIqxJmZD7SE5/MdhOVl7QnbW7JRz5xvNYyn37dunLXkKRYIYJf4sXrFG\nhvKmSdnsSplTPUtKyytlZsk080xUbclTKMaImJyMt3TZn8d4lJf9q2dR98gp\nFGMYyioUCiWmQqFQYioUSkyFQqHEVCiUmAqFQompUEx6Yg7JxYvN0tPbK83G\n9+4ePR1PoRgLjGowOHH0oOzed1SWLV4m32/fLHf8/UmZVzHV3F1+Jbx1S6GY\nkMSsWnCNnLuQkpLyclm3eo1UVpRKSUmhedanHgKtUCSHHINwvKDQ93XAvM+e\nF8lab/tSKBRZRauKPwrFOIQSU6FQYioUCiWmQqHEVCgUSkyFQompUCjGlJhW\nIwFvXtKeAoVibDCq86czlZLDp+pkfuU8OfHbb1K5YKVUVJZKY2OjSVTe/jsw\nMJB9a5Gbm+jhX3q/zIJ3kCTZKXYljCfjxdlavMiX8RtFzNy8PCkpLpaB/iFp\nbW2TOYtyJZVqk7bWVvMvFxQUmATNqqUwyF9TUyMrV66UgsJCybbbtu63atUq\nKTAGJtvLyX6/7B9yliP9/X3mG8HXrl2biFFlwTY1NUllZWUiZBkZT2O9TDHW\nZ7YNDi/XzcZ4shaOHDkiGzZskLlz53q35HFTXovGw5w7d958d+HMmcm87beh\nocF8wQyDnsj9Tp6S6qrKBO930rhfVSL3Yx7PnDkjCxcuTOSzQcaOjg7zDV5J\n4eSp01JVyfzlTejxPH/+T57NmDHDuyWPRQMpB3s75chv+6WtrTuRQR7obpf9\nu2uko3cwkfvt/mW/NDen5KetP0n/YPbDr5oDO+XcxYuy6cefE/l8O3ZskT0H\njsq2XbsTuV/Ntp/lfz/8RGr2H0rgboOy9YdNcnDfftm393D272ZEH1s2b5ZD\n+/fI1h17Mn59PKX1qvtAVXZ4aFBSLS3S3d2byMTCjdaOlDSnknk9Q1FRsbSl\nOuWScc8k8qLp06ZKf1+3tJy7IENZv92QXGptl6GeAUldTsKwDsiJUw2SW1gk\nrY2nE3DPg9LR2SmN585KZ0d3ArcbkPbONkn19Epj68Xshs39/f11xvcK48t1\nV3Su4TVbjYeYPqNUCozQNttraXh4yCBKu5TOLDWS7Oy+yJSrDxihF5awu6dP\nyspKDUOU3bxo0Lh+X89l6R8YMlKDmebnzeJoSqotJblTCPHypXRGcZbzvmFp\nMYw401Y4tcQwQkVZNnbDphYytahIco0wtqgwm/fLMdbGgLS2tUtB4RTjx3zz\nLQVDmbeuCA9N/yfAADBKNBMlmh1FAAAAAElFTkSuQmCC\n","encoding":"base64"}},"public":true,"created_at":"2012-01-19T21:33:21Z","updated_at":"2026-01-28T16:56:56Z","description":"Line Transition","comments":25,"user":null,"comments_enabled":true,"comments_url":"https://api.github.com/gists/1642874/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/1642989","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":23374,"following":0,"created_at":"2010-03-25T22:02:56Z","updated_at":"2026-04-10T07:01:19Z"},"id":"1642989","created_at":"2012-01-19T21:45:20Z","updated_at":"2022-01-26T14:32:36Z"},{"url":"https://api.github.com/gists/1643051","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":23374,"following":0,"created_at":"2010-03-25T22:02:56Z","updated_at":"2026-04-10T07:01:19Z"},"id":"1643051","created_at":"2012-01-19T21:51:30Z","updated_at":"2022-07-18T15:56:35Z"},{"url":"https://api.github.com/gists/1649256","user":{"login":"canimus","id":278303,"node_id":"MDQ6VXNlcjI3ODMwMw==","avatar_url":"https://avatars.githubusercontent.com/u/278303?v=4","gravatar_id":"","url":"https://api.github.com/users/canimus","html_url":"https://github.com/canimus","followers_url":"https://api.github.com/users/canimus/followers","following_url":"https://api.github.com/users/canimus/following{/other_user}","gists_url":"https://api.github.com/users/canimus/gists{/gist_id}","starred_url":"https://api.github.com/users/canimus/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/canimus/subscriptions","organizations_url":"https://api.github.com/users/canimus/orgs","repos_url":"https://api.github.com/users/canimus/repos","events_url":"https://api.github.com/users/canimus/events{/privacy}","received_events_url":"https://api.github.com/users/canimus/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Herminio Vazquez","company":"copado","blog":"copado.com","location":"Ljubljana, Slovenia","email":"canimus@gmail.com","hireable":null,"bio":null,"twitter_username":"canimus","public_repos":98,"public_gists":99,"followers":16,"following":0,"created_at":"2010-05-16T09:56:55Z","updated_at":"2026-04-13T17:04:48Z"},"id":"1649256","created_at":"2012-01-20T19:55:32Z","updated_at":"2015-09-29T18:48:00Z"},{"url":"https://api.github.com/gists/1655391","user":{"login":"pims","id":27320,"node_id":"MDQ6VXNlcjI3MzIw","avatar_url":"https://avatars.githubusercontent.com/u/27320?v=4","gravatar_id":"","url":"https://api.github.com/users/pims","html_url":"https://github.com/pims","followers_url":"https://api.github.com/users/pims/followers","following_url":"https://api.github.com/users/pims/following{/other_user}","gists_url":"https://api.github.com/users/pims/gists{/gist_id}","starred_url":"https://api.github.com/users/pims/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/pims/subscriptions","organizations_url":"https://api.github.com/users/pims/orgs","repos_url":"https://api.github.com/users/pims/repos","events_url":"https://api.github.com/users/pims/events{/privacy}","received_events_url":"https://api.github.com/users/pims/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Tim Bart","company":null,"blog":"https://blog.pims.me","location":"Oakland, CA","email":null,"hireable":true,"bio":"🧯","twitter_username":"pims","public_repos":72,"public_gists":42,"followers":84,"following":36,"created_at":"2008-10-02T20:18:53Z","updated_at":"2026-04-04T17:00:05Z"},"id":"1655391","created_at":"2012-01-22T03:54:40Z","updated_at":"2015-09-29T19:38:05Z"},{"url":"https://api.github.com/gists/2361528","user":{"login":"slojo404","id":924190,"node_id":"MDQ6VXNlcjkyNDE5MA==","avatar_url":"https://avatars.githubusercontent.com/u/924190?v=4","gravatar_id":"","url":"https://api.github.com/users/slojo404","html_url":"https://github.com/slojo404","followers_url":"https://api.github.com/users/slojo404/followers","following_url":"https://api.github.com/users/slojo404/following{/other_user}","gists_url":"https://api.github.com/users/slojo404/gists{/gist_id}","starred_url":"https://api.github.com/users/slojo404/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/slojo404/subscriptions","organizations_url":"https://api.github.com/users/slojo404/orgs","repos_url":"https://api.github.com/users/slojo404/repos","events_url":"https://api.github.com/users/slojo404/events{/privacy}","received_events_url":"https://api.github.com/users/slojo404/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":52,"public_gists":11,"followers":49,"following":279,"created_at":"2011-07-19T00:26:20Z","updated_at":"2025-08-23T12:55:08Z"},"id":"2361528","created_at":"2012-04-11T19:12:52Z","updated_at":"2015-10-03T01:18:15Z"},{"url":"https://api.github.com/gists/2501799","user":{"login":"wizjo","id":167792,"node_id":"MDQ6VXNlcjE2Nzc5Mg==","avatar_url":"https://avatars.githubusercontent.com/u/167792?v=4","gravatar_id":"","url":"https://api.github.com/users/wizjo","html_url":"https://github.com/wizjo","followers_url":"https://api.github.com/users/wizjo/followers","following_url":"https://api.github.com/users/wizjo/following{/other_user}","gists_url":"https://api.github.com/users/wizjo/gists{/gist_id}","starred_url":"https://api.github.com/users/wizjo/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/wizjo/subscriptions","organizations_url":"https://api.github.com/users/wizjo/orgs","repos_url":"https://api.github.com/users/wizjo/repos","events_url":"https://api.github.com/users/wizjo/events{/privacy}","received_events_url":"https://api.github.com/users/wizjo/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Jo Pu","company":null,"blog":"","location":"SF, USA","email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":6,"public_gists":14,"followers":25,"following":11,"created_at":"2009-12-15T07:48:20Z","updated_at":"2026-02-13T05:21:52Z"},"id":"2501799","created_at":"2012-04-26T18:39:52Z","updated_at":"2015-10-03T18:17:59Z"},{"url":"https://api.github.com/gists/3056952","user":{"login":"milroc","id":542959,"node_id":"MDQ6VXNlcjU0Mjk1OQ==","avatar_url":"https://avatars.githubusercontent.com/u/542959?v=4","gravatar_id":"","url":"https://api.github.com/users/milroc","html_url":"https://github.com/milroc","followers_url":"https://api.github.com/users/milroc/followers","following_url":"https://api.github.com/users/milroc/following{/other_user}","gists_url":"https://api.github.com/users/milroc/gists{/gist_id}","starred_url":"https://api.github.com/users/milroc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/milroc/subscriptions","organizations_url":"https://api.github.com/users/milroc/orgs","repos_url":"https://api.github.com/users/milroc/repos","events_url":"https://api.github.com/users/milroc/events{/privacy}","received_events_url":"https://api.github.com/users/milroc/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Miles McCrocklin","company":null,"blog":"https://twitter.com/Milr0c","location":"San Francisco","email":"miles.mccrocklin@gmail.com","hireable":null,"bio":null,"twitter_username":null,"public_repos":14,"public_gists":56,"followers":148,"following":60,"created_at":"2010-12-31T22:17:18Z","updated_at":"2026-03-30T05:32:25Z"},"id":"3056952","created_at":"2012-07-05T22:52:49Z","updated_at":"2019-10-23T20:09:49Z"},{"url":"https://api.github.com/gists/3958196","user":{"login":"achied","id":611216,"node_id":"MDQ6VXNlcjYxMTIxNg==","avatar_url":"https://avatars.githubusercontent.com/u/611216?v=4","gravatar_id":"","url":"https://api.github.com/users/achied","html_url":"https://github.com/achied","followers_url":"https://api.github.com/users/achied/followers","following_url":"https://api.github.com/users/achied/following{/other_user}","gists_url":"https://api.github.com/users/achied/gists{/gist_id}","starred_url":"https://api.github.com/users/achied/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/achied/subscriptions","organizations_url":"https://api.github.com/users/achied/orgs","repos_url":"https://api.github.com/users/achied/repos","events_url":"https://api.github.com/users/achied/events{/privacy}","received_events_url":"https://api.github.com/users/achied/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Eduardo Aceituno","company":null,"blog":"http://achied.github.com/","location":"Spain","email":"achied@gmail.com","hireable":true,"bio":null,"twitter_username":null,"public_repos":59,"public_gists":11,"followers":52,"following":58,"created_at":"2011-02-10T16:52:50Z","updated_at":"2026-02-11T15:41:02Z"},"id":"3958196","created_at":"2012-10-26T10:59:57Z","updated_at":"2015-10-12T02:37:58Z"},{"url":"https://api.github.com/gists/4043931","user":{"login":"flavioespinoza","id":2214913,"node_id":"MDQ6VXNlcjIyMTQ5MTM=","avatar_url":"https://avatars.githubusercontent.com/u/2214913?v=4","gravatar_id":"","url":"https://api.github.com/users/flavioespinoza","html_url":"https://github.com/flavioespinoza","followers_url":"https://api.github.com/users/flavioespinoza/followers","following_url":"https://api.github.com/users/flavioespinoza/following{/other_user}","gists_url":"https://api.github.com/users/flavioespinoza/gists{/gist_id}","starred_url":"https://api.github.com/users/flavioespinoza/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/flavioespinoza/subscriptions","organizations_url":"https://api.github.com/users/flavioespinoza/orgs","repos_url":"https://api.github.com/users/flavioespinoza/repos","events_url":"https://api.github.com/users/flavioespinoza/events{/privacy}","received_events_url":"https://api.github.com/users/flavioespinoza/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Flavio Espinoza","company":null,"blog":"","location":"Salt Lake City","email":"flavio.espinoza@gmail.com","hireable":null,"bio":"To me the development process is a crucible. In it we burn away irrelevancies until we are left with a pure product – the truth, for all time.","twitter_username":"FlavioEspinoza","public_repos":37,"public_gists":37,"followers":17,"following":16,"created_at":"2012-08-25T00:55:42Z","updated_at":"2026-04-02T10:08:34Z"},"id":"4043931","created_at":"2012-11-09T05:39:37Z","updated_at":"2015-10-12T14:57:55Z"},{"url":"https://api.github.com/gists/7322593","user":{"login":"janoj","id":2572160,"node_id":"MDQ6VXNlcjI1NzIxNjA=","avatar_url":"https://avatars.githubusercontent.com/u/2572160?v=4","gravatar_id":"","url":"https://api.github.com/users/janoj","html_url":"https://github.com/janoj","followers_url":"https://api.github.com/users/janoj/followers","following_url":"https://api.github.com/users/janoj/following{/other_user}","gists_url":"https://api.github.com/users/janoj/gists{/gist_id}","starred_url":"https://api.github.com/users/janoj/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/janoj/subscriptions","organizations_url":"https://api.github.com/users/janoj/orgs","repos_url":"https://api.github.com/users/janoj/repos","events_url":"https://api.github.com/users/janoj/events{/privacy}","received_events_url":"https://api.github.com/users/janoj/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Jan Juhar","company":null,"blog":"","location":null,"email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":1,"public_gists":1,"followers":1,"following":0,"created_at":"2012-10-16T11:00:46Z","updated_at":"2025-07-07T20:11:31Z"},"id":"7322593","created_at":"2013-11-05T17:18:07Z","updated_at":"2015-12-27T11:59:10Z"},{"url":"https://api.github.com/gists/8180389","user":{"login":"DanielAtSamraksh","id":4624060,"node_id":"MDQ6VXNlcjQ2MjQwNjA=","avatar_url":"https://avatars.githubusercontent.com/u/4624060?v=4","gravatar_id":"","url":"https://api.github.com/users/DanielAtSamraksh","html_url":"https://github.com/DanielAtSamraksh","followers_url":"https://api.github.com/users/DanielAtSamraksh/followers","following_url":"https://api.github.com/users/DanielAtSamraksh/following{/other_user}","gists_url":"https://api.github.com/users/DanielAtSamraksh/gists{/gist_id}","starred_url":"https://api.github.com/users/DanielAtSamraksh/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/DanielAtSamraksh/subscriptions","organizations_url":"https://api.github.com/users/DanielAtSamraksh/orgs","repos_url":"https://api.github.com/users/DanielAtSamraksh/repos","events_url":"https://api.github.com/users/DanielAtSamraksh/events{/privacy}","received_events_url":"https://api.github.com/users/DanielAtSamraksh/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Daniel Patru","company":"Samraksh","blog":"","location":"DC","email":"daniel.patru@samraksh.com","hireable":null,"bio":null,"twitter_username":null,"public_repos":31,"public_gists":1,"followers":1,"following":2,"created_at":"2013-06-05T19:39:16Z","updated_at":"2019-12-24T15:34:27Z"},"id":"8180389","created_at":"2013-12-30T10:31:22Z","updated_at":"2016-01-01T17:59:02Z"},{"url":"https://api.github.com/gists/8389430","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":null,"hireable":true,"bio":"Metaversal monk making magic @imclab & @ZeroSpace-Studios ","twitter_username":"TheIMCLab","public_repos":294,"public_gists":3072,"followers":490,"following":7966,"created_at":"2010-09-07T23:08:04Z","updated_at":"2026-04-02T18:49:20Z"},"id":"8389430","created_at":"2014-01-12T19:43:22Z","updated_at":"2016-01-03T01:29:12Z"},{"url":"https://api.github.com/gists/10222594","user":{"login":"luxifertran","id":1240656,"node_id":"MDQ6VXNlcjEyNDA2NTY=","avatar_url":"https://avatars.githubusercontent.com/u/1240656?v=4","gravatar_id":"","url":"https://api.github.com/users/luxifertran","html_url":"https://github.com/luxifertran","followers_url":"https://api.github.com/users/luxifertran/followers","following_url":"https://api.github.com/users/luxifertran/following{/other_user}","gists_url":"https://api.github.com/users/luxifertran/gists{/gist_id}","starred_url":"https://api.github.com/users/luxifertran/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/luxifertran/subscriptions","organizations_url":"https://api.github.com/users/luxifertran/orgs","repos_url":"https://api.github.com/users/luxifertran/repos","events_url":"https://api.github.com/users/luxifertran/events{/privacy}","received_events_url":"https://api.github.com/users/luxifertran/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Vinh Tran","company":"Affinity Automation, LLC","blog":"","location":null,"email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":29,"public_gists":22,"followers":10,"following":13,"created_at":"2011-12-05T01:59:13Z","updated_at":"2026-02-19T15:39:19Z"},"id":"10222594","created_at":"2014-04-09T03:08:24Z","updated_at":"2015-08-29T13:58:33Z"},{"url":"https://api.github.com/gists/10447332","user":{"login":"qianfg","id":877643,"node_id":"MDQ6VXNlcjg3NzY0Mw==","avatar_url":"https://avatars.githubusercontent.com/u/877643?v=4","gravatar_id":"","url":"https://api.github.com/users/qianfg","html_url":"https://github.com/qianfg","followers_url":"https://api.github.com/users/qianfg/followers","following_url":"https://api.github.com/users/qianfg/following{/other_user}","gists_url":"https://api.github.com/users/qianfg/gists{/gist_id}","starred_url":"https://api.github.com/users/qianfg/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/qianfg/subscriptions","organizations_url":"https://api.github.com/users/qianfg/orgs","repos_url":"https://api.github.com/users/qianfg/repos","events_url":"https://api.github.com/users/qianfg/events{/privacy}","received_events_url":"https://api.github.com/users/qianfg/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Qian Feng","company":null,"blog":"","location":null,"email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":24,"public_gists":4,"followers":8,"following":2,"created_at":"2011-06-27T01:12:53Z","updated_at":"2026-04-16T12:39:52Z"},"id":"10447332","created_at":"2014-04-11T07:40:41Z","updated_at":"2015-08-29T13:59:00Z"},{"url":"https://api.github.com/gists/de16f552ab085daee790","user":{"login":"vdailly","id":7252427,"node_id":"MDQ6VXNlcjcyNTI0Mjc=","avatar_url":"https://avatars.githubusercontent.com/u/7252427?v=4","gravatar_id":"","url":"https://api.github.com/users/vdailly","html_url":"https://github.com/vdailly","followers_url":"https://api.github.com/users/vdailly/followers","following_url":"https://api.github.com/users/vdailly/following{/other_user}","gists_url":"https://api.github.com/users/vdailly/gists{/gist_id}","starred_url":"https://api.github.com/users/vdailly/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/vdailly/subscriptions","organizations_url":"https://api.github.com/users/vdailly/orgs","repos_url":"https://api.github.com/users/vdailly/repos","events_url":"https://api.github.com/users/vdailly/events{/privacy}","received_events_url":"https://api.github.com/users/vdailly/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Vincent DAILLY","company":"Chrysalit","blog":"","location":"France/Tarn/Gaillac","email":null,"hireable":true,"bio":null,"twitter_username":null,"public_repos":31,"public_gists":4,"followers":3,"following":7,"created_at":"2014-04-10T15:01:13Z","updated_at":"2026-04-16T16:05:08Z"},"id":"de16f552ab085daee790","created_at":"2014-05-06T11:08:49Z","updated_at":"2015-08-29T14:01:01Z"},{"url":"https://api.github.com/gists/b0ec74e34d358871e9b6","user":{"login":"avetisk","id":737729,"node_id":"MDQ6VXNlcjczNzcyOQ==","avatar_url":"https://avatars.githubusercontent.com/u/737729?v=4","gravatar_id":"","url":"https://api.github.com/users/avetisk","html_url":"https://github.com/avetisk","followers_url":"https://api.github.com/users/avetisk/followers","following_url":"https://api.github.com/users/avetisk/following{/other_user}","gists_url":"https://api.github.com/users/avetisk/gists{/gist_id}","starred_url":"https://api.github.com/users/avetisk/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/avetisk/subscriptions","organizations_url":"https://api.github.com/users/avetisk/orgs","repos_url":"https://api.github.com/users/avetisk/repos","events_url":"https://api.github.com/users/avetisk/events{/privacy}","received_events_url":"https://api.github.com/users/avetisk/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Avétis KAZARIAN","company":null,"blog":"","location":"Paris, FRANCE","email":null,"hireable":true,"bio":null,"twitter_username":null,"public_repos":75,"public_gists":7,"followers":96,"following":26,"created_at":"2011-04-18T21:59:48Z","updated_at":"2026-04-17T11:21:31Z"},"id":"b0ec74e34d358871e9b6","created_at":"2014-06-06T14:11:14Z","updated_at":"2015-08-29T14:02:17Z"},{"url":"https://api.github.com/gists/5f89a084c1b2c9872274","user":{"login":"abmagil","id":2807766,"node_id":"MDQ6VXNlcjI4MDc3NjY=","avatar_url":"https://avatars.githubusercontent.com/u/2807766?v=4","gravatar_id":"","url":"https://api.github.com/users/abmagil","html_url":"https://github.com/abmagil","followers_url":"https://api.github.com/users/abmagil/followers","following_url":"https://api.github.com/users/abmagil/following{/other_user}","gists_url":"https://api.github.com/users/abmagil/gists{/gist_id}","starred_url":"https://api.github.com/users/abmagil/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/abmagil/subscriptions","organizations_url":"https://api.github.com/users/abmagil/orgs","repos_url":"https://api.github.com/users/abmagil/repos","events_url":"https://api.github.com/users/abmagil/events{/privacy}","received_events_url":"https://api.github.com/users/abmagil/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Aaron Magil","company":null,"blog":"","location":"United States","email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":31,"public_gists":25,"followers":9,"following":7,"created_at":"2012-11-15T20:04:31Z","updated_at":"2026-03-17T02:39:48Z"},"id":"5f89a084c1b2c9872274","created_at":"2014-07-21T20:47:52Z","updated_at":"2015-08-29T14:04:18Z"},{"url":"https://api.github.com/gists/8ef343751dae87e12de6","user":{"login":"mattehicks","id":859222,"node_id":"MDQ6VXNlcjg1OTIyMg==","avatar_url":"https://avatars.githubusercontent.com/u/859222?v=4","gravatar_id":"","url":"https://api.github.com/users/mattehicks","html_url":"https://github.com/mattehicks","followers_url":"https://api.github.com/users/mattehicks/followers","following_url":"https://api.github.com/users/mattehicks/following{/other_user}","gists_url":"https://api.github.com/users/mattehicks/gists{/gist_id}","starred_url":"https://api.github.com/users/mattehicks/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mattehicks/subscriptions","organizations_url":"https://api.github.com/users/mattehicks/orgs","repos_url":"https://api.github.com/users/mattehicks/repos","events_url":"https://api.github.com/users/mattehicks/events{/privacy}","received_events_url":"https://api.github.com/users/mattehicks/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Mattehicks","company":"http://IOTmicrocloud.com","blog":"http://bigdatasoup.com","location":"San Diego, CA","email":"mattehicks@gmail.com","hireable":true,"bio":"Programmer, software engineer etc.\r\nStarted with Xbox C++ and DirectX.\r\nTech is exciting and unreal most times! ","twitter_username":null,"public_repos":199,"public_gists":22,"followers":16,"following":19,"created_at":"2011-06-19T02:09:48Z","updated_at":"2026-03-28T07:11:16Z"},"id":"8ef343751dae87e12de6","created_at":"2014-10-20T18:59:37Z","updated_at":"2015-08-29T14:07:55Z"},{"url":"https://api.github.com/gists/f278b2d5bafa0d46a446","user":{"login":"jiecaowang","id":4072382,"node_id":"MDQ6VXNlcjQwNzIzODI=","avatar_url":"https://avatars.githubusercontent.com/u/4072382?v=4","gravatar_id":"","url":"https://api.github.com/users/jiecaowang","html_url":"https://github.com/jiecaowang","followers_url":"https://api.github.com/users/jiecaowang/followers","following_url":"https://api.github.com/users/jiecaowang/following{/other_user}","gists_url":"https://api.github.com/users/jiecaowang/gists{/gist_id}","starred_url":"https://api.github.com/users/jiecaowang/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jiecaowang/subscriptions","organizations_url":"https://api.github.com/users/jiecaowang/orgs","repos_url":"https://api.github.com/users/jiecaowang/repos","events_url":"https://api.github.com/users/jiecaowang/events{/privacy}","received_events_url":"https://api.github.com/users/jiecaowang/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Tony Wang","company":null,"blog":"","location":null,"email":"jiecao.wang@gmail.com","hireable":null,"bio":"FS Dev, Deep Learning on Image","twitter_username":null,"public_repos":21,"public_gists":2,"followers":2,"following":5,"created_at":"2013-04-05T20:00:27Z","updated_at":"2025-10-16T03:08:06Z"},"id":"f278b2d5bafa0d46a446","created_at":"2014-10-30T17:51:01Z","updated_at":"2015-08-29T14:08:25Z"},{"url":"https://api.github.com/gists/306d1e7dbe757e79df05","user":{"login":"geraldstanje","id":6293104,"node_id":"MDQ6VXNlcjYyOTMxMDQ=","avatar_url":"https://avatars.githubusercontent.com/u/6293104?v=4","gravatar_id":"","url":"https://api.github.com/users/geraldstanje","html_url":"https://github.com/geraldstanje","followers_url":"https://api.github.com/users/geraldstanje/followers","following_url":"https://api.github.com/users/geraldstanje/following{/other_user}","gists_url":"https://api.github.com/users/geraldstanje/gists{/gist_id}","starred_url":"https://api.github.com/users/geraldstanje/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/geraldstanje/subscriptions","organizations_url":"https://api.github.com/users/geraldstanje/orgs","repos_url":"https://api.github.com/users/geraldstanje/repos","events_url":"https://api.github.com/users/geraldstanje/events{/privacy}","received_events_url":"https://api.github.com/users/geraldstanje/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":211,"public_gists":78,"followers":115,"following":148,"created_at":"2013-12-31T13:22:17Z","updated_at":"2026-01-27T23:22:54Z"},"id":"306d1e7dbe757e79df05","created_at":"2014-11-25T23:29:14Z","updated_at":"2015-08-29T14:10:20Z"},{"url":"https://api.github.com/gists/a582876687c7ad336d2d","user":{"login":"pwittchen","id":695319,"node_id":"MDQ6VXNlcjY5NTMxOQ==","avatar_url":"https://avatars.githubusercontent.com/u/695319?v=4","gravatar_id":"","url":"https://api.github.com/users/pwittchen","html_url":"https://github.com/pwittchen","followers_url":"https://api.github.com/users/pwittchen/followers","following_url":"https://api.github.com/users/pwittchen/following{/other_user}","gists_url":"https://api.github.com/users/pwittchen/gists{/gist_id}","starred_url":"https://api.github.com/users/pwittchen/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/pwittchen/subscriptions","organizations_url":"https://api.github.com/users/pwittchen/orgs","repos_url":"https://api.github.com/users/pwittchen/repos","events_url":"https://api.github.com/users/pwittchen/events{/privacy}","received_events_url":"https://api.github.com/users/pwittchen/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Piotr Wittchen","company":null,"blog":"https://wittchen.io","location":"Poland","email":"piotr@wittchen.io","hireable":true,"bio":null,"twitter_username":null,"public_repos":158,"public_gists":155,"followers":473,"following":28,"created_at":"2011-03-28T15:24:34Z","updated_at":"2026-04-02T20:32:23Z"},"id":"a582876687c7ad336d2d","created_at":"2015-01-05T01:27:49Z","updated_at":"2015-08-29T14:12:49Z"},{"url":"https://api.github.com/gists/5fabbe90a2309ffc2db0","user":{"login":"ServeurpersoCom","id":4873680,"node_id":"MDQ6VXNlcjQ4NzM2ODA=","avatar_url":"https://avatars.githubusercontent.com/u/4873680?v=4","gravatar_id":"","url":"https://api.github.com/users/ServeurpersoCom","html_url":"https://github.com/ServeurpersoCom","followers_url":"https://api.github.com/users/ServeurpersoCom/followers","following_url":"https://api.github.com/users/ServeurpersoCom/following{/other_user}","gists_url":"https://api.github.com/users/ServeurpersoCom/gists{/gist_id}","starred_url":"https://api.github.com/users/ServeurpersoCom/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ServeurpersoCom/subscriptions","organizations_url":"https://api.github.com/users/ServeurpersoCom/orgs","repos_url":"https://api.github.com/users/ServeurpersoCom/repos","events_url":"https://api.github.com/users/ServeurpersoCom/events{/privacy}","received_events_url":"https://api.github.com/users/ServeurpersoCom/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Pascal","company":null,"blog":"https://www.serveurperso.com","location":"Paris","email":"admin@serveurperso.com","hireable":null,"bio":"LLM pilot & prompt engineer","twitter_username":null,"public_repos":85,"public_gists":5,"followers":59,"following":34,"created_at":"2013-06-28T21:21:55Z","updated_at":"2026-03-16T22:37:35Z"},"id":"5fabbe90a2309ffc2db0","created_at":"2015-04-28T20:05:24Z","updated_at":"2015-08-29T14:20:07Z"},{"url":"https://api.github.com/gists/6a4e6d77487c7fc48065","user":{"login":"ServeurpersoCom","id":4873680,"node_id":"MDQ6VXNlcjQ4NzM2ODA=","avatar_url":"https://avatars.githubusercontent.com/u/4873680?v=4","gravatar_id":"","url":"https://api.github.com/users/ServeurpersoCom","html_url":"https://github.com/ServeurpersoCom","followers_url":"https://api.github.com/users/ServeurpersoCom/followers","following_url":"https://api.github.com/users/ServeurpersoCom/following{/other_user}","gists_url":"https://api.github.com/users/ServeurpersoCom/gists{/gist_id}","starred_url":"https://api.github.com/users/ServeurpersoCom/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ServeurpersoCom/subscriptions","organizations_url":"https://api.github.com/users/ServeurpersoCom/orgs","repos_url":"https://api.github.com/users/ServeurpersoCom/repos","events_url":"https://api.github.com/users/ServeurpersoCom/events{/privacy}","received_events_url":"https://api.github.com/users/ServeurpersoCom/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Pascal","company":null,"blog":"https://www.serveurperso.com","location":"Paris","email":"admin@serveurperso.com","hireable":null,"bio":"LLM pilot & prompt engineer","twitter_username":null,"public_repos":85,"public_gists":5,"followers":59,"following":34,"created_at":"2013-06-28T21:21:55Z","updated_at":"2026-03-16T22:37:35Z"},"id":"6a4e6d77487c7fc48065","created_at":"2015-04-28T20:12:58Z","updated_at":"2015-08-29T14:20:07Z"},{"url":"https://api.github.com/gists/21165374688115e5983f","user":{"login":"johnmccabe","id":83862,"node_id":"MDQ6VXNlcjgzODYy","avatar_url":"https://avatars.githubusercontent.com/u/83862?v=4","gravatar_id":"","url":"https://api.github.com/users/johnmccabe","html_url":"https://github.com/johnmccabe","followers_url":"https://api.github.com/users/johnmccabe/followers","following_url":"https://api.github.com/users/johnmccabe/following{/other_user}","gists_url":"https://api.github.com/users/johnmccabe/gists{/gist_id}","starred_url":"https://api.github.com/users/johnmccabe/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/johnmccabe/subscriptions","organizations_url":"https://api.github.com/users/johnmccabe/orgs","repos_url":"https://api.github.com/users/johnmccabe/repos","events_url":"https://api.github.com/users/johnmccabe/events{/privacy}","received_events_url":"https://api.github.com/users/johnmccabe/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"John McCabe","company":null,"blog":"https://johnmccabe.net","location":"Northern Ireland","email":null,"hireable":null,"bio":"GPG: 0xDE62AC2FC403927","twitter_username":null,"public_repos":141,"public_gists":38,"followers":109,"following":49,"created_at":"2009-05-12T22:16:15Z","updated_at":"2026-03-25T21:32:00Z"},"id":"21165374688115e5983f","created_at":"2015-05-24T06:08:10Z","updated_at":"2015-08-29T14:21:48Z"},{"url":"https://api.github.com/gists/4690501637082e672ebd","user":{"login":"cuulee","id":1776179,"node_id":"MDQ6VXNlcjE3NzYxNzk=","avatar_url":"https://avatars.githubusercontent.com/u/1776179?v=4","gravatar_id":"","url":"https://api.github.com/users/cuulee","html_url":"https://github.com/cuulee","followers_url":"https://api.github.com/users/cuulee/followers","following_url":"https://api.github.com/users/cuulee/following{/other_user}","gists_url":"https://api.github.com/users/cuulee/gists{/gist_id}","starred_url":"https://api.github.com/users/cuulee/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cuulee/subscriptions","organizations_url":"https://api.github.com/users/cuulee/orgs","repos_url":"https://api.github.com/users/cuulee/repos","events_url":"https://api.github.com/users/cuulee/events{/privacy}","received_events_url":"https://api.github.com/users/cuulee/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":7040,"public_gists":70,"followers":8,"following":1,"created_at":"2012-05-25T00:34:04Z","updated_at":"2024-10-08T00:21:48Z"},"id":"4690501637082e672ebd","created_at":"2015-11-13T03:24:22Z","updated_at":"2015-11-13T03:24:24Z"},{"url":"https://api.github.com/gists/6ec5ff03fa1b61a902a25921cce0fce5","user":{"login":"mickeykedia","id":7503236,"node_id":"MDQ6VXNlcjc1MDMyMzY=","avatar_url":"https://avatars.githubusercontent.com/u/7503236?v=4","gravatar_id":"","url":"https://api.github.com/users/mickeykedia","html_url":"https://github.com/mickeykedia","followers_url":"https://api.github.com/users/mickeykedia/followers","following_url":"https://api.github.com/users/mickeykedia/following{/other_user}","gists_url":"https://api.github.com/users/mickeykedia/gists{/gist_id}","starred_url":"https://api.github.com/users/mickeykedia/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mickeykedia/subscriptions","organizations_url":"https://api.github.com/users/mickeykedia/orgs","repos_url":"https://api.github.com/users/mickeykedia/repos","events_url":"https://api.github.com/users/mickeykedia/events{/privacy}","received_events_url":"https://api.github.com/users/mickeykedia/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Mayank Kedia","company":null,"blog":"mickeykedia.github.io","location":"San Francisco","email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":24,"public_gists":18,"followers":11,"following":9,"created_at":"2014-05-06T17:29:15Z","updated_at":"2025-11-11T01:07:02Z"},"id":"6ec5ff03fa1b61a902a25921cce0fce5","created_at":"2016-04-20T02:38:56Z","updated_at":"2016-04-21T02:48:58Z"},{"url":"https://api.github.com/gists/1d452dba456e4bc66b581286cbef50b0","user":{"login":"kapolo","id":8742815,"node_id":"MDQ6VXNlcjg3NDI4MTU=","avatar_url":"https://avatars.githubusercontent.com/u/8742815?v=4","gravatar_id":"","url":"https://api.github.com/users/kapolo","html_url":"https://github.com/kapolo","followers_url":"https://api.github.com/users/kapolo/followers","following_url":"https://api.github.com/users/kapolo/following{/other_user}","gists_url":"https://api.github.com/users/kapolo/gists{/gist_id}","starred_url":"https://api.github.com/users/kapolo/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/kapolo/subscriptions","organizations_url":"https://api.github.com/users/kapolo/orgs","repos_url":"https://api.github.com/users/kapolo/repos","events_url":"https://api.github.com/users/kapolo/events{/privacy}","received_events_url":"https://api.github.com/users/kapolo/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Kevin Apolo","company":null,"blog":"","location":null,"email":null,"hireable":null,"bio":"I like to build things","twitter_username":null,"public_repos":14,"public_gists":1,"followers":2,"following":0,"created_at":"2014-09-11T22:23:18Z","updated_at":"2025-02-20T00:23:06Z"},"id":"1d452dba456e4bc66b581286cbef50b0","created_at":"2016-05-03T02:38:29Z","updated_at":"2016-05-03T02:38:29Z"},{"url":"https://api.github.com/gists/08cfe3fd0f67e2b4ee7195642067bb9d","user":{"login":"dacho68","id":17236599,"node_id":"MDQ6VXNlcjE3MjM2NTk5","avatar_url":"https://avatars.githubusercontent.com/u/17236599?v=4","gravatar_id":"","url":"https://api.github.com/users/dacho68","html_url":"https://github.com/dacho68","followers_url":"https://api.github.com/users/dacho68/followers","following_url":"https://api.github.com/users/dacho68/following{/other_user}","gists_url":"https://api.github.com/users/dacho68/gists{/gist_id}","starred_url":"https://api.github.com/users/dacho68/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dacho68/subscriptions","organizations_url":"https://api.github.com/users/dacho68/orgs","repos_url":"https://api.github.com/users/dacho68/repos","events_url":"https://api.github.com/users/dacho68/events{/privacy}","received_events_url":"https://api.github.com/users/dacho68/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Dac Toan Ho","company":"CAE Inc","blog":"","location":"Canada","email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":208,"public_gists":1,"followers":1,"following":5,"created_at":"2016-02-14T17:20:27Z","updated_at":"2026-01-17T18:28:50Z"},"id":"08cfe3fd0f67e2b4ee7195642067bb9d","created_at":"2016-06-27T01:14:41Z","updated_at":"2016-06-27T01:14:42Z"},{"url":"https://api.github.com/gists/b45699c4a5cf73dec82b7993ddcd96e8","user":{"login":"rlugojr","id":7250897,"node_id":"MDQ6VXNlcjcyNTA4OTc=","avatar_url":"https://avatars.githubusercontent.com/u/7250897?v=4","gravatar_id":"","url":"https://api.github.com/users/rlugojr","html_url":"https://github.com/rlugojr","followers_url":"https://api.github.com/users/rlugojr/followers","following_url":"https://api.github.com/users/rlugojr/following{/other_user}","gists_url":"https://api.github.com/users/rlugojr/gists{/gist_id}","starred_url":"https://api.github.com/users/rlugojr/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rlugojr/subscriptions","organizations_url":"https://api.github.com/users/rlugojr/orgs","repos_url":"https://api.github.com/users/rlugojr/repos","events_url":"https://api.github.com/users/rlugojr/events{/privacy}","received_events_url":"https://api.github.com/users/rlugojr/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Ray Lugo, Jr.","company":null,"blog":"https://rlugojr.github.io","location":"New York, NY","email":null,"hireable":null,"bio":"Technology fascinates me and thankfully we live in a time of great innovations.  I love coding, forking and learning from fellow GitHubbers.","twitter_username":null,"public_repos":20,"public_gists":51,"followers":37,"following":125,"created_at":"2014-04-10T12:41:55Z","updated_at":"2024-08-23T14:53:21Z"},"id":"b45699c4a5cf73dec82b7993ddcd96e8","created_at":"2016-06-29T05:38:52Z","updated_at":"2016-06-29T05:38:52Z"},{"url":"https://api.github.com/gists/46172fa40f5f64836d1c40603a20bc6f","user":{"login":"brekkanegg","id":18263326,"node_id":"MDQ6VXNlcjE4MjYzMzI2","avatar_url":"https://avatars.githubusercontent.com/u/18263326?v=4","gravatar_id":"","url":"https://api.github.com/users/brekkanegg","html_url":"https://github.com/brekkanegg","followers_url":"https://api.github.com/users/brekkanegg/followers","following_url":"https://api.github.com/users/brekkanegg/following{/other_user}","gists_url":"https://api.github.com/users/brekkanegg/gists{/gist_id}","starred_url":"https://api.github.com/users/brekkanegg/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/brekkanegg/subscriptions","organizations_url":"https://api.github.com/users/brekkanegg/orgs","repos_url":"https://api.github.com/users/brekkanegg/repos","events_url":"https://api.github.com/users/brekkanegg/events{/privacy}","received_events_url":"https://api.github.com/users/brekkanegg/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"brekk","company":null,"blog":"brekkanegg.github.io","location":"Seoul, Korea","email":"brekkanegg@gmail.com","hireable":null,"bio":null,"twitter_username":null,"public_repos":42,"public_gists":1,"followers":17,"following":5,"created_at":"2016-04-04T12:58:53Z","updated_at":"2025-10-02T13:16:11Z"},"id":"46172fa40f5f64836d1c40603a20bc6f","created_at":"2016-07-27T00:09:26Z","updated_at":"2016-07-27T00:09:26Z"},{"url":"https://api.github.com/gists/db8f3b745d697bf2a43639b46a0b3cbb","user":{"login":"ufukomer","id":7649229,"node_id":"MDQ6VXNlcjc2NDkyMjk=","avatar_url":"https://avatars.githubusercontent.com/u/7649229?v=4","gravatar_id":"","url":"https://api.github.com/users/ufukomer","html_url":"https://github.com/ufukomer","followers_url":"https://api.github.com/users/ufukomer/followers","following_url":"https://api.github.com/users/ufukomer/following{/other_user}","gists_url":"https://api.github.com/users/ufukomer/gists{/gist_id}","starred_url":"https://api.github.com/users/ufukomer/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ufukomer/subscriptions","organizations_url":"https://api.github.com/users/ufukomer/orgs","repos_url":"https://api.github.com/users/ufukomer/repos","events_url":"https://api.github.com/users/ufukomer/events{/privacy}","received_events_url":"https://api.github.com/users/ufukomer/received_events","type":"User","user_view_type":"public","site_admin":false,"name":null,"company":"Chrea Studio","blog":"https://copaste.app/","location":"Laniakea","email":"ufukomer@hotmail.com","hireable":true,"bio":"Life is a series of closing doors, isn't it? 🐴","twitter_username":null,"public_repos":33,"public_gists":9,"followers":81,"following":200,"created_at":"2014-05-20T21:16:46Z","updated_at":"2026-03-03T08:20:54Z"},"id":"db8f3b745d697bf2a43639b46a0b3cbb","created_at":"2016-07-27T09:58:49Z","updated_at":"2016-07-27T09:58:49Z"},{"url":"https://api.github.com/gists/3b79d620430984603dcdf5dad6d63d80","user":{"login":"aninfeel","id":721865,"node_id":"MDQ6VXNlcjcyMTg2NQ==","avatar_url":"https://avatars.githubusercontent.com/u/721865?v=4","gravatar_id":"","url":"https://api.github.com/users/aninfeel","html_url":"https://github.com/aninfeel","followers_url":"https://api.github.com/users/aninfeel/followers","following_url":"https://api.github.com/users/aninfeel/following{/other_user}","gists_url":"https://api.github.com/users/aninfeel/gists{/gist_id}","starred_url":"https://api.github.com/users/aninfeel/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/aninfeel/subscriptions","organizations_url":"https://api.github.com/users/aninfeel/orgs","repos_url":"https://api.github.com/users/aninfeel/repos","events_url":"https://api.github.com/users/aninfeel/events{/privacy}","received_events_url":"https://api.github.com/users/aninfeel/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Dante","company":null,"blog":"","location":null,"email":"aninfeel@qq.com","hireable":null,"bio":null,"twitter_username":null,"public_repos":99,"public_gists":2,"followers":3,"following":2,"created_at":"2011-04-11T08:11:33Z","updated_at":"2026-04-16T11:29:10Z"},"id":"3b79d620430984603dcdf5dad6d63d80","created_at":"2017-03-26T11:26:51Z","updated_at":"2017-03-26T11:26:51Z"},{"url":"https://api.github.com/gists/c68d2c89b70ec9a54aeee5d57b86c883","user":{"login":"klashxx","id":346759,"node_id":"MDQ6VXNlcjM0Njc1OQ==","avatar_url":"https://avatars.githubusercontent.com/u/346759?v=4","gravatar_id":"","url":"https://api.github.com/users/klashxx","html_url":"https://github.com/klashxx","followers_url":"https://api.github.com/users/klashxx/followers","following_url":"https://api.github.com/users/klashxx/following{/other_user}","gists_url":"https://api.github.com/users/klashxx/gists{/gist_id}","starred_url":"https://api.github.com/users/klashxx/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/klashxx/subscriptions","organizations_url":"https://api.github.com/users/klashxx/orgs","repos_url":"https://api.github.com/users/klashxx/repos","events_url":"https://api.github.com/users/klashxx/events{/privacy}","received_events_url":"https://api.github.com/users/klashxx/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Juan Diego Godoy Robles","company":null,"blog":"http://klashxx.github.io/about","location":"Almería , Spain","email":"klashxx@gmail.com","hireable":null,"bio":"Data | Automation  🐧 💾 🔧","twitter_username":null,"public_repos":48,"public_gists":55,"followers":54,"following":94,"created_at":"2010-07-28T09:48:13Z","updated_at":"2026-04-18T12:37:31Z"},"id":"c68d2c89b70ec9a54aeee5d57b86c883","created_at":"2017-04-29T14:12:29Z","updated_at":"2017-04-29T14:12:29Z"},{"url":"https://api.github.com/gists/5d1277e61b35645868950df03f7aed5d","user":{"login":"YeongHu","id":27847698,"node_id":"MDQ6VXNlcjI3ODQ3Njk4","avatar_url":"https://avatars.githubusercontent.com/u/27847698?v=4","gravatar_id":"","url":"https://api.github.com/users/YeongHu","html_url":"https://github.com/YeongHu","followers_url":"https://api.github.com/users/YeongHu/followers","following_url":"https://api.github.com/users/YeongHu/following{/other_user}","gists_url":"https://api.github.com/users/YeongHu/gists{/gist_id}","starred_url":"https://api.github.com/users/YeongHu/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/YeongHu/subscriptions","organizations_url":"https://api.github.com/users/YeongHu/orgs","repos_url":"https://api.github.com/users/YeongHu/repos","events_url":"https://api.github.com/users/YeongHu/events{/privacy}","received_events_url":"https://api.github.com/users/YeongHu/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":2,"following":4,"created_at":"2017-04-21T07:12:29Z","updated_at":"2021-03-21T07:12:39Z"},"id":"5d1277e61b35645868950df03f7aed5d","created_at":"2017-05-15T11:24:49Z","updated_at":"2017-05-15T11:24:49Z"},{"url":"https://api.github.com/gists/dfc4307e4a156cc8960e9e5efad67c6c","user":{"login":"dimchansky","id":91551,"node_id":"MDQ6VXNlcjkxNTUx","avatar_url":"https://avatars.githubusercontent.com/u/91551?v=4","gravatar_id":"","url":"https://api.github.com/users/dimchansky","html_url":"https://github.com/dimchansky","followers_url":"https://api.github.com/users/dimchansky/followers","following_url":"https://api.github.com/users/dimchansky/following{/other_user}","gists_url":"https://api.github.com/users/dimchansky/gists{/gist_id}","starred_url":"https://api.github.com/users/dimchansky/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dimchansky/subscriptions","organizations_url":"https://api.github.com/users/dimchansky/orgs","repos_url":"https://api.github.com/users/dimchansky/repos","events_url":"https://api.github.com/users/dimchansky/events{/privacy}","received_events_url":"https://api.github.com/users/dimchansky/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Dmitrij Koniajev","company":"Monetha","blog":"http://dimchansky.github.io/","location":"Vilnius, Lithuania","email":"dimchansky@gmail.com","hireable":true,"bio":null,"twitter_username":null,"public_repos":100,"public_gists":29,"followers":87,"following":75,"created_at":"2009-06-03T18:39:16Z","updated_at":"2025-12-18T21:41:17Z"},"id":"dfc4307e4a156cc8960e9e5efad67c6c","created_at":"2017-06-09T12:51:58Z","updated_at":"2017-06-09T12:51:58Z"},{"url":"https://api.github.com/gists/598452809b1da5e8bc640777e84584bc","user":{"login":"teng2xbe","id":30242476,"node_id":"MDQ6VXNlcjMwMjQyNDc2","avatar_url":"https://avatars.githubusercontent.com/u/30242476?v=4","gravatar_id":"","url":"https://api.github.com/users/teng2xbe","html_url":"https://github.com/teng2xbe","followers_url":"https://api.github.com/users/teng2xbe/followers","following_url":"https://api.github.com/users/teng2xbe/following{/other_user}","gists_url":"https://api.github.com/users/teng2xbe/gists{/gist_id}","starred_url":"https://api.github.com/users/teng2xbe/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/teng2xbe/subscriptions","organizations_url":"https://api.github.com/users/teng2xbe/orgs","repos_url":"https://api.github.com/users/teng2xbe/repos","events_url":"https://api.github.com/users/teng2xbe/events{/privacy}","received_events_url":"https://api.github.com/users/teng2xbe/received_events","type":"User","user_view_type":"public","site_admin":false,"name":null,"company":null,"blog":"","location":null,"email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":3,"public_gists":1,"followers":0,"following":0,"created_at":"2017-07-17T18:09:14Z","updated_at":"2018-02-07T23:07:09Z"},"id":"598452809b1da5e8bc640777e84584bc","created_at":"2018-02-07T07:53:18Z","updated_at":"2018-02-07T07:53:18Z"},{"url":"https://api.github.com/gists/a18af38bd59bc2c21f9e41348f03c93e","user":{"login":"mrshin163","id":31959827,"node_id":"MDQ6VXNlcjMxOTU5ODI3","avatar_url":"https://avatars.githubusercontent.com/u/31959827?v=4","gravatar_id":"","url":"https://api.github.com/users/mrshin163","html_url":"https://github.com/mrshin163","followers_url":"https://api.github.com/users/mrshin163/followers","following_url":"https://api.github.com/users/mrshin163/following{/other_user}","gists_url":"https://api.github.com/users/mrshin163/gists{/gist_id}","starred_url":"https://api.github.com/users/mrshin163/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mrshin163/subscriptions","organizations_url":"https://api.github.com/users/mrshin163/orgs","repos_url":"https://api.github.com/users/mrshin163/repos","events_url":"https://api.github.com/users/mrshin163/events{/privacy}","received_events_url":"https://api.github.com/users/mrshin163/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":28,"public_gists":9,"followers":1,"following":3,"created_at":"2017-09-14T12:54:41Z","updated_at":"2026-02-12T01:53:39Z"},"id":"a18af38bd59bc2c21f9e41348f03c93e","created_at":"2018-02-20T02:31:38Z","updated_at":"2018-02-20T02:31:38Z"},{"url":"https://api.github.com/gists/62b572cabc64c1cfe8b6910a6e5b6f60","user":{"login":"willholic","id":8282323,"node_id":"MDQ6VXNlcjgyODIzMjM=","avatar_url":"https://avatars.githubusercontent.com/u/8282323?v=4","gravatar_id":"","url":"https://api.github.com/users/willholic","html_url":"https://github.com/willholic","followers_url":"https://api.github.com/users/willholic/followers","following_url":"https://api.github.com/users/willholic/following{/other_user}","gists_url":"https://api.github.com/users/willholic/gists{/gist_id}","starred_url":"https://api.github.com/users/willholic/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/willholic/subscriptions","organizations_url":"https://api.github.com/users/willholic/orgs","repos_url":"https://api.github.com/users/willholic/repos","events_url":"https://api.github.com/users/willholic/events{/privacy}","received_events_url":"https://api.github.com/users/willholic/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"willholic","company":"willholic","blog":"","location":"Queenstown","email":null,"hireable":null,"bio":"engineer","twitter_username":null,"public_repos":10,"public_gists":1,"followers":2,"following":1,"created_at":"2014-07-27T16:05:20Z","updated_at":"2024-10-30T07:14:01Z"},"id":"62b572cabc64c1cfe8b6910a6e5b6f60","created_at":"2018-02-28T01:49:13Z","updated_at":"2018-02-28T01:49:13Z"},{"url":"https://api.github.com/gists/b877c66f09b64b4f1f2296dc7d8a30d3","user":{"login":"fivesheep","id":16363,"node_id":"MDQ6VXNlcjE2MzYz","avatar_url":"https://avatars.githubusercontent.com/u/16363?v=4","gravatar_id":"","url":"https://api.github.com/users/fivesheep","html_url":"https://github.com/fivesheep","followers_url":"https://api.github.com/users/fivesheep/followers","following_url":"https://api.github.com/users/fivesheep/following{/other_user}","gists_url":"https://api.github.com/users/fivesheep/gists{/gist_id}","starred_url":"https://api.github.com/users/fivesheep/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fivesheep/subscriptions","organizations_url":"https://api.github.com/users/fivesheep/orgs","repos_url":"https://api.github.com/users/fivesheep/repos","events_url":"https://api.github.com/users/fivesheep/events{/privacy}","received_events_url":"https://api.github.com/users/fivesheep/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Xiayang Wu","company":null,"blog":"https://www.linkedin.com/in/xiayang-wu-45b19166/","location":null,"email":"youngng@gmail.com","hireable":null,"bio":null,"twitter_username":null,"public_repos":128,"public_gists":10,"followers":111,"following":5,"created_at":"2008-07-08T06:56:02Z","updated_at":"2026-01-31T03:41:32Z"},"id":"b877c66f09b64b4f1f2296dc7d8a30d3","created_at":"2018-05-20T06:54:15Z","updated_at":"2018-05-20T06:54:15Z"},{"url":"https://api.github.com/gists/5a0d895e8b2befe3f85e713978d6964f","user":{"login":"ix4","id":38112035,"node_id":"MDQ6VXNlcjM4MTEyMDM1","avatar_url":"https://avatars.githubusercontent.com/u/38112035?v=4","gravatar_id":"","url":"https://api.github.com/users/ix4","html_url":"https://github.com/ix4","followers_url":"https://api.github.com/users/ix4/followers","following_url":"https://api.github.com/users/ix4/following{/other_user}","gists_url":"https://api.github.com/users/ix4/gists{/gist_id}","starred_url":"https://api.github.com/users/ix4/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ix4/subscriptions","organizations_url":"https://api.github.com/users/ix4/orgs","repos_url":"https://api.github.com/users/ix4/repos","events_url":"https://api.github.com/users/ix4/events{/privacy}","received_events_url":"https://api.github.com/users/ix4/received_events","type":"User","user_view_type":"public","site_admin":false,"name":null,"company":null,"blog":"","location":null,"email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":12,"public_gists":1448,"followers":67,"following":94,"created_at":"2018-04-05T17:37:06Z","updated_at":"2026-04-13T03:04:38Z"},"id":"5a0d895e8b2befe3f85e713978d6964f","created_at":"2019-10-23T20:08:33Z","updated_at":"2019-10-23T20:08:33Z"},{"url":"https://api.github.com/gists/1f396e1bb6bd62b0faeacd15ff059cac","user":{"login":"marlowe-ostique","id":60172208,"node_id":"MDQ6VXNlcjYwMTcyMjA4","avatar_url":"https://avatars.githubusercontent.com/u/60172208?v=4","gravatar_id":"","url":"https://api.github.com/users/marlowe-ostique","html_url":"https://github.com/marlowe-ostique","followers_url":"https://api.github.com/users/marlowe-ostique/followers","following_url":"https://api.github.com/users/marlowe-ostique/following{/other_user}","gists_url":"https://api.github.com/users/marlowe-ostique/gists{/gist_id}","starred_url":"https://api.github.com/users/marlowe-ostique/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/marlowe-ostique/subscriptions","organizations_url":"https://api.github.com/users/marlowe-ostique/orgs","repos_url":"https://api.github.com/users/marlowe-ostique/repos","events_url":"https://api.github.com/users/marlowe-ostique/events{/privacy}","received_events_url":"https://api.github.com/users/marlowe-ostique/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":"2020-01-22T07:21:44Z","updated_at":"2020-01-22T07:21:45Z"},"id":"1f396e1bb6bd62b0faeacd15ff059cac","created_at":"2020-01-27T00:44:12Z","updated_at":"2020-01-27T00:44:12Z"},{"url":"https://api.github.com/gists/7419ce0341fcf36bdfd395aa954f8f7a","user":{"login":"haoolii","id":18097266,"node_id":"MDQ6VXNlcjE4MDk3MjY2","avatar_url":"https://avatars.githubusercontent.com/u/18097266?v=4","gravatar_id":"","url":"https://api.github.com/users/haoolii","html_url":"https://github.com/haoolii","followers_url":"https://api.github.com/users/haoolii/followers","following_url":"https://api.github.com/users/haoolii/following{/other_user}","gists_url":"https://api.github.com/users/haoolii/gists{/gist_id}","starred_url":"https://api.github.com/users/haoolii/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/haoolii/subscriptions","organizations_url":"https://api.github.com/users/haoolii/orgs","repos_url":"https://api.github.com/users/haoolii/repos","events_url":"https://api.github.com/users/haoolii/events{/privacy}","received_events_url":"https://api.github.com/users/haoolii/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"HaoLi","company":null,"blog":"","location":"Taiwan","email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":184,"public_gists":1,"followers":21,"following":14,"created_at":"2016-03-27T07:36:43Z","updated_at":"2026-03-28T10:31:14Z"},"id":"7419ce0341fcf36bdfd395aa954f8f7a","created_at":"2020-10-11T12:05:55Z","updated_at":"2020-10-11T12:05:55Z"}],"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":"35104750ff5a01e1588f60d74683bdbe553a2834","committed_at":"2016-07-06T17:57:53Z","change_status":{"total":6,"additions":3,"deletions":3},"url":"https://api.github.com/gists/1642874/35104750ff5a01e1588f60d74683bdbe553a2834"},{"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":"7200953404321897997138df53b4ff17c4da34c5","committed_at":"2016-07-06T17:54:17Z","change_status":{"total":2,"additions":1,"deletions":1},"url":"https://api.github.com/gists/1642874/7200953404321897997138df53b4ff17c4da34c5"},{"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":"9832a5728bc76eb5f19f20b5a5359dab62516561","committed_at":"2016-07-06T17:53:29Z","change_status":{"total":81,"additions":34,"deletions":47},"url":"https://api.github.com/gists/1642874/9832a5728bc76eb5f19f20b5a5359dab62516561"},{"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":"5b9c5c87d29849f8962e4b388ee5653d785e3b7f","committed_at":"2016-02-09T01:07:36Z","change_status":{"total":1,"additions":1,"deletions":0},"url":"https://api.github.com/gists/1642874/5b9c5c87d29849f8962e4b388ee5653d785e3b7f"},{"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":"24a70256b4e97c8fb54209a797535e62ac2f46a7","committed_at":"2015-10-30T21:37:11Z","change_status":{"total":2,"additions":1,"deletions":1},"url":"https://api.github.com/gists/1642874/24a70256b4e97c8fb54209a797535e62ac2f46a7"},{"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":"00a56919b591b713a2bcc73b4f04a18d3e371d79","committed_at":"2015-06-11T19:40:48Z","change_status":{"total":2,"additions":1,"deletions":1},"url":"https://api.github.com/gists/1642874/00a56919b591b713a2bcc73b4f04a18d3e371d79"},{"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":"4c04cccc8070efa367f50a33f8f0df4edf68c61a","committed_at":"2013-08-08T04:24:45Z","change_status":{"total":3,"additions":2,"deletions":1},"url":"https://api.github.com/gists/1642874/4c04cccc8070efa367f50a33f8f0df4edf68c61a"},{"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":"6d1cad0165a38a13676ae043e5aff124bf8fe726","committed_at":"2013-08-08T04:22:09Z","change_status":{"total":2,"additions":1,"deletions":1},"url":"https://api.github.com/gists/1642874/6d1cad0165a38a13676ae043e5aff124bf8fe726"},{"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":"5b1599c36d77f3ab37258b063cca486a7aaa0806","committed_at":"2013-08-08T04:19:57Z","change_status":{"total":2,"additions":1,"deletions":1},"url":"https://api.github.com/gists/1642874/5b1599c36d77f3ab37258b063cca486a7aaa0806"},{"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":"b843218295e57273feaff3ec5991ca4183960b2e","committed_at":"2013-08-08T04:18:21Z","change_status":{"total":32,"additions":14,"deletions":18},"url":"https://api.github.com/gists/1642874/b843218295e57273feaff3ec5991ca4183960b2e"},{"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":"8d5bcb2033e762dd2d2550f639bedf62e2b51560","committed_at":"2013-08-08T04:12:51Z","change_status":{},"url":"https://api.github.com/gists/1642874/8d5bcb2033e762dd2d2550f639bedf62e2b51560"},{"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":"f66792e66e082376edbab7123f9a6cb2063487fa","committed_at":"2012-10-12T03:50:26Z","change_status":{},"url":"https://api.github.com/gists/1642874/f66792e66e082376edbab7123f9a6cb2063487fa"},{"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":"3f8e4113610a2d18190f5d95df50eb993f4123a8","committed_at":"2012-01-19T21:53:52Z","change_status":{},"url":"https://api.github.com/gists/1642874/3f8e4113610a2d18190f5d95df50eb993f4123a8"},{"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":"55583349b2d6b41f99bafde76f54e1c2ee5cede0","committed_at":"2012-01-19T21:46:28Z","change_status":{},"url":"https://api.github.com/gists/1642874/55583349b2d6b41f99bafde76f54e1c2ee5cede0"},{"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":"485107b3c26f41583ee4eb4e306526a1a7d8234d","committed_at":"2012-01-19T21:44:54Z","change_status":{},"url":"https://api.github.com/gists/1642874/485107b3c26f41583ee4eb4e306526a1a7d8234d"},{"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":"73ed8a0899ae25d6e4b7ac5baab649214e3d43e1","committed_at":"2012-01-19T21:40:17Z","change_status":{},"url":"https://api.github.com/gists/1642874/73ed8a0899ae25d6e4b7ac5baab649214e3d43e1"},{"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":"5a771b79862bab91e4e26dbc4e20a07a1252ee4d","committed_at":"2012-01-19T21:36:24Z","change_status":{},"url":"https://api.github.com/gists/1642874/5a771b79862bab91e4e26dbc4e20a07a1252ee4d"},{"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":"34065583641e011966525532348f633e1a045a94","committed_at":"2012-01-19T21:36:04Z","change_status":{},"url":"https://api.github.com/gists/1642874/34065583641e011966525532348f633e1a045a94"},{"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":"1a86d938a5d53778166822c3e97e1ba1abb38a6c","committed_at":"2012-01-19T21:33:21Z","change_status":{},"url":"https://api.github.com/gists/1642874/1a86d938a5d53778166822c3e97e1ba1abb38a6c"}],"truncated":false}