LinuxDo 新帖推送
178 subscribers
250K photos
311K links
Download Telegram
标题: vsc cc插件不能回退
作者: #GongNanyue
板块: #搞七捻三
编号: 1936883
帖子: https://linux.do/t/topic/1936883
时间: 2026-04-10 13:18:06
摘要:
我在vscode的claude code插件上点回退聊天 为什么回退不了?
标题: 电信天翼云上新coding plan套餐(GLM)退订最新消息!
作者: #xuhw
板块: #开发调优
编号: 1936886
帖子: https://linux.do/t/topic/1936886
时间: 2026-04-10 13:18:20
摘要:
标题: plus砍了额度后我都不敢一直开xhigh了,high和xhigh有区别吗
作者: #pie z
板块: #搞七捻三
编号: 1936888
帖子: https://linux.do/t/topic/1936888
时间: 2026-04-10 13:18:35
摘要:
可恶的OpenAI,你们邪恶的计划成功了  我已经被你们的双倍额度和三天两头重置额度养出习惯了,不用codex我身上好像有蚂蚁在爬,plus额度一砍,我感觉自己现在额度和水一样哗哗流,我以前一直都开xhigh的,现在不得不试试high了,佬友们high不会差很多吗
标题: 4月10日codex降智恢复了吗?
作者: #叼毛佬
板块: #搞七捻三
编号: 1936891
帖子: https://linux.do/t/topic/1936891
时间: 2026-04-10 13:19:35
摘要:
问问,今天的情况怎么样的呢,再决定是否开工。
标题: chatgpt 200刀pro套餐的额度成谜
作者: #ikb
板块: #开发调优
编号: 1936909
帖子: https://linux.do/t/topic/1936909
时间: 2026-04-10 13:22:19
摘要:
按照openai官方推文的说法,200刀的pro老用户应该也是享受这两个月额度翻倍的。
但是在 Pricing – Codex | OpenAI Developers
里却显示只有5x享受额度翻倍的活动
不过即使还是20x,理论上比原来的6-7x plus的额度还是要好一些的(即使考虑plus的额度有缩水),上周pro的额度是真的是不禁用。
标题: Antigravity Ultra 其实是有审查期的,变相欺诈行为
作者: #doitcan
板块: #搞七捻三
编号: 1936921
帖子: https://linux.do/t/topic/1936921
时间: 2026-04-10 13:25:01
摘要:
google one ultra套餐,必须要连续2个月都订阅,并且每个月的账单要大于100美金,在第三个月开始才能真正享有ultra的层级和速率,前2个月跟free一个层级,前两个月和Free的区别只有额度区别,和Free一起PVP,因为谷歌429也会扣额度的,所以说相当于变相也砍了额度。
套餐介绍也没有说,只有找客服,客服才会跟你说,并且不支持任何形式的退款。
以上说法全部来自谷歌客服,有证据支撑。
标题: 限制20字解决问题的方法。A solution to a problem limited to 20 characters.
作者: #叼毛佬
板块: #搞七捻三
编号: 1936923
帖子: https://linux.do/t/topic/1936923
时间: 2026-04-10 13:25:05
摘要:
就是不管说什么都用英语翻译一遍,不够把日语也加上。
It means translating everything into English, and if that’s not enough, adding Japanese as well.
それはつまり、すべてを英語に翻訳し、それでも不十分な場合は日本語も追加するということだ。
标题: 【公益】号池用不完 发出来给大家一起用
作者: #helloworld7788
板块: #福利羊毛
编号: 1936928
帖子: https://linux.do/t/topic/1936928
时间: 2026-04-10 13:25:18
摘要:
自己搭的纯血plus号池,目前有16个号了 
地址:gaoyfapi - AI API Gateway
sk-你好06493846eba9bea2ea7b07548b313415a52d4d094a93367b48c49e03b8d587f1
去掉你好使用
标题: 手工注册codex怎么用到API呢,一直不懂
作者: #Oldxianyu
板块: #搞七捻三
编号: 1936931
帖子: https://linux.do/t/topic/1936931
时间: 2026-04-10 13:25:43
摘要:
就是注册chatgpt后,如果到newapi这一步的,想自己搞一下但是完全不懂背后的步骤和流程,求大佬们解答一下
标题: 油猴脚本:自动将 linux.do 的话题链接重定向为 nested 视图
作者: #王大锤
板块: #开发调优
编号: 1936934
帖子: https://linux.do/t/topic/1936934
时间: 2026-04-10 13:25:57
摘要:
L站新加入的 view as nested 功能非常好,用来看回帖关系非常友好。
可惜目前没有地方设置为默认视图,每次都点一下很麻烦,所以让哈基咪帮忙写了个简单的油猴脚本,用起来还可以,分享给大家:
// ==UserScript==
// @name Linux.do 话题重定向 (Nested View)
// @namespace http://tampermonkey.net/
// @version 1.0
// @description 自动将 linux.do 的话题链接重定向为 nested 视图并按旧到新排序
// @author 哈基咪
// @match https://linux.do/*
// @grant none
// @run-at document-start
// ==/UserScript==

