上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 125 下一页
摘要: 按照github的步骤一步步来的时候,最后一步出现问题, ld: cannot link directly with dylib/framework, your binary is not an allowed client of /usr/lib/libcrypto.dylib for archi 阅读全文
posted @ 2023-02-02 15:47 公众号python学习开发 阅读(65) 评论(0) 推荐(0)
摘要: git clone https://github.com/emscripten-core/emsdk.git pyenv local 3.8.0 ./emsdk install latest https://xmanyou.com/wasm-emsdk-mac-start-up/ js调用wasm 阅读全文
posted @ 2023-02-01 22:19 公众号python学习开发 阅读(113) 评论(0) 推荐(0)
摘要: //对arm64比较友好,arm32的可能崩溃 function call_1CFF0(input_str) { var base_hello_jni = Module.findBaseAddress("libhello-jni.so"); var sub_1CFF0 = new NativeFun 阅读全文
posted @ 2023-01-30 18:00 公众号python学习开发 阅读(1200) 评论(2) 推荐(1)
摘要: 从png图片中分离出png图片 binwalk -D 'image:png' result.png 从图片中分离出zip压缩文件并解压 binwalk -D 'zip archive:zip:unzip %e' cqzb.jpg 或者使用下面的命令 binwalk cqzb.jpg -e 阅读全文
posted @ 2023-01-30 17:12 公众号python学习开发 阅读(476) 评论(0) 推荐(0)
摘要: document.addEventListener('mousemove',function (e) { //mousemove 鼠标一移动,就会触发事件 //获取鼠标最新的坐标 console.log("y:",e.clientY,"x:",e.clientX) }) clientX:当鼠标事件发 阅读全文
posted @ 2023-01-17 11:59 公众号python学习开发 阅读(68) 评论(0) 推荐(0)
摘要: 方法 @staticmethod def get_distance(fg, bg): """ 计算滑动距离 """ target = cv2.imdecode(np.asarray(bytearray(fg.read()), dtype=np.uint8), 0) template = cv2.im 阅读全文
posted @ 2023-01-13 17:45 公众号python学习开发 阅读(214) 评论(0) 推荐(0)
摘要: true = False def wazzup(): """ 假亦真时真亦假 """ false = True or False def true(): nonlocal false false = True return false false = true() false = True if f 阅读全文
posted @ 2023-01-12 11:00 公众号python学习开发 阅读(69) 评论(0) 推荐(0)
摘要: adb logcat -c -b main -b events -b radio -b system 阅读全文
posted @ 2023-01-11 10:27 公众号python学习开发 阅读(43) 评论(0) 推荐(0)
摘要: 1.迭代的方式 def reverse(self, head): if head is None or head.next is None: return head cur = head pre = None while cur: tmp = cur.next cur.next = pre pre 阅读全文
posted @ 2023-01-06 11:50 公众号python学习开发 阅读(124) 评论(0) 推荐(0)
摘要: def delete_k_node(self, head, index): """ 删除链表倒数第k个节点 :param head: :param index: :return: """ # 虚拟头结点 dummy = Node(-1) dummy.next = head # p2指向dummy,p 阅读全文
posted @ 2023-01-05 19:42 公众号python学习开发 阅读(92) 评论(0) 推荐(0)
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 125 下一页