Jamie Scott

Results 18 comments of Jamie Scott

The Newtek SDK has binaries for the Raspberry Pi so surely it does support ARM devices?

It must do as I have ffmpeg with NDI support working as a receiver on Raspberry Pi (albeit rather choppy). I found this issue as I'd quite like to try...

To add to this, the docs say: > 3) If the job completes successfully, the action automatically creates a new cache with the contents of the path directory. https://docs.github.com/en/actions/using-workflows/caching-dependencies-to-speed-up-workflows#example-using-the-cache-action It...

I got stuck with this too. I managed to solve it by replacing this line: ``` GCCXML_INSERT = '-isystem "%s" -isystem "%s"' % (MINGW_INCLUDE, os.path.join(MINGW_LIB, 'gcc', 'mingw32', '4.8.1', 'include')) ```...

I'm able to reliably reproduce this but in a massive codebase which just uses pysnmp for some simple querying. The first hook into pyasn1 code that causes this exception looks...

Duplicate of https://github.com/etingof/pyasn1/issues/178

Not sure why it would be needed, but could try adding `command` in the docker compose to the same command that's set in the dockerfile.

Thanks for the PR, I'm incredibly busy at the moment on other projects I'm trying to push live so don't have the time yet to review these changes as they're...

Master has since changed so I've created a branch and fixed the conflicts: https://github.com/Jamie-/openvpn-api/tree/event-system

Have also just discovered sockets are not thread safe, so having two threads (a send and a receive) is a "bad thing". Just about to commit a fix for that...