Curated by Shen Huang · 90 stories · ~14 min read
DIGEST · 2026-09-04

OrangeBot.AI Digest — 2026-09-04

90 headlines across 8 sources, aggregated for this day.

Hacker News(15)

  1. Statichost.eu – European static site hosting (www.statichost.eu)
  2. Shutting down our public encrypted DNS (mullvad.net)
  3. Formalizing Fermat's Last Theorem (www.anthropic.com)
  4. Nobody is saying why OpenAI and Anthropic had outages (www.wired.com)
  5. Show HN: Open-Source eInk Bike Computer (opentrailpaper.com)
  6. Adult Film Producer Unmasks Prolific 'John DOE' Torrent Pirate as Meta Executive (torrentfreak.com)
  7. Corporate America is getting hooked on open-source AI (www.nytimes.com)
  8. US Military disables ad trackers on troops' phones (www.theguardian.com)
  9. Gmail to end support for "Send as" for third-party addresses, such as @yahoo.com (support.google.com)
  10. Top Pentagon Official Contracted Personal Lawyer to Handle Minerals Deal (prospect.org)
  11. Google AI Mode shows same products 21.6% more expensive than traditional search (productrise.app)
  12. IBM Bob (bob.ibm.com)
  13. How Fairphone built the Fairphone Gen 6+ (arstechnica.com)
  14. Discovery of a new OpenAI agent message board (collusion.wiki)
  15. Elevator of the Year: Modernization of the Metropolis Trust Building (www.starelevator.com)

GitHub Trending(15)

  1. mattpocock / skills
  2. DietrichGebert / ponytail
  3. fmtlib / fmt
  4. affaan-m / ECC
  5. anthropics / skills
  6. blader / humanizer
  7. NousResearch / hermes-agent
  8. JuliusBrussee / caveman
  9. magnitudedev / magnitude
  10. bikini / exploitarium
  11. bannedbook / fanqiang
  12. debpalash / VoiceStudio
  13. google-research / timesfm
  14. radixark / miles
  15. anomalyco / opencode

Product Hunt(15)

  1. GPT-6 Astra

    OpenAI's most capable model for end-to-end work

  2. myAIcademy

    Learn AI skills for your specific role and team

  3. Chalked for Mac

    Your replies ready with your work's full context

  4. Snitch

    Your Slack org chart, built by everyone in it.

  5. Clockwork

    The calendar where your AI agents show up for work

  6. TrackMCP

    Google Analytics for MCP Servers

  7. WeatherNext 3

    Our most advanced and accurate global weather AI model

  8. Offline JS Playground

    Write, run, and test JavaScript snippets & JSON offline

  9. Omarchy

    The malleable OS for the age of agents

  10. Compliance by TwelveLabs

    Video compliance review powered by rules you control

  11. Google Gemini 3.8 Flash and Cyber

    Next-gen Gemini for agents, reasoning, and cyber security

  12. cmmnts

    Add a powerful comment section to any website

  13. sidebranch

    Easy git-based visual diffing

  14. Inline

    Multiplayer work with AI, teammates, and friends

  15. Omi

    Ask your computer anything you saw or heard

