坚持为自己每月写1篇笔记

Retreat Hell!
We Just Got Here.

摘要: 环境部署 部署方式 version: "3" x-restart-policy: &restart_policy restart: unless-stopped services: chrome: <<: *restart_policy image: selenium/node-chrome:4.0 阅读全文
posted @ 2021-11-26 14:17 l||||||l 阅读(130) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2020-06-19 18:29 l||||||l 阅读(0) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2022-10-10 18:47 l||||||l 阅读(0) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2022-07-21 13:46 l||||||l 阅读(0) 评论(0) 推荐(0) 编辑
摘要: 通过嵌套接口嵌套结构体实现OOP package main import "fmt" type aaa interface { man() } type bbb interface { women() } type tryinter interface { aaa bbb } type People 阅读全文
posted @ 2021-10-20 11:06 l||||||l 阅读(291) 评论(0) 推荐(0) 编辑
摘要: 代码 package main import ( "bytes" "encoding/json" "fmt" "net/http" ) type BaseJsonBean struct { Status string `json:"status"` } func main() { fmt.Print 阅读全文
posted @ 2021-10-09 17:35 l||||||l 阅读(148) 评论(0) 推荐(0) 编辑
摘要: 入行之久对软件测试人员来讲具备的素质,首先是理论知识和测试技能。那么我们测试人员还应该具备哪些素质才能不被开发怼,被产品忽悠呢? 要成为测试之秀(陈独秀都没你秀的那种)素质: 并非存在就是合理,而是存在是有原因的,回头想想为什么会有软件测试这个岗位 细心、耐心: 当前国内主流测试手段是黑盒测试为主, 阅读全文
posted @ 2021-07-18 17:42 l||||||l 阅读(72) 评论(0) 推荐(0) 编辑
摘要: golang初级面试: new和make之间的区别? 例子: var temp []int // 相当于给 temp 变量分配了结构类型,没有分配底层数组 // 所以 data = nil、存储个数为0,容量也是0 var temp []int = make([]int, 4, 8) temp = 阅读全文
posted @ 2021-04-28 16:50 l||||||l 阅读(781) 评论(0) 推荐(0) 编辑
摘要: 准备 1. 需要安装 JDK 2. 需要配置 Android_SDK 环境变量 3. 最好有 Python 编译环境 第一步 在 Android_SDK/tools 创建 monkey_record.py 脚本 通过命令 “monkeyrunner monkey_recorder.py” 运行 Mo 阅读全文
posted @ 2020-08-13 20:28 l||||||l 阅读(173) 评论(0) 推荐(0) 编辑
摘要: 前言 用到相关库: OS random 生成指定容量文本 #!/usr/bin/env python # -*- coding: utf-8 -*- # @Date : 2020/06/23 10:59:55 # @File : 生成指定大小文件.py # @Link : https://www.c 阅读全文
posted @ 2020-06-23 11:10 l||||||l 阅读(261) 评论(0) 推荐(0) 编辑