Cies Breijs
Cies Breijs
I have the same problem, with Java 14 source compatibility and Gradle 7.2 > One happens if you are using an old version of `google-java-formatter`, which does not support Java...
One more hint for those who try to fix this issue: Make sure your `gradlew` uses the right JDK version. I had this problem when using the latest plugin version...
Kubuntu, kernel: 5.13.9-051309-generic ``` DISTRIB_ID=Ubuntu DISTRIB_RELEASE=21.04 DISTRIB_CODENAME=hirsute DISTRIB_DESCRIPTION="Ubuntu 21.04" ```
I had luck with a 5.13.9 kernel on Ubuntu 21.04. See issue #48 .
Not using `Exception` when not strictly needed is always a good idea, IHMO. Returning null is a bit of a weak alternative as all types of errors are now simply...
I'm interested too in this feature. The reason: I have non-JSON documents i first transform to a JSON string and feed those to kotlinx.serialization. Hence all primitives are strings. The...
We now use this custom validation this in order to specify the `hint` on a required property: ```kotlin fun ValidationBuilder.required() = addConstraint("is required") { if (it == null) { false...
And we now use this one as well: ```kotlin /** Convenience method, same as `required()` but takes a name. */ fun ValidationBuilder.requiredAs(name: String) = addConstraint("{0} is required", name) { if...
Wow. Yes, and thanks very much! I'd put this straight into the readme :), very informative. On Sep 13, 2016 18:26, "Michael Trotter" [email protected] wrote: > Here's a really short...
For `purescript-halogen` you say: > most complicated (but probably also the most type-safe) I think that it could use better wording. Maybe "advanced" instead of "complicated" fits better. Here some...