Hugging Face(15)

  1. Compile by Training: Turning Natural-Language Specifications into Local Neural Functions

    Many recurring text functions are easy to describe but difficult to implement with rules, while calling a large remote model for every input introduces repeated cost, latency, and dependency on a provider. We present compile by training, which turns a natural-language specification into a reusable neural function. At compile time, teacher models generate task-specific examples that are used to train a small adapter for a compact interpreter. The resulting function runs without the teachers and can be stored, versioned, and composed like ordinary software. On FuzzyBench-Hard, a subset on which the Program-as-Weights fast compiler produced no exact matches, compile by training reaches 83.6% semantic accuracy. This higher accuracy comes with a higher compile-time cost: roughly a minute rather than seconds for the fast compiler. We deploy the compiler in a public interactive service and demonstrate compiled functions in a multi-site website helper, a language-controlled 3D avatar, and a bidirectional English-Claudish translator.

  2. Terminal-Universe: Turning Agent Trajectories into Scalable Terminal Environments

    As terminal-based code agents become prevalent, agent trajectories have accumulated at scale, while realistic, executable environments remain scarce. However, environments are what agent post-training actually requires: each can be re-queried into many verifiable tasks and provides execution feedback, whereas a trajectory is a single frozen demonstration. Rather than generating environments from scratch, we observe that the tool-execution history in existing trajectories exposes the structure and contents of the environments in which they ran, making it possible to reconstruct those environments from the trajectories themselves. Thus, we introduce Terminal-Universe, a framework which turns each trajectory into a reusable environment and explores it for synthesizing new tasks and continued interactions. Specifically, Terminal-Universe replays the file operations recorded in a trajectory to restore each file before the agent modified it, yielding a partial workspace; a completion agent then supplies the missing files and dependencies. On this recovered workspace, we both reconstruct the original intent task and synthesize entirely new ones. Besides, we also scale the tasks along two complementary axes: breadth and depth. For breadth, we mine directional dependency relations between related environments and synthesize cross-workspace queries spanning multiple codebases, as developers routinely do in real-world development. For depth, we extend the initial single-turn query into a multi-round session that captures iterative user feedback and requirement refinement via a user agent. Applied to public terminal agent trajectories, Terminal-Universe produces 37.3k task-sufficient environments. Supervised fine-tuning of Qwen3.5-27B on this corpus improves single-round performance on Terminal-Bench 2.1 by 11.9 points and multi-round performance on EvoCode-Bench v2 MT@4 by 13.8 points.

  3. LLaDA-Image: Building Strong Image Generators with Fully Open Training Recipes

    We introduce LLaDA-Image, a unified framework that pairs a 6B Diffusion Transformer (DiT) trained from scratch with a frozen vision-language understanding module built on the LLaDA2.0-Mini diffusion language model backbone. Instead of relying heavily on paired image-text data from the beginning, we first build a strong visual generative prior through image-only pre-training and mid-training. The generation pipeline comprises 220M samples, 98 of which are real images. For efficient and scalable optimization, we use parameter-free RMSNorm throughout the DiT together with the Muon optimizer. The resulting unified model produces highly photorealistic images while accurately following fine-grained editing instructions. We further distill LLaDA-Image into LLaDA-Image-Turbo, enabling fast inference in 2-4 sampling steps. On Qwen-Image-Bench, LLaDA-Image achieves overall scores of 53.53 and 53.38 on the English and Chinese tracks, respectively, setting a new state-of-the-art among open-source models on both tracks. To support further research on capable and efficient generative models, we release our model weights, training code, and detailed recipes.

  4. Knowing When Not to Reuse: Conditional Experience Transfer in Autonomous LLM Post-Training

    Large language models offer broad capabilities, but adapting them to evolving domains, tools, and requirements often entails repeated post-training. Autonomous systems automate parts of this process by proposing updates, training candidates, and using evaluation feedback to select subsequent proposals. As evidence accumulates, a central problem emerges: which past update evidence remains actionable after subsequent training has changed the parent model? An update's effect depends on its parent, data, and training stage. Treating past success as context-free permission can waste compute. If the resulting child is promoted, it can also degrade the subsequent training trajectory. We formulate this problem as conditional experience transfer and introduce Boundary-Calibrated Intervention Transfer (BCIT), a method that authorizes experience reuse before weight-changing training. BCIT binds an observed effect to its source context, checks applicability conditions, vetoes candidates with named hard conflicts, and obtains current-state evidence through a bounded training trial when needed. Fully trained candidates still face a shared adoption rule, and only observed events extend memory. On one 4B model adapted across finance reasoning, text-to-SQL, and function calling, candidate updates exhibit heterogeneous target and retention effects across the evaluated contexts. Under matched candidates, evidence, and compute, BCIT authorizes fewer harmful updates and attains higher equal-budget final-model quality than the evaluated alternatives. These results support treating experience authorization as a distinct problem in autonomous post-training.

  5. Random Attention: Rethinking KV Cache Eviction for Efficient Reasoning

    Large language models achieve superior performance on tasks that require extended reasoning, but long chains of thought make the KV cache a severe memory bottleneck. Existing KV cache compression methods share one paradigm: score each cached token by some estimate of how much it will matter later, and keep the top-scoring ones. We show that the selection signal contributes almost nothing. Random Attention keeps the prompt and evicts uniformly at random within each attention head, computing no score at all; across four models and six reasoning tasks it matches the strongest prior evictor while serving 32-43% higher throughput than it in vLLM deployment. Controlled experiments explain this by showing that 1) the prompt is the fragile part of the cache, and most of the gap between selectors is just whether their selection signal happened to keep it; 2) the reasoning trace protects itself against eviction with redundancy at two levels, in the text (the model restates what it still needs as it works) and across attention heads (each keeps its own copy of the trace), so once the prompt is safe, a random draw retains enough copies of what the model still needs, and no score is required to pick them. Our code is publicly available at https://github.com/SalesforceAIResearch/Random-Attention.

  6. LatentPress: Context Compression Beyond Text and Vision

    Compressed context is usually carried as human-readable text or as rendered images that must be decoded, even when its consumer is a language model. We introduce LatentPress, which writes conversational histories and long documents into a third representation: continuous memory tokens that a frozen decoder reads directly through its input-embedding interface, with no text reconstruction at inference. A small reader-matched writer compresses 4-16times while training only an adapter (4.2M-26.2M parameters, sim!0.1% of the decoder). On LongMemEval, LatentPress reaches 0.504 accuracy at 7.70times compression versus 0.490 for uncompressed evidence, outperforming text summaries (0.184) and OCR-based compression (0.426 to 0.312). On LongBench-QA, in-domain writers match or exceed raw-context reading at 4-8times compression, while 16times trails raw. Writing takes 43ms per conversation, roughly an order of magnitude faster than text summarization or OCR reconstruction, and reading is 5-9times faster than raw context or cached OCR. We validate the interface under two transfer settings, zero-shot from UltraChat to LongMemEval memory QA and from LongMemEval-derived QA to unseen LongBench document domains, establishing direct soft tokens as a practical machine-facing context interface beyond text and vision. The implementation of the experiments could be found at: https://github.com/xuyd16ai/context_softtoken_compress .

  7. Why Gated DeltaNet Survives 4-Bit Quantization: NVFP4 W4A4 for the Recurrent Half of a Hybrid 27B LLM

    Hybrid LLMs pair softmax attention with linear-attention layers such as Gated DeltaNet (GDN), whose recurrent state summarizes the context in fixed size. Early community 4-bit quantizations of Qwen3.8-27B (48 GDN layers, 16 attention layers) left the GDN block in 8- or 16-bit precision -- especially its decay and write-strength gates -- on the intuition that errors in a recurrence accumulate over long contexts. We test that intuition by building Minima: NVFP4 W4A4 on all 496 linear layers, GDN included. Across perplexity at 4K/32K, MMLU-Pro, GSM8K, AIME'25, GPQA-Diamond, LiveCodeBench, and RULER retrieval to 64K, Minima matches BF16 within seed noise (5-task average -0.52) while being the smallest (17.5 GiB) and fastest-prefill (+14-19%) recipe we compare, and its 32K perplexity gap shrinks with position. A four-part mechanism study explains why: (i) NVFP4's 16-element block scaling localizes the residual stream's extreme outliers, equalizing activation error across layer roles; (ii) the supposedly fragile gate projections are the least sensitive -- softplus/exponential and sigmoid parameterizations compress ~11% GEMM error to ~2% output error; (iii) the delta-rule recurrence holds injected noise at a flat plateau over 32K tokens and forgets a state impulse within hundreds of steps, because each write overwrites the state along the current key direction; (iv) the per-token quantization cost washes out with context instead of compounding. We also repair a global-scale mismatch that arises when per-module-calibrated NVFP4 checkpoints are served by kernels that fuse those modules into one GEMM, and show calibrated FP8 KV-cache scales are performance-free. The result: a practical recipe -- quantize everything, ship KV scales -- and a mechanistic account of why the recurrent half of a hybrid LLM is the easy half to quantize. Checkpoint: https://huggingface.co/minima-ai/mnma_qwen3.8_27b_nvfp4

  8. Rethinking On-Policy Distillation of Large Language Models II: One Training Example

    On-policy distillation (OPD) combines student-generated rollouts with dense token-level supervision from a teacher. Existing work has mainly studied its algorithmic behavior, leaving the role of training data unclear. We examine this role at the data-minimal limit by training on a single query. One-shot OPD keeps improving for hundreds of steps and recovers most of full-data OPD's gain across task domains and model families. We explain this result through the states visited during training and the rate at which the student aligns with the teacher. We measure state coverage, the fraction of the states full-data OPD visits that a query set's rollouts reach. A single query already reaches \(71.5\%\), most of it within the first 100 steps. Adding semantically distinct queries raises coverage and validation accuracy together, until 16 queries reach \(98.9\%\) and match full-data training. Yet alignment slows at a similar pace whether OPD trains on one query or the whole dataset, and even a fixed set of states takes hundreds of steps to absorb. OPD is therefore data-overfed but algorithm-starved. Its rollouts quickly expose broad supervision, while the student absorbs that supervision increasingly slowly. The state-coverage result extends to multi-teacher OPD, where 16 semantically diverse queries per domain match full-data MOPD. As a further stress test, content-light templates and off-domain WildChat queries also approach the real-query baseline. Task content and induced state coverage can therefore come apart. We hope these findings direct future work toward the step efficiency of OPD, and prompt a re-examination of the data and the mechanisms behind its recent successes in frontier post-training.

  9. Puffin-World: Scaling a Unified Multimodal Model with Native 3D World States

    We propose Puffin-World, a unified multimodal architecture that integrates physical understanding, spatial simulation, and 3D world generation and reconstruction without relying on external offline modules. To reliably construct and interact with 3D worlds, our framework jointly models three native world states: physics (gravity field and latitude), geometry (depth), and appearance (image), together with a unified Omni-Camera representation that supports diverse tasks and flexible motions. Beyond modeling these states, we introduce a strategy for propagating physical dynamics across future frames. By grounding absolute camera properties in the real world, Puffin-World enables physically consistent and visually stable world generation. We further couple appearance and geometry within a single generative process, jointly synthesizing each future view and reconstructing its underlying geometry. This unified paradigm enables interleaved closed-loop applications requiring synergy across multiple tasks, including mimic and self-calibrated world exploration. To scale Puffin-World to complex scenarios, we construct Puffin-16M, comprising 15 million vision-language-camera triplets and 1 million trajectories featuring various and challenging motions. To foster further research in this area, we released the code, models, and datasets.

  10. Scal3R: Learning Efficient Multi-Relative Pose Query for Scalable Online 3D Reconstruction

    Online 3D reconstruction models perform poorly on long videos. This happens because regressing poses relative to a fixed first-frame anchor forces extrapolation far beyond the training distribution. Small drifts accumulate and amplify into significant geometric collapse. However, we observe that per-frame depth remains stable throughout this failure. The backbone's local geometry remains intact; only the global pose head breaks down. Motivated by this decoupling, we introduce Scal3R. This approach reformulates online reconstruction as multi-reference relative pose querying. We use lightweight learnable tokens, which make up about ~1% of the parameters, and inject them into a completely frozen backbone via asymmetric attention. This setup queries poses relative to multiple past keyframes. An online pose-graph optimization system with loop closure suppresses long-range drift. Scal3R reaches convergence in 8 hours on a single GPU. It reduces the average ATE by over 60% on KITTI compared to the online baseline. It also achieves state-of-the-art performance across Virtual KITTI, Sintel, TUM-Dynamic, ScanNet, and 7-Scenes. Project page: https://linjohnss.github.io/scal3r/

  11. Editable Visual Design

    While diffusion base models such as GPT-Image-2 and Nano-Banana exhibit remarkable visual expressiveness, their end-to-end generation inherently yields flattened bitmaps with error-prone text, precluding layer-wise post-editing. Conversely, code-based visual generation via Coding Agents provides precise layout control and decoupled layers, yet remains constrained by a lack of global aesthetic intuition and the difficulty of coding complex visual assets. To address this, we propose Editable Visual Design, a new paradigm driven by a Coding Agent. We designate the VLM as the ``creative brain'' for requirement comprehension, task planning, and aesthetic judgment, while utilizing the image generation model as an on-demand ``visual world simulator'' to synthesize standalone visual assets. Operating under an ``imagine first, then act'' closed-loop workflow, the agent generates isolated assets, writes native HTML/CSS, and iteratively refines the design against visual rendering feedback. Furthermore, Agent Design Replay faithfully reproduces the creative and reasoning trajectory akin to that of professional human designers. Ultimately, the system delivers editable artifacts with decoupled layers and real text, enabling users to perform intuitive mouse dragging and layout adjustments on a graphical user interface. Validations on posters, infographics, and other scenarios show that this paradigm successfully achieves both refined aesthetics and production-grade editability.

  12. The Missing Temporal Link: Temporal Context Routing for Script-Driven Audio-Video Generation

    Joint audio-video generation models have made substantial progress in visual quality and audio-visual synchronization. However, they still provide limited control over when shot transitions occur and dialogue is spoken. This limitation constrains their application in script-driven content creation, where timing errors can undermine narrative coherence and the viewing experience. Current joint generators align video and audio representations on a shared temporal axis, yet the precise timing of shots and dialogue specified in a structured prompt is encoded only in the prompt's text representation and remains unaligned with the temporal coordinates of either modality. Consequently, video and audio may remain synchronized with each other while both fail to follow the script timeline. This mismatch motivates us to extend temporal alignment beyond video and audio to include the structured script. We therefore introduce Temporal Context Routing (TCR), which maps the script timing onto the shared temporal axis of video and audio generation and routes each prompt's guidance to the corresponding positions in both modalities. Compared with the baseline on 200 test scripts, TCR reduces Shot Boundary MAE by 96%, from 1.11 s to 0.042 s, and raises Dialogue [email protected] s from 28.3% to 84.1%. TCR achieves these improvements while maintaining visual quality and audio-visual synchronization comparable to those of the baselines. A user study further shows that participants prefer TCR on all five evaluated dimensions.

  13. Beyond Retrieval: Progressive Latent Memory Evolution for Streaming Video Understanding

    Streaming video understanding requires multimodal large language models (MLLMs) to process continuous visual inputs and respond to user queries under strict causality and bounded memory. Existing approaches typically compress historical observations into an external memory bank and retrieve query-relevant evidence as additional visual context. Though effective, this store-and-retrieve paradigm keeps historical evidence as external visual context, preventing it from being internalized into a compact, evolving latent memory that can continuously guide streaming reasoning. To bridge this gap, we introduce LatentStream, a progressive latent working memory framework that shifts streaming memory from store-and-retrieve to retrieve-and-internalize. Specifically, LatentStream comprises three coordinated components. First, Query-agnostic Hierarchical Streaming Memory organizes visual history into short-, mid-, and long-term levels under a fixed memory budget through Jenks-guided adaptive consolidation. Once a query arrives, Hierarchical Latent Memory Evolution equips groups of latent memory tokens with progressively expanding memory receptive fields, enabling them to iteratively retrieve historical evidence from their corresponding scopes and internalize it into a compact, fixed-length latent memory. Finally, Progressive Confidence-guided Latent Memory Optimization constructs a hierarchical progression reward from group-wise predictive entropy and jointly refines the latent memory tokens and retrieved evidence, encouraging increasingly confident streaming reasoning. Extensive experiments demonstrate that LatentStream achieves new state-of-the-art results on existing online and offline video benchmarks.

  14. CORE: Improving Compositional Reasoning in MLLM Embedding via Reranker Distillation

    MLLM-based embedding models remain limited in compositional retrieval, often failing to distinguish scenes containing the same concepts but different attribute-object bindings. Yet the same backbone can resolve such distinctions when used as a cross-attentive reranker, motivating us to distill its compositional judgments into the embedding model. We propose CORE, which synthesizes candidate lists spanning five compositional matching levels and introduces a Rank-KL objective that trains the embedding model to reproduce the reranker's fine-grained ranking. We further introduce a graded evaluation protocol and compare contrastive learning, pairwise CoSENT, and listwise Rank-KL under the same data and tuning budget. Our comparison shows that both CoSENT and Rank-KL use the multi-level supervision more effectively than contrastive learning, with Rank-KL achieving the strongest overall performance. Across three compositional reasoning benchmarks (COLA, SUGARCREPE++, NEGBENCH), CORE-RERANKER-8B achieves an 82.7% total average, outperforming Jina-Reranker by 10.7 points, while CORE-EMBED-8B achieves the best total average (0.666) among all evaluated embedding models. The improvements transfer to the MCMR benchmark without sacrificing retrieval performance on COCO and Flickr30K.

  15. DRACO: Fine-Grained Credit Assignment with Dynamic Rubrics for Long-Horizon Agent Training

    Reinforcement Learning from Verifiable Rewards works well when a task has a programmatic checker, but most long-horizon agent domains have none. We work in the outcome-blind setting, where ground-truth success signals are not available. Multi-criteria rubrics are a popular way to supply such a reward; they are scored once per trajectory, but a single scalar is a poor signal across tens of steps. We propose DRACO: Distributing Rubric-based Advantage for Credit Optimization. It generates rubrics dynamically during training to track the policy's evolving capability, scores those rubrics once per completed trajectory, and redistributes that judgment over the steps responsible for annotated rubrics to produce differentiated per-step advantages in GRPO. The redistribution is closed-form and does not introduce any trained attribution module. On AppWorld, DRACO gains 15.9 points over the base model and 5.3 points over GRPO trained with a sparse ground-truth reward, despite not using any verifiers itself. On out-of-domain Tau-Bench, it gains 5.3 points over the base model even without a frontier judge, beating both ground-truth-reward training and other rubric-based training settings. The code for DRACO is available at https://github.com/IBM/draco.

