Travis DePrato

Results 41 issues of Travis DePrato

Seems like we could just change the kernelspec to have ```js { "argv": [ "/path/to/julia", "-i", "--startup-file=yes", "--color=yes", "-e", "using IJulia; IJulia._launch_kernel()", "{connection_file}" ], ... } ``` where we define...

## Reproduction This happens on Julia 1.5 (including 1.5.0 on Linux and 1.5.2 on my MacBook). This is not reproducible in the REPL. This pretty much demonstrates it. All of...

IJulia will emulate "real" REPLs and parse special characters if they occur as the first character of the cell. For example, ``` ]install Plots ``` or ``` ;mkdir foo ```...

enhancement

This allows users (mostly package authors) to specify the data and metadata in the same method. This is useful for my work on JuliaPy/PyInteract.jl#1 because we want to hook into...

Will fill this out later. :^) Want to be able to handle comm message asynchronously (e.g. allow manipulating an slider while something is running). Ping @stevengj @shashi

The comms tend be dynamic and it makes it hard to implement forwarding stuff to Python. There's also (as far as I can see) no easy way to warn if...

I'm writing some stuff for WebIO and want to warn once about some deprecations. ```julia function old_func() @warn("old_func is deprecated! use new_func instead!", maxlog=1) new_func() end ``` In the console,...

# Proposal I'd like to add an optional flag to comm messages that would allow them to be processed asynchronously. It would change comm data messages to look like ```js...

Homebrew on an M1 Mac is usually installed into `/opt/homebrew` (instead of `/usr/local/...` on an Intel Mac). This means that when kernels are installed using setup.py `data_files`, Jupyter doesn't find...

This seems to happen when cleaning up tests. Context: In my test, I have a `defer c.Destroy()` where `c` is a `Channeler`. This seems to occasionally (maybe ~10% of the...