Yevhenii Chekanskyi

Results 24 issues of Yevhenii Chekanskyi

Issues is self explanatory. When interface injected, its methods visible and auto-completed in java code, but not visible in kotlin code.

Is that possible to associate some random mod-defined data with random item? A quick use-cases: - tracking kill/hits count for each weapon - storing additional informaion for enchantment mods(type of...

enhancement

It seems like that relative xpath does not work: ``` console.log("Trying Relative xpath") console.log(await element.findElements("xpath", `.//*[@identifier="Ident"]`)) console.log("----") ``` results it in same requests to webdriver as `browser.findElements("xpath", `//*[@identifier="Ident"]`)` logs: ```...

needs info

Question is simple - since nodejs and webpage executed in same context, is it possible to give an access to webgl context to a nodejs native module? So, for example,...

question

Apple M1, crashes both on latest build from maven with rosetta, or on self-build arm64 library, always with same segv in "Java: Reference Handler" thread. [java-2024-05-27-004004.ips.zip](https://github.com/aldenml/libtorrent4j/files/15449061/java-2024-05-27-004004.ips.zip)

TypeError: No to_python (by-value) converter found for C++ type: struct libtorrent::aux::container_wrapper

See this [structure](https://github.com/hellozyemlya/cool-resource-finder/blob/d8f8cfe522461aab2fb8451bfd09e89ef0677aa8/common/src/main/kotlin/hellozyemlya/resourcefinder/items/ResourceFinderCompass.kt#L32): ``` @Serializable data class CompassNbtV0( var compassId: Int = 0, var data: CompassData? = null, ) ``` when encoded, there is no "data" with empty list, or...

I have model A and model B, discriminated by type field. In pydantic I can use TypeAdapter(A | B).validate_json() to parse A or B. But how I can do the...

question

Here is a poor-man "benchmark" code: ```kotlin package org.example import com.caoccao.javet.interop.V8Host import com.caoccao.javet.interop.V8Runtime import org.graalvm.polyglot.Context import kotlin.system.measureTimeMillis object App { @JvmStatic fun main(args: Array) { V8Host.getNodeInstance().createV8Runtime().use { v8Runtime -> v8Runtime.getExecutor("const...