(function() {
'use strict';

// 匹配逻辑:匹配 /t/topic/数字 或 /t/topic/数字/数字
const TOPIC_REGEX = /https:\/\/linux\.do\/t\/topic\/(\d+)(?:\/\d+)?/;

/**
* 生成重定向后的目标 URL
*/
function getTargetUrl(url) {
const match = url.match(TOPIC_REGEX);
if (match && !url.includes('/nested/')) {
const topicId = match[1];
return `https://linux.do/nested/topic/${topicId}?sort=old`;
}
return null;
}

/**
* 处理直接访问(进入页面时重定向)
*/
const currentTarget = getTargetUrl(window.location.href);
if (currentTarget) {
window.location.replace(currentTarget);
}

/**
* 处理点击跳转(针对列表页或评论内的超链接)
* 采用捕获阶段监听,确保在单页应用 (SPA) 路由触发前进行拦截
*/
document.addEventListener('click', function(e) {
// 查找最近的锚点标签 <a>
const anchor = e.target.closest('a');
if (anchor && anchor.href) {
const target = getTargetUrl(anchor.href);
if (target) {
e.preventDefault(); // 阻止原有的跳转
window.location.href = target; // 强制跳转到新地址
}
}
}, true);

})();

脚本功能说明

自动识别 ID:脚本会自动提取 URL 中的话题 ID,并忽略掉末尾的具体楼层编号,统一导向该话题的 nested 视图页面。
重定向处理:


初始进入:直接在地址栏输入或打开原链接,脚本会在页面加载前立即重定向(replace 模式不会产生多余的历史记录)。
动态点击:脚本会监听全页面的点击事件。无论链接是在主题列表页,还是藏在某个回帖的引用里,点击后都会被拦截并重定向。

enjoy : - )
标题: happyhorse发布在即,会有能力提升吗
作者: #AAAI
板块: #搞七捻三
编号: 1936943
帖子: https://linux.do/t/topic/1936943
时间: 2026-04-10 13:27:14
摘要:
阿里新一代视频生成模型发布在即,佬们有懂得吗,聊聊
标题: 甲骨文4c24g,我成了,就刚刚 纯手点的
作者: #sinxin
板块: #搞七捻三
编号: 1936947
帖子: https://linux.do/t/topic/1936947
时间: 2026-04-10 13:27:37
摘要:
标题: 发现L站多了一个 AI机器人菜单
作者: #mangoc
板块: #搞七捻三
编号: 1936956
帖子: https://linux.do/t/topic/1936956
时间: 2026-04-10 13:29:41
摘要:
如下,这个是刚上的吗?
标题: codex 启动老是带这个提示信息怎么回事?
作者: #johnfloyd
板块: #开发调优
编号: 1936957
帖子: https://linux.do/t/topic/1936957
时间: 2026-04-10 13:29:42
摘要:
 MCP client for `codex_apps` failed to start: MCP startup failed: handshaking with MCP server failed: Send message error Transport [rmcp::t
ransport::worker::WorkerTransport<rmcp::transport::streamable_http_client::StreamableHttpClientWorker<codex_rmcp_client::rmcp_client::Stre
amableHttpResponseClient>>] error: Client error: error sending request for url (https://chatgpt.com/backend-api/wham/apps), when send init
ialize request

MCP startup incomplete (failed: codex_apps)

如题,codex 启动的时候老是报这个提示,看起来好像没有影响什么,但是很丑哎。
是我节点的问题吗
标题: Seedance 2.0最高只能720P?
作者: #GILMORE
板块: #搞七捻三
编号: 1936959
帖子: https://linux.do/t/topic/1936959
时间: 2026-04-10 13:29:49
摘要:
拿到了API,立马上手玩了一番,发现貌似最高支持720P?不过确实挺不错。