notKamui

Results 30 comments of notKamui

maybe the error messages should be computed instead, and depend on the t function, which is reactive iirc

Do we persist the open state in localstorage ? or does it get reset on every reload ? Do we autoclose/autoopen on viewport resize ? Note that we'll also have...

ok so tdlr : - persist sidebar state in localstorage (already the case) - auto update state on viewport transition between big and medium - ignore state on small viewport...

for testing, you could either use JUnit or Kotest. JUnit is more traditional, but Kotest is more modern, and looks a bit like Javascript tests, if you're familiar with those....

> Maybe you could just make the lib fully multiplatform by using https://github.com/Kotlin/kotlinx-atomicfu. There is no need for that. Benjamin should use [Mutex](https://kotlinlang.org/api/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines.sync/-mutex/) instead of ReantrantLock, and move to coroutines...

You can make the dependency to kotlinx.coroutines not transitive. ```kt dependencies { implementation("anylib") { transitive = false } } ```

> hi, when i not type a zero before comma it gives an error. i tried it with the latest version. @heykanspor @sosauce `.5` is in no way a standardised...

> 2) Original or Modified Versions of the Font Software may be bundled, redistributed and/or sold with any software, provided that each copy contains the above copyright notice and this...

https://openfontlicense.org/how-to-use-ofl-fonts/ See, technically, because you have the font files in your repo, you are technically redistributing the fonts. This is perfectly allowed, but you do need to also have the...

@sosauce Yes, I've said it before, but your implementation of the `%` operator (cf the image) it is not a relative percentage. Here, it only divides by 100 the left...