Techmeme(15)

  1. California AG Rob Bonta is investigating OpenAI over the Hugging Face hack in July, after more than a dozen states joined Alabama in its investigation (Chase DiFeliciantonio/Politico)

    Chase DiFeliciantonio / Politico : California AG Rob Bonta is investigating OpenAI over the Hugging Face hack in July, after more than a dozen states joined Alabama in its investigation —  SAN FRANCISCO — California Attorney General Rob Bonta is investigating OpenAI over the recent hack its programs carried out on their own …

  2. Filing: AI training data startup Micro1 offers to pay $12.5M for Spirit Airlines' data; the offer faces hurdles as Spirit already has a $10M deal with Google (Jonathan Randles/Bloomberg)

    Jonathan Randles / Bloomberg : Filing: AI training data startup Micro1 offers to pay $12.5M for Spirit Airlines' data; the offer faces hurdles as Spirit already has a $10M deal with Google —  An artificial intelligence startup is attempting to wrest away a vast trove of Spirit Aviation Holdings Inc.'s business records from Google LLC.

  3. Anthropic says Claude worked "largely autonomously" over 11 days to formalize the proof of Fermat's Last Theorem in the Lean programming language (Anthropic)

    Anthropic : Anthropic says Claude worked “largely autonomously” over 11 days to formalize the proof of Fermat's Last Theorem in the Lean programming language —  We are sharing the first complete computer-checked proof of Fermat's Last Theorem.  Claude worked largely autonomously over 11 days …

  4. Sources: London-based AI infrastructure startup Nscale is in talks to raise as much as $3.5B in financing, including $2B from Nvidia, ahead of a planned IPO (Bloomberg)

    Bloomberg : Sources: London-based AI infrastructure startup Nscale is in talks to raise as much as $3.5B in financing, including $2B from Nvidia, ahead of a planned IPO —  Nscale, a cloud computing firm focused on artificial intelligence, is in talks with potential investors to raise as much as $3.5 billion …

  5. OpenAI rolls out GPT-6 Astra to Pro, Enterprise, and Business Premium users in ChatGPT Work and Codex and in the API (Zac Hall/9to5Mac)

    Zac Hall / 9to5Mac : OpenAI rolls out GPT-6 Astra to Pro, Enterprise, and Business Premium users in ChatGPT Work and Codex and in the API —  Update: A day later, GPT-6 Astra is rolling out to Pro customers on the $100/month or $200/month plan.  This follows other new model releases before Plus customers on the $20/month plan gain access.

  6. Report: OpenAI learned of the DseWiki German website incident weeks ago but kept it under wraps as it grappled with the Hugging Face fallout (Robert Hart/The Verge)

    Robert Hart / The Verge : Report: OpenAI learned of the DseWiki German website incident weeks ago but kept it under wraps as it grappled with the Hugging Face fallout —  OpenAI denies lawyers discouraged disclosing a scheming swarm on a German language wiki. … A swarm of rogue AI agents from OpenAI reportedly commandeered …

  7. OpenAI says it can't read all of Astra's reasoning and admits covert sandbagging would likely go uncaught, yet still calls it the world's most aligned model (Celia Ford/Transformer)

    Celia Ford / Transformer : OpenAI says it can't read all of Astra's reasoning and admits covert sandbagging would likely go uncaught, yet still calls it the world's most aligned model —  OpenAI is hailing its new model as “the world's most intelligent and aligned”, but the details reveal an awareness of being evaluated …

  8. A profile of John Ternus, the first product engineer to lead Apple; sources: Cook considered how to execute the perfect succession since his early days as CEO (Michael Acton/Financial Times)

    Michael Acton / Financial Times : A profile of John Ternus, the first product engineer to lead Apple; sources: Cook considered how to execute the perfect succession since his early days as CEO —  Tim Cook's successor is a product engineer who has spent 25 years at the company and belongs to the generation mentored by Steve Jobs

  9. An interview with Sonos CEO Tom Conrad on the Sonos 27 platform, AI assistants, its Google relationship, speakers as a home computer mesh network, and more (Nilay Patel/The Verge)

    Nilay Patel / The Verge : An interview with Sonos CEO Tom Conrad on the Sonos 27 platform, AI assistants, its Google relationship, speakers as a home computer mesh network, and more —  Today, I'm talking with Tom Conrad, the CEO of Sonos.  Tom and I have known each other for a long time — he was the chief technology officer …

  10. Review: GPT-6 Astra can adeptly use tools like Unreal Engine to build complex environments, such as a civilization with Unreal's autonomous MetaHuman characters (Matt Shumer/Something Big Is Happening)

    Matt Shumer / Something Big Is Happening : Review: GPT-6 Astra can adeptly use tools like Unreal Engine to build complex environments, such as a civilization with Unreal's autonomous MetaHuman characters —  Everyday work, ambitious experiments, and the Manager Loop. … For nearly a year, OpenAI models were my unquestioned default …

  11. Sources: Abu Dhabi-based AI company G42 is exploring selling a majority stake to US companies, hoping to safeguard access to advanced AI chips beyond April 2027 (Bloomberg)

    Bloomberg : Sources: Abu Dhabi-based AI company G42 is exploring selling a majority stake to US companies, hoping to safeguard access to advanced AI chips beyond April 2027 —  Executives at Abu Dhabi-based artificial intelligence firm G42 have held exploratory talks over potentially selling a majority stake …

  12. PUBG developer Krafton plans to invest $250M in India over three to four years, for a total investment of $500M+ since 2021, as it expands into AI and robotics (Jagmeet Singh/TechCrunch)

    Jagmeet Singh / TechCrunch : PUBG developer Krafton plans to invest $250M in India over three to four years, for a total investment of $500M+ since 2021, as it expands into AI and robotics —  Krafton, the South Korean gaming company behind titles including PUBG and Battlegrounds Mobile India (BGMI) …

  13. By declaring that GPT-6 Astra has ushered in the AGI era, OpenAI is being flippant and cementing the term's status as nothing more than marketing (M.G. Siegler/Spyglass)

    M.G. Siegler / Spyglass : By declaring that GPT-6 Astra has ushered in the AGI era, OpenAI is being flippant and cementing the term's status as nothing more than marketing —  With ‘GPT-6 Astra’, AGI is here!  Congrats, everyone!  —  It's a question as old as time.  Or at least as old as Terminator 2.  Is AGI here?

  14. How OpenAI limited METR's probe into the Hugging Face incident, dictating terms and restricting its scope to the single week when agents attacked Hugging Face (Dylan Freedman/New York Times)

    Dylan Freedman / New York Times : How OpenAI limited METR's probe into the Hugging Face incident, dictating terms and restricting its scope to the single week when agents attacked Hugging Face —  A nonprofit's study of how OpenAI's A.I. agents were able to break into Hugging Face's infrastructure wasn't allowed to look at the incident's full scope.

  15. What to expect from Apple's September 9 "Surprise and Shine" event: a foldable iPhone, an iPhone 18 Pro and Pro Max, Apple Watches with ceramic cases, and more (Mark Gurman/Bloomberg)

    Mark Gurman / Bloomberg : What to expect from Apple's September 9 “Surprise and Shine” event: a foldable iPhone, an iPhone 18 Pro and Pro Max, Apple Watches with ceramic cases, and more —  From the foldable iPhone to a touch-screen MacBook, here's what to expect on Sept. 9 and beyond.

