{"url":"https://api.github.com/gists/1134768","forks_url":"https://api.github.com/gists/1134768/forks","commits_url":"https://api.github.com/gists/1134768/commits","id":"1134768","node_id":"MDQ6R2lzdDExMzQ3Njg=","git_pull_url":"https://gist.github.com/1134768.git","git_push_url":"https://gist.github.com/1134768.git","html_url":"https://gist.github.com/mbostock/1134768","files":{".block":{"filename":".block","type":"text/plain","language":null,"raw_url":"https://gist.githubusercontent.com/mbostock/1134768/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/1134768/raw/a1c8325c948768ffe80f069573aa81a850304896/README.md","size":203,"truncated":false,"content":"A recreation of a [Protovis example](http://mbostock.github.com/protovis/ex/crimea-stacked-bar.html) in [D3](http://d3js.org/) using the [stack layout](https://github.com/mbostock/d3/wiki/Stack-Layout).\n","encoding":"utf-8"},"crimea.tsv":{"filename":"crimea.tsv","type":"text/tab-separated-values","language":"TSV","raw_url":"https://gist.githubusercontent.com/mbostock/1134768/raw/f65effaf5993b21b8ba244fe2e358fe0a1b5c638/crimea.tsv","size":587,"truncated":false,"content":"date\ttotal\tdisease\twounds\tother\n4/1854\t8571\t1\t0\t5\n5/1854\t23333\t12\t0\t9\n6/1854\t28333\t11\t0\t6\n7/1854\t28772\t359\t0\t23\n8/1854\t30246\t828\t1\t30\n9/1854\t30290\t788\t81\t70\n10/1854\t30643\t503\t132\t128\n11/1854\t29736\t844\t287\t106\n12/1854\t32779\t1725\t114\t131\n1/1855\t32393\t2761\t83\t324\n2/1855\t30919\t2120\t42\t361\n3/1855\t30107\t1205\t32\t172\n4/1855\t32252\t477\t48\t57\n5/1855\t35473\t508\t49\t37\n6/1855\t38863\t802\t209\t31\n7/1855\t42647\t382\t134\t33\n8/1855\t44614\t483\t164\t25\n9/1855\t47751\t189\t276\t20\n10/1855\t46852\t128\t53\t18\n11/1855\t37853\t178\t33\t32\n12/1855\t43217\t91\t18\t28\n1/1856\t44212\t42\t2\t48\n2/1856\t43485\t24\t0\t19\n3/1856\t46140\t15\t0\t35\n","encoding":"utf-8"},"index.html":{"filename":"index.html","type":"text/html","language":"HTML","raw_url":"https://gist.githubusercontent.com/mbostock/1134768/raw/874b5b479081e43c4928a102f35887278be6cfca/index.html","size":2343,"truncated":false,"content":"<!DOCTYPE html>\n<meta charset=\"utf-8\">\n<style>\n\n.axis text {\n  font: 10px sans-serif;\n}\n\n.axis line,\n.axis path {\n  fill: none;\n  stroke: #000;\n  shape-rendering: crispEdges;\n}\n\n.axis--x path {\n  display: none;\n}\n\n</style>\n<body>\n<script src=\"//d3js.org/d3.v3.min.js\"></script>\n<script>\n\nvar causes = [\"wounds\", \"other\", \"disease\"];\n\nvar parseDate = d3.time.format(\"%m/%Y\").parse;\n\nvar margin = {top: 20, right: 50, bottom: 30, left: 20},\n    width = 960 - margin.left - margin.right,\n    height = 500 - margin.top - margin.bottom;\n\nvar x = d3.scale.ordinal()\n    .rangeRoundBands([0, width]);\n\nvar y = d3.scale.linear()\n    .rangeRound([height, 0]);\n\nvar z = d3.scale.category10();\n\nvar xAxis = d3.svg.axis()\n    .scale(x)\n    .orient(\"bottom\")\n    .tickFormat(d3.time.format(\"%b\"));\n\nvar yAxis = d3.svg.axis()\n    .scale(y)\n    .orient(\"right\");\n\nvar svg = d3.select(\"body\").append(\"svg\")\n    .attr(\"width\", width + margin.left + margin.right)\n    .attr(\"height\", height + margin.top + margin.bottom)\n  .append(\"g\")\n    .attr(\"transform\", \"translate(\" + margin.left + \",\" + margin.top + \")\");\n\nd3.tsv(\"crimea.tsv\", type, function(error, crimea) {\n  if (error) throw error;\n\n  var layers = d3.layout.stack()(causes.map(function(c) {\n    return crimea.map(function(d) {\n      return {x: d.date, y: d[c]};\n    });\n  }));\n\n  x.domain(layers[0].map(function(d) { return d.x; }));\n  y.domain([0, d3.max(layers[layers.length - 1], function(d) { return d.y0 + d.y; })]).nice();\n\n  var layer = svg.selectAll(\".layer\")\n      .data(layers)\n    .enter().append(\"g\")\n      .attr(\"class\", \"layer\")\n      .style(\"fill\", function(d, i) { return z(i); });\n\n  layer.selectAll(\"rect\")\n      .data(function(d) { return d; })\n    .enter().append(\"rect\")\n      .attr(\"x\", function(d) { return x(d.x); })\n      .attr(\"y\", function(d) { return y(d.y + d.y0); })\n      .attr(\"height\", function(d) { return y(d.y0) - y(d.y + d.y0); })\n      .attr(\"width\", x.rangeBand() - 1);\n\n  svg.append(\"g\")\n      .attr(\"class\", \"axis axis--x\")\n      .attr(\"transform\", \"translate(0,\" + height + \")\")\n      .call(xAxis);\n\n  svg.append(\"g\")\n      .attr(\"class\", \"axis axis--y\")\n      .attr(\"transform\", \"translate(\" + width + \",0)\")\n      .call(yAxis);\n});\n\nfunction type(d) {\n  d.date = parseDate(d.date);\n  causes.forEach(function(c) { d[c] = +d[c]; });\n  return d;\n}\n\n</script>\n","encoding":"utf-8"},"thumbnail.png":{"filename":"thumbnail.png","type":"image/png","language":null,"raw_url":"https://gist.githubusercontent.com/mbostock/1134768/raw/6574aca7fa9636f69e48c97ccf57575b5bcdcbe0/thumbnail.png","size":7412,"truncated":false,"content":"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\na4LpctcgEvDCNu+zM2O9NVT0T9k9k9y3UXqwHOYAulfdIgpupudSiE13ukM+\n5rUhzUNwbHMun9OeM7pbDl7ac8Tkxm9H6etvcd+ZxmTtbEsKU7CzzkQfQO7y\n0eJOrY6zTkZ7rrxFZW7EJvjoWqvvgJEy4cSBCtQOx0oTKGaz2neKSIJfHdLk\nTr9JJJbNlUZjaOeMCjEHISV98tTZToY2kHIArh/b1OGMVG9FrYu1Wh1fRTOF\nH5FlAu9iMYaww3ub5C6vhRYtsmJTR/SDChE8mr+Nb5OQSKqPoOKJJl5X1hGT\nB4EkIDnMu+A5Wkm7ABtvX4ffJeeM7i1iUkWPuC5ePZjW6UxUa7U+IizBqGnj\nrdHDyGkWxk0VQdPGH5rLO2YqfxC5e1+CsrVIsfbJ6qFDmjIRfT1mOnjBKegM\nbyewPG6r1Ck7x1ffHeeM7j0fU0Vfp3e6zghtpd6DiVckvyibyWhiyQxloY3m\nnvRoYXDEUqOFSBMYEFKdZIiYx8cOQLvgMdAg+BBKne5n8YyxJlWoySljgn6/\nbNBzRsXHfHizkEY6Yyj98oE2TNJj4HwiuamRaSqUjK6tTqHsmvU6+k0n3DzO\nltIPnOXUnDzJpG+ObjIn9M+x1C+NC5O8Va4qaawP2/PgkCXcVXW964lpdCxh\n1Gwh0USscNagJEy2bUKG/dQnyV91Q0tLzBZdu2nEHbm3xd4y6Pa5YcAhIpQy\n2dRJtFa7jS2fTs1k9BuoXv4UvmZTweouHaNWhqF2l/TuHgYHsJ8+t23tz5u3\nwzDSPo5/im1bpLrc4RGTg4/nVuqpP5J9upLrYLTw/Z8WHNGzJm0Xb44fVrvY\ndT7NSr2u3svchsbhJ7wwNoWRUqkjn3t03jr5obfKd9Q6nu4e0YCkZHlphpFe\ngnUD5aMUgkbdSbJBnpeuFjCcCS9up9BHoV1BPuyTxoWuuXau5xqlsWYCcKtv\npeYPaNBZqDXUEQ+92y3BhSu30bZc7Twj99kxM8avXzgzPGK22h7euTILK19I\nnb06U7Rw/tTxraun+1nnNIvnBvsXNgqZnIpM0TWyx6N4sn1WU/mrcawlphnT\n4OWFZF19rTXwfB91x+yEtmmm8CN6zmm3iNdK00o+9/z5dPs/zd9Cu+lpxSOr\nivw2qopBhziVwmWANC5JylG4avCyun6ozph005vyRzfAuTxzu+Rh4eayPsqK\n2smjehwbHdEGM3B7sBr4Lv3RTrMGvHHZdpzUNTHT7D/0crAzJ8cy9V49/Lu3\n0FpZVLtIek420As5TSId+T3pibR2Fvg3/4ys/Eihd0oMbrAGWdX/WLqFOg0q\nhm4QJJlmmhlYJPdymo3SvD77w9IkJkZG9HVEz1uuVlXHMk1zB9RQcn+ASotW\nWvvvNAnTXlnpuLaaAY5J1Go0aMCMU7JORGoPmdqLq7sPfR+oZbI4VVUY33He\nw97aOMfa30dAMsPXmHxu+hbJy3qtpRaudY4/+w8jzbIaNXUSzGkHRMyJ3TjJ\n2VlX7RVpo7Y0mTjvjiDvZrWdhRfDHbXhMKUjcMa+7pJJmnRMjJ1VOfxrWqtb\nulI2nNtd8mqtKpPoxlcwcrn0Tascv1ss6jflhyFw5CS12WGtglHWWYUcpmzu\nVx3X/E5uuN2PeGmjFG/n+dtiDbPeLX098G742zeQb1WJdKa2sjhdRpLVd8xO\nZrto65MNO5S3Rwujel+1K50qteqOCGQYtsUsGRbecEeR0+zHVBkM4OHjsNmR\nqEbvAU51aLOTvjRtKcTvUyZmuUySOE3ucgywt1JGZWVZOxDyYGpxPh/jiSFa\nTKMzHR77fqrOhuXAzut1NhOT5bAbmFprqCoriPd30uTV6Bjdtq04RrIXN0gl\n7NNZODEykbpmzHL/4r0VRLxwrDk1jSOxEiaczqriQerS1Bls9vubDdQWFjpt\nolN55Xnk/Fp3bqSHyiP3wyYf9LvATplyhX/lc+X/6ezTg21GU2Tx9C75INP8\ngn0Ko9sD4pSwPY65pYHp70tTGMnntXmBhhaJxcru7gzM6kLKDDh9T88zR0r6\nMiy9TWu4xGQLmIlJ15sp3EUIj3exq4mdRD+yGHK+h2DryDsu8tmcdgZcfdsy\ntjzjrLJlGOgriQPv+zMp6ZM/KhLDSL3ez+THq8HeA20CNNN9KOH3Pkd6JBbP\naCee11kXTsvzG8X9jXgfuds/m//3REwVe9iNTdRWE10352/Bbujlg4q55Axn\nIyOpuj/yfBhtL6WyEphR0jkIKMU3UNKB31k30cTfW9aDjyZLXt8yam3N6syS\nWpZ+QmIYZTb+tpSlkIcqkxLVM0gZhFb6O29zXfM6969GD2NUI3dXyfs/lXto\n8nqnduI2ud/30yxmvzKdn2eumUaIUFmpYmxivK+N6dnLl5eXsUBWcG5uLp2Y\n9ELNRgN+qZT6AxpUhlMU6soEVOFPxDaey4/Q31PyoTaauG3cSV3vWq5V0agX\n1BJEz4ri6CB6H16jzbn6nSP9ynTymHoIghCNQrVnRxhWmY7LH6t3apNCSbZQ\nZpA6GqgMfZr03lknJYPBI6jrMIzVIM910SsKklNqLiwuoFZztNsYVL+m/tpM\n6bODlOHJn2KxiDt37mDq4DSqi9fwzv9+gr/75T9gamrk4YlZLpdRr9dx/vx5\n9d+WyqJudCJTVFR+rCpp9QVXG4bjAln68tmUnMSJjznfWEZl+XasziQk/cFO\nNP8sh2feuv4oZ+5OVPCzAZsGBk6IrOIO6Y/F1Xvwu/CIpbK5JSr5MG9w5Wct\ndZ/F13jKWs32kQfieQ/eh10R3vfgqkzrnUzf6qgCkjlhNzlziweD7qDOst11\nHNUp4jDqlOlKpnb3eY7KSt4Z9TnJs5JNa8qsZp5zqD7jNfW4tgxbKs5Zo/KK\nsU7ghezwQV3Pd/Z20bus1rWpyqyt6/k19zG68WJcJuyG862rI6sbcZR0/u5z\nUu3ufZbWEM6h58Wxod55bcKv+mpHUoEosapLi/pBRL8r6i7ir9YjtyVPiNjK\n6kGV2VjXqs3oO5fajKvhfruuqSPb6fZHNfuK+3W0Wqal6rrTnquntfE7r/bZ\nZ5Nj9wnL72pZnfjbOA5VHa3ts6vK0V5zIjivqa7r16pNnU6oDzp7c0MOtu/2\nVTZwxdII9cMCHM7wn+2fSMWoVqtLpVL6qv03H39Ao5oPv9HGoaeeoErL4dix\no5sCBi5dvI7HjhSxUJkjkmXw4pnNyW3LyyuYu76M6cc41UQGE9OT666HXhN/\nfPcvOPfcORiZADfuLOHpZ55GZk0a93ptBV98ew0H8i7aQUSfBKfOnsVYIbNO\nIF+5dl0lbJ6vlFGlVv/pGz+CY65dofDx+z/8md5hBKaXwWgxi+KBAzg8Nb7u\nnS5fvkWd18dSuUoyKYPS1DSOHZrYMDoG+PyDb5HJ0sjuWnjs+JOYHCmtK3Nv\n9iYWlhvw+HDdlSUcO34aTz1xdH2Za5dx5cYd8Hh+4PBBRG4Rp588tmG4DvHO\nO+9h+tg0/GYb2VwOp0+fXieP+D5Xb84ibvoYf/wxZGnkPjI9jfyGTjFz5S4s\nGozcUoArd5dx/uVzmyxJGPr48q838cSpElnREIdPHN3Uru+9+w4OHzmF6YM5\nXL09hyPHjtPvL6yp6xAffvYFxgt5eK0Ggph+39HH8Pih9e1/+/ZN6tQxKuVF\nLFZ8vPDSi5gaz69/1nvvg7oO1VEe47ksXHKTjh87vO7337p5jyyoj8WleYyX\nitSX8jh78vHNffvzGfj1edgjWeTHD+DE0SPrrjdrZVyb4VhnE636EpFqAi+f\n+8G6Mu3qMi5+9DEcK4Ox8XFExI8TJ08iaxubnDYmvm33jetZHijyxyNN/smn\nt3mowLW7N2COTOHfqLHXYu7WDD5670N8O+ZjcnIKwWSBnPBTmxr5+jdf44u/\nXsb4kSxe/uFPNz3r3q07uHnrFhpLy1SZMa7fWcZjTz6FTMFdt0zzzaXP0CjX\n4eQcNKjzjR48uoGYBm7em0H9bo2sSYNk12RnMm8NMSOSPc2lEF98/l84cog6\nNlnUp195fRMxr12+gaXa3zB3bwWHJ0fxzKs/20TMry9+gff/7xOy0It49oev\n4vDj/qbfFvr0vJU5XPjoC7j5LI3y9iZiGvSuX178FAUnj08vXcHPf/XzTfep\nLN6jjncNX175FK5RwPOvvb7JZ1H3+fgi+eUurNvU+WwX//Kv/76+XRtVXPjT\nBRhxFZNEkKhkodKi9sut3w2xOHsLFz/4ANdnaAA8fW4TMVvVCm7M3MTd2SXk\nMiFm6N8//uVv1hGT22N25io+vLNAHZh3ZrTxwo9/sYmYy9UFXPvbXRpQqlhp\nZXHmLFm59c1BRHLw2YW3kclP4lChhOyBYzhBxFyL+TvzuHz9G8xSfz08TuVO\n/mATMedu3cB7f/wLVsozOP3Mczj72mZ5qSx24OHChxdgOjnkciW8+NIP1h33\nYZK6u/rl52RZx1FpN/DK+deRPWP0dAAGIOXgFjOiEdMnyxQR2ytLSwgNByeO\nrx9Z2K/hHxHGpKupsiy7E3S+EU2SyBFLBlIM42Ojmxx5vgdnZmu26vBIv397\n5Rpee/0n6wge0+hbrtSQL+ZRW6qov5955qlNz2o1a6g2POR5+xLponw+t84f\nUocZkbWISCq3PA+5QgE2S8ANh97WahWSQfH92EnODFcgYq0rU6moUDfiOkbI\nOrFE2uh7xd2QOvbLWeZZ9F7FXHbD+likthNxOc+PMEpW19iwfSEKAyWvrt24\njEzxEB6bmuyxzta5T0yysEm++dJyFWefXl9HMd2nukJSwmZ5mUGeCMkSeON7\ne+0WDSIB3S+gNhtXknf9+1DfiBIq4ym345uvvsaZ517ExEhhg1paRiaXR9D2\nMEvW/MmnT1Gd2pv62vximfpQUcnmArXJxuex1OXBmd2tHNc1uxnu+hOzPK+F\napWuk0Jg1yqghhkdXa9geEWhxdKdfm4uWyDZa2/KCtiRr3zeTVVJU27fsY1B\nAyyx1Ra4zuaPUrFEcvu7rV+ujk8DEVMgEGwrlk2pA4Fg58GOoqgcx7FDn0Cq\nQyB45GBNXv5/AQYAnLOLTKuJ6gsAAAAASUVORK5CYII=\n","encoding":"base64"}},"public":true,"created_at":"2011-08-09T18:16:43Z","updated_at":"2021-09-17T06:42:39Z","description":"Stacked Bar Chart","comments":5,"user":null,"comments_enabled":true,"comments_url":"https://api.github.com/gists/1134768/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/1263900","user":{"login":"jrmoran","id":578897,"node_id":"MDQ6VXNlcjU3ODg5Nw==","avatar_url":"https://avatars.githubusercontent.com/u/578897?v=4","gravatar_id":"","url":"https://api.github.com/users/jrmoran","html_url":"https://github.com/jrmoran","followers_url":"https://api.github.com/users/jrmoran/followers","following_url":"https://api.github.com/users/jrmoran/following{/other_user}","gists_url":"https://api.github.com/users/jrmoran/gists{/gist_id}","starred_url":"https://api.github.com/users/jrmoran/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jrmoran/subscriptions","organizations_url":"https://api.github.com/users/jrmoran/orgs","repos_url":"https://api.github.com/users/jrmoran/repos","events_url":"https://api.github.com/users/jrmoran/events{/privacy}","received_events_url":"https://api.github.com/users/jrmoran/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Jaime","company":null,"blog":"blog.jrmoran.com","location":"New York City","email":null,"hireable":true,"bio":null,"twitter_username":null,"public_repos":25,"public_gists":47,"followers":17,"following":5,"created_at":"2011-01-23T06:24:06Z","updated_at":"2025-11-03T00:20:49Z"},"id":"1263900","created_at":"2011-10-05T07:53:29Z","updated_at":"2015-09-27T11:38:22Z"},{"url":"https://api.github.com/gists/1307434","user":{"login":"johan","id":2459,"node_id":"MDQ6VXNlcjI0NTk=","avatar_url":"https://avatars.githubusercontent.com/u/2459?v=4","gravatar_id":"","url":"https://api.github.com/users/johan","html_url":"https://github.com/johan","followers_url":"https://api.github.com/users/johan/followers","following_url":"https://api.github.com/users/johan/following{/other_user}","gists_url":"https://api.github.com/users/johan/gists{/gist_id}","starred_url":"https://api.github.com/users/johan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/johan/subscriptions","organizations_url":"https://api.github.com/users/johan/orgs","repos_url":"https://api.github.com/users/johan/repos","events_url":"https://api.github.com/users/johan/events{/privacy}","received_events_url":"https://api.github.com/users/johan/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Johan Sundström","company":"Some kind of fruit company","blog":"http://ecmanaut.blogspot.com/","location":"Cupertino, CA, USA","email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":206,"public_gists":221,"followers":263,"following":8,"created_at":"2008-03-06T21:30:28Z","updated_at":"2026-04-13T20:24:14Z"},"id":"1307434","created_at":"2011-10-23T14:46:49Z","updated_at":"2015-09-27T17:38:22Z"},{"url":"https://api.github.com/gists/2148423","user":{"login":"patrickberkeley","id":8364,"node_id":"MDQ6VXNlcjgzNjQ=","avatar_url":"https://avatars.githubusercontent.com/u/8364?v=4","gravatar_id":"","url":"https://api.github.com/users/patrickberkeley","html_url":"https://github.com/patrickberkeley","followers_url":"https://api.github.com/users/patrickberkeley/followers","following_url":"https://api.github.com/users/patrickberkeley/following{/other_user}","gists_url":"https://api.github.com/users/patrickberkeley/gists{/gist_id}","starred_url":"https://api.github.com/users/patrickberkeley/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/patrickberkeley/subscriptions","organizations_url":"https://api.github.com/users/patrickberkeley/orgs","repos_url":"https://api.github.com/users/patrickberkeley/repos","events_url":"https://api.github.com/users/patrickberkeley/events{/privacy}","received_events_url":"https://api.github.com/users/patrickberkeley/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Patrick Berkeley","company":null,"blog":"","location":"Burlington, VT","email":"patrickberkeley@gmail.com","hireable":null,"bio":null,"twitter_username":null,"public_repos":34,"public_gists":74,"followers":37,"following":27,"created_at":"2008-04-24T13:19:31Z","updated_at":"2026-04-07T04:55:13Z"},"id":"2148423","created_at":"2012-03-21T15:27:24Z","updated_at":"2015-10-02T01:57:51Z"},{"url":"https://api.github.com/gists/2232351","user":{"login":"tristang","id":907105,"node_id":"MDQ6VXNlcjkwNzEwNQ==","avatar_url":"https://avatars.githubusercontent.com/u/907105?v=4","gravatar_id":"","url":"https://api.github.com/users/tristang","html_url":"https://github.com/tristang","followers_url":"https://api.github.com/users/tristang/followers","following_url":"https://api.github.com/users/tristang/following{/other_user}","gists_url":"https://api.github.com/users/tristang/gists{/gist_id}","starred_url":"https://api.github.com/users/tristang/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tristang/subscriptions","organizations_url":"https://api.github.com/users/tristang/orgs","repos_url":"https://api.github.com/users/tristang/repos","events_url":"https://api.github.com/users/tristang/events{/privacy}","received_events_url":"https://api.github.com/users/tristang/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"UsabilityHub","company":"Lyssna","blog":"","location":"Melbourne, Australia","email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":17,"public_gists":5,"followers":6,"following":4,"created_at":"2011-07-11T06:14:39Z","updated_at":"2026-03-16T03:15:11Z"},"id":"2232351","created_at":"2012-03-29T01:46:37Z","updated_at":"2015-10-02T10:58:09Z"},{"url":"https://api.github.com/gists/2908586","user":{"login":"anotherjavadude","id":425944,"node_id":"MDQ6VXNlcjQyNTk0NA==","avatar_url":"https://avatars.githubusercontent.com/u/425944?v=4","gravatar_id":"","url":"https://api.github.com/users/anotherjavadude","html_url":"https://github.com/anotherjavadude","followers_url":"https://api.github.com/users/anotherjavadude/followers","following_url":"https://api.github.com/users/anotherjavadude/following{/other_user}","gists_url":"https://api.github.com/users/anotherjavadude/gists{/gist_id}","starred_url":"https://api.github.com/users/anotherjavadude/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/anotherjavadude/subscriptions","organizations_url":"https://api.github.com/users/anotherjavadude/orgs","repos_url":"https://api.github.com/users/anotherjavadude/repos","events_url":"https://api.github.com/users/anotherjavadude/events{/privacy}","received_events_url":"https://api.github.com/users/anotherjavadude/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Sven H.","company":null,"blog":"http://javadude.wordpress.com","location":"Singapore","email":"sven@bighugesystems.com","hireable":null,"bio":null,"twitter_username":null,"public_repos":5,"public_gists":6,"followers":7,"following":2,"created_at":"2010-10-04T04:14:47Z","updated_at":"2025-02-14T16:35:08Z"},"id":"2908586","created_at":"2012-06-11T05:02:09Z","updated_at":"2015-10-06T01:07:53Z"},{"url":"https://api.github.com/gists/3240928","user":{"login":"zeroeth","id":5617,"node_id":"MDQ6VXNlcjU2MTc=","avatar_url":"https://avatars.githubusercontent.com/u/5617?v=4","gravatar_id":"","url":"https://api.github.com/users/zeroeth","html_url":"https://github.com/zeroeth","followers_url":"https://api.github.com/users/zeroeth/followers","following_url":"https://api.github.com/users/zeroeth/following{/other_user}","gists_url":"https://api.github.com/users/zeroeth/gists{/gist_id}","starred_url":"https://api.github.com/users/zeroeth/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zeroeth/subscriptions","organizations_url":"https://api.github.com/users/zeroeth/orgs","repos_url":"https://api.github.com/users/zeroeth/repos","events_url":"https://api.github.com/users/zeroeth/events{/privacy}","received_events_url":"https://api.github.com/users/zeroeth/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"[0]","company":null,"blog":"https://pixelflow.github.io/","location":null,"email":null,"hireable":true,"bio":"I sometimes do things.","twitter_username":null,"public_repos":75,"public_gists":279,"followers":89,"following":67,"created_at":"2008-04-07T17:08:53Z","updated_at":"2025-01-22T02:10:50Z"},"id":"3240928","created_at":"2012-08-02T21:44:00Z","updated_at":"2015-10-07T23:18:18Z"},{"url":"https://api.github.com/gists/3251141","user":{"login":"zeroeth","id":5617,"node_id":"MDQ6VXNlcjU2MTc=","avatar_url":"https://avatars.githubusercontent.com/u/5617?v=4","gravatar_id":"","url":"https://api.github.com/users/zeroeth","html_url":"https://github.com/zeroeth","followers_url":"https://api.github.com/users/zeroeth/followers","following_url":"https://api.github.com/users/zeroeth/following{/other_user}","gists_url":"https://api.github.com/users/zeroeth/gists{/gist_id}","starred_url":"https://api.github.com/users/zeroeth/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zeroeth/subscriptions","organizations_url":"https://api.github.com/users/zeroeth/orgs","repos_url":"https://api.github.com/users/zeroeth/repos","events_url":"https://api.github.com/users/zeroeth/events{/privacy}","received_events_url":"https://api.github.com/users/zeroeth/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"[0]","company":null,"blog":"https://pixelflow.github.io/","location":null,"email":null,"hireable":true,"bio":"I sometimes do things.","twitter_username":null,"public_repos":75,"public_gists":279,"followers":89,"following":67,"created_at":"2008-04-07T17:08:53Z","updated_at":"2025-01-22T02:10:50Z"},"id":"3251141","created_at":"2012-08-03T20:18:18Z","updated_at":"2015-10-08T00:48:02Z"},{"url":"https://api.github.com/gists/6107938","user":{"login":"slowhands","id":4149186,"node_id":"MDQ6VXNlcjQxNDkxODY=","avatar_url":"https://avatars.githubusercontent.com/u/4149186?v=4","gravatar_id":"","url":"https://api.github.com/users/slowhands","html_url":"https://github.com/slowhands","followers_url":"https://api.github.com/users/slowhands/followers","following_url":"https://api.github.com/users/slowhands/following{/other_user}","gists_url":"https://api.github.com/users/slowhands/gists{/gist_id}","starred_url":"https://api.github.com/users/slowhands/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/slowhands/subscriptions","organizations_url":"https://api.github.com/users/slowhands/orgs","repos_url":"https://api.github.com/users/slowhands/repos","events_url":"https://api.github.com/users/slowhands/events{/privacy}","received_events_url":"https://api.github.com/users/slowhands/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Emran Talukder","company":null,"blog":"www.slowhands.io","location":"New England","email":"emran.talukder@icloud.com","hireable":null,"bio":null,"twitter_username":null,"public_repos":21,"public_gists":3,"followers":1,"following":0,"created_at":"2013-04-14T00:35:53Z","updated_at":"2017-08-14T19:46:52Z"},"id":"6107938","created_at":"2013-07-29T21:17:59Z","updated_at":"2015-12-20T09:29:32Z"},{"url":"https://api.github.com/gists/6794546","user":{"login":"schmod","id":1102667,"node_id":"MDQ6VXNlcjExMDI2Njc=","avatar_url":"https://avatars.githubusercontent.com/u/1102667?v=4","gravatar_id":"","url":"https://api.github.com/users/schmod","html_url":"https://github.com/schmod","followers_url":"https://api.github.com/users/schmod/followers","following_url":"https://api.github.com/users/schmod/following{/other_user}","gists_url":"https://api.github.com/users/schmod/gists{/gist_id}","starred_url":"https://api.github.com/users/schmod/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/schmod/subscriptions","organizations_url":"https://api.github.com/users/schmod/orgs","repos_url":"https://api.github.com/users/schmod/repos","events_url":"https://api.github.com/users/schmod/events{/privacy}","received_events_url":"https://api.github.com/users/schmod/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Andrew Schmadel","company":"@Truebill  ","blog":"https://www.howtoquitvim.com","location":"Washington, DC","email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":107,"public_gists":11,"followers":44,"following":14,"created_at":"2011-10-04T18:37:28Z","updated_at":"2026-04-04T20:36:12Z"},"id":"6794546","created_at":"2013-10-02T14:22:50Z","updated_at":"2015-12-24T11:59:10Z"},{"url":"https://api.github.com/gists/9656892","user":{"login":"AmitShah","id":747838,"node_id":"MDQ6VXNlcjc0NzgzOA==","avatar_url":"https://avatars.githubusercontent.com/u/747838?v=4","gravatar_id":"","url":"https://api.github.com/users/AmitShah","html_url":"https://github.com/AmitShah","followers_url":"https://api.github.com/users/AmitShah/followers","following_url":"https://api.github.com/users/AmitShah/following{/other_user}","gists_url":"https://api.github.com/users/AmitShah/gists{/gist_id}","starred_url":"https://api.github.com/users/AmitShah/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/AmitShah/subscriptions","organizations_url":"https://api.github.com/users/AmitShah/orgs","repos_url":"https://api.github.com/users/AmitShah/repos","events_url":"https://api.github.com/users/AmitShah/events{/privacy}","received_events_url":"https://api.github.com/users/AmitShah/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"amitshah","company":null,"blog":"","location":null,"email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":394,"public_gists":26,"followers":47,"following":69,"created_at":"2011-04-23T18:44:07Z","updated_at":"2026-05-10T20:09:08Z"},"id":"9656892","created_at":"2014-03-20T03:56:07Z","updated_at":"2015-08-29T13:57:33Z"},{"url":"https://api.github.com/gists/9742741","user":{"login":"mpschr","id":1090105,"node_id":"MDQ6VXNlcjEwOTAxMDU=","avatar_url":"https://avatars.githubusercontent.com/u/1090105?v=4","gravatar_id":"","url":"https://api.github.com/users/mpschr","html_url":"https://github.com/mpschr","followers_url":"https://api.github.com/users/mpschr/followers","following_url":"https://api.github.com/users/mpschr/following{/other_user}","gists_url":"https://api.github.com/users/mpschr/gists{/gist_id}","starred_url":"https://api.github.com/users/mpschr/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mpschr/subscriptions","organizations_url":"https://api.github.com/users/mpschr/orgs","repos_url":"https://api.github.com/users/mpschr/repos","events_url":"https://api.github.com/users/mpschr/events{/privacy}","received_events_url":"https://api.github.com/users/mpschr/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Michael P Schroeder","company":null,"blog":"","location":null,"email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":41,"public_gists":8,"followers":11,"following":9,"created_at":"2011-09-29T14:48:33Z","updated_at":"2025-12-17T08:56:44Z"},"id":"9742741","created_at":"2014-03-24T15:39:03Z","updated_at":"2015-08-29T13:57:41Z"},{"url":"https://api.github.com/gists/10156411","user":{"login":"jrsconfitto","id":238079,"node_id":"MDQ6VXNlcjIzODA3OQ==","avatar_url":"https://avatars.githubusercontent.com/u/238079?v=4","gravatar_id":"","url":"https://api.github.com/users/jrsconfitto","html_url":"https://github.com/jrsconfitto","followers_url":"https://api.github.com/users/jrsconfitto/followers","following_url":"https://api.github.com/users/jrsconfitto/following{/other_user}","gists_url":"https://api.github.com/users/jrsconfitto/gists{/gist_id}","starred_url":"https://api.github.com/users/jrsconfitto/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jrsconfitto/subscriptions","organizations_url":"https://api.github.com/users/jrsconfitto/orgs","repos_url":"https://api.github.com/users/jrsconfitto/repos","events_url":"https://api.github.com/users/jrsconfitto/events{/privacy}","received_events_url":"https://api.github.com/users/jrsconfitto/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"James Sconfitto","company":"Exele Information Systems, Inc.","blog":"https://jrsconfitto.github.io/","location":"Rochester, NY","email":"james.sconfitto@gmail.com","hireable":null,"bio":null,"twitter_username":null,"public_repos":40,"public_gists":26,"followers":42,"following":76,"created_at":"2010-04-06T16:05:11Z","updated_at":"2026-04-06T18:45:46Z"},"id":"10156411","created_at":"2014-04-08T17:01:59Z","updated_at":"2015-08-29T13:58:26Z"},{"url":"https://api.github.com/gists/38e0c3d69723c48838ae","user":{"login":"jonas-pdx","id":1389469,"node_id":"MDQ6VXNlcjEzODk0Njk=","avatar_url":"https://avatars.githubusercontent.com/u/1389469?v=4","gravatar_id":"","url":"https://api.github.com/users/jonas-pdx","html_url":"https://github.com/jonas-pdx","followers_url":"https://api.github.com/users/jonas-pdx/followers","following_url":"https://api.github.com/users/jonas-pdx/following{/other_user}","gists_url":"https://api.github.com/users/jonas-pdx/gists{/gist_id}","starred_url":"https://api.github.com/users/jonas-pdx/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jonas-pdx/subscriptions","organizations_url":"https://api.github.com/users/jonas-pdx/orgs","repos_url":"https://api.github.com/users/jonas-pdx/repos","events_url":"https://api.github.com/users/jonas-pdx/events{/privacy}","received_events_url":"https://api.github.com/users/jonas-pdx/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"jonas","company":null,"blog":"","location":null,"email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":0,"public_gists":2,"followers":5,"following":1,"created_at":"2012-01-29T18:06:44Z","updated_at":"2026-05-09T05:58:39Z"},"id":"38e0c3d69723c48838ae","created_at":"2014-05-31T22:44:36Z","updated_at":"2015-08-29T14:02:02Z"},{"url":"https://api.github.com/gists/7eec951d4e92d9f3896371b6f4849d10","user":{"login":"cforney","id":16712290,"node_id":"MDQ6VXNlcjE2NzEyMjkw","avatar_url":"https://avatars.githubusercontent.com/u/16712290?v=4","gravatar_id":"","url":"https://api.github.com/users/cforney","html_url":"https://github.com/cforney","followers_url":"https://api.github.com/users/cforney/followers","following_url":"https://api.github.com/users/cforney/following{/other_user}","gists_url":"https://api.github.com/users/cforney/gists{/gist_id}","starred_url":"https://api.github.com/users/cforney/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cforney/subscriptions","organizations_url":"https://api.github.com/users/cforney/orgs","repos_url":"https://api.github.com/users/cforney/repos","events_url":"https://api.github.com/users/cforney/events{/privacy}","received_events_url":"https://api.github.com/users/cforney/received_events","type":"User","user_view_type":"public","site_admin":false,"name":null,"company":null,"blog":"","location":"Bern, Switzerland","email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":4,"public_gists":2,"followers":2,"following":14,"created_at":"2016-01-15T01:20:59Z","updated_at":"2026-02-28T21:56:21Z"},"id":"7eec951d4e92d9f3896371b6f4849d10","created_at":"2018-01-26T21:57:04Z","updated_at":"2018-01-26T21:57:04Z"},{"url":"https://api.github.com/gists/471ab8c16970c80d88287713d7b1e0b0","user":{"login":"elktamer","id":24857894,"node_id":"MDQ6VXNlcjI0ODU3ODk0","avatar_url":"https://avatars.githubusercontent.com/u/24857894?v=4","gravatar_id":"","url":"https://api.github.com/users/elktamer","html_url":"https://github.com/elktamer","followers_url":"https://api.github.com/users/elktamer/followers","following_url":"https://api.github.com/users/elktamer/following{/other_user}","gists_url":"https://api.github.com/users/elktamer/gists{/gist_id}","starred_url":"https://api.github.com/users/elktamer/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/elktamer/subscriptions","organizations_url":"https://api.github.com/users/elktamer/orgs","repos_url":"https://api.github.com/users/elktamer/repos","events_url":"https://api.github.com/users/elktamer/events{/privacy}","received_events_url":"https://api.github.com/users/elktamer/received_events","type":"User","user_view_type":"public","site_admin":false,"name":null,"company":null,"blog":"","location":null,"email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":8,"public_gists":20,"followers":0,"following":0,"created_at":"2016-12-31T22:33:50Z","updated_at":"2020-10-06T14:09:36Z"},"id":"471ab8c16970c80d88287713d7b1e0b0","created_at":"2018-08-23T15:53:35Z","updated_at":"2018-08-23T15:53:35Z"}],"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":"f5e7d201ca4e27f3d09aaca752ead821880512ab","committed_at":"2016-02-09T00:23:34Z","change_status":{"total":1,"additions":1,"deletions":0},"url":"https://api.github.com/gists/1134768/f5e7d201ca4e27f3d09aaca752ead821880512ab"},{"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":"637c9b074596f2b5888837dc443f70c405a8a14c","committed_at":"2015-11-17T20:29:46Z","change_status":{"total":225,"additions":113,"deletions":112},"url":"https://api.github.com/gists/1134768/637c9b074596f2b5888837dc443f70c405a8a14c"},{"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":"9c06d49e36b240740da625f75f7bcfedb710d874","committed_at":"2012-10-12T03:46:51Z","change_status":{"total":0,"additions":0,"deletions":0},"url":"https://api.github.com/gists/1134768/9c06d49e36b240740da625f75f7bcfedb710d874"},{"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":"3e0844efabffe9fe0523e62ec4b3207627d5df93","committed_at":"2011-08-09T18:16:43Z","change_status":{"total":124,"additions":124,"deletions":0},"url":"https://api.github.com/gists/1134768/3e0844efabffe9fe0523e62ec4b3207627d5df93"}],"truncated":false}