自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(9)
  • 资源 (5)
  • 收藏
  • 关注

原创 我的python3.0 + RIDE搭建之路 ---全是血泪史

考虑到python2X已经是历史,所以搭建python3X +RIDE。期间遇到种种困难,总算是功夫不负有心人,终于搭建成功。下面介绍下我汇总下所找到的资源:安装步骤:Python3X 官网即可 安装pip,方便下面的安装 Robot framework的安装:pip install robotframework==3.0.4 WxPython的安装:pip instal...

2019-02-02 19:38:18 2821 3

原创 笨人学python之反向输出

# www.didi.com 将com反转输出str='www.didi.com'expStr='com'def test(): # split # 判断是否存在com,存在则反转 # 不存在,则报错 # com 转成moc # 输出www.didi.moc list=str.split('.') newStr=[] a='' b = '' exit=True for i in range(len(lis.

2021-07-10 16:36:58 351

原创 jmeter 压测工具和心得

部署jmeter pod 下载jmeter的yaml文件 默认是安装在namespace:jmeter-load下 启动jmeter pod 命令: kubectl apply -f XXX.yaml 查看启动的pod: kubectl -n jmeter-load get pods 进入jmeter pod容器:kubectl -n jmeter-load exec -it demo-load-deploy-0 /bin/bash 注意事项: jmx文件位置: /...

2020-12-23 15:29:40 283

原创 Linux安装mysql,启动不了的解决合集

Linux安装mysql的具体安装步骤,这里就不详细说了,网上一抓一大把。就说说可能遇到的问题和解决办法吧。可能出现的ERROR:Service mysql start出错(mysql: unrecognized service) MySQL Daemon failed to start fdsafds检查步骤:确保正确安装了mysql-server,和mysql(方法自行百度) 对比 直接启动/etc/rc.d/init.d/mysqld start 是否报错 查看日志文件,...

2020-08-05 20:47:43 473

原创 笨人学python之插入排序

老套路先上代码,对比下下面2个版本的代码,看看区别在哪里:版本v1def test_insertSort(list): # 第一层for是为了控制循环 for i in range(1,len(list)): for j in range(i, 0,-1): if (list[j-1] > list[j]): list[j-1], list[j] = list[j], list[j-1]

2020-07-13 23:43:56 136

原创 笨人学习之python实现选择排序

废话不多说,直接上代码:'''版本:V2.0功能: 1.test_xuanze 实现python的选择算法 首先在未排序序列中找到最小(大)元素,存放到排序序列的起始位置,然后,再从剩余未排序元素中继续寻找最小(大)元素,然后放到已排序序列的末尾'''def test_xuanze(list): #第一层for是为了控制循环 for i in range(len(list)): tmp_minIndex=i for j .

2020-07-13 23:01:55 99

原创 笨人学习之python实现冒泡算发

先上最终代码:'''版本:V2.0功能: 1.test_maopao 实现python的冒泡算法 冒泡算法是临近的2个元素对比大小,把小的交换到前面,大的放到后面'''def test_maopao(list): #第一层for是为了控制循环,具体范围是多少呢?我们来分析下 for i in range(len(list)): #解释下这个范围为何是len(list)-1,如果写成len(list),那么你的list[j+1]就会超出它

2020-07-12 23:07:44 163

原创 作死的路上越走越远,卸载MAC自带的python2.7

为啥卸载我也不想说了,如果想体验下如何作死的,可以参考下链接:https://www.cnblogs.com/baiyygynui/p/11658313.html作死之前先看看下文再作死,先保存下你的python2.7,一定要记得cp了上面的链接内容,大概的卸载方法是:删除Python 2.7 framework sudo rm -rf /Library/Frameworks/Python.framework/Versions/2.7 删除Python 2.7 ap...

2020-07-12 22:04:05 3007

原创 Golang 记录

Golang 记录:《Effective Go》:https://golang.org/doc/effective_go.html 《Twelve Go Best Practices》:https://talks.golang.org/2013/bestpractices.slide 《Go Code Review Comments》:https://github.com/golang/g...

2019-02-03 17:12:09 103

agile_testing

Two of the industry’s most experienced agile testing practitioners and consultants, Lisa Crispin and Janet Gregory, have teamed up to bring you the definitive answers to these questions and many others. In Agile Testing, Crispin and Gregory define agile testing and illustrate the tester’s role with examples from real agile teams. They teach you how to use the agile testing quadrants to identify what testing is needed, who should do it, and what tools might help. The book chronicles an agile software development iteration from the viewpoint of a tester and explains the seven key success factors of agile testing. Readers will come away from this book understanding * How to get testers engaged in agile development * Where testers and QA managers fit on an agile team * What to look for when hiring an agile tester * How to transition from a traditional cycle to agile development * How to complete testing activities in short iterations * How to use tests to successfully guide development * How to overcome barriers to test automation This book is a must for agile testers, agile teams, their managers, and their customers.

2016-07-28

agile_testing.pdf

Two of the industry’s most experienced agile testing practitioners and consultants, Lisa Crispin and Janet Gregory, have teamed up to bring you the definitive answers to these questions and many others. In Agile Testing, Crispin and Gregory define agile testing and illustrate the tester’s role with examples from real agile teams. They teach you how to use the agile testing quadrants to identify what testing is needed, who should do it, and what tools might help. The book chronicles an agile software development iteration from the viewpoint of a tester and explains the seven key success factors of agile testing. Readers will come away from this book understanding * How to get testers engaged in agile development * Where testers and QA managers fit on an agile team * What to look for when hiring an agile tester * How to transition from a traditional cycle to agile development * How to complete testing activities in short iterations * How to use tests to successfully guide development * How to overcome barriers to test automation This book is a must for agile testers, agile teams, their managers, and their customers.

2016-07-28

Selenium 新手入门教程

Selenium 新手入门教程

2016-03-23

qtp11 IE和net4的补丁

qtp11的兼容ie9和.net4的补丁,合并下载,希望能给大家带来帮助

2013-06-19

计算机学习资源

计算机精品学习资料大放送,保留后定会有用!

2012-03-14

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除