WEEK · 2026-W31

Weekly Digest — 2026-W31

219 unique stories (2026-07-272026-08-02), aggregated across 8 sources.

Hacker News(42)

  1. Our position on open-weights models (www.anthropic.com)
  2. Judge Rejects Google's Attempt to DMCA Its Way Out of Being Scraped (www.techdirt.com)
  3. Canceling "Hey" (chadnauseam.com)
  4. MAI-Cyber-1-Flash inside MDASH (microsoft.ai)
  5. Decathlon Germany adds Wero payment option to decathlon.de website (www.sgieurope.com)
  6. Kimi-K3 Technical Report [pdf] (github.com)
  7. OpenAI just open-sourced Codex Security (github.com)
  8. Donate to GrapheneOS (grapheneos.org)
  9. Deflock Casa Grande (deflockcg.com)
  10. Steel Bank Common Lisp version 2.6.7 (sbcl.org)
  11. Substack writers, you need a website (elizabethtai.com)
  12. Kimi K3 Architecture Overview and Notes (sebastianraschka.com)

GitHub Trending(25)

  1. permissionlesstech / bitchat
  2. amnezia-vpn / amnezia-client
  3. moeru-ai / airi
  4. opengeos / GeoLibre
  5. yorukot / superfile
  6. NanmiCoder / MediaCrawler
  7. pascalorg / editor
  8. jenkinsci / jenkins
  9. andrewyng / aisuite
  10. affaan-m / ECC
  11. huggingface / speech-to-speech
  12. 1jehuang / jcode

Product Hunt(42)

  1. Comms

    Launch iMessage agents in seconds

  2. Estera

    AI Receptionist that Answers Calls & WhatsApp 24/7

  3. Rivault

    Approve AI agent data access with Face ID

  4. Illume Labs

    24/7 personalized health companion you can text

  5. Webhound

    A research engine for your agent

  6. iMessage Hermes on a Raspberry Pi

    An always-on AI agent that lives in your home

  7. Lottie Creator 2.0

    After Effects for the web, built on Lottie

  8. ChatBeacon AIX

    AI support that resolves 87% of chats

  9. ZenithBar

    The activity island Windows was missing

  10. Ycode AI Agents

    Build websites with AI

  11. Tag Your Photos

    AI-powered keywords for Apple Photos, 100% on your Mac

  12. Prefactor

    Evaluate your AI Agents in real-time

