2026年8月9日
摘要: 本代码经过 GPT-5.6 Sol 高强度推理优化性能 #import <Foundation/Foundation.h> #import <Metal/Metal.h> #include <algorithm> #include <array> #include <atomic> #include 阅读全文
posted @ 2026-08-09 21:39 项希盛 阅读(5) 评论(0) 推荐(0)
摘要: Tron地址靓号生成器(Objective-C++) 保存代码为main.mm #import <Foundation/Foundation.h> #import <Metal/Metal.h> #include <algorithm> #include <array> #include <atom 阅读全文
posted @ 2026-08-09 19:28 项希盛 阅读(2) 评论(0) 推荐(0)
  2026年7月4日
摘要: https://github.com/zabbly/incus 安装密钥 curl -fsSL https://pkgs.zabbly.com/key.asc -o /etc/apt/keyrings/zabbly.asc 7.0 LTS repository sh -c 'cat <<EOF > 阅读全文
posted @ 2026-07-04 19:23 项希盛 阅读(14) 评论(0) 推荐(0)
摘要: 下载系统镜像 https://cdimage.debian.org/cdimage/archive/12.14.0/amd64/iso-cd/debian-12.14.0-amd64-netinst.iso 安装的时候选择手动创建xfs分区,不要swap分区 修改grub 1:开启目录级别的配额 2 阅读全文
posted @ 2026-07-04 19:03 项希盛 阅读(13) 评论(0) 推荐(0)
  2026年6月25日
摘要: apt update apt install lxc lxc-templates bridge-utils lxc-create -n c23 -t download -- -d debian -r bookworm -a amd64 lxc-create -n c24 -t download -- 阅读全文
posted @ 2026-06-25 01:54 项希盛 阅读(14) 评论(0) 推荐(0)
  2025年11月27日
摘要: 把DnspodClient.class.php文件放到class文件夹下面 <?php class DnspodClient { private $secretId; private $secretKey; private $endpoint = "dnspod.tencentcloudapi.co 阅读全文
posted @ 2025-11-27 21:08 项希盛 阅读(22) 评论(0) 推荐(0)
  2025年10月7日
摘要: 首先用Docker环境搭建 docker-compose.yml services: web: container_name: caddy image: caddy network_mode: host volumes: - ./root:/root - ./etc/caddy:/etc/caddy 阅读全文
posted @ 2025-10-07 01:53 项希盛 阅读(69) 评论(0) 推荐(0)
  2025年10月3日
摘要: Go语言非常适合做一些命令行小工具,编译下面这个代码生成golang-mikrotik-replace.exe文件 package main import ( "flag" "fmt" "net/url" "os" "strings" "github.com/go-routeros/routeros 阅读全文
posted @ 2025-10-03 01:54 项希盛 阅读(22) 评论(0) 推荐(0)
  2025年8月22日
摘要: 将当前Linux系统手动DD成Mikrotik系统 第一步:下载Mikrotik的硬盘镜像 wget -O /root/chr.img.xz https://us.feieryun.cn/users/xixi/public/image/mikrotik/chr-7.19.4-legacy-bios. 阅读全文
posted @ 2025-08-22 01:51 项希盛 阅读(89) 评论(0) 推荐(0)
  2025年7月27日
摘要: 先开好接收端 socat -u TCP-LISTEN:12345,fork,reuseaddr SYSTEM:"ffplay -autoexit -f wav -" 可以设置低延迟 socat -u TCP-LISTEN:12345,fork,reuseaddr SYSTEM:"stdbuf -o0 阅读全文
posted @ 2025-07-27 04:30 项希盛 阅读(33) 评论(0) 推荐(0)