John Emhoff

Results 9 issues of John Emhoff

Forgive me if I'm misreading the Cap'n Proto docs, but it seems I should be able to define a struct with a field of type AnyPointer and then assign any...

I spent a little time looking through the code, so I apologize if I just missed something -- is it possible to stream the contents of a blob without reading...

enhancement

Hello! Thanks for pyorc; using it has been a pleasure so far, with the exception that we seem to be running into memory issues. I think `Writer` is leaking memory?...

Hello! I'm trying to add support for nuklear's [9-slice](https://en.wikipedia.org/wiki/9-slice_scaling) rendering to love-nuklear. If you aren't familiar, it's a way to specify a texture for use as a button / window...

Is there any mechanism to wait for a job to complete? I assume not because there doesn't seem to be any job tracking beyond what time it was dequeued (rather...

enhancement

Is there a way to get a plain ol' python object (i.e., something I can give to `json.dumps`) if I have a statham object? Apologies if this should be obvious...

Hello! It seems that `serde_arrow` is not able to handle optional fields in some cases. Here's an example: ```rust use arrow::datatypes::FieldRef; use serde_arrow::schema::{SchemaLike, TracingOptions}; fn main() { let data =...

`typer` is asking for `click >= 8.0.0`, but it seems that the latest in the 8.0 series (8.3.something) is incompatible and causes this error: https://github.com/koxudaxi/fastapi-code-generator/issues/495 This change adds `click==8.1.7` (the...

Is it expected that a message deserialized from a pipe in thread 1 can be passed and safely read from thread 2? I'm running into an issue where attempting to...