fredericgermain

Results 20 comments of fredericgermain

try this : https://github.com/arturadib/node-qt/pull/29

Quick note on Linux : * Don't forget to install the /lib/udev/rules.d/60-hantek.rules file * Maybe run "sudo udevadm control -R" * Replug your device For cmake projects, having a debug...

Same as this issue https://github.com/NanoVNA-Saver/nanovna-saver/issues/460 probably. It was opened after yours, and got more response, I feel for you ~ Long story short, * either deactivate setting "Validate received data"...

It seems that master won't work with python 3.8, since commit 2821f4d0 2022/05/28 at least. python 3.8 is python3 on Ubuntu 20,04, which I'm using. Solved by using python3.9 and...

I had the same problem using youtube-dl package, I made a pull request that probably fix that :)

That's the one https://github.com/przemyslawpluta/node-youtube-dl/pull/285

Do you mean removing the commit that removed the Pods file? Why would you want to keep them? For me, they shouldn't be in the source base as you can...

Oh. I don't remove CocoaPods support with my commits: `Masonry.spec`, `Podfile`, `Podfile.lock` are still there. I remove all files that are added by the `pod install` command itself. These files...

Hi, `__dlsym(RTLD_NEXT)` here calls `calloc`, hence cannot be used in `leaktracer::MemoryTrace::init_no_alloc_allowed()`, otherwise you get the deadlock you're in. I'm not sure what you want to do by calling `__dlsym(RTLD_NEXT)` ?

I got this when I initialize IntervalTree with a bad value (actually, the max value I intented to have in the tree). When initializing with the medium value (max-min)/2, it...