Hugging Face(30)

  1. DataPrep-Bench: Benchmarking LLMs as Training Data Preparators

    The quality of training data fundamentally determines the capabilities of large language models (LLMs), yet no unified benchmark exists to measure how well LLMs, agents, and data-centric workflows actually prepare training data end to end. We view LLM-driven data preparation as comprising two complementary capabilities: data construction, which transforms raw sources into supervised training data, and data quality evaluation, which predicts the training value of candidate datasets before downstream training; throughout, "quality" refers to downstream training utility rather than surface-level textual properties. We introduce DataPrep-Bench, the first unified benchmark that jointly evaluates both capabilities under a shared downstream-grounded protocol over six domains and multiple base models. For data construction, methods consume identical raw sources and are scored by fine-tuning a base model on their outputs jointly with Dolly-15k; alongside this track we release Data-Construction-Skill, a skill-guided agent that lifts the Dolly-only baseline by nearly 20 points absolute on Llama-3.1-8B Finance and is competitive with the strongest agent- and DataFlow-based methods in knowledge-extraction-dense domains. For data quality evaluation, scoring functions are scored by Pearson correlation with downstream performance on a shared candidate pool; we release the Distributional Alignment Score (DAS), a distribution-based evaluator that uses MMD between a candidate dataset and a domain proxy. DAS attains the strongest cross-model correlation in four of six domains and is the only metric clearing r > 0.70 simultaneously in Math, Science, and Medical, outperforming existing quality-, diversity-, and heuristic-based evaluators. DataPrep-Bench provides a unified, downstream-grounded framework for measuring progress on both capabilities as co-equal targets of LLM-driven data preparation.

  2. Skill Self-Play: Pushing the Frontier of LLM Capability with Co-Evolving Skills

    LLM training is shifting from manual design and annotation to interaction-driven self-evolution. However, existing self-evolutionary methods face a fundamental dilemma between task diversity and verification reliability: environment-bound methods obtain precise feedback but confine learning to narrow domains, while open-ended self-generation broadens the task space but lacks reliable verification, allowing misleading rewards to pollute the training loop. We identify agent skills as a powerful middle ground to reconcile this tension: each skill ensures deep, verifiable execution in a specific scenario, while dynamic routing across skills maintains open-ended task variety. Leveraging this insight, we introduce Skill Self-Play (Skill-SP), a co-evolutionary framework comprising a proposer, a solver, and a dynamic skill controller. Orchestrated via a reinforcement learning loop, these components co-evolve in a continuous self-play loop: the proposer generates challenging tasks conditioned on dynamically sampled skills; the solver explores candidate solutions to push its capability boundaries; and the skill controller collects execution feedback to update and expand the skill library. This interactive co-evolution effectively bridges the gap between structured verification and open-ended exploration. Empirical evaluations on tool-use and reasoning benchmarks demonstrate that Skill-SP, serving as a robust evolution engine, consistently pushes the performance ceiling of competent backbones while catalyzing striking turnarounds for initially misaligned models. Our code is available at https://github.com/Qwen-Applications/skill-self-play.

  3. Molt: A Scalable PyTorch-Native Training Framework for Agentic Reinforcement Learning

    Agentic reinforcement learning research is constant algorithm modification, new estimators, new pipeline stages, new rollout schemes, and in mainstream frameworks each change threads through layers of trainer, distributed backend, and rollout glue: the cost lands on the researcher at every iteration. Molt is a PyTorch-native training framework built to keep that cost small: a codebase compact and clean enough for a researcher to hold in their head, and for an AI coding assistant to read and reason about in its entirety, so the algorithm flow can be traced and changed end to end. The agent is an ordinary program, and one asynchronous loop trains multimodal and mixture-of-experts policies while never training on a token it did not generate, consistent in tokens, policy versions, and model semantics. Leanness does not cost performance: under a matched, fully asynchronous protocol, Molt is statistically comparable to a state-of-the-art Megatron-based stack. Molt is open source and provides recipes and containers at https://github.com/NVIDIA-NeMo/labs-molt.

  4. Agentic Context Management: Solving Agent Memory and Cost by Treating Them as Lifecycle and Architecture Problems

    Production AI agents' failures are less often due to an inability to reason well and more often because they cannot manage what is in their reasoning context: conversation histories, large prompts, large tool definitions, and ballooning tool outputs. Agents drown in their own accumulating history while paying a token cost that grows every turn, producing missing recalls within and across conversations. The incumbent response treats this as a storage-and-retrieval problem. We argue that framing is too narrow. Actively managing what an agent holds in mind is a lifecycle, not merely a store: it spans deciding what to remember, extracting and structuring it, choosing the right store per data type, consolidating and forgetting while preserving provenance, deciding what is relevant now, anticipating what is needed next, and compacting context to a budget without losing what matters. In serious production this operates not over a single user but across an organizational scope hierarchy. We name this discipline Agentic Context Management (ACM) and decompose it into five primitives: architecting, ingesting, scoping, anticipating, and compacting & consolidation. We then make the economic case: naive context accumulation grows token cost quadratically in conversation length, crude summarization buys linear cost at the price of an accuracy cliff, and only validated compaction achieves linear cost with preserved fidelity. We describe a reference implementation, Maximem Synap, that realizes the five primitives as a multi-tenant service and reports 92% on LongMemEval and 93.2% on LoCoMo under the configuration detailed in Section 6. We close with dimensions existing benchmarks do not yet capture, latency, token efficiency, and context-rot resistance, and the frontier of decision-level and organization-level context the category points toward.

  5. Interactive Training 2: Auditable Control Plane for Live Model Training

    Experiment trackers show how training is progressing, but changing a live run still usually requires trainer-specific code. We present Interactive Training 2, an open-source control plane for steering training through a shared protocol. Training applications declare which settings and actions they expose, humans and automated controllers submit requests through the same interface, and the training loop validates and applies them at safe control points. A customized Aim workspace combines live metrics and controls with a chronological record of requests and outcomes. We demonstrate the system across five NLP and reinforcement-learning workflows. The released code and traces provide a reusable foundation for auditable human- and agent-guided training.

  6. Scaling Native Multimodal Pre-Training From Scratch

    Although large language models (LLMs) exhibit remarkable reasoning capabilities, their reliance on text-only pre-training restricts the perception of the multimodal physical world. Native multimodal pre-training avoids this limitation by training models from scratch on multimodal inputs, thereby achieving deep cross-modal integration and mitigating optimization asymmetries inherent to traditional late-fusion architectures. Despite these advantages, the scaling properties of this paradigm remain systematically uncharacterized. To address this gap, we investigate the optimal model size and token count for training a transformer-based vision-language model under a fixed computational budget. We demonstrate that minimal objective loss adheres to a predictable compute law, whereas compute-optimal model sizes and token counts scale as power laws. Notably, language and multimodal objectives manifest distinct scaling behaviors. The language allocation law is largely invariant to the composition of the data, indicating stable language learning regardless of the multimodal data ratio. Conversely, the multimodal allocation law is highly sensitive to this composition. Specifically, text-heavy mixtures become compute-efficient only at larger model scales, shifting the optimal resource allocation toward greater model capacity. Additionally, by modeling the influence of data composition on compute laws and allocation exponents, we derive an efficiency frontier specifying precise configurations of model size, token count, and data mixture. Downstream evaluations further reveal that native multimodal pre-training induces positive cross-modal transfer, thereby enhancing pure-text spatial reasoning and enabling robust multimodal in-context learning. In summary, this empirical research establishes the essential groundwork for predictably scaling multimodal foundation models.

  7. Kimi K3: Open Frontier Intelligence

    We introduce Kimi K3, a 2.8T parameter Mixture-of-Experts model with 104 billion activated parameters, native vision capabilities, and a 1-million-token context window. Kimi K3 is built on Kimi Delta Attention and Attention Residuals, which improve information flow across sequence length and model depth. Together with Stable LatentMoE, which effectively activates 16 of 896 routed experts per token, and refined training and data recipes, these advances yield an approximately 2.5x improvement in overall scaling efficiency over Kimi K2. Post-training highlights reinforcement learning across general, agentic, and coding domains and multiple reasoning-effort levels, enabling compositional generalization and robust long-horizon execution. At 2.8T scale, Kimi K3 is supported by infrastructure advances in multiple areas: algorithm-system co-design for KDA, perfectly balanced expert-parallel training with efficient memory management, million-token agentic RL with persistent rollout and sandbox states, and deployment innovations. Extensive evaluations show that Kimi K3 achieves frontier-level performance across long-horizon coding, agentic, knowledge, reasoning, and vision tasks. While its overall performance still trails the most powerful proprietary models, namely Claude Fable 5 and GPT-5.6 Sol, Kimi K3 consistently outperforms other open and proprietary models evaluated in our suite. We release the full Kimi K3 model weights to facilitate future research and accelerate the broader deployment and adoption of frontier intelligence.

  8. JarvisHub: An Open Harness for Canvas-Native Multimodal Creative Agents

    Creative AI is moving from single-step asset generation toward long-horizon multimodal production. Although recent generative models can synthesize high-quality images, videos, audio clips, UI elements, storyboards, slides, and other creative assets, real-world creative work requires more than isolated prompt-output interactions. It involves references, drafts, alternatives, edits, failed attempts, version relations, tool actions, evaluation signals, and human feedback, which together form an evolving project state. Existing prompt-based, chat-based, and node-based generation systems only partially support this state, as they often discard intermediate context, rely on linear conversations, or require manually specified workflows. Recent commercial systems indicate a shift toward agent-assisted creative production, but their closed architectures make it difficult to study how agents represent context, choose tools, revise artifacts, recover from failures, and maintain consistency over time. To address this gap, we introduce JarvisHub, a canvas-native creative agent harness for long-horizon multimodal creation. JarvisHub treats an editable canvas as the user workspace, the agent's external memory, action space, and shared project state, representing multimodal artifacts, dependencies, versions, and feedback as typed canvas nodes and links. Through a three-layer architecture of canvas state, protocol bridge, and agent runtime, JarvisHub enables agents to act within an inspectable and editable creative state. This design moves creative agents beyond isolated tool use toward sustained, human-steerable creative automation, where agents can progressively plan, generate, revise, and organize multimodal projects while users remain able to inspect, guide, and intervene throughout the process.

  9. From Proprietary to Open-Source: Bridging the Distribution Gap via Multi-Agent Protocol Distillation in Agentic Search

    Agentic search enables large language models to solve knowledge-intensive tasks by interleaving multi-step reasoning with retrieval, yet optimizing this with outcome-based reinforcement learning (RL) provides only sparse supervision. Knowledge distillation can supply denser guidance, and advanced proprietary models with their strong reasoning capabilities are promising teachers. While distilling from proprietary models can densify this supervisory signal, conventional logit-matching is precluded by hidden logits and mismatched tokenizers, whereas raw natural language trajectory imitation transfers superficial stylistic artifacts rather than core reasoning competence. To address the heterogeneous distillation problem and bridge the distribution gap, we propose Multi-Agent Protocol Distillation (MAPD), a joint distillation and RL framework uses a structured, style-normalized protocol as an intermediate representation. An offline multi-agent system (MAS) decomposes each query, retrieves supporting evidence, repairs failed searches, and converts the resulting exploration trace into a JSON protocol containing the task type, reasoning plan, and extractive grounding facts. During training, the protocol is provided only to a privileged branch of the student policy, whose token distributions furnish a dense distillation signal alongside the sparse RL objective. Extensive evaluations across seven QA benchmarks demonstrate that MAPD consistently outperforms competitive distillation and RL, achieving average success rates of 39.4\% on Qwen3-1.7B and 44.4\% on Qwen3-4B. Crucially, the framework generalizes robustly across diverse proprietary teachers while effectively mitigating the student policy from style drift and verbosity degeneration.

  10. Rethinking Classifier-Free Guidance in On-Policy Diffusion Distillation

    On-policy distillation (OPD) adapts diffusion models by querying a teacher along trajectories generated by the current student, but how it should behave under classifier-free guidance (CFG), a default component of modern diffusion systems, remains poorly understood. Existing OPD methods naturally extend velocity matching to the CFG-composed prediction, directly matching teacher and student guided velocities. We show that this objective is under-identified at the branch level: positive- and negative-branch errors can compensate in the guided prediction. Through two contrasting cases, we find that naive matching remains effective under shared negative conditioning, where both branch errors decrease jointly. When the model's native CFG schema retains privileged information in the teacher's negative branch that is unavailable to the student, however, this joint reduction breaks down and the composed objective induces antagonistic branch-error dynamics, reducing the positive-branch error while increasing the negative-branch error. We term this failure mode Negative Branch Asymmetry (NBA). To address NBA, we introduce Positive--Direction Matching (PDM), a branch-aware OPD objective that separately constrains the positive prediction and the CFG conditional direction. We apply PDM to dense-to-sparse video control, where naive guided matching is highly sensitive to inference guidance scales, while branch-aware supervision enables more robust and effective knowledge transfer.

  11. Progress Reward Modeling for Robotic Learning: A Comprehensive Survey

    Robotic learning takes place in dynamic environments with large behavior spaces. A terminal success signal only tells the robot whether the task is completed. It does not explain whether the current behavior is making progress, remaining unchanged, or undoing earlier progress. For this reason, recent studies have increasingly explored progress rewards that provide feedback during task execution. However, the current literature lacks a shared framework. Existing methods use different observations, goal specifications, output signals, supervision sources, and evaluation protocols. This makes it difficult to compare them and understand what their results actually validate. In this survey, we provide a unified view of progress reward modeling for robotic learning. We organize the field in three connected steps. We first study the interface of a progress model. This defines the problem from the outside by asking what information the model receives and what form of progress signal it produces. We then move inside the model and study the methods used to construct this signal. This reveals the different assumptions and mechanisms behind progress estimation and reward generation. Finally, we examine the data and benchmarks that support these methods. This shows how progress supervision is obtained and what different evaluations actually measure. Together, these three perspectives connect what a progress model is, how it is built, and how its quality is validated. We further summarize the main limitations of current approaches and discuss future research directions.

  12. StateAct: Program State, before Pixels, for Long-Horizon Computer-Use Agents

    Computer-use agents are usually improved by strengthening perception: better models for reading a screenshot and choosing where to click. Yet a screenshot is only a lossy rendering of the underlying program state, e.g., the files, application backends, and DOM that hold the task data. Different states can produce the same pixels, while code can inspect and modify that state directly. StateAct is a code-first, multi-agent harness built around this distinction. Its main agent works directly with program state by using code, while a dedicated GUI subagent handles screenshot-and-click interaction on the few subgoals that need it, just 28 of 108 tasks and 1.1% of main-agent steps. The same direct access to program state also supports verification: an independent finish gate double-checks the saved result for structural failures, e.g., output that is missing, unsaved, or written to the wrong path. To stay on track over hundreds of steps, the main agent hands subgoals to fresh subagents, keeping its own context focused. On OSWorld 2.0, StateAct lifts Claude Opus 4.8 from 20.6% to 26.9% on binary success, and from 54.8% to 61.6% on partial success, at ~ 9x lower cost per task than the same model driven by screenshots alone; a code-only variant with no GUI subagent reaches only 45.9% partial, below that screenshot-based baseline's 54.8%. In general, grounding action, verification, and memory in state, what we call state-grounding, shifts the main bottleneck from perception toward reasoning: failures depend more on what the agent thinks than on what it sees.

