Naftali Beder
Naftali Beder
Very odd! I’m running this on an M1 Mac. I wouldn’t have thought this would cause a problem, since I haven’t had any transition issues with other Python projects. But...
I’ve narrowed it down to the [offending line](https://github.com/adbar/trafilatura/blob/master/trafilatura/utils.py#L196), and it looks like you were right. ``` elif isinstance(htmlobject, str): try: # htmlobject logs correctly as the entire contents of the...
Sure enough, it's reproducible in a minimal project: https://github.com/naftalibeder/example-lxml. I tried messing around with the offending html file, to see what part of it is leading to the corruption, but...
@adbar I’m having a go at a PR that handles this case, I’ll share when I have something.
I believe this is fixed in #163. It's interesting to note that at least with New Yorker articles, Readability also frequently fails to get all of the content. Looks like...
You can just wrap the `cv2.line()` call in a `try` block.
You’ll need to calibrate the camera (see `cv2.calibrateCamera()`).
@kirito12138 I had forked/modified this a while ago - here's an annotated version: ``` object_pts_source = [ [-7.308957, 0.913869, 0.000000], [-6.775290, -0.730814, -0.012799], [-5.665918, -3.286078, 1.022951], [-5.011779, -4.876396, 1.047961], [-4.056931,...
I can confirm. The explanation @computerjazz gave [here](https://github.com/software-mansion/react-native-reanimated/issues/3296#issuecomment-1172942584) looks correct, because any function call (not just `console.log`) fixes it. Even executing a no-op like ``` const style = useAnimatedStyle(() =>...
Just want to bump this, in case there's any chance of getting this merged soon. Thanks!