Tobias Pfeifer
Tobias Pfeifer
I'm facing the same issue when using 'ngx-dropdown-treeview' in different components that get rendered to the same page. A component should be reusable (including multiple instances even within the same...
I don't like the 'akka approach': serialization has to be provided by configuration and there is no way to utilize a more type safe approach. I would argue for a...
I'm working on an implementation using Apache Avro Java implementation as an intermediate representation: encode: zio.schema.Schema[\_] -> org.apache.avro.Schema => Json String decode: Json String => org.apache.avro.Schema => zio.schema.Schema[\_] See also:...
I'll work on this. If anyone wants to pair on this, let me know (TobiasP on Discord)
Define a canonical set of annotations that can be applied to sealed traits, case classes, and fields
these would be useful for avro schema: * `@recordName("name")` * `@recordNameAliases("alias1", "alias2")` * `@default(???)` * `@formatter(DateTimeFormatter.ISO_INSTANT)` * `@documentation(???)` * `@namespace("com.example")` * `@arraySize(5)` for fixed arrays * `@bigInteger(digits)` * `@bigDecimal(scale, digits)`...