{"url":"https://api.github.com/gists/4061961","forks_url":"https://api.github.com/gists/4061961/forks","commits_url":"https://api.github.com/gists/4061961/commits","id":"4061961","node_id":"MDQ6R2lzdDQwNjE5NjE=","git_pull_url":"https://gist.github.com/4061961.git","git_push_url":"https://gist.github.com/4061961.git","html_url":"https://gist.github.com/mbostock/4061961","files":{".block":{"filename":".block","type":"text/plain","language":null,"raw_url":"https://gist.githubusercontent.com/mbostock/4061961/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/4061961/raw/cb864930cc1defedf81d49c4a17630db793ad6df/README.md","size":730,"truncated":false,"content":"Designed by Stephen Few, a bullet chart “provides a rich display of data in a small space.” A variation on a bar chart, bullet charts compare a given quantitative measure (such as profit or revenue) against qualitative ranges (e.g., poor, satisfactory, good) and related markers (e.g., the same measure a year ago). Layout inspired by [Stephen Few](http://www.perceptualedge.com/articles/misc/Bullet_Graph_Design_Spec.pdf). Implementation based on work by [Clint Ivy](http://projects.instantcognition.com/protovis/bulletchart/), Jamie Love of [N-Squared Software](http://www.nsquaredsoftware.com/) and [Jason Davies](http://www.jasondavies.com/). The \"update\" button randomizes the values slightly to demonstrate transitions.\n","encoding":"utf-8"},"bullet.js":{"filename":"bullet.js","type":"text/javascript","language":"JavaScript","raw_url":"https://gist.githubusercontent.com/mbostock/4061961/raw/3c7e5143d029c5b9b6031285bf84e71baa3c0770/bullet.js","size":6331,"truncated":false,"content":"(function() {\n\n// Chart design based on the recommendations of Stephen Few. Implementation\n// based on the work of Clint Ivy, Jamie Love, and Jason Davies.\n// http://projects.instantcognition.com/protovis/bulletchart/\nd3.bullet = function() {\n  var orient = \"left\", // TODO top & bottom\n      reverse = false,\n      duration = 0,\n      ranges = bulletRanges,\n      markers = bulletMarkers,\n      measures = bulletMeasures,\n      width = 380,\n      height = 30,\n      tickFormat = null;\n\n  // For each small multiple…\n  function bullet(g) {\n    g.each(function(d, i) {\n      var rangez = ranges.call(this, d, i).slice().sort(d3.descending),\n          markerz = markers.call(this, d, i).slice().sort(d3.descending),\n          measurez = measures.call(this, d, i).slice().sort(d3.descending),\n          g = d3.select(this);\n\n      // Compute the new x-scale.\n      var x1 = d3.scale.linear()\n          .domain([0, Math.max(rangez[0], markerz[0], measurez[0])])\n          .range(reverse ? [width, 0] : [0, width]);\n\n      // Retrieve the old x-scale, if this is an update.\n      var x0 = this.__chart__ || d3.scale.linear()\n          .domain([0, Infinity])\n          .range(x1.range());\n\n      // Stash the new scale.\n      this.__chart__ = x1;\n\n      // Derive width-scales from the x-scales.\n      var w0 = bulletWidth(x0),\n          w1 = bulletWidth(x1);\n\n      // Update the range rects.\n      var range = g.selectAll(\"rect.range\")\n          .data(rangez);\n\n      range.enter().append(\"rect\")\n          .attr(\"class\", function(d, i) { return \"range s\" + i; })\n          .attr(\"width\", w0)\n          .attr(\"height\", height)\n          .attr(\"x\", reverse ? x0 : 0)\n        .transition()\n          .duration(duration)\n          .attr(\"width\", w1)\n          .attr(\"x\", reverse ? x1 : 0);\n\n      range.transition()\n          .duration(duration)\n          .attr(\"x\", reverse ? x1 : 0)\n          .attr(\"width\", w1)\n          .attr(\"height\", height);\n\n      // Update the measure rects.\n      var measure = g.selectAll(\"rect.measure\")\n          .data(measurez);\n\n      measure.enter().append(\"rect\")\n          .attr(\"class\", function(d, i) { return \"measure s\" + i; })\n          .attr(\"width\", w0)\n          .attr(\"height\", height / 3)\n          .attr(\"x\", reverse ? x0 : 0)\n          .attr(\"y\", height / 3)\n        .transition()\n          .duration(duration)\n          .attr(\"width\", w1)\n          .attr(\"x\", reverse ? x1 : 0);\n\n      measure.transition()\n          .duration(duration)\n          .attr(\"width\", w1)\n          .attr(\"height\", height / 3)\n          .attr(\"x\", reverse ? x1 : 0)\n          .attr(\"y\", height / 3);\n\n      // Update the marker lines.\n      var marker = g.selectAll(\"line.marker\")\n          .data(markerz);\n\n      marker.enter().append(\"line\")\n          .attr(\"class\", \"marker\")\n          .attr(\"x1\", x0)\n          .attr(\"x2\", x0)\n          .attr(\"y1\", height / 6)\n          .attr(\"y2\", height * 5 / 6)\n        .transition()\n          .duration(duration)\n          .attr(\"x1\", x1)\n          .attr(\"x2\", x1);\n\n      marker.transition()\n          .duration(duration)\n          .attr(\"x1\", x1)\n          .attr(\"x2\", x1)\n          .attr(\"y1\", height / 6)\n          .attr(\"y2\", height * 5 / 6);\n\n      // Compute the tick format.\n      var format = tickFormat || x1.tickFormat(8);\n\n      // Update the tick groups.\n      var tick = g.selectAll(\"g.tick\")\n          .data(x1.ticks(8), function(d) {\n            return this.textContent || format(d);\n          });\n\n      // Initialize the ticks with the old scale, x0.\n      var tickEnter = tick.enter().append(\"g\")\n          .attr(\"class\", \"tick\")\n          .attr(\"transform\", bulletTranslate(x0))\n          .style(\"opacity\", 1e-6);\n\n      tickEnter.append(\"line\")\n          .attr(\"y1\", height)\n          .attr(\"y2\", height * 7 / 6);\n\n      tickEnter.append(\"text\")\n          .attr(\"text-anchor\", \"middle\")\n          .attr(\"dy\", \"1em\")\n          .attr(\"y\", height * 7 / 6)\n          .text(format);\n\n      // Transition the entering ticks to the new scale, x1.\n      tickEnter.transition()\n          .duration(duration)\n          .attr(\"transform\", bulletTranslate(x1))\n          .style(\"opacity\", 1);\n\n      // Transition the updating ticks to the new scale, x1.\n      var tickUpdate = tick.transition()\n          .duration(duration)\n          .attr(\"transform\", bulletTranslate(x1))\n          .style(\"opacity\", 1);\n\n      tickUpdate.select(\"line\")\n          .attr(\"y1\", height)\n          .attr(\"y2\", height * 7 / 6);\n\n      tickUpdate.select(\"text\")\n          .attr(\"y\", height * 7 / 6);\n\n      // Transition the exiting ticks to the new scale, x1.\n      tick.exit().transition()\n          .duration(duration)\n          .attr(\"transform\", bulletTranslate(x1))\n          .style(\"opacity\", 1e-6)\n          .remove();\n    });\n    d3.timer.flush();\n  }\n\n  // left, right, top, bottom\n  bullet.orient = function(x) {\n    if (!arguments.length) return orient;\n    orient = x;\n    reverse = orient == \"right\" || orient == \"bottom\";\n    return bullet;\n  };\n\n  // ranges (bad, satisfactory, good)\n  bullet.ranges = function(x) {\n    if (!arguments.length) return ranges;\n    ranges = x;\n    return bullet;\n  };\n\n  // markers (previous, goal)\n  bullet.markers = function(x) {\n    if (!arguments.length) return markers;\n    markers = x;\n    return bullet;\n  };\n\n  // measures (actual, forecast)\n  bullet.measures = function(x) {\n    if (!arguments.length) return measures;\n    measures = x;\n    return bullet;\n  };\n\n  bullet.width = function(x) {\n    if (!arguments.length) return width;\n    width = x;\n    return bullet;\n  };\n\n  bullet.height = function(x) {\n    if (!arguments.length) return height;\n    height = x;\n    return bullet;\n  };\n\n  bullet.tickFormat = function(x) {\n    if (!arguments.length) return tickFormat;\n    tickFormat = x;\n    return bullet;\n  };\n\n  bullet.duration = function(x) {\n    if (!arguments.length) return duration;\n    duration = x;\n    return bullet;\n  };\n\n  return bullet;\n};\n\nfunction bulletRanges(d) {\n  return d.ranges;\n}\n\nfunction bulletMarkers(d) {\n  return d.markers;\n}\n\nfunction bulletMeasures(d) {\n  return d.measures;\n}\n\nfunction bulletTranslate(x) {\n  return function(d) {\n    return \"translate(\" + x(d) + \",0)\";\n  };\n}\n\nfunction bulletWidth(x) {\n  var x0 = x(0);\n  return function(d) {\n    return Math.abs(x(d) - x0);\n  };\n}\n\n})();\n","encoding":"utf-8"},"bullets.json":{"filename":"bullets.json","type":"application/json","language":"JSON","raw_url":"https://gist.githubusercontent.com/mbostock/4061961/raw/97cb1c1b466ccaae9cb87510740d5a164fb535d1/bullets.json","size":543,"truncated":false,"content":"[\n  {\"title\":\"Revenue\",\"subtitle\":\"US$, in thousands\",\"ranges\":[150,225,300],\"measures\":[220,270],\"markers\":[250]},\n  {\"title\":\"Profit\",\"subtitle\":\"%\",\"ranges\":[20,25,30],\"measures\":[21,23],\"markers\":[26]},\n  {\"title\":\"Order Size\",\"subtitle\":\"US$, average\",\"ranges\":[350,500,600],\"measures\":[100,320],\"markers\":[550]},\n  {\"title\":\"New Customers\",\"subtitle\":\"count\",\"ranges\":[1400,2000,2500],\"measures\":[1000,1650],\"markers\":[2100]},\n  {\"title\":\"Satisfaction\",\"subtitle\":\"out of 5\",\"ranges\":[3.5,4.25,5],\"measures\":[3.2,4.7],\"markers\":[4.4]}\n]\n","encoding":"utf-8"},"index.html":{"filename":"index.html","type":"text/html","language":"HTML","raw_url":"https://gist.githubusercontent.com/mbostock/4061961/raw/c718ff07c4231a8e97e9df87efa18896320460f0/index.html","size":2325,"truncated":false,"content":"<!DOCTYPE html>\n<meta charset=\"utf-8\">\n<style>\n\nbody {\n  font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n  margin: auto;\n  padding-top: 40px;\n  position: relative;\n  width: 960px;\n}\n\nbutton {\n  position: absolute;\n  right: 10px;\n  top: 10px;\n}\n\n.bullet { font: 10px sans-serif; }\n.bullet .marker { stroke: #000; stroke-width: 2px; }\n.bullet .tick line { stroke: #666; stroke-width: .5px; }\n.bullet .range.s0 { fill: #eee; }\n.bullet .range.s1 { fill: #ddd; }\n.bullet .range.s2 { fill: #ccc; }\n.bullet .measure.s0 { fill: lightsteelblue; }\n.bullet .measure.s1 { fill: steelblue; }\n.bullet .title { font-size: 14px; font-weight: bold; }\n.bullet .subtitle { fill: #999; }\n\n</style>\n<button>Update</button>\n<script src=\"//d3js.org/d3.v3.min.js\"></script>\n<script src=\"bullet.js\"></script>\n<script>\n\nvar margin = {top: 5, right: 40, bottom: 20, left: 120},\n    width = 960 - margin.left - margin.right,\n    height = 50 - margin.top - margin.bottom;\n\nvar chart = d3.bullet()\n    .width(width)\n    .height(height);\n\nd3.json(\"bullets.json\", function(error, data) {\n  if (error) throw error;\n\n  var svg = d3.select(\"body\").selectAll(\"svg\")\n      .data(data)\n    .enter().append(\"svg\")\n      .attr(\"class\", \"bullet\")\n      .attr(\"width\", width + margin.left + margin.right)\n      .attr(\"height\", height + margin.top + margin.bottom)\n    .append(\"g\")\n      .attr(\"transform\", \"translate(\" + margin.left + \",\" + margin.top + \")\")\n      .call(chart);\n\n  var title = svg.append(\"g\")\n      .style(\"text-anchor\", \"end\")\n      .attr(\"transform\", \"translate(-6,\" + height / 2 + \")\");\n\n  title.append(\"text\")\n      .attr(\"class\", \"title\")\n      .text(function(d) { return d.title; });\n\n  title.append(\"text\")\n      .attr(\"class\", \"subtitle\")\n      .attr(\"dy\", \"1em\")\n      .text(function(d) { return d.subtitle; });\n\n  d3.selectAll(\"button\").on(\"click\", function() {\n    svg.datum(randomize).call(chart.duration(1000)); // TODO automatic transition\n  });\n});\n\nfunction randomize(d) {\n  if (!d.randomizer) d.randomizer = randomizer(d);\n  d.ranges = d.ranges.map(d.randomizer);\n  d.markers = d.markers.map(d.randomizer);\n  d.measures = d.measures.map(d.randomizer);\n  return d;\n}\n\nfunction randomizer(d) {\n  var k = d3.max(d.ranges) * .2;\n  return function(d) {\n    return Math.max(0, d + k * (Math.random() - .5));\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/4061961/raw/ee3e849724fc0cb2a738fcc33ee864081c2c295e/thumbnail.png","size":9478,"truncated":false,"content":"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\nWHhYZFvUWfROYUwJnpI7pWnKq6n6U+OmbpzaPvWrpa1lquVey3tWSlaBVrlW\nLVZvrE2t2dbl1tdtqDa+Nsttmm1eTzObxp22Y9ptW7rtDNvVtm22X+zs7UR2\n9Xb99vr28fYV9rcclB1CHYocLjgSHD0dlzsed/zoZOeU5XTI6Q9nC+cU533O\nz6cbTedO3zv9sYuuC8tlt0uPK9M13nWXa4+bjhvLrdLtkbueO8e9yv2Zh4lH\nssd+j1eelp4iz6Oe772cvJZ6tXpj3n7eBd6dPko+kT5lPg99dX2TfOt8B/1s\n/Rb7tfoT/IP8N/rfCtAMYAfUBgwG2gcuDTwbRAkKDyoLehRsGiwKbpmBzgic\nsWnG/ZkGMwUzm0JASEDIppAHoUahGaG/zCLOCp1VPutpmFXYkrD2cHr4/PB9\n4e8iPCPWR9yLNI4UR7ZFyUfNiaqNeh/tHV0c3RMzNWZpzOVY9Vh+bHMcKS4q\nripuaLbP7C2z++bYzsmfc3Ou0dyFcy/OU5+XOu/EfPn5rPmH4wnx0fH74j+z\nQliVrKGEgISKhEG2F3sr+yXHnbOZ08914RZznyW6JBYnPk9ySdqU1M9z45Xw\nBvhe/DL+62T/5J3J71NCUqpTRlKjUxvSZNLi044JlAQpgrPpWukL07uFZsJ8\nYU+GU8aWjEFRkKgqE8mcm9mcpQwvuR1iY/EP4t5s1+zy7A8LohYcXqi4ULCw\nY5HporWLnuX45vy0GF/MXty2RGfJyiW9Sz2W7l6GLEtY1rZcb3ne8r4Vfitq\nVpJXpqz8Ndcytzj3z1XRq1ryNPNW5D3+we+Hunxavij/1mrn1TvX4Gv4azrX\n2qzdtvZrAafgUqFlYUnh5yJ20aUfrX4s/XFkXeK6zvV263dsIG4QbLi50W1j\nTbFicU7x400zNjVuZm4u2PznlvlbLpZMK9m5lbxVvLWnNLi0eZv+tg3bPpfx\nym6Ue5Y3VGhUrK14v52z/eoO9x31OzV3Fu78tIu/6/Zuv92NlYaVJXuIe7L3\nPN0btbf9J4efaqvUqwqrvlQLqntqwmrO1trX1u7T2Le+Dq0T1/Xvn7O/64D3\ngeZ6i/rdDYyGwoPgoPjgi5/jf755KOhQ22GHw/VHDI5UHKUfLWhEGhc1Djbx\nmnqaY5u7jwUea2txbjn6y5Rfqo/rHC8/oXJi/UnyybyTI6dyTg21ClsHTied\nftw2v+3emZgz18/OOtt5LujchfO+58+0e7SfuuBy4fhFp4vHLjlcarpsd7mx\nw7bj6K+2vx7ttOtsvGJ/pbnLsaule3r3yatuV09f8752/nrA9cs3Zt7ovhl5\n8/atObd6bnNuP7+Teuf13ey7w/dW3CfcL3ig8KDkocbDyt9Mfmvoses50evd\n2/Eo/NG9x+zHL59kPvncl/eU+rTkmfaz2ufWz4/3+/Z3vZj9ou+l8OXwQP7v\nir9XvDJ+deQP9z86BmMG+16LXo+8KXqr9rb6z2l/tg2FDj18l/Zu+H3BB7UP\nNR8dPrZ/iv70bHjBZ9Ln0i8mX1q+Bn29P5I2MiJkiVjSqwAGK5qYCMCbapi3\nxMK7QxcAZNpobiQtyGg+JyXwTzyaP0mLHQDV7gBErgAgGN5RdsBqAJkCn5Jr\nfoQ7QG1sJupYyUy0sR61RYEZAOHDyMhbTQBILQB8EY2MDG8fGfkCczzsDgCt\nGaM5maQQ4T1+F01CFzuLVnyfG/0HKZdga3svC0sAAAAGYktHRAD/AP8A/6C9\np5MAAAAJb0ZGcwAAABwAAAA9AMTWPJAAAAAJcEhZcwAAFiUAABYlAUlSJPAA\nABihSURBVHja7Z3JcxzHne8/WUtXdVdvaKwESEgkRVEUtVGaGC8SpbEth4/2\ni4l54QjH+DKHmYtP/gf8h7zLsx0v7Bc+2S8m5PAytrbQZskSSVEkxRXERhBo\noLtrX/IdmoBIiiCbQLO6NcxPBA8A0fXLrsxvVS7f/KWQUkoUCsVQoQ26AAqF\n4ssYgy6AQvHfkTiOieMYIQTdPmm3YyoQSL7cSdV1Hcuytn5Wb0yFos9kWYbn\neWiaRpIkZFmKYRiYpkmcxEgJhmGg6zqmaWIYBmEYEkXR1jXUG1Oh6DNSStI0\nJYkj/v7Jx2hZgusnlB2HxeVlGqNjxGGAlJKCVeDYsecRdD+ziRKmQvEAiOOY\nLE1YWVrGbbdZb64jhQ66wdW5OdJUUnVs/Djh4MFD2JZJoVDY+rwSpkLRZzSt\nO0KM4oSnnnoa3w9otzaYmJwijEI0oYHojiuzTKIJSRzH6Lq+dQ2hlksUiv4T\nxzFhGCKE6P5CCNhGalJKDMPAtu2t3ylhKhRDiJqVVSiGkB2NMaWUSCm3+tL3\nQ5Ik+L4/6O/90KJp2i1jma8amqbtqN1t0l1XHFwnsdfy37cwwzDk17/+NWEY\n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\nurx69QoBBSxN7Loury0tcuXqEgVd7rouozDk2tIC1bLTU13m1pWVWcbqWhO7\nWCTwfZxyeVdbq9bW1jDMAkkcUShYlHfYYAGSOCZJU8Ibpuz6DhssQHYjtUqc\nxMRxwsjIyI6f2K7boeN6OKUSfhAy2hjZcXcqDAOazXXK5TJBEFCr1XY8bsrS\nlNW1VYpFhyAIdlWXUkrW1lYxTYskiXddl5td/yiKYbd1mWUEYdhtH8nu6jIM\nAjqui2XZ+EFwz7pUJnaFYghRJnaFYghRwlQohhAlTIViCFHCVCiGECVMhWII\nUcJUKIYQJUyFYghRwlQohhAlTIViCFHCVCiGECVMhWIIUcJUKIYQJUyFYghR\nwlQohhAlTIViCFHCVCiGECVMhWIIUcJUKIYQJUyFYghRwlQohhAlTIViCFHC\nVCiGECVMhWIIUcJUKIYQJUyFYghRwlQohhAlTIViCFHCVCiGECVMhWIIUcJU\nKIYQJUyFYghRwlQohhAlTIViCFHCVCiGECVMhWIIUcJUKIYQJUyFYghRwlQo\nhhAlTIViCFHCVCiGECVMhWIIUcJUKIYQJUyFYghRwlQohhAlTIViCFHCVCiG\nECVMhWII+f8CWy3dZ8i1qQAAAABJRU5ErkJggg==\n","encoding":"base64"}},"public":true,"created_at":"2012-11-12T21:17:49Z","updated_at":"2024-07-08T00:11:01Z","description":"Bullet Charts","comments":11,"user":null,"comments_enabled":true,"comments_url":"https://api.github.com/gists/4061961/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/4122773","user":{"login":"jun9","id":71697,"node_id":"MDQ6VXNlcjcxNjk3","avatar_url":"https://avatars.githubusercontent.com/u/71697?v=4","gravatar_id":"","url":"https://api.github.com/users/jun9","html_url":"https://github.com/jun9","followers_url":"https://api.github.com/users/jun9/followers","following_url":"https://api.github.com/users/jun9/following{/other_user}","gists_url":"https://api.github.com/users/jun9/gists{/gist_id}","starred_url":"https://api.github.com/users/jun9/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jun9/subscriptions","organizations_url":"https://api.github.com/users/jun9/orgs","repos_url":"https://api.github.com/users/jun9/repos","events_url":"https://api.github.com/users/jun9/events{/privacy}","received_events_url":"https://api.github.com/users/jun9/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":161,"public_gists":29,"followers":81,"following":314,"created_at":"2009-04-08T08:43:34Z","updated_at":"2026-05-30T11:29:53Z"},"id":"4122773","created_at":"2012-11-21T03:09:56Z","updated_at":"2017-03-17T13:09:59Z"},{"url":"https://api.github.com/gists/4636920","user":{"login":"wmelton","id":1544125,"node_id":"MDQ6VXNlcjE1NDQxMjU=","avatar_url":"https://avatars.githubusercontent.com/u/1544125?v=4","gravatar_id":"","url":"https://api.github.com/users/wmelton","html_url":"https://github.com/wmelton","followers_url":"https://api.github.com/users/wmelton/followers","following_url":"https://api.github.com/users/wmelton/following{/other_user}","gists_url":"https://api.github.com/users/wmelton/gists{/gist_id}","starred_url":"https://api.github.com/users/wmelton/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/wmelton/subscriptions","organizations_url":"https://api.github.com/users/wmelton/orgs","repos_url":"https://api.github.com/users/wmelton/repos","events_url":"https://api.github.com/users/wmelton/events{/privacy}","received_events_url":"https://api.github.com/users/wmelton/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Wes","company":null,"blog":"","location":"Nashville, TN","email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":196,"public_gists":47,"followers":13,"following":119,"created_at":"2012-03-16T13:58:20Z","updated_at":"2026-05-12T00:47:20Z"},"id":"4636920","created_at":"2013-01-25T19:03:09Z","updated_at":"2015-12-11T17:48:53Z"},{"url":"https://api.github.com/gists/5452290","user":{"login":"jasondavies","id":31223,"node_id":"MDQ6VXNlcjMxMjIz","avatar_url":"https://avatars.githubusercontent.com/u/31223?v=4","gravatar_id":"","url":"https://api.github.com/users/jasondavies","html_url":"https://github.com/jasondavies","followers_url":"https://api.github.com/users/jasondavies/followers","following_url":"https://api.github.com/users/jasondavies/following{/other_user}","gists_url":"https://api.github.com/users/jasondavies/gists{/gist_id}","starred_url":"https://api.github.com/users/jasondavies/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jasondavies/subscriptions","organizations_url":"https://api.github.com/users/jasondavies/orgs","repos_url":"https://api.github.com/users/jasondavies/repos","events_url":"https://api.github.com/users/jasondavies/events{/privacy}","received_events_url":"https://api.github.com/users/jasondavies/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Jason Davies","company":null,"blog":"https://www.jasondavies.com/","location":"London, UK","email":"jason@jasondavies.com","hireable":null,"bio":null,"twitter_username":"jasondavies","public_repos":22,"public_gists":76,"followers":3276,"following":37,"created_at":"2008-10-27T12:15:54Z","updated_at":"2026-04-03T18:54:42Z"},"id":"5452290","created_at":"2013-04-24T13:53:38Z","updated_at":"2019-06-13T23:16:11Z"},{"url":"https://api.github.com/gists/6247520","user":{"login":"vrish88","id":36475,"node_id":"MDQ6VXNlcjM2NDc1","avatar_url":"https://avatars.githubusercontent.com/u/36475?v=4","gravatar_id":"","url":"https://api.github.com/users/vrish88","html_url":"https://github.com/vrish88","followers_url":"https://api.github.com/users/vrish88/followers","following_url":"https://api.github.com/users/vrish88/following{/other_user}","gists_url":"https://api.github.com/users/vrish88/gists{/gist_id}","starred_url":"https://api.github.com/users/vrish88/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/vrish88/subscriptions","organizations_url":"https://api.github.com/users/vrish88/orgs","repos_url":"https://api.github.com/users/vrish88/repos","events_url":"https://api.github.com/users/vrish88/events{/privacy}","received_events_url":"https://api.github.com/users/vrish88/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Michael Lavrisha","company":"@pivotal ","blog":"","location":"Denver, Colorado","email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":62,"public_gists":8,"followers":29,"following":24,"created_at":"2008-11-25T01:01:55Z","updated_at":"2026-03-16T17:53:40Z"},"id":"6247520","created_at":"2013-08-16T05:26:23Z","updated_at":"2015-12-21T04:09:11Z"},{"url":"https://api.github.com/gists/6452317","user":{"login":"timshadel","id":2394,"node_id":"MDQ6VXNlcjIzOTQ=","avatar_url":"https://avatars.githubusercontent.com/u/2394?v=4","gravatar_id":"","url":"https://api.github.com/users/timshadel","html_url":"https://github.com/timshadel","followers_url":"https://api.github.com/users/timshadel/followers","following_url":"https://api.github.com/users/timshadel/following{/other_user}","gists_url":"https://api.github.com/users/timshadel/gists{/gist_id}","starred_url":"https://api.github.com/users/timshadel/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/timshadel/subscriptions","organizations_url":"https://api.github.com/users/timshadel/orgs","repos_url":"https://api.github.com/users/timshadel/repos","events_url":"https://api.github.com/users/timshadel/events{/privacy}","received_events_url":"https://api.github.com/users/timshadel/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Tim Shadel","company":"Day Logger, Inc.","blog":"http://timshadel.com","location":"Phoenix, AZ","email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":171,"public_gists":47,"followers":71,"following":23,"created_at":"2008-03-06T16:24:44Z","updated_at":"2026-04-29T02:50:24Z"},"id":"6452317","created_at":"2013-09-05T16:11:02Z","updated_at":"2015-12-22T09:29:07Z"},{"url":"https://api.github.com/gists/6558863","user":{"login":"kkowar","id":7971,"node_id":"MDQ6VXNlcjc5NzE=","avatar_url":"https://avatars.githubusercontent.com/u/7971?v=4","gravatar_id":"","url":"https://api.github.com/users/kkowar","html_url":"https://github.com/kkowar","followers_url":"https://api.github.com/users/kkowar/followers","following_url":"https://api.github.com/users/kkowar/following{/other_user}","gists_url":"https://api.github.com/users/kkowar/gists{/gist_id}","starred_url":"https://api.github.com/users/kkowar/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/kkowar/subscriptions","organizations_url":"https://api.github.com/users/kkowar/orgs","repos_url":"https://api.github.com/users/kkowar/repos","events_url":"https://api.github.com/users/kkowar/events{/privacy}","received_events_url":"https://api.github.com/users/kkowar/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Kurt Kowar","company":"City of Louisville, Colorado","blog":"","location":"Denver, Colorado","email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":123,"public_gists":12,"followers":11,"following":2,"created_at":"2008-04-20T03:04:13Z","updated_at":"2024-12-28T21:08:35Z"},"id":"6558863","created_at":"2013-09-14T04:38:15Z","updated_at":"2015-12-23T01:09:18Z"},{"url":"https://api.github.com/gists/7143734","user":{"login":"CristinaPA","id":5746634,"node_id":"MDQ6VXNlcjU3NDY2MzQ=","avatar_url":"https://avatars.githubusercontent.com/u/5746634?v=4","gravatar_id":"","url":"https://api.github.com/users/CristinaPA","html_url":"https://github.com/CristinaPA","followers_url":"https://api.github.com/users/CristinaPA/followers","following_url":"https://api.github.com/users/CristinaPA/following{/other_user}","gists_url":"https://api.github.com/users/CristinaPA/gists{/gist_id}","starred_url":"https://api.github.com/users/CristinaPA/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/CristinaPA/subscriptions","organizations_url":"https://api.github.com/users/CristinaPA/orgs","repos_url":"https://api.github.com/users/CristinaPA/repos","events_url":"https://api.github.com/users/CristinaPA/events{/privacy}","received_events_url":"https://api.github.com/users/CristinaPA/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":4,"followers":0,"following":0,"created_at":"2013-10-22T12:07:12Z","updated_at":"2016-02-27T11:50:47Z"},"id":"7143734","created_at":"2013-10-24T19:44:40Z","updated_at":"2015-12-26T11:29:00Z"},{"url":"https://api.github.com/gists/7238309","user":{"login":"galactico","id":5816679,"node_id":"MDQ6VXNlcjU4MTY2Nzk=","avatar_url":"https://avatars.githubusercontent.com/u/5816679?v=4","gravatar_id":"","url":"https://api.github.com/users/galactico","html_url":"https://github.com/galactico","followers_url":"https://api.github.com/users/galactico/followers","following_url":"https://api.github.com/users/galactico/following{/other_user}","gists_url":"https://api.github.com/users/galactico/gists{/gist_id}","starred_url":"https://api.github.com/users/galactico/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/galactico/subscriptions","organizations_url":"https://api.github.com/users/galactico/orgs","repos_url":"https://api.github.com/users/galactico/repos","events_url":"https://api.github.com/users/galactico/events{/privacy}","received_events_url":"https://api.github.com/users/galactico/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":"2013-10-30T19:04:44Z","updated_at":"2016-02-27T12:00:43Z"},"id":"7238309","created_at":"2013-10-30T19:10:12Z","updated_at":"2015-12-27T00:29:14Z"},{"url":"https://api.github.com/gists/8201926","user":{"login":"uberFoo","id":363700,"node_id":"MDQ6VXNlcjM2MzcwMA==","avatar_url":"https://avatars.githubusercontent.com/u/363700?v=4","gravatar_id":"","url":"https://api.github.com/users/uberFoo","html_url":"https://github.com/uberFoo","followers_url":"https://api.github.com/users/uberFoo/followers","following_url":"https://api.github.com/users/uberFoo/following{/other_user}","gists_url":"https://api.github.com/users/uberFoo/gists{/gist_id}","starred_url":"https://api.github.com/users/uberFoo/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/uberFoo/subscriptions","organizations_url":"https://api.github.com/users/uberFoo/orgs","repos_url":"https://api.github.com/users/uberFoo/repos","events_url":"https://api.github.com/users/uberFoo/events{/privacy}","received_events_url":"https://api.github.com/users/uberFoo/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Keith Star","company":null,"blog":"https://uberfoo.github.io","location":null,"email":null,"hireable":null,"bio":"Eat, sleep, hack.","twitter_username":"uberfoo","public_repos":73,"public_gists":5,"followers":8,"following":8,"created_at":"2010-08-13T17:53:56Z","updated_at":"2026-05-17T08:06:58Z"},"id":"8201926","created_at":"2013-12-31T20:30:47Z","updated_at":"2016-01-01T21:09:15Z"},{"url":"https://api.github.com/gists/8424257","user":{"login":"larskotthoff","id":579233,"node_id":"MDQ6VXNlcjU3OTIzMw==","avatar_url":"https://avatars.githubusercontent.com/u/579233?v=4","gravatar_id":"","url":"https://api.github.com/users/larskotthoff","html_url":"https://github.com/larskotthoff","followers_url":"https://api.github.com/users/larskotthoff/followers","following_url":"https://api.github.com/users/larskotthoff/following{/other_user}","gists_url":"https://api.github.com/users/larskotthoff/gists{/gist_id}","starred_url":"https://api.github.com/users/larskotthoff/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/larskotthoff/subscriptions","organizations_url":"https://api.github.com/users/larskotthoff/orgs","repos_url":"https://api.github.com/users/larskotthoff/repos","events_url":"https://api.github.com/users/larskotthoff/events{/privacy}","received_events_url":"https://api.github.com/users/larskotthoff/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Lars Kotthoff","company":null,"blog":"","location":null,"email":null,"hireable":true,"bio":null,"twitter_username":null,"public_repos":60,"public_gists":60,"followers":92,"following":0,"created_at":"2011-01-23T14:17:58Z","updated_at":"2025-12-09T08:05:04Z"},"id":"8424257","created_at":"2014-01-14T19:33:49Z","updated_at":"2016-01-03T06:39:12Z"},{"url":"https://api.github.com/gists/9058386","user":{"login":"averas","id":1205805,"node_id":"MDQ6VXNlcjEyMDU4MDU=","avatar_url":"https://avatars.githubusercontent.com/u/1205805?v=4","gravatar_id":"","url":"https://api.github.com/users/averas","html_url":"https://github.com/averas","followers_url":"https://api.github.com/users/averas/followers","following_url":"https://api.github.com/users/averas/following{/other_user}","gists_url":"https://api.github.com/users/averas/gists{/gist_id}","starred_url":"https://api.github.com/users/averas/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/averas/subscriptions","organizations_url":"https://api.github.com/users/averas/orgs","repos_url":"https://api.github.com/users/averas/repos","events_url":"https://api.github.com/users/averas/events{/privacy}","received_events_url":"https://api.github.com/users/averas/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Rasmus Aveskogh","company":"Crimston AB","blog":"","location":"Uppsala, Sweden","email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":4,"public_gists":3,"followers":8,"following":5,"created_at":"2011-11-19T02:52:11Z","updated_at":"2026-05-20T20:06:56Z"},"id":"9058386","created_at":"2014-02-17T20:24:48Z","updated_at":"2015-08-29T13:56:28Z"},{"url":"https://api.github.com/gists/10519729","user":{"login":"drewes","id":1628473,"node_id":"MDQ6VXNlcjE2Mjg0NzM=","avatar_url":"https://avatars.githubusercontent.com/u/1628473?v=4","gravatar_id":"","url":"https://api.github.com/users/drewes","html_url":"https://github.com/drewes","followers_url":"https://api.github.com/users/drewes/followers","following_url":"https://api.github.com/users/drewes/following{/other_user}","gists_url":"https://api.github.com/users/drewes/gists{/gist_id}","starred_url":"https://api.github.com/users/drewes/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/drewes/subscriptions","organizations_url":"https://api.github.com/users/drewes/orgs","repos_url":"https://api.github.com/users/drewes/repos","events_url":"https://api.github.com/users/drewes/events{/privacy}","received_events_url":"https://api.github.com/users/drewes/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Helmut Drewes","company":"Agrista","blog":"","location":"Cape Town, South Africa","email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":1,"public_gists":15,"followers":8,"following":12,"created_at":"2012-04-10T08:13:06Z","updated_at":"2026-06-08T15:20:48Z"},"id":"10519729","created_at":"2014-04-12T05:11:00Z","updated_at":"2015-08-29T13:59:07Z"},{"url":"https://api.github.com/gists/10626617","user":{"login":"mygoare","id":950850,"node_id":"MDQ6VXNlcjk1MDg1MA==","avatar_url":"https://avatars.githubusercontent.com/u/950850?v=4","gravatar_id":"","url":"https://api.github.com/users/mygoare","html_url":"https://github.com/mygoare","followers_url":"https://api.github.com/users/mygoare/followers","following_url":"https://api.github.com/users/mygoare/following{/other_user}","gists_url":"https://api.github.com/users/mygoare/gists{/gist_id}","starred_url":"https://api.github.com/users/mygoare/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mygoare/subscriptions","organizations_url":"https://api.github.com/users/mygoare/orgs","repos_url":"https://api.github.com/users/mygoare/repos","events_url":"https://api.github.com/users/mygoare/events{/privacy}","received_events_url":"https://api.github.com/users/mygoare/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Gore","company":null,"blog":"mygoare.github.io","location":"Hefei, China","email":"mygoare@gmail.com","hireable":null,"bio":"Talk is cheap","twitter_username":null,"public_repos":65,"public_gists":61,"followers":47,"following":92,"created_at":"2011-08-01T03:22:50Z","updated_at":"2026-03-25T03:14:34Z"},"id":"10626617","created_at":"2014-04-14T08:10:41Z","updated_at":"2015-08-29T13:59:19Z"},{"url":"https://api.github.com/gists/11275523","user":{"login":"slattery","id":1829326,"node_id":"MDQ6VXNlcjE4MjkzMjY=","avatar_url":"https://avatars.githubusercontent.com/u/1829326?v=4","gravatar_id":"","url":"https://api.github.com/users/slattery","html_url":"https://github.com/slattery","followers_url":"https://api.github.com/users/slattery/followers","following_url":"https://api.github.com/users/slattery/following{/other_user}","gists_url":"https://api.github.com/users/slattery/gists{/gist_id}","starred_url":"https://api.github.com/users/slattery/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/slattery/subscriptions","organizations_url":"https://api.github.com/users/slattery/orgs","repos_url":"https://api.github.com/users/slattery/repos","events_url":"https://api.github.com/users/slattery/events{/privacy}","received_events_url":"https://api.github.com/users/slattery/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Mike Slattery","company":null,"blog":"","location":"New Haven, CT","email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":61,"public_gists":160,"followers":58,"following":569,"created_at":"2012-06-08T04:13:13Z","updated_at":"2026-03-26T18:07:29Z"},"id":"11275523","created_at":"2014-04-25T01:54:33Z","updated_at":"2015-08-29T14:00:29Z"},{"url":"https://api.github.com/gists/6559c6e67445fd4d9571","user":{"login":"adamyonk","id":33258,"node_id":"MDQ6VXNlcjMzMjU4","avatar_url":"https://avatars.githubusercontent.com/u/33258?v=4","gravatar_id":"","url":"https://api.github.com/users/adamyonk","html_url":"https://github.com/adamyonk","followers_url":"https://api.github.com/users/adamyonk/followers","following_url":"https://api.github.com/users/adamyonk/following{/other_user}","gists_url":"https://api.github.com/users/adamyonk/gists{/gist_id}","starred_url":"https://api.github.com/users/adamyonk/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/adamyonk/subscriptions","organizations_url":"https://api.github.com/users/adamyonk/orgs","repos_url":"https://api.github.com/users/adamyonk/repos","events_url":"https://api.github.com/users/adamyonk/events{/privacy}","received_events_url":"https://api.github.com/users/adamyonk/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Adam Black","company":"@heavybit ","blog":"https://adamyonk.com","location":"València, Spain","email":"adamyonk@icloud.com","hireable":null,"bio":"☕️🦇🚲\r\nfix your heart or die.","twitter_username":null,"public_repos":65,"public_gists":17,"followers":79,"following":49,"created_at":"2008-11-07T21:40:12Z","updated_at":"2026-05-25T15:34:47Z"},"id":"6559c6e67445fd4d9571","created_at":"2014-06-18T04:05:47Z","updated_at":"2015-08-29T14:02:43Z"},{"url":"https://api.github.com/gists/71cc9c82c6025795c128","user":{"login":"colin-young","id":1805378,"node_id":"MDQ6VXNlcjE4MDUzNzg=","avatar_url":"https://avatars.githubusercontent.com/u/1805378?v=4","gravatar_id":"","url":"https://api.github.com/users/colin-young","html_url":"https://github.com/colin-young","followers_url":"https://api.github.com/users/colin-young/followers","following_url":"https://api.github.com/users/colin-young/following{/other_user}","gists_url":"https://api.github.com/users/colin-young/gists{/gist_id}","starred_url":"https://api.github.com/users/colin-young/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/colin-young/subscriptions","organizations_url":"https://api.github.com/users/colin-young/orgs","repos_url":"https://api.github.com/users/colin-young/repos","events_url":"https://api.github.com/users/colin-young/events{/privacy}","received_events_url":"https://api.github.com/users/colin-young/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Colin Young","company":"N/A","blog":"","location":null,"email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":34,"public_gists":6,"followers":4,"following":0,"created_at":"2012-06-01T12:51:12Z","updated_at":"2026-04-11T02:54:57Z"},"id":"71cc9c82c6025795c128","created_at":"2014-10-14T13:44:36Z","updated_at":"2016-06-06T20:16:46Z"},{"url":"https://api.github.com/gists/beaac5e0c3a7f988059a","user":{"login":"wboykinm","id":735463,"node_id":"MDQ6VXNlcjczNTQ2Mw==","avatar_url":"https://avatars.githubusercontent.com/u/735463?v=4","gravatar_id":"","url":"https://api.github.com/users/wboykinm","html_url":"https://github.com/wboykinm","followers_url":"https://api.github.com/users/wboykinm/followers","following_url":"https://api.github.com/users/wboykinm/following{/other_user}","gists_url":"https://api.github.com/users/wboykinm/gists{/gist_id}","starred_url":"https://api.github.com/users/wboykinm/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/wboykinm/subscriptions","organizations_url":"https://api.github.com/users/wboykinm/orgs","repos_url":"https://api.github.com/users/wboykinm/repos","events_url":"https://api.github.com/users/wboykinm/events{/privacy}","received_events_url":"https://api.github.com/users/wboykinm/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Bill Morris","company":"@Mapbox","blog":"https://billmorris.io","location":"Burlington, VT","email":null,"hireable":true,"bio":"full-stack dilettante","twitter_username":null,"public_repos":174,"public_gists":615,"followers":209,"following":107,"created_at":"2011-04-17T23:08:12Z","updated_at":"2026-06-02T20:38:59Z"},"id":"beaac5e0c3a7f988059a","created_at":"2014-11-17T14:33:37Z","updated_at":"2015-08-29T14:09:41Z"},{"url":"https://api.github.com/gists/e7182a82862071b405b5","user":{"login":"git-ashish","id":2697421,"node_id":"MDQ6VXNlcjI2OTc0MjE=","avatar_url":"https://avatars.githubusercontent.com/u/2697421?v=4","gravatar_id":"","url":"https://api.github.com/users/git-ashish","html_url":"https://github.com/git-ashish","followers_url":"https://api.github.com/users/git-ashish/followers","following_url":"https://api.github.com/users/git-ashish/following{/other_user}","gists_url":"https://api.github.com/users/git-ashish/gists{/gist_id}","starred_url":"https://api.github.com/users/git-ashish/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/git-ashish/subscriptions","organizations_url":"https://api.github.com/users/git-ashish/orgs","repos_url":"https://api.github.com/users/git-ashish/repos","events_url":"https://api.github.com/users/git-ashish/events{/privacy}","received_events_url":"https://api.github.com/users/git-ashish/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Ashish Singh","company":null,"blog":"https://iashishsingh.com","location":"Vadodara, Gujarat, India","email":null,"hireable":true,"bio":"Freelance Data Visualisation Consultant","twitter_username":null,"public_repos":153,"public_gists":157,"followers":21,"following":57,"created_at":"2012-11-01T08:37:06Z","updated_at":"2026-04-28T16:36:13Z"},"id":"e7182a82862071b405b5","created_at":"2015-02-20T07:27:07Z","updated_at":"2015-08-29T14:15:48Z"},{"url":"https://api.github.com/gists/b8d84abf49414b20963e","user":{"login":"blahah","id":836040,"node_id":"MDQ6VXNlcjgzNjA0MA==","avatar_url":"https://avatars.githubusercontent.com/u/836040?v=4","gravatar_id":"","url":"https://api.github.com/users/blahah","html_url":"https://github.com/blahah","followers_url":"https://api.github.com/users/blahah/followers","following_url":"https://api.github.com/users/blahah/following{/other_user}","gists_url":"https://api.github.com/users/blahah/gists{/gist_id}","starred_url":"https://api.github.com/users/blahah/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/blahah/subscriptions","organizations_url":"https://api.github.com/users/blahah/orgs","repos_url":"https://api.github.com/users/blahah/repos","events_url":"https://api.github.com/users/blahah/events{/privacy}","received_events_url":"https://api.github.com/users/blahah/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Rik Smith-Unna","company":"upward spiral ∞⟨X∴↯⟩∞ ","blog":"","location":"Bristol / Berlin / Nairobi","email":null,"hireable":null,"bio":"∞⟨X∴↯⟩∞\r\n","twitter_username":"blahah404","public_repos":262,"public_gists":103,"followers":346,"following":124,"created_at":"2011-06-07T20:48:07Z","updated_at":"2026-05-26T09:20:07Z"},"id":"b8d84abf49414b20963e","created_at":"2015-10-18T11:34:19Z","updated_at":"2015-10-18T11:36:58Z"},{"url":"https://api.github.com/gists/19f39b107418257cda82","user":{"login":"redgeler","id":7779933,"node_id":"MDQ6VXNlcjc3Nzk5MzM=","avatar_url":"https://avatars.githubusercontent.com/u/7779933?v=4","gravatar_id":"","url":"https://api.github.com/users/redgeler","html_url":"https://github.com/redgeler","followers_url":"https://api.github.com/users/redgeler/followers","following_url":"https://api.github.com/users/redgeler/following{/other_user}","gists_url":"https://api.github.com/users/redgeler/gists{/gist_id}","starred_url":"https://api.github.com/users/redgeler/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/redgeler/subscriptions","organizations_url":"https://api.github.com/users/redgeler/orgs","repos_url":"https://api.github.com/users/redgeler/repos","events_url":"https://api.github.com/users/redgeler/events{/privacy}","received_events_url":"https://api.github.com/users/redgeler/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Rob Edgeler","company":null,"blog":"","location":"UK","email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":4,"public_gists":1,"followers":2,"following":0,"created_at":"2014-06-03T11:11:52Z","updated_at":"2025-05-21T17:24:52Z"},"id":"19f39b107418257cda82","created_at":"2016-02-26T15:58:07Z","updated_at":"2016-02-26T15:58:07Z"},{"url":"https://api.github.com/gists/4010d39d76936028a6dd","user":{"login":"djbutler","id":172913,"node_id":"MDQ6VXNlcjE3MjkxMw==","avatar_url":"https://avatars.githubusercontent.com/u/172913?v=4","gravatar_id":"","url":"https://api.github.com/users/djbutler","html_url":"https://github.com/djbutler","followers_url":"https://api.github.com/users/djbutler/followers","following_url":"https://api.github.com/users/djbutler/following{/other_user}","gists_url":"https://api.github.com/users/djbutler/gists{/gist_id}","starred_url":"https://api.github.com/users/djbutler/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/djbutler/subscriptions","organizations_url":"https://api.github.com/users/djbutler/orgs","repos_url":"https://api.github.com/users/djbutler/repos","events_url":"https://api.github.com/users/djbutler/events{/privacy}","received_events_url":"https://api.github.com/users/djbutler/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Dan Butler","company":"Ideogram","blog":"","location":"New York, NY","email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":30,"public_gists":6,"followers":20,"following":28,"created_at":"2009-12-28T07:31:00Z","updated_at":"2026-06-09T17:16:18Z"},"id":"4010d39d76936028a6dd","created_at":"2016-02-26T18:17:56Z","updated_at":"2016-02-26T19:34:11Z"},{"url":"https://api.github.com/gists/7c5fce7837dbddeb561f7cf30c3bc496","user":{"login":"dogobox","id":10898093,"node_id":"MDQ6VXNlcjEwODk4MDkz","avatar_url":"https://avatars.githubusercontent.com/u/10898093?v=4","gravatar_id":"","url":"https://api.github.com/users/dogobox","html_url":"https://github.com/dogobox","followers_url":"https://api.github.com/users/dogobox/followers","following_url":"https://api.github.com/users/dogobox/following{/other_user}","gists_url":"https://api.github.com/users/dogobox/gists{/gist_id}","starred_url":"https://api.github.com/users/dogobox/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dogobox/subscriptions","organizations_url":"https://api.github.com/users/dogobox/orgs","repos_url":"https://api.github.com/users/dogobox/repos","events_url":"https://api.github.com/users/dogobox/events{/privacy}","received_events_url":"https://api.github.com/users/dogobox/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Casey ","company":null,"blog":"","location":"Hoboken, NJ","email":"dogobox@users.noreply.github.com","hireable":null,"bio":null,"twitter_username":null,"public_repos":75,"public_gists":46,"followers":4,"following":0,"created_at":"2015-02-07T15:47:46Z","updated_at":"2022-11-02T11:21:09Z"},"id":"7c5fce7837dbddeb561f7cf30c3bc496","created_at":"2016-04-26T08:13:54Z","updated_at":"2016-04-26T08:35:58Z"},{"url":"https://api.github.com/gists/c36925e023c7474c07b220eebe41cc3a","user":{"login":"woht","id":23205267,"node_id":"MDQ6VXNlcjIzMjA1MjY3","avatar_url":"https://avatars.githubusercontent.com/u/23205267?v=4","gravatar_id":"","url":"https://api.github.com/users/woht","html_url":"https://github.com/woht","followers_url":"https://api.github.com/users/woht/followers","following_url":"https://api.github.com/users/woht/following{/other_user}","gists_url":"https://api.github.com/users/woht/gists{/gist_id}","starred_url":"https://api.github.com/users/woht/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/woht/subscriptions","organizations_url":"https://api.github.com/users/woht/orgs","repos_url":"https://api.github.com/users/woht/repos","events_url":"https://api.github.com/users/woht/events{/privacy}","received_events_url":"https://api.github.com/users/woht/received_events","type":"User","user_view_type":"public","site_admin":false,"name":null,"company":null,"blog":"","location":null,"email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":1,"public_gists":1,"followers":0,"following":0,"created_at":"2016-11-02T03:41:14Z","updated_at":"2016-11-02T03:41:14Z"},"id":"c36925e023c7474c07b220eebe41cc3a","created_at":"2016-11-02T05:03:43Z","updated_at":"2016-11-02T05:03:43Z"},{"url":"https://api.github.com/gists/c737862fbad813abeee8de4d0ff3a297","user":{"login":"alowe13","id":4349601,"node_id":"MDQ6VXNlcjQzNDk2MDE=","avatar_url":"https://avatars.githubusercontent.com/u/4349601?v=4","gravatar_id":"","url":"https://api.github.com/users/alowe13","html_url":"https://github.com/alowe13","followers_url":"https://api.github.com/users/alowe13/followers","following_url":"https://api.github.com/users/alowe13/following{/other_user}","gists_url":"https://api.github.com/users/alowe13/gists{/gist_id}","starred_url":"https://api.github.com/users/alowe13/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/alowe13/subscriptions","organizations_url":"https://api.github.com/users/alowe13/orgs","repos_url":"https://api.github.com/users/alowe13/repos","events_url":"https://api.github.com/users/alowe13/events{/privacy}","received_events_url":"https://api.github.com/users/alowe13/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":"2013-05-05T23:51:11Z","updated_at":"2020-08-15T21:31:43Z"},"id":"c737862fbad813abeee8de4d0ff3a297","created_at":"2017-01-09T18:23:31Z","updated_at":"2017-01-09T18:23:32Z"},{"url":"https://api.github.com/gists/09b2b3d821cd4a8f6073da1b282df057","user":{"login":"morungos","id":442090,"node_id":"MDQ6VXNlcjQ0MjA5MA==","avatar_url":"https://avatars.githubusercontent.com/u/442090?v=4","gravatar_id":"","url":"https://api.github.com/users/morungos","html_url":"https://github.com/morungos","followers_url":"https://api.github.com/users/morungos/followers","following_url":"https://api.github.com/users/morungos/following{/other_user}","gists_url":"https://api.github.com/users/morungos/gists{/gist_id}","starred_url":"https://api.github.com/users/morungos/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/morungos/subscriptions","organizations_url":"https://api.github.com/users/morungos/orgs","repos_url":"https://api.github.com/users/morungos/repos","events_url":"https://api.github.com/users/morungos/events{/privacy}","received_events_url":"https://api.github.com/users/morungos/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Stuart Watt","company":null,"blog":"https://morungos.com","location":"Halifax, Nova Scotia","email":"morungos@gmail.com","hireable":null,"bio":"Full stack developer/architect/scientist: JavaScript/TypeScript, Perl, R, Java, Scala, C#, C/C++, Python, Common Lisp","twitter_username":null,"public_repos":76,"public_gists":14,"followers":25,"following":8,"created_at":"2010-10-16T18:16:00Z","updated_at":"2026-05-26T00:35:15Z"},"id":"09b2b3d821cd4a8f6073da1b282df057","created_at":"2017-08-09T14:24:23Z","updated_at":"2017-08-09T14:24:24Z"},{"url":"https://api.github.com/gists/cabc4b76f1cb9833b1ca2eaa488dfd91","user":{"login":"Bklyn","id":64128,"node_id":"MDQ6VXNlcjY0MTI4","avatar_url":"https://avatars.githubusercontent.com/u/64128?v=4","gravatar_id":"","url":"https://api.github.com/users/Bklyn","html_url":"https://github.com/Bklyn","followers_url":"https://api.github.com/users/Bklyn/followers","following_url":"https://api.github.com/users/Bklyn/following{/other_user}","gists_url":"https://api.github.com/users/Bklyn/gists{/gist_id}","starred_url":"https://api.github.com/users/Bklyn/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Bklyn/subscriptions","organizations_url":"https://api.github.com/users/Bklyn/orgs","repos_url":"https://api.github.com/users/Bklyn/repos","events_url":"https://api.github.com/users/Bklyn/events{/privacy}","received_events_url":"https://api.github.com/users/Bklyn/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Caleb Epstein","company":"Brooklyn Dust Bunny Mfg.","blog":"","location":"Location, Location, Location","email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":32,"public_gists":7,"followers":14,"following":8,"created_at":"2009-03-17T02:02:38Z","updated_at":"2026-06-09T18:41:43Z"},"id":"cabc4b76f1cb9833b1ca2eaa488dfd91","created_at":"2017-10-11T16:02:10Z","updated_at":"2017-10-11T16:07:32Z"},{"url":"https://api.github.com/gists/52c63465e8669e4f27a80c40b0b80cbe","user":{"login":"aaronkyle","id":2301690,"node_id":"MDQ6VXNlcjIzMDE2OTA=","avatar_url":"https://avatars.githubusercontent.com/u/2301690?v=4","gravatar_id":"","url":"https://api.github.com/users/aaronkyle","html_url":"https://github.com/aaronkyle","followers_url":"https://api.github.com/users/aaronkyle/followers","following_url":"https://api.github.com/users/aaronkyle/following{/other_user}","gists_url":"https://api.github.com/users/aaronkyle/gists{/gist_id}","starred_url":"https://api.github.com/users/aaronkyle/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/aaronkyle/subscriptions","organizations_url":"https://api.github.com/users/aaronkyle/orgs","repos_url":"https://api.github.com/users/aaronkyle/repos","events_url":"https://api.github.com/users/aaronkyle/events{/privacy}","received_events_url":"https://api.github.com/users/aaronkyle/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Aaron Kyle Dennis","company":null,"blog":"http://categori.se","location":"digital universe, earth","email":null,"hireable":true,"bio":null,"twitter_username":null,"public_repos":148,"public_gists":47,"followers":8,"following":2,"created_at":"2012-09-07T18:33:25Z","updated_at":"2026-06-05T15:32:06Z"},"id":"52c63465e8669e4f27a80c40b0b80cbe","created_at":"2018-03-31T21:01:35Z","updated_at":"2018-03-31T21:01:35Z"},{"url":"https://api.github.com/gists/8901f4f9de49563352d593d7ae33dda7","user":{"login":"kjainatplaceiq","id":12749367,"node_id":"MDQ6VXNlcjEyNzQ5MzY3","avatar_url":"https://avatars.githubusercontent.com/u/12749367?v=4","gravatar_id":"","url":"https://api.github.com/users/kjainatplaceiq","html_url":"https://github.com/kjainatplaceiq","followers_url":"https://api.github.com/users/kjainatplaceiq/followers","following_url":"https://api.github.com/users/kjainatplaceiq/following{/other_user}","gists_url":"https://api.github.com/users/kjainatplaceiq/gists{/gist_id}","starred_url":"https://api.github.com/users/kjainatplaceiq/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/kjainatplaceiq/subscriptions","organizations_url":"https://api.github.com/users/kjainatplaceiq/orgs","repos_url":"https://api.github.com/users/kjainatplaceiq/repos","events_url":"https://api.github.com/users/kjainatplaceiq/events{/privacy}","received_events_url":"https://api.github.com/users/kjainatplaceiq/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Kanika Jain","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":"2015-06-04T15:10:51Z","updated_at":"2017-11-22T15:55:51Z"},"id":"8901f4f9de49563352d593d7ae33dda7","created_at":"2018-04-08T05:25:00Z","updated_at":"2018-04-08T05:25:00Z"},{"url":"https://api.github.com/gists/fc442ab8533b614bcf3fe0d512d0aec7","user":{"login":"koaben","id":964063,"node_id":"MDQ6VXNlcjk2NDA2Mw==","avatar_url":"https://avatars.githubusercontent.com/u/964063?v=4","gravatar_id":"","url":"https://api.github.com/users/koaben","html_url":"https://github.com/koaben","followers_url":"https://api.github.com/users/koaben/followers","following_url":"https://api.github.com/users/koaben/following{/other_user}","gists_url":"https://api.github.com/users/koaben/gists{/gist_id}","starred_url":"https://api.github.com/users/koaben/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/koaben/subscriptions","organizations_url":"https://api.github.com/users/koaben/orgs","repos_url":"https://api.github.com/users/koaben/repos","events_url":"https://api.github.com/users/koaben/events{/privacy}","received_events_url":"https://api.github.com/users/koaben/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Koen Aben","company":null,"blog":"","location":"eindhoven","email":null,"hireable":null,"bio":"Software engineer Eindhoven","twitter_username":"koenusTweets","public_repos":70,"public_gists":2,"followers":13,"following":116,"created_at":"2011-08-07T06:12:24Z","updated_at":"2024-11-09T17:15:39Z"},"id":"fc442ab8533b614bcf3fe0d512d0aec7","created_at":"2018-09-16T13:50:21Z","updated_at":"2018-09-16T13:50:21Z"},{"url":"https://api.github.com/gists/c9c21c154b5fa70b4ee45053fb5e9bda","user":{"login":"pqthang711","id":41585483,"node_id":"MDQ6VXNlcjQxNTg1NDgz","avatar_url":"https://avatars.githubusercontent.com/u/41585483?v=4","gravatar_id":"","url":"https://api.github.com/users/pqthang711","html_url":"https://github.com/pqthang711","followers_url":"https://api.github.com/users/pqthang711/followers","following_url":"https://api.github.com/users/pqthang711/following{/other_user}","gists_url":"https://api.github.com/users/pqthang711/gists{/gist_id}","starred_url":"https://api.github.com/users/pqthang711/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/pqthang711/subscriptions","organizations_url":"https://api.github.com/users/pqthang711/orgs","repos_url":"https://api.github.com/users/pqthang711/repos","events_url":"https://api.github.com/users/pqthang711/events{/privacy}","received_events_url":"https://api.github.com/users/pqthang711/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":16,"public_gists":6,"followers":0,"following":0,"created_at":"2018-07-23T15:20:01Z","updated_at":"2026-05-11T22:09:36Z"},"id":"c9c21c154b5fa70b4ee45053fb5e9bda","created_at":"2018-12-16T13:49:48Z","updated_at":"2018-12-16T13:49:48Z"},{"url":"https://api.github.com/gists/20586c306248ef8d0e6e34030d7507c8","user":{"login":"glocknginee22","id":35532631,"node_id":"MDQ6VXNlcjM1NTMyNjMx","avatar_url":"https://avatars.githubusercontent.com/u/35532631?v=4","gravatar_id":"","url":"https://api.github.com/users/glocknginee22","html_url":"https://github.com/glocknginee22","followers_url":"https://api.github.com/users/glocknginee22/followers","following_url":"https://api.github.com/users/glocknginee22/following{/other_user}","gists_url":"https://api.github.com/users/glocknginee22/gists{/gist_id}","starred_url":"https://api.github.com/users/glocknginee22/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/glocknginee22/subscriptions","organizations_url":"https://api.github.com/users/glocknginee22/orgs","repos_url":"https://api.github.com/users/glocknginee22/repos","events_url":"https://api.github.com/users/glocknginee22/events{/privacy}","received_events_url":"https://api.github.com/users/glocknginee22/received_events","type":"User","user_view_type":"public","site_admin":false,"name":null,"company":null,"blog":"","location":null,"email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":4,"public_gists":1,"followers":0,"following":0,"created_at":"2018-01-17T14:35:59Z","updated_at":"2024-10-01T19:33:47Z"},"id":"20586c306248ef8d0e6e34030d7507c8","created_at":"2018-12-18T20:19:31Z","updated_at":"2018-12-18T20:19:32Z"},{"url":"https://api.github.com/gists/f1d3788c34f9e0f1af865093fa26c18d","user":{"login":"kjgarza","id":1092861,"node_id":"MDQ6VXNlcjEwOTI4NjE=","avatar_url":"https://avatars.githubusercontent.com/u/1092861?v=4","gravatar_id":"","url":"https://api.github.com/users/kjgarza","html_url":"https://github.com/kjgarza","followers_url":"https://api.github.com/users/kjgarza/followers","following_url":"https://api.github.com/users/kjgarza/following{/other_user}","gists_url":"https://api.github.com/users/kjgarza/gists{/gist_id}","starred_url":"https://api.github.com/users/kjgarza/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/kjgarza/subscriptions","organizations_url":"https://api.github.com/users/kjgarza/orgs","repos_url":"https://api.github.com/users/kjgarza/repos","events_url":"https://api.github.com/users/kjgarza/events{/privacy}","received_events_url":"https://api.github.com/users/kjgarza/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Kristian Garza","company":null,"blog":"http://uk.linkedin.com/in/kjgarza/","location":"Berlin","email":"kj.garza@gmail.com","hireable":true,"bio":"AI Engineer | Making research more open, efficient, and effective through code and AI","twitter_username":"kriztean","public_repos":66,"public_gists":128,"followers":23,"following":15,"created_at":"2011-09-30T14:30:56Z","updated_at":"2026-05-29T12:13:54Z"},"id":"f1d3788c34f9e0f1af865093fa26c18d","created_at":"2019-04-16T15:50:11Z","updated_at":"2019-09-13T10:41:19Z"},{"url":"https://api.github.com/gists/95ad11ecb64cc9b3911004b7da4e772d","user":{"login":"mohanmca","id":71809,"node_id":"MDQ6VXNlcjcxODA5","avatar_url":"https://avatars.githubusercontent.com/u/71809?v=4","gravatar_id":"","url":"https://api.github.com/users/mohanmca","html_url":"https://github.com/mohanmca","followers_url":"https://api.github.com/users/mohanmca/followers","following_url":"https://api.github.com/users/mohanmca/following{/other_user}","gists_url":"https://api.github.com/users/mohanmca/gists{/gist_id}","starred_url":"https://api.github.com/users/mohanmca/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mohanmca/subscriptions","organizations_url":"https://api.github.com/users/mohanmca/orgs","repos_url":"https://api.github.com/users/mohanmca/repos","events_url":"https://api.github.com/users/mohanmca/events{/privacy}","received_events_url":"https://api.github.com/users/mohanmca/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Mohan Narayanaswamy","company":null,"blog":"","location":null,"email":null,"hireable":null,"bio":"Just code!\r\nAls refer : https://github.com/teamdailypractice","twitter_username":null,"public_repos":222,"public_gists":50,"followers":38,"following":84,"created_at":"2009-04-08T15:25:02Z","updated_at":"2026-06-03T22:04:29Z"},"id":"95ad11ecb64cc9b3911004b7da4e772d","created_at":"2019-05-24T22:41:42Z","updated_at":"2019-05-24T22:41:43Z"},{"url":"https://api.github.com/gists/0e25903b8d11bca2888ca9e211ead3ae","user":{"login":"ix4","id":38112035,"node_id":"MDQ6VXNlcjM4MTEyMDM1","avatar_url":"https://avatars.githubusercontent.com/u/38112035?v=4","gravatar_id":"","url":"https://api.github.com/users/ix4","html_url":"https://github.com/ix4","followers_url":"https://api.github.com/users/ix4/followers","following_url":"https://api.github.com/users/ix4/following{/other_user}","gists_url":"https://api.github.com/users/ix4/gists{/gist_id}","starred_url":"https://api.github.com/users/ix4/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ix4/subscriptions","organizations_url":"https://api.github.com/users/ix4/orgs","repos_url":"https://api.github.com/users/ix4/repos","events_url":"https://api.github.com/users/ix4/events{/privacy}","received_events_url":"https://api.github.com/users/ix4/received_events","type":"User","user_view_type":"public","site_admin":false,"name":null,"company":null,"blog":"","location":null,"email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":12,"public_gists":1448,"followers":68,"following":94,"created_at":"2018-04-05T17:37:06Z","updated_at":"2026-04-13T03:04:38Z"},"id":"0e25903b8d11bca2888ca9e211ead3ae","created_at":"2019-06-13T23:15:06Z","updated_at":"2019-06-13T23:15:06Z"},{"url":"https://api.github.com/gists/9fb5f6f0a820763704c6635e57602eb5","user":{"login":"jonrhall","id":5432730,"node_id":"MDQ6VXNlcjU0MzI3MzA=","avatar_url":"https://avatars.githubusercontent.com/u/5432730?v=4","gravatar_id":"","url":"https://api.github.com/users/jonrhall","html_url":"https://github.com/jonrhall","followers_url":"https://api.github.com/users/jonrhall/followers","following_url":"https://api.github.com/users/jonrhall/following{/other_user}","gists_url":"https://api.github.com/users/jonrhall/gists{/gist_id}","starred_url":"https://api.github.com/users/jonrhall/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jonrhall/subscriptions","organizations_url":"https://api.github.com/users/jonrhall/orgs","repos_url":"https://api.github.com/users/jonrhall/repos","events_url":"https://api.github.com/users/jonrhall/events{/privacy}","received_events_url":"https://api.github.com/users/jonrhall/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Jon Hall","company":"Amazon Web Services","blog":"https://jonhall.dev","location":"Portland, OR","email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":7,"public_gists":2,"followers":6,"following":0,"created_at":"2013-09-11T04:18:34Z","updated_at":"2026-03-25T23:46:56Z"},"id":"9fb5f6f0a820763704c6635e57602eb5","created_at":"2019-07-02T05:39:54Z","updated_at":"2019-07-02T05:39:54Z"},{"url":"https://api.github.com/gists/f72da251d92619468b0f6fde335cf101","user":{"login":"styluxlive","id":97786197,"node_id":"U_kgDOBdQZVQ","avatar_url":"https://avatars.githubusercontent.com/u/97786197?v=4","gravatar_id":"","url":"https://api.github.com/users/styluxlive","html_url":"https://github.com/styluxlive","followers_url":"https://api.github.com/users/styluxlive/followers","following_url":"https://api.github.com/users/styluxlive/following{/other_user}","gists_url":"https://api.github.com/users/styluxlive/gists{/gist_id}","starred_url":"https://api.github.com/users/styluxlive/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/styluxlive/subscriptions","organizations_url":"https://api.github.com/users/styluxlive/orgs","repos_url":"https://api.github.com/users/styluxlive/repos","events_url":"https://api.github.com/users/styluxlive/events{/privacy}","received_events_url":"https://api.github.com/users/styluxlive/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Jabulani Mdluli","company":"Ckrit Platform","blog":"","location":"Durban","email":null,"hireable":null,"bio":"Interested In All Programming Languages. ","twitter_username":null,"public_repos":80,"public_gists":7,"followers":11,"following":69,"created_at":"2022-01-15T10:27:07Z","updated_at":"2026-05-31T00:59:15Z"},"id":"f72da251d92619468b0f6fde335cf101","created_at":"2023-11-08T07:47:05Z","updated_at":"2023-11-08T07:47:05Z"}],"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":"6eb742223b9795260ba62150196ed0ae4a461e39","committed_at":"2016-02-09T01:43:44Z","change_status":{"total":1,"additions":1,"deletions":0},"url":"https://api.github.com/gists/4061961/6eb742223b9795260ba62150196ed0ae4a461e39"},{"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":"7bad035a290c27c83ee3bc99261a4849950557b1","committed_at":"2015-10-31T01:14:39Z","change_status":{"total":2,"additions":1,"deletions":1},"url":"https://api.github.com/gists/4061961/7bad035a290c27c83ee3bc99261a4849950557b1"},{"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":"c5e6a4172e1fbda212b16cfc0855a93e455810aa","committed_at":"2015-06-11T19:31:52Z","change_status":{"total":4,"additions":3,"deletions":1},"url":"https://api.github.com/gists/4061961/c5e6a4172e1fbda212b16cfc0855a93e455810aa"},{"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":"3b1a3d3505d4a4d87555e12d9f223834bb6c7c09","committed_at":"2012-11-13T03:17:44Z","change_status":{"total":0,"additions":0,"deletions":0},"url":"https://api.github.com/gists/4061961/3b1a3d3505d4a4d87555e12d9f223834bb6c7c09"},{"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":"f7b36df0882741cffb5372ad01939f324f19a03a","committed_at":"2012-11-12T21:21:31Z","change_status":{"total":1,"additions":1,"deletions":0},"url":"https://api.github.com/gists/4061961/f7b36df0882741cffb5372ad01939f324f19a03a"},{"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":"58a05c7770396637c71e4b9e2e0a68b326004f87","committed_at":"2012-11-12T21:19:50Z","change_status":{"total":4,"additions":2,"deletions":2},"url":"https://api.github.com/gists/4061961/58a05c7770396637c71e4b9e2e0a68b326004f87"},{"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":"e2262349f719033a269b583dcdb44043606c65bd","committed_at":"2012-11-12T21:18:37Z","change_status":{"total":20,"additions":20,"deletions":0},"url":"https://api.github.com/gists/4061961/e2262349f719033a269b583dcdb44043606c65bd"},{"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":"b22a2473f1a1f345ee84d9a35aa75e9fc28c3623","committed_at":"2012-11-12T21:17:49Z","change_status":{"total":316,"additions":316,"deletions":0},"url":"https://api.github.com/gists/4061961/b22a2473f1a1f345ee84d9a35aa75e9fc28c3623"}],"truncated":false}