Cies Breijs

Results 37 issues of Cies Breijs

Many do not pass in CI, where they do pass on my machine.

bug
test suite

Probably something is more async than expected. Maybe built in some waiting time (already done in some other tests). Maybe look how the `intellij-rust` project solved this.

test suite

This should be the last changes needed to get this plugin accepted in the JetBrains Marketplace. I'm in discussion with JetBrains' Albert Ishmukhametov to resolve this. I want to document...

help wanted
refactoring

Make sure to switch IntelliJ to JDK11 or run as follows from the CLI: ``` ./gradlew -Dorg.gradle.java.home=/home/$USER/.jdks/etc/etc yourTask ``` This branch has 37 test passing from 60+ tests in total...

But that seems to go against the grain of Terpal. Or does it?

It would be great if there could be an configuration option that makes dotenv throw and exception if an env var was not found. Currently it returns null in those...

Looking at the implementations of `ValidationResult` I find these: ```kotlin public data class Invalid( override val errors: List, ) : ValidationResult() { ... } public data class Valid( val value:...

Currently the documentation says: ---------------- [3. API Overview](https://jdbi.org/#_api_overview) Jdbi’s API comes in two flavors: [3.1. Fluent API](https://jdbi.org/#_fluent_api) ... [3.2. Declarative API](https://jdbi.org/#_declarative_api) ----------------- I think using `@UseClasspathSqlLocator` counts as a different...

I have a `user_notification_preferences` table with a `profile_type` column of type `profile_type_enum not null`. The `profile_type_enum` type is defined as: create type profile_type_enum as enum ('Admin', 'Retailer', 'Supplier'); When trying...

While `Uuid` is still marked as experimental, it is in the last phases of becoming stdlib. It is one of the type I have to manually unwrap to a string,...