Aone.Net

学无止境
上一页 1 2 3 4 5 6 7 8 9 10 ··· 14 下一页

2022年1月13日

数据库 ORDER BY 4种 排序

摘要: 实例 1 以字母顺序显示公司名称: SELECT Company, OrderNumber FROM Orders ORDER BY Company 结果: CompanyOrderNumber Apple 4698 IBM 3532 W3School 6953 W3School 2356 实例 2 阅读全文

posted @ 2022-01-13 11:12 Catonce 阅读(665) 评论(0) 推荐(0)

2021年12月27日

git基本指令一

摘要: Clone代码库到本地 当然,你可以直接用图形化界面克隆,不过我还是喜欢通过命令行来Clone,先复制下Clone的地址 然后在某个地方,有键打开Git Bash: 键入: git clone https://github.com/ZPJay/Garbage.git 然后可以看到我们的代码库就下载完 阅读全文

posted @ 2021-12-27 17:44 Catonce 阅读(61) 评论(0) 推荐(0)

2021年11月30日

taif -f xx |grep 多条件过滤

摘要: 多条件过滤: taif -f 文件名 |grep -E '条件1|条件2' ps:注意要用1个点的封号 阅读全文

posted @ 2021-11-30 10:04 Catonce 阅读(710) 评论(0) 推荐(0)

2021年11月29日

Appium 异常问题:An unknown server-side error occurred while pro...g\\\\npm\\\\node_modules\\\\appium\\\\node_modules

摘要: 1: 以下报错, 修复方案: adb.exe' -P 5037 -s 29cc0bc8 shell settings delete global hidden_api_policy_pre_p_apps' exited with code 255'; Stderr: 'Exception occur 阅读全文

posted @ 2021-11-29 11:45 Catonce 阅读(491) 评论(0) 推荐(0)

2021年11月22日

python 导出环境依赖包

摘要: pip freeze > requirements.txt 阅读全文

posted @ 2021-11-22 21:36 Catonce 阅读(57) 评论(0) 推荐(0)

2021年11月1日

*args和*kwargs主要区别

摘要: *args = 列表 *kwargs = 字典 ps *号后面可更改,*args 也可以随便写 *als 阅读全文

posted @ 2021-11-01 14:17 Catonce 阅读(44) 评论(0) 推荐(0)

2021年10月20日

vm 16+ mac终端root密码修改

摘要: 1. 以普通用户名登录系统,并打开terminal终端,输入: sudo bash Password:****(当前用户的密码) 成功后进入bash-3.2#的命令模式。 2. 在bash-3.2#命令模式下,输入: sudo passwd root New password:*** Retype 阅读全文

posted @ 2021-10-20 20:02 Catonce 阅读(180) 评论(0) 推荐(0)
性能-iOS性能调优

摘要: iOS之性能调优工具 概述: 三类工具 基础工具:(NSLog的方式记录运行时间.) 性能工具: 检测各个部分的性能表现,找出性能瓶颈 内存工具: 检查内存正确性和内存使用效率 性能工具: 可以衡量CPU的使用,时间的消耗,电池的消耗 一、Time Profile 启动Time Profile:Xc 阅读全文

posted @ 2021-10-20 17:05 Catonce 阅读(302) 评论(0) 推荐(0)

2021年10月9日

端口占用进程查找

摘要: 阅读全文

posted @ 2021-10-09 10:38 Catonce 阅读(12) 评论(0) 推荐(0)

2021年10月8日

Appium:drivers支持 Windows 快捷部署 stf

摘要: 1. 在Docker官方网站下载docker for windows10的安装包,傻瓜安装(会自动开启Hyper-V服务,windows10自建一个虚拟机作为docker的服务端),成功安装后,开启docker服务 2. 在这里https://github.com/nikosch86/stf-poc 阅读全文

posted @ 2021-10-08 19:15 Catonce 阅读(91) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 8 9 10 ··· 14 下一页