Travis DePrato

Results 76 comments of Travis DePrato

Ah - there is an issue here. There needs to be a `display` method for ``` Base.show(::IO, ::WebIO.WEBIO_NODE_MIME, ::SyncPlot) ``` I thought we had some logic to try to do...

> How about having a command registry that is global? As in like `window.CommandRegistry`? I don't think that's a _great_ idea, personally, because global variables are bad™. I can think...

This conversation should probably be had at https://github.com/JuliaGizmos/WebIO.jl/issues/229. But since I'm here, I think (once that commit is fully implemented) the idiomatic way to do things would simply be ```julia...

WebIO doesn't have a way to export to static HTML. This is something we've talked about a bit, but it's hard because WebIO is really designed around interactive use cases...

You can kind of do this already: ```ts const link = new HttpLink({ uri: (operation) => `${GRAPHQL_URL}?operation_name=${encodeURIComponent(operation.operationName)}` }); const client = new ApolloClient({ ..., link }); ``` You could maybe...

IJulia starts notebooks in the environment of the directory where the project and manifest files are (or if they don't exist, in the default environment). If you have two notebooks...

I think that was a typo -- I think I meant to say > Julia starts notebooks in the environment of the directory where the notebook is (or if the...

> Minor versions are backwards compatible but they can still add new features. That is, code that works in Julia 1.0 should work in 1.2, but not necessarily vice versa....

Is there any reason this hasn't gained more traction/are there plans to implement this in the near future? :^)

There's no way to start more Julia threads at runtime, unfortunately. Beyond that, ```julia Threads.nthread() = 12 ``` is not really _idiomatic_ Julia. All it does is overwrite the function...