Results 10 comments of valtron

At least, this would be nice for `py/reduce`: the [last three fields are optional](https://docs.python.org/3/library/pickle.html#object.__reduce__).

Related issue in OpenCV: https://github.com/opencv/opencv/issues/8813 And here's a [workaround](https://github.com/opencv/opencv/issues/8813#issuecomment-390462446).

~Cheap workaround: if you assume the marker always faces up relative to the camera, then a bad rotation can be detected if it violates this constraint. The pose's rotation can...

@paland3 `angle * axis` is how rotations are encoded in the Rodrigues formulation (but I see you already got that 👍) There should be no translation error inherent in the...

@antithing (**Note:** @paland3 pointed out this code doesn't work when the center of the marker isn't at the origin. Haven't found a fix. Further, I found cases where the 0...

Try `pg_ctl.exe stop --pgdata=path/to/data --wait`.

This is due to `id(self)` being part of the jitclass' name:https://github.com/numba/numba/blob/f04f4b164887e5aa5ffeeed1bef317e13ec995f8/numba/core/types/misc.py#L425-L426 I looked through the history but couldn't figure out why it's needed. I saw at some point early on...

There are two issues with [this fix for windows](https://github.com/borgbackup/borgstore/pull/100/files#diff-768543a009d0e9d606898d686d69cbd4632358acbe2efa765a999b8487d436e6R33): - it expects the first slash (after the drive letter) to be `/`; because of [`abspath`](https://github.com/borgbackup/borg/blob/d0dabe69a84e0d1ec4997fcdecddd1bdba8c8046/src/borg/helpers/parseformat.py#L561), this will always be `\`...

I've had no issues with paths and `file:` urls, but as for the CI, there are still tests [failing/erroring on windows](/borgbackup/borg/pull/9097#issue-3547360227).

That's weird that only 25 fail in the CI, I have >10x as many failures locally so I can't say for sure it's fixed, but anyway [here's a PR](https://github.com/borgbackup/borg/pull/9171) that...