摘要: class node: def __init__(self,data=None): self.data = data self.next = Noneclass link: def __init__(self): self.head = None def append(self,node): if 阅读全文
posted @ 2020-04-10 11:49 taomin 阅读(204) 评论(0) 推荐(0) 编辑
摘要: 1. 项目经验 2. 测试的过程 3. 京东登录页面怎么测? 4. 如果一个普通用户,他的百度首页打不开,问题怎么定位?写出定位流程。 原则是从简单到复杂的思路排查 1、检查机器网络是否正常,通过ping或者打开其他网页检查 2、检查浏览器network设置是否正常,浏览器可以设置模拟3G,4G,o 阅读全文
posted @ 2020-04-09 19:53 taomin 阅读(805) 评论(0) 推荐(0) 编辑
摘要: 1.本周技术主题 python的魔法方法 https://www.cnblogs.com/seablog/p/7173107.html 2.好看的文章 3.本周主题思考主题 如何有效的沟通 4.本周阅读的书籍 沟通 阅读全文
posted @ 2019-03-16 15:30 taomin 阅读(92) 评论(0) 推荐(0) 编辑
摘要: 1.本周学习的技术 主题:Mysql 2.好看的文章记录 https://alibaba.github.io/arthas/install-detail.html 计算机科学中最重要的32个算法 https://maimai.cn/article/detail?fid=1137481915&efid 阅读全文
posted @ 2019-03-05 15:48 taomin 阅读(68) 评论(0) 推荐(0) 编辑
摘要: pass 阅读全文
posted @ 2019-03-03 10:18 taomin 阅读(393) 评论(0) 推荐(0) 编辑
摘要: pass https://www.cnblogs.com/tangkaishou/p/9246353.html 阅读全文
posted @ 2019-03-03 10:14 taomin 阅读(105) 评论(0) 推荐(0) 编辑
摘要: import os def getAllFile(*names): if len(names) == 0: return "" else: allList = [] for name in names: fileAndDirString = os.popen("ls -l "+name).read() ... 阅读全文
posted @ 2019-03-02 01:28 taomin 阅读(1950) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/wangwei916797941/p/10030805.html 阅读全文
posted @ 2019-02-28 16:13 taomin 阅读(145) 评论(0) 推荐(0) 编辑
摘要: https://www.infoq.cn/article/kafka-analysis-part-1 https://www.infoq.cn/article/kafka-analysis-part-2 阅读全文
posted @ 2019-02-19 15:25 taomin 阅读(146) 评论(0) 推荐(0) 编辑
摘要: 1.主键是什么 唯一标识一行数据的字段 2.mysql分库分表 用的是id取模的方式实现的 3.cookie和session的区别 cookie机制采用的是在客户端保持状态的方案,以键值对的形式发给服务端,通过键值对来判断是否已登录,已认证等信息 session机制是一种服务端保持状态的机制,客户端 阅读全文
posted @ 2019-02-15 17:44 taomin 阅读(85) 评论(0) 推荐(0) 编辑