标题: Claude Code Codex Glm Gemini Nexus聚合平台
作者: #老己我爱你
板块: #福利羊毛
编号:
帖子: https://linux.do/t/topic/1477872
时间: 2026-01-18 12:41:38
摘要:
作者: #老己我爱你
板块: #福利羊毛
编号:
1477872帖子: https://linux.do/t/topic/1477872
时间: 2026-01-18 12:41:38
摘要:
起因是我买Cursor 的时候买错了
也退不了 俺也不会用
抽给有需要的佬吧!
好像是还有差不多十天
时间:从2026.1.18到2026.1.18下午五点吧
参与方法下方留言就好!!
抽奖工具用: LINUX DO 抽奖程序
标题: mihomo 订阅自用覆写 JS(支持 FlClash)
作者: #IWJ
板块: #开发调优
编号:
帖子: https://linux.do/t/topic/1477877
时间: 2026-01-18 12:43:02
摘要:
作者: #IWJ
板块: #开发调优
编号:
1477877帖子: https://linux.do/t/topic/1477877
时间: 2026-01-18 12:43:02
摘要:
高精度geo集成
AI分流
性能兼容性优化(IPv6/QUIC)
DNS 分流不泄露
function main(config) {
const allProxies = (config.proxies || []).map((p) => p.name).filter(Boolean);
// --- 1. 全局资源与性能优化 (Hackl0us & Loyalsoldier) ---
config["ipv6"] = false;
config["unified-delay"] = true;
config["tcp-concurrent"] = true;
// 开启 Geodata 模式(必须开启才能使用 geosite/geoip 规则)
config["geodata-mode"] = true;
// 加载器设为 standard 或 memconservative 均可
config["geodata-loader"] = "standard";
// [核心] 替换为高精度资源地址
// 1. Geosite (域名): 使用 Loyalsoldier,规则最全
config["geosite-url"] = "https://cdn.jsdelivr.net/gh/Loyalsoldier/v2ray-rules-dat@release/geosite.dat";
// 2. MMDB (IP): 使用 Hackl0us,国内 IP 精度最高 (小巧且精准)
config["mmdb-url"] = "https://cdn.jsdelivr.net/gh/Hackl0us/GeoIP2-CN@release/Country.mmdb";
// 3. GeoIP (备用): 虽然主力是用 MMDB,但防止内核回退,也指向 Loyalsoldier
config["geoip-url"] = "https://cdn.jsdelivr.net/gh/Loyalsoldier/v2ray-rules-dat@release/geoip.dat";
// 自动判断下载 CDN(防止 Github 抽风)
config["find-process-mode"] = "strict";
config["sniffer"] = {
enable: true,
sniff: {
TLS: { ports: [443, 8443] },
HTTP: { ports: [80, "8080-8880"], "override-destination": true },
QUIC: { ports: [443] }
}
};
// --- 2. 策略组设置 ---
const DNS_INTL_GROUP = "🛡️ DNS(国外)";
const NODE_GROUP = "🚀 节点选择";
const AUTO_GROUP = "♻️ 自动选择";
const AI_GROUP = "🤖 AI服务";
const EMBY_GROUP = "🎥 Emby服务";
const DIRECT_GROUP = "🎯 全球直连";
const FINAL_GROUP = "🐟 漏网之鱼";
// 筛选 AI 节点 (排除大陆和特定地区)
const aiBlacklistRegex = /流量|到期|重置|香港|HK|Hong Kong|澳门|澳門|Macau|MO|俄罗斯|Russia|RU|伊朗|Iran|IR|朝鲜|North Korea|KP|叙利亚|Syria|SY|古巴|Cuba|CU|白俄罗斯|Belarus|BY|韩国|KR|Korea/i;
const aiFilteredProxies = allProxies.filter(name => !aiBlacklistRegex.test(name));
// 筛选 Emby 节点
const embyFilteredProxies = allProxies.filter(name => /Emby/i.test(name));
config["proxy-groups"] = [
{ name: NODE_GROUP, type: "select", proxies: [AUTO_GROUP, ...allProxies, "DIRECT"] },
{ name: DNS_INTL_GROUP, type: "url-test", url: "https://www.gstatic.com/generate_204", interval: 300, proxies: allProxies.length ? allProxies : ["REJECT"] },
{ name: AUTO_GROUP, type: "url-test", url: "https://www.gstatic.com/generate_204", interval: 300, tolerance: 50, proxies: allProxies.length ? allProxies : ["REJECT"] },
{
name: EMBY_GROUP,
type: "url-test",
url: "http://www.gstatic.com/generate_204",
interval: 300,
tolerance: 50,
proxies: embyFilteredProxies.length ? embyFilteredProxies : [NODE_GROUP]
},
{ name: AI_GROUP, type: "select", proxies: aiFilteredProxies.length ? [NODE_GROUP, ...aiFilteredProxies] : [NODE_GROUP, ...allProxies] },
{ name: DIRECT_GROUP, type: "select", proxies: ["DIRECT", NODE_GROUP] },
{ name: FINAL_GROUP, type: "select", proxies: [NODE_GROUP, DIRECT_GROUP] }
];
// --- 3. DNS 优化 ---
const dnsCn = ["https://223.5.5.5/dns-query", "https://1.12.12.12/dns-query"];
const dnsIntl = ["https://8.8.8.8/dns-query", "https://1.1.1.1/dns-query"];
config["dns"] = {
enable: true,
ipv6: false,
"enhanced-mode": "fake-ip",
"respect-rules": true,
"dns-hijack": ["any:53"],
"nameserver": dnsCn,
"proxy-server-nameserver": dnsCn,
"fallback": dnsIntl,
"nameserver-policy": {
"geosite:cn": dnsCn,
"geosite:gfw,geolocation-!cn": dnsIntl
}
};
// --- 4. 规则逻辑 (完全依赖 Geosite + 手动补充) ---
config["rules"] = [
// 0. 本地网络
"IP-CIDR,127.0.0.0/8,DIRECT,no-resolve",
"IP-CIDR,192.168.0.0/16,DIRECT,no-resolve",
"IP-CIDR,10.0.0.0/8,DIRECT,no-resolve",
"IP-CIDR,172.16.0.0/12,DIRECT,n
标题: 救救孩子的徽章吧
作者: #曾相识
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/1477878
时间: 2026-01-18 12:43:23
摘要:
作者: #曾相识
板块: #搞七捻三
编号:
1477878帖子: https://linux.do/t/topic/1477878
时间: 2026-01-18 12:43:23
摘要:
盘点L站的徽章 长期更新!(2026.1.17更新)
文档共建
[!caution] 注意
由于服务器有延迟,可能会存在达成了徽章获取条件但没有拿到徽章的情况,请坐和放宽,至多到第二天的凌晨四点就会刷新徽章获取情况。如果还是没有,试试在 cdk.linux.do 过了 cf 盾之后再完成徽章条件。~~**
现在请点击右上角的无穷符号进入 社区子系统和元宇宙 - LINUX DO
[image]
然后选择 Challenge…
从佬的帖子过来,其他徽章都正常搞定了,但自传作者这个徽章始终完不成,求个佬帮忙看看还差啥?
1.头像已改。2.背景图片和自我介绍已改。3.隔了几天试了好几次都不行。
救救孩子吧
标题: 各位佬,大家回家相亲吗?
作者: #倾风
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/1477908
时间: 2026-01-18 12:50:53
摘要:
作者: #倾风
板块: #搞七捻三
编号:
1477908帖子: https://linux.do/t/topic/1477908
时间: 2026-01-18 12:50:53
摘要:
我感觉我还很年轻,刚才还在感叹回家
这不又收到家里消息,放假早点回家,家里已经相亲张罗好了
我这才发现,我回家是想有家里的感觉,恐惧的是家里张罗的相亲一个都没成,然后家里又气氛不和谐。
话说,过年的时候气氛不好,那可就真的度日如年了
标题: CC有对话恢复、回滚对话生成代码功能吗?
作者: #PCL
板块: #开发调优
编号:
帖子: https://linux.do/t/topic/1477910
时间: 2026-01-18 12:50:55
摘要:
作者: #PCL
板块: #开发调优
编号:
1477910帖子: https://linux.do/t/topic/1477910
时间: 2026-01-18 12:50:55
摘要:
至今没用过 cc、codex,比较喜欢IDE类的 Ai,cursor免费,用了,winsurf免费,用了,kiro免费,用了
标题: 咨询一下各位佬,如何让ai长时间执行复杂任务
作者: #james kerry
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/1477914
时间: 2026-01-18 12:51:10
摘要:
作者: #james kerry
板块: #搞七捻三
编号:
1477914帖子: https://linux.do/t/topic/1477914
时间: 2026-01-18 12:51:10
摘要:
自己有那种特别复杂的任务,想问问各位,有什么方案或者软件,可以搭建工作流+多个ai合作任务。 我看有大佬可以一次让ai连续干活十几个小时,不知道怎么实现的
标题: [Memos]flomo转memos:解决附件上传报错,已提 PR 供佬友自取
作者: #生物未鉴定
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/1477919
时间: 2026-01-18 12:51:48
摘要:
作者: #生物未鉴定
板块: #搞七捻三
编号:
1477919帖子: https://linux.do/t/topic/1477919
时间: 2026-01-18 12:51:48
摘要:
最近趁着黑五入了 RN 的小鸡,顺手部署了 memos 玩玩。
在尝试从 flomo 导出并转移数据时,搜到了这个非常好用的项目(感谢大佬)
github.com
GitHub - JakeLaoyu/memos-import-from-flomo: Memos 导入数据,目前支持 flomo、微信读书
Memos 导入数据,目前支持 flomo、微信读书
翻车了
本想直接白嫖大佬的项目,结果发现代码近期没更新,跑起来直接报错。对比了一下 Memos 文档,发现是 API 的锅:接口路径 从 /resource 变成了 /attachments 。
抢救一下
请 codex 出马,简单修了下。已给原作者提了 PR。如果大家需要,可以直接看这里或者拉我的分支,希望能帮到各位佬友!
github.com/JakeLaoyu/memos-import-from-flomo
[update]修复:更新附件上传接口以适配最新 Memos API
main ← simpread:main
已打开 12:31PM - 17 Jan 26 UTC
simpread
+24
-32
### 背景
- 最新 [Memos 文档](https://memos.apidocumentation.com/re
标题: Kiro反代项目 报错402上下文超长
作者: #枳萌
板块: #资源荟萃
编号:
帖子: https://linux.do/t/topic/1477943
时间: 2026-01-18 12:57:07
摘要:
作者: #枳萌
板块: #资源荟萃
编号:
1477943帖子: https://linux.do/t/topic/1477943
时间: 2026-01-18 12:57:07
摘要:
我最近使用kiro反代,用的是自己部署到kirogate,但是在使用过程中总是报错402,上下文超长,遇到这种情况我只能选择手动压缩上下文才能继续。而且我在使用kirogate中发现缓存没有使用
请问一下各位佬你们都是用的是什么反代项目
标题: 自己 paypal 开的 team 号,还有两天续费,结果被封了,要去哪里取消续费吗
作者: #esoiw
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/1477952
时间: 2026-01-18 13:00:10
摘要:
作者: #esoiw
板块: #搞七捻三
编号:
1477952帖子: https://linux.do/t/topic/1477952
时间: 2026-01-18 13:00:10
摘要:
网页paypal也没找到地方,gpt账号也登录不上
标题: CC 的优势是什么?甚至逆向也要用 CC😂
作者: #PCL
板块: #开发调优
编号:
帖子: https://linux.do/t/topic/1477957
时间: 2026-01-18 13:01:10
摘要:
作者: #PCL
板块: #开发调优
编号:
1477957帖子: https://linux.do/t/topic/1477957
时间: 2026-01-18 13:01:10
摘要:
我看大部分人都是想尽一切办法把模型搞到 claude code里面用,有什么优势吗?
标题: 怎么我投了票, 看不到结果呀
作者: #sddxsm
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/1477961
时间: 2026-01-18 13:02:06
摘要:
作者: #sddxsm
板块: #搞七捻三
编号:
1477961帖子: https://linux.do/t/topic/1477961
时间: 2026-01-18 13:02:06
摘要:
标题: 过期羊毛之撸了个一年的 .tech
作者: #散装江苏
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/1477963
时间: 2026-01-18 13:02:46
摘要:
作者: #散装江苏
板块: #搞七捻三
编号:
1477963帖子: https://linux.do/t/topic/1477963
时间: 2026-01-18 13:02:46
摘要:
get.tech免费获取一年域名
福利羊毛
优惠码:nex26
http://get.tech/
[image]
应该是网络问题
有的人可以
有的人不可以
已经没了
但是:
嘿嘿~
标题: 有没有朋友之前注册了多个土区workspace gemini的,能不能出我一个。
作者: #haahow
板块: #资源荟萃
编号:
帖子: https://linux.do/t/topic/1477981
时间: 2026-01-18 13:07:23
摘要:
作者: #haahow
板块: #资源荟萃
编号:
1477981帖子: https://linux.do/t/topic/1477981
时间: 2026-01-18 13:07:23
摘要:
每月23元,手把手教你开通土区workspace畅玩gemini
福利羊毛
开门见山,土区workspace有哪些权益?
gemini advanced 和正常订阅几乎无差异 手机端app不能用dr 但是网页端可以(有佬友反映在一天使用10次后收到限额提示)2.5pro实测几乎无限制 和正常订阅一样
2T云端硬盘
notebooklm plus
其他的不常用请自查
你要花多少钱?
年付大概人民币280元 月付不确定能不就用优惠码,如果不能用就是一个月33元…
这个,今天尝试注册,被要求提交信息验证,我提交了银行卡和护照验证,但是等了1个多小时了,还没通过,不知道是不是没戏了。
看帖子之前有秒过的,不用提交验证信息。
有没有当时不用提交验证信息,注册了多个的朋友,能不能出我一个?
标题: 【求助】claude2.1.7 占用一大堆内存
作者: #白白白
板块: #开发调优
编号:
帖子: https://linux.do/t/topic/1477988
时间: 2026-01-18 13:08:50
摘要:
作者: #白白白
板块: #开发调优
编号:
1477988帖子: https://linux.do/t/topic/1477988
时间: 2026-01-18 13:08:50
摘要:
终端已经关掉了,所以这大坨是什么东西
标题: Tavily 还真挺好用
作者: #神墨
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/1477991
时间: 2026-01-18 13:09:08
摘要:
作者: #神墨
板块: #搞七捻三
编号:
1477991帖子: https://linux.do/t/topic/1477991
时间: 2026-01-18 13:09:08
摘要:
我也要死吗
标题: 求推荐境外卡
作者: #shuffle
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/1478007
时间: 2026-01-18 13:11:55
摘要:
作者: #shuffle
板块: #搞七捻三
编号:
1478007帖子: https://linux.do/t/topic/1478007
时间: 2026-01-18 13:11:55
摘要:
各位佬友们,有没有那种办理简单(学生就可办理),可长期使用的境外卡推荐的,想用来订阅一些外国ai产品。
标题: ChatGPT支持哪些后缀域名邮箱注册?
作者: #Flower Realm
板块: #开发调优
编号:
帖子: https://linux.do/t/topic/1478010
时间: 2026-01-18 13:12:47
摘要:
作者: #Flower Realm
板块: #开发调优
编号:
1478010帖子: https://linux.do/t/topic/1478010
时间: 2026-01-18 13:12:47
摘要:
ChatGPT支持哪些后缀域名邮箱注册?
目前发现tech, com似乎可以
top不行
标题: 【罗永浩确认:账号被禁言15天,个人不会再回应“西贝预制菜”事件】
作者: #倾风
板块: #前沿快讯
编号:
帖子: https://linux.do/t/topic/1478022
时间: 2026-01-18 13:15:51
摘要:
作者: #倾风
板块: #前沿快讯
编号:
1478022帖子: https://linux.do/t/topic/1478022
时间: 2026-01-18 13:15:51
摘要:
1月17日,罗永浩在朋友圈透露,账号已被禁言15天,并将此次禁言解读为对他的保护。
同时,罗永浩明确,他个人后续将不再回应“西贝预制菜”事件的相关争议,若有谣言扩散,公司将发布公关稿予以澄清。
此前,罗永浩与西贝创始人贾国龙围绕预制菜、“冷冻西兰花”的争议持续发酵,1月16日,双方账号被微博平台同步禁言。
标题: digitalocean 支付宝无法绑定
作者: #goal-herring-vice
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/1478026
时间: 2026-01-18 13:16:11
摘要:
作者: #goal-herring-vice
板块: #搞七捻三
编号:
1478026帖子: https://linux.do/t/topic/1478026
时间: 2026-01-18 13:16:11
摘要:
大佬们do
绑定支付宝提示
Your transaction could not be completed. Please contact our support team for more information.
标题: 苹果 iPhone 18 Pro 渲染曝光:单打孔、可变光圈
作者: #𝓵𝓮𝔃𝓲𝓼𝓱𝓮𝓷
板块: #前沿快讯
编号:
帖子: https://linux.do/t/topic/1478048
时间: 2026-01-18 13:22:26
摘要:
作者: #𝓵𝓮𝔃𝓲𝓼𝓱𝓮𝓷
板块: #前沿快讯
编号:
1478048帖子: https://linux.do/t/topic/1478048
时间: 2026-01-18 13:22:26
摘要:
苹果 iPhone 18 Pro 渲染视频曝光:单打孔、可变光圈 - IT之家