07 2019 档案
摘要:Windows下显示已经连过的Wifi密码 1. 打开cmd 2. netsh 3. wlan show profile 可以得到所有已经连过的wifi 4. wlan show profile WINFINAME key=clear 其中 Key Content就是wifi密码
阅读全文
摘要:使用一个遵循buffer protocol的对象就可以和numpy交互了. 这个buffer_protocol要有哪些东西呢? 要有如下接口: struct buffer_info { void *ptr; ssize_t itemsize; std::string format; ssize_t
阅读全文
摘要:Pybind11算是目前最方便的Python调用C++的工具了, 介绍一下在vs2019上写Python的扩展的HelloWorld 1. 去下载pybind11 https://github.com/pybind/pybind11/releases/tag/v2.3.0 这个库只要include就
阅读全文