11 2021 档案
摘要:最近在学习c,练习项目 #include <stdio.h> #include<windows.h> int main(int ac,char **pav) { LONG x=-1, y=-1; POINT pt= {0,0}; for(;;){ GetCursorPos(&pt); //获取鼠标当
阅读全文
摘要:梯度下降求f(x,y)=x2 + y2 先画个图 import numpy as np from matplotlib import interactive, pyplot as plt from mpl_toolkits.mplot3d import Axes3D from matplotlib
阅读全文
摘要:我们最近在练习打字,打字程序就是两个框,对照着上面框,在下面框里面打答案。 原理很简单,就是给上面框截图,然后调用腾讯api的ocr识别,然后再用pythonkeyboard在下面打出来 不过我上网查了一下,发现好像没有这种屏幕截图获取内容文章,所以我就手写了一个,图一乐吧 import json,
阅读全文
摘要:usage: ROPgadget.py [-h] [-v] [-c] [--binary <binary>] [--opcode <opcodes>] [--string <string>] [--memstr <string>] [--depth <nbyte>] [--only <key>] [
阅读全文