Mike Bostock
Mike Bostock
It’s not a goal at this time to rewrite everything. We’re focused on getting 6.0 released.
The eventual goal is to replace var with let or const, to adopt arrow functions, and otherwise to adopt ES2015+ language features as appropriate. For D3 6.0 we focused on...
Thanks for the report. I’ll try to fix these soon. My immediate problem is that I can’t recall how to update the thumbnail montage used by the examples, so it’s...
GitHub apparently changed the mimetype from application/javascript to application/ecmascript, so bl.ocks.org isn’t recognizing it as displayable anymore.
Yeah, I’m not totally surprised. Not sure when I’ll get around to fixing the add-on, however.
Hmm. I think this is operating system dependent, unfortunately. On OS X, the `open` command returns immediately after opening the specified URL in your default browser. On Linux, perhaps the...
This is almost certainly a Windows issue, and I’m afraid I won’t be much help at solving it. My guess from the cryptic error is that it’s failing inside the...
That error message doesn’t appear to be generated by `gistup`. It looks like you’re trying to run `gistup-open` or `gistup-rename` in a Gist git repository that you cloned manually, rather...
I’m already using .gistup.json to store the GitHub personal access token.
Better would be something like this: ``` js function defaultFile(url) { var i = url.indexOf("/", 1) + 1, j = url.indexOf("?", i + 1); return decodeURIComponent(url.substring(i, j < 0 ?...