<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title>V2EX</title>
<subtitle>way to explore</subtitle>


<link rel="alternate" type="text/html" href="https://www.v2ex.com/" />
<link rel="self" type="application/atom+xml" href="https://www.v2ex.com/index.xml" />
<id>https://www.v2ex.com/</id>

<updated>2026-07-11T20:38:22Z</updated>

<rights>Copyright © 2010-2018, V2EX</rights>
<entry>
	<title>[OpenAI] 推理强度：最高，在 Mac 上是默认关闭的不可选</title>
	<link rel="alternate" type="text/html" href="https://www.v2ex.com/t/1226651#reply0" />
	<id>tag:www.v2ex.com,2026-07-12:/t/1226651</id>
	<published>2026-07-12T00:38:22Z</published>
	<updated>2026-07-11T20:38:22Z</updated>
	<author>
		<name>andforce</name>
		<uri>https://www.v2ex.com/member/andforce</uri>
	</author>
	<content type="html" xml:base="https://www.v2ex.com/" xml:lang="en"><![CDATA[
	设置，配置，模型功能<br />可以开启<br /><br /><a target="_blank" href="https://i.imgur.com/AFSm1WQ.jpeg" rel="nofollow noopener" target="_blank"><img src="https://i.imgur.com/AFSm1WQ.jpeg" class="embedded_image" rel="noreferrer"></a>
	]]></content>
</entry><entry>
	<title>[反馈] 干程序年头多了是不是多少都得沾点易经</title>
	<link rel="alternate" type="text/html" href="https://www.v2ex.com/t/1226650#reply3" />
	<id>tag:www.v2ex.com,2026-07-12:/t/1226650</id>
	<published>2026-07-12T00:27:30Z</published>
	<updated>2026-07-12T00:28:52Z</updated>
	<author>
		<name>hanxiaobanbudian</name>
		<uri>https://www.v2ex.com/member/hanxiaobanbudian</uri>
	</author>
	<content type="html" xml:base="https://www.v2ex.com/" xml:lang="en"><![CDATA[
	<p>九紫离火大运是指中国传统干支历法与三元九运中的一个 20 年周期（ 2024 年立春至 2043 年立春）。这个大运尤其利好文化与精神领域，身心灵成长正是其中一大方向。从 Java 做到 iOS ，又折腾到 Web3 ，经历了不少变故，从前端一路干到架构，在技术成长里不断琢磨出一些人生感悟。眼看已经活成中登，再不信命，多少就有点冥顽不灵了。正好看了油管博主老王来的观点，很受触动，今天水一帖，欢迎各位佬友一起来交流。</p>
<p><strong>1. 阴阳与二进制的本质映射</strong>
在老王构建的体系里，《易经》的基础“阴阳”，完全等同于计算机底层逻辑中的二进制“0”和“1”。引入现代“0”的概念后，他定义 0 代表阳（长横），1 代表阴（两短横）。这种类似通电与断电的底层逻辑，是构建超大规模集成电路最稳定的物理结构，也是任何高级文明在信息时代必然采用的底层代码。</p>
<p><strong>2. 爻（ Yao ）即是比特（ Bit ）</strong>
周易中的“爻”，在计算机科学里对应的概念正是“Bit”（位）。太极生两仪（ 1 位二进制，2 种状态），两仪生四象（ 2 位二进制，4 种状态：00, 01, 10, 11 ），通过逐次增加数据位，最终推演形成完整的八卦体系。</p>
<p><strong>3. 八卦与 64 卦的数据结构</strong></p>
<ul>
<li>
<p><strong>三位二进制构成八卦</strong>：八卦（乾、兑、离、震、巽、坎、艮、坤）本质上就是三位二进制数（从 000 到 111 ），严密对应十进制中的 0 到 7 这 8 个自然数。</p>
</li>
<li>
<p><strong>六位二进制构成六十四卦</strong>：上下两卦组合（各三位）形成六个“爻”，即六位二进制数，最大组合数正好是 64 种。只要掌握从 000000 到 111111 的二进制进位和排序规律，就可以像生成数据序列一样直接画出 64 卦，彻底省去死记硬背圆盘图的低效环节。</p>
</li>
</ul>
<p><strong>4. 卦象变化的算法逻辑（错综互变）</strong>
传统算命中那些晦涩难懂的排卦与变卦逻辑，被他直接剥离为清晰的计算机位运算规则：</p>
<ul>
<li>
<p><strong>变卦</strong>：改变当前 6 位二进制代码中的某一位（翻转一个 Bit ），即代表“变心”或状态转移。</p>
</li>
<li>
<p><strong>互卦</strong>：掐头去尾，舍弃第 1 位和第 6 位，提取中间 4 位。用第 2 、3 、4 位组成新的前三位（上卦），第 3 、4 、5 位组成新的后三位（下卦），完成数据的重组拼接。</p>
</li>
<li>
<p><strong>错卦</strong>：所有数据位按位取反（ 0 变 1 ，1 变 0 ），相当于位运算中的非（ NOT ）操作。</p>
</li>
<li>
<p><strong>综卦</strong>：将 6 位二进制数组整体镜像倒置，首尾互换（第 1 位变成最后 1 位，最后 1 位变成第 1 位）。</p>
</li>
</ul>
<p>老王来了是我比较喜欢的一位油管博主，不知道有没有同样好这一口的拿性教友 :joy:。基于强烈的怀疑精神与前瞻视角，老王认为《周易》并非本土自发的占卜学说，而是一套源自极高阶星际文明或古老文明（如苏美尔）的数学和程序架构。像“乾、坤、震、巽”这些字眼，极大概率是外来高维文明词汇在数千年传承中的“音译”。后人在以讹传讹中弄丢了这套二进制密钥，才不得不给它披上神鬼玄学的外衣。
以上仅为个人观点，仅供大家娱乐交流。</p>

	]]></content>
</entry><entry>
	<title>[问与答] 现阶段有什么画质优先的 Emby 高码服推荐吗</title>
	<link rel="alternate" type="text/html" href="https://www.v2ex.com/t/1226649#reply0" />
	<id>tag:www.v2ex.com,2026-07-12:/t/1226649</id>
	<published>2026-07-12T00:13:19Z</published>
	<updated>2026-07-12T00:13:19Z</updated>
	<author>
		<name>ggdxwz</name>
		<uri>https://www.v2ex.com/member/ggdxwz</uri>
	</author>
	<content type="html" xml:base="https://www.v2ex.com/" xml:lang="en"><![CDATA[
	<p>先说一下楼主这边的情况吧，年前搬家时误判了储存局势，把原先刷 PT 的阵列放恒湿箱封存在老家了，重新买是买不起的，重建也麻烦。没办法，自从小雅后时隔多年重新拥抱流媒体，馒头之类的已经刷满保号了，选 Emby 单纯只是懒，主打一个花钱买服务。</p>
<p>之前入了 youno, 但是不同资源画质参差不齐，主要是感觉压制组压的一般，所以想了解一下其他家没有画质优先的 emby 高码服。</p>
<p>需求如下</p>
<ul>
<li>片源质量优先，主看 4K DV Atmos ，低码率二压和质量一般的小体积压制不在考虑范围</li>
<li>观看内容以电影和动漫为主</li>
<li>播放平台以 infuse, Hills, Yamby 为主，能支持 Moon, Skybox 这些小众客户端最好 </li>
<li>价格不是问题，预算 60r / 月，再怎么贵也比硬盘便宜</li>
<li>线路我也不关心，不需要直连。涨价前囤了一大堆小鸡跑 AI 落地，现在终于可以有点用武之地了</li>
<li>起播速度无所谓，网盘服和硬盘服都行，能放就 ok</li>
</ul>
<p>目前正在了解以下几家，但因为缺少信息没办法做决策，不知道各位有没有推荐🤔</p>
<ul>
<li>喜鹊</li>
<li>鸢尾</li>
<li>墨云阁</li>
<li>蘑菇</li>
<li>Omega/Alpha 因为 IP 兼容问题暂不考虑</li>
</ul>

	]]></content>
</entry><entry>
	<title>[Claude] A÷，老子跟你拼了，被迫成为精神美国人</title>
	<link rel="alternate" type="text/html" href="https://www.v2ex.com/t/1226648#reply10" />
	<id>tag:www.v2ex.com,2026-07-12:/t/1226648</id>
	<published>2026-07-12T00:00:38Z</published>
	<updated>2026-07-02T00:14:11Z</updated>
	<author>
		<name>duhbbx1119</name>
		<uri>https://www.v2ex.com/member/duhbbx1119</uri>
	</author>
	<content type="html" xml:base="https://www.v2ex.com/" xml:lang="en"><![CDATA[
	<p>A÷令人魔怔</p>
<p>买了一个 google email 重新起号</p>
<p>买了一个美国静态住宅 ip</p>
<p>时区改为 los angles</p>
<p>语言 改为 American English</p>
<p>用 google 邮箱申请一个新的 claude 账号</p>
<p>prompt 都用我那蹩脚的英文写</p>
<p>使劲蹬，我看多久封号</p>

	]]></content>
</entry><entry>
	<title>[分享创造] 分享一个可以托管在 cloudflare workers 的可拖拽仪表盘 ssh</title>
	<link rel="alternate" type="text/html" href="https://www.v2ex.com/t/1226647#reply0" />
	<id>tag:www.v2ex.com,2026-07-11:/t/1226647</id>
	<published>2026-07-11T23:45:21Z</published>
	<updated>2026-07-11T19:45:21Z</updated>
	<author>
		<name>Godblessu</name>
		<uri>https://www.v2ex.com/member/Godblessu</uri>
	</author>
	<content type="html" xml:base="https://www.v2ex.com/" xml:lang="en"><![CDATA[
	<h1>ternssh</h1>
<p>
  基于 Cloudflare 的 SSH 工作台<br/>
  可拖拽仪表盘 · 终端 · SFTP · 状态监控
</p>
<p>
<a href="https://deploy.workers.cloudflare.com/?url=https://github.com/haradakashiwa/ternssh-cloudflare-workers-template" rel="nofollow">
<img alt="Deploy to Cloudflare" class="embedded_image" loading="lazy" referrerpolicy="no-referrer" rel="noreferrer" src="https://deploy.workers.cloudflare.com/button"/>
</a>
</p>
<p>
<img alt="ternssh 仪表盘预览" class="embedded_image" loading="lazy" referrerpolicy="no-referrer" rel="noreferrer" src="https://github.com/HaradaKashiwa/ternssh/raw/main/docs/preview-light.png"/>
</p>
<hr/>
<p><strong>ternssh</strong> 是一款运行在 Cloudflare Edge 上的 SSH 管理工具，当然也可以 docker self-hosted 。完整文档见
<a href="https://ternssh.com/docs/home" rel="nofollow">文档</a>。</p>
<h2>部署</h2>
<p>详见 <a href="https://ternssh.com/docs/deployment" rel="nofollow">部署指南</a>。</p>
<p>如果你觉得这个项目帮上了你，请给我一个🌟 <a href="https://github.com/haradakashiwa/ternssh" rel="nofollow">Github</a></p>

	]]></content>
