上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 35 下一页
摘要: 数据库proxy:可以用作自动化数据逆向SQL test4j/jtester: 阅读全文
posted @ 2018-03-13 11:47 zipon 阅读(173) 评论(0) 推荐(0) 编辑
摘要: 我们可以用下面三张表来查原因: innodb_trx ## 当前运行的所有事务 innodb_locks ## 当前出现的锁 innodb_lock_waits ## 锁等待的对应关系 select * from information_schema.innodb_trx; 查出innodb_trx 阅读全文
posted @ 2018-03-09 13:56 zipon 阅读(6548) 评论(0) 推荐(0) 编辑
摘要: 在线破解地址: https://www.zzzmode.com/mytools/charles/ 之后将下载的jar包替换 charles.app ->右键显示包内容 ->contents/java/charles.jar即可 阅读全文
posted @ 2018-02-13 17:15 zipon 阅读(218) 评论(0) 推荐(0) 编辑
摘要: 目录机构如下: 阅读全文
posted @ 2018-02-13 11:20 zipon 阅读(517) 评论(0) 推荐(0) 编辑
摘要: git log --pretty=tformat: --since ==2016-10-25 --until=2016-10-27 --numstat | awk '{ add += $1 ; subs += $2 ; loc += $1 + $2 } END { printf "added lin 阅读全文
posted @ 2018-02-11 10:35 zipon 阅读(680) 评论(0) 推荐(0) 编辑
摘要: 1.编辑定时任务信息 编辑内容如下: 频率表达式分别对应为 分、时、日、周、月 2.crontab运行python脚本时(不局限为python,主要是系统环境变量问题),发现不运行 因为是以root用户运行,是以系统环境变量运行的,没找到python3路径 所以在要执行的shell文件中加入(可以在 阅读全文
posted @ 2018-01-27 18:31 zipon 阅读(487) 评论(0) 推荐(0) 编辑
摘要: import hashlibdef get_token(): md5str = "abc" #生成一个md5对象 m1 = hashlib.md5() #使用md5对象里的update方法md5转换 m1.update(md5str.encode("utf-8")) token = m1.hexdi 阅读全文
posted @ 2018-01-24 11:11 zipon 阅读(16759) 评论(0) 推荐(0) 编辑
摘要: 【转】http://wenqiang-china.github.io/2016/05/13/python-opetating-excel/ 阅读全文
posted @ 2018-01-24 11:08 zipon 阅读(230) 评论(0) 推荐(0) 编辑
摘要: pytest命令行执行默认不会打印log信息,需要加‘-s’参数或者 ‘–capture=no’,即pytest -s 阅读全文
posted @ 2018-01-15 18:28 zipon 阅读(2670) 评论(0) 推荐(0) 编辑
摘要: inspect.stack()[1][3] 阅读全文
posted @ 2018-01-13 15:20 zipon 阅读(1404) 评论(0) 推荐(0) 编辑
上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 35 下一页