2022年7月12日

git error record

摘要: error: fatal: unable to access 'https://github.com/*****.git/': Peer's Certificate issuer is not recognized. config: git config --global http.sslVerif 阅读全文

posted @ 2022-07-12 15:37 yaoweilei 阅读(16) 评论(0) 推荐(0) 编辑

2020年4月28日

hadoop note

摘要: #JAVA_HOMEexport JAVA_HOME=/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.242.b08-0.el7_7.x86_64/jreexport PATH=$PATH:$JAVA_HOME/bin#HADOOP_HOMEexport HADOOP_H 阅读全文

posted @ 2020-04-28 23:25 yaoweilei 阅读(80) 评论(0) 推荐(0) 编辑

2020年4月13日

perl使用excel 出错 GetOleTypeLibObject

摘要: Microsoft Excel Win32::OLE(0.1712): GetOleTypeLibObject() Not a Win32::OLE::TypeLib 阅读全文

posted @ 2020-04-13 14:44 yaoweilei 阅读(854) 评论(0) 推荐(1) 编辑

2018年5月9日

python split

摘要: split() 阅读全文

posted @ 2018-05-09 17:33 yaoweilei 阅读(75) 评论(0) 推荐(0) 编辑

2018年5月3日

sql base

摘要: SELECT SELECT * FROM 表名称 SELECT * FROM Persons SELECT 列名1,列名2 FROM 表名称 SELECT LastName,FirstName FROM Persons SELECT DISTINCT 列名称 FROM 表名称(返回唯一不同的值) S 阅读全文

posted @ 2018-05-03 15:15 yaoweilei 阅读(135) 评论(0) 推荐(0) 编辑

2017年11月8日

python file

摘要: 1.file read 阅读全文

posted @ 2017-11-08 11:37 yaoweilei 阅读(117) 评论(0) 推荐(0) 编辑

2017年10月10日

python list

摘要: 切片: >>> bag[::-1] #翻转List[19, 18, 17, 16, 15, 14, 13, 12, 11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 0] >>> bag[:10] #取前10个[0, 1, 2, 3, 4, 5, 6, 7, 8, 9] >>> 阅读全文

posted @ 2017-10-10 16:28 yaoweilei 阅读(87) 评论(0) 推荐(0) 编辑

2017年9月30日

python args

摘要: *args, **kwargs的理解: 阅读全文

posted @ 2017-09-30 11:25 yaoweilei 阅读(212) 评论(0) 推荐(0) 编辑

artificial intelligence backup

摘要: https://python.freelycode.com/contribution/detail/372 # Python在人工智能中的作用 http://mooc.guokr.com/post/645905/ # 想学机器学习了吗?这儿有攻略 http://www.sohu.com/a/1365 阅读全文

posted @ 2017-09-30 10:18 yaoweilei 阅读(146) 评论(0) 推荐(0) 编辑

2017年9月28日

shell bash memo

摘要: for循环: sgs=`nova server-group-list | grep yao-test1_199 | awk -F ' ' '{print $2}'` for i in $sgs; do nova server-group-delete $i;done 阅读全文

posted @ 2017-09-28 10:54 yaoweilei 阅读(99) 评论(0) 推荐(0) 编辑

导航