Daniel Pope
Daniel Pope
This looks promising; it has several implementations: https://aubio.org/manual/latest/py_analysis.html#aubio.pitch
One instance in which I see this is if certificate verification of the GitHub Enterprise Server fails. We use a custom CA and if we fail to set `$NODE_EXTRA_CA_CERTS` then...
In case anyone wants a quick workaround for this, I wrote some monkey-patches using [patchy](https://pypi.org/project/patchy/): ```python import patchy patchy.mc_patchface(Node.__getattr__, """ @@ -12,1 +12,1 @@ - return self.find(key) + return self.find(key,...