摘要: 找到本地仓库文件夹,在.git 路径下,找到config文件, 进去修改 [core] repositoryformatversion = 0 filemode = false bare = false logallrefupdates = true ignorecase = true[remote 阅读全文
posted @ 2023-07-20 11:20 吉祥知知 阅读(308) 评论(0) 推荐(0)
摘要: 1)确保手机和Fiddler所在主机在同一个局域网中 2)获取Fiddler所在主机的ip地址,通过cmd命令进入命令编辑器,输入ipconfig -all,找到IPv4地址,记下该地址 3)打开fiddler--tool-option--https中的capture https connects打 阅读全文
posted @ 2022-03-30 15:09 吉祥知知 阅读(292) 评论(0) 推荐(0)
摘要: 转: https://zhuanlan.zhihu.com/p/212302462 阅读全文
posted @ 2022-03-08 13:11 吉祥知知 阅读(219) 评论(0) 推荐(0)
摘要: 文本获取:ThreeKingdoms.txt(三国演义.txt):https://python123.io/resources/pye/threekingdoms.txt 因为文本是复制到txt文档中的,第一次提示编码错误:'utf-8' codec can't decode byte 0xc8 i 阅读全文
posted @ 2021-11-22 15:42 吉祥知知 阅读(683) 评论(0) 推荐(0)
摘要: 哈姆雷特文本分析记录: def getText(): txt = open("hamlet.txt","r").read() #打开文件 r 读权限 txt = txt.lower() #把英文字母全部变成小写 for ch in '!"$%&()*+,-./:;<=>?@[\\]^_{|}~': 阅读全文
posted @ 2021-11-22 14:33 吉祥知知 阅读(1508) 评论(0) 推荐(0)
摘要: 运行--cmd pip install requests 第一次运行的时候报错了,看了一下执行python目录是正确的(因为电脑安装了2个python) 关闭cmd,重新打开再次运行就正常了。 阅读全文
posted @ 2020-08-17 10:55 吉祥知知 阅读(84) 评论(0) 推荐(0)
摘要: 一、结果树 取样器结果:返回值报200,表示执行接口调试成功 请求:发送的数据 响应数据:返回的数据 Thread Name:线程组名称Sample Start: 启动开始时间Load time:加载时长Latency:等待时长Size in bytes:发送的数据总大小Headers size i 阅读全文
posted @ 2020-05-26 10:12 吉祥知知 阅读(223) 评论(0) 推荐(0)