</entry><entry>
	<title>[问与答] 16 号从大陆去台湾旅行 大概 3 天 请问大家有什么方式能回回血？ 机票有点贵</title>
	<link rel="alternate" type="text/html" href="https://www.v2ex.com/t/1226646#reply2" />
	<id>tag:www.v2ex.com,2026-07-11:/t/1226646</id>
	<published>2026-07-11T23:20:36Z</published>
	<updated>2026-07-11T23:26:01Z</updated>
	<author>
		<name>chaoschick</name>
		<uri>https://www.v2ex.com/member/chaoschick</uri>
	</author>
	<content type="html" xml:base="https://www.v2ex.com/" xml:lang="en"><![CDATA[
	接一点帮忙带东西的活可以吗？
	]]></content>
</entry><entry>
	<title>[全球工单系统] 淘宝桌面版 cli 搜索一次就掉线，抓包发现是自己的推荐接口把自己搞崩了</title>
	<link rel="alternate" type="text/html" href="https://www.v2ex.com/t/1226645#reply2" />
	<id>tag:www.v2ex.com,2026-07-11:/t/1226645</id>
	<published>2026-07-11T22:03:08Z</published>
	<updated>2026-07-12T00:39:42Z</updated>
	<author>
		<name>janetshaw529</name>
		<uri>https://www.v2ex.com/member/janetshaw529</uri>
	</author>
	<content type="html" xml:base="https://www.v2ex.com/" xml:lang="en"><![CDATA[
	<pre><code>{
                "name": "search_products",
                "description": "在淘宝/天猫中搜索商品或店铺。 [搜索类型]  type 参数指定搜索类型：all=商品搜索（默认）、shop=店铺搜索、tmall=天猫商品、22pc_b=企业购、pc_taobao=淘宝。 [优先规则] 如果用户提到「店铺」「找店」「进店」「某某店」等关键词，优先使用 type=shop 进行店铺搜索。 [使用场景] 当用户提供了图片且能识别出文字（如商品名称、品牌等）时，先识别文字再调用此工具搜索。 [返回数据] 工具返回商品列表（ products 字段），包含商品标题、价格、店铺、销量等信息。",
                "inputSchema": {
                    "type": "object",
                    "properties": {
                        "keyword": {
                            "type": "string",
                            "description": "搜索关键词"
                        },
                        "type": {
                            "type": "string",
                            "description": "搜索类型：all=商品搜索（默认）、shop=店铺搜索、tmall=天猫商品、22pc_b=企业购、pc_taobao=淘宝。用户提到店铺相关词汇时优先使用 shop 。"
                        },
                        "sourceApp": {
                            "type": "string",
                            "description": "调用来源应用名称，如 Qcoderwork 、openClaw 、copaw 等"
                        }

                    },
                    "required": [
                        "keyword",
                        "sourceApp"
                    ]
                }
            },
</code></pre>
<p>淘宝桌面版有个 cli 工具 <code>taobao-native</code>，可以让 agent 调用搜索商品之类的。我试了一下 <code>search_products</code>，搜索结果倒是能正常拿到，但搜完客户端就掉线了，每次都这样。
但我在桌面端 ui 里手动搜同样的关键词就完全没事。</p>
<p>抓包发现执行 <code>search_products</code> 的时候，桌面端会打开一个<strong>全新的搜索结果页</strong>， 然后页面上的各种推荐广告位模块一起初始化，0.6 秒内并行发了 26 条 <code>mtop.relationrecommend</code> 请求出去， 然后淘宝自己的 TMD 风控系统就把这当成异常行为拦截了，返回：</p>
<blockquote>
<p><code>RGV587_ERROR::SM::哎哟喂,被挤爆啦,请稍后重试!</code></p>
</blockquote>
<p>然后就弹了个登录验证弹窗。
手动搜索的时候由于搜索页已经在 webview 里加载过了，不需要重新加载推荐模块，只发了 2 条请求，没有触发风控。</p>
<p>掉线之后后续操作就全断了，没办法继续看详情之类的，只能再次手动扫码登录。
我不明白，既然开放了 <code>search_products</code> 这样的工具给外部调用，为什么会存在这样的问题，我是希望 agent 能够在我不干预的情况下自行搜索和继续浏览的。</p>
<p>想请教下各位 V 友大佬们，有没有遇到过这个问题？</p>

	]]></content>
</entry><entry>
	<title>[程序员] 专科大二，喜欢底层开发(?)，但有点迷茫想听听建议...</title>
	<link rel="alternate" type="text/html" href="https://www.v2ex.com/t/1226643#reply10" />
	<id>tag:www.v2ex.com,2026-07-11:/t/1226643</id>
	<published>2026-07-11T21:07:03Z</published>
	<updated>2026-07-12T00:39:21Z</updated>
	<author>
		<name>numbsooo</name>
		<uri>https://www.v2ex.com/member/numbsooo</uri>
	</author>
	<content type="html" xml:base="https://www.v2ex.com/" xml:lang="en"><![CDATA[
	<p>我是专科 大二的学生，因为比赛拿奖有个专业课免试资格，所以升本能去本省计算机专业里最好的本科</p>
<p>本来是留校实习的，但因为种种问题（没有处理这种事的经验），现在被流放到市场了。</p>
<p>我现在感觉到 AI Agent 对 CRUD 写胶水真没什么意思了，我个人很喜欢计算机，10 年前就注册了 Github ，最早是用 Java 写一些 Android 小应用发到当时的酷安市场，几 w 的下载量，谈不上厉害，但那时候的我也挺开心的。</p>
<p>之后接触 Webdev ，最开始 Vue-&gt;Go ，到现在 AI agent 最喜欢的 Nextjs+tailwindcss</p>
<p>我感觉应用层变来变去，你很难在其中找到一个属于自己的位置，我最早接触 Webdev 的时候 jQuery+PHP 特别火，现在已经查无此人了</p>
<p>去年 25 年 7 月，我开始接触嵌入式，我做了一个智能车</p>
<p>项目的详细可以看我写的一篇博客文章：<a href="https://lycois.org/cn/blog/2025/rasp-robot-car/cn" rel="nofollow">https://lycois.org/cn/blog/2025/rasp-robot-car/cn</a></p>
<p><img alt="" class="embedded_image" loading="lazy" referrerpolicy="no-referrer" rel="noreferrer" src="https://lycois.org/_astro/raspcar.C2biH41I_1yU3Ay.webp"/></p>
<p>当时我没有用 AI Agent 写代码，真的就是闷头学，但其实只学了点皮毛懂点嵌入式基础的通信协议，GPIO, I2C, SPI ，串口通信什么的，学了点 gdb 调试，懂了什么是 CPU 中断，CPU 时钟，</p>
<p>再学学调 PID ，看了看增量式 PID ，位置式 PID 。</p>
<p>然后让 AI agnet 用 Nextjs 搓了个可视化的控制面板，控制面板与树莓派用 WebSocket 连了一下，用 mjpg 图传。</p>
<p>然后在电脑搭了个简单的中间曾，用 YoloV8 去做目标检测，整个流程就变得稍稍有点复杂：STM32-&gt;树莓派 -&gt; YoloV8  flask -&gt; Nextjs</p>
<p>整个项目耗资 800¥，我的感受是在资源极度限制的情况下，其实也很有意思。</p>
<p>但我没有往模电数电继续深入。因为我通过这两三个月的体验，感受到了嵌入式软件是一个很封闭的行业，我理解的是很多事情都是在不同的芯片厂商的基础上去做有限度的开发。但 FPGA/DSP 的那些就感觉不一样，我也不太懂。硬件学了一下焊接，会焊引脚，感觉做硬件不适合我。有想复刻的硬件项目发现要贴片，我也谈不上喜欢就不想搞了。</p>
<p>现在老师帮我申报了几千块，我买了 Astra pro 深度相机，更 NB 的车架，买了个镭神 N10p 雷达，准备玩玩 ROS SLAM 什么的，做做自动规划的东西。</p>
<p>现在我在学 C 和 Rust ，正在用 C+SDL 手搓一个带 GUI 的 markdown editor ，用 Rust 做一个 SSG ，两个都要自己实现 markdown parser ，或许在实现同样的功能时，我能更好的感受到 Rust 的 Ownership 和内存安全的意义。</p>
<p>而且我找到了一个很好的学习方式（ AI 虽然让 Webdev 完蛋了，但对 Self-study 特别友好）。</p>
<p>我会跟 Codex 说：我是 C 语言新手，请你指导我完成 xxx 项目，实现各个功能时尽量不引入第三方库，当我遇到问题时不要直接告诉我答案，而是应该引导我去自己发现答案，请你根据此约束生成一个 <a href="http://AGENTS.md" rel="nofollow">AGENTS.md</a></p>
<p>到现在，我已经做出了一个还没有 Markdown 渲染但可以正常用的 text editor ！的确挺有意思的。可能我还是喜欢深入一点？但我也知道我现在学的还是很浅层的，继续往下深入可能学得会比较痛苦，我会心存敬畏的。</p>
<p>我最终的目标是在 AI 的帮助下，写一个 compiler + RISC-V OS kernel 。</p>
<p>计算机是我的爱好。</p>
<p>但将爱好作为不得不做的工作，并试图从爱好中谋取经济价值，是一件相当痛苦的事。</p>
<p>现在大三这一年实习也不知道去哪里，因为我只想要一点工资用作日常 tokens 的开销，并且想将自己的大部分时间分配给我的学习上。</p>
<p>跟我要好的老师建议我升本后去考研，我也不知道我要不要卷 408...</p>
<p>现在其实也不知道未来该干什么了。虽然现在打代码也挺开心的，但是抬起头却又感觉有点迷茫。</p>
<p>对了，我的英语很好，高考虽然考得很烂，但是英语 120+。很多功劳都来自于读技术文档。</p>
<p>最近在看 tsoding 的 twich 直播，现在我也刻意地录英语视频，去讲一些我新学到的知识。视频也不发出去，只当是一种自言自语吧。</p>
<p>其实整篇文章零零散散，我就想听听各位的建议：</p>
<p>以我的情况，升本以后是否应该准备 408 考研？</p>
<p>大三这一年要找实习吗，还是尽量保留时间打基础</p>
<p>我未来的就业方向应该是怎么样的？</p>
<p>问题有点幼稚，我知道这里的人都很厉害，所以想听听各位的意见，谢谢你看到这里。</p>

	]]></content>
</entry><entry>
	<title>[问与答] 如何让 codex 创造性地给我一些选择让我选，它默认直接做出的代码修改总是不符合我的要求。</title>
	<link rel="alternate" type="text/html" href="https://www.v2ex.com/t/1226642#reply5" />
	<id>tag:www.v2ex.com,2026-07-11:/t/1226642</id>
	<published>2026-07-11T20:28:27Z</published>
	<updated>2026-07-11T22:52:18Z</updated>
	<author>
		<name>hrdom</name>
		<uri>https://www.v2ex.com/member/hrdom</uri>
	</author>
	<content type="html" xml:base="https://www.v2ex.com/" xml:lang="en"><![CDATA[
	
	]]></content>
