摘要:
https://holylcd.github.io/2019/03/28/be066140513011e98a97e9942f6fcdb5.html https://zhuanlan.zhihu.com/p/28816035 阅读全文
2022年2月10日
2021年9月19日
摘要:
https://www.mf8.biz/ngx_brotli/ 前言 之前有一篇文章写过安装 google/ngx_brotli ,详情:《Nginx 使用 Brotli 压缩算法,Better than Gzip Compression》,不过呢,由于 ngx_brotli 程序的发展,所以之前的 阅读全文
2021年2月16日
摘要:
#!/bin/bash #搭建ftp #auth find install_vsftp(){ echo "开始安装vsftp 并且检查环境" yum -y install vsftpd libdb-utils #ftp数据存放目录 mkdir /data/vsftpd -p #创建ftp用户 use 阅读全文
2021年1月6日
摘要:
复现方式: Delete FROM user Where User='test' and Host='%'; flush privileges; 修复流程: 1.用root用户删除两个函数,语句分别为 DROP FUNCTION IF EXISTS currval; DROP FUNCTION IF 阅读全文
2019年4月9日
摘要:
# coding:utf-8 from learning_python.Telegram_push.check_hardware import check_cpu import schedule import time schedule.every(5).seconds.do(check_cpu) while True: schedule.run_pending() time.s... 阅读全文
2019年4月5日
摘要:
paramiko sftp传输文件的方法 paramiko批量执行命令,有点垃圾写的 阅读全文
2018年12月2日
摘要:
server { listen 80; server_name localhost; set $expires_duration "30d"; if ($uri ~* \.html$) { set $expires_duration "10m"; } expires $expires_duration; locatio... 阅读全文
2018年11月13日
摘要:
数字类型(int): 在python 2中,数字类型可以分为整形,长整形,浮点型,以及复数。在python3中都是整形和长整形都称之为整形,且python3中没有限制。 字符串(str): 1.capitalize 方法使用,作用是将首字母变大写: 2.casefold 方法使用,作用是将字符串里的 阅读全文
2018年11月11日
摘要:
对于python的10个小练习做下笔记 1.使用while循环输入1 2 3 4 5 6 8 9 10。。。自己写的代码如下: num1 = 0 while num1 < 10: num1 = num1 +1 if num1 == 7 : continue print(num1) 视频教程: n = 阅读全文