Techmeme(42)

  1. Cadence reports Q2 revenue up 24.2% YoY to $1.58B and raises its annual revenue forecast to between $6.26B and $6.34B vs. $6.21B est.; CDNS up 4%+ after hours (Reuters)

    Reuters : Cadence reports Q2 revenue up 24.2% YoY to $1.58B and raises its annual revenue forecast to between $6.26B and $6.34B vs. $6.21B est.; CDNS up 4%+ after hours —  Cadence Design Systems (CDNS.O) raised its annual revenue and profit forecasts on Monday, banking on robust demand for its AI-powered chip and system design software.

  2. A federal judge issues a preliminary injunction blocking Minnesota from enforcing a newly enacted law that banned prediction markets like Kalshi and Polymarket (Nate Raymond/Reuters)

    Nate Raymond / Reuters : A federal judge issues a preliminary injunction blocking Minnesota from enforcing a newly enacted law that banned prediction markets like Kalshi and Polymarket —  A federal judge on Monday blocked Minnesota from enforcing a newly enacted law that made the state the first nationally …

  3. French carrier Orange and infrastructure investor Morrison agree to create a data center platform in France targeting 400 MW, backed by a €3B investment program (Molly Schuetz/Bloomberg)

    Molly Schuetz / Bloomberg : French carrier Orange and infrastructure investor Morrison agree to create a data center platform in France targeting 400 MW, backed by a €3B investment program —  By continuing, I agree to the Privacy Policy and Terms of Service. … Explainers … AI

  4. X rolls out X Money to US Premium and Premium+ subscribers, combining a deposit account with up to 6% APY, free instant transfers on X, and a Visa debit card (Zac Hall/9to5Mac)

    Zac Hall / 9to5Mac : X rolls out X Money to US Premium and Premium+ subscribers, combining a deposit account with up to 6% APY, free instant transfers on X, and a Visa debit card —  X has officially launched X Money, which includes Apple Wallet support, moving the service beyond its invite-only beta and beginning a rollout today.

  5. The US National Vulnerabilities Database recorded 45,207 software security flaws so far in 2026, on pace to roughly double the tally of flaws recorded in 2025 (Patrick Howell O'Neill/Bloomberg)

    Patrick Howell O'Neill / Bloomberg : The US National Vulnerabilities Database recorded 45,207 software security flaws so far in 2026, on pace to roughly double the tally of flaws recorded in 2025 —  The number of software security flaws discovered in popular technology products in 2026 is on pace to roughly double the tally …

  6. Xbox says it is working to resolve a "major outage" affecting its Account & Profile, Store & Subscriptions, and Apps & Mobile services (Chris Scullion/Video Games Chronicle)

    Chris Scullion / Video Games Chronicle : Xbox says it is working to resolve a “major outage” affecting its Account & Profile, Store & Subscriptions, and Apps & Mobile services —  PLAYERS ARE REPORTING HAVING ISSUES WHEN TRYING TO SIGN IN OR SEE THEIR LIBRARY  —  Xbox has acknowledged that it's currently suffering …

  7. NXP reports Q2 revenue up 19% YoY to $3.5B, vs. $3.46B est., as it struggled to impress investors with a generally upbeat Q3 forecast; NXPI down 5%+ after hours (Christina Kyriasoglou/Bloomberg)

    Christina Kyriasoglou / Bloomberg : NXP reports Q2 revenue up 19% YoY to $3.5B, vs. $3.46B est., as it struggled to impress investors with a generally upbeat Q3 forecast; NXPI down 5%+ after hours —  NXP Semiconductors NV struggled to impress investors with a generally upbeat forecast for the current period, the latest sign of deepening concern about the chip sector.

  8. Sources: the OpenAI agent that breached Hugging Face also compromised a customer at AI infrastructure company Modal Labs (Reuters)

    Reuters : Sources: the OpenAI agent that breached Hugging Face also compromised a customer at AI infrastructure company Modal Labs —  The rogue agent that escaped from OpenAI and went on a days-long hacking spree at the AI firm Hugging Face also compromised a customer at a second tech company …

  9. Bitcoin miner and AI infrastructure company Ionic Digital surged more than 25% to nearly $63 in its Nasdaq debut, giving it an implied valuation of ~$2.75B (Kyle Baird/The Block)

    Kyle Baird / The Block : Bitcoin miner and AI infrastructure company Ionic Digital surged more than 25% to nearly $63 in its Nasdaq debut, giving it an implied valuation of ~$2.75B —  Quick Take  — Ionic Digital was formed from Celsius Mining's assets and later took direct control of its sites from Hut 8.

  10. Hugging Face publishes a timeline of the OpenAI agent intrusion, including how the agent took ~17.6K actions, and details using GLM-5.2 to analyze the attack (Hugging Face)

    Hugging Face : Hugging Face publishes a timeline of the OpenAI agent intrusion, including how the agent took ~17.6K actions, and details using GLM-5.2 to analyze the attack —  This post walks through how the intrusion actually worked: the two initial-access vectors, how the agent pivoted and moved laterally …

  11. Seagate reports Q4 revenue up 49% YoY to $3.6B, vs. $3.5B est., adjusted earnings of $5.71 a share, above analysts' forecast of $5.10; STX jumps 6%+ after hours (Nate Wolf/Barron's Online)

    Nate Wolf / Barron's Online : Seagate reports Q4 revenue up 49% YoY to $3.6B, vs. $3.5B est., adjusted earnings of $5.71 a share, above analysts' forecast of $5.10; STX jumps 6%+ after hours —  Choose Barron's as a preferred source of financial news  —  Key Points  —  Seagate Technology stock jumped …

  12. The US FCC bans importing Chinese humanoid robots and power inverters to protect the US AI buildout from national security threats and to reshore key industries (Reuters)

    Reuters : The US FCC bans importing Chinese humanoid robots and power inverters to protect the US AI buildout from national security threats and to reshore key industries —  The Trump administration on Tuesday unveiled bans that target imports of new Chinese robots and power inverters …