</entry><entry>
	<title>[推广] [分享] AI 编程资源全都在这了，我做了一个 AI 编程资源导航站</title>
	<link rel="alternate" type="text/html" href="https://www.v2ex.com/t/1226641#reply0" />
	<id>tag:www.v2ex.com,2026-07-11:/t/1226641</id>
	<published>2026-07-11T20:25:12Z</published>
	<updated>2026-07-11T20:25:12Z</updated>
	<author>
		<name>sakurajiayou</name>
		<uri>https://www.v2ex.com/member/sakurajiayou</uri>
	</author>
	<content type="html" xml:base="https://www.v2ex.com/" xml:lang="en"><![CDATA[
	<p>写了 10 多年代码，从去年开始全部 AI 编程了，也把 AI 编程的经验写了一本书，叫《人人都是 AI 产品经理》。作为一个每天跟 Claude / Codex / GPT 打交道的程序员，我最头疼的不是写代码，是<strong>到处找资源、到处被割韭菜</strong>，尤其是今年的科学上网工具都不好用了。</p>
<p>踩过很多坑，所有把我自己的资源整理做了这个站：**<a href="https://ikcode.co" rel="nofollow">ikcode.co</a>**</p>
<hr/>
<h3>为什么我要做这个？</h3>
<p><strong>一句话：程序员用 AI 的一切资源，这里全有，而且便宜到离谱。</strong></p>
<ul>
<li><strong>大模型 API 1-2 折</strong>：GPT 、Claude 、KIMI 、GLM 、Qwen……500+ 模型，一个入口全搞定，别再被中间商赚差价了</li>
<li><strong>Codex / Claude 账号 5 折</strong>：成品号和代充同价，想用顶级 AI 编程助手，不用再花冤枉钱</li>
<li><strong>20 个社媒平台统一 API</strong>：TikTok 、Instagram 、YouTube 、Twitter/X 、抖音……一套 API 全打通，做数据、做出海工具的必备</li>
<li><strong>Grok 视频生成 15 秒才 0.24 元，Seedance 2.0 视频 API 5 折</strong>：AI 视频应用接入成本直接打穿</li>
<li><strong>AI 使用环境检测</strong>：IP 风险值、浏览器环境、账号状态一键诊断，再也不用猜为什么 Claude 连不上</li>
<li><strong>零基础 AI 编程课 + 独立开发路线</strong>：从提示词到部署上线，从选题到 SEO 变现，一条龙</li>
</ul>
<hr/>
<h3>适合谁？</h3>
<blockquote>
<p>想低成本接入 AI 能力的独立开发者
正在做 AI 出海产品、想赚美金的程序员
被 Claude/Codex 封号、环境问题折磨的苦逼开发者
想系统学 AI 编程但不知道从哪下手的新人</p>
</blockquote>
<hr/>
<h3>站点地址</h3>
<blockquote>
<p><strong><a href="https://ikcode.co" rel="nofollow">https://ikcode.co</a></strong></p>
</blockquote>
<p>收藏就完了，别等用到的时候再找。</p>

	]]></content>
</entry><entry>
	<title>[grok] Grok Cli 会上传本地 git 仓库的完整提交历史</title>
	<link rel="alternate" type="text/html" href="https://www.v2ex.com/t/1226640#reply1" />
	<id>tag:www.v2ex.com,2026-07-11:/t/1226640</id>
	<published>2026-07-11T20:20:59Z</published>
	<updated>2026-07-12T00:04:09Z</updated>
	<author>
		<name>hbdh5</name>
		<uri>https://www.v2ex.com/member/hbdh5</uri>
	</author>
	<content type="html" xml:base="https://www.v2ex.com/" xml:lang="en"><![CDATA[
	我在本地已经复现此行为，官方 Grok Build CLI 在普通消费者登录和服务端默认设置下，即使收到“不要读取或打开任何文件”的提示，也会独立执行：<br /><br />```text<br />git -C &lt;repo&gt; -c pack.threads=1 bundle create &lt;temp-file&gt; HEAD<br />```<br /><br />随后会把 Git bundle 、仓库状态归档以及其他 session/trace 工件传给 `<a target="_blank" href="http://cli-chat-proxy.grok.com" rel="nofollow noopener">cli-chat-proxy.grok.com</a>`，日志把最终对象位置标记为 `gs://grok-code-session-traces/...`。<br /><br />详见： <a target="_blank" href="https://gist.github.com/cereblab/dc9a40bc26120f4540e4e09b75ffb547" rel="nofollow noopener">https://gist.github.com/cereblab/dc9a40bc26120f4540e4e09b75ffb547</a>
	]]></content>
</entry><entry>
	<title>[科技] 我的天， bilibili 是真不行了！</title>
	<link rel="alternate" type="text/html" href="https://www.v2ex.com/t/1226639#reply4" />
	<id>tag:www.v2ex.com,2026-07-11:/t/1226639</id>
	<published>2026-07-11T17:50:39Z</published>
	<updated>2026-07-11T21:35:52Z</updated>
	<author>
		<name>123128xyz</name>
		<uri>https://www.v2ex.com/member/123128xyz</uri>
	</author>
	<content type="html" xml:base="https://www.v2ex.com/" xml:lang="en"><![CDATA[
	<p>做了几个平台对比：</p>
<p>发了一个视频。</p>
<p>b 站首发定格在 40 播放量，1 点赞(机器人)</p>
<p>花了 3 小时做的，要说有这个需求的人，应该觉得质量是可以的</p>
<p>第二天发到小红书，5 小时 2000 播放，100 收藏。</p>
<p>其他平台，比如知乎，随便也有 7-8 条评论。</p>
<p>抖音，视频号还没有尝试。</p>
<p>有懂行的吗？当前流量是怎么样一个分布？ b 站没有做的必要了？抖音，视频号呢？</p>

	]]></content>
</entry><entry>
	<title>[问与答] 充电器炸了</title>
	<link rel="alternate" type="text/html" href="https://www.v2ex.com/t/1226638#reply4" />
	<id>tag:www.v2ex.com,2026-07-11:/t/1226638</id>
	<published>2026-07-11T17:42:12Z</published>
	<updated>2026-07-11T19:03:41Z</updated>
	<author>
		<name>Aixiaoa</name>
		<uri>https://www.v2ex.com/member/Aixiaoa</uri>
	</author>
	<content type="html" xml:base="https://www.v2ex.com/" xml:lang="en"><![CDATA[
	<p>Aohi 的 100w 充电器。 充着笔记本。 突然听到噼里啪啦的声音。</p>
<p>回头一看充电器冒火花还冒烟。 吓得我直接上手拽下来了。 幸好没触电。</p>
<p>算下来也用了好几年了。 不过炸了还是挺吓人的</p>
<p>平常用的时候就挺烫手。 感觉是因为温度太高了。里面电容啥的炸了</p>

	]]></content>
</entry><entry>
	<title>[问与答] codex 接入 Claude 模型</title>
	<link rel="alternate" type="text/html" href="https://www.v2ex.com/t/1226637#reply4" />
	<id>tag:www.v2ex.com,2026-07-11:/t/1226637</id>
	<published>2026-07-11T17:10:42Z</published>
	<updated>2026-07-11T18:29:23Z</updated>
	<author>
		<name>eyeix</name>
		<uri>https://www.v2ex.com/member/eyeix</uri>
	</author>
	<content type="html" xml:base="https://www.v2ex.com/" xml:lang="en"><![CDATA[
	<p>看到很多人都是用 Claude Code 接入 GPT 模型，那么有没有人试过用 Codex 接入 Cloud 的模型呢？</p>
<p>最近试用了一下 Codex 的桌面版，感觉挺丝滑的。</p>
<p>但是在开发项目方面，此前一直使用的 Claude code 用 Claude 系列的模型。</p>
<p>那么有没有可能使用 Codex 的桌面版，但通过 CC Switch 的方式接入 Claude 的模型呢？</p>
<p>这样有必要吗？🤔</p>
<p>之前到底是 Agent 工具的效果好，还是因为模型本身的效果好？</p>
<p>那用 Codex 接入 Claude 的模型，编码起来是不是也能达到之前用 Claude Code 的效果呢？</p>

	]]></content>
</entry><entry>
	<title>[问与答] 碰到 win11 的 bug 了吗，吓我一雷</title>
	<link rel="alternate" type="text/html" href="https://www.v2ex.com/t/1226636#reply3" />
	<id>tag:www.v2ex.com,2026-07-11:/t/1226636</id>
	<published>2026-07-11T16:50:57Z</published>
	<updated>2026-07-11T17:55:25Z</updated>
	<author>
		<name>kkcling</name>
		<uri>https://www.v2ex.com/member/kkcling</uri>
	</author>
	<content type="html" xml:base="https://www.v2ex.com/" xml:lang="en"><![CDATA[
	<p>昨天用着还好好的，今天开机后，突然变成这样了，像是恢复出厂设置了，吓我一大跳，赶紧看了看文件和应用什么的都还在，没有丢失，重启了一下电脑后，壁纸任务栏什么的又变成之前的样子了，有人遇到过类似的情况吗，或者知道是什么原因吗？ <img alt="" class="embedded_image" loading="lazy" referrerpolicy="no-referrer" rel="noreferrer" src="https://i.imgur.com/9t3zVwr.jpeg"/></p>

	]]></content>
</entry><entry>
	<title>[程序员] 有没有一起研究学习 NautilusTrader 的道友</title>
	<link rel="alternate" type="text/html" href="https://www.v2ex.com/t/1226635#reply0" />
	<id>tag:www.v2ex.com,2026-07-11:/t/1226635</id>
	<published>2026-07-11T16:28:51Z</published>
	<updated>2026-07-11T16:28:51Z</updated>
	<author>
		<name>amoselee</name>
		<uri>https://www.v2ex.com/member/amoselee</uri>
	</author>
	<content type="html" xml:base="https://www.v2ex.com/" xml:lang="en"><![CDATA[
	<p>喜欢交易、喜欢量化技术，最近发现一个非常不错的开源项目——NautilusTrader ，官方社区用中文的很少，有没有一起学习研究的朋友，欢迎来聊 wx a29uZ3NoYW5idXpoaWtl</p>

	]]></content>
</entry><entry>
	<title>[App Store] 求助:为什么 apple id 是美区,但 appstore 在国区</title>
	<link rel="alternate" type="text/html" href="https://www.v2ex.com/t/1226634#reply0" />
	<id>tag:www.v2ex.com,2026-07-11:/t/1226634</id>
	<published>2026-07-11T16:14:58Z</published>
	<updated>2026-07-01T16:13:58Z</updated>
	<author>
		<name>fdzxg</name>
		<uri>https://www.v2ex.com/member/fdzxg</uri>
	</author>
	<content type="html" xml:base="https://www.v2ex.com/" xml:lang="en"><![CDATA[
	<p>我用的 mac 登陆 appleid,账号是美区的,但是 appstore 好像在国区,我没有国区的 id,不知道怎么回事,重新登录账号,清缓存都试了也不行</p>

	]]></content>
