Nico D'Cotta

Results 26 comments of Nico D'Cotta

Have you considered adding synthetic `operator fun componentN()` functions when seeing records from Kotlin? Like you say yourself, in record declarations the order of the compoents becomes significant. This would...

Java might go that direction anyway (with [deconstruction patterns](https://github.com/openjdk/amber-docs/blob/master/eg-drafts/deconstruction-patterns-records-and-classes.md#deconstructors-for-classes), which will be [generated](https://github.com/openjdk/amber-docs/blob/master/eg-drafts/deconstruction-patterns-records-and-classes.md#records) for records). It would probably be best wait to see what that will look like before trying...

Hi I am also looking to get autocompletion going in a custom script inside IntelliJ. Is this still up to date? [The current KEEP](https://github.com/Kotlin/KEEP/blob/master/proposals/scripting-support.md#how-to-implement-scripting-support) mentions something about extra gradle config...

My bad - the bug was introduced in https://github.com/seaweedfs/seaweedfs/commit/3b62b338a5532639fa34cd2a56101ea5507f6eb3 imo, because a non-backwards compatible option was introduced but 3.60+ still crashes for me because of this other bug https://github.com/seaweedfs/seaweedfs/issues/5153

Hi all, We ran into this limitation and we decided to go with @exFalso 's approach above, and decided to build the enclaves 'from scratch' with [aws/aws-nitro-enclaves-image-format](https://github.com/aws/aws-nitro-enclaves-image-format) directly, rather than...

Thanks for the quick reply In that case, do you think it would be fair to either implement it, or remove RFC-4592 from the list of supported RFCs in the...

Ok no worries, I will implement on my end, thank you. In that case, would you mind clarifying how exactly is this library compliant with RFC-4592? Is there use of...

If you point me to the file(s) in CoreDNS I can have a stab a it

See https://github.com/miekg/dns/pull/1536 as step 1. I chose not to add CoreDNS' complexity to the simple `match` function until I fully understood the code there