上一页 1 2 3 4 5 6 7 8 9 ··· 123 下一页
摘要: curl: (60) SSL certificate problem: certificate has expired More details here: https://curl.haxx.se/docs/sslcerts.html 这个问题原因就是证书到期了,重新下载下证书就行了。 解决方案 阅读全文
posted @ 2023-02-26 00:22 公众号python学习开发 阅读(962) 评论(0) 推荐(0) 编辑
摘要: aria2c -D -l data/apps/crawler-core/04.log --log-level notice -x 16 -s 64 https://the-eye.eu/public/AI/pile/train/03.jsonl.zst 阅读全文
posted @ 2023-02-22 10:58 公众号python学习开发 阅读(56) 评论(0) 推荐(0) 编辑
摘要: def decompose_file(data): # ungz_file_path = gz_file_path.replace(".gz", "") # with gzip.open(gz_file_path, 'rb') as f_in: # with open(ungz_file_path, 阅读全文
posted @ 2023-02-16 11:20 公众号python学习开发 阅读(65) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2023-02-07 17:51 公众号python学习开发 阅读(0) 评论(0) 推荐(0) 编辑
摘要: ffmpeg -i 1 aaa.ts -acodec copy -vcodec copy -absf aac_adtstoasc output.mp4 阅读全文
posted @ 2023-02-03 14:50 公众号python学习开发 阅读(122) 评论(0) 推荐(0) 编辑
摘要: 按照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学习开发 阅读(48) 评论(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学习开发 阅读(81) 评论(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学习开发 阅读(834) 评论(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学习开发 阅读(344) 评论(0) 推荐(0) 编辑
摘要: document.addEventListener('mousemove',function (e) { //mousemove 鼠标一移动,就会触发事件 //获取鼠标最新的坐标 console.log("y:",e.clientY,"x:",e.clientX) }) clientX:当鼠标事件发 阅读全文
posted @ 2023-01-17 11:59 公众号python学习开发 阅读(52) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 123 下一页