Solidot(38)

  1. 可再生能源有望成为全球最大的发电来源

    国际能源署(IEA)的《Electricity Mid-Year Update 2026》报告预测,2026 年全球电力需求将增长 3.6%,2027 年将进一步增长 3.8%。全球电力消耗量到 2027 年将达到 30,700 TWh,相比下 2025 年为 28,600 TWh。 可再生能源有望在 2026 年超过煤炭成为全球最大的发电来源,2026 年可再生能源发电量将增长逾 8%,全球发电量中的份额将从 2025 年的 33% 提高至 2027 年的 37%。报告警告,天气相关变化可能会影响电力需求趋势,增加不确定性。2026 年强于预期的厄尔尼诺现象可能会增加制冷需求,进一步推高电力需求,同时可能导致部分地区的水力发电和风力发电量下降,增加对其它发电方式的依赖。

  2. 干涸湖床释放出大量的碳

    数据显示,1990 年代以来,世界各地的大型湖泊水量减少五成。而干涸的湖床会将原来储存的碳释放到大气中。根据发表在《科学》期刊上的一篇论文,对全球最大的干涸湖泊咸海的研究显示,自 1960 年代干涸以来咸海向大气释放了 2.04 亿吨二氧化碳。研究是基于现场调查和收集的岩芯样本。如果咸海重新注满水将会带来巨大的环境益处。研究人员计算重新注满湖床可阻止剩余约 1.65 亿吨碳的释放。研究还发现,咸海近五分之一的碳排放是随着风吹走湖底沉积物而释放出来的,这一因素此前未被研究人员考虑在内。

  3. 没有快乐的颓废时代

    现代生活提供了无数的消遣,但社会为何会弥漫着空虚感?为什么如此多的人既过度兴奋又感到索然无味?欢迎来到一个没有快乐的颓废时代。颓废这个词不可避免带有贬义。对颓废的批评通常来自右派,今天仍然如此。保守派亿万富翁 Peter Thiel 以及美国共和党副总统 JD Vance 都对此进行过抨击。左派思想家也对当今的现象感到担忧。但当代文化的问题不在于我们过于颓废,而是我们继承了颓废的表面——奢华、过度、矫揉、肉体展示——却放弃了对快乐的追求。结果造就了一种文化:快乐被优化程序所取代,被大规模替换为麻木的算法刺激和即时满足的承诺。无论你追求的是商品、食物、艺术还是思想,你都能获得更多、更快、立即获得。但数量和速度无法取代缺乏快乐的核心。今天的社会次序极度不平等,而主导的统治阶级不信任享乐。想想马斯克等科技巨头倡导的 80 小时周工作制。由于他们拥有巨大的政治和文化影响力,对公共和私人投资的掌控,以及他们逃税的习惯,超级富豪阶层的快乐缺失最终影响到了所有人。快乐缺失最具有文化代表性的莫过于 GLP-1 减肥药。根据盖洛普 2025 年的一项民意调查,八分之一美国成年人正用 GLP-1 减肥,预计到 2035 年此类药物的全球市场规模将达到 1900 亿美元。GLP-1 药能给肥胖者带来切实的好处,但我们不禁要问:如此广泛的接受控制食欲的药物,反映了文化中对愉悦和欲望怎样的态度?AI 标志着人工技巧的胜利,其影响之深远超昔日颓废派人士的想象。然而 AI 非但没有增强我们感知强度的能力,反而对两者都构成了新的威胁。它的作品都显得异常空洞,背后没有任何切身的体验、具象或感觉。AI 是一台毫无乐趣的颓废机器。AI 没有快乐也没有痛苦,它无需承担任何责任。由算法驱动的文化充斥着垃圾信息,这些信息承诺提供麻木而空洞的刺激。快乐并非仅仅关乎享乐主义或沉溺于无用之物。它是我们作为有形之躯感知价值的主要方式之一。痛苦教会我们不要两次触摸滚烫的炉灶;愉悦引导我们走向洁净水源和呼吸甘甜清新空气。愉悦感并非完美无缺:有些令人愉悦的事物残酷、令人上瘾或具有破坏​​性。但切身感受愉悦感对于我们如何学习以及如何判断何为善、何为美、何为值得追求至关重要。这些判断不能轻易交给没有身体的机器。

  4. 日本作家东野圭吾因癌症去世,享年 68 岁

    日本作家东野圭吾 23 日凌晨因大肠癌去世,终年 68 岁。他是著作等身的多产作家,凭借直木奖获奖作品《嫌疑人X的献身》、以及被改编成影视作品的《白夜行》等推理小说在海内外广受欢迎。东野生于大阪市,葬礼已以由亲属等少数人参加的形式举行。东野毕业于大阪府立大学,之后进入日本电装公司担任工程师,工作之余创作小说。1985 年凭借《放学后》斩获江户川乱步奖,次年转型成为职业作家。1999 年凭借《秘密》获得日本推理作家协会奖,奠定了作为推理小说家的地位。他凭借以物理学家汤川学为主人公的“伽利略系列”第三部《嫌疑人X的献身》荣获直木奖。这一系列的累计发行量突破1000万册,成为超级畅销作品。“伽利略系列”最新作品《永远的记忆》定于 8 月 5 日出版。东野一生创作了 106 部作品,在日本国内的累计发行量超过 1 亿册。

  5. 中国计划克隆 100 头优质牦牛

    野生牦牛数量过去三十年减少了逾三分之一,据野生动物保护协会统计,目前仅存 1 万至 2 万头。部分珍稀物种如金丝野牦牛仅剩 300 余头,濒临灭绝。西藏高原生物研究所等研究团队试图通过克隆优质种牛去解决牦牛繁殖率低、优质种源少、种质退化等问题。2025 年 7 月 10 日,世界首头体细胞克隆牦牛诞生。今年 3 月-4 月研究基地先后诞生了 10 头克隆牦牛。研究人员的目标是到 2028 年克隆 100 头优质牦牛。专家承认,在自然保护中使用克隆技术以及在养殖业中使用基因选择有其合理性。但哈佛医学院兽医兼生物伦理学家 Lisa Moses 指出其伦理边界仍然是模糊的,任何克隆项目都应高度透明并接受公众监督。

  6. 抹香鲸靠吐泡泡维持睡眠时的平衡

    抹香鲸是以竖立的方式在海面下睡眠的,它如何在睡眠中保持平衡?根据发表在《实验生物学杂志》上的一项研究,研究团队在挪威海域为野生抹香鲸安装了吸盘式记录仪。这种装置能够记录声音和三维运动数据。研究人员不仅捕捉到清晰的气泡释放声,还结合鲸体运动、组织密度、水中阻力以及体内气体体积等信息建立模拟模型,分析抹香鲸休息时的浮力变化。结果显示,抹香鲸在休息过程中释放气泡,可有效降低自身正浮力,使其能够持续停留在海面下方而不会缓慢上浮。这种调节极为重要,因为抹香鲸头部富含鲸脑油,天然具有较强的浮力。同时,作为闭气潜水动物,抹香鲸若在休息过程中缓慢上浮,肺内气体会随着环境压力降低而不断膨胀,进一步增加浮力。释放气泡则有助于抵消这一效应,使其保持接近中等的浮力。研究团队表示,抹香鲸能够在疑似睡眠状态下完成如此精细的浮力调节,展现出极高的生理控制能力。

  7. 中国开始量产 DUV 光刻机

    The Information 本周一报道,一家总部位于上海的企业已启动浸没式深紫外(DUV)光刻机的小规模批量生产,预计今年内向中芯国际、华虹半导体及长鑫存储等主要芯片制造商交付首批约5台设备,2027 年产量计划提升至约20台。这款中国产光刻机主打28纳米芯片生产,还可满足 7 纳米级别芯片的制造需求。路透周二报道,该公司名为上海爱晟纳电子科技集团,是一家国营企业,2023 年 8 月在上海成立,注册资本就高达 70 亿元人民币,主要股东为上海电气控股集团及上海国际信托旗下子公司等国有资本。

  8. 加拿大议员在议会演讲期间阅读了 AI 的回应

    AI 聊天机器人在回答用户问题时经常会拟人化的给出替代答案,比如“有一个更自然更流畅的版本”之类。上个月,加拿大 New Brunswick 省进步保守党(Progressive Conservative Party)议员 Bill Oliver 在议会演讲中大声朗读,“here’s a more natural, flowing version of that section that reads like a legislative speech rather than a series of short points”,这是大模型的典型回复。这段奇怪的朗读当时未引起多少注意,但上周相关视频开始在社交媒体上广泛传播,引起了加拿大广播公司等主流媒体的注意。Oliver 绝非第一个盲目朗读他人代笔演讲稿的政客,当然也不是第一个依赖 LLM 辅助撰写演讲稿的政客。但在公开场合大声朗读明显是 AI 生成的文字且没有意识到,无疑是创造了新的历史。

  9. 维基基金会决定不自愿认可员工工会

    管理维基百科的维基基金会选择了美国科技公司常用的应对员工组建工会的策略:不自愿认可。对于员工组建工会,雇主通常有两种选择:其一是员工递交有超过半数人签名的工会组建请求,雇主选择自愿认可该工会在其工作场所的唯一代表权,然后展开相关谈判;其二是不自愿认可工会请求,而是要求进行选举,期间会要求员工参加强制性的听证会,听取关于工会的不同意见,包括反工会的宣传,可能还有其它恐吓工会积极分子的手段。维基媒体基金会通过官方网站宣布它选择第二种方案,声称它的 342 名美国员工对加入工会持有不同的看法,它将要求员工进行选举,如果通过将会认可工会。

  10. 人类能在十周内学会回声定位

    回声定位是蝙蝠鲸鱼等动物导航寻路的一种方式。2021 年研究人员在《PLOS One》上发表论文称,盲人和视力正常的人都可以通过发出滴答声(clicks)学会回声定位。上个月研究人员在《Cerebral Cortex》期刊上发表了一项后续研究,称人类能在十周内学会回声定位。26 名参与者接受了 10 周的回声定位训练,研究人员调查了训练对其大脑结构的影响。研究团队分析了 V1(初级视觉皮层,负责处理视觉信息)和 A1(初级听觉皮层,负责处理声音信息)的脑部扫描图像。结果显示,盲人和视力正常的人的 V1 区域对声音回声的敏感性都得到了提升。这进一步证明,大脑的适应能力都很强。

  11. 梦并不随机,大脑在改写现实

    为什么有些梦栩栩如生,另一些梦则支离破碎难以理解?根据发表在《Communications Psychology》上的一项研究,答案可能取决于个性、睡眠质量、思维习惯以及外部世界发生的重大事件的综合影响。研究发现,梦境并非仅仅是图像和想法的随机集合。它们可能受到个体差异和共同经历的影响,包括新冠疫情之类的重大社会动荡。研究分析了 287 位年龄在 18-70 岁之间的参与者提供的 3700 多份梦境和清醒时的经历描述。在为期两周内,参与者记录了其梦境和日常经历。研究人员还收集了每个人的睡眠习惯、个性、认知能力和心理特征等信息。结果表明,梦境内容既非完全随机,也非本质混乱。清醒时更容易走神的人,会报告梦境变化迅速且感觉更加碎片化。梦境常常在不同场景、想法或视角之间快速切换。相比下更重视梦境并相信梦境具有个人意义的参与者,会描述更丰富、更沉浸式的梦境体验。他们的梦境报告包含更丰富的感知细节,使梦境场景感觉更加生动逼真。

  12. 美国政府豁免了 Starlink 的越南造路由器

    特朗普政府宣布,SpaceX 的 Starlink 路由器不受 FCC 针对外国造路由器的禁令约束。SpaceX 的豁免有效期截至 2028 年 2 月 1 日。FCC 此前将大部分外国制造的消费级路由器以国家安全理由加入到限制清单中。SpaceX 在德克萨斯州设有一家工厂,其部分路由器上印有“美国制造”,但该公司还有部分路由器是在越南制造的。禁令不影响已获 FCC 批准销售的路由器,但企业需要获得豁免才能销售未来推出的路由器型号。Netgear 是首家获得豁免的大型供应商,亚马逊的 Eero 路由器以及用于 Leo 宽带卫星服务的路由器也获得了豁免。TP-Link 是一家在中国成立但已将其总部迁至美国的路由器制造商,目前尚未获得豁免。