Libing Chen
Libing Chen
Create JBang app from Project Wizard. Features: * Create JBang project from user defined template * Setup IDEA project automatically https://plugins.jetbrains.com/docs/intellij/project-wizard.html
In edit mode, some developers add dependencies in build.gradle for code completion etc. Finally they should copy dependencies to JBang script with `//DEPS ` directive. Introduce a shortcut to sync...
The tool window includes a panel to display ScriptInfo for JBang script and a button group. button group: * run button * sync dependencies buttons: sync to gradle, sync from...
I found that Slumber and JetBrains HTTP file share most concepts, such as profile/environment, recipes/targets etc. Yes, slumber.yml is good to write http requests, but http file is better DSL...
Now more developers choose [Nushell](https://www.nushell.sh/), any plan to support Nushell by default? I think it's not hard. To create a new `jbang.nu` and append it to config.nu. ``` source ~/.jbang/jbang.nu...
GQL is good enough for normal git repository. Now lots of repositories are hosted on GitHub, and any plan to add support for GitHub. I think the following virtual tables...
[Argc assistant](https://plugins.jetbrains.com/plugin/25143-argc-shell-assistant) is a plugin for JetBrains IDEs that provides support for [Argc](https://github.com/sigoden/argc) shell script development. It includes the following features: - Argc comment tag highlight - Argc live templates:...
Now I'm developing JetBrains Just plugin, and some developers reported error when editing justfile:  It's not Just syntax error, and it's caused by inspection from shell script because `{{xxx}}`...
Now functional route is useful feature for Spring WebFlux and SpringMVC, and it's possible to add this feature for RSocket? Functional route is very convenient with functional style, especially for...
From https://github.com/Kotlin/dataframe/blob/5f5f6a1c253e609666bcb1f0665342d7fa132f08/dataframe-jdbc/src/main/kotlin/org/jetbrains/kotlinx/dataframe/io/readJdbc.kt#L923 ``` private fun getTableColumnsMetadata(rs: ResultSet): MutableList { val metaData: ResultSetMetaData = rs.metaData val numberOfColumns: Int = metaData.columnCount val tableColumns = mutableListOf() val columnNameCounter = mutableMapOf() val databaseMetaData: DatabaseMetaData...