Dave Syer
Dave Syer
UPDATE: If you use Gradle it works even in VSCode (so far for me anyway). I pushed a fixed `build.gradle` to the sample above. It only worked for me with...
I would be OK with just converting kebab-case to camelCase and failing if it's not available. It happens at compile time right, so it's easy to spot?
I have found it useful to attach a debugger to a running kernel. You can do it by adding JVM args in the `kernel.json` and then attaching the debugger after...
> What you can do is simply debug how kernel works, but not how notebook works. That's not 100% true. It lets me debug the running notebook, but it only...
This works too, directly from `jbang` without the `pip` stage (thanks to the https://github.com/jupyter-java/jbang-catalog): ``` $ jbang install-kernel@jupyter-java rapaio ``` Or maybe it only works because I also installed the...
@maxandersen are you maintaining that jupyter-java repo? I submitted a couple of PRs ages ago, e.g: https://github.com/jupyter-java/jbang-catalog/pull/2.
Works for me. Maybe there's a proxy hiding the foojay service or something in your environment. What do you see if you visit https://api.foojay.io/disco/v3.0 on the command line and in...
+1 for this. There's nothing special about `CommonsExec` or `FactoryBean` in relation to what the user wants here (a concise way to launch some code as a standalone app).
Just create a Maven project and try to use `MavenClasspathEntry`. It will fail because of missing dependencies. I worked around it with help from @Kehrlann: ```xml 3.9.4 1.9.18 ... org.springframework.experimental.boot...
Logout works if there is a session (which would be the normal way of using Spring Boot with a UI). Also, I do not think this is a Boot issue....