上一页 1 2 3 4 5 6 7 8 9 10 ··· 123 下一页
摘要: //对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学习开发 阅读(990) 评论(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学习开发 阅读(401) 评论(0) 推荐(0) 编辑
摘要: document.addEventListener('mousemove',function (e) { //mousemove 鼠标一移动,就会触发事件 //获取鼠标最新的坐标 console.log("y:",e.clientY,"x:",e.clientX) }) clientX:当鼠标事件发 阅读全文
posted @ 2023-01-17 11:59 公众号python学习开发 阅读(59) 评论(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学习开发 阅读(178) 评论(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学习开发 阅读(61) 评论(0) 推荐(0) 编辑
摘要: adb logcat -c -b main -b events -b radio -b system 阅读全文
posted @ 2023-01-11 10:27 公众号python学习开发 阅读(30) 评论(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学习开发 阅读(117) 评论(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学习开发 阅读(84) 评论(0) 推荐(0) 编辑
摘要: # -*- coding: utf-8 -*- # @Time : 2022/12/27 4:37 下午 # @Author : chenxiangan # @File : mp4tomp3.py # @Software: PyCharm import click import ffmpeg @cl 阅读全文
posted @ 2022-12-27 17:10 公众号python学习开发 阅读(46) 评论(0) 推荐(0) 编辑
摘要: udp_server.c #include <stdio.h> #include <strings.h> #include "arpa/inet.h" void udp_server() { printf("%s\n","in udp server"); int sock_fd = socket(A 阅读全文
posted @ 2022-12-23 19:55 公众号python学习开发 阅读(76) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 123 下一页