Libing Chen
Libing Chen
I want to implement tab completion for zk node name with following code: ```java @ShellMethod(key = "cd", value = "Change Path") public String cd(@ShellOption(help = "Directory", value = "", valueProvider...
I use `rye tools install` to install lots of tools, and I wonder to know how many tools are outdated, and upgrade these tools. Thanks.
REST and gRPC support now, any plan to consider GraphQL support? REST, GraphQL and gRPC are most import protocols for service communication.
List sub commands if `./cli -h` invoked.
[NATS](https://nats.io/) is more than PubSub with lots features: * Pub/Sub * Streaming * Key-Value * Object Store * Service Framework: https://natsbyexample.com/examples/services/intro/go
Be friendly for most dotenv tools.
Date format as following: ``` Wednesday, 19 May 2027 ```
Thanks for good library to parse date. I use AWK daily, could you support gawk mktime date format? mktime(datespec [, utc-flag ]) Turn datespec into a timestamp in the same...
Maybe somebody has asked this question before. Now I use [cross](https://github.com/cross-rs/cross) to compile some jni-rs project, and shell script as following: ```shell #!/bin/bash # install cross cargo install cross #...
For some cases, linux musl still important. How about `linux_musl-aarch64`? ```java static { try { final Process p = new ProcessBuilder("/usr/bin/env", "sh", "-c", "ldd /usr/bin/env | grep -q musl").start(); MUSL_LIBC...