Roman Ushakov

Results 10 comments of Roman Ushakov

The current directory is the directory where the Executable File is located Or console mode like ``` java -jar someJar.jar -decrypt . java -jar someJar.jar -encrypt . java -jar someJar.jar...

I do not know all the subtleties, but I can suggest this option FX.kt ```Kotlin fun find(type: KClass, scope: Scope = FX.defaultScope, params: Map? = null): T { ... val...

Firstly, this is validation, when the compiler checks (in the case of koin) everything that is needed before starting the application. Second is the speed and ease of writing code....

dicontainer property of the FX class in which the changes take place. Yes, this gives priority to the non-native di, if dicontainer is not null If we need priority to...

My idea is to make it possible to use di through the constructor, ideally it should be for the native di too. If you have ideas better suggest

1.7.21-snapshot builds without icon (current master)

Me too. All config generated. I tried a lot of solutions, but none of them helped. Moreover, I tried different versions of OS for the server and different types of...

Yep, it works too! Thank you very much!

My case: ```kotlin @Serializable data class UserRoleDto( @SerialName("name") val name: String, @SerialName("description") val description: String, @SerialName("id") override var id: Long? = null, ) : BaseDto(id) {} ``` ```kotlin abstract class...