Warp Out of credits 有什么替代方式么?
求助替代办法
1 post - 1 participant
Read full topic
via LINUX DO - 最新话题 (author: gofreehj)
Invalid media: image
求助替代办法
1 post - 1 participant
Read full topic
via LINUX DO - 最新话题 (author: gofreehj)
Invalid media: image
google账号被封禁,求答疑
之前在闲鱼买的教育优惠账号,gemini和notebookLM用了大半年都正常。
昨天换了一个梯子,然后今天被封禁了。请问:
1.各位佬有试过吗?什么理由申诉才会通过率高?
2.封禁的原因是梯子还是其他?
15 posts - 15 participants
Read full topic
via LINUX DO - 最新话题 (author: bohebohe)
Invalid media: image
之前在闲鱼买的教育优惠账号,gemini和notebookLM用了大半年都正常。
昨天换了一个梯子,然后今天被封禁了。请问:
1.各位佬有试过吗?什么理由申诉才会通过率高?
2.封禁的原因是梯子还是其他?
15 posts - 15 participants
Read full topic
via LINUX DO - 最新话题 (author: bohebohe)
Invalid media: image
关于 mac ice 菜单栏管理器的使用询问
佬们问个问题 我看官网
这个可以定义多个为啥我这只有一个没看到怎么增加这个啊
英语不太好 可能是没看懂咋用所以来问问
9 posts - 3 participants
Read full topic
via LINUX DO - 最新话题 (author: zang)
Invalid media:
image
image
佬们问个问题 我看官网
这个可以定义多个为啥我这只有一个没看到怎么增加这个啊
英语不太好 可能是没看懂咋用所以来问问
9 posts - 3 participants
Read full topic
via LINUX DO - 最新话题 (author: zang)
Invalid media:
image
image
【吐槽】大模型太强了,以至于很多人感觉自己行了
最近在搞 RAG,疯狂找文章、跑 demo。
结果越跑越觉得:这些东西完全没讲到点子上。
现在的 RAG 教程基本有个共同套路:
大多数教程的内容就是:
文档随便加载、chunk 大小照抄默认、top-k 恒定 5、embedding 不解释、检索不分析、不做 rerank、不做 query rewrite、不谈 evaluation、不讲 error case、不讲优化
最后整个系统确实能跑,但仅限于能跑起来。
真正难的地方,全都避而不谈,RAG 的痛点其实在:
● chunk 怎么切才不会丢信息
● 如何减少噪声检索
● 如何做混合检索(BM25 + embedding)
● 是否需要 rerank
● 如何提升召回
● 多文档融合怎么做
● 用户问句要不要改写
● 最终回答怎么 ground
● 怎么评测 RAG 好坏
这些才是 RAG 的核心,但教程基本不写。
写得最多的是:
于是很多人看到模型回得还行,就以为:
我发现不少标榜企业级 RAG 的项目:
● chunk 策略没有
● rerank 没有
● 多文档处理没有
● query rewrite 没有
● metadata 过滤没有
● 结构化知识处理没有
跑起来的效果跟“PDF 搜索 + LLM 总结”几乎没区别,但标题往往写得特别高调。
基本没人写 RAG 的评测和观测
但这其实是最重要的一块。
你需要知道:
● 召回率到底多少
● 捞不到内容时模型会怎么答
● 噪声 chunk 有多少
● 排序是否有效
● 文档融合是否混乱
● prompt 是否引导正确
● 哪类问题容易出错
结果教程一片空白。
如果你也在做 RAG 项目,那些入门文章看看就行,真正有价值的点是:
● chunk 策略
● 多阶段检索
● rerank
● query rewrite
● 文档融合
● evaluation
● observability
● 以及如何避免模型胡说八道
这些才决定一个 RAG 到底能不能上线。
Read full topic
via LINUX DO - 最新话题 (author: 温州程序员劝退师)
Invalid media: image
最近在搞 RAG,疯狂找文章、跑 demo。
结果越跑越觉得:这些东西完全没讲到点子上。
现在的 RAG 教程基本有个共同套路:
跟着官方示例走一遍 → 跑起来了 → 完事。但真正关键的东西,全都没写到(或者不会)。
大多数教程的内容就是:
文档随便加载、chunk 大小照抄默认、top-k 恒定 5、embedding 不解释、检索不分析、不做 rerank、不做 query rewrite、不谈 evaluation、不讲 error case、不讲优化
最后整个系统确实能跑,但仅限于能跑起来。
真正难的地方,全都避而不谈,RAG 的痛点其实在:
● chunk 怎么切才不会丢信息
● 如何减少噪声检索
● 如何做混合检索(BM25 + embedding)
● 是否需要 rerank
● 如何提升召回
● 多文档融合怎么做
● 用户问句要不要改写
● 最终回答怎么 ground
● 怎么评测 RAG 好坏
这些才是 RAG 的核心,但教程基本不写。
写得最多的是:
“pip install 一下即可。”现在模型本身太强了,有时候你检索不到东西,它也能凭本事瞎猜个八九不离十。
于是很多人看到模型回得还行,就以为:
“哇,我这个 RAG 好厉害!”其实是模型自己懂,跟你检索没关系。
我发现不少标榜企业级 RAG 的项目:
● chunk 策略没有
● rerank 没有
● 多文档处理没有
● query rewrite 没有
● metadata 过滤没有
● 结构化知识处理没有
跑起来的效果跟“PDF 搜索 + LLM 总结”几乎没区别,但标题往往写得特别高调。
基本没人写 RAG 的评测和观测
但这其实是最重要的一块。
你需要知道:
● 召回率到底多少
● 捞不到内容时模型会怎么答
● 噪声 chunk 有多少
● 排序是否有效
● 文档融合是否混乱
● prompt 是否引导正确
● 哪类问题容易出错
结果教程一片空白。
如果你也在做 RAG 项目,那些入门文章看看就行,真正有价值的点是:
● chunk 策略
● 多阶段检索
● rerank
● query rewrite
● 文档融合
● evaluation
● observability
● 以及如何避免模型胡说八道
这些才决定一个 RAG 到底能不能上线。
纯吐槽,切勿对号入座39 posts - 27 participants
看来吐槽到大家痛点上了 有点回复不过来 白天还要上班,佬友们先自行讨论互通有无 🫠
Read full topic
via LINUX DO - 最新话题 (author: 温州程序员劝退师)
Invalid media: image
求助帖:cc-switch brew安装问题
cc-switch无法使用brew安装了吗,命令显示没有找到 🥲
1 post - 1 participant
Read full topic
via LINUX DO - 最新话题 (author: siwei zhen)
Invalid media: image
cc-switch无法使用brew安装了吗,命令显示没有找到 🥲
1 post - 1 participant
Read full topic
via LINUX DO - 最新话题 (author: siwei zhen)
Invalid media: image
Gemini 3.0 Flash 在 100k 召回率为 100%
图来自类脑用户,仅转载
本次测试为 100K 上下文,40 根针,召回率 100%
大海捞针测试不代表模型最终能力,仅供参考
11 posts - 6 participants
Read full topic
via LINUX DO - 最新话题 (author: Duncan Lean)
Invalid media:
image
image
图来自类脑用户,仅转载
本次测试为 100K 上下文,40 根针,召回率 100%
大海捞针测试不代表模型最终能力,仅供参考
11 posts - 6 participants
Read full topic
via LINUX DO - 最新话题 (author: Duncan Lean)
Invalid media:
image
image
java软件开发实习
学校课结束的早,干脆直接去实习了,进了个小厂。除了第一二天,搭了公司项目和用公司的代码生成器实现了配套的前后端crud之后,就没有任务了。基本刷课程,带薪学习,坐等下班。
8 posts - 6 participants
Read full topic
via LINUX DO - 最新话题 (author: 潇)
学校课结束的早,干脆直接去实习了,进了个小厂。除了第一二天,搭了公司项目和用公司的代码生成器实现了配套的前后端crud之后,就没有任务了。基本刷课程,带薪学习,坐等下班。
8 posts - 6 participants
Read full topic
via LINUX DO - 最新话题 (author: 潇)
如何兑换rewards的奖礼品卡呢?手把手教学!
很多佬攒足了rewards积分兑换了礼品卡,总说收不到兑换信息,找不到兑换的地方。
本期跟我走进rewards礼品卡兑换教程。
首先进入https://rewards.bing.com/
然后点击兑换,进入兑换界面;
第三步点击左侧的订单历史记录,在订单历史记录里面你会看到所有的兑换记录;
第四步找到你兑换的礼品卡;
第五步点击最右侧的详细信息,就能看到你的兑换信息啦。
就是辣么简单,就是辣么方便。
2 posts - 2 participants
Read full topic
via LINUX DO - 最新话题 (author: 莫名其妙)
Invalid media:
image
image
image
很多佬攒足了rewards积分兑换了礼品卡,总说收不到兑换信息,找不到兑换的地方。
本期跟我走进rewards礼品卡兑换教程。
首先进入https://rewards.bing.com/
然后点击兑换,进入兑换界面;
第三步点击左侧的订单历史记录,在订单历史记录里面你会看到所有的兑换记录;
第四步找到你兑换的礼品卡;
第五步点击最右侧的详细信息,就能看到你的兑换信息啦。
就是辣么简单,就是辣么方便。
2 posts - 2 participants
Read full topic
via LINUX DO - 最新话题 (author: 莫名其妙)
Invalid media:
image
image
image
xychatai地主家没余粮了,看来这波Google不善良了
■ {“error”:{“message”:“all 10 attempts failed: HTTP 403: {“error”:{“message”:“用户额度不足, 剩余额度:
$-0.194242 (request id: 202512111012557181686nxexRGJg)”,“type”:“packy_api_error”,“param”:“”,“code”:
“insufficient_user_quota”}}”,“type”:“request_error”}}
1 post - 1 participant
Read full topic
via LINUX DO - 最新话题 (author: naiba5)
■ {“error”:{“message”:“all 10 attempts failed: HTTP 403: {“error”:{“message”:“用户额度不足, 剩余额度:
$-0.194242 (request id: 202512111012557181686nxexRGJg)”,“type”:“packy_api_error”,“param”:“”,“code”:
“insufficient_user_quota”}}”,“type”:“request_error”}}
1 post - 1 participant
Read full topic
via LINUX DO - 最新话题 (author: naiba5)
一些数字大屏驾驶舱项目开发的问题。
驾驶舱部分信息已打码。
对于驾驶舱的开发,感觉好复杂,图片元素太多了,背景元素也多,css写的很累。
对于这种定制性开发,目前没尝试过使用AI。前端采用vue框架,后端采用springboot框架。
用户需要能够自定义数据,但是由于前端展示的数据太多分散和杂乱,就不知道如何定义数据结构。目前是通过一种很奇葩的方式实现的。
这是左中的后端数据图。
修改数据的话,是这样显示的。
为什么这样做呢?因为左中还有很多tag标签,每个标签的数据结构都不一样,这是
身边人都没有开发过驾驶舱的经验,所以请教一下大佬们,这种项目该怎么优化呢?
2 posts - 2 participants
Read full topic
via LINUX DO - 最新话题 (author: Handsomedog)
Invalid media:
image
image
image
image
驾驶舱部分信息已打码。
对于驾驶舱的开发,感觉好复杂,图片元素太多了,背景元素也多,css写的很累。
对于这种定制性开发,目前没尝试过使用AI。前端采用vue框架,后端采用springboot框架。
用户需要能够自定义数据,但是由于前端展示的数据太多分散和杂乱,就不知道如何定义数据结构。目前是通过一种很奇葩的方式实现的。
这是左中的后端数据图。
修改数据的话,是这样显示的。
为什么这样做呢?因为左中还有很多tag标签,每个标签的数据结构都不一样,这是
加工标签的数据。身边人都没有开发过驾驶舱的经验,所以请教一下大佬们,这种项目该怎么优化呢?
2 posts - 2 participants
Read full topic
via LINUX DO - 最新话题 (author: Handsomedog)
Invalid media:
image
image
image
image
TypeScript 7将至 编译快10倍
TypeScript – 2 Dec 25
Progress on TypeScript 7 - December 2025 - TypeScript
Earlier this year, the TypeScript team announced that we’ve been porting the compiler and language service to native code to take advantage of better raw performance, memory usage, and parallelism. This effort (codenamed “Project Corsa”, and soon...
🤠
6 posts - 6 participants
Read full topic
via LINUX DO - 最新话题 (author: 少林功夫好)
Invalid media:
image
image
TypeScript – 2 Dec 25
Progress on TypeScript 7 - December 2025 - TypeScript
Earlier this year, the TypeScript team announced that we’ve been porting the compiler and language service to native code to take advantage of better raw performance, memory usage, and parallelism. This effort (codenamed “Project Corsa”, and soon...
🤠
6 posts - 6 participants
Read full topic
via LINUX DO - 最新话题 (author: 少林功夫好)
Invalid media:
image
image
xdm,Google是不是开始大范围封号了😂
哈哈,学生优惠刚结束就封号是吧 🤣
16 posts - 11 participants
Read full topic
via LINUX DO - 最新话题 (author: JongilK)
Invalid media: image
哈哈,学生优惠刚结束就封号是吧 🤣
16 posts - 11 participants
Read full topic
via LINUX DO - 最新话题 (author: JongilK)
Invalid media: image
ChatGPT for Teachers的定位是啥
刚刚随便点点没想到通过了。
我试了一下codex是不能用的,智力好像和普通版本的没啥区别啊。
这个特殊之处只在于能制作一些教案啥的吗
4 posts - 4 participants
Read full topic
via LINUX DO - 最新话题 (author: ry)
刚刚随便点点没想到通过了。
我试了一下codex是不能用的,智力好像和普通版本的没啥区别啊。
这个特殊之处只在于能制作一些教案啥的吗
4 posts - 4 participants
Read full topic
via LINUX DO - 最新话题 (author: ry)
小美APP可以抽取奶茶券
小美APP,右上角新建对话,有个抽取奶茶券。我抽中了18.8,要在小美app里下单
1 post - 1 participant
Read full topic
via LINUX DO - 最新话题 (author: Taffy)
Invalid media:
image
image
image
小美APP,右上角新建对话,有个抽取奶茶券。我抽中了18.8,要在小美app里下单
1 post - 1 participant
Read full topic
via LINUX DO - 最新话题 (author: Taffy)
Invalid media:
image
image
image
GitHub Education x Microsoft Imagine Cup
imaginecup.microsoft.com
Student Developer 2026 Imagine Cup Competitions | Imagine Cup
Get the latest information on 2026 Imagine Cup competitions for students. Find out when, where and how to compete – and what it can mean to you.
Read full topic
via LINUX DO - 最新话题 (author: stevessr)
imaginecup.microsoft.com
Student Developer 2026 Imagine Cup Competitions | Imagine Cup
Get the latest information on 2026 Imagine Cup competitions for students. Find out when, where and how to compete – and what it can mean to you.
3 posts - 2 participants
After you register, what’s next?
● Unlock up to $5,000 USD in Azure credits to experiment, test, and refine your Minimum Viable Product (MVP).
● Build your team. Up to four (4) students are allowed per team, and everyone must register on the Imagine Cup website.
● Join the Sprint to Imagine Cup, a learning experience designed to explore what’s possible with Microsoft’s platforms and help you prepare a strong submission.
Read full topic
via LINUX DO - 最新话题 (author: stevessr)
关于【黑与白】疯狂星期四和出金,我有话要说
太太太太爽了,500+100+100,12次0谢谢,出金也高,不要羡慕嘻嘻
1 post - 1 participant
Read full topic
via LINUX DO - 最新话题 (author: zzz)
Invalid media:
image
image
image
image
太太太太爽了,500+100+100,12次0谢谢,出金也高,不要羡慕嘻嘻
1 post - 1 participant
Read full topic
via LINUX DO - 最新话题 (author: zzz)
Invalid media:
image
image
image
image
claude-code 2.0.64 的自动压缩改进了
自动压缩改进 ,实际体验很好,主要不要等,貌似也没有忘记什么事情(不知道是不是https://www.anthropic.com/engineering/effective-harnesses-for-long-running-agents 这篇文章的实践),另外sub agent 调用 最近几个版本也改进了,变成后台运行,有个agent output 等待
这是日志
2.0.64
● Made auto-compacting instant
● Agents and bash commands can run asynchronously and send messages to wake up the main agent
● /stats now provides users with interesting CC stats, such as favorite model, usage graph, usage streak
● Added named session support: use
● Added support for .claude/rules/`. See https://code.claude.com/docs/en/memory for details.
● Added image dimension metadata when images are resized, enabling accurate coordinate mappings for large images
● Fixed auto-loading .env when using native installer
● Fixed
● Improved
● VSCode: Added copy-to-clipboard button on code blocks and bash tool inputs
● VSCode: Fixed extension not working on Windows ARM64 by falling back to x64 binary via emulation
● Bedrock: Improve efficiency of token counting
● Unshipped AgentOutputTool and BashOutputTool, in favor of a new unified TaskOutputTool
6 posts - 6 participants
Read full topic
via LINUX DO - 最新话题 (author: yahann shen)
自动压缩改进 ,实际体验很好,主要不要等,貌似也没有忘记什么事情(不知道是不是https://www.anthropic.com/engineering/effective-harnesses-for-long-running-agents 这篇文章的实践),另外sub agent 调用 最近几个版本也改进了,变成后台运行,有个agent output 等待
这是日志
2.0.64
● Made auto-compacting instant
● Agents and bash commands can run asynchronously and send messages to wake up the main agent
● /stats now provides users with interesting CC stats, such as favorite model, usage graph, usage streak
● Added named session support: use
/rename to name sessions, /resume <name> in REPL or claude --resume <name> from the terminal to resume them● Added support for .claude/rules/`. See https://code.claude.com/docs/en/memory for details.
● Added image dimension metadata when images are resized, enabling accurate coordinate mappings for large images
● Fixed auto-loading .env when using native installer
● Fixed
--system-prompt being ignored when using --continue or --resume flags● Improved
/resume screen with grouped forked sessions and keyboard shortcuts for preview (P) and rename (R)● VSCode: Added copy-to-clipboard button on code blocks and bash tool inputs
● VSCode: Fixed extension not working on Windows ARM64 by falling back to x64 binary via emulation
● Bedrock: Improve efficiency of token counting
● Unshipped AgentOutputTool and BashOutputTool, in favor of a new unified TaskOutputTool
6 posts - 6 participants
Read full topic
via LINUX DO - 最新话题 (author: yahann shen)
电锯人剧场版流媒体疑问
佬们,不是说上线流媒体吗?话说crunchyroll会有没有,我上去没找到,只看到预告片
1 post - 1 participant
Read full topic
via LINUX DO - 最新话题 (author: a23882)
佬们,不是说上线流媒体吗?话说crunchyroll会有没有,我上去没找到,只看到预告片
1 post - 1 participant
Read full topic
via LINUX DO - 最新话题 (author: a23882)
求助脚本网络请求失败
之前关于论文方面,注册了个科研通。有个大佬建议可以用青龙适配签到。我也按照教程过了一遍,运行脚本时,出现这种情况,话说这个大佬们知道怎么解决吗?
1 post - 1 participant
Read full topic
via LINUX DO - 最新话题 (author: Kia423)
Invalid media: image
之前关于论文方面,注册了个科研通。有个大佬建议可以用青龙适配签到。我也按照教程过了一遍,运行脚本时,出现这种情况,话说这个大佬们知道怎么解决吗?
1 post - 1 participant
Read full topic
via LINUX DO - 最新话题 (author: Kia423)
Invalid media: image