Maciej Sawicki
Maciej Sawicki
The problem is that when I keep scrolling down the more items is added to the scroll element and and the less I have to scroll again to reach the...
I have this class: ```kotlin class Project { val nameProperty = SimpleStringProperty("foobar") val name by nameProperty } ```` I use [Fx-GSON](https://github.com/joffrey-bion/fx-gson) library to serialize JavaFx Properties. When I serialize it...
https://github.com/angular/angularfire/blob/72d3c2e26ebd7ff367f250e74aa076cc3bd3cc40/src/schematics/deploy/builder.ts#L32-L34 The above piece of code prevents me from applying different configurations, so that I could invoke `ng deploy -c="development"`. My `angular.json` config looks like this: ```json // angular.json "deploy":...
It should return `vis-blue` when selected locale is the same as in the list ```xml @languages/{value} ``` Instead I receive: ```log Exception in thread "LWJGL Application" com.github.czyzby.lml.util.LmlParsingException: Error occurred during...
Let's say I want to check if a class has an annotation: ```kotlin packet::class.hasAnnotation() ``` In order to achieve that I populated `build.gradle.kts` with ```kts implementation(kotlin("reflect")) ``` Unfortunately I get...
It would be cool to have it, so that we would know what went wrong
Currently I do something like this: ```kotlin @RegisterClass class CreatureScene : Spatial() { private lateinit var body: CreatureBodyScene private lateinit var infoScene: CreatureInfoScene private lateinit var rigidBody: RigidBody private lateinit...
I have those warning since the beginning. How can I check what is wrong? ``` WARNING: JNI local refs: 33, exceeds capacity: 32 Godot-JVM: Starting GC thread WARNING: JNI local...
```kotlin open val anchorRight: Double get() { TransferContext.writeArguments() TransferContext.callMethod(rawPtr, ENGINEMETHOD_ENGINECLASS_CONTROL_GET_ANCHOR_RIGHT, DOUBLE) return TransferContext.readReturnValue(DOUBLE, false) as Double } ```
Is there a way to filter them out? 