Nikky

Results 52 comments of Nikky

since kotlinx-serialization supports protobuf out of the box we could use that ?

add this to your setting.gradle(.kts) ```kts pluginManagement { repositories { gradlePluginPortal() } resolutionStrategy { eachPlugin { val module = when(requested.id.id) { "kotlinx-atomicfu" -> "org.jetbrains.kotlinx:atomicfu-gradle-plugin:${requested.version}" else -> null } if(module !=...

well this is what we needed.. https://plugins.gradle.org/plugin/org.jetbrains.kotlin.plugin.atomicfu maybe update the README to show how to apply the plugin ? then this issue can be closed as far as i am...

the circuit in question that breaks should just be a large OR gate (it does have a silly name in the test-world though) the signal output to the west and...

further testing seems to show that it does not appear unless there isa bundled input and simple output, buffer gates dont affect it, replacing the passive or gate (wire) with...

additional problem i ran into as well.. our project name had a `-` in it.. which is a invalid character.. the errors were not very clear on it, everything works...

i noticed that currently `contains` for arrays is not generated properly so i tried doign that using the dsl myself ```kotlin val schema = buildJsonSchema { property("authors", String.serializer().list, true) {...

could it be that jss has issues with recursion? i am now trying something along the lines of ``` @Serializable sealed class NestedEntry( val entries: Map = mapOf() ) {...

i also added references todefinitions in my local fork yesterday whaty i am having issues with is.. how can i use annoations like this? `Map` in serialization? it seems to...

another small question.. how do i apply a StringEnum on a `List` ? since there is no way to apply it to value paramters and it seems to get ignore...