摘要: 《卜算子·自嘲》 本是后山人 偶做前堂客 醉舞经阁半卷书 坐井说天阔 大志戏功名 海斗量福祸 待到囊中羞涩时 怒指乾坤错 欲游山河十万里 伴吾共蹉跎 酒杯空,灯花落 夜无眠,独高歌 阅遍天下无数人 知音有几个 阅读全文
posted @ 2022-06-11 18:04 聪聪的样子 阅读(65226) 评论(0) 推荐(0) 编辑
摘要: 在学习python网页爬虫时,测试requests的post方法进行表单提交时,命名.py文件为requests.py 代码如下: import requests params={'firstname':'xing','lastname':'ming'}r=requests.post("http:/ 阅读全文
posted @ 2019-04-16 18:51 聪聪的样子 阅读(515) 评论(0) 推荐(0) 编辑
摘要: 1.桌面必须要有Chrome 快捷方式 2.进入快捷方式属性 3.修改目标为:"C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --ignore-certificate-errors --allow-running-insec 阅读全文
posted @ 2019-04-16 11:14 聪聪的样子 阅读(5468) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2019-04-16 09:57 聪聪的样子 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 1. create sequence : create sequence TEST_SEQUENCE minvalue 1 maxvalue 1000000000 start with 1 increment by 1 cache 50 cycle; 说明: minvalue:序列最小值 maxva 阅读全文
posted @ 2019-04-12 14:02 聪聪的样子 阅读(221) 评论(0) 推荐(0) 编辑
摘要: 使用find查询文件批量处理文件: Find . -mtime +2 -name “*.log.*” -exec rm -f {} \; Find参数: Find : 查找 . : 当前目录 -mtime +2: 按文件更改时间来查找文件,-n指n天以内,+n指n天以前 -name : 不解释 -e 阅读全文
posted @ 2019-04-12 13:44 聪聪的样子 阅读(299) 评论(0) 推荐(0) 编辑