上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 33 下一页
摘要: https://www.cnblogs.com/jingxuan-li/p/9051945.html https://zhuanlan.zhihu.com/p/89604883 等价类与边界值(重点方法) 场景法(重点方法) 阅读全文
posted @ 2022-03-07 17:35 左岸丶 阅读(22) 评论(0) 推荐(0) 编辑
摘要: [https://zhuanlan.zhihu.com/p/423506052](https://zhuanlan.zhihu.com/p/423506052) ### 生成CA根证书的步骤 生成CA私钥(.key)-->生成CA证书请求(.csr)-->自签名得到根证书(.crt) ``` she 阅读全文
posted @ 2022-03-04 10:09 左岸丶 阅读(418) 评论(0) 推荐(0) 编辑
摘要: https://code.visualstudio.com/docs 阅读全文
posted @ 2022-02-09 18:36 左岸丶 阅读(94) 评论(0) 推荐(0) 编辑
摘要: 在settings.json中编辑 { "background.customImages": [ "file:///C:/Users/lazy/Pictures/img950.jpg", "file:///C:/Users/lazy/Pictures/img850.jpg", "file:///C: 阅读全文
posted @ 2022-02-09 18:06 左岸丶 阅读(222) 评论(0) 推荐(0) 编辑
摘要: https://access.redhat.com/solutions/1160343 Procs r: The number of processes waiting for run time. b: The number of processes in uninterruptible sleep 阅读全文
posted @ 2022-01-26 14:53 左岸丶 阅读(18) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/Y-HKL/p/6579571.html https://blog.csdn.net/qq_33808544/article/details/104146039 阅读全文
posted @ 2022-01-14 11:50 左岸丶 阅读(31) 评论(0) 推荐(0) 编辑
摘要: https://www.jianshu.com/p/38123c06f0b0 curl http://127.0.0.1:9200 # 检查ES节点是否正常启动 curl -XGET 'http://localhost:9200/_cat/indices?v' # 查询es中所有索引,所有已存在的索 阅读全文
posted @ 2022-01-07 18:14 左岸丶 阅读(163) 评论(0) 推荐(0) 编辑
摘要: watch可以帮你监测一个命令的运行结果,来监测你想要的一切命令的结果变化 watch -n 1 -d "命令" 每隔一秒高亮显示后面命令的变化 watch -d 'ls -l' # 每隔一秒高亮显示当前目录变化 Usage: watch [options] command Options: -b, 阅读全文
posted @ 2022-01-07 17:59 左岸丶 阅读(763) 评论(0) 推荐(0) 编辑
摘要: 1.ss ​ ss是Socket Statistics的缩写,是用于统计socket信息 ss -s # 查看当前服务器的网络链接信息 ss -l | more # 查看所有打开的网络端口 ss -ntlp # 2.ip ​ ip命令用来显示或配置Linux主机的路由、网络设备、策略路由和隧道。 i 阅读全文
posted @ 2022-01-04 12:23 左岸丶 阅读(106) 评论(0) 推荐(0) 编辑
摘要: import requests url = "http://?????.com/SvltLogin" s = requests.session() #建立一个Session response = s.post(url, data={"txtUsr_id": "00000001", "txtPassw 阅读全文
posted @ 2021-12-24 11:58 左岸丶 阅读(31) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 33 下一页