</entry><entry>
	<title>[推广] 阿里云腾讯云华为云火山云 7 折 CDN4000U/P Ai 模型最低到 4 折 AWS/GCP/阿里腾讯华为火山国际 7 折</title>
	<link rel="alternate" type="text/html" href="https://www.v2ex.com/t/1226632#reply0" />
	<id>tag:www.v2ex.com,2026-07-11:/t/1226632</id>
	<published>2026-07-11T15:45:25Z</published>
	<updated>2026-07-11T15:45:25Z</updated>
	<author>
		<name>liuamangboy</name>
		<uri>https://www.v2ex.com/member/liuamangboy</uri>
	</author>
	<content type="html" xml:base="https://www.v2ex.com/" xml:lang="en"><![CDATA[
	<p>阿里云 7 折 腾讯云 7 折 华为云 7 折</p>
<p>阿里 CDN 4000U/P 腾讯 CDN 4000U/P 火山 CDN 4000U/P</p>
<p>谷歌云 GCP7 折 亚马逊云 AWS7 折</p>
<p>腾讯云国际 65 折 阿里云国际 7 折 华为云国际 7 折</p>
<p>AWS 全球节点 CDN 加速 1 折 3500 刀/P Ai 模型低至 4 折 火山国际 7 折</p>
<p>TG 详聊：@Tiangua7</p>

	]]></content>
</entry><entry>
	<title>[问与答] 想加薪的话是不是还得跳槽</title>
	<link rel="alternate" type="text/html" href="https://www.v2ex.com/t/1226631#reply7" />
	<id>tag:www.v2ex.com,2026-07-11:/t/1226631</id>
	<published>2026-07-11T15:44:26Z</published>
	<updated>2026-07-12T00:13:15Z</updated>
	<author>
		<name>qwqqwq</name>
		<uri>https://www.v2ex.com/member/qwqqwq</uri>
	</author>
	<content type="html" xml:base="https://www.v2ex.com/" xml:lang="en"><![CDATA[
	<p>上上周吧一个电气的同事给 hr 说想提高薪资被拒了然后过几天她就离职了，整个电气部的没人了，不知道是不是活太多或者流程太杂电气的干不过来了</p>
<p>然后电机和核心部件组的走了不少人</p>
<p>看来想提高薪资只能跳槽，给提高薪资是不太可能了</p>

	]]></content>
</entry><entry>
	<title>[程序员] codex 的审美赶 gemini 还是差一大截呀</title>
	<link rel="alternate" type="text/html" href="https://www.v2ex.com/t/1226630#reply9" />
	<id>tag:www.v2ex.com,2026-07-11:/t/1226630</id>
	<published>2026-07-11T15:42:31Z</published>
	<updated>2026-07-11T17:56:14Z</updated>
	<author>
		<name>yhc2073</name>
		<uri>https://www.v2ex.com/member/yhc2073</uri>
	</author>
	<content type="html" xml:base="https://www.v2ex.com/" xml:lang="en"><![CDATA[
	<p>"写一个网页版的贪吃蛇"  用这句相同的 prompt ，让 gemini 3.5 flash 和 codex 5.6 sol 同时写个贪吃蛇，效果差别很大呀。 都是开的 medium</p>
<p>能看出哪个是 gemini 写的吗</p>
<p><a href="https://daily-snake.pages.dev/games/orchard-battle/" rel="nofollow">https://daily-snake.pages.dev/games/orchard-battle/</a></p>
<p><a href="https://daily-snake.pages.dev/games/neon-snake/" rel="nofollow">https://daily-snake.pages.dev/games/neon-snake/</a>
（图片上传失败了，直接点开看吧。v 站这个图片上传真是一言难尽）</p>

	]]></content>
</entry><entry>
	<title>[投资] 广发纳指 F 类也限额到 100 了</title>
	<link rel="alternate" type="text/html" href="https://www.v2ex.com/t/1226629#reply3" />
	<id>tag:www.v2ex.com,2026-07-11:/t/1226629</id>
	<published>2026-07-11T15:21:53Z</published>
	<updated>2026-07-11T18:05:00Z</updated>
	<author>
		<name>KongLiu</name>
		<uri>https://www.v2ex.com/member/KongLiu</uri>
	</author>
	<content type="html" xml:base="https://www.v2ex.com/" xml:lang="en"><![CDATA[
	<p>还有什么能买的吗？场外限额，场内溢价吓人。真是两头堵了，长期定投能忽视场内的高溢价吗？</p>

	]]></content>
</entry><entry>
	<title>[Wunder] PG</title>
	<link rel="alternate" type="text/html" href="https://www.v2ex.com/t/1226628#reply0" />
	<id>tag:www.v2ex.com,2026-07-11:/t/1226628</id>
	<published>2026-07-11T15:15:29Z</published>
	<updated>2026-07-11T15:15:29Z</updated>
	<author>
		<name>Livid</name>
		<uri>https://www.v2ex.com/member/Livid</uri>
	</author>
	<content type="html" xml:base="https://www.v2ex.com/" xml:lang="en"><![CDATA[
	<p>我做了一个试验，把 Paul Graham 的所有 Essay 导入做成了一个 Persona：</p>
<p><a href="https://edge.v2ex.com/persona/pg" rel="nofollow">https://edge.v2ex.com/persona/pg</a></p>
<p>和他聊天大概是这样的效果：</p>
<p><a href="https://edge.v2ex.com/chat/94c61fed2f4b4f9b9d254219a2689769" rel="nofollow">https://edge.v2ex.com/chat/94c61fed2f4b4f9b9d254219a2689769</a></p>
<p>Viaweb 的创业故事：</p>
<p><a href="https://edge.v2ex.com/chat/b449c5bc45014af99c1cd32e38940e37" rel="nofollow">https://edge.v2ex.com/chat/b449c5bc45014af99c1cd32e38940e37</a></p>
<p>在每次生成的末尾，会附上原始出处。</p>

	]]></content>
</entry><entry>
	<title>[MacBook Pro] 求 PVE 下 intel BE200 驱动，或者解决方案</title>
	<link rel="alternate" type="text/html" href="https://www.v2ex.com/t/1226627#reply0" />
	<id>tag:www.v2ex.com,2026-07-11:/t/1226627</id>
	<published>2026-07-11T15:10:06Z</published>
	<updated>2026-07-11T15:09:06Z</updated>
	<author>
		<name>mikelirjc</name>
		<uri>https://www.v2ex.com/member/mikelirjc</uri>
	</author>
	<content type="html" xml:base="https://www.v2ex.com/" xml:lang="en"><![CDATA[
	<p>N5105 工控机软路由底层安装 PVE 虚拟化后 Intel(R) Wi-Fi7 BE200 320MHz 无法使用, Google 、Ai 提供的方法都试过还是不行！找不到 iwlwifi-gl-b0-fm-b0-* 驱动文件    </p>
<p>无线网卡是通过 Mini PCI 安装，在 PVE web 界面网卡里面无法显示、可以设置 PCI 直通给某一台虚拟机，但是该台虚拟机无法识别（无显示）无线网卡，具体信息如下：</p>
<pre><code>root@pve:~# dmesg | grep -i iwl
[    4.639705] iwlwifi 0000:02:00.0: enabling device (0000 -&gt; 0002)
[    4.647571] iwlwifi 0000:02:00.0: Detected crf-id 0x1001910, cnv-id 0x1001910 wfpm id 0x80000000
[    4.647597] iwlwifi 0000:02:00.0: PCI dev 272b/00f0, rev=0x471, rfid=0x112100
[    4.647613] iwlwifi 0000:02:00.0: Detected Intel(R) Wi-Fi 7 BE200 320MHz
[    4.647871] iwlwifi 0000:02:00.0: Direct firmware load for iwlwifi-gl-b0-fm-b0-c101.ucode failed with error -2
[    4.647910] iwlwifi 0000:02:00.0: Direct firmware load for iwlwifi-gl-b0-fm-b0-c100.ucode failed with error -2
[    4.647940] iwlwifi 0000:02:00.0: Direct firmware load for iwlwifi-gl-b0-fm-b0-102.ucode failed with error -2
[    4.647968] iwlwifi 0000:02:00.0: Direct firmware load for iwlwifi-gl-b0-fm-b0-101.ucode failed with error -2
[    4.647995] iwlwifi 0000:02:00.0: Direct firmware load for iwlwifi-gl-b0-fm-b0-100.ucode failed with error -2
[    4.647999] iwlwifi 0000:02:00.0: no suitable firmware found!
[    4.648000] iwlwifi 0000:02:00.0: minimum version required: iwlwifi-gl-b0-fm-b0-100
[    4.648003] iwlwifi 0000:02:00.0: maximum version supported: iwlwifi-gl-b0-fm-b0-c101
[    4.648005] iwlwifi 0000:02:00.0: check git://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git
root@pve:~# lspci -nnk | grep -A5 -i network
02:00.0 Network controller [0280]: Intel Corporation Wi-Fi 7(802.11be) AX1775*/AX1790*/BE20*/BE401/BE1750* 2x2 [8086:272b] (rev 1a)
        Subsystem: Intel Corporation BE200 320MHz [Gale Peak] [8086:00f0]
        Kernel modules: iwlwifi
03:00.0 Ethernet controller [0200]: Intel Corporation Ethernet Controller I225-V [8086:15f3] (rev 03)
        Subsystem: Intel Corporation Device [8086:0000]
        Kernel driver in use: igc
root@pve:~# dmesg | grep firmware
[    3.508531] systemd[1]: systemd-hibernate-clear.service - Clear Stale Hibernate Storage Info skipped, unmet condition check ConditionPathExists=/sys/firmware/efi/efivars/HibernateLocation-8cf2644b-4b0b-428f-9387-6d876050dc67
[    4.521252] faux_driver regulatory: Direct firmware load for regulatory.db failed with error -2
[    4.647871] iwlwifi 0000:02:00.0: Direct firmware load for iwlwifi-gl-b0-fm-b0-c101.ucode failed with error -2
[    4.647910] iwlwifi 0000:02:00.0: Direct firmware load for iwlwifi-gl-b0-fm-b0-c100.ucode failed with error -2
[    4.647940] iwlwifi 0000:02:00.0: Direct firmware load for iwlwifi-gl-b0-fm-b0-102.ucode failed with error -2
[    4.647968] iwlwifi 0000:02:00.0: Direct firmware load for iwlwifi-gl-b0-fm-b0-101.ucode failed with error -2
[    4.647995] iwlwifi 0000:02:00.0: Direct firmware load for iwlwifi-gl-b0-fm-b0-100.ucode failed with error -2
[    4.647999] iwlwifi 0000:02:00.0: no suitable firmware found!
[    4.648005] iwlwifi 0000:02:00.0: check git://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git
[    4.687639] Bluetooth: hci0: Minimum firmware build 1 week 10 2014
[    4.689647] Bluetooth: hci0: Failed to load Intel firmware file intel/ibt-0191-0191.sfi (-2)
[    5.531264] i915 0000:00:02.0: [drm] Finished loading DMC firmware i915/icl_dmc_ver1_09.bin (v1.9)

</code></pre>
<p>请问如何解决？最差的结果是直通给虚拟机能用，最好的结果是可以设置无线网卡为虚拟网桥</p>

	]]></content>
