Travis DePrato
Travis DePrato
Preface: I'm experimenting with logical replication. I was debugging why this wasn't working and it turns out the error was that I was trying to use the slot `slot` which...
Readiness probes determine whether or node the given pod is routed to as part of a Kubernetes service. Liveness probes cause the container to restart after a failure threshold.
https://github.com/yugabyte/charts/blob/6e6ea5a2850ed8522fe3e4f1fb09cd25c15aecfb/stable/yugabyte/values.yaml#L181 This isn't actually present anywhere in the chart as far as I can tell.
https://stackoverflow.com/questions/2965293/javascript-parse-error-on-u2028-unicode-character This is mostly a non issue and only has to do with JS/JSON interop. tl;dr: not all JSON is valid JavaScript. It'd be nice if we replaced the unicode...
Would it be possible to pass the serialization context to `JSON.lower`? Typically, the thing I want to override is the shape of the thing that's being lowered rather than the...
This cookiecutter pins the version of `jupyter_packaging` but this breaks because JupyterLab wants to use a different version. https://github.com/travigd/ipydraw/runs/2454430067?check_suite_focus=true#step:7:305
Currently, creating a fragment on an interface type generally results in that type being "inlined" into the Pydantic models where they're used. ```graphql # Schema interface Actor { id: ID!...
Most code assumes the remote name we care about is `origin`. This is usually true, but might not always be.
## Details This seems to happen transiently; usually just re-generating the plot works. I'm using IJulia under the hood (this also happens with "vanilla" Jupyter). I've never been able to...
Circular dependencies seem to be a common issue with Strawberry. I'm wondering if Strawberry would consider adding support for something like [type-graphql's `FieldResolver`s](https://typegraphql.com/docs/resolvers.html#field-resolvers). That allows one to define fields for...