Npcap is the Nmap Project's packet capture (and sending) library for Microsoft Windows. 使用npcap进行网卡抓...
[转载]基础数据char,int,double,string是线程安全的吗?
参考:基础数据类型线程安全吗? 示例代码: 对于多线程访问同一变量是否需要加锁的问题,先前大家都讨论过。今天用代码验证了一下之前的猜想:32位CPU与内存的最小交换数据为4字节/次,这也是结构体要对齐...
[整理]how to run flask with pyqt5
from PyQt5.QtWidgets import QLabel, QVBoxLayout, QMainWindow, QApplication, QWidget from flask impor...
[已解决]LINK : fatal error LNK1158: cannot run ‘rc.exe’ 错误的解决办法
参考:https://blog.csdn.net/zaishijizhidian/article/details/88694373 解决办法: 从目录:C:\Program Files (x86)\W...
[整理]用c++编写的RDTSC性能计时器
为了节省时间,本文使用彩云小译机翻,原文出处: The RDTSC Performance Timer written in C++ RDTSC 是 IA-32/IA-64(或 x86/x64)指令,...
[已解决]Python扩展模块 error: Unable to find vcvarsall.bat
参考: https://www.cnblogs.com/yuwentims/articles/9382884.html 本人使用的Python版本: Python 3.4.3 (v3.4.3:9b73...
[分享]批处理一键备份脚本
运行该脚本,自动生成当前日期后缀的文件夹,拷贝源目录文件到备份目录。 if %time:~0,2% leq 9 (set hour=0%time:~1,1%) else (set hour=%time...
[整理]PyQt画圆,动态变色
演示效果: 代码如下: '''ps_draw_circles1.py draw circles with PySide (public PyQT) tested with...
[整理]Python不同版本对应的VS版本/VC编译器版本
不同Python,对应着不同的VC编译器版本。 获取当前Python的VC版本,只需要在cmd键入python即可看到: PS E:\Python37> python Python 3.4.3 ...
[整理]strcmp汇编写法
原文链接:https://blog.csdn.net/hairetz/article/details/18264243 #include <sys/socket.h> #include &...