KotlinPoet is a Kotlin and Java API for generating .kt source files. Source file generation can be useful when doing things such as annotation processing or interacting with metadata files (e.g., database schemas, protocol formats). By generating code, you eliminate the need to write boilerplate while also keeping a single source of truth for the metadata.
The modelling for success/failure of operations in Kotlin and KMM
This is a tiny framework for modeling the success/failure of operations in Kotlin. Result is to provide a higher abstraction of operation that can be ended with a result of either success or failure.