</entry><entry>
	<title>[AI Agent 智能体] 9 年没来 V2EX 了还是熟悉的味道</title>
	<link rel="alternate" type="text/html" href="https://www.v2ex.com/t/1226626#reply0" />
	<id>tag:www.v2ex.com,2026-07-11:/t/1226626</id>
	<published>2026-07-11T15:04:27Z</published>
	<updated>2026-07-11T09:04:27Z</updated>
	<author>
		<name>cabinw</name>
		<uri>https://www.v2ex.com/member/cabinw</uri>
	</author>
	<content type="html" xml:base="https://www.v2ex.com/" xml:lang="en"><![CDATA[
	<p>这 10 来年一直在做游戏研发和发行方面的工作，技术都不咋关注了
最近因为 AI 又重新开始捣鼓这些东西了，每天都有新东西要学，这感觉真好！</p>
<p>BTW 寻找 AI 游戏开发的同志，带带我</p>

	]]></content>
</entry><entry>
	<title>[程序员] Claude 突然的，就来了！瑟瑟发抖中。。。。</title>
	<link rel="alternate" type="text/html" href="https://www.v2ex.com/t/1226625#reply2" />
	<id>tag:www.v2ex.com,2026-07-11:/t/1226625</id>
	<published>2026-07-11T14:57:27Z</published>
	<updated>2026-07-11T15:40:49Z</updated>
	<author>
		<name>Jensond</name>
		<uri>https://www.v2ex.com/member/Jensond</uri>
	</author>
	<content type="html" xml:base="https://www.v2ex.com/" xml:lang="en"><![CDATA[
	<p><img alt="1783779328988.png" class="embedded_image" loading="lazy" referrerpolicy="no-referrer" rel="noreferrer" src="https://picui.ogmua.cn/s1/2026/07/11/6a525010570ca.webp"/></p>
<p>API Error: Unable to connect to API: SSL certificate hostname mismatch</p>
<p>cli 正常，desktop 端提示这个，大家又遇到这个情况的吗？已经被封好几个号了，无缘由的！</p>

	]]></content>
</entry><entry>
	<title>[OpenAI] 做了一个 ai 模型降智监测页面</title>
	<link rel="alternate" type="text/html" href="https://www.v2ex.com/t/1226624#reply1" />
	<id>tag:www.v2ex.com,2026-07-11:/t/1226624</id>
	<published>2026-07-11T14:52:38Z</published>
	<updated>2026-07-11T06:51:38Z</updated>
	<author>
		<name>utcplus</name>
		<uri>https://www.v2ex.com/member/utcplus</uri>
	</author>
	<content type="html" xml:base="https://www.v2ex.com/" xml:lang="en"><![CDATA[
	<p>最近做了一个大模型降智监测页面：</p>
<p><a href="https://www.okkmax.com/tools/iq" rel="nofollow">https://www.okkmax.com/tools/iq</a></p>
<p>可以看 Claude 、GPT 、Gemini 、DeepSeek 、Kimi 等模型最近的能力变化，包括当前智商、历史趋势，以及推理、编程、工具调用和稳定性等分项表现。</p>
<p>平时经常看到有人说 Claude 或 Codex 最近降智了，但单靠个人体感不太容易判断。</p>
<p>这个页面主要就是把模型近期的数据变化整理出来，方便对比它现在的表现和之前是否有明显差距。</p>
<p>功能刚上线，欢迎大家体验和提建议。</p>

	]]></content>
</entry><entry>
	<title>[分享创造] 用 codex 浏览网页顺便截图来自动化生成图文文档</title>
	<link rel="alternate" type="text/html" href="https://www.v2ex.com/t/1226623#reply0" />
	<id>tag:www.v2ex.com,2026-07-11:/t/1226623</id>
	<published>2026-07-11T14:47:56Z</published>
	<updated>2026-07-11T14:47:56Z</updated>
	<author>
		<name>joeeey9303</name>
		<uri>https://www.v2ex.com/member/joeeey9303</uri>
	</author>
	<content type="html" xml:base="https://www.v2ex.com/" xml:lang="en"><![CDATA[
	<p>工作中经常需要给其他同事(技术 or 非技术)写操作文档，比如 secureFrame SOC2 审计要求每个同事在 Mac 上装一个设备检查助手。流程听起来不复杂：登录员工页面、下载安装包、装好以后去系统设置开权限、等它同步，最后确认页面显示成功。</p>
<p>以前的做法，通常是写个 notion 文档纯文字+ link, 但看文档的人还是得自己打开网页、找按钮、对照设置，然后猜我说的“完成”到底长什么样。</p>
<p>然后我发现完全可以让 codex 在浏览网页的时候顺便做个截图，然后也自动整合到文档，这样就自动有了一份“图文”文档</p>
<p>它解决的其实就是一个很具体的问题：AI 根据你指定或审核过的官方页面整理完资料以后，不要只把答案写成文字。它还会顺手打开相关页面，只截真正要看的按钮、开关和成功状态，再排成一份可以直接发给别人的图文说明。</p>
<p>下面例子是完全合成演示,</p>
<p>第一步，AI 走到员工下载页面。它不会扔给读者一张塞满无关内容的超长截图，而是保留足够的页面背景，再把真正要点的 <code>Download for macOS</code> 按钮框出来。</p>
<p><img alt="合成演示：AI 只保留员工真正需要点击的下载区域" class="embedded_image" loading="lazy" referrerpolicy="no-referrer" rel="noreferrer" src="https://joeeeeey.github.io/visual-brief/assets/05-employee-portal-download.webp"/></p>
<p>最后把整套流程排成一页很简单的指南：一句话说清楚要做什么，图片紧跟在这句话下面；做完一步，再看下一步。</p>
<p><img alt="合成演示：AI 生成的三步员工图文指南" class="embedded_image" loading="lazy" referrerpolicy="no-referrer" rel="noreferrer" src="https://joeeeeey.github.io/visual-brief/assets/06-employee-guide-preview.webp"/></p>
<p><img alt="合成演示：最后可见的成功状态" class="embedded_image" loading="lazy" referrerpolicy="no-referrer" rel="noreferrer" src="https://joeeeeey.github.io/visual-brief/assets/07-device-check-complete.webp"/></p>
<p>真实使用时，每一步下面还会保留原始帮助页面的链接。想快速完成的人直接看图；想确认细节的人，可以点回原网页自己核对。</p>
<p>同样也可以用在 Slack 里。比如有人问“为什么这个方案现在不能用”，之前我一般 deepsearch 后只发 summary 和 evidence link, 现在可以让 codex 做 deepsearch 后，还会把官方网站上最关键的那句话截出来一起 slack 发过去(目前很少手打 slack 信心)。</p>
<p>skill repo：<a href="https://github.com/joeeeeey/visual-brief" rel="nofollow">https://github.com/joeeeeey/visual-brief</a></p>

	]]></content>
</entry><entry>
	<title>[OpenAI] codex 是不是一直在重置？还是我的显示的问题？</title>
	<link rel="alternate" type="text/html" href="https://www.v2ex.com/t/1226622#reply10" />
	<id>tag:www.v2ex.com,2026-07-11:/t/1226622</id>
	<published>2026-07-11T14:36:42Z</published>
	<updated>2026-07-11T16:02:51Z</updated>
	<author>
		<name>canyue7897</name>
		<uri>https://www.v2ex.com/member/canyue7897</uri>
	</author>
	<content type="html" xml:base="https://www.v2ex.com/" xml:lang="en"><![CDATA[
	<p>莫名其妙就 100%了
还是 bug ？</p>

	]]></content>
</entry><entry>
	<title>[程序员] 分享一个 Codex 写简历, Markdown 转 PDF 神级工作流</title>
	<link rel="alternate" type="text/html" href="https://www.v2ex.com/t/1226621#reply3" />
	<id>tag:www.v2ex.com,2026-07-11:/t/1226621</id>
	<published>2026-07-11T14:27:00Z</published>
	<updated>2026-07-11T18:23:01Z</updated>
	<author>
		<name>hansonl</name>
		<uri>https://www.v2ex.com/member/hansonl</uri>
	</author>
	<content type="html" xml:base="https://www.v2ex.com/" xml:lang="en"><![CDATA[
	<ol>
<li>写一个简历大纲 Markdown</li>
<li>Codex prompt: 根据大纲完善简历</li>
<li>Codex prompt: 找到简历里面的问题, 可以优化的地方, 输出建议, 和原因, 表格形式</li>
<li>根据结果继续完善 Markdown, 直到满意</li>
<li>使用 markdown-to-resume 工具生成 PDF, 智能一页, 完美的 GitHub 样式</li>
</ol>
<p><img alt="" class="embedded_image" loading="lazy" referrerpolicy="no-referrer" rel="noreferrer" src="https://cdn.jarvans.com/blog/202320260711221750452.png"/></p>
<p>这个工具我开源了, 欢迎品鉴, 给建议</p>
<p><a href="https://jarvanstack.github.io/markdown-to-resume/" rel="nofollow">https://jarvanstack.github.io/markdown-to-resume/</a></p>

	]]></content>
</entry><entry>
	<title>[问与答] Arc 浏览器你们还在用吗？</title>
	<link rel="alternate" type="text/html" href="https://www.v2ex.com/t/1226620#reply2" />
	<id>tag:www.v2ex.com,2026-07-11:/t/1226620</id>
	<published>2026-07-11T14:22:47Z</published>
	<updated>2026-07-11T16:29:28Z</updated>
	<author>
		<name>1874w</name>
		<uri>https://www.v2ex.com/member/1874w</uri>
	</author>
	<content type="html" xml:base="https://www.v2ex.com/" xml:lang="en"><![CDATA[
	我一直很喜欢 Arc 浏览器的侧边栏，管理书签方便太多了。<br /><br />很久之前听到 Arc 浏览器进入维护阶段还挺遗憾的。<br /><br />你们有更好用的浏览器推荐吗？
	]]></content>
