Mike Purvis

Results 234 comments of Mike Purvis

Note that with cppcheck turned out there are also a ton of new warnings, especially about uninitialized members and absense of the `override` keyword.

For now we're simply passing `-Wno-cast-function-type` in order to move forward with our migration. I attempted to cast through `void*` and the compiler was still getting hung up on this,...

Here's the diff that corresponds to option 1: https://github.com/andysworkshop/stm32plus/compare/master...mikepurvis:no-stl This is what we'll be moving forward with for now on our end, but I'm open to the discussion resolving in...

FWIW, I was able to compile stm32plus with the GCC 7 toolchain from `gcc-arm-none-eabi-7-2017-q4-major-linux.tar.bz2` direct [from ARM](https://developer.arm.com/open-source/gnu-toolchain/gnu-rm/downloads). However, if you're using the compiler that's part of the future Ubuntu Bionic...

G2O isn't a catkin package— it's a regular CMake package, so the regular CMake rules for how to use it apply, see: https://cmake.org/Wiki/CMake:How_To_Find_Libraries#Using_external_libraries

I also hit this error— I have a fairly generic asyncio application which downloads a bunch of tarballs in parallel with `httpx.stream` and pipes the content into `tar` subprocesses which...

Hey, just chiming in here with a related concern— in my application, I open some resources on demand as connections require them, and would like to be able to take...

Just to follow up here, I ended up finding this wasn't too bad. Building off of what @StuartFarmer suggested above and the examples given in the [deploying page](https://github.com/huge-success/sanic/blob/master/docs/sanic/deploying.rst), here's a...

All those methods are just sugar to make using asyncio more ergonomic, though. If Sanic needs to support 3.6, they could be easily reimplemented, or even just directly backported/monkey-patched, eg:...