第 38 期
今日趋势
今天的简报可归纳为两大核心主线,其一聚焦AI领域的多元动态:既有LLM插件升级、Codex作为智能代理的技术实践,也有AI在教育辅助中的正向价值、职场落地时“模型能力升级却多数员工未熟练使用”的反差,更有Bluesky社区对AI工具的态度分歧引发的生态讨论。其二围绕科技对各领域的渗透与反思,涵盖零售支付的变革、数据科学的技术优化,以及职场情绪管理、IP创作逻辑等实用思考。值得关注的共性是,AI工具的普及并未同步消除落地痛点,反而在技术迭代中凸显了生态分歧、应用门槛等问题,同时推动人们重新审视效率与慢生活、任务与工作等核心概念的差异。这些内容既展现了科技发展的多元面相,也为从业者、创作者提供了从技术实践到生活感悟的多维度启发。
AI 技术博客
- llm 0.32.1 — simonwillison.net
- llm-openrouter 0.7 — simonwillison.net llm-openrouter 0.7版本发布,该插件已兼容LLM 0.32,可显示OpenRouter上LLM的推理追踪。它采用了OpenRouter的Responses API,新增Shell、WebFetch、WebSearch三个服务端工具,可通过-T选项启用。该插件的更新提升了LLM与OpenRouter的集成体验,值得相关开发者使用。
- Quoting Matt Webb — simonwillison.net Matt Webb发布1.0版本后,与ChatGPT互动学习四元数,未让其编写代码但获得了有效指导,最终学会足够的四元数知识让应用正常工作。他认为AI外包思考后会推动自己学习更多内容,这是积极的结果。这段经历展示了AI作为学习辅助工具的价值,值得关注AI在教育中的应用场景。
- Bluesky Is Full of Anti-AI Zealots — John Gruber Bluesky社区对AI工具的态度引发关注,多位用户因社区对AI使用的嘲讽离开,转向X平台,作者还提到自己反对LLM文本水印的两个论点:水印会降低文本质量且无用户益处,即使能做到无质量损失也不该用,引发了不同反应。该条目反映了AI社区平台的文化分歧,值得了解不同平台的AI相关生态。
- Stop Making TUIs — simonwillison.net Thomas Ptacek主张为小型个人工具构建原生UI,因为编码代理让GUI开发成本极低,作者自己使用AI生成的macOS任务栏监控工具,还在说服自己为其他项目做原生UI,认为把CLI转原生UI是有益的。该观点结合了AI工具的发展,值得思考个人工具的UI设计方向。
- You should never be angry at work — seangoedecke.com 作者建议职场中永远不要生气,因为愤怒会破坏团队氛围,导致决策绕过自己,形成恶性循环,高效的工程师会被倾听,愤怒的工程师反而被边缘化,还提到愤怒的工程师并非无用但会影响协作。该建议针对职场情绪管理,值得科技从业者参考。
- The Fourth Horseman of the File-Format-Hegemony Apocalypse — John Gruber 微软OneDrive的iPhone应用之前支持创建Excel、Word、PPT三种文档,最近新增了第四种文档类型,还设计了有微软风格但被吐槽没品味的文件图标,作者调侃这是文件格式霸权的末日第四骑士。该更新体现了微软在移动办公格式上的扩张,值得关注其文件格式策略。
- Walmart Finally Caves, Will Soon Support Apple Pay — John Gruber 沃尔玛宣布从8月24日起在部分门店和山姆会员店支持Tap to Pay,计划2026年底覆盖所有美国门店,2027年中覆盖加油站,作者提到沃尔玛之前曾抵制Apple Pay,现在终于妥协。这是零售支付方式的重要变化,值得关注线下支付的发展趋势。
因果推断与营销科学
- Here are the talks from StanCon 2026! — Andrew StanCon 2026 has concluded, with a range of speakers presenting talks on various topics. The post shares the list of participating speakers and their talk titles, noting that there is plenty of valuable content to explore. It also encourages people to start planning for the upcoming StanCon 2027.
- A Tale of Two Flink Autoscalers — Netflix Technology Blog Netflix currently operates two Flink autoscalers: an in-house built system and an open-source Apache Flink one, and is steadily converging on using the open-source option. The company runs over 30,000 Flink jobs across multiple AWS regions, making autoscaling critical to avoid resource waste and performance lag. The post shares lessons learned about metrics, cost, and infrastructure maintenance from running both systems, which is useful for other Flink users.
- Running Codex as a Headless Agent — Shuai Guo The post explores how to run OpenAI’s Codex as a headless agent, integrating it into larger automated workflows instead of using it interactively. It provides a concrete case study of building a Python workflow that uses Codex to generate structured research digests, including details on prompt preparation, output schemas, and the Codex CLI’s exec command. This approach combines code’s determinism with Codex’s agentic capabilities for open-ended tasks like research.
- Estimating from No Data: Deriving a Continuous Score from Categories — Elod Pal Csirmaz The post explains a method to derive continuous scoring from categorical labels using low-capacity neural networks, addressing a gap where training data only has category outcomes (like patient recovery status) instead of numeric scores. It uses an example of predicting infection severity for Pathogen A patients, showing that small networks avoid contorting outputs to fixed category values. The accompanying code is available, making it practical for those needing to convert categorical labels to continuous scores.
- Retrieve One Row from a Table, Not the Whole Table: Row-Level Chunks for RAG — Kezhan Shi The post argues that for Retrieval-Augmented Generation (RAG), the optimal retrieval unit for table-containing corpora is individual table rows paired with their column headers, rather than larger units like pages or paragraphs. This approach is especially effective when a user needs only a specific row from a table, reducing irrelevant information in retrieval results. It highlights that row-level chunks improve the precision of RAG systems for table-based data.
- The Types of Dimensions in a Star Schema, and How to Use Them — Salvatore Cagliari The post introduces dimensional modeling and the star schema, which uses fact tables (for business processes) and dimension tables (for descriptive data). It outlines three main types of dimensions: regular (common entities like customers), junk (grouped small dimensions), and degenerate (transaction-related info). Each dimension type is explained with examples, helping readers apply them in data analysis and reporting models.
即刻简报
- 发布了: AI普及是个笑话 当下的AI行业有一个非常奇怪的反差,一方面是模型的能力还在快速提升,一个个更强的模型接连发布。另一方面是当你走进一家公司去看,会… — 即刻·莫唯书Mark 当下AI行业存在反差,模型能力快速提升但多数企业员工不用AI,仅5%-10%的人熟练使用,70%基本不碰。用好AI需要试错积累的手艺,培训无效,厂商加功能抬高门槛,企业错在让所有人学AI,正确做法是让少数人沉淀经验,AI嵌入后台,还要产品为普通人设计。值得读是因为提出了企业AI落地的核心误区与可行路径。
- 发布了: 昨晚看《你的名字》 前40分钟看不进去,心里着急 一会切Codex看一眼任务进度,好像自己多忙似的 AI时代,似乎一切都加速了 这种赶时间的状态,带到了看… — 即刻·AI产品黄叔 作者看《你的名字》前40分钟因AI时代的赶时间状态看不进去,关弹幕后沉浸,感慨自己如今追求效率,忘了慢下来才能做有质量的内容。值得读是因为戳中了AI时代人们的心态异化,点明了创作的本质要求。
- 发布了: 丈母娘退休在家,有洁癖,爱做家务,也很擅长。我看她闲不下来,一有空就要扫扫拖拖,太辛苦。 于是我就直接给她买自动化设备。比如扫地机器人。 奇怪的… — 即刻·范冰_XDash 丈母娘退休爱做家务,作者买扫地机器人但她因各种原因不接受,作者由此联想到企业落地AI时员工推三阻四的现象。值得读是因为借生活小事映射职场AI落地的共性问题,有启发意义。
- 发布了: #和平台博弈,是每个 IP 创作者的宿命。 抖音是这个星球上最赚钱的公司之一。 为什么?因为分配权在平台手里。 它分配的不是商品,不是内容,而是注意力… — 即刻·王紫君Zima IP创作者与平台博弈是宿命,平台掌握注意力分配,流量易逝,IP的信任力才是护城河。这代稀缺的是注意力和信任,IP和平台的博弈是时代第一性原理。值得读是因为点明了IP创业的核心逻辑,对创作者有指导价值。
- 发布了: 前几天是@Zuck31 今天是@听__ ,更早之前是@Zane小江 等很多朋友。 事实证明,哥飞真的会让很多人丢工作。 — 即刻·哥飞 近期多位朋友因“哥飞”失去工作,这一现象印证了相关影响的存在。
- 发布了: 《阴翳礼赞》 一个字一个字地看完了 谷崎润一郎不愧是大小说家,感受力极强,能把散文写出小说的质感 AI 说看这本书能理解东亚文化的“美” 作者可是连… — 即刻·橘AI 作者读完谷崎润一郎的《阴翳礼赞》,称赞其感受力强,能把散文写出小说质感,提到AI推荐这本书,而作者是反科技派。值得读是因为展现了经典作品的魅力,以及AI与传统认知的反差。
- 发布了: 任务≠工作 知识≠智慧 能做≠能用 — 即刻·莫唯书Mark 点明了任务≠工作、知识≠智慧、能做≠能用三个概念的本质差异,有启发意义。
- 发布了: 齐哥危矣 — 即刻·哥飞 提及“齐哥”当前处境危急,但未说明具体原因。
本期有 10 个源不可用:lcamtuf.substack.com、garymarcus.substack.com、rachelbythebay.com、joanwestenberg.com、dfarq.homeip.net、gwern.net、worksonmymachine.substack.com、chiark.greenend.org.uk/~sgtatham、tedunangst.com、Solomon Kurz。