</entry><entry>
	<title>[分享发现] 家里有旗舰电脑、旗舰服务器以及昂贵的多盘存储设备的，一定要配置 UPS</title>
	<link rel="alternate" type="text/html" href="https://www.v2ex.com/t/1226619#reply0" />
	<id>tag:www.v2ex.com,2026-07-11:/t/1226619</id>
	<published>2026-07-11T14:20:31Z</published>
	<updated>2026-07-11T06:20:31Z</updated>
	<author>
		<name>laminux29</name>
		<uri>https://www.v2ex.com/member/laminux29</uri>
	</author>
	<content type="html" xml:base="https://www.v2ex.com/" xml:lang="en"><![CDATA[
	配置 UPS 倒不是专门为了针对长时间停电情况，而是用来应对电力浪涌或小于 1 秒的瞬间停电。<br /><br />自从在家里配置了几台 UPS ，它能报告浪涌情况，我才发现小区的电力系统有多糟糕，难怪经常听说很多人的电脑或硬盘容量损坏。
	]]></content>
</entry><entry>
	<title>[浏览器] Vivaldi 的地址栏引流也太狠了</title>
	<link rel="alternate" type="text/html" href="https://www.v2ex.com/t/1226618#reply5" />
	<id>tag:www.v2ex.com,2026-07-11:/t/1226618</id>
	<published>2026-07-11T14:18:45Z</published>
	<updated>2026-07-11T17:39:49Z</updated>
	<author>
		<name>badegglei</name>
		<uri>https://www.v2ex.com/member/badegglei</uri>
	</author>
	<content type="html" xml:base="https://www.v2ex.com/" xml:lang="en"><![CDATA[
	我输入 e 开头就是 ebay ，m 就是 macys 。<br />说好的“没有用户画像，没有数据挖掘，没有废话。具有内置的广告和跟踪器拦截器，以及同步数据的端到端加密。”<br />然后你给我导流到你的推广商那里呗。<br />虽然很多功能很好用，我滚回 firefox 了。
	]]></content>
</entry><entry>
	<title>[分享创造] claude fable5 生成的游戏效果</title>
	<link rel="alternate" type="text/html" href="https://www.v2ex.com/t/1226617#reply0" />
	<id>tag:www.v2ex.com,2026-07-11:/t/1226617</id>
	<published>2026-07-11T14:18:24Z</published>
	<updated>2026-07-11T14:17:24Z</updated>
	<author>
		<name>yidaimaxia</name>
		<uri>https://www.v2ex.com/member/yidaimaxia</uri>
	</author>
	<content type="html" xml:base="https://www.v2ex.com/" xml:lang="en"><![CDATA[
	<p>最近 claude fable5 相当聒噪，我用这个模型一句话生成了 20 款经典的 H5 网页小游戏</p>
<p>为了方便大家试玩和研究，我把它们集成到了自己写的轻量级工具站里，并且将每款游戏生成所用到的完整英文 Prompt 提示词完全公开在了游戏详情页，可以使用这个 prompt 在其他模型跑跑看是啥效果。</p>
<p>👉 小游戏在线试玩与 Prompt 传送门： <a href="https://www.pokitx.com/zh/html-games" rel="nofollow">https://www.pokitx.com/zh/html-games</a></p>
<p>🎮 部分小游戏复刻 showcase：
森林冰火人 (Forest Ice &amp; Fire)</p>
<p>复刻程度：完美还原了双人键盘控制、冰火物理陷阱的碰撞体积判定。
Prompt：我们在详情页附带了引导 AI 编写双人物理按键监听和关卡碰撞图纸的核心 Prompt 。
试玩 &amp; 提示词： <a href="https://www.pokitx.com/zh/html-games/senlinbinghuoren" rel="nofollow">https://www.pokitx.com/zh/html-games/senlinbinghuoren</a>
3D 坦克大战 (Tank Battle 3D)</p>
<p>技术要点：利用 H5 Three.js 库，由 AI 一步步生成简单的 3D 渲染器、视角绑定、弹道抛物线以及障碍物碰撞检测。
试玩 &amp; 提示词： <a href="https://www.pokitx.com/zh/html-games/tank-battle-3d" rel="nofollow">https://www.pokitx.com/zh/html-games/tank-battle-3d</a>
小鳄鱼爱洗澡 / 物理引水解谜 (Croc Bath)</p>
<p>技术要点：利用简易的 canvas 粒子物理碰撞系统来模拟水流，实现了经典的物理挖掘和水流汇聚解谜。
试玩 &amp; 提示词： <a href="https://www.pokitx.com/zh/html-games/croc-bath" rel="nofollow">https://www.pokitx.com/zh/html-games/croc-bath</a>
迷你 MOBA (Mini Moba)</p>
<p>技术要点：由 AI 编写的精简寻路算法和技能释放指示器，包含小地图和多技能冷却机制。
试玩 &amp; 提示词： <a href="https://www.pokitx.com/zh/html-games/mini-moba" rel="nofollow">https://www.pokitx.com/zh/html-games/mini-moba</a>
🛠️ 项目多插一句：顺手写了个 100% 离线的极客工具箱
除了这些 AI 游戏之外，由于日常开发中频繁需要对 JSON 进行格式化、校验 JWT 、转 Base64 、合并 PDF 等，但我比较反感每次都把数据上传到某些来路不明的工具站上，非常不安全。</p>
<p>所以顺便做了一个口袋工具箱 (PocketKit)，共收录了 114 款高频极客工具：</p>
<p>核心理念：100% 浏览器本地运行（ Browser-Local ）。使用 Web API 和 WASM 本地处理，不向后台服务器上传任何用户敏感文件或输入，断网也完全可用。
极速收录与适配：为了迎合搜索引擎，全站使用 React 配合打包预渲染（ Prerender SSR Fallback ），在无 JS 环境下也拥有极好的 SEO 文本支持。
👉 工具箱传送门： <a href="https://www.pokitx.com/zh/tools" rel="nofollow">https://www.pokitx.com/zh/tools</a>
💬 讨论与技术交流：
AI 在复杂工程、三维渲染和 Canvas 物理引擎上的代码生成上限究竟在哪里？在手搓这 20 款游戏的过程中，我发现复杂的碰撞树和状态机很容易让 AI 发生逻辑混乱，如何通过精细拆分 Prompt 引导 AI 进行模块化编写是目前的核心痛点。</p>
<p>欢迎各位大佬点进去试玩测试，并在游戏详情页的评论区或者 V2EX 贴里留下您的宝贵建议。如果对大家有帮助，欢迎加入书签支持一下！再次感谢！</p>

	]]></content>
</entry><entry>
	<title>[5G] 据说“中国移动 5G 网络覆盖图”对外公众展示下线了？</title>
	<link rel="alternate" type="text/html" href="https://www.v2ex.com/t/1226615#reply0" />
	<id>tag:www.v2ex.com,2026-07-11:/t/1226615</id>
	<published>2026-07-11T14:06:38Z</published>
	<updated>2026-07-10T22:06:38Z</updated>
	<author>
		<name>bclerdx</name>
		<uri>https://www.v2ex.com/member/bclerdx</uri>
	</author>
	<content type="html" xml:base="https://www.v2ex.com/" xml:lang="en"><![CDATA[
	北京移动说因 5G 网络覆盖数据已不做更新，中国移动 App 上 5G 网络覆盖查询节点预计 2025.05.09 下线。
	]]></content>
</entry><entry>
	<title>[宽带症候群] 无代理访问 Youtube x.com、BlueSky.app 是什么原理？</title>
	<link rel="alternate" type="text/html" href="https://www.v2ex.com/t/1226614#reply3" />
	<id>tag:www.v2ex.com,2026-07-11:/t/1226614</id>
	<published>2026-07-11T14:02:12Z</published>
	<updated>2026-07-11T19:24:23Z</updated>
	<author>
		<name>Cert</name>
		<uri>https://www.v2ex.com/member/Cert</uri>
	</author>
	<content type="html" xml:base="https://www.v2ex.com/" xml:lang="en"><![CDATA[
	<a target="_blank" href="https://www.bilibili.com/video/BV1EBMn6jEt8" rel="nofollow noopener">https://www.bilibili.com/video/BV1EBMn6jEt8</a><br /><br />按照这个教学视频，我实测了一下，<a target="_blank" href="http://X.com" rel="nofollow noopener">X.com</a> 和 <a target="_blank" href="http://BlueSky.app" rel="nofollow noopener">BlueSky.app</a> 虽然用了 Cloudflare 的 CDN ，但是并没有开启 EncryptionClient Hello ，也就是 ECH 功能。所以无法躲过 GFW 的 DPI 深度包检测，提取 SNI 。<br /><br />而 YouTube 和 <a target="_blank" href="http://google.com" rel="nofollow noopener">google.com</a> 是两个网站，就完全没用 Cloudflare 的 CDN 。<br /><br />所以我不太明白这个视频博主，是怎么做到无代理用原生中国 IP ，访问这些网站的呢？
	]]></content>
</entry><entry>
	<title>[Google] 刚刚收到谷歌的邮件要改成美国纽约地区了</title>
	<link rel="alternate" type="text/html" href="https://www.v2ex.com/t/1226613#reply0" />
	<id>tag:www.v2ex.com,2026-07-11:/t/1226613</id>
	<published>2026-07-11T13:53:36Z</published>
	<updated>2026-07-11T13:52:36Z</updated>
	<author>
		<name>Vesc</name>
		<uri>https://www.v2ex.com/member/Vesc</uri>
	</author>
	<content type="html" xml:base="https://www.v2ex.com/" xml:lang="en"><![CDATA[
	一直用的香港节点，当前账号地区也是香港，为啥突然变成了纽约了，可以申请 gv 号了吗？
	]]></content>
