Results 281 comments of soywiz

I’d say that RAII is specially important in languages like C/C++ and Rust, that have a pretty different memory model to the one proposed by the JVM, JS or Kotlin/Native....

A virtual file system is an abstraction similar to File. But that File could have different implementations: a memory-only filesystem, .ISO file, .ZIP file, S3, HTTP, SSH, FTP, disk, an...

You can call the open method to get an AsyncStream then you can read chunks of a specific size and do stuff incrementally

The other issue about MD5 includes a sample opening files and handling chunks for reading. In the end you have `write` and `read` methods, `position` and `length`. The variants like...

Never used okio, so I'm not fully sure if I understand. But let me explain the design decisions of korio, that maybe help you to figure out yourself: Consider the...

Would be nice to be able to also export a whole Shape, so we can also include text and vectors

RestClient [receives an `Any`](https://github.com/korlibs/korge-next/blob/e0247ba375746c44197f455f07d207a079fe3cc9/korio/src/commonMain/kotlin/com/soywiz/korio/net/http/HttpRestClient.kt#L11) as the payload parameter, not a String. It is converting the object into a string. So if you passes a string as parameter, it will be...

@SchneckeddeF which kind of improvements would you believe would be needed for that?

You are using a pretty old unsupported version. I suggest you to use `2.0.5` instead. As far as I understand, you get an error when compiling. To be able to...

The `Stage` is actually empty. The background clearing happens elsewhere. We could emulate it somehow as an exception. But I guess there might be cases where people might want that...