摘要: addEventListener('fetch', event => { event.respondWith(fetchAndApply(event.request)); }) async function fetchAndApply(request) { var items = ['','','' 阅读全文
posted @ 2022-08-02 20:25 柒丶月 阅读(90) 评论(0) 推荐(0) 编辑
摘要: su root切换到root账户,输入bt default之后就会出现你的服务器宝塔地址 阅读全文
posted @ 2022-07-19 00:20 柒丶月 阅读(251) 评论(0) 推荐(0) 编辑
摘要: 这里安装 BBR plus 版本 Plus 版本经过修改后会具有侵略性,能更好的抢占带宽,提高速度。 cd /usr/src && wget -N --no-check-certificate "https://raw.githubusercontent.com/chiakge/Linux-NetS 阅读全文
posted @ 2022-06-29 18:17 柒丶月 阅读(274) 评论(0) 推荐(0) 编辑
摘要: 1.安装screen命令 yum install screen 2.创建scree会话 screen -S test 3.运行程序,然后可以直接关闭ssh远程 4.查看之前的会话 screen -r test 5.查看已经创建的会话: screen -ls 阅读全文
posted @ 2022-06-25 13:14 柒丶月 阅读(48) 评论(0) 推荐(0) 编辑
摘要: 一、使用pip安装PyInstaller ①python3.x需要使用PyInstaller才能进行转exe文件。 ②在命令里安装PyInstaller 用命令pip install pyinstaller安装的。 二、将.py文件转换成.exe文件 ① PyInstaller命令输入参数: -F 阅读全文
posted @ 2022-06-05 15:55 柒丶月 阅读(700) 评论(0) 推荐(0) 编辑
摘要: socks5 1.sudo -i 2.yum install -y wget 3.wget -q -N --no-check-certificate https://raw.githubusercontent.com/wyx176/Socks5/master/install.sh && bash i 阅读全文
posted @ 2022-05-31 00:55 柒丶月 阅读(151) 评论(0) 推荐(0) 编辑
摘要: https://geek985.com/92463 阅读全文
posted @ 2022-04-18 02:19 柒丶月 阅读(185) 评论(0) 推荐(0) 编辑
摘要: TXT合并 type *.txt>>all.txt 将上面写入txt文件重命名bat TXT分割 @echo off echo "请把要分割的文本文件重命名为a.txt,此BAT程序和TXT要在同一目录下" echo "请输入按多少行分割TXT文件并回车" set /p n= powershell 阅读全文
posted @ 2022-04-16 22:09 柒丶月 阅读(88) 评论(0) 推荐(0) 编辑
摘要: 第一步:如图所示,需要从数据库修改权限,条件修改为允许所有人或者你电脑本机IP(指定IP)都可以; 第二步:选择“安全”,设置放行端口,将3306填入第一个对应位置,后面自己写备注,然后点击“放行”按钮即可,也可以指定范围,如3000:3500。 以上操作完成之后,最好返回首页重启一下MySQL,然 阅读全文
posted @ 2022-04-04 22:09 柒丶月 阅读(691) 评论(0) 推荐(0) 编辑
摘要: Mybatis入门 HelloWorld 准备数据库 CREATE DATABASE /*!32312 IF NOT EXISTS*/`test01` /*!40100 DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci */ /*!80 阅读全文
posted @ 2020-08-27 17:15 柒丶月 阅读(156) 评论(0) 推荐(0) 编辑