OrangeBot.AI Digest — 2026-07-27
90 headlines across 8 sources, aggregated for this day.
Hacker News(15)
- Our position on open-weights models (www.anthropic.com)
- Judge Rejects Google's Attempt to DMCA Its Way Out of Being Scraped (www.techdirt.com)
- Canceling "Hey" (chadnauseam.com)
- MAI-Cyber-1-Flash inside MDASH (microsoft.ai)
- Decathlon Germany adds Wero payment option to decathlon.de website (www.sgieurope.com)
- Kimi-K3 Technical Report [pdf] (github.com)
- Apple Will 'Watch Everything Burn' When the AI Bubble Bursts (www.macrumors.com)
- AI companies spend record sums on Washington lobbying (www.ft.com)
- Should you wash your solar panels? (incoherency.co.uk)
- AI companies are shredding rare books (twitter.com)
- Removing React.js from the codebase and adapting Htmx for UI interactivity (2023) (misago-project.org)
- How is the Bun Rewrite in Rust going? (lockwood.dev)
- Why I Left Google DeepMind (www.lesswrong.com)
- Chinese chipmaker shares surge 470% (www.bbc.com)
- Magnolias are so old that they're pollinated by beetles, not bees (2025) (mymodernmet.com)
GitHub Trending(15)
- permissionlesstech / bitchat
- amnezia-vpn / amnezia-client
- moeru-ai / airi
- opengeos / GeoLibre
- yorukot / superfile
- NanmiCoder / MediaCrawler
- pbakaus / impeccable
- shiyu-coder / Kronos
- alibaba / open-code-review
- jenkinsci / jenkins
- bradautomates / claude-video
- vudovn / ag-kit
- apache / cassandra
- mvanhorn / last30days-skill
- ocornut / imgui
Product Hunt(15)
- Comms
Launch iMessage agents in seconds
- Estera
AI Receptionist that Answers Calls & WhatsApp 24/7
- Rivault
Approve AI agent data access with Face ID
- Illume Labs
24/7 personalized health companion you can text
- Webhound
A research engine for your agent
- iMessage Hermes on a Raspberry Pi
An always-on AI agent that lives in your home
- Robynn AI
Websites that improve and heal with self-learning
- FindDiskKiller
See which apps are hammering your Mac's disk
- Notate
Annotate anything for humans and their agents
- HeyZoku
Orchestrate an army of coding agents with your voice.
- superfile
A modern, visual file manager for the terminal
- Audos Summer Camp
Build your business idea with unlimited Fable/Sol credits ♾️
- AI YC interview with Gstack agents
AI specialists that join your Google Meet and gives feedback
- Adomate
Turn data into winning ads. At scale.
- Cynative Security Research Agent
Ask your cloud anything without breaking prod. Read-only.
Hugging Face(15)
- 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.
- 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.
- 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.
- 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.
- 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.
- 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.
- Three-Body Scattering for Generative Modeling
Modern generative models typically rely on an adversarial critic, a prescribed noise-to-data path, or an autoregressive factorization. Instead, we show that a proper distributional energy can induce sample-level motion and provide direct regression supervision for a one-step generator. Three-Body Scattering Modeling (TBSM) for generation turns the energy distance into a constant-size per-projectile interaction: each projectile is attracted toward one real source and repelled from one independently generated source. Conditioned on the projectile and its condition, its expectation equals the 2-Wasserstein gradient-flow velocity of frac12D_E^2(P_θ,Q). A batch of B frozen-target events yields O(B) sample-level losses, each using one reference for its condition instead of the minibatch-wide all-pairs field used by methods such as Drifting Models. Tracking this conditional expectation online can reduce field noise. Using scattering in frozen image features, TBSM trains one-step generators on ImageNet-256, achieving FID{}=2.23 with pixel-space PixelDiT-XL and FID{}=1.63 with latent-space DiT-XL at NFE{}=1. We provide a design map relating diffusion-related supervision, Drift-like dynamics, and GAN-like objectives. These results establish tracked scattering as a route to high-dimensional one-step generation. Code: https://github.com/sp12138/TBSM.
- O-VAD: Industrial Video Anomaly Detection through Object-Centric Tracking and Reasoning
Industrial Video Anomaly Detection (IVAD) aims to identify anomalous objects and events in an industrial process, which is crucial for modern manufacturing and quality control systems. Existing VLM-based anomaly reasoning methods are capable of detecting open-ended anomalies in general domains. However, their performance declines in industrial settings characterized by intricate object transformations, strict physics, and procedural constraints. To tackle the complexity of such interaction-intensive detection, we introduce a training-free agentic framework for anomaly detection free of domain-specific knowledge, emphasizing object state evolution like humans inspectors. It is designed to track spatial-temporal dynamics and underlying transformations of detected objects over time, and then reason over the object-wise temporal state trajectories to identify abnormal objects in grounded frames. Our method overcomes limitations of prior approaches that rely on retraining on normal clips or injecting domain knowledge as context for test-time inference. Extensive experiments on three IVAD datasets demonstrate that our method outperforms frontier VLMs, agentic frameworks, and traditional VAD methods fine-tuned on the respective datasets, while providing interpretable reports over anomaly processes and types.
- LAMAR: An Open Language-Aware Multilingual Alignment Reranker
In multilingual retrieval augmented generation, a retriever can retrieve relevant documents written in multiple languages, which are subsequently reranked before answer generation. However, it remains unclear whether existing multilingual rerankers consider document language when ordering semantically relevant candidates. Our analysis shows that these rerankers do not consistently prioritize documents written in the same language as the query when semantically equivalent documents are available across languages, even though document language can affect answer generation. We release LAMAR, a language aware multilingual cross encoder trained to account for both semantic relevance and language coherence. LAMAR first uses English anchored relevance distillation to establish consistent relevance scoring across multilingual inputs and then applies preference alignment for language coherence to encourage documents written in the same language as the query to receive higher rankings while retaining semantic relevance. In a controlled experiment designed to assess language coherence, LAMAR achieves the best performance overall and across all languages examined individually. LAMAR also remains competitive on established multilingual reranking benchmarks. In practical retrieval settings, LAMAR achieves the best results across all reported metrics when reranking candidates retrieved in the first stage. These results demonstrate that LAMAR accounts for language coherence while achieving strong performance on general multilingual reranking benchmarks.
- Multi-Head Latent Control: A Unified Interface for LLM Agent Decision Making
Large language models are increasingly deployed as agents, but reliable agentic behavior requires more than next-token prediction. At inference time, it is preferred that an agent can decide whether to proceed with its current reasoning, defer to a stronger model, request additional information, invoke external tools, or abstain under the given setup. Existing approaches address these decisions through prompt-level routing, external orchestration, or task-specific fine-tuning, which primarily rely on input-side signals, and are often costly and difficult to maintain as model backbones evolve. We ask whether such control decisions can be inferred directly from a model's latent generation process. We introduce Multi-Head Latent Control, a lightweight layer that reads hidden-state trajectories from a frozen LLM or VLM to produce deployment-time control signals. A Capability Head predicts whether the current model can solve the instance or should defer to a stronger collaborator, while a Resolution Head predicts appropriate resolution decision Clarification, Tool Use, Abstention, or Direct Answering. Both heads are trained only on latent traces from the same frozen LLM backbone, enabling post hoc adaptation without modifying the model. Across language and vision-language settings, Multi-Head Latent Control consistently improves the quality-cost tradeoff of multi-model systems, enabling early handoff from partial generations and more accurate intervention decisions. In routed execution (small + large model), it reduces large-model usage by up to 90.7 percent on AndroidWorld and 27-53 percent on average across benchmarks, while retaining most of large-model performance. Additionally, the learned control signals improve tool-use decision quality, yielding up to +158 percent relative score gain and 65.5 percent fewer missed-required tool calls.
- Closing the Loop: Training-Free Revisit Consistency for Autoregressive Generative Rendering
Recent conditional video generation models have shown promising potentials to transform 3D engine renderings, such as depth maps and untextured geometry, into photorealistic videos for gaming and immersive content creation. These applications require long-horizon auto-regressive generation that continuously synthesizes new frames while preserving a persistent 3D world. Auto-regressive generators synthesize video chunk by chunk with a bounded KV cache, so when the camera revisits a location after its context has been evicted, the model often regenerates inconsistent appearance, even though the conditioning renderings (e.g., depth) remain perfectly aligned with the underlying geometry.We address this revisit inconsistency without any post-training by exploiting correspondences the 3D engine already provides: temporal correspondence retrieves pose-matched historical latent chunks into the KV cache as loop-closure memory, while spatial correspondence from camera pose and depth reprojection biases token-level attention toward geometrically corresponding regions of the retrieved chunks. We demonstrate our method on loop-closure trajectories mined from TartanAir and TartanGround dataset to mirror complicate real-world application scenarios, where it outperforms existing training-free baselines on revisit consistency without losing overall video quality. Project Page: https://wenchao-m.github.io/ClosetheLoop.github.io/
- IDEAgent: Agentic Quality-Diversity Search for Research Idea Generation
Large Language Models (LLMs) have significantly automated the process of scientific discovery over the past few years. However, existing systems share one core limitation: they generate and optimize ideas independently for either Quality or Diversity. This often leads to the generation of ideas in close proximity to one another or to a large set of trivial, unsound, or unclear concepts. In this work, we instead argue that research ideation should be treated as a conjunction of both objectives and framed as a Quality-Diversity (QD) search. In line with this perspective, we introduce IDEAgent, a multi-agent framework that manages the evolution of ideas through lineages. We jointly drive Quality using multi-objective feedback for dedicated repair and refinement, while Diversity is achieved through lightweight sequential memory and explicit comparison against completed ideas, their historical ancestors, and rejected proposals. To systematically evaluate this QD conjunction, we develop Yield, a joint metric that computes the largest set of mutually diverse ideas that satisfy a predetermined quality threshold. Finally, through evaluations across 32 topics spanning 8 domains of Computer Science, we show that IDEAgent outperforms the best baseline by 3.89x on Yield, while achieving non-zero Yield on 8x more topics. We further corroborate these findings through an analysis of quality improvements, showing that repair and refinement are crucial for building logical rigor and clarity while preserving non-obviousness. To encourage future research on QD-search-based ideation, we open-source IDEAgent at https://github.com/declare-lab/IDEAgent.
- SceneActBench: Can Agents Act on the 3D Scenes They See?
Vision-language model (VLM) agents increasingly use tools to act on 3D scenes rather than only describe them. Existing 3D benchmarks score textual responses or single-object operations, leaving agent action on complete multi-object 3D scenes under evaluated. We present SceneActBench, a benchmark for visually conditioned action across five 3D tasks under a unified agent-environment loop. Given PNG images or sampled video frames and, where applicable, supplied 3D assets, an agent acts on a 3D environment. We evaluate each final output against hidden ground truth with task-specific geometric metrics. SceneActBench comprises five tasks built from 210 source instances, yielding 520 task cases including paired input conditions. Every task runs through one fixed agent loop to keep the comparison fair. Across eleven proprietary VLM configurations, Overall scores span 38.6-50.2, and none performs consistently well across tasks. We further analyse where and how failures manifest.
- Spectral Prior for Reducing Exposure Bias in Diffusion Models
Diffusion models typically suffer from error accumulation during iterative sampling, commonly referred to as exposure bias. We reveal systematic frequency-dependent discrepancies between training and inference, which can be interpreted as frequency-dependent SNR error. Crucially, the direction of this mismatch varies across models and timesteps, indicating that fixed correction rules do not generalize. We propose Spectral Alignment (SPA), a lightweight, guidance-based method that calibrates the power spectrum of intermediate predictions to a pre-computed prior. Our approach consists of two stages: (1) offline fitting of a parametric spectrum model from training data, and (2) inference-time guidance via efficient FFT-based gradient computation. SPA introduces minimal computational overhead (3-4\%) and is complementary to Classifier-Free Guidance (CFG). We demonstrate consistent improvements across diverse architectures, from pixel-space models (DDPM, ADM) to latent diffusion models (SD2.0, SDXL) and flow-matching models (SD3.5, FLUX). Our implementation is available at https://github.com/SonyResearch/SPA.
- VisCo: Leveraging Large Language Models as Intrinsic Encoders for Visual Token Compression
Vision-language models (VLMs) process large numbers of visual tokens, resulting in substantial inference latency and memory overhead. This has motivated extensive research on visual token compression. While training-free strategies rely on heuristic metrics and suffer significant performance degradation under high compression ratios, many training-based methods introduce external compression modules that force the VLM backbone to adapt, incurring substantial retraining cost and compromising VLMs' priors. Effective visual token compression hinges on strong information encoding, a capability already present in pretrained VLMs but underutilized by existing approaches. Motivated by this, we propose VisCo, a training-efficient self-compression framework that reuses the pretrained VLM itself as an intrinsic compressor. VisCo is a parameter-sharing autoencoder that compresses visual information using a small set of memory tokens and transfers hierarchical information from encoding to decoding. Experiments show that VisCo surpasses prior methods across all evaluated compression ratios, with larger gains under more aggressive compression, and remains stable even in the extreme single-token setting. Moreover, when combined with the original visual tokens, the learned memory tokens can even improve the base model, suggesting that VisCo captures complementary representations beyond compression.
Techmeme(15)
- 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.
- 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 …
- 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
- 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.
- 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 …
- 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 …
- Microsoft says MAI-Cyber-1-Flash and MDASH, its vulnerability identification harness, deliver "world-class performance at 50% of the cost of leading models" (Microsoft AI)
Microsoft AI : Microsoft says MAI-Cyber-1-Flash and MDASH, its vulnerability identification harness, deliver “world-class performance at 50% of the cost of leading models” — Today we're announcing MAI-Cyber-1-Flash inside of MDASH, our multi-agent vulnerability identification and remediation harness.
- Sources: Nvidia has committed to invest $5B in Ilya Sutskever's SSI; the startup has previously raised about $3B in funding and was valued at $32B last year (Shirin Ghaffary/Bloomberg)
Shirin Ghaffary / Bloomberg : Sources: Nvidia has committed to invest $5B in Ilya Sutskever's SSI; the startup has previously raised about $3B in funding and was valued at $32B last year — Nvidia Corp. has committed to invest $5 billion in Ilya Sutskever's artificial intelligence startup Safe Superintelligence Inc. …
- Microsoft introduces MAI-Cyber-1-Flash, an AI model trained for cybersecurity, and launches Perception, an agentic security system to patch vulnerabilities (New York Times)
New York Times : Microsoft introduces MAI-Cyber-1-Flash, an AI model trained for cybersecurity, and launches Perception, an agentic security system to patch vulnerabilities — As some executives fret over the safety of new A.I. systems, protecting against them could be a big business for tech companies.
- Moonshot AI releases model weights for Kimi K3 under the "Kimi K3 License" (Bloomberg)
Bloomberg : Moonshot AI releases model weights for Kimi K3 under the “Kimi K3 License” — Moonshot AI has made its Kimi K3 model available for public download, expanding its reach and influence in the global open software community at a time of growing US concern about Chinese encroachment into the top echelons of AI development.
- ASML shares fall 7%+ after a report that a Chinese state-backed company has begun manufacturing DUV machines; Applied Materials fell 6.5%+ and Lam Research 7%+ (Sarah Jacob/Bloomberg)
Sarah Jacob / Bloomberg : ASML shares fall 7%+ after a report that a Chinese state-backed company has begun manufacturing DUV machines; Applied Materials fell 6.5%+ and Lam Research 7%+ — ASML Holding NV shares slid to the lowest since early June after a report that a Chinese state-backed company …
- Antares, which is developing reactors with 1 MW of capacity for US military bases, raised $370M in equity and $100M in debt co-led by Paradigm and Caffeinated (Will Wade/Bloomberg)
Will Wade / Bloomberg : Antares, which is developing reactors with 1 MW of capacity for US military bases, raised $370M in equity and $100M in debt co-led by Paradigm and Caffeinated — California startup Antares Nuclear Inc. raised $470 million to advance plans to build small reactors aimed at supplying power to US military bases.
- Source: Sam Altman will meet with senior US officials, lawmakers, and economists in Washington, DC, this week to preview OpenAI's upcoming family of AI models (CNBC)
CNBC : Source: Sam Altman will meet with senior US officials, lawmakers, and economists in Washington, DC, this week to preview OpenAI's upcoming family of AI models — OpenAI CEO Sam Altman will meet with senior Trump administration officials, lawmakers and economists in Washington, D.C. …
- Framework Laptop 13 Pro review: very good Intel Core Ultra X7 performance, excellent build quality and keyboard, but expensive because of high RAM prices (Antonio G. Di Benedetto/The Verge)
Antonio G. Di Benedetto / The Verge : Framework Laptop 13 Pro review: very good Intel Core Ultra X7 performance, excellent build quality and keyboard, but expensive because of high RAM prices — Framework laptops always come with compromises in exchange for their unique DIY premise. Even though you pay extra for one compared …
- NBCU and YouTube reach a multiyear deal to include all Peacock content in YouTube Premium subscriptions in the US starting in early 2027 (Lillian Rizzo/CNBC)
Lillian Rizzo / CNBC : NBCU and YouTube reach a multiyear deal to include all Peacock content in YouTube Premium subscriptions in the US starting in early 2027 — NBCUniversal's Peacock is officially landing on YouTube. — All of the streaming service's content — including NBC Sports' portfolio of the NFL and NBA …
Solidot(15)
- 可再生能源有望成为全球最大的发电来源
国际能源署(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 年强于预期的厄尔尼诺现象可能会增加制冷需求,进一步推高电力需求,同时可能导致部分地区的水力发电和风力发电量下降,增加对其它发电方式的依赖。
- 干涸湖床释放出大量的碳
数据显示,1990 年代以来,世界各地的大型湖泊水量减少五成。而干涸的湖床会将原来储存的碳释放到大气中。根据发表在《科学》期刊上的一篇论文,对全球最大的干涸湖泊咸海的研究显示,自 1960 年代干涸以来咸海向大气释放了 2.04 亿吨二氧化碳。研究是基于现场调查和收集的岩芯样本。如果咸海重新注满水将会带来巨大的环境益处。研究人员计算重新注满湖床可阻止剩余约 1.65 亿吨碳的释放。研究还发现,咸海近五分之一的碳排放是随着风吹走湖底沉积物而释放出来的,这一因素此前未被研究人员考虑在内。
- 没有快乐的颓废时代
现代生活提供了无数的消遣,但社会为何会弥漫着空虚感?为什么如此多的人既过度兴奋又感到索然无味?欢迎来到一个没有快乐的颓废时代。颓废这个词不可避免带有贬义。对颓废的批评通常来自右派,今天仍然如此。保守派亿万富翁 Peter Thiel 以及美国共和党副总统 JD Vance 都对此进行过抨击。左派思想家也对当今的现象感到担忧。但当代文化的问题不在于我们过于颓废,而是我们继承了颓废的表面——奢华、过度、矫揉、肉体展示——却放弃了对快乐的追求。结果造就了一种文化:快乐被优化程序所取代,被大规模替换为麻木的算法刺激和即时满足的承诺。无论你追求的是商品、食物、艺术还是思想,你都能获得更多、更快、立即获得。但数量和速度无法取代缺乏快乐的核心。今天的社会次序极度不平等,而主导的统治阶级不信任享乐。想想马斯克等科技巨头倡导的 80 小时周工作制。由于他们拥有巨大的政治和文化影响力,对公共和私人投资的掌控,以及他们逃税的习惯,超级富豪阶层的快乐缺失最终影响到了所有人。快乐缺失最具有文化代表性的莫过于 GLP-1 减肥药。根据盖洛普 2025 年的一项民意调查,八分之一美国成年人正用 GLP-1 减肥,预计到 2035 年此类药物的全球市场规模将达到 1900 亿美元。GLP-1 药能给肥胖者带来切实的好处,但我们不禁要问:如此广泛的接受控制食欲的药物,反映了文化中对愉悦和欲望怎样的态度?AI 标志着人工技巧的胜利,其影响之深远超昔日颓废派人士的想象。然而 AI 非但没有增强我们感知强度的能力,反而对两者都构成了新的威胁。它的作品都显得异常空洞,背后没有任何切身的体验、具象或感觉。AI 是一台毫无乐趣的颓废机器。AI 没有快乐也没有痛苦,它无需承担任何责任。由算法驱动的文化充斥着垃圾信息,这些信息承诺提供麻木而空洞的刺激。快乐并非仅仅关乎享乐主义或沉溺于无用之物。它是我们作为有形之躯感知价值的主要方式之一。痛苦教会我们不要两次触摸滚烫的炉灶;愉悦引导我们走向洁净水源和呼吸甘甜清新空气。愉悦感并非完美无缺:有些令人愉悦的事物残酷、令人上瘾或具有破坏性。但切身感受愉悦感对于我们如何学习以及如何判断何为善、何为美、何为值得追求至关重要。这些判断不能轻易交给没有身体的机器。
- 日本作家东野圭吾因癌症去世,享年 68 岁
日本作家东野圭吾 23 日凌晨因大肠癌去世,终年 68 岁。他是著作等身的多产作家,凭借直木奖获奖作品《嫌疑人X的献身》、以及被改编成影视作品的《白夜行》等推理小说在海内外广受欢迎。东野生于大阪市,葬礼已以由亲属等少数人参加的形式举行。东野毕业于大阪府立大学,之后进入日本电装公司担任工程师,工作之余创作小说。1985 年凭借《放学后》斩获江户川乱步奖,次年转型成为职业作家。1999 年凭借《秘密》获得日本推理作家协会奖,奠定了作为推理小说家的地位。他凭借以物理学家汤川学为主人公的“伽利略系列”第三部《嫌疑人X的献身》荣获直木奖。这一系列的累计发行量突破1000万册,成为超级畅销作品。“伽利略系列”最新作品《永远的记忆》定于 8 月 5 日出版。东野一生创作了 106 部作品,在日本国内的累计发行量超过 1 亿册。
- 中国计划克隆 100 头优质牦牛
野生牦牛数量过去三十年减少了逾三分之一,据野生动物保护协会统计,目前仅存 1 万至 2 万头。部分珍稀物种如金丝野牦牛仅剩 300 余头,濒临灭绝。西藏高原生物研究所等研究团队试图通过克隆优质种牛去解决牦牛繁殖率低、优质种源少、种质退化等问题。2025 年 7 月 10 日,世界首头体细胞克隆牦牛诞生。今年 3 月-4 月研究基地先后诞生了 10 头克隆牦牛。研究人员的目标是到 2028 年克隆 100 头优质牦牛。专家承认,在自然保护中使用克隆技术以及在养殖业中使用基因选择有其合理性。但哈佛医学院兽医兼生物伦理学家 Lisa Moses 指出其伦理边界仍然是模糊的,任何克隆项目都应高度透明并接受公众监督。
- 抹香鲸靠吐泡泡维持睡眠时的平衡
抹香鲸是以竖立的方式在海面下睡眠的,它如何在睡眠中保持平衡?根据发表在《实验生物学杂志》上的一项研究,研究团队在挪威海域为野生抹香鲸安装了吸盘式记录仪。这种装置能够记录声音和三维运动数据。研究人员不仅捕捉到清晰的气泡释放声,还结合鲸体运动、组织密度、水中阻力以及体内气体体积等信息建立模拟模型,分析抹香鲸休息时的浮力变化。结果显示,抹香鲸在休息过程中释放气泡,可有效降低自身正浮力,使其能够持续停留在海面下方而不会缓慢上浮。这种调节极为重要,因为抹香鲸头部富含鲸脑油,天然具有较强的浮力。同时,作为闭气潜水动物,抹香鲸若在休息过程中缓慢上浮,肺内气体会随着环境压力降低而不断膨胀,进一步增加浮力。释放气泡则有助于抵消这一效应,使其保持接近中等的浮力。研究团队表示,抹香鲸能够在疑似睡眠状态下完成如此精细的浮力调节,展现出极高的生理控制能力。
- 欧洲北美野火肆虐
过去一周欧洲的法国、西班牙和苏格兰,以及北美的美国和加拿大都有野火肆虐。其中法国的火势甚至形成了被称为“火积云”的现象,极大的增加了灭火的难度。“火积云”会导致其移动路径上的一切物体燃烧,如果云层还形成了闪电,那么闪电将会极大的助长火势。气候科学家表示,全球气温仍将继续升高,随着气温上升,森林会变得干燥,野火的规模、强度和频率也会增加。情况不会好转只会恶化。人类可能需要养成购买空气净化器和戴口罩的习惯。加拿大由于北方森林辽阔,大部分地区没有道路,因此灭火难度很大。相比下美国的森林面积更小,道路网发达,能适应频繁发生的低强度火灾。
- 亚马逊要求第三方卖家标记 AI 生成图像
在纽约州通过法律要求提高广告中 AI 生成人物的透明度之后,亚马逊要求第三方卖家标记包含 AI 生成人物的产品图像或视频。亚马逊表示这是为了遵守法律,并澄清该要求不适用于包含电视/游戏/电影角色或包含真人的内容,即使这些内容用 AI 进行了处理。第三方卖家占亚马逊商品销售额的六成以上。目前美国尚无全国性法律要求企业披露 AI 生成的广告内容,但 YouTube、Meta、Pinterest 和 TikTok 等平台已经为 AI 生成内容添加了标签。
- 35 名学生有 32 名在历史考试中使用 AI 生成答案
历史学教授 Jason Gibson 在一则浏览量逾千万的 Tiktok 视频中说,他的两个班级共 35 名学生有 32 名学生期中考试不及格,因为他们都用 AI 生成了全部答案。而且他们根本检查都没检查。识别作弊非常简单,试卷隐藏了一个白色的提示词,如果直接拷贝题目扔到 AI 工具里,那么 AI 会根据该提示词的指令去生成一段包含马达加斯加的无意义句子。在考试后他向学生解释是如何发现作弊的,给予学生机会申诉成绩,只有两名学生选择申诉。他在视频中分享了学生使用 AI 生成的马达加斯加句子。
- 华为据报道在建造内存芯片工厂
在内存天价的时代,华为据报道与昇维旭(SwaySure)等合作建造一座 12 英寸内存芯片工厂。昇维旭被认为是一家华为关联企业,该公司生产的内存芯片不是面向消费者而是面向企业的 HBM。另外中国最大的内存芯片制造商长鑫本周一上市,立即成为中国市值最高的上市公司,其市值达到了 3.68 万亿元(约 5434.1 亿美元),超过了英特尔的 4640 亿美元。
- 社区爱好者给 Scratch 引入了 AI 编程助手
unbug 写道: Scratch 因可视化编程风靡全球,尤其深受教培机构的喜爱。如今,社区爱好者给 Scratch 引入了 AI 编程助手,帮助没有编程知识的家长也能跟着孩子学习编程和创作。Scratch AI 编程助手的特点是通过语音和文字的自然语言输入,以可视化的方式一步一步教学生编程和数学知识,在十分钟内就能帮助学生从设计到创建角色造型、创建场景、完成算法和测试,最终完成一个个故事、动画和互动小游戏。这打破了以往先学概念再学创作的漫长模式,让学生从创作中学习,将计算思维、数学思维和逻辑思维的教学门槛降到了最低。还在犹豫暑假是否报编程班的家长,花半个小时就能试出孩子是否有兴趣。 Scratch AI 编程助手:https://app.vibelf.com
- GrapheneOS 警告在胁迫下删除手机数据可能会有法律后果
安全加固 Android 操作系统 GrapheneOS 项目通过其官网介绍了锁定设备的防数据提取功能,警告使用胁迫密码删除手机数据可能会导致人身伤害或法律后果。GrapheneOS 称其安全功能目前是基于 Google Pixel 手机的硬件安全特性,2027 年通过与摩托罗拉和高通合作将会扩大到其它设备。开发者称 GrapheneOS 不依赖于“胁迫密码”保护用户数据,操作系统在 Android 以及 Pixel 基础上提供了大量安全特性,包括:针对暴力破解,10 次失败后设备锁定 4 小时,15 次失败后锁定 41 天,最多允许 20 次尝试;密码支持最长 128 个字符,支持使用高熵的 Diceware 密码短语,可选指纹 PIN 码;设备锁定时会在软件和硬件层面阻止新的 USB 连接;锁定设备间隔 18 小时后会自动重启;Android 为每个次要用户(secondary user)和私密空间使用独立的加密密钥加密数据,等等。
- 多家知名网站考虑彻底屏蔽 Google
USA Today、Politico、Economist、People 和 Reuters 等知名网络出版商考虑彻底屏蔽 Google,甚至与 Google 签署了每年 6000 万美元合同的 Reddit 也在重新评估与 Google 的关系。原因是 Google 的 AI 摘要功能导致了网站访问量大幅下降,如 USA Today 过去一年来自美国用户的访问量下降了近一半,主要吸引用户评论的 Reddit 也注意到 Google 的 AI 在阻止用户访问其网站。鉴于 Google 在搜索市场占据了最高市场份额,与 Google 完全终止关系可能会导致访问量更大幅度的下降,但继续允许 Google 抓取内容用于其 AI 功能也没有任何好处——从长远看会加速其死亡。
- Cloudflare 将从 9 月 15 日起对新域名默认屏蔽 Google 爬虫
Cloudflare 宣布将从 9 月 15 日起对三类机器人——搜索爬虫、训练 AI 的爬虫以及智能体机器人——设置新的默认值。对于新加入 Cloudflare 的域名,默认将屏蔽训练 AI 的爬虫以及智能体。但有些机器人爬虫兼具了搜索爬虫和 AI 爬虫的双重功能,因此根据新规则 Googlebot、Applebot 和 BingBot 都将被屏蔽。客户如果不想完全屏蔽此类双重功能爬虫,他们可以在设置中进行修改,排除如 Google 的爬虫——毕竟 Google 垄断了整个搜索市场。
- 苹果改编的《神经漫游者》将于明年 1 月上映
苹果在 2024 年宣布将威廉·吉布森(William Gibson)著名的赛博朋克小说《神经漫游者》改编成 10 集电视剧,登陆 Apple TV Plus。在本周举行的圣迭戈漫展 Comic-Con 2026 上,苹果公布了《神经漫游者》电视剧的首个预告片,宣布它将于 2027 年 1 月 22 日上映。《神经漫游者》出版于 1984 年,故事讲述了一名神经受损的顶尖黑客 Case 与指甲下有可伸缩刀片的女刺客 Molly 搭档,对一个有着不为人知的秘密的超级企业实施盗窃活动。
OrangeBot Weekly
The best new AI tools + Claude Code skills, every week — with my verdict on what’s actually worth your time. No hype.
Free · One-click unsubscribe · No spam