上一页 1 2 3 4 5 6 7 8 9 ··· 31 下一页
摘要: 实现以上效果需要前提1.server不要存在,先删除掉 2.创建软连接 ln -s 绝对路径 单词 (在当前目录下执行) 看命令 rm -rf server;ln -s /a/b/c/d/classes/ server (在当前目录下运行) 阅读全文
posted @ 2023-05-30 15:38 3ξ 阅读(90) 评论(0) 推荐(0) 编辑
摘要: 代码如下 import os.path import subprocess def compress_video(origin_file=None, target_file=None, quality=10): # 压缩质量(值越小,视频越小) # 如果文件存在就删除 if os.path.exis 阅读全文
posted @ 2023-05-25 17:43 3ξ 阅读(14) 评论(0) 推荐(0) 编辑
摘要: 本文目标为svn合并代码一 同一分支进行合并(我还没搞,目前没测试)二 不同的svn地址进行合并 2.1准备两个svn地址 2.1.1 最新的代码,正确的代码(我这个代码是最新的)My_branch 2.1.2 主干分支代码,老旧的代码(需要更新血液)master_branch 3.1准备数据 3. 阅读全文
posted @ 2023-05-22 16:01 3ξ 阅读(7) 评论(0) 推荐(0) 编辑
摘要: 背景:我如果能写一个自动化刷战令的功能,我是不是就可以解放双手了。 #工具:adb #下面是翻译的键盘事件代表的含义 key code constant:未知键码。* / public static final int KEYCODE_UNKNOWN = 0; /**键码常数:软左键。 *通常位于手 阅读全文
posted @ 2023-04-21 14:53 3ξ 阅读(139) 评论(0) 推荐(0) 编辑
摘要: # 原因,包问题 我用openpyxl操作完以后,带公式的值就读取不出来了; # 编写操作,打开一个目录下的所有xlsx文件功能# 所需要的依赖 import win32api import win32con import win32process from win32com import clie 阅读全文
posted @ 2023-04-01 11:22 3ξ 阅读(55) 评论(0) 推荐(0) 编辑
摘要: 背景起源 需要svn log -limit 1获取日志(含中文), 我Python程序运行毫无问题,程序无乱码,中文可以正常解析, 但是有功能需要调用其他程序,调用(客户端)node去做一些事情, 然后莫名其妙的就乱码了,变成了 | 1 line\r\n\r\n1????????????\r\n 解 阅读全文
posted @ 2023-03-21 18:19 3ξ 阅读(45) 评论(0) 推荐(0) 编辑
摘要: 查询字符信息在文件夹内grep "legioncross_server_ip" *docker 导出日志文件docker exec -it legioncross-3002 jstack -l 10 > legioncross-3002.log压缩tar zcvf httpdatacollect.t 阅读全文
posted @ 2023-03-17 15:05 3ξ 阅读(12) 评论(0) 推荐(0) 编辑
摘要: pip install pyyaml def save_dict_to_yaml(dict_value: dict, save_path: str): """dict保存为yaml""" with open(save_path, 'w') as file: file.write(yaml.dump( 阅读全文
posted @ 2023-03-17 10:36 3ξ 阅读(187) 评论(0) 推荐(0) 编辑
摘要: 读取文件方法: def read_file(file_name, chunk_size=512): with open(file_name, "rb") as f: while True: c = f.read(chunk_size) if c: yield c else: break View C 阅读全文
posted @ 2023-03-16 19:11 3ξ 阅读(283) 评论(0) 推荐(0) 编辑
摘要: # pip install xlrd==1.2.0 """ 1.高版本的包不支持xlsx格式的文件, 2.如果想操作xlsx请安装低版本的包 这边 索引是从0开始的 """ import xlrd xls_file_src = "xls_demo.xls" xlsx_file_src = "xlsx 阅读全文
posted @ 2023-03-15 17:12 3ξ 阅读(63) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 31 下一页