#Android #SIM #eSIM
## SIM
https://github.com/Ackites/Nrfr
修改 SIM 卡国家码为支持的地区(高系统用 turbo ims)
---
## eSIM
https://github.com/Silentely/eSIM-Tools
专为已有 Giffgaff 和 Simyo 号码的用户设计的现代化 eSIM 管理工具集,支持将物理 SIM 卡转换为 eSIM、设备更换和二维码生成。
### OpenEUICC
官网:https://openeuicc.com
https://gitea.angry.im/PeterCxy/OpenEUICC
https://github.com/estkme-group/openeuicc
模块下载短链:https://aka.pw/magiskeuicc.zip
### EasyEUICC
官网:https://easyeuicc.org
APK 下载短链:https://aka.pw/easyeuicc.apk
## SIM
https://github.com/Ackites/Nrfr
修改 SIM 卡国家码为支持的地区(高系统用 turbo ims)
---
## eSIM
https://github.com/Silentely/eSIM-Tools
专为已有 Giffgaff 和 Simyo 号码的用户设计的现代化 eSIM 管理工具集,支持将物理 SIM 卡转换为 eSIM、设备更换和二维码生成。
### OpenEUICC
官网:https://openeuicc.com
https://gitea.angry.im/PeterCxy/OpenEUICC
https://github.com/estkme-group/openeuicc
模块下载短链:https://aka.pw/magiskeuicc.zip
### EasyEUICC
官网:https://easyeuicc.org
APK 下载短链:https://aka.pw/easyeuicc.apk
短链接对应的文件在每天 00:00 (UTC) 时间更新#Android #termux #codex
https://github.com/aeewws/codex-mobile
https://github.com/MerverliPy/codexui
https://github.com/DioNanos/codex-termux
https://github.com/friuns2/codex-mobile
---
命令安装原链接
需要 Termux 里的本地 Codex 后端
https://github.com/aeewws/codex-mobile
https://github.com/MerverliPy/codexui
https://github.com/DioNanos/codex-termux
自身或者 termux 安装 code
https://github.com/friuns2/codex-mobile
---
命令安装原链接
cat > ~/fix_codex.sh << 'EOF'
#!/usr/bin/env bash
# Termux 下修复 / 安装 Codex CLI(cargo 版)
# 目标版本:codex-cli 0.65.0(tag = rust-v0.65.0)
# 全程无需交互,自动安装依赖并安装 / 升级 codex-cli
set -euo pipefail
CODEX_VERSION="0.65.0"
CODEX_TAG="rust-v${CODEX_VERSION}"
echo "============================================================"
echo "[fix_codex] Termux Codex CLI 安装 / 升级脚本"
echo "目标版本:codex-cli ${CODEX_VERSION}(tag: ${CODEX_TAG})"
echo "============================================================"
echo
echo "[1] 打印环境信息"
echo "HOME=$HOME"
echo "SHELL=${SHELL:-unknown}"
echo "CARGO_HOME=${CARGO_HOME:-~/.cargo( 默认)}"
echo "PATH=$PATH"
echo
# 计算 cargo bin 目录
BIN_DIR="${CARGO_HOME:-$HOME/.cargo}/bin"
mkdir -p "$BIN_DIR"
echo "[2] 列出 ${BIN_DIR} 当前内容(如果有)"
ls -la "$BIN_DIR" || true
echo
echo "[3] 尝试运行当前已安装的 codex(如果存在)"
if [-x "$BIN_DIR/codex"]; then
echo ">> 绝对路径运行当前 codex:"
"$BIN_DIR/codex" --version || true
else
echo ">> ${BIN_DIR}/codex 当前不存在,将进行全新安装"
fi
echo
echo "[4] 安装基础依赖(幂等,可重复执行,无需手动确认)"
pkg update -y || true
pkg upgrade -y || true
pkg install -y rust git clang make pkg-config openssl openssl-tool
echo
echo "[5] 为 Termux 写入 cargo profile(profile = termux)"
mkdir -p "$HOME/.cargo"
cat > "$HOME/.cargo/config.toml" <<'EOCARGO'
[profile.termux]
inherits = "release"
lto = "off"
codegen-units = 8
opt-level = "s"
EOCARGO
echo ">> 已写入 ~/.cargo/config.toml"
echo
echo "[6] 确保当前 shell PATH 包含 ~/.cargo/bin"
export PATH="$HOME/.cargo/bin:$PATH"
echo "当前 PATH: $PATH"
echo
echo "[7] 使用 cargo 安装 / 升级 Codex CLI 到 ${CODEX_TAG}"
echo ">> 执行:cargo install --git https://github.com/openai/codex --tag ${CODEX_TAG} codex-cli --force --locked --profile termux"
cargo install --git https://github.com/openai/codex --tag "${CODEX_TAG}" codex-cli --force --locked --profile termux
echo
echo "[8] 确保 PATH 永久包含 ~/.cargo/bin(写入 .bashrc / .profile,自动去重)"
touch "$HOME/.bashrc" "$HOME/.profile"
grep -qxF 'export PATH="$HOME/.cargo/bin:$PATH"'"$HOME/.bashrc"2>/dev/null || printf'\n# Cargo bins\nexport PATH="$HOME/.cargo/bin:$PATH"\n'>>"$HOME/.bashrc"grep -qxF'export PATH="$HOME/.cargo/bin:$PATH"'"$HOME/.profile" 2>/dev/null || printf '\n# Cargo bins\nexport PATH="$HOME/.cargo/bin:$PATH"\n' >> "$HOME/.profile"
# 刷新当前 shell 的可执行缓存
hash -r
echo ">> PATH 已写入 .bashrc / .profile 并刷新 hash"
echo
echo "[9] 再次验证 codex 安装情况"
echo "type -a codex 输出:"
type -a codex || true
echo
echo "which codex 输出:"
which codex || true
echo
if [-x "$BIN_DIR/codex"]; then
echo ">> 绝对路径运行:${BIN_DIR}/codex --version"
"$BIN_DIR/codex" --version || true
fi
echo
echo ">> PATH 方式运行:codex --version"
if command -v codex >/dev/null 2>&1; then
codex --version || true
else
echo "!! 警告:当前 shell 中未找到 codex 命令,请重新打开 Termux 或执行:"
echo "export PATH=\"$HOME/.cargo/bin:\$PATH\""
fi
echo
echo "============================================================"
echo "[✓] Codex CLI 安装 / 升级步骤执行完毕(目标版本:${CODEX_VERSION})"
echo "若上面 codex --version 输出中包含 ${CODEX_VERSION} 即表示安装成功。"
echo "之后可直接运行:"
echo "codex --sandbox danger-full-access --ask-for-approval never"
echo "======================================================
termux 复制粘贴
======"
echo
EOF
chmod +x ~/fix_codex.sh
~/fix_codex.sh#ssh工具
> xterminal
https://www.xterminal.cn/
> termius
https://termius.com/
> Aechoterm
https://github.com/Aechoterm/Aechoterm/
> electerm
https://github.com/electerm/electerm
> aterminal
https://aterminal.net/
> finalshell
https://www.hostbuf.com/
> tabby
https://github.com/Eugeny/tabby
> Xshell
https://www.xshell.com
> WindTerm
https://github.com/kingToolbox/WindTerm
> MobaXterm
https://mobaxterm.mobatek.net
> putty
建议与 WinSCP 一起使用
https://www.putty.org
> serverbox
https://github.com/lollipopkit/flutter_server_box
> ZestSSH
https://zestssh.com/
#苹果 #iOS
> CareServer
https://apps.apple.com/cn/app/id6474921250
> servercat
https://apps.apple.com/cn/app/id1501532023
#安卓 #Android
> serverbox
https://github.com/lollipopkit/flutter_server_box
> termius
https://termius.com/
> daremote
https://play.google.com/store/apps/details?id=com.deskangel.daremote
> juicessh
https://juicessh.com/
> xterminal
https://www.xterminal.cn/
> termius
https://termius.com/
> Aechoterm
https://github.com/Aechoterm/Aechoterm/
> electerm
https://github.com/electerm/electerm
> aterminal
https://aterminal.net/
> finalshell
https://www.hostbuf.com/
> tabby
https://github.com/Eugeny/tabby
> Xshell
https://www.xshell.com
> WindTerm
https://github.com/kingToolbox/WindTerm
> MobaXterm
https://mobaxterm.mobatek.net
> putty
建议与 WinSCP 一起使用
https://www.putty.org
> serverbox
https://github.com/lollipopkit/flutter_server_box
> ZestSSH
https://zestssh.com/
#苹果 #iOS
> CareServer
https://apps.apple.com/cn/app/id6474921250
> servercat
https://apps.apple.com/cn/app/id1501532023
#安卓 #Android
> serverbox
https://github.com/lollipopkit/flutter_server_box
> termius
https://termius.com/
> daremote
https://play.google.com/store/apps/details?id=com.deskangel.daremote
> juicessh
https://juicessh.com/
#APP #历史版本
#微信
> 微信历史版本
https://t.me/wechat_updatelog
> 聊天记录导出
https://t.me/weflow_cc
https://github.com/ILoveBingLu/CipherTalk
https://github.com/hicccc77/WeFlow
---
#QQ
> QQ历史版本
https://t.me/qq_updatelog
https://t.me/QQUpdates
#应用商店
> Aurora Store:谷歌应用商店的替代平台。
https://t.me/AuroraOfficial
#微信
> 微信历史版本
https://t.me/wechat_updatelog
> 聊天记录导出
https://t.me/weflow_cc
https://github.com/ILoveBingLu/CipherTalk
https://github.com/hicccc77/WeFlow
---
> QQ历史版本
https://t.me/qq_updatelog
https://t.me/QQUpdates
#应用商店
> Aurora Store:谷歌应用商店的替代平台。
https://t.me/AuroraOfficial
#cloudflare #邮箱
## Cloudflare域名邮箱 Catch-all 无限别名收信(简版两步)
1. 添加并验证目标邮箱
Cloudflare 仪表板 → 你的域名 → Email → Email Routing → Destination addresses(目标地址)
添加你的主邮箱(例如 Gmail),点击验证链接完成确认。
2. 开启 Catch-all 转发
去 Email → Email Routing → Routes(路由规则)
找到 Catch-all address 部分 → 启用(设为 Active)
Action 选 Send to → 选择上面验证过的目标邮箱 → 保存。
完成!
以后任何
注意:
- 先确保 Email Routing 已启用(会自动加 MX 记录)。
- 只收信、不发信(发信用 Gmail 等代发)。
- 垃圾邮件多时可加屏蔽规则或暂时关 Catch-all。
---
(PS:可以使用 https://github.com/hc990275/cfauto 项目)
## Cloudflare域名邮箱 Catch-all 无限别名收信(简版两步)
1. 添加并验证目标邮箱
Cloudflare 仪表板 → 你的域名 → Email → Email Routing → Destination addresses(目标地址)
添加你的主邮箱(例如 Gmail),点击验证链接完成确认。
2. 开启 Catch-all 转发
去 Email → Email Routing → Routes(路由规则)
找到 Catch-all address 部分 → 启用(设为 Active)
Action 选 Send to → 选择上面验证过的目标邮箱 → 保存。
完成!
以后任何
xxx@你的域名.com 的邮件都会自动转发到你的主邮箱,实现无限生成别名账号(隐私保护神器)。注意:
- 先确保 Email Routing 已启用(会自动加 MX 记录)。
- 只收信、不发信(发信用 Gmail 等代发)。
- 垃圾邮件多时可加屏蔽规则或暂时关 Catch-all。
---
(PS:可以使用 https://github.com/hc990275/cfauto 项目)
#小知识
安卓15以下,可以用adb实现降级,安卓15及以上只能root
adb降级原理:安卓有一个功能,叫做保留数据卸载(在原生安卓系统上卸载应用的弹窗里有这个选项,但国产的都没这个选项),使用adb执行:adb shell pm uninstall -k 包名 实现保留数据卸载,然后再安装旧版本应用:adb install -r -d
因此部分第三方安装器(这些第三方安装器都需要先获取adb权限)(如shizuku安装器/installerx都加入了这个允许降级的选项)#小知识
⏺ 微信中输入“#”键的实用功能
1. 生活服务类
在聊天中不想切换APP查信息时,可以直接输入以下指令,发送后点击即可看到结果:
* 查天气:输入 #天气 或 #北京天气(直接显示实时气温)。
* 查日历/假期:输入 #日历 或 #法定节假日。
* 查航班/车次:输入 #航班号(如 #CA1234)或 #火车票。
* 找厕所:输入 #公厕 或 #公共厕所(会显示附近的厕所位置)。
* 查快递:输入 #快递 或 #快递单号。
* 查股票:输入 #股票代码 或 #股票名称(如 #腾讯控股)。
2. 内容查找类
如果你想给朋友分享某个公众号、视频号或小程序,但一时找不到链接,可以用这个方法快速生成入口:
* 找公众号:输入 #公众号名称(如 #央视新闻),点击直接跳转到该公众号主页。
* 找视频号:输入 #视频号名称,点击直接看视频。
* 找小程序:输入 #小程序名称(如 #乘车码),点击直接打开。
3. 知识与翻译类
* 翻译单词:输入 #单词(如 #apple),点击查看释义。
* 查成语/百科:输入 #成语(如 #掩耳盗铃)查看典故。#音乐相关
#下载
> 机器人 @Music163DownBot
项目链接:https://github.com/liuran001/MusicBot-Go
---
> 群组或频道
https://t.me/addlist/qa_8Mi97SwUzMzJh
https://t.me/addlist/wkZdp-dimQI2N2Vh
---
#播放器
https://t.me/ppuremusic
> https://monochrome.samidy.com/
免费听无损歌曲的网站,音源来自于国外音乐平台Tidal
https://tunefree.fun/
> NeriPlayer (音理音理!)
https://github.com/cwuom/NeriPlayer
>网易云解析
https://github.com/Suxiaoqinx/Netease_url
> 模块
https://t.me/diaomao_163
## 洛雪音乐
https://lxmusic.toside.cn/
安卓仓库:https://github.com/lyswhut/lx-music-mobile/releases
桌面仓库:https://github.com/lyswhut/lx-music-desktop/releases
落雪音乐源
https://github.com/yutian81/data-source/tree/main/lxmusic
https://github.com/pdone/lx-music-source
#下载
> 机器人 @Music163DownBot
项目链接:https://github.com/liuran001/MusicBot-Go
---
> 群组或频道
https://t.me/addlist/qa_8Mi97SwUzMzJh
https://t.me/addlist/wkZdp-dimQI2N2Vh
---
#播放器
https://t.me/ppuremusic
> https://monochrome.samidy.com/
免费听无损歌曲的网站,音源来自于国外音乐平台Tidal
https://tunefree.fun/
> NeriPlayer (音理音理!)
https://github.com/cwuom/NeriPlayer
>网易云解析
https://github.com/Suxiaoqinx/Netease_url
> 模块
https://t.me/diaomao_163
## 洛雪音乐
https://lxmusic.toside.cn/
安卓仓库:https://github.com/lyswhut/lx-music-mobile/releases
桌面仓库:https://github.com/lyswhut/lx-music-desktop/releases
落雪音乐源
https://github.com/yutian81/data-source/tree/main/lxmusic
https://github.com/pdone/lx-music-source
#prompt #翻译
提示词来自 秋风のとおり道
> 改造自:https://github.com/Leey21/awesome-ai-research-writing
论文优化(啊艹)
现在我需要你协助我进行翻译工作,请严格遵守以下规则,不得擅自改变、补充或弱化任何要求:
【核心要求】
我会输入任意中文内容,你需要将其翻译成 英文。
必须完整保留原句含义,不允许添加、删减、延伸或改写原文。
翻译要做到 信、达、雅,外国读者能自然理解。
【输出格式要求】
每条输入必须提供 多个英文版本:
● 英文正式版
● 英文口语版
● 英文技术/书面版(即便内容非技术,也需提供更严谨的表达)
每个版本都必须附中文说明,如:
英文正式版(中文说明):……
【行为约束】
不允许加入原文没有的解释、情绪、态度、补充信息。
不允许把意译扩大到改变语义的程度(自然但忠实)。
不允许判断“某个版本不需要输出”,所有版本必须提供。
除翻译内容外,与我交流的部分全部继续使用中文。
整个流程持续到我说“好了,我们暂停翻译工作”为止。
如果完全理解以上要求,请仅回复:ok提示词来自 秋风のとおり道
> 改造自:https://github.com/Leey21/awesome-ai-research-writing
论文优化(啊艹)
#系统 #刷机
#MIUI
> https://t.me/pocoF3GlobalUpdates
关于小米Redmi Poco F3/K40/Mi 11X的一切
ROM、内核、指南、Mod、新闻,应有尽有。
> https://t.me/VoyagerMIUIUpdate
MIUI/HyperOS提取&更新推送.
>https://t.me/xiaomiui
29 August 2017 - No.1 Fan Community
Website: xiaomitime.com
Advertising: @bmerdogan
Group: t.me/xiaomitime
Photography: t.me/xiaomiuishoton
MIUI Download: t.me/miui_download
Mods: @xiaomiuimods
Türkçe: @xiaomiuiturkce
X: x.com/timexiaomi
> https://t.me/redmi3com
小米红米 3/3 Pro 电报群组
> https://t.me/Havoc_OS
Havoc-OS官方群组
> https://t.me/ximitool
越南🇻🇳的小米工具(解锁等功能)
#一加
> https://t.me/PUINewsroom
美化和优化
#MIUI
> https://t.me/pocoF3GlobalUpdates
关于小米Redmi Poco F3/K40/Mi 11X的一切
ROM、内核、指南、Mod、新闻,应有尽有。
> https://t.me/VoyagerMIUIUpdate
MIUI/HyperOS提取&更新推送.
>https://t.me/xiaomiui
29 August 2017 - No.1 Fan Community
Website: xiaomitime.com
Advertising: @bmerdogan
Group: t.me/xiaomitime
Photography: t.me/xiaomiuishoton
MIUI Download: t.me/miui_download
Mods: @xiaomiuimods
Türkçe: @xiaomiuiturkce
X: x.com/timexiaomi
> https://t.me/redmi3com
小米红米 3/3 Pro 电报群组
> https://t.me/Havoc_OS
Havoc-OS官方群组
> https://t.me/ximitool
越南🇻🇳的小米工具(解锁等功能)
#一加
> https://t.me/PUINewsroom
美化和优化
#我的项目
Action部署CloudFlare项目
https://wrangler.xingshuang.ccwu.cc/
---
邮箱监控
https://email-ai-monitor.bxiao.workers.dev/
--
AI生成GitHub主页:
https://myedge.loushi.dpdns.org
---
Gmail通知
https://worker-tg-bot.github.io/tgemailbot/
---
tgapi
https://tgbotapi.gongzhonghao.dpdns.org/
---
导航收藏
https://nav.xingshuang.xyz/
https://tg.xingshuang.xyz/
---
青龙面板
https://worker-tg-bot.github.io/qinglong-tgbot/
---
个人博客
https://blog.xingshuang.xyz/
---
赛博占卜
https://cyber-fortune.bxiao.workers.dev/
---
夸夸墙
https://first-praise-wall.bxiao.workers.dev
---
图床
https://images.xingshuang.xyz/
---
网页归档
https://archive.xingshuang.xyz/
---
tg频道微博
- https://broadcastchannel-2xb.pages.dev/
- https://tg.xingshuang.xyz/
---
代理服务
https://xingshuang.hidns.vip/
---
电子礼䈬
https://dianzilipu.netlify.app/
Action部署CloudFlare项目
https://wrangler.xingshuang.ccwu.cc/
---
邮箱监控
https://email-ai-monitor.bxiao.workers.dev/
--
AI生成GitHub主页:
https://myedge.loushi.dpdns.org
---
Gmail通知
https://worker-tg-bot.github.io/tgemailbot/
---
tgapi
https://tgbotapi.gongzhonghao.dpdns.org/
---
导航收藏
https://nav.xingshuang.xyz/
https://tg.xingshuang.xyz/
---
青龙面板
https://worker-tg-bot.github.io/qinglong-tgbot/
---
个人博客
https://blog.xingshuang.xyz/
---
赛博占卜
https://cyber-fortune.bxiao.workers.dev/
---
https://first-praise-wall.bxiao.workers.dev
---
图床
https://images.xingshuang.xyz/
---
网页归档
https://archive.xingshuang.xyz/
---
tg频道微博
- https://broadcastchannel-2xb.pages.dev/
- https://tg.xingshuang.xyz/
---
代理服务
https://xingshuang.hidns.vip/
---
电子礼䈬
https://dianzilipu.netlify.app/
#模块插件
## Twitter
https://t.me/TwiFucker
---
## QQ/Tim
https://t.me/QToolCI
https://t.me/ouom_pub
https://t.me/lzlmo
https://t.me/WhenFlowersAreInBloom
https://t.me/nacho_nya
https://t.me/timtool
https://t.me/QToolCI
https://t.me/lei_Serendipity
https://t.me/ono_ci
https://t.me/citcqt
https://t.me/QFunChannel
https://t.me/RePavilion
---
## 微信
https://t.me/Hd_WAuxiliary
https://t.me/FkWeChat
https://t.me/wekit_ci
https://t.me/MikoCIBuilds
https://t.me/QToolC
---
## telegram
https://t.me/TAuxiliary
https://t.me/TGamiApp
https://t.me/t_l0_e
---
## 抖音
https://t.me/kfc_vivo_50
https://t.me/kfc_vivo_50_group
https://t.me/YuePanel_app
https://t.me/dyoo_public
---
## 聚合破解
https://t.me/HookVipCl
https://t.me/freemoe520
https://t.me/bugccx
https://t.me/LotusXposed
---
## 框架
https://t.me/NPatch
https://t.me/QToolC
---
## 系统优化
### HyperOS 系统
https://t.me/cemiuiler_release
https://t.me/cemiuiler_canary
### OPPO/OneOlus 系统
https://t.me/OPatchA
### ColorOS系统
https://t.me/LuckyTool
### 虚拟摄像头
https://t.me/CamSwap
### 自动化指令工具
https://t.me/shortxmod
---
## 网易云
https://t.me/ncmplus
---
https://t.me/YunJava
https://t.me/niubimokuai
https://t.me/Whitelist520
https://t.me/TwiFucker
---
## QQ/Tim
https://t.me/QToolCI
https://t.me/ouom_pub
https://t.me/lzlmo
https://t.me/WhenFlowersAreInBloom
https://t.me/nacho_nya
https://t.me/timtool
https://t.me/QToolCI
https://t.me/lei_Serendipity
https://t.me/ono_ci
https://t.me/citcqt
https://t.me/QFunChannel
https://t.me/RePavilion
---
## 微信
https://t.me/Hd_WAuxiliary
https://t.me/FkWeChat
https://t.me/wekit_ci
https://t.me/MikoCIBuilds
https://t.me/QToolC
---
## telegram
https://t.me/TAuxiliary
https://t.me/TGamiApp
https://t.me/t_l0_e
---
## 抖音
https://t.me/kfc_vivo_50
https://t.me/kfc_vivo_50_group
https://t.me/YuePanel_app
https://t.me/dyoo_public
---
## 聚合破解
https://t.me/HookVipCl
https://t.me/freemoe520
https://t.me/bugccx
https://t.me/LotusXposed
---
## 框架
https://t.me/NPatch
https://t.me/QToolC
---
## 系统优化
### HyperOS 系统
https://t.me/cemiuiler_release
https://t.me/cemiuiler_canary
### OPPO/OneOlus 系统
https://t.me/OPatchA
### ColorOS系统
https://t.me/LuckyTool
### 虚拟摄像头
https://t.me/CamSwap
### 自动化指令工具
https://t.me/shortxmod
---
## 网易云
https://t.me/ncmplus
---
https://t.me/YunJava
https://t.me/niubimokuai
https://t.me/Whitelist520
#APP #第三方
#知乎
https://github.com/10miaomiao/bilimiao2
https://t.me/Hydrogen_fzhihu
https://github.com/zly2006/zhihu-plus-plus
---
#YouTube
https://t.me/SmartTubeNewsEN
https://t.me/rvx_lite_repo
https://vanced.to/youtube-revanced
https://github.com/TeamNewPipe/NewPipe
https://github.com/InfinityLoop1308/PipePipe
GreenTuber
---
#Instagram
https://t.me/instaprimeofficial
https://github.com/ReSo7200/InstaEclipse
https://t.me/instasmashrepo
---
#Twitter
https://t.me/TwiFucker
https://github.com/lluni/twitter-apk
https://github.com/crimera/piko/
https://github.com/crimera/twitter-apk (Apk builds of piko)
https://t.me/pikopatches
---
#TikTok
https://t.me/TikTokModChatCN
https://t.me/tiktokprime
https://t.me/tiktokupdatez
---
#哔哩哔哩
https://github.com/bggRGjQaUbCoE/PiliPlus
https://github.com/Starfallan/PiliNara
https://github.com/xiaye13579/BBLL
https://t.me/bb_show
https://github.com/bggRGjQaUbCoE/PiliPlus
https://t.me/BiliPai
---
#酷安
https://t.me/fuck_coolapk
---
#Telegram
https://t.me/TAndroidAPK
> 第三方客户端推荐
https://t.me/mdmods_you
https://t.me/Cherry_gram
https://t.me/nagram_channel
https://t.me/materialgram
https://t.me/exteraGram
https://t.me/Nnngram
https://t.me/ayugramchat
https://t.me/OctoGramApp
https://t.me/unigramappx
https://t.me/plusmsgrupdates
其他的第三方TG总结:https://t.me/LCGFX/2794
>TG主题
https://t.me/tgmonet
>TG模块
https://t.me/TGamiApp
https://t.me/t_l0_e
https://t.me/TAuxiliary
其他的第三方APP总结:
https://t.me/ZGQincLiqun/3481
#知乎
https://github.com/10miaomiao/bilimiao2
https://t.me/Hydrogen_fzhihu
https://github.com/zly2006/zhihu-plus-plus
---
#YouTube
https://t.me/SmartTubeNewsEN
https://t.me/rvx_lite_repo
https://vanced.to/youtube-revanced
https://github.com/TeamNewPipe/NewPipe
https://github.com/InfinityLoop1308/PipePipe
GreenTuber
---
https://t.me/instaprimeofficial
https://github.com/ReSo7200/InstaEclipse
https://t.me/instasmashrepo
---
https://t.me/TwiFucker
https://github.com/lluni/twitter-apk
https://github.com/crimera/piko/
https://github.com/crimera/twitter-apk (Apk builds of piko)
https://t.me/pikopatches
---
#TikTok
https://t.me/TikTokModChatCN
https://t.me/tiktokprime
https://t.me/tiktokupdatez
---
#哔哩哔哩
https://github.com/bggRGjQaUbCoE/PiliPlus
https://github.com/Starfallan/PiliNara
https://github.com/xiaye13579/BBLL
https://t.me/bb_show
https://github.com/bggRGjQaUbCoE/PiliPlus
https://t.me/BiliPai
---
#酷安
https://t.me/fuck_coolapk
---
#Telegram
https://t.me/TAndroidAPK
> 第三方客户端推荐
https://t.me/mdmods_you
https://t.me/Cherry_gram
https://t.me/nagram_channel
https://t.me/materialgram
https://t.me/exteraGram
https://t.me/Nnngram
https://t.me/ayugramchat
https://t.me/OctoGramApp
https://t.me/unigramappx
https://t.me/plusmsgrupdates
其他的第三方TG总结:https://t.me/LCGFX/2794
>TG主题
https://t.me/tgmonet
>TG模块
https://t.me/TGamiApp
https://t.me/t_l0_e
https://t.me/TAuxiliary
其他的第三方APP总结:
https://t.me/ZGQincLiqun/3481
#Windows
https://github.com/tanaer/WindowsClear
C盘清理工具 ,专注于释放 AppData 目录占用的巨量空间。能扫描出占用空间大的软件数据文件夹,一键迁移到其他磁盘(如 D 盘),并自动创建目录联接,确保软件无缝运行,就像从未移动过一样,帮助实现 c盘瘦身,缓解 C盘空间不足。
---
https://github.com/ZyperWave/ZyperWinOptimize
ZyperWin++是一个轻便的Windows优化工具,适用于Win7-Win11最新版的优化,包括性能优化、服务项优化、垃圾清理等操作,还支持系统激活和Office快速安装。
---
#office
Office Tool Plus 是一个强大且实用的 Office 部署工具。
https://t.me/otp_channel
https://github.com/tanaer/WindowsClear
C盘清理工具 ,专注于释放 AppData 目录占用的巨量空间。能扫描出占用空间大的软件数据文件夹,一键迁移到其他磁盘(如 D 盘),并自动创建目录联接,确保软件无缝运行,就像从未移动过一样,帮助实现 c盘瘦身,缓解 C盘空间不足。
---
https://github.com/ZyperWave/ZyperWinOptimize
ZyperWin++是一个轻便的Windows优化工具,适用于Win7-Win11最新版的优化,包括性能优化、服务项优化、垃圾清理等操作,还支持系统激活和Office快速安装。
---
#office
Office Tool Plus 是一个强大且实用的 Office 部署工具。
https://t.me/otp_channel
#cm项目 #cloudflare #搭建订阅
>相关项目-搭建订阅
https://github.com/cmliu/edgetunnel
>相关项目-本地优选
https://github.com/GuangYu-yu/CFnat
https://github.com/xiaolin-007/CloudFlareScan/
https://github.com/xinyitang3/cfnb
---
#proxyip
>@RealNeoMan
kr.william.us.ci
tw.william.us.ci
>@cmliu
https://t.me/CMLiussss_channel/84
ProxyIP.CMLiussss.net
vmiss.664667.xyz ->@woZXJXdoZAtHBKEVLf
xinyitang.dpdns.org ->@𝓜𝓲𝓪
proxy.xxxxxxxx.tk:50001 ->@otc006
tp50001.kr.proxyip.fgfw.eu.org:50001 ->@danfeng21
>其他
ip.111000.de5.net
ddx.snu.cc/TW
ddx.snu.cc/HK
ddx.snu.cc/JP
ddx.snu.cc/KR
ddx.snu.cc/SG
ddx.snu.cc/US
---
#订阅优选
https://sub.995677.xyz ->@robberer
sub.bbc.xx.kg
sub.mot.cloudns.biz
sub.danfeng.eu.org
owo.o00o.ooo/
sub.us.ci
https://t.me/CMLiussss_channel/119
---
#相关的讨论群组/频道
https://t.me/ssdxzy_FreeNodes ->@ssdxzy
https://t.me/CMLiussss ->@cmliu
https://t.me/yifang_chat ->@yifangovo
https://t.me/zyssadmin ->@COMLiang
https://t.me/danfeng_chat ->@danfeng21
https://t.me/CF_TG_Proxy ->@FatalMark
https://t.me/lsmkc ->@zrfme
https://t.me/subs_check_pro ->@sinspired
https://t.me/ayonayo ->@Desire_orz
https://t.me/CF_NAT
https://t.me/v2rayByCf
https://t.me/qiuyue2
https://t.me/juzibaipiao
https://t.me/honghongll ->@xhwteam
https://t.me/CFMIANFEI ->@o00oxooo
https://www.haitunt.org/app.html
https://love.zshabai.top
https://t.me/HeroCore ->@ymyuuu
https://t.me/cloudflareorg
https://t.me/Marisa_kristi
https://t.me/Enkelte_notif
https://t.me/lzjjjjjjjjjjj
https://t.me/eooceu
---
#APP
> 科学上网软件App客户端
https://t.me/xingshuang_blog/116
>相关项目-搭建订阅
https://github.com/cmliu/edgetunnel
>相关项目-本地优选
https://github.com/GuangYu-yu/CFnat
https://github.com/xiaolin-007/CloudFlareScan/
https://github.com/xinyitang3/cfnb
---
#proxyip
>@RealNeoMan
kr.william.us.ci
tw.william.us.ci
>@cmliu
https://t.me/CMLiussss_channel/84
ProxyIP.CMLiussss.net
vmiss.664667.xyz ->@woZXJXdoZAtHBKEVLf
xinyitang.dpdns.org ->@𝓜𝓲𝓪
proxy.xxxxxxxx.tk:50001 ->@otc006
tp50001.kr.proxyip.fgfw.eu.org:50001 ->@danfeng21
>其他
ip.111000.de5.net
ddx.snu.cc/TW
ddx.snu.cc/HK
ddx.snu.cc/JP
ddx.snu.cc/KR
ddx.snu.cc/SG
ddx.snu.cc/US
---
#订阅优选
https://sub.995677.xyz ->@robberer
sub.bbc.xx.kg
sub.mot.cloudns.biz
sub.danfeng.eu.org
owo.o00o.ooo/
sub.us.ci
https://t.me/CMLiussss_channel/119
---
#相关的讨论群组/频道
https://t.me/ssdxzy_FreeNodes ->@ssdxzy
https://t.me/CMLiussss ->@cmliu
https://t.me/yifang_chat ->@yifangovo
https://t.me/zyssadmin ->@COMLiang
https://t.me/danfeng_chat ->@danfeng21
https://t.me/CF_TG_Proxy ->@FatalMark
https://t.me/lsmkc ->@zrfme
https://t.me/subs_check_pro ->@sinspired
https://t.me/ayonayo ->@Desire_orz
https://t.me/CF_NAT
https://t.me/v2rayByCf
https://t.me/qiuyue2
https://t.me/juzibaipiao
https://t.me/honghongll ->@xhwteam
https://t.me/CFMIANFEI ->@o00oxooo
https://www.haitunt.org/app.html
https://love.zshabai.top
https://t.me/HeroCore ->@ymyuuu
https://t.me/cloudflareorg
https://t.me/Marisa_kristi
https://t.me/Enkelte_notif
https://t.me/lzjjjjjjjjjjj
https://t.me/eooceu
---
#APP
> 科学上网软件App客户端
https://t.me/xingshuang_blog/116
#cloudflare #SaaS优选域名
https://cf.090227.xyz/
https://saas.seeck.cn/
https://hhhhh.eu.org/
saas.sin.fan
优选教程:https://linux.do/t/topic/1062697
https://ip.v2too.top/
animal.nuaa.tech ->@Raymond520666
vmiss.664667.xyz ->@woZXJXdoZAtHBKEVLf
cf.3666888.xyz
blog.646474.xyz
www.wto.org
youxuan.orwennes.site
youxuansg.orwennes.site
https://cf.090227.xyz/
https://saas.seeck.cn/
https://hhhhh.eu.org/
saas.sin.fan
优选教程:https://linux.do/t/topic/1062697
https://ip.v2too.top/
animal.nuaa.tech ->@Raymond520666
vmiss.664667.xyz ->@woZXJXdoZAtHBKEVLf
cf.3666888.xyz
blog.646474.xyz
www.wto.org
youxuan.orwennes.site
youxuansg.orwennes.site