Brian Oxley (binkley)
Brian Oxley (binkley)
I've added support for --descriptor_set_out and --include_imports, among other small changes. Please see my README for details. I made as minimal changes as possible.
I'm looking for more examples of mixing Picocli with JLine for a rich-featured command line tool. My use case is simple: rolling dice expressions (ref: https://github.com/binkley/kotlin-dice) My goals are multiple...
Any success at getting this approach adopted by Cygwin itself?
Fantastic plugin -- thank you for this. I'm looking for finding when "tooling" versions change for Gradle-distributed plugins. In this case, I'd like to know I should update the JaCoCo...
For several months I've been unable in desktop Chrome links shared from Android phone. I've reset it several times, reinstalled, etc. The only thing I can think of is I...
Kotlin 1.3.40 added `typeOf` to the standard library, which may simplify code. However, it is marked as "experimental". Reading the tea leaves, Kotlin plans to make this feature standard (non-experimental)...
An example of a failing test: ``` Running hm.binkley.labs.karacter.KaracterSpec Tests run: 15, Failures: 6, Errors: 0, Skipped: 0, Time elapsed: 0.024 sec
Bulldozer is very interesting for me. I would like to recommend it to our teams as a "best practice" based on the existing `README.md`. However, I do not see "getting...
This may not be an issue. Tests work fine that I can tell. More of a "hygiene" concern. ``` [INFO] --- maven-dependency-plugin:2.8:tree (default-cli) @ system-rules --- [WARNING] The artifact junit:junit-dep:jar:4.11-beta-1...
Contrast: ``` Money aDollar = Money.parse("USD1"); BigDecimal eight = new BigDecimal("8"); Money m = aDollar / eight; m.getAmount(); ``` With non-compiling: ``` (aDollar / eight).getAmount(); ```