Martin

Results 4 issues of Martin

Is it possible to pass data from numpy to C++ and take ownership of the memory, so its no longer managed by Python? I have large Numpy matrix and I...

After the nanobind_example is build, I want to copy some external dlls to the final destination folder. However, ``` add_custom_command(TARGET nanobind_example_ext POST_BUILD COMMAND ${CMAKE_COMMAND} -E copy "D:/my_folder/some_lib.dll" $) ``` is...

I have this code: ``` std::vector out; out.reserve(w * h * 4); png_set_write_fn(png_ptr, &out, PngWriteCallback, NULL); png_set_compression_strategy(png_ptr, Z_HUFFMAN_ONLY); png_write_png(png_ptr, info_ptr, PNG_TRANSFORM_IDENTITY, NULL); std::vector out1 = std::move(out); out.clear(); out.reserve(w * h...

I have used [Basic Usage](https://github.com/Fatal1ty/aiofcm#basic-usage) code to test FCM notifications for Android. I have filed API key and device token and also changed sender_id. However, when I run the example,...