10 2019 档案

摘要:转:https://juejin.im/post/5a1d4e546fb9a0450f21af23 强制缓存 对于强制缓存,服务器响应的header中会用两个字段来表明——Expires和Cache-Control。 Expires Exprires的值为服务端返回的数据到期时间。 当再次请求时的请 阅读全文
posted @ 2019-10-31 16:33 yile 阅读(160) 评论(0) 推荐(0)
摘要:一、tomcat启动 1.准备一台tomcat服务器 2.将Jenkins.war复制到$tomcat_home/wepapp目录下 3.启动tomcat 4.在浏览器中输入http://localhost:8080/jenkins,(http://<tomcat_ip>:<tomcat_port> 阅读全文
posted @ 2019-10-31 10:03 yile 阅读(1174) 评论(0) 推荐(0)
摘要:1.命令行中,输入 git init 2.将文件夹中的内容全部添加到git管理中 git add . 3.提交 git commit -m 'first commit' 4.连接github仓库 git remote add origin https://github.com/shench56123 阅读全文
posted @ 2019-10-31 09:59 yile 阅读(4682) 评论(0) 推荐(0)
摘要:$ ssh-keygen -t rsa -C "youremail@example.com" 一直回车就可以看到id_rsa和id_rsa.pub这两个文件 把刚才id_rsa.pub里面的内容复制到Title下面的Key内容框里面,最后点击Add SSH key,这样就完成了SSH Key的加密 阅读全文
posted @ 2019-10-30 14:12 yile 阅读(5728) 评论(0) 推荐(0)
摘要:转https://www.cnblogs.com/linkenpark/p/8079337.html 阅读全文
posted @ 2019-10-25 11:54 yile 阅读(170) 评论(0) 推荐(0)
摘要:from xlrd import open_workbookclass Read_xlxs: def __init__(self, file): self.file = file self.test_data = [] def read_file(self, sheetname): self.dat 阅读全文
posted @ 2019-10-24 14:19 yile 阅读(265) 评论(0) 推荐(0)