SMFDrummer
SMFDrummer
I am trying to rewrite the RETON project using Kotlin, but besides 0x49, I have also encountered some decoding issues with rton2json. For example, I am unable to correctly transcode...
> 在小米13 手机批量选择250张图,每张图15-20 Kb,从确定选择到回调OnSuccess 大概需要5秒钟。 > > 可以加快速度吗?是不是我的代码配置有点问题还是就是需要这么久? 用协程把任务放IO,放主线程会卡UI
After my testing, I used the AE2 component workbench to partition the radioactive chemical storage components on the disk, and it seems that the components can work now. But when...
> I don't understand why you closed this immediately. Is this a present bug or not? I'm playing in modpack Craftoria-1.3.2, you could download it from curseforge and test it....
Bug stable triggering method, any level of irradiation effect in the body, and wait for the irradiation effect to end. Continue waiting for a moment, and if there is any...
Thank you very much for solving my problem. I apologize for not reading the development documentation carefully. One more thing, although the color has been restored, the white gradient streamline...
My bad, I should use animateInCoroutine instead of build. But how can I use animateInCoroutine function in Panel widget?
Maybe I can try this? And recently I want to learn how to use Arrow, Please give me some advice! ```kotlin val result = data.run { JsonPath.path("sd.n").modify(this) { JsonUnquotedLiteral(it.jsonPrimitive.content.ensureAscii().escaped().addQuotes()) }.run...
> Sorry for the late reply. > > Have you tried using the `copy { }` block? [API Docs copy](https://apidocs.arrow-kt.io/arrow-optics/arrow.optics/-copy/index.html)* . > > val result = data.copy { > JsonPath.path("sd.n").transform...
Yeah, you're right, but Copy needs a recevier, so you need write it such like: ```kotlin fun Copy.path(path: String, transformer: (JsonElement) -> JsonElement) { JsonPath.path(path).transform(transformer) } ``` then can use...