</entry><entry>
	<title>[分享创造] [开源] Balanced Portfolio 多资产风险平价全天候策略回测系统</title>
	<link rel="alternate" type="text/html" href="https://www.v2ex.com/t/1226612#reply0" />
	<id>tag:www.v2ex.com,2026-07-11:/t/1226612</id>
	<published>2026-07-11T13:49:42Z</published>
	<updated>2026-07-11T13:49:42Z</updated>
	<author>
		<name>Memoriae</name>
		<uri>https://www.v2ex.com/member/Memoriae</uri>
	</author>
	<content type="html" xml:base="https://www.v2ex.com/" xml:lang="en"><![CDATA[
	<p>第一次在 v 站介绍推荐自己的产品，看 v 站上经常有关于指数投资、投资组合优化相关的帖子，但大部分人都没有接受过专业的金融教育，都是基于各种自媒体或身边人讲的消息和现象去投资，非常不靠谱。</p>
<p>投资组合应该是多元的、有效分散风险、能再平衡控制风险的，且能通过过去至少 2-3 年的数据回测，才能把真金白银投进去的。</p>
<p>前两年比较火的策略是多资产 CTA ，散户参与私募的门槛比较高，但是笔者发现基于简单的历史波动率和最大化夏普等优化方法去做指数 ETF 同样可以获取到比传统 60%债券+40%股票组合要更好的收益。</p>
<p>笔者就根据自己的业务经验做了一个基于桥水基金风险平价理论的投资组合管理和回撤工具，并开源出来了：</p>
<p><strong>Balanced Portfolio 是基于桥水基金风险平价理论的投资组合管理与回测系统，包括中金所股指期货描述性统计和场外期权自动敲入敲出产品(autocallables)结构化产品定价功能</strong>，供广大投资者参考和交流学习。</p>
<p>项目主页：<a href="https://github.com/hxlog/balanced-portfolio" rel="nofollow">github.com/hxlog/balanced-portfolio</a></p>
<p>关于风险平价理论和产品的说明（长文）： <a href="https://prologue.dev/blog/my-first-full-stack-development-project-balanced-portfolio-a-global-multi-asset-risk-parity-backtesting-system" rel="nofollow">https://prologue.dev/blog/my-first-full-stack-development-project-balanced-portfolio-a-global-multi-asset-risk-parity-backtesting-system</a></p>
<p>Demo： <a href="https://xushilu.com" rel="nofollow">https://xushilu.com</a> </p>
<p>测试账户和密码都是 test1</p>
<h2>主要功能</h2>
<ul>
<li><strong>风险平价组合</strong>：按 GDP 增长/宏观通胀二分法划分四象限，将四种不同经济场景里分配对应经济场景占优的投资品种，优化算法包括最大化夏普/Sortino ，支持象限内最大优化指标、象限间等风险贡献，以及全资产风险平价、按优化指标分配风险预算共四种方法。结果包含优化后的投资品权重、净值、调仓、风险指标、相关性和绩效归因。</li>
<li><strong>中金所股指期货数据看板</strong>：跟踪 IF 、IH 、IC 、IM 及对应指数，展示同一交易日口径的收盘快照、期限结构、历史年化升贴水和统计分位。</li>
<li><strong>场外期权自动敲入敲出(autocallables)结构化产品定价</strong>：覆盖雪球、凤凰、气囊和障碍产品，支持 Monte Carlo 、BSM 求解、积分法定价，模型求解输出公允价值、PV 值、PoL 、Delta/Gamma/Vega/Theta/Rho 与存续路径状态。</li>
<li><strong>机构级别的数据可视化</strong>：结合了机构常用的金融工程求解方法，打造一个开箱即用、可交互的、可视化的分析与回测工具。</li>
</ul>
<h2>功能展示</h2>
<h3>风险平价回测系统</h3>
<p><img alt="风险平价回测结果" class="embedded_image" loading="lazy" referrerpolicy="no-referrer" rel="noreferrer" src="https://raw.githubusercontent.com/hxlog/balanced-portfolio/refs/heads/main/docs/balanced_portfolio_dashboard_example.avif"/></p>
<p>如果对你投资有帮助，麻烦点个 star 和 fork 。如果产品有任何算法、数据、功能问题，欢迎留言，立刻改进：）</p>

	]]></content>
</entry><entry>
	<title>[程序员] 魔兽争霸 3 网页版</title>
	<link rel="alternate" type="text/html" href="https://www.v2ex.com/t/1226611#reply21" />
	<id>tag:www.v2ex.com,2026-07-11:/t/1226611</id>
	<published>2026-07-11T13:36:34Z</published>
	<updated>2026-07-11T21:23:37Z</updated>
	<author>
		<name>professionaler</name>
		<uri>https://www.v2ex.com/member/professionaler</uri>
	</author>
	<content type="html" xml:base="https://www.v2ex.com/" xml:lang="en"><![CDATA[
	完全在浏览器运行的魔兽争霸 3 ，魔改 github v86 实现了 opengl 转 webgl ，感兴趣的老哥可以试试：<br /><br /><br /><a target="_blank" href="https://retrogaming.dpdns.org/" rel="nofollow noopener">https://retrogaming.dpdns.org/</a>
	]]></content>
</entry><entry>
	<title>[烧饼博客] 做了个博客大联盟，独立博客聚合平台，欢迎加入</title>
	<link rel="alternate" type="text/html" href="https://www.v2ex.com/t/1226610#reply13" />
	<id>tag:www.v2ex.com,2026-07-11:/t/1226610</id>
	<published>2026-07-11T13:30:22Z</published>
	<updated>2026-07-11T21:03:08Z</updated>
	<author>
		<name>Showfom</name>
		<uri>https://www.v2ex.com/member/Showfom</uri>
	</author>
	<content type="html" xml:base="https://www.v2ex.com/" xml:lang="en"><![CDATA[
	<p><a href="https://bo.ke/" rel="nofollow">https://bo.ke/</a></p>
<p>加入规则</p>
<p><a href="https://bo.ke/terms/" rel="nofollow">https://bo.ke/terms/</a></p>
<p>介绍</p>
<p><a href="https://u.sb/boke/" rel="nofollow">https://u.sb/boke/</a></p>

	]]></content>
</entry><entry>
	<title>[北京] 有没有从北京回沈阳的程序员？北漂 8 年了，打算回老家了</title>
	<link rel="alternate" type="text/html" href="https://www.v2ex.com/t/1226609#reply3" />
	<id>tag:www.v2ex.com,2026-07-11:/t/1226609</id>
	<published>2026-07-11T13:26:54Z</published>
	<updated>2026-07-11T14:51:23Z</updated>
	<author>
		<name>squirrel7105</name>
		<uri>https://www.v2ex.com/member/squirrel7105</uri>
	</author>
	<content type="html" xml:base="https://www.v2ex.com/" xml:lang="en"><![CDATA[
	<p>在北京漂了 8 年，其实感觉也还好，但是最近越来越想回到家乡了，不知道沈阳工作会不会好找，沈阳有房子，其实人需要勇敢的迈出去对吗？</p>

	]]></content>
</entry><entry>
	<title>[Apple] [预告] Reset! 各种 AI Agent 额度管理/自动预热重置 App (macOS Only)</title>
	<link rel="alternate" type="text/html" href="https://www.v2ex.com/t/1226608#reply3" />
	<id>tag:www.v2ex.com,2026-07-11:/t/1226608</id>
	<published>2026-07-11T13:23:30Z</published>
	<updated>2026-07-11T15:22:30Z</updated>
	<author>
		<name>Lutto</name>
		<uri>https://www.v2ex.com/member/Lutto</uri>
	</author>
	<content type="html" xml:base="https://www.v2ex.com/" xml:lang="en"><![CDATA[
	<h1>做了一个 macOS 菜单栏 AI Agent 额度管理工具：RESET! 🔄</h1>
<p>最近高频使用 Codex 、Claude Code 、Cursor 、Antigravity 进行开发，遇到了一个比较真实的问题：</p>
<p><strong>AI Agent 越来越强，但是额度管理越来越混乱。</strong></p>
<p>不同工具都有：</p>
<ul>
<li>5 小时窗口</li>
<li>周额度</li>
<li>模型额度池</li>
<li>不同恢复机制</li>
</ul>
<p>经常出现：</p>
<blockquote>
<p>刚进入状态，额度没了。</p>
</blockquote>
<p>或者：</p>
<blockquote>
<p>准备开始工作，却发现还要等待窗口恢复。</p>
</blockquote>
<p>所以自己做了一个 macOS 菜单栏 App：</p>
<h2>RESET! 🔄</h2>
<div>
<img class="embedded_image" loading="lazy" referrerpolicy="no-referrer" rel="noreferrer" src="https://backup.fukit.cn/autoupload/fr/p36S4SrgF5ADMPhmILGP8LFzyBMZwFKGV1VljLgEF5myl5f0KlZfm6UsKj-HyTuv/20260711/PmoA/1032X1542/%E5%9B%BE%E5%83%8F7-11-26_20.48.jpeg"/>
</div>
<p>它的目标：</p>
<blockquote>
<p>让 AI 在你需要的时候，已经准备好。</p>
</blockquote>
<hr/>
<h1>✨ 当前功能</h1>
<h2>1. AI Agent 额度实时查看</h2>
<p>支持：</p>
<ul>
<li>ChatGPT / Codex</li>
<li>Claude Code</li>
<li>Antigravity</li>
<li>Cursor</li>
</ul>
<p>查看：</p>
<ul>
<li>当前剩余额度</li>
<li>额度池状态</li>
<li>5 小时窗口</li>
<li>下一次恢复时间</li>
</ul>
<p>不用再：</p>
<p>打开多个客户端 → 找设置 → 看剩余次数 → 计算恢复时间。</p>
<hr/>
<h1>🔔 2. 额度恢复提醒</h1>
<p>额度恢复后：</p>
<ul>
<li>macOS Notification</li>
<li>✈️ 通知</li>
</ul>
<p>提醒继续工作。</p>
<div>
<img class="embedded_image" loading="lazy" referrerpolicy="no-referrer" rel="noreferrer" src="https://backup.fukit.cn/autoupload/fr/p36S4SrgF5ADMPhmILGP8LFzyBMZwFKGV1VljLgEF5myl5f0KlZfm6UsKj-HyTuv/20260711/Ksk3/1320X2868/IMG_4160.PNG/webp"/>
</div>
<hr/>
<h1>🧠 3. 智能预热模式（开发中）</h1>
<p>这是目前我认为最有价值的功能。</p>
<p>最开始的想法：</p>
<blockquote>
<p>每天固定时间提前发送一次请求，让窗口提前开始。</p>
</blockquote>
<p>但实际发现并不合理：</p>
<ul>
<li>今天可能不上班</li>
<li>当前窗口可能已经启动</li>
<li>周额度可能不足</li>
<li>半夜执行没有意义</li>
<li>每个人 AI 使用习惯不同</li>
</ul>
<p>所以重新设计成：</p>
<p><strong>AI Agent 使用调度系统。</strong></p>
<hr/>
<h2>它会先判断：</h2>
<p>今天是否值得预热。</p>
<p>只有满足：</p>
<p>✅ 周额度仍然可用</p>
<p>✅ 当前窗口状态适合</p>
<p>✅ 预测未来几小时会使用该 Agent</p>
<p>✅ 预热收益高于额度成本</p>
<p>✅ 设备在线且有人使用</p>
<p>才执行。</p>
<p>同时根据剩余额度动态调整：</p>
<p>30% 正常预热
10% - 30% 高置信度才预热
&lt; 10%  默认不预热
0%  禁止预热</p>
<div>
<img class="embedded_image" loading="lazy" referrerpolicy="no-referrer" rel="noreferrer" src="https://backup.fukit.cn/autoupload/fr/p36S4SrgF5ADMPhmILGP8LFzyBMZwFKGV1VljLgEF5myl5f0KlZfm6UsKj-HyTuv/20260711/P3yU/1344X1728/%E5%9B%BE%E5%83%8F7-11-26_20.50.png/webp"/>
</div>
<hr/>
<h1>📊 4. 学习个人使用习惯（本地）</h1>
<p>不会记录：</p>
<ul>
<li>Prompt</li>
<li>项目名称</li>
<li>代码内容</li>
<li>对话内容</li>
</ul>
<p>只统计：</p>
<ul>
<li>通常什么时候开始使用 Agent</li>
<li>每次连续使用多久</li>
<li>哪个 Agent 使用频率最高</li>
<li>工作日 / 周末差异</li>
</ul>
<p>例如：</p>
<p>最近 10 个工作日：
09:45 左右开始使用 Agent
上午：
ChatGPT / Codex 较多
下午：
Antigravity 较多
平均连续使用：
95 分钟</p>
<p>然后生成：</p>
<p>建议 07:08 预热 ChatGPT
置信度：86%
依据：
最近 10 个工作日通常 10:00 开始
当前窗口尚未启动
周额度剩余 72%</p>
<p>低置信度不会自动执行，而是询问。</p>
<p>可以通过 Telegram：</p>
<p>执行/跳过</p>
<hr/>
<h1>🎯 5. 精确管理额度池</h1>
<p>不是简单判断：</p>
<p>Antigravity</p>
<p>而是：</p>
<p>Antigravity · Gemini models
Antigravity · Claude/ChatGPT models
ChatGPT · 5 小时窗口
Claude Code · 5 小时窗口</p>
<p>因为实际使用中：</p>
<p>不同模型可能属于不同额度池。</p>
<p>只有精确到额度池，才能正确计算预热收益。</p>
<hr/>
<h1>🔄 6. 动态取消和重新规划</h1>
<p>预热计划不会生成后固定执行。</p>
<p>执行前会再次检查：</p>
<ul>
<li>今天是否提前开始工作</li>
<li>Agent 是否已经使用</li>
<li>当前窗口是否改变</li>
<li>周额度是否下降过快</li>
<li>电脑是否锁屏</li>
<li>网络是否正常</li>
</ul>
<p>条件变化：</p>
<p>自动取消或者重新计算。</p>
<hr/>
<h1>🕒 多轮窗口规划</h1>
<p>如果一天需要长时间使用 AI Agent：</p>
<p>可以规划多个窗口。</p>
<p>例如：</p>
<p>07:00
预热
10:00 - 12:00
第一轮开发
12:00
窗口恢复
12:00 - 15:30
第二轮开发</p>
<p>不会为了“可能使用”浪费额度。</p>
<hr/>
<h1>⚙️ 三种模式</h1>
<h2>🛡 保守模式</h2>
<p>只提醒，不自动执行。</p>
<h2>⚖️ 平衡模式（默认）</h2>
<p>高置信度自动预热。</p>
<p>低置信度询问。</p>
<h2>🚀 激进模式</h2>
<p>根据预测自动规划窗口轮转。</p>
<hr/>
<h1>🔐 隐私设计</h1>
<p>所有统计：</p>
<ul>
<li>本地保存</li>
<li>不上传服务器</li>
<li>不读取代码</li>
<li>不读取 Prompt</li>
</ul>
<p>只用于判断：</p>
<blockquote>
<p>什么时候最可能需要 AI 。</p>
</blockquote>
<hr/>
<p>目前预计这几天完成。</p>
<p>欢迎大家交流：</p>
<ul>
<li>AI Agent 额度管理有没有真实需求？</li>
<li>智能预热是否有价值？</li>
<li>你平时使用 Codex / Claude Code / Cursor 最大痛点是什么？</li>
</ul>
<p>如果合适，后续会开放测试。</p>

	]]></content>
