{"url":"https://api.github.com/gists/6466603","forks_url":"https://api.github.com/gists/6466603/forks","commits_url":"https://api.github.com/gists/6466603/commits","id":"6466603","node_id":"MDQ6R2lzdDY0NjY2MDM=","git_pull_url":"https://gist.github.com/6466603.git","git_push_url":"https://gist.github.com/6466603.git","html_url":"https://gist.github.com/mbostock/6466603","files":{".block":{"filename":".block","type":"text/plain","language":null,"raw_url":"https://gist.githubusercontent.com/mbostock/6466603/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/6466603/raw/cebb2e72c4f11d6ab20601c71eb88526e0eedc4a/README.md","size":2096,"truncated":false,"content":"Say you have an SVG built dynamically on the client by [D3](http://d3js.org). Now say you want to save it to a static PNG as a fallback for old browsers. There are lots of ways to do this using alternative renderers (such as [Batik](http://xmlgraphics.apache.org/batik/) and [PhantomJS](http://phantomjs.org/)), but what if you want your browser to do it, so that you the static PNG matches the dynamic SVG exactly, down to the subpixel, including transparency?\n\nHere’s how.\n\n## 1. Save as SVG.\n\nUse the [SVG Crowbar](http://nytimes.github.io/svg-crowbar/) bookmarklet to save the SVG to a file. Call this file “fallback.svg”. Open the SVG in your browser to verify that it looks right.\n\nSVG Crowbar helpfully inlines any stylesheets you may have on the page, but you might find you need to edit a few of the styles by hand to get things to look right. For example, the font-family “sans-serif” won’t work in an SVG image, even though it works when the SVG is built client-side; you’ll have to make the font name explicit, such as “Helvetica” or “Arial”.\n\n## 2. Convert SVG to PNG.\n\nCreate and save the following HTML file as “fallback.html”:\n\n```html\n<!DOCTYPE html>\n<meta charset=\"utf-8\">\n<canvas width=\"640\" height=\"3250\"></canvas>\n<script>\n\nvar canvas = document.querySelector(\"canvas\"),\n    context = canvas.getContext(\"2d\");\n\nvar image = new Image;\nimage.src = \"fallback.svg\";\nimage.onload = function() {\n  context.drawImage(image, 0, 0);\n\n  var a = document.createElement(\"a\");\n  a.download = \"fallback.png\";\n  a.href = canvas.toDataURL(\"image/png\");\n  a.click();\n};\n\n</script>\n```\n\nNow start a local webserver in the same directory as your fallback.html file. For example:\n\n```bash\npython -m SimpleHTTPServer 8008 &\n```\n\nLastly, visit <http://localhost:8008/fallback.html>, and it will automatically download fallback.png! Hooray.\n\nNote: if you are using Chrome or Safari, you’ll need to download [Chrome Canary](https://www.google.com/intl/en/chrome/browser/canary.html) due to this [recently-fixed WebKit bug](https://bugs.webkit.org/show_bug.cgi?id=119492).","encoding":"utf-8"}},"public":true,"created_at":"2013-09-06T16:59:13Z","updated_at":"2025-06-27T20:50:08Z","description":"Save SVG as PNG","comments":8,"user":null,"comments_enabled":true,"comments_url":"https://api.github.com/gists/6466603/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/27ed5f876ef97e7625c3","user":{"login":"miklobit","id":1035161,"node_id":"MDQ6VXNlcjEwMzUxNjE=","avatar_url":"https://avatars.githubusercontent.com/u/1035161?v=4","gravatar_id":"","url":"https://api.github.com/users/miklobit","html_url":"https://github.com/miklobit","followers_url":"https://api.github.com/users/miklobit/followers","following_url":"https://api.github.com/users/miklobit/following{/other_user}","gists_url":"https://api.github.com/users/miklobit/gists{/gist_id}","starred_url":"https://api.github.com/users/miklobit/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/miklobit/subscriptions","organizations_url":"https://api.github.com/users/miklobit/orgs","repos_url":"https://api.github.com/users/miklobit/repos","events_url":"https://api.github.com/users/miklobit/events{/privacy}","received_events_url":"https://api.github.com/users/miklobit/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"MK","company":"miklobit","blog":"","location":"Poland","email":null,"hireable":true,"bio":"Open source developer","twitter_username":null,"public_repos":606,"public_gists":128,"followers":6,"following":4,"created_at":"2011-09-08T07:57:29Z","updated_at":"2025-03-16T14:19:38Z"},"id":"27ed5f876ef97e7625c3","created_at":"2014-09-23T14:34:44Z","updated_at":"2015-08-29T14:06:49Z"},{"url":"https://api.github.com/gists/4bfb35b057448cc2b735","user":{"login":"y-lan","id":769291,"node_id":"MDQ6VXNlcjc2OTI5MQ==","avatar_url":"https://avatars.githubusercontent.com/u/769291?v=4","gravatar_id":"","url":"https://api.github.com/users/y-lan","html_url":"https://github.com/y-lan","followers_url":"https://api.github.com/users/y-lan/followers","following_url":"https://api.github.com/users/y-lan/following{/other_user}","gists_url":"https://api.github.com/users/y-lan/gists{/gist_id}","starred_url":"https://api.github.com/users/y-lan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/y-lan/subscriptions","organizations_url":"https://api.github.com/users/y-lan/orgs","repos_url":"https://api.github.com/users/y-lan/repos","events_url":"https://api.github.com/users/y-lan/events{/privacy}","received_events_url":"https://api.github.com/users/y-lan/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Yuyang Lan","company":null,"blog":"","location":"Tokyo, Japan","email":"lanyuyang@gmail.com","hireable":true,"bio":null,"twitter_username":null,"public_repos":81,"public_gists":56,"followers":42,"following":21,"created_at":"2011-05-05T04:19:55Z","updated_at":"2026-04-14T12:21:22Z"},"id":"4bfb35b057448cc2b735","created_at":"2014-10-20T14:17:47Z","updated_at":"2015-08-29T14:07:55Z"},{"url":"https://api.github.com/gists/a984131e4a464ce0de15","user":{"login":"libdc","id":4371172,"node_id":"MDQ6VXNlcjQzNzExNzI=","avatar_url":"https://avatars.githubusercontent.com/u/4371172?v=4","gravatar_id":"","url":"https://api.github.com/users/libdc","html_url":"https://github.com/libdc","followers_url":"https://api.github.com/users/libdc/followers","following_url":"https://api.github.com/users/libdc/following{/other_user}","gists_url":"https://api.github.com/users/libdc/gists{/gist_id}","starred_url":"https://api.github.com/users/libdc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/libdc/subscriptions","organizations_url":"https://api.github.com/users/libdc/orgs","repos_url":"https://api.github.com/users/libdc/repos","events_url":"https://api.github.com/users/libdc/events{/privacy}","received_events_url":"https://api.github.com/users/libdc/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Josh Canaway","company":"DevelopCore","blog":"http://developcore.io","location":null,"email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":2,"public_gists":1,"followers":1,"following":0,"created_at":"2013-05-08T02:11:15Z","updated_at":"2025-06-07T14:06:36Z"},"id":"a984131e4a464ce0de15","created_at":"2015-04-11T12:16:45Z","updated_at":"2015-08-29T14:18:56Z"},{"url":"https://api.github.com/gists/30ba448a91524108e6a9","user":{"login":"dgilperez","id":264590,"node_id":"MDQ6VXNlcjI2NDU5MA==","avatar_url":"https://avatars.githubusercontent.com/u/264590?v=4","gravatar_id":"","url":"https://api.github.com/users/dgilperez","html_url":"https://github.com/dgilperez","followers_url":"https://api.github.com/users/dgilperez/followers","following_url":"https://api.github.com/users/dgilperez/following{/other_user}","gists_url":"https://api.github.com/users/dgilperez/gists{/gist_id}","starred_url":"https://api.github.com/users/dgilperez/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dgilperez/subscriptions","organizations_url":"https://api.github.com/users/dgilperez/orgs","repos_url":"https://api.github.com/users/dgilperez/repos","events_url":"https://api.github.com/users/dgilperez/events{/privacy}","received_events_url":"https://api.github.com/users/dgilperez/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"David Gil","company":null,"blog":"https://dgilperez.com","location":"The North","email":"dgilperez@gmail.com","hireable":null,"bio":null,"twitter_username":"dgilperez","public_repos":203,"public_gists":75,"followers":61,"following":128,"created_at":"2010-05-04T14:40:23Z","updated_at":"2026-04-18T11:41:41Z"},"id":"30ba448a91524108e6a9","created_at":"2015-09-23T00:55:52Z","updated_at":"2015-09-23T00:55:52Z"},{"url":"https://api.github.com/gists/1bf35db8763843bf3ccc","user":{"login":"ningunaparte","id":7590728,"node_id":"MDQ6VXNlcjc1OTA3Mjg=","avatar_url":"https://avatars.githubusercontent.com/u/7590728?v=4","gravatar_id":"","url":"https://api.github.com/users/ningunaparte","html_url":"https://github.com/ningunaparte","followers_url":"https://api.github.com/users/ningunaparte/followers","following_url":"https://api.github.com/users/ningunaparte/following{/other_user}","gists_url":"https://api.github.com/users/ningunaparte/gists{/gist_id}","starred_url":"https://api.github.com/users/ningunaparte/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ningunaparte/subscriptions","organizations_url":"https://api.github.com/users/ningunaparte/orgs","repos_url":"https://api.github.com/users/ningunaparte/repos","events_url":"https://api.github.com/users/ningunaparte/events{/privacy}","received_events_url":"https://api.github.com/users/ningunaparte/received_events","type":"User","user_view_type":"public","site_admin":false,"name":null,"company":null,"blog":"http://www.ningunaparte.net","location":null,"email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":3,"public_gists":7,"followers":6,"following":12,"created_at":"2014-05-15T09:40:43Z","updated_at":"2026-03-28T11:07:39Z"},"id":"1bf35db8763843bf3ccc","created_at":"2015-12-14T12:32:29Z","updated_at":"2015-12-14T12:33:19Z"},{"url":"https://api.github.com/gists/6eaa2ea4b8278ea908b5","user":{"login":"zigi74","id":4866129,"node_id":"MDQ6VXNlcjQ4NjYxMjk=","avatar_url":"https://avatars.githubusercontent.com/u/4866129?v=4","gravatar_id":"","url":"https://api.github.com/users/zigi74","html_url":"https://github.com/zigi74","followers_url":"https://api.github.com/users/zigi74/followers","following_url":"https://api.github.com/users/zigi74/following{/other_user}","gists_url":"https://api.github.com/users/zigi74/gists{/gist_id}","starred_url":"https://api.github.com/users/zigi74/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zigi74/subscriptions","organizations_url":"https://api.github.com/users/zigi74/orgs","repos_url":"https://api.github.com/users/zigi74/repos","events_url":"https://api.github.com/users/zigi74/events{/privacy}","received_events_url":"https://api.github.com/users/zigi74/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":179,"public_gists":8,"followers":1,"following":16,"created_at":"2013-06-28T11:25:48Z","updated_at":"2025-09-07T14:16:17Z"},"id":"6eaa2ea4b8278ea908b5","created_at":"2016-03-24T16:15:29Z","updated_at":"2016-03-24T16:15:30Z"},{"url":"https://api.github.com/gists/f085bdf2115dd15ae0a6bb385bdf8781","user":{"login":"mikecasas","id":11261164,"node_id":"MDQ6VXNlcjExMjYxMTY0","avatar_url":"https://avatars.githubusercontent.com/u/11261164?v=4","gravatar_id":"","url":"https://api.github.com/users/mikecasas","html_url":"https://github.com/mikecasas","followers_url":"https://api.github.com/users/mikecasas/followers","following_url":"https://api.github.com/users/mikecasas/following{/other_user}","gists_url":"https://api.github.com/users/mikecasas/gists{/gist_id}","starred_url":"https://api.github.com/users/mikecasas/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mikecasas/subscriptions","organizations_url":"https://api.github.com/users/mikecasas/orgs","repos_url":"https://api.github.com/users/mikecasas/repos","events_url":"https://api.github.com/users/mikecasas/events{/privacy}","received_events_url":"https://api.github.com/users/mikecasas/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Mike Casas","company":null,"blog":"","location":"United States","email":"mike.casas.public@gmail.com","hireable":null,"bio":"Web developer using .NET","twitter_username":null,"public_repos":6,"public_gists":18,"followers":21,"following":26,"created_at":"2015-03-01T21:30:38Z","updated_at":"2026-04-09T16:18:08Z"},"id":"f085bdf2115dd15ae0a6bb385bdf8781","created_at":"2016-09-09T12:47:54Z","updated_at":"2016-09-09T12:48:45Z"},{"url":"https://api.github.com/gists/748753808c5460fb6aa5b523c9430e72","user":{"login":"imixtron","id":10543720,"node_id":"MDQ6VXNlcjEwNTQzNzIw","avatar_url":"https://avatars.githubusercontent.com/u/10543720?v=4","gravatar_id":"","url":"https://api.github.com/users/imixtron","html_url":"https://github.com/imixtron","followers_url":"https://api.github.com/users/imixtron/followers","following_url":"https://api.github.com/users/imixtron/following{/other_user}","gists_url":"https://api.github.com/users/imixtron/gists{/gist_id}","starred_url":"https://api.github.com/users/imixtron/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/imixtron/subscriptions","organizations_url":"https://api.github.com/users/imixtron/orgs","repos_url":"https://api.github.com/users/imixtron/repos","events_url":"https://api.github.com/users/imixtron/events{/privacy}","received_events_url":"https://api.github.com/users/imixtron/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Imad Ali Khan Abbasi","company":"@careem","blog":"imixtron.com","location":null,"email":null,"hireable":true,"bio":null,"twitter_username":null,"public_repos":14,"public_gists":11,"followers":7,"following":7,"created_at":"2015-01-15T07:47:58Z","updated_at":"2026-04-04T10:03:38Z"},"id":"748753808c5460fb6aa5b523c9430e72","created_at":"2016-12-30T08:30:25Z","updated_at":"2016-12-30T08:30:25Z"},{"url":"https://api.github.com/gists/a778bf2bb4eaef1d8c887aed4d2cafc2","user":{"login":"adongy","id":95287,"node_id":"MDQ6VXNlcjk1Mjg3","avatar_url":"https://avatars.githubusercontent.com/u/95287?v=4","gravatar_id":"","url":"https://api.github.com/users/adongy","html_url":"https://github.com/adongy","followers_url":"https://api.github.com/users/adongy/followers","following_url":"https://api.github.com/users/adongy/following{/other_user}","gists_url":"https://api.github.com/users/adongy/gists{/gist_id}","starred_url":"https://api.github.com/users/adongy/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/adongy/subscriptions","organizations_url":"https://api.github.com/users/adongy/orgs","repos_url":"https://api.github.com/users/adongy/repos","events_url":"https://api.github.com/users/adongy/events{/privacy}","received_events_url":"https://api.github.com/users/adongy/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Anthony Dong","company":null,"blog":"","location":"France","email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":62,"public_gists":13,"followers":0,"following":0,"created_at":"2009-06-14T16:22:28Z","updated_at":"2025-11-05T21:17:11Z"},"id":"a778bf2bb4eaef1d8c887aed4d2cafc2","created_at":"2017-02-14T16:19:52Z","updated_at":"2017-02-14T16:19:52Z"},{"url":"https://api.github.com/gists/fba20353ea945de12a2f72fc72290c45","user":{"login":"orthodoc","id":302414,"node_id":"MDQ6VXNlcjMwMjQxNA==","avatar_url":"https://avatars.githubusercontent.com/u/302414?v=4","gravatar_id":"","url":"https://api.github.com/users/orthodoc","html_url":"https://github.com/orthodoc","followers_url":"https://api.github.com/users/orthodoc/followers","following_url":"https://api.github.com/users/orthodoc/following{/other_user}","gists_url":"https://api.github.com/users/orthodoc/gists{/gist_id}","starred_url":"https://api.github.com/users/orthodoc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/orthodoc/subscriptions","organizations_url":"https://api.github.com/users/orthodoc/orgs","repos_url":"https://api.github.com/users/orthodoc/repos","events_url":"https://api.github.com/users/orthodoc/events{/privacy}","received_events_url":"https://api.github.com/users/orthodoc/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Biswajit Dutta Baruah","company":"Orthodoc","blog":"orthodoc.in","location":"Muscat, Oman","email":null,"hireable":true,"bio":"Ortho Surgeon from Muscat.\r\nML newbie.\r\nWannabe long distance runner.","twitter_username":null,"public_repos":73,"public_gists":27,"followers":30,"following":31,"created_at":"2010-06-11T03:12:17Z","updated_at":"2025-06-09T16:48:48Z"},"id":"fba20353ea945de12a2f72fc72290c45","created_at":"2017-04-07T17:19:50Z","updated_at":"2017-04-07T17:19:51Z"},{"url":"https://api.github.com/gists/2c49fe0313c68450469561b8cbe77d4c","user":{"login":"hieusonson9x","id":15144197,"node_id":"MDQ6VXNlcjE1MTQ0MTk3","avatar_url":"https://avatars.githubusercontent.com/u/15144197?v=4","gravatar_id":"","url":"https://api.github.com/users/hieusonson9x","html_url":"https://github.com/hieusonson9x","followers_url":"https://api.github.com/users/hieusonson9x/followers","following_url":"https://api.github.com/users/hieusonson9x/following{/other_user}","gists_url":"https://api.github.com/users/hieusonson9x/gists{/gist_id}","starred_url":"https://api.github.com/users/hieusonson9x/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/hieusonson9x/subscriptions","organizations_url":"https://api.github.com/users/hieusonson9x/orgs","repos_url":"https://api.github.com/users/hieusonson9x/repos","events_url":"https://api.github.com/users/hieusonson9x/events{/privacy}","received_events_url":"https://api.github.com/users/hieusonson9x/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":1,"followers":1,"following":1,"created_at":"2015-10-15T15:17:32Z","updated_at":"2024-03-06T04:18:58Z"},"id":"2c49fe0313c68450469561b8cbe77d4c","created_at":"2018-03-25T16:30:43Z","updated_at":"2018-03-25T16:30:43Z"},{"url":"https://api.github.com/gists/4e9a18f79f59edb4e5f6a3fd4b48a41e","user":{"login":"myriky","id":581861,"node_id":"MDQ6VXNlcjU4MTg2MQ==","avatar_url":"https://avatars.githubusercontent.com/u/581861?v=4","gravatar_id":"","url":"https://api.github.com/users/myriky","html_url":"https://github.com/myriky","followers_url":"https://api.github.com/users/myriky/followers","following_url":"https://api.github.com/users/myriky/following{/other_user}","gists_url":"https://api.github.com/users/myriky/gists{/gist_id}","starred_url":"https://api.github.com/users/myriky/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/myriky/subscriptions","organizations_url":"https://api.github.com/users/myriky/orgs","repos_url":"https://api.github.com/users/myriky/repos","events_url":"https://api.github.com/users/myriky/events{/privacy}","received_events_url":"https://api.github.com/users/myriky/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Chul-won Kim","company":"가내수공업","blog":"https://handmade.software","location":"Vancouver, BC","email":null,"hireable":null,"bio":"freelancer 👨‍💻","twitter_username":null,"public_repos":67,"public_gists":11,"followers":25,"following":17,"created_at":"2011-01-25T01:11:47Z","updated_at":"2026-04-06T07:18:53Z"},"id":"4e9a18f79f59edb4e5f6a3fd4b48a41e","created_at":"2018-05-10T15:18:50Z","updated_at":"2018-05-10T15:18:51Z"},{"url":"https://api.github.com/gists/0c527172a54e54fba821afb9f26d9e2f","user":{"login":"yswxyz","id":21124044,"node_id":"MDQ6VXNlcjIxMTI0MDQ0","avatar_url":"https://avatars.githubusercontent.com/u/21124044?v=4","gravatar_id":"","url":"https://api.github.com/users/yswxyz","html_url":"https://github.com/yswxyz","followers_url":"https://api.github.com/users/yswxyz/followers","following_url":"https://api.github.com/users/yswxyz/following{/other_user}","gists_url":"https://api.github.com/users/yswxyz/gists{/gist_id}","starred_url":"https://api.github.com/users/yswxyz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/yswxyz/subscriptions","organizations_url":"https://api.github.com/users/yswxyz/orgs","repos_url":"https://api.github.com/users/yswxyz/repos","events_url":"https://api.github.com/users/yswxyz/events{/privacy}","received_events_url":"https://api.github.com/users/yswxyz/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Yanuar Sulistyo Wibowo","company":null,"blog":"https://ysw.link","location":null,"email":"yanuarsulistyowibowo@gmail.com","hireable":true,"bio":"Backend Developer","twitter_username":"yswxyz","public_repos":4,"public_gists":6,"followers":0,"following":4,"created_at":"2016-08-19T11:42:33Z","updated_at":"2025-09-23T08:33:06Z"},"id":"0c527172a54e54fba821afb9f26d9e2f","created_at":"2018-08-15T08:52:46Z","updated_at":"2018-08-15T08:52:47Z"},{"url":"https://api.github.com/gists/fa9510ec82c21436ebc61fd91c86934b","user":{"login":"kikohs","id":1793640,"node_id":"MDQ6VXNlcjE3OTM2NDA=","avatar_url":"https://avatars.githubusercontent.com/u/1793640?v=4","gravatar_id":"","url":"https://api.github.com/users/kikohs","html_url":"https://github.com/kikohs","followers_url":"https://api.github.com/users/kikohs/followers","following_url":"https://api.github.com/users/kikohs/following{/other_user}","gists_url":"https://api.github.com/users/kikohs/gists{/gist_id}","starred_url":"https://api.github.com/users/kikohs/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/kikohs/subscriptions","organizations_url":"https://api.github.com/users/kikohs/orgs","repos_url":"https://api.github.com/users/kikohs/repos","events_url":"https://api.github.com/users/kikohs/events{/privacy}","received_events_url":"https://api.github.com/users/kikohs/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Kirell Benzi","company":"EPFL","blog":"kirellbenzi.com","location":"Switzerland","email":null,"hireable":null,"bio":"Data science, networks, art","twitter_username":"KirellBenzi","public_repos":61,"public_gists":10,"followers":85,"following":26,"created_at":"2012-05-30T13:24:52Z","updated_at":"2026-03-30T12:52:41Z"},"id":"fa9510ec82c21436ebc61fd91c86934b","created_at":"2019-10-09T11:47:02Z","updated_at":"2019-10-09T11:47:03Z"},{"url":"https://api.github.com/gists/ada5317f80cb20abfca47ab91ab0d341","user":{"login":"0x123451","id":33882204,"node_id":"MDQ6VXNlcjMzODgyMjA0","avatar_url":"https://avatars.githubusercontent.com/u/33882204?v=4","gravatar_id":"","url":"https://api.github.com/users/0x123451","html_url":"https://github.com/0x123451","followers_url":"https://api.github.com/users/0x123451/followers","following_url":"https://api.github.com/users/0x123451/following{/other_user}","gists_url":"https://api.github.com/users/0x123451/gists{/gist_id}","starred_url":"https://api.github.com/users/0x123451/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/0x123451/subscriptions","organizations_url":"https://api.github.com/users/0x123451/orgs","repos_url":"https://api.github.com/users/0x123451/repos","events_url":"https://api.github.com/users/0x123451/events{/privacy}","received_events_url":"https://api.github.com/users/0x123451/received_events","type":"User","user_view_type":"public","site_admin":false,"name":null,"company":null,"blog":"","location":"/dev/tty","email":null,"hireable":true,"bio":"0x12345 at gmail ","twitter_username":null,"public_repos":118,"public_gists":13,"followers":4,"following":86,"created_at":"2018-06-15T18:27:57Z","updated_at":"2025-12-03T20:23:44Z"},"id":"ada5317f80cb20abfca47ab91ab0d341","created_at":"2023-12-17T21:17:34Z","updated_at":"2023-12-17T21:17:34Z"}],"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":"6f83c2c53c7633fd469a175bbb0acdc2c76a090e","committed_at":"2016-02-09T02:01:26Z","change_status":{"total":1,"additions":1,"deletions":0},"url":"https://api.github.com/gists/6466603/6f83c2c53c7633fd469a175bbb0acdc2c76a090e"},{"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":"4ab38c2cc97dbee4b090ecb411c0d72b08402af7","committed_at":"2013-09-06T17:01:09Z","change_status":{"total":2,"additions":1,"deletions":1},"url":"https://api.github.com/gists/6466603/4ab38c2cc97dbee4b090ecb411c0d72b08402af7"},{"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":"71a8c906d3f736cd9a3ae1e118525f2d973faeb3","committed_at":"2013-09-06T17:00:05Z","change_status":{"total":3,"additions":2,"deletions":1},"url":"https://api.github.com/gists/6466603/71a8c906d3f736cd9a3ae1e118525f2d973faeb3"},{"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":"ebe67b42d29c443624c8147e14857f4a91148e09","committed_at":"2013-09-06T16:59:13Z","change_status":{"total":45,"additions":45,"deletions":0},"url":"https://api.github.com/gists/6466603/ebe67b42d29c443624c8147e14857f4a91148e09"}],"truncated":false}