上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 32 下一页
2023年6月16日
摘要: # coding:utf-8 import yaml #pip install pyyaml import os import json base_path = os.path.dirname(os.path.abspath(__file__)) conf_file= os.path.join(ba 阅读全文
posted @ 2023-06-16 15:15 boye169 阅读(65) 评论(0) 推荐(0)
摘要: # coding:utf-8 import configparser import os import json base_path = os.path.dirname(os.path.abspath(__file__)) conf_file= os.path.join(base_path,"con 阅读全文
posted @ 2023-06-16 15:14 boye169 阅读(23) 评论(0) 推荐(0)
2023年6月14日
摘要: #!/bin/bash file="/home/test.txt" now_time=`date -u "+%Y-%m-%d %H:%M:%S" -d "8 hour"` if [ ! -f "$file" ];then echo "check time:[$now_time] file $file 阅读全文
posted @ 2023-06-14 17:00 boye169 阅读(89) 评论(0) 推荐(0)
2023年6月12日
摘要: 下载 MySQL :: Download MySQL Community Server 创建目录并解压 #创建目录 mkdir /usr/local/mysql #解压文件并重命名 tar -zxvf mysql-8.0.33-linux-glibc2.28-x86_64.tar.gz mv mys 阅读全文
posted @ 2023-06-12 16:43 boye169 阅读(146) 评论(0) 推荐(0)
2023年5月29日
摘要: #输出公网ippython3 -c "import requests;print(requests.get('http://jsonip.com/').json().get('ip'))" 20.23.45.23 阅读全文
posted @ 2023-05-29 11:17 boye169 阅读(17) 评论(0) 推荐(0)
2023年5月25日
摘要: grep -A 显示匹配指定内容及之后的n行 grep -B 显示匹配指定内容及之前的n行 grep -C 显示匹配指定内容及其前后各n行 grep -A 5 name test.txt 搜索匹配test.txt文件中与”name”字符串匹配的行,并显示其后的5行 阅读全文
posted @ 2023-05-25 15:35 boye169 阅读(116) 评论(0) 推荐(0)
2023年5月19日
摘要: https://echarts.apache.org/examples/zh/index.html#chart-type-scatter 阅读全文
posted @ 2023-05-19 11:00 boye169 阅读(118) 评论(0) 推荐(0)
摘要: <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>ECharts</title> <!-- 引入 echarts.js --> <script src="./echarts.min.js"></script> </head> <b 阅读全文
posted @ 2023-05-19 09:57 boye169 阅读(429) 评论(0) 推荐(0)
摘要: <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>ECharts</title> <script src="./sources/echarts/echarts.min.js"></script> </head> <body sty 阅读全文
posted @ 2023-05-19 09:44 boye169 阅读(35) 评论(0) 推荐(0)
摘要: <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>ECharts</title> <!-- 引入 echarts.js --> <script src="./echarts.min.js"></script> </head> <b 阅读全文
posted @ 2023-05-19 09:36 boye169 阅读(19) 评论(0) 推荐(0)
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 32 下一页