Mike McDermott

Results 56 comments of Mike McDermott

I just got bit by this. I was wracking my brain trying to figure out how I could be getting `Key already exists` errors with a completely empty database. So...

My 0.02: I use it primarily for human-readable identifiers for what is backed by full hashes elsewhere. The risk of collisions on short prefixes is decently high to begin with...

I think annotations `data [foo: bar]` should be kept separate from ornaments ` + plusOrnament` `** starsOrnament **` But I think the ornaments **should** be captured as part of the...

IMHO, don't let it be user-configurable. I'm not sure how you'd enable that, other than in-file `#pragma` style parser-directives, which is almost always the wrong choice. Also purely opinion, do...

Yeah, that could work, albeit at a bit of extra complexity. Each TLI (top level item, direct children of the document, regex `^\S.*$`) would look for its first child and...

Relevant: https://www.jetbrains.org/intellij/sdk/docs/reference_guide/custom_language_support.html

To clarify, if `foobar` is a nested object composed of primitives, maps, and arrays `freeze(foobar)` would return the equivalent data structure with ImmutableArrayS and ImmutableMaps? What is the ordering convention...

In all likelihood, this has nothing to do with Nuitka. This is something to do with a connection closing unexpectedly in the starlette/anyio layer. This issue might be related: https://github.com/encode/starlette/issues/1284...

I was toying around with this issue and it seems like the main problem is that there are several fields (e.g. `additionalItems`, `additionalProperties`, `items`, maybe some others) which are set...

Possibly relevant: https://github.com/OAI/OpenAPI-Specification/issues/668#issue-150416089 So I think we might be able to substitute in the empty object in places where we encounter these `true` fields. Also I was thinking about the...