Zac Bentley

Results 72 comments of Zac Bentley

This would be helpful for myself and my colleagues as well. Additionally, it would also be helpful for commandline options to have clearly documented default values.

@snim2, in response to https://github.com/ltratt/multitime/issues/9#issuecomment-90220650: I have had reasonable success doing QC-style testing in C with https://github.com/mcandre/qc. I am not a C programmer in general, though, so most of my...

This is at `master`, btw; not `1.5.0`.

The STDOUT/STDERR thing seems likely. Would it be possible to interleave the two streams (merge on `IFS` or `\n` or something sensible) using some Ruby tool, store the union as...

Homebrew formula is here: https://github.com/Homebrew/homebrew-core/pull/95407 However, that won't be merged by their maintainers until it passes their popularity test (error message: `GitHub repository not notable enough (

The Homebrew PR merged: ``` zac.bentley@ZacBentleyMBP ~ ∴ brew update; brew install bkt ==> Pouring bkt--0.5.2.monterey.bottle.tar.gz 🍺 /usr/local/Cellar/bkt/0.5.2: 7 files, 1.3MB zac.bentley@ZacBentleyMBP ~ ∴ bkt error: The following required arguments...

I may be misreading this, but it looks like the test is sleeping for a total of 1sec (10x 100ms) rather than the invalidate threshold of 10sec. Is it that...

`flock(2)` doesn't take a timeout, but otherwise may satisfy locking needs here. I'm unsure how portable it is to Windows, or if that's a priority. Given `bkt`'s nature, the lack...

What about using native Python's async-to-sync functionality? That is, given an async RPC method called via `result = await ServiceStub.some_method()`, you could do either: ```python result = asyncio.run(ServiceStub.some_method()) ``` ...if...

This may be related to https://github.com/boostorg/python/issues/374, wherein certain Boost operations in C++ destructors can cause the interpreter to bug out in an `async` function. You could check whether or not...