07 2020 档案

摘要:github :https://github.com/variety/variety 文档 https://blog.51cto.com/shanker/1745258 亲自测试 阅读全文
posted @ 2020-07-27 14:09 第十一个程序员 阅读(9787) 评论(0) 推荐(0)
摘要:logstash + filebeat 将来源不同的数据分发到不同的地方 logstash配置文件:first-pipeline.conf 1 input { 2 beats { 3 port => 5044 4 } 5 } 6 filter { 7 if "backend" in [tag] { 阅读全文
posted @ 2020-07-27 11:26 第十一个程序员 阅读(623) 评论(0) 推荐(0)
摘要:import pdb;pdb.set_trace() #适合在项目中打断点调试 # https://www.jianshu.com/p/d3c5f79625f4 pysnooper #https://www.jianshu.com/p/57d51311aa63 import pdb import p 阅读全文
posted @ 2020-07-26 20:22 第十一个程序员 阅读(161) 评论(0) 推荐(0)
摘要:python 思维导图 https://mp.weixin.qq.com/s?__biz=MzAwNTM5Njk3Mw==&mid=2247487934&idx=1&sn=cd59becc588d8ca6afeeb34c197883e3&chksm=9b1c113cac6b982a7e42455c1 阅读全文
posted @ 2020-07-22 10:45 第十一个程序员 阅读(133) 评论(0) 推荐(0)
摘要:python处理excel的模块,xlrd读取excel,xlwt写入excel 一、安装 pip install xlrd 二、使用 1. 打开excel,得到Book对象 import xlrd rb = xlrd.open_workbook(r'E:\python\test.xlsx', fo 阅读全文
posted @ 2020-07-20 16:09 第十一个程序员 阅读(2505) 评论(0) 推荐(0)
摘要:tar zcvf gbm_log.tar.gz gbm/ 打包 tar -zxvf filebeat-7.7.1-linux-x86_64.tar.gz 解包 阅读全文
posted @ 2020-07-20 09:54 第十一个程序员 阅读(900) 评论(0) 推荐(0)
摘要:创建表 ######################## Create customers table ########################CREATE TABLE customers(cust_id int NOT NULL AUTO_INCREMENT,cust_name char( 阅读全文
posted @ 2020-07-16 13:27 第十一个程序员 阅读(121) 评论(0) 推荐(0)
摘要:https://www.jetbrains.com/pycharm/download/download-thanks.html?platform=windows 阅读全文
posted @ 2020-07-02 11:13 第十一个程序员 阅读(149) 评论(0) 推荐(0)