上一页 1 ··· 24 25 26 27 28 29 30 31 32 ··· 43 下一页
摘要: 连接到远程服务器ssh -p port name@ip (小写p) 本地上传到服务器 scp -P port 本地文件 name@ip:上传路径 (大写P) 例如:scp -P 22 ./log.txt tarzan@1.1.1.1:/home/tarzan/log/log.txt服务器到本地scp 阅读全文
posted @ 2021-01-04 20:37 Tarzen 阅读(110) 评论(0) 推荐(0) 编辑
摘要: nohup python3 webhook.py >> ./log.txt 2>&1 & 阅读全文
posted @ 2021-01-04 20:26 Tarzen 阅读(126) 评论(0) 推荐(0) 编辑
摘要: 不打开窗口特效无法使用录屏(快捷ctrl+alt+r) 在商店中搜索显卡 重启 阅读全文
posted @ 2020-12-25 11:36 Tarzen 阅读(976) 评论(0) 推荐(0) 编辑
摘要: # 最终代码 import requests from requests.adapters import HTTPAdapter s = requests.session() s.mount('http://', HTTPAdapter(max_retries=3)) s.mount('https: 阅读全文
posted @ 2020-12-22 09:35 Tarzen 阅读(986) 评论(0) 推荐(0) 编辑
摘要: import grequests #这个包要放到文件最顶部的导入 req_list = [] for x in range(100): headers = {"Content-Type": "application/json", 'Connection': 'close'} url = "http: 阅读全文
posted @ 2020-12-08 16:26 Tarzen 阅读(928) 评论(0) 推荐(0) 编辑
摘要: # tarzan @ tarzan3w in ~ [8:48:41] $ nohup google-chrome & #后台挂起启动chrome [1] 10651 nohup: 忽略输入并把输出追加到'nohup.out' 阅读全文
posted @ 2020-12-03 08:57 Tarzen 阅读(1208) 评论(0) 推荐(0) 编辑
摘要: 1.先看效果(小熊) 教程 先找到你要修改的应用程序(谷歌浏览器) 确保有sudo权限哦 # tarzan @ tarzan3w in ~/Desktop [13:30:37] $ cd /usr/share/applications/ # tarzan @ tarzan3w in /usr/sha 阅读全文
posted @ 2020-12-01 14:42 Tarzen 阅读(2139) 评论(0) 推荐(0) 编辑
摘要: def print_msg(fun): def innfun_(self,msg,*args,**kwargs): print(msg) return fun(self,msg,*args,**kwargs) class Logger(Filterer): def __init__(self, na 阅读全文
posted @ 2020-10-30 17:56 Tarzen 阅读(204) 评论(0) 推荐(0) 编辑
摘要: 默认的意思就是你不传端口,自动给你加个默认端口 http 请求默认是80 https 请求默认端口是443 阅读全文
posted @ 2020-10-30 12:43 Tarzen 阅读(133) 评论(0) 推荐(0) 编辑
摘要: 快捷 键键Alt + Shift + Insert 阅读全文
posted @ 2020-09-16 15:18 Tarzen 阅读(1086) 评论(0) 推荐(0) 编辑
上一页 1 ··· 24 25 26 27 28 29 30 31 32 ··· 43 下一页