一些一键脚本

warp / warp-go 一键脚本

f佬的一键脚本必须放最前面

wget -N https://gitlab.com/fscarmen/warp/-/raw/main/menu.sh && bash menu.sh

warp一键脚本

wget -N https://gitlab.com/fscarmen/warp/-/raw/main/warp-go.sh && bash warp-go.sh

warp-go一键脚本

太强了, 详细去看gitlab的介绍

fscarmen / warp · GitLab
GitLab.com

融合怪测评脚本

curl -L https://gitlab.com/spiritysdx/za/-/raw/main/ecs.sh -o ecs.sh && chmod +x ecs.sh && bash ecs.sh

一般测评的话这一个脚本就够了吧

流媒体解锁检测

bash <(curl -L -s https://netflix.dad/detect-script)

1710231174292.png
satty-20240312-16:10:40.png

检测回程脚本

curl https://raw.githubusercontent.com/zhucaidan/mtr_trace/main/mtr_trace.sh|bash

1712383423703.png

工具箱

其实只用过swap交换
wget -O box.sh https://raw.githubusercontent.com/BlueSkyXN/SKY-BOX/main/box.sh && chmod +x box.sh && clear && ./box.sh
 1. IPV.SH ipv4/6优先级调整一键脚本·下载
 2. IPT.SH iptable一键脚本
 3. SpeedTest-Linux 下载
 4. Rclone&Fclone·下载
 5. ChangeSource Linux换源脚本·下载
 6. Besttrace 路由追踪·下载
 7. NEZHA.SH哪吒面板/探针
 --------------------------------------------------
 11. 获取本机IP
 12. 安装最新BBR内核·使用YUM·仅支持CentOS
 13. 启动BBR FQ算法
 14. 系统网络配置优化
 15. Git 新版 安装·仅支持CentOS
 16. 宝塔面板 自动磁盘挂载工具
 17. BBR一键管理脚本
 18. SWAP一键安装/卸载脚本
 19. F2B一键安装脚本
 --------------------------------------------------
 21. Superbench 综合测试
 22. MT.SH 流媒体解锁测试
 23. Lemonbench 综合测试
 24. UNIXbench 综合测试
 25. 三网Speedtest测速
 26. Memorytest 内存压力测试
 27. Route-trace 路由追踪测试
 28. YABS LINUX综合测试
 29. Disk Test 硬盘&系统综合测试
 210.TubeCheck Google/Youtube CDN分配节点测试
 211.RegionRestrictionCheck 流媒体解锁测试
 --------------------------------------------------
 31. MTP&TLS 一键脚本
 32. Rclone官方一键安装脚本
 33. Aria2 最强安装与管理脚本
 --------------------------------------------------
 00. 宝塔面板综合安装脚本
 ==================================================
 0. 退出脚本

占用一部分cpu换取内存

curl -L https://raw.githubusercontent.com/spiritLHLS/addzram/main/addzram.sh -o addzram.sh && chmod +x addzram.sh && bash addzram.sh

建议选择lz4

Read more

fastai14-Resnet

卷积神经网络有这样两个问题 * 我们需要大量的步长为 2 的层来使我们的网格在最后变成 1×1 * 无法在除我们最初训练的尺寸之外的任何尺寸的图像上工作 全卷积网络 | fully convolutional networks def avg_pool(x): return x.mean((2,3)) 前面正常卷积, 剩下的直接求平均 def block(ni, nf): return ConvLayer(ni, nf, stride=2) def get_model(): return nn.Sequential( block(3, 16), block(16, 32), block(32, 64), block(64, 128)

By kamado nezuko

pt命令行做种

发布种子各站点都有教程, 奈何使用的qb下载器为qbittorrent-nox, 没有直接生成torrent文件的选项, google发现可以使用transmission-cli命令行生成torrent 安装 sudo apt install transmission-cli 生成torrent种子 transmission-create -p -o path/to/example.torrent --tracker tracker_announce_url --piecesize 2048 path/to/file_or_directory * -p: 私有种子,不使用 DHT * -o: 生成 torrent 文件路径 * -t: tracker 地址 * -s: 每个文件块大小(参考下表) 文件大小 文件块大小 0 GB - 0.5 GB

By kamado nezuko