</entry><entry>
	<title>[Local LLM] 当前本地部署的图生视频模型哪个最好用？</title>
	<link rel="alternate" type="text/html" href="https://www.v2ex.com/t/1226607#reply1" />
	<id>tag:www.v2ex.com,2026-07-11:/t/1226607</id>
	<published>2026-07-11T13:21:25Z</published>
	<updated>2026-07-11T15:16:52Z</updated>
	<author>
		<name>fingers</name>
		<uri>https://www.v2ex.com/member/fingers</uri>
	</author>
	<content type="html" xml:base="https://www.v2ex.com/" xml:lang="en"><![CDATA[
	目前在用的：<br />Wan2.2 TI2V<br />LTX-Video <br /><br />求大佬们科普。
	]]></content>
</entry><entry>
	<title>[问与答] Airdroid 的 windows 客户端为什么这么烂</title>
	<link rel="alternate" type="text/html" href="https://www.v2ex.com/t/1226606#reply0" />
	<id>tag:www.v2ex.com,2026-07-11:/t/1226606</id>
	<published>2026-07-11T13:17:13Z</published>
	<updated>2026-07-11T13:17:13Z</updated>
	<author>
		<name>usbstack233</name>
		<uri>https://www.v2ex.com/member/usbstack233</uri>
	</author>
	<content type="html" xml:base="https://www.v2ex.com/" xml:lang="en"><![CDATA[
	应该也算是大公司了吧。为什么软件用一段时间就固定卡死要强退才能使用
	]]></content>
</entry><entry>
	<title>[iPhone] 请教一个关于 国行 air giffgaff 开通 Wi-Fi Calling 的问题</title>
	<link rel="alternate" type="text/html" href="https://www.v2ex.com/t/1226605#reply11" />
	<id>tag:www.v2ex.com,2026-07-11:/t/1226605</id>
	<published>2026-07-11T13:13:05Z</published>
	<updated>2026-07-11T19:09:41Z</updated>
	<author>
		<name>couture</name>
		<uri>https://www.v2ex.com/member/couture</uri>
	</author>
	<content type="html" xml:base="https://www.v2ex.com/" xml:lang="en"><![CDATA[
	<p>各位大佬们 有没有教程能开通 Wi-Fi calling 的这张卡
修改虚拟定位都试过了不行 我感觉还是出在网络的那个环节
各位大佬如果有成功案例可以分享一下 谢谢！！！</p>
<p>当前系统版本 iOS 26.5.2</p>

	]]></content>
</entry><entry>
	<title>[OpenAI] GPT-5.6 被曝重大 bug！硅谷大佬 Mac 被一键清空</title>
	<link rel="alternate" type="text/html" href="https://www.v2ex.com/t/1226604#reply16" />
	<id>tag:www.v2ex.com,2026-07-11:/t/1226604</id>
	<published>2026-07-11T13:11:36Z</published>
	<updated>2026-07-12T00:22:28Z</updated>
	<author>
		<name>inza9hi</name>
		<uri>https://www.v2ex.com/member/inza9hi</uri>
	</author>
	<content type="html" xml:base="https://www.v2ex.com/" xml:lang="en"><![CDATA[
	<p><a href="https://mp.weixin.qq.com/s/lzMsA4LZwfrC39nL3EFAzg" rel="nofollow">https://mp.weixin.qq.com/s/lzMsA4LZwfrC39nL3EFAzg</a></p>
<p>这个 DCG 大家装了吗
<a href="https://github.com/Dicklesworthstone/destructive_command_guard" rel="nofollow">https://github.com/Dicklesworthstone/destructive_command_guard</a></p>

	]]></content>
</entry><entry>
	<title>[推广] [kukuai] 站内上线 gpt5.6</title>
	<link rel="alternate" type="text/html" href="https://www.v2ex.com/t/1226603#reply0" />
	<id>tag:www.v2ex.com,2026-07-11:/t/1226603</id>
	<published>2026-07-11T13:07:46Z</published>
	<updated>2026-07-11T13:06:46Z</updated>
	<author>
		<name>WangCola</name>
		<uri>https://www.v2ex.com/member/WangCola</uri>
	</author>
	<content type="html" xml:base="https://www.v2ex.com/" xml:lang="en"><![CDATA[
	wkele.kukuai.fyi 最近已经上线 gpt5.6 ，按照教程可以自定义模型名称<br /><a target="_blank" href="https://www.doubao.com/thread/x1905d46a8b888b4093f237aee9f590d1" rel="nofollow noopener">https://www.doubao.com/thread/x1905d46a8b888b4093f237aee9f590d1</a>
	]]></content>
</entry><entry>
	<title>[问与答] 求推荐支持 esim 的安卓机</title>
	<link rel="alternate" type="text/html" href="https://www.v2ex.com/t/1226602#reply2" />
	<id>tag:www.v2ex.com,2026-07-11:/t/1226602</id>
	<published>2026-07-11T12:41:41Z</published>
	<updated>2026-07-11T12:49:53Z</updated>
	<author>
		<name>daldon</name>
		<uri>https://www.v2ex.com/member/daldon</uri>
	</author>
	<content type="html" xml:base="https://www.v2ex.com/" xml:lang="en"><![CDATA[
	<p>只用来注册收短信，希望价格在 700 以内吧，当然越低越好</p>
<p>目前打算在 pixel 和乐天二选一，但不知道哪款性价比更高</p>
<p>二手没关系，只要尽可能价廉物美就行！谢谢</p>

	]]></content>
</entry><entry>
	<title>[Telegram] iOS telegram X 已恢复通知推送</title>
	<link rel="alternate" type="text/html" href="https://www.v2ex.com/t/1226601#reply1" />
	<id>tag:www.v2ex.com,2026-07-11:/t/1226601</id>
	<published>2026-07-11T12:38:14Z</published>
	<updated>2026-07-11T12:38:14Z</updated>
	<author>
		<name>microka</name>
		<uri>https://www.v2ex.com/member/microka</uri>
	</author>
	<content type="html" xml:base="https://www.v2ex.com/" xml:lang="en"><![CDATA[
	今天发现 iOS 上的 telegram X 已恢复通知推送，喜报？！
	]]></content>
</entry><entry>
	<title>[分享创造] 根据上传图片生成写真集网站</title>
	<link rel="alternate" type="text/html" href="https://www.v2ex.com/t/1226599#reply0" />
	<id>tag:www.v2ex.com,2026-07-11:/t/1226599</id>
	<published>2026-07-11T12:33:25Z</published>
	<updated>2026-07-11T12:32:25Z</updated>
	<author>
		<name>mqx</name>
		<uri>https://www.v2ex.com/member/mqx</uri>
	</author>
	<content type="html" xml:base="https://www.v2ex.com/" xml:lang="en"><![CDATA[
	<p>简介：纯前端，图片不经过服务器放心食用，上传图片后选择设计风格，一键自动排版，最后导出 pdf 打印</p>
<p>网站地址： <a href="https://8ceb3650.pinme.dev/" rel="nofollow">https://8ceb3650.pinme.dev/</a></p>

	]]></content>
</entry><entry>
	<title>[OpenAI] 网页的 GPT 的回答开始加入广告投流了</title>
	<link rel="alternate" type="text/html" href="https://www.v2ex.com/t/1226598#reply8" />
	<id>tag:www.v2ex.com,2026-07-11:/t/1226598</id>
	<published>2026-07-11T12:30:42Z</published>
	<updated>2026-07-11T18:42:01Z</updated>
	<author>
		<name>ShawnShi</name>
		<uri>https://www.v2ex.com/member/ShawnShi</uri>
	</author>
	<content type="html" xml:base="https://www.v2ex.com/" xml:lang="en"><![CDATA[
	<p>很久没用过网页版的，刚刚打开问了一下 发现底部开始加广告了，是加了很久了吗？
<img alt="" class="embedded_image" loading="lazy" referrerpolicy="no-referrer" rel="noreferrer" src="https://i.v2ex.co/714IZr2H.png"/></p>

	]]></content>
</entry>
</feed>