Libing Chen
Libing Chen
Not sure now. In IDEA, if you want to use Language Injection feature, and snippet should contain full imports, class name, otherwise snippet code will be marked as error.
I build a demo with JBang IntelliJ IDEA plugin. Now I use `File.createTempFile("Temp",".java");` to create a temp file, then execute `jbang /var/11234/Temp1w34w34.java` 
It's in my forked repository, and not merged yet. https://github.com/linux-china/jbang-idea/blob/main/src/main/kotlin/dev/jbang/idea/run/JavaSnippetLineMarkerProvider.kt The best solution is that JBang supports snippet by default.
How about following style, bom as real Bill of Material and pom for dependencies import? ``` //DEPS io.quarkus:quarkus-bom:1.11.0.Final@bom //DEPS org.codehaus.groovy:groovy-all:3.0.9@pom ``` ShrinkWrap supports to resolve pom as dependencies: ```java final...
For example: `org.codehaus.groovy:groovy-all:3.0.9@pom` could be converted to `org.codehaus.groovy:groovy-all:pom:3.0.9` and ShrinkWrap can resolve it. yes, `io.quarkus:quarkus-bom:1.11.0.Final@bom` also is converted to `io.quarkus:quarkus-bom:pom:1.11.0.Final` , and resolved by ShrinkWrap, but it is marked as...
@maxandersen I think main reason is about performance. It's very slow to execute Kotlin script by kotlin CLI, and compare as following: ``` kotlin hello.kts 6.50s user 0.47s system 198%...
@maxandersen a problem here. Now `jbang info classpath Hello.java` does not contain some-lib.jar in classpath for development. DEPS from file system or HTTP URL still be useful for some cases....
any plan to support MDX? it's popular now and it's on Github Radar. https://github.blog/2019-05-21-release-radar-april-2019/ and we are considering to Adopt MDX and Docz
@robertroeser if possible to have draft design for frame extension. for example, an interface for Frame handler(ServiceLoader) and payload handler functional interface specification. ``` public interface RSocketFrameExtensionHandler { int frameType();...
I have raised the issue https://github.com/reactor/reactor-netty/issues/1463