摘要: 1.fiddler抓包配置参考 2.工具栏Rules>Performance>Simulate Modem Speeds勾选表示开启弱网 3.打开Fiddler,点击菜单栏中的【Rules】-【Customize Rules】,自定义调节代理服务器的网速 if (m_SimulateModem) { 阅读全文
posted @ 2024-01-17 16:22 o小兵o 阅读(152) 评论(0) 推荐(0) 编辑
摘要: 1.下载安装包 [root@xiaobing chrome]# wget https://dl.google.com/linux/direct/google-chrome-stable_current_x86_64.rpm --2024-01-12 15:25:47-- https://dl.goo 阅读全文
posted @ 2024-01-12 15:34 o小兵o 阅读(554) 评论(0) 推荐(0) 编辑
摘要: 1.环境安装 //nodejs环境 //npm install axios 2.axios发送get请求 const axios = require('axios') const url = "xxx.xxx.xxx"; const headers = {} axios.get(url, {head 阅读全文
posted @ 2024-01-11 14:25 o小兵o 阅读(282) 评论(0) 推荐(0) 编辑
摘要: 1.新建目录demo然后在当前目录下打开cmd窗口执行npm init 一直回车,执行结束该目录下出现一个package.json 2.node环境自行安装,需要依赖如下 * npm add express * npm add nodemon * npm install -g axios --reg 阅读全文
posted @ 2024-01-11 11:40 o小兵o 阅读(46) 评论(0) 推荐(0) 编辑
摘要: 1.上传到镜像压缩mysql.tar到服务器 2.加载镜像 [root@xiaobing xiaobing]# docker load -i mysql.tar [root@xiaobing xiaobing]# docker images REPOSITORY TAG IMAGE ID CREAT 阅读全文
posted @ 2024-01-02 16:47 o小兵o 阅读(67) 评论(0) 推荐(0) 编辑
摘要: 1.数据卷(volume)是一个虚拟目录,指向宿主机文件系统中的某个目录 [root@VM-8-2-centos xiaobing]# docker volume --help Usage: docker volume COMMAND Manage volumes Commands: create 阅读全文
posted @ 2024-01-02 15:46 o小兵o 阅读(20) 评论(0) 推荐(0) 编辑
摘要: 1.拉取镜像 docker pull nginx 2.查看镜像 docker images [root@VM-8-2-centos ~]# docker images REPOSITORY TAG IMAGE ID CREATED SIZE nginx latest 605c77e624dd 24 阅读全文
posted @ 2023-12-20 15:10 o小兵o 阅读(58) 评论(0) 推荐(0) 编辑
摘要: 1.在Linux中,可以通过以下命令查看系统版本: cat /etc/os-release 2.在Linux中,可以通过以下命令查看版本(CentOS 要求内核版本不低于 3.10): uname -aLinux VM-8-2-centos 3.10.0-1160.99.1.el7.x86_64 3 阅读全文
posted @ 2023-12-18 11:40 o小兵o 阅读(155) 评论(0) 推荐(0) 编辑
摘要: from appium import webdriver import time # python+appium 打开模拟器中的设置 desired_caps = { 'platformName': 'Android', 'deviceName': '127.0.0.1:62001', 'appPa 阅读全文
posted @ 2023-12-06 15:35 o小兵o 阅读(970) 评论(0) 推荐(0) 编辑
摘要: 1.python环境 2.安装weditor pip install --index https://mirrors.ustc.edu.cn/pypi/web/simple/ weditor==0.6.4 3.安装urllib3 执行pip3 install urllib3即可,不安装运行wedit 阅读全文
posted @ 2023-11-27 17:28 o小兵o 阅读(1336) 评论(0) 推荐(0) 编辑