Oliver Weiler
Oliver Weiler
https://github.com/helpermethod/graalvm-native-image-toolchain
A slightly nicer alternative to the proposed solution would be ```sh split_string() { # Usage: split_string "string" "delimiter" printf '%s\n' "${1//$2/$'\n'}" } ``` No need for creating an array first.
Include `prepend` function as described [here](https://gist.github.com/helpermethod/ce1be4205960f074f6f5f2a77669f31f). ```sh prepend() { printf '%s%s' "$1" "$(< "$2")" > "$2" } ```
**Environment**: MacOS, Windows, Linux - *Jib version:* 0.10.0 - *Build tool*: Gradle 7.3.3 - *OS:* MacOS **Description of the issue**: Distribute jib via SDKMAN! **Expected behavior**: The jib CLI ZIP...
The class `Colors` is not strictly needed, as `picocli` already includes Jansi, which already handles ASCII escape codes. E.g. printTuples(Arrays.asList(new Tuple(ANSI_WHITE_BOLD + "Config" + ANSI_RESET, ""))); could be replaced with...
Hi! First of all, great project. When looking at the provided releases, I've noticed that they are in perfect shape to be released by SDKMAN! As you are already using...
Inspired by https://twitter.com/mikeveerman/status/1464162014444638258 It would be nice to provide an annotation that fails at a specified date, with on optional reason. Something like this: ```java @FailAt(date = "2022-01-01", reason =...
Ideas
* Use Spring Initializr * Do not put business logic into your controllers * Use Spring Boot Actuator * Use JUnit5 * ~~Use AssertJ~~ * Use `@Bean` for object construction...
http://olivergierke.de/2013/11/why-field-injection-is-evil/ https://ane.github.io/2017/03/23/useless-interfaces.html http://blog.hovland.xyz/2017-04-22-stop-overusing-interfaces/ https://spring.io/blog/2015/11/29/how-not-to-hate-spring-in-2016
Hi, ShellCheck complains about the implementation of my __inc function: ``` __inc() { printf '%d' $(($(< "$1") + 1)) > "$1" } ``` As far as I understand, there is...