mateuszjarzyna
mateuszjarzyna
Hello, For Java application that use Java modules, I have to add ` requires webcam.capture; ` To my module-info.java. I've spent few minutes to figure out the name of the...
It would be nice if there was integration with [Signal](https://signal.org)
Hi, I've created method to use own, custom class loader. This change can resolve https://github.com/MatteoJoliveau/PlugFace/issues/19 by creating new class loader `@RequiredArgsConstructor public class PluginClassLoaderCreator implements ClassLoaderCreator { private final ClassLoader...
I have extremely simple code, it's a function that returns `Either` ```kotlin val createdCourse: Either = adminHub.createCourse(courseNameField(form), request.toRequestContext(instantSource.instant())) if (createdCourse.isRight()) { createdCourse.getOrNull() // it's still the either } ``` My...