Axel Fontaine

Results 48 comments of Axel Fontaine

Even without moving an app to the module path, this still heavily affects jlink and GraalVM native-image users looking to trim down their JRE/native binary. It's 2024 now. It's time...

The equivalent issue on the Flyway side has now been resolved: - https://github.com/flyway/flyway/issues/3860 This leaves jOOQ as one of the last libraries still affected by this in most server-side projects.

The only two `java.beans` references I [found within the jOOQ codebase](https://github.com/search?q=repo%3AjOOQ%2FjOOQ%20java.beans&type=code) are: - https://github.com/jOOQ/jOOQ/blob/44a230824e8aae138ed6c9a9bba803f9e29d546b/jOOQ/src/main/java/org/jooq/impl/AbstractXMLasObjectBinding.java#L123 - https://github.com/jOOQ/jOOQ/blob/44a230824e8aae138ed6c9a9bba803f9e29d546b/jOOQ/src/main/java/org/jooq/impl/DefaultRecordMapper.java#L444 The first one can be replaced by `Character.toLowerCase(string.charAt(0)) + string.substring(1)`. The second one can...

Hitting this as well. It should be added to the list of inline tags here: - https://github.com/Kotlin/kotlinx.html/blob/f1b51c6d4ffff6b05fb3e647125ca6b2fb203fd1/buildSrc/src/main/kotlin/kotlinx/html/generate/tagsgen.kt#L536 @e5l Can you fix this? Should be absolutely trivial. Without it any layout...

- All colors on https://getbootstrap.com/docs/5.3/customize/color/#all-colors should be added as variables to the main Bootstrap CSS. - All existing bootstrap color variables should be redifined based on the colors just added...

What is the concensus in 2024 on the best workaround to be able to run a process sandboxed by root or setuid bubblewrap as a specific uid? I currently have...

> If you want multiple uids to be visible in your container, have you considered using a different containerization tool like Docker, Podman, Incus or systemd-nspawn? Oh absolutely! But none...

Why? This only deals with the case where `real_uid` is `0`.