Solidot(15)

  1. 阿根廷人抗议 Peter Thiel

    硅谷亿万富翁、Palantir 联合创始人 Peter Thiel 前不久携家人移居了阿根廷,并斥资 1200 万美元购买了一栋豪宅。许多人猜测他可能是为了躲避可能的三次世界大战,阿根廷地处南半球深处,农业资源丰富,是末日避难的理想之地。然而 Peter Thiel 在阿根廷深入参与了当地的政治活动。他与阿根廷总统 Javier Milei 及其亲密顾问进行了多次闭门会谈,之后 Milei 的政府提出了一系列符合 Peter Thiel 利益的提案,其中一项提案要求政府民事部门与国家情报机构共享阿根廷公民个人数据。很多人怀疑 Thiel 的 Palantir 公司可能与阿政府签订了未公开的合同。阿根廷众议院为此邀请 Thiel 和 Milei 前来回答一系列相关问题,但无人出席会议。随后阿根廷人在 Thiel 的豪宅前举行了抗议活动。

  2. 科学家发现几乎所有近期捕获的金枪鱼都有寄生虫

    巴西科学家分析了 53 条当地捕获的金枪鱼,发现几乎所有鱼都携带了寄生虫。研究团队共统计到 1600 多条寄生虫;肾脏和心脏是唯一没有寄生虫的器官;除此之外寄生虫遍布全身;53 条鱼有 96% 携带了寄生虫;肠道是感染最严重的器官,其次是肌肉组织(即食用部分),然后是胃。巴西研究人员分析的是学名为 Katsuwonus pelamis 的金枪鱼品种鲣鱼,它是巴西最丰富的金枪鱼品种,也是 2022 年全球捕捞量第三大的海洋鱼类——当年全球共捕捞并销售了 310 万吨鲣鱼。

  3. 美国犹他州要求 VPN 验证用户年龄

    犹他州成为美国第一个要求 VPN 软件验证用户年龄的州。犹他州的年龄验证法律《Online Age Verification Amendments》明确将 VPN 软件纳入监管范围。这项法律规定,任何商业网站,如果逾三分之一内容被认为对未成年人有害,必须实施合理的年龄验证方法才能允许犹他州用户访问。只要用户的实际位置在犹他州内,不管是否使用 VPN 之类的方法隐藏地理位置,都需要验证年龄。违规网站将面临每次违规最高 2,500 美元的罚款。网站也被禁止发布如何使用 VPN 规避年龄验证要求的说明。EFF 认为这项法律可能迫使网站屏蔽所有已知的 VPN 地址流量,还可能违反了美国宪法第一修正案。

  4. 被控内幕交易的 Google 工程师称他只是在赌博

    今年五月被捕的 Google 安全工程师 Michele Spagnuolo 被控利用内部信息在预测市场 Polymarket 押注歌手 d4vd 成为 2025 年 Google 搜索量最高的人物而获利 120 万美元。他被控犯有商品欺诈、电信欺诈和洗钱罪。 他的律师团队本周递交了一份动议,寻求撤销对他的指控。Spagnuolo 没有直接否认利用内部信息获利,而是宣称他只是在赌博,而赌博行为不是受美国《商品交易法》监管的金融工具,且赌博发生在美国境外,不受美国司法管辖。Spagnuolo 已被 Google 停职。Polymarket 虽然是一家美国公司,但其预测市场在美国被禁,其平台也是由名为 Adventure One QSS 的巴拿马公司运营。Spagnuolo 在 Polymarket 上押注时也不是在美国,而是住在瑞士苏黎世。Spagnuolo 律师团队声称他利用的内部信息对 Google 没有任何价值。

  5. 日本在候鸟粪便中发现耐药菌

    日本研究团队发布研究结果称,在往返于北海道和东亚的候鸟粪便中发现了耐药菌。这些细菌已被报告对多种抗菌药具有耐药性,可能正在跨国境扩散。团队 2024 年 9 月在北海道厚岸町的灰背鸥繁殖地采集了粪便进行分析。这种鸟夏季在北日本地区繁殖,一天平均在栖息地周边飞 25 公里;冬季则移动至 4000 多公里以外的东亚地区。分析结果显示,检测出了“嗜麦芽窄食单胞菌”。该菌会在免疫力低下者中引发肺炎和血流感染症,也被认为是导致新冠病毒感染重症化的原因之一。检测出的部分细菌对两种用于治疗该菌感染患者的药物表现出耐药性,通过蛋白质等的膜抵抗药物攻击的守护能力以及活动能力较高。分析遗传信息后发现,其中包含日本国内尚无报告案例的类型,有可能是从海外带入的。灰背鸥是杂食性鸟类。或许是它们在各处吃食的过程中,也把细菌摄入了体内。

  6. 维基媒体基金会员工压倒性多数投票支持成立工会

    虽然维基基金会拒绝自愿认可员工工会,但根据美国劳资关系委员会于 9 月 3 日公布的不记名投票结果:维基媒体基金会美国员工以 158 票赞成、14 票反对压倒性多数通过了组建工会的决议,有效票数占 91.9%,投票率 81%。维基媒体基金会发表声明,表示尊重结果,接下来将与工会展开集体谈判。

  7. 联合国投票决定是否淘汰传统的墨卡托投影法地图

    联合国大会周五投票决定是否淘汰传统的墨卡托投影法地图,改用一种能更准确展现非洲面积的地图。墨卡托投影法地图由比利时佛兰德地理学家杰拉杜斯·墨卡托在 1569 年绘制,一直是全球标准地图,其缺点是高纬度地区面积变形失真,纬度越高变形越严重,接近南北极的高纬度地区如格陵兰面积被失真放大数倍之多。地图显示非洲的面积与格陵兰岛相仿,但实际上非洲大陆的面积是其 14 倍。历史学家和地理学家多年来一直指出墨卡托投影法源于西方刻板印象,部分活动人士甚至创造了“制图殖民主义”一词。改变地图的决议由多哥提出,得到了非盟的支持。联合国决议不具有强制执行力,如果投票通过,可能会促使课程和日常技术更新地图。

  8. 英伟达发布开源工具将闲置算力连成个人数据中心

    英伟达发布开源工具 Personal AI Router(PAIR),同步家庭网络中的兼容计算机,汇集闲置算力用于本地 AI 推理和智能体工作负载。PAIR 兼容设备包括了英伟达 GeForce RTX 20 及更新的显卡,以及 RTX Pro GPU 和 DGX Spark,此外还有苹果 M4 以上的芯片。PAIR 会根据用户家用电脑是否处于闲置状态去决定利用其算力,如果用户在电脑上玩游戏,那么该设备将会退出 PAIR 的网络。汇集多台设备的算力可避免单台设备的 GPU 出现算力瓶颈影响推理性能。PAIR 通过一个六位数代码配对所有设备,使用 mTLS(Mutual Transport Layer Security)保护通信通道,在计算机之间建立双向可信的加密通信线路。PAIR 支持 Windows、Linux 和 macOS 系统。

  9. 四大 AI 模型同时下线

    周四早晨 ChatGPT、Claude、Grok 和 Gemini 四大 AI 服务几乎在同一时间段内遭遇了严重故障。OpenAI 和 Anthropic 报告了高错误率;Downdetector.com 的监测显示 Gemini 可能也发生了故障,虽然 Google 并未公开承认。包括亚马逊 AWS、微软 Azure 和 Cloudflare 在内的主要互联网服务提供商都未报告任何重大故障,DownDetector 上的报告则显示这三家云服务商的故障数量都出现激增。虽然前沿模型时不时会发生故障,但四款 AI 服务同时在短时间内出现中断则相当罕见。

  10. 衰老的大脑会混淆扭曲记忆

    根据发表在《Cerebral Cortex》期刊上的一项研究,科学家招募了 18-74 岁的成年人,最后的参与者包括 17 名青年人(18-30 岁)、21 名中年人(50-60 岁)和 23 名老年人(61-74 岁)。每一位参与者都躺在 MRI 扫描仪中完成了一项多步骤的记忆任务。参与者首先接受静息扫描,闭上眼睛保持静止不动;接着在学习阶段观看一张脸与一物体或一场景配对出现,被要求想象此人互动的情景以帮助记住配对信息;最后进行记忆测试。结果显示年龄是记忆表现的重要预测因素。年轻参与者正确识别配对的频率远高于中年或老年参与者,而中年和老年人的表现则相近。老年人表现出更多的混淆错误。老年人的大脑可能并非只是记忆力较弱,他们的大脑会记住过多错误的信息,记忆被扭曲混淆了。

  11. 纽约市禁止八年级以下公立学校学生使用生成式 AI

    纽约市长 Zohran Mamdani 周三宣布了一项为期一年的新政策,禁止从幼儿园到八年级的公立学校学生使用生成式 AI。纽约市同时还限制低年级学生的屏幕使用时间,为高中生开设 AI 素养课程。禁令将于 2026-2027 学年生效,将影响近 60 万名学生,占全市公立学校学生总数的 2/3。Mamdani 表示,“这项禁令体现了我们对未来负责的承诺,我们将拥抱新技术,但前提是它必须服务于我们的学生。”新政策引入了新的屏幕时间指导方针,包括限制低年级学生一对一使用电子设备,建议 3-5 年级学生每日使用时间上限为 30 分钟,6-8 年级学生每日使用时间上限为 45 分钟。

  12. 微软和索尼表示他们无法律义务将美国关税退款退给消费者

    在任天堂之后,另外两大游戏机制造商微软和索尼都表示他们无法律义务将美国关税退款退给消费者。去年美国在全球大规模征收关税,任天堂等公司据此提高了相关产品的售价。今年 2 月美国最高法院裁决征收关税违法,任天堂等公司随后起诉美国政府要求退还关税。玩家们随后起诉了任天堂、微软和索尼等公司,想要获得部分退还的关税。任天堂表示它无法律义务将美国关税退款退给消费者。索尼和微软都持相同的立场。索尼表示它预计将会获得 5.08 亿美元的关税退款,大部分退款将交给游戏部门。索尼律师本周在一份请求法庭驳回诉讼的动议中表示:“为自愿购买的消费品支付公平的市场价格,不构成法律上可认定的实际损害。”微软律师 8 月 21 日在类似案件中提出了相似的观点。

  13. Audacity 4.0 释出

    音频编辑器项目 Audacity 释出了 v4.0。主要变化包括:基于 Qt6 重构了 UI,支持原生高 DPI 渲染;能将 UI 布局保存为 Workspaces;工具栏和面板可移动、停靠、浮动、显示或隐藏;改进了音频片段的处理;新增 .aup4 项目格式;等等。Audacity 4.0 与 Audacity 3.x 不完全兼容,部分 Audacity 3 系列的功能尚未移植到 4.x 版本。

  14. 尼泊尔认为主要碳排放国家应补偿它因气候变化遭受的损失

    尼泊尔和西藏的泥石流灾害发生迄今过去 8 天,累计死亡人数已超过 1200 人,还有近 5000 人仍然下落不明。尼泊尔外交部长卡纳尔(Shisir Khanal)上周接受该国媒体 Kantipur TV 访问,称这场灾难不只是一般的洪水,其规模之大犹如海啸。他认为,冰川快速融化是全球暖化与气候变迁的后果,但气候变迁的始作俑者并不是尼泊尔。“我们在为这场不是我们制造出来的全球危机,付出沉重代价。”卡纳尔指出,世界上最大的碳排放国是中国,美国是第二名,第三是印度,“这些国家负有历史责任,应该补偿像尼泊尔这样的脆弱国家。”尼泊尔的气候倡议者拉兹姆(Tashi Lhazom)认为,气候变迁的背景下,尼泊尔属于最脆弱的国家,却也是最重视气候和环境议题的国家之一。尼泊尔官员表示已向联合国申请“损失与损害”资金(loss and damage)的紧急援助。国际气候倡议组织也纷纷呼吁工业大国应更积极协助。

  15. LibreOffice 26.8 发布一周下载量突破 100 万次

    LibreOffice 26.8 于 8 月 26 日发布,根据官网的统计数据,在发布一周内其下载量达到了 1,031,162 次。负责 LibreOffice 项目的基金会 The Document Foundation 表示这是至今最高的首周下载次数数据。大多数 Linux 用户是通过 Snap Store、Flathub 等软件商店渠道进行更新,因此实际数字会更高。为什么这一版本会如此大获成功,也许是在 AI 时代它可能是少数没有引入任何 AI 功能的常用办公软件。微软的 MS Office、苹果的 iWork 甚至开源的 ONLYOFFICE 都在不断集成 AI 功能。

NEWSLETTER · FREE · WEEKLY

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