VMessAEAD is enforced and a non VMessAEAD connection is received. by 鱼头 2022-01-07 https://91ai.net/thread-950258-1-1.html 处理方法, 两端alterID改成0 vnext 段添加 “security”: “auto”, 或者使用其他指定的加密方式。唯独不能缺少这个字段 阅读全文
shell 获取公网 IP by 鱼头 2021-12-24 命令 curl -s http://www.net.cn/static/customercare/yourip.asp |grep -P -o "[0-9.]+(?=</h2>)" 压缩网址 302 跳转需要调整curl的参数 (但是网址压缩可能失效导致命令不能用) curl -L -s https://shorturl.at/hiqyE |grep -P -o "[0-9.]+(?=</h2>)" 解释 curl -s 隐藏下载进度 -L 兼容 302 跳转 阅读全文
多核心压缩 bz2 的程序 pbzip2 by 鱼头 2021-12-07 bz2是单核程序,在高配置服务器上压缩大文件很慢,所以这里安装了一个多核心版本的记录一下使用方法,安装用 yum 或者 apt 安装就可以 全力输出 tar -c 文件 | 阅读全文
在 PowerShell 中访问 http (Invoke-WebRequest) 替代 Curl by 鱼头 2021-12-06 Invoke-WebRequest简单用法 1.用途 Gets content from a web page on the Internet. 获取http web请求访问内容 2.语法 Parameter Set: Default Invoke-WebRequest [-Uri] <Uri> [-Body <Object> ] [-Certificate <X509Certificate> ] [-CertificateThumbprint <String> ] [-ContentType <String> 阅读全文
Linux 的 bg 和 fg 命令 ---让程序在前台后台之间切换 by 鱼头 2021-12-05 假设你发现前台运行的一个程序需要很长的时间,但是需要干其他的事情,你就可以用 Ctrl-Z ,挂起这个程序,然后可以看到系统提示(方括号中的是作业号): [1]+ 阅读全文
jellyfin 手动修正标题为文件(夹)名 by 鱼头 2021-11-05 jellyfin的逻辑是根据网络刮削器自动命名媒体的,但有时候会出错,需要自己修改文件名配合程序。\n 我不想用刮削器这个东西,但又关不掉。只 阅读全文
使用 js 修改 vue.js 双向绑定的表单内容 by 鱼头 2021-11-05 当网页使用vue.js双向绑定的表单内容时,直接用js修改表单对象的value属性是不会更新对应数据的,在自动化测试或者自从填表程序中产生了 阅读全文
IPv6 测试和 OpenWRT 设置防火墙端口 by 鱼头 2021-10-20 防火墙设置 https://www.cnblogs.com/osnosn/p/11781359.html 测试工具 http://www.ipv6now.com.au/pingme.php http://www.ipv6now.com.au/traceme.php https://www.test-ipv6.com/index.html.zh_CN 阅读全文
查看 windows 以前连过的 wifi 密码 by 鱼头 2021-10-11 netsh wlan show profiles netsh wlan show profile name="wifi名称" key=clear 先找热点名字,再根据名字找密码 阅读全文