Spencer Nelson
Spencer Nelson
My project depends on two packages, `dagster` and `dagster-k8s` (and actually many more, including more `dagster-*` packages - but let's stick to two for this explanation). Dagster uses a tightly-coupled...
It's easy to imagine the use cases - you might have many goroutine workers processing data and want them to centralize their measurements. One solution to this is to give...
Added simple chroot support, requested in #32. Conn gets a `SetChroot` function which fiddles with the path of any requests which use a path. It has a known bug: if...
**What's your Game ID?** https://gist.github.com/spenczar/e666b560df79803e3bc2ba8971f4c37a **How to Reproduce the Bug?** First, note that the minor in bid box 1 is 17, which is associated with the SPS major. We're in...
We repeatedly have found ourselves doing something like this: ```py def group_by_obscode(self): unique_codes = self.obscode.unique() for c in unique_codes: yield self.apply_mask(pc.equal(self.obscode, c)) ``` Of course, this is rather inefficient, since...
288e29109cba53a36b281bb47de2dca0f259b4f9, eae03894e60de410cf5b590cedd4903f526373a3, and fa916b2dc3e04a9ebd2763010d1533a22f6b57cd were three commits dealing with one tricky issue: what do we do when a Table has a nullable subtable column, but the subtable itself has non-nullable...
It's far too dangerous, since we need __init__ to be _extremely_ fast: it is called on slices, iteration, subtable access, etc. This could be done with a __init_subclass__ check, perhaps....
Blocked by https://github.com/apache/arrow/issues/37028.
#### Overview of the Issue When using the Google source, if a `service_account` is specified which does not exist, then instance creation times out. Logs make it look like it...
I am seeing strange behavior with polygon point containment near the poles. Here's an example. Build a convex hull from points which swing around the north pole at latitude 80:...