TEXT VIEW · TODAY'S DIGEST · 36 HEADLINES ACROSS 8 SOURCES

Startup Archive(0)

No items yet for today.

App Store Rankings(0)

No items yet for today.

ISSUE 0939
MON, JUL 27, 2026
OrangeBot.AI 智能策划和筛选每日科技趋势和新闻,为您节省时间。
TODAY · MON, JUL 27, 2026

Read what shipped.
Ship yours.

Newsletters tell you what shipped in AI. OrangeBot hands you the install line to ship yours — 2,000+ curated Claude Code skills, free browser tools, and a daily brief from ten sources for builders who don’t have time to scroll.

新功能!我们推出了用于保存推文和Reddit帖子的Chrome扩展程序。点击安装!
01

AI DIGEST

UPDATED DAILY · EDITOR'S PICK
01.00
AI DIGEST

AI新闻摘要

July 27, 2026

Here is a summary of today's main news events.

U.S.-Iran De-escalation Cools Markets

What: The U.S. paused plans to escalate its military campaign against Iran, leading to a significant calming of global financial markets. Why: The de-escalation eased fears of a wider conflict and potential disruptions to oil supplies. As a result, Brent crude oil prices dropped to around $87 a barrel, while global stock markets rallied. Investors are now shifting their focus to the upcoming U.S. Federal Reserve interest rate decision and key technology earnings reports.

AI Dominates Tech News with New Projects and Market Debut

What: Several major developments occurred in the artificial intelligence sector. A project to build one of the largest AI computing hubs with U.S. government involvement was announced, alongside a new open-source initiative to defend against AI-driven cyberattacks. Why: The AI boom continues to accelerate investment and innovation. Highlighting this trend, Chinese chipmaker CXMT had a massively successful stock market debut, with its shares soaring. This comes as companies across various industries report an increasing need to hire more staff to work alongside new AI systems.

Europe Grapples with Wildfires and Geopolitical Tensions

What: France is battling wildfires that officials say are "far from being under control" as another heatwave approaches. Why: Beyond the environmental crisis, European leaders are also addressing strategic challenges. They are calling for greater independence in technology supply chains for security reasons, navigating rising economic tensions with China, and managing strained relations between the UK and the EU.

Major Corporate Deals and a Fraud Investigation in Focus

What: In business news, Kuwait's oil sector signed a $16 billion lease agreement with a group of investors including Blackstone and KKR. Separately, U.S. authorities are investigating roughly $16 billion in private-credit deals connected to Mark Walter’s insurance companies for potential fraud. Why: These events highlight significant movements in global finance. The Kuwait deal signals major investment in the energy sector, while the fraud probe brings scrutiny to the rapidly growing private credit market.

Original · written by OrangeBot
OrangeBot Weekly · Issue #1 · by Shen Huang · 4 min read

The only 8 things that mattered this week

Semis had their worst week in a year, Meta got sued for letting AI pick layoff targets, and a Kaggle competition handed $25K to AI slop. Here's the fine print on all of it — and why none of it should scare you.

Read the issue →

Latest analysis

All posts →
02

ON THE WIRE

6 SOURCES
02

HACKER NEWS

02.00
HACKER NEWS

Hacker News - July 27, 2026

Hacker News Feed: Highlighting key posts and discussions.

Why I Left Google DeepMind

(www.lesswrong.com)

9228
Jacobian Conjecture for Baby

(muchmirul.github.io)

9314
PGSimCity - How PostgreSQL Works

(nikolays.github.io)

75070
The Strongest El Niño Ever

(www.theclimatebrink.com)

268303
Design is compromise

(stephango.com)

27288
Kill The Cookie Banner

(killthecookiebanner.eu)

1090532
Show HN: Reverse Minesweeper

(sunflowersgame.com)

23781
JetZero

(www.jetzero.aero)

254249
03

HUGGINGFACE

03.00
HUGGINGFACE

HuggingFace 新闻 - July 27, 2026

HuggingFace Feed:最新的 AI 模型、数据集和社区动态。

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.

23
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.

15
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.

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.

14
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.

13
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.

8
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.

7
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.

4
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.

3
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.

3
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/

3
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.

3
Multimodal Speaker Verification as a Threat to Speaker Anonymization

Most automatic speaker verification (ASV) systems operate on individual utterances, despite real-world interactions typically consisting of multiple utterances. As speech accumulates, increasingly rich speaker information becomes available through acoustic, prosodic, and linguistic cues, potentially challenging speaker anonymization methods that primarily target vocal characteristics. We investigate ASV in a multi-utterance, multimodal setting and examine whether aggregating information across anonymized speech impacts privacy. We first study audio-only aggregation across multiple anonymized utterances and observe consistent performance improvements as more speech becomes available. We then incorporate prosodic and linguistic information, showing that multimodal systems outperform unimodal approaches. Finally, we compare aggregation strategies and find that frame-level aggregation yields the lowest EERs. Even with only five anonymized utterances, combining audio and text reduces EER by over 15% relative to audio-only aggregation, demonstrating that substantial speaker-discriminative information remains accessible despite anonymization.

1
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.

1
05

PRODUCT HUNT

05.00
PRODUCT HUNT

Product Hunt - July 27, 2026

Product Hunt Daily Feed: Featuring noteworthy tech launches.

Comms icon
Comms

Launch iMessage agents in seconds

0
AI YC interview with Gstack agents icon
AI YC interview with Gstack agents

AI specialists that join your Google Meet and gives feedback

0
Tackly icon
Tackly

Map your thoughts in real time with AI.

0
Webhound icon
Webhound

A research engine for your agent

0
iMessage Hermes on a Raspberry Pi icon
iMessage Hermes on a Raspberry Pi

An always-on AI agent that lives in your home

0
Cynative Security Research Agent icon
Cynative Security Research Agent

Ask your cloud anything without breaking prod. Read-only.

0
Estera icon
Estera

AI Receptionist that Answers Calls & WhatsApp 24/7

0
Rivault icon
Rivault

Safely provide and store data and context for AI agents

0
Illume Labs icon
Illume Labs

24/7 personalized health companion you can text

0
Artifacts by Databox icon
Artifacts by Databox

Ask your AI Analyst and get back a ready-to-share report

0
Audos Summer Camp icon
Audos Summer Camp

Build your business idea with unlimited Fable/Sol credits ♾️

0
Edit Mind × Strava icon
Edit Mind × Strava

Every clip matched to the Strava activity it's from

0
Notate icon
Notate

Annotate anything for humans and their agents

0
Robynn AI icon
Robynn AI

Websites that improve and heal with self-learning

0
Adomate icon
Adomate

Turn data into winning ads. At scale.

0
superfile icon
superfile

A modern, visual file manager for the terminal

0
Claude Opus 5 icon
Claude Opus 5

Near-Fable 5 intelligence at half the price

0
Rescript icon
Rescript

A free, open source, Descript alternative. Runs in-browser.

0
localskills.sh icon
localskills.sh

AI Skill & MCP server management for teams & enterprises

0
Tunio icon
Tunio

AI Music operations platform for venues

0
FindDiskKiller icon
FindDiskKiller

See which apps are hammering your Mac's disk

0
Repaint Socials icon
Repaint Socials

Build a website from Google Business, Instagram, or Facebook

0
HeyZoku icon
HeyZoku

Orchestrate an army of coding agents with your voice.

0
Grok 4.5 icon
Grok 4.5

SpaceXAI's model for coding, agentic tasks & knowledge work

0
TouchGrass icon
TouchGrass

Context-aware break reminders without invasive permissions

0
BrainFeed icon
BrainFeed

A personalized learning feed that redirects your scroll

0
Openbase icon
Openbase

Manage your team of AI agents by voice, from anywhere

0
Forgeon icon
Forgeon

Create, publish, and experience interactive stories

0
Aymo AI icon
Aymo AI

All-in-one AI Platform for Teams

0
CodexBar Lite icon
CodexBar Lite

Privacy-first Codex tracker for your macOS menu bar

0
Athena by Shoplazza icon
Athena by Shoplazza

An orchestrator agent for your entire commerce stack

0
>=PlayingFild icon
>=PlayingFild

Productivity Tool & Tab Manager that Understands Context

0
PureBox.ai icon
PureBox.ai

Review-first AI cleanup for your real Gmail inbox.

0
KeyOpera 2.0 icon
KeyOpera 2.0

Make every Mac keystroke sound uniquely yours

0
SF Apartment Finder icon
SF Apartment Finder

Tinder for live SF rentals from across the web

0
yatta! icon
yatta!

A cute little to-do list that celebrates with you

0
Yoggi icon
Yoggi

Safe AI chat for kids

0
AppUFO icon
AppUFO

Ship localised Apps faster

0
Pulse Island icon
Pulse Island

A living island for your Mac's notch

0
Wisprkey icon
Wisprkey

Talk to any app on your Mac

0
Banquish — Make the web your workspace icon
Banquish — Make the web your workspace

Clip living pieces of the web onto one canvas

0
Speech To Markdown icon
Speech To Markdown

Harness local AI for notes

0
Velane icon
Velane

Cloud for your AI Agent's tools and functions

0
Capsomnia icon
Capsomnia

Caps Lock keeps your Mac awake, even with the lid closed

0
Health in ChatGPT icon
Health in ChatGPT

Your personal health companion, powered by ChatGPT

0
Browser FX: icon
Browser FX:

Transform your web audio with real-time effects

0
Second Brain for Mac and Windows icon
Second Brain for Mac and Windows

Your AI memory, everywhere you work

0
Heard icon
Heard

Give Claude Code and Codex a voice

0
Speechius icon
Speechius

The teleprompter that actually listens

0
OpenComputer icon
OpenComputer

The easiest way to deploy a managed agent.

0
06

TECHMEME

06.00
TECHMEME

Techmeme - July 27, 2026

Techmeme Digest: Major tech headlines and industry conversations.

Sources: A Chinese state-backed company has begun manufacturing DUV machines, a key step in Beijing's effort to reduce reliance on foreign chipmaking technology (The Information)
Source: TechmemePublished: Jul 27, 2026

The Information : Sources: A Chinese state-backed company has begun manufacturing DUV machines, a key step in Beijing's effort to reduce reliance on foreign chipmaking technology —  A Chinese state-backed company has begun manufacturing one of the key pieces of equipment used in chip manufacturing for the first time …

Chinese officials said they will take "all necessary measures" to protect Chinese AI models from US sanctions stemming from allegations of training on US models (Bloomberg)
Source: TechmemePublished: Jul 27, 2026

Bloomberg : Chinese officials said they will take “all necessary measures” to protect Chinese AI models from US sanctions stemming from allegations of training on US models —  China warned it would take “all necessary measures” if the US moves to sanction Chinese artificial intelligence companies …

Way Security, which uses AI automation and agentic workflows to help deploy IAM systems, raised a $20M seed from Insight Partners and Glilot Capital (Chris Metinko/Axios)
Source: TechmemePublished: Jul 27, 2026

Chris Metinko / Axios : Way Security, which uses AI automation and agentic workflows to help deploy IAM systems, raised a $20M seed from Insight Partners and Glilot Capital —  Way Security raised a $20 million seed round from Insight Partners and Glilot Capital, CEO Yossi Barishev tells Axios Pro exclusively.

Nvidia forms the Open Secure AI Alliance, a coalition including CrowdStrike, Hugging Face, and Dell to develop and share tools for AI safety and cybersecurity (Jaspreet Singh/Reuters)
Source: TechmemePublished: Jul 27, 2026

Jaspreet Singh / Reuters : Nvidia forms the Open Secure AI Alliance, a coalition including CrowdStrike, Hugging Face, and Dell to develop and share tools for AI safety and cybersecurity —  Nvidia (NVDA.O) said on Monday it had formed a coalition with other companies to develop and share tools for AI safety and cybersecurity …

A look at the secretive process Meta used to get an advantageous deal for its Hyperion data center in Louisiana, including tax breaks and lack of public input (New York Times)
Source: TechmemePublished: Jul 27, 2026

New York Times : A look at the secretive process Meta used to get an advantageous deal for its Hyperion data center in Louisiana, including tax breaks and lack of public input —  A Times examination details how the Silicon Valley giant used private talks with local officials to start a project big enough to cover nearly six square miles.

European satellite operators Eutelsat and SES stand to receive ~$6.1B in combined payments for helping clear 160 MHz satellite spectrum for US wireless services (Leo Marchandon/Reuters)
Source: TechmemePublished: Jul 27, 2026

Leo Marchandon / Reuters : European satellite operators Eutelsat and SES stand to receive ~$6.1B in combined payments for helping clear 160 MHz satellite spectrum for US wireless services —  European satellite operators SES (SESFg.LU) and Eutelsat (ETL.PA) stand to receive roughly $6.1 billion in combined payments …

Crypto exchange BitMart says it plans to wind down its trading platform on January 31, 2027, ending nine years of operation, and stops accepting new orders (Shaurya Malwa/CoinDesk)
Source: TechmemePublished: Jul 27, 2026

Shaurya Malwa / CoinDesk : Crypto exchange BitMart says it plans to wind down its trading platform on January 31, 2027, ending nine years of operation, and stops accepting new orders —  Cryptocurrency exchange BitMart said Sunday it will wind down its trading platform, ending 9 years of operation, and its exchange token fell almost 60% after the announcement.

Spain-based Multiverse Computing, which shrinks LLMs to reduce energy and compute costs, raised a $570M Series C at a $1.7B valuation (Amelia Isaacs/Pathfounders)
Source: TechmemePublished: Jul 27, 2026

Amelia Isaacs / Pathfounders : Spain-based Multiverse Computing, which shrinks LLMs to reduce energy and compute costs, raised a $570M Series C at a $1.7B valuation —  The Spanish startup says its quantum-inspired compression technology can shrink LLMs by up to 95%  —  Multiverse Computing, whose technology …

How some young adults are using AI to navigate social situations, from drafting pickup lines and texts to formulating responses in face-to-face conversations (Natalie Kaufman/Wall Street Journal)
Source: TechmemePublished: Jul 27, 2026

Natalie Kaufman / Wall Street Journal : How some young adults are using AI to navigate social situations, from drafting pickup lines and texts to formulating responses in face-to-face conversations —  People are leaning on AI for a task more dreaded than homework: navigating social situations with their fellow humans

As open-weight models become the next AI ecosystem's foundation, a US ban on Chinese models would risk ceding the neutral substrate where innovation compounds (Tobi Knaup)
Source: TechmemePublished: Jul 27, 2026

Tobi Knaup : As open-weight models become the next AI ecosystem's foundation, a US ban on Chinese models would risk ceding the neutral substrate where innovation compounds —  Open-weight models are becoming the foundation for the next AI ecosystem.  The US should compete in it, not wall itself off.

A detailed recap of the Hugging Face breach by an internal OpenAI model, which repeatedly tried to escape OpenAI's sandbox and should be treated as critical (Zvi Mowshowitz/Don't Worry About the Vase)
Source: TechmemePublished: Jul 27, 2026

Zvi Mowshowitz / Don't Worry About the Vase : A detailed recap of the Hugging Face breach by an internal OpenAI model, which repeatedly tried to escape OpenAI's sandbox and should be treated as critical —  We now have more details of what happened.  Every time we learn more details, it somehow makes things seem worse.

US tech giants have shifted their stance to publicly backing open AI models, with Anthropic and Amazon remaining notable holdouts alongside the US government (M.G. Siegler/Spyglass)
Source: TechmemePublished: Jul 27, 2026

M.G. Siegler / Spyglass : US tech giants have shifted their stance to publicly backing open AI models, with Anthropic and Amazon remaining notable holdouts alongside the US government —  The open letter on open weights feels familiar yet different...  Everyone remembers Steve Jobs' ‘Thoughts on Flash’ open letter …

CXMT's stock closed up 466% in its Shanghai debut, giving the Hefei-based memory chipmaker a ~$487B market cap, making it the most valuable China-listed company (Jenny Lee/CNBC)
Source: TechmemePublished: Jul 27, 2026

Jenny Lee / CNBC : CXMT's stock closed up 466% in its Shanghai debut, giving the Hefei-based memory chipmaker a ~$487B market cap, making it the most valuable China-listed company —  Shares of chipmaker Changxin Technology Group soared nearly 466% Monday in their debut on Shanghai's tech-heavy STAR Market …

US companies have flipped from "tokenmaxxing" to "thrift-maxxing", mixing cheaper Chinese models with OpenAI's and Anthropic's, threatening the labs' valuations (Wall Street Journal)
Source: TechmemePublished: Jul 27, 2026

Wall Street Journal : US companies have flipped from “tokenmaxxing” to “thrift-maxxing”, mixing cheaper Chinese models with OpenAI's and Anthropic's, threatening the labs' valuations —  Companies big and small are mixing models and it's changing the economics and power players of the industry

Dealroom: defense giants such as Lockheed Martin have participated in a record $4.1B worth of VC rounds YTD, as drones and autonomous systems transform warfare (Financial Times)
Source: TechmemePublished: Jul 27, 2026

Financial Times : Dealroom: defense giants such as Lockheed Martin have participated in a record $4.1B worth of VC rounds YTD, as drones and autonomous systems transform warfare —  As drones and autonomous systems transform the battlefield, traditional defence companies start to act more like venture capitalists

07

STARTUP ARCHIVE

07.00
STARTUP ARCHIVE

Startup News - July 27, 2026

Startup News Roundup: Aggregating key funding and launch updates.

Marc Andreessen on the 5 personality traits of an innovator
Source: StartupPublished: Mar 31, 2026

“When you’re talking about real innovators—people who actually do really creative, breakthrough work—I think you’re talking about a couple things:”

Steve Jobs explains the importance of both thinking and doing
Source: StartupPublished: Mar 30, 2026

“The doers are the major thinkers. The people who really create the things that change this industry are both the thinker-doer in one person.”

Tobi Lutke explains what the VCs who passed on Shopify got wrong
Source: StartupPublished: Mar 27, 2026

“What a lot of free-market thinkers don’t understand is that between the demand and eventual supply lies friction."

Sam Altman explains how he decides to invest in a startup after 10 minutes
Source: StartupPublished: Mar 26, 2026

"Does this person have the potential to be the next Mark Zuckerberg?… [You don’t get to] 100% accuracy, obviously, but it’s good enough that our business model works.”

Jony Ive recounts the time Steve Jobs called him vain
Source: StartupPublished: Mar 25, 2026

In the clip below, Jony Ive recounts the time he asked Steve Jobs to be less harsh in his critique of a piece of work.

Jeff Bezos’s two pieces of advice for aspiring entrepreneurs
Source: StartupPublished: Mar 24, 2026

“The advice that I would give entrepreneurs is don't chase the hot new thing. It's so hard to catch something that everybody already knows is hot."

Elad Gil: “Things that work tend to work pretty fast”
Source: StartupPublished: Mar 23, 2026

“I do think there’s a bit of a myth in Silicon Valley that you should keep grinding no matter what and it’s just about perseverance, and I think that’s really bad advice."

Paul Graham on why starting with a “small, intense fire" is the key to startup growth
Source: StartupPublished: Mar 20, 2026

"You have to know who those first users are and how you're going to get them."

Keith Rabois on how to identify great talent
Source: StartupPublished: Mar 19, 2026

“What you want to do with every single employee every single day is expand the scope of their responsibilities until it breaks… and that’s the role they should stay in.”

Wealthfront CEO on why advertising spend makes it harder to find product/market fit
Source: StartupPublished: Mar 18, 2026

“The way that you know you have product/market fit is if you have exponential organic growth."

Eric Schmidt on why most companies get strategy wrong
Source: StartupPublished: Mar 17, 2026

“Work very, very hard to figure out what the world’s going to look like in five years. What will people be doing? What will your customers want? Where will costs be?"

Mark Zuckerberg: “You can’t 80/20 everything”
Source: StartupPublished: Mar 16, 2026

"There’s the famous 80/20 rule where you get 80% of the benefit by doing 20% of the work, but you can’t just 80/20 everything. There have to be certain things that you are just the best at."

Marc Andreessen on Mark Zuckerberg’s founder “superpower”
Source: StartupPublished: Mar 13, 2026

“A great superpower that Mark Zuckerberg has that is probably not well-understood enough is he does not get emotionally upset in stressful situations"

Sam Altman explains how to come up with a great startup idea
Source: StartupPublished: Mar 12, 2026

"If you start a startup without a good idea… you’ll be under pressure to make something up and it won’t work that well."

Jeff Bezos on the problems with proxies and managing to metrics
Source: StartupPublished: Mar 11, 2026

“One of the things that happens in business is that you develop certain things that you’re managing to—a typical case would be a metric. And that metric isn’t the real underlying thing.”

Airbnb founder Brian Chesky on how to design an amazing user experience
Source: StartupPublished: Mar 10, 2026

“If you can design something really amazing using the hand-crafted part of your brain, then you can reverse-engineer how to industrialize this millions of times over."

Spencer Rascoff: "I will never invest in a consumer startup with paid marketing”
Source: StartupPublished: Mar 9, 2026

"If you’re actually trying to grow a product, the best levers for doing that are often within the product itself.”

Patrick Collison explains why it sometimes make sense to quit
Source: StartupPublished: Mar 6, 2026

“One thing I’ve learned myself the hard way, is that it is easier to tear down a company and restart it in Silicon Valley, than it is to constantly try to pivot or keep something alive."

Jeff Bezos recounts the time he called Amazon’s customer service number mid-meeting to prove a metric was wrong
Source: StartupPublished: Mar 5, 2026

“I have a saying, which is when the data and the anecdotes disagree, the anecdotes are usually right"

Ben Horowitz: “Nobody was born a great manager. It’s a very unnatural job.”
Source: StartupPublished: Mar 4, 2026

“If you can’t build a great product, it doesn’t matter if you can build a great company.”

03

ALSO TODAY

3 MORE SOURCES
08

SOLIDOT

08.00
SOLIDOT

Solidot News - July 27, 2026

Solidot Feed: Highlighting essential tech & open-source news.

日本作家东野圭吾因癌症去世,享年 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 搭档,对一个有着不为人知的秘密的超级企业实施盗窃活动。

Debian 讨论是否允许使用 LLM

Debian 项目正在讨论如何使用 LLM 以及是否允许使用 LLM。其中一个提议是明确禁止使用 LLM,但只限于 Debian 本身,上游项目以及上游安全补丁不包含在内。另一个提议是允许 AI 辅助贡献,但需要确保 AI 生成代码符合 Debian 的各项规定,贡献者需要承担责任和履行披露义务。开发者指出,LLM 存在版权和许可方面的问题,也不能确保质量和准确性,会增加社区审核者的负担,AI 公司在训练大模型时无视版权和许可抓取数据,伤害了整个自由软件社区,对无数用户依赖的网站发起了一波波拒绝服务攻击,它的训练也消耗大量资源。

美国司法部起诉一位公民提供了会导致手机数据自动删除的密码

美国司法部起诉了一位公民在入境搜查时提供了所谓的“胁迫密码”,输入该密码导致手机上的数据自动删除。这起案件被认为是美国首例“胁迫密码”案例。本案的被告是亚特兰大居民 Samuel Tunick,他的手机运行了安全加固的 Android 操作系统 GrapheneOS,它内置了一项安全功能,允许用户设置“胁迫密码”,如果输入的不是解锁密码而是“胁迫密码”,那么手机上的数据将会自动清除。本案引发了在入境时美国公民可以援引哪些宪法权利的疑问。美国政府长期坚称,在允许入境前边境处不属于美国领土。数字安全专家 Runa Sandvik 建议,为了避免被当局认为是故意销毁数据,公民可以在入境前先清空数据,入境后再重新下载。

英伟达、微软、OpenAI 等公司反对限制开放权重模型

在一群初创公司之后,科技巨头如微软、英伟达、思科、戴尔、IBM、甚至 OpenAI 等数十家公司和组织联署发表公开信,呼吁美国政府不要过早限制开放权重模型,认为此举会扼杀竞争或导致本土创新放缓。公开信称,开放权重模型能促进竞争,确保 AI 技术的好处能广泛共享,避免其掌握在少数人手中,而闭源模型并不意味着绝对安全。没有署名的知名 AI 公司包括了 Google、Anthropic 以及 xAI/SpaceX,其中 SpaceX CEO 马斯克通过社交媒体口头表达了对公开信的支持,而 Anthropic 明显是站在支持限制开放权重模型的一边,该公司正投入 4000 万美元游说特朗普政府加强监管 AI 模型。

IRGC 声称摧毁了亚马逊巴林数据中心

IRGC 声称使用巡航导弹袭击并摧毁了亚马逊 AWS 位于巴林的数据中心。亚马逊和美国军方未证实这一说法。如果属实,这是亚马逊巴林数据中心第三次遭到袭击,根据 AWS 自己的公告,巴林数据中心自 2026 年 5 月以来就处于离线状态。

印度政府命令 GitHub 移除 Jack Dorsey 的蓝牙聊天应用 Bitchat

印度政府的网络犯罪协调中心命令 GitHub 移除 Jack Dorsey 的去中心化蓝牙聊天应用 Bitchat。前 Twitter CEO Dorsey 在 X/Twitter 上公布了收到的通知,通知的日期是 7 月 23 日,声称该应用能在网络受限的情况下进行通信,能被反国家分子、恐怖组织、有组织犯罪集团和网络犯罪分子滥用,他们试图逃避合法监测,继续在法律限制下进行通信。印度最近爆发了被称为“蟑螂人民党(Cockroach Janta Party)”的抗议活动。

Google 账号支持自拍人脸登录

Google 账号加入了可选的人脸识别登录。用户向 Google 提供自拍视频,随后就可通过人脸识别登录。在人脸验证过程中 Google 可能会要求用户以特定方式转动头部,此举旨在防止深度伪造之类的身份冒用,确保用户当前确实在摄像头前。Google 需要保存用户的自拍视频以将其用于未来的登录验证。搜索巨人表示会对视频进行加密,且仅用于登录不会用于其它用途。如果用户改变主意,可以从 Google 帐户中删除相关视频。

LG 显示器应用不再弹出迈克菲广告

当你的计算机接上 LG 显示器,它会通过 Windows Update 自动安装应用 LG Monitor App Installer,安装之后该应用会不时弹出广告,其中最常见的广告是迈克菲杀毒软件。其它还有 LG 自家产品广告如 LG Switch、LG Calibration Studio、LG Dual Controller 和 LG Channels。此举在消费者中间引发了强烈反应,以至于微软都出来做出回应。微软 Windows 和设备执行副总裁 Pavan Davuluri 称,他们联系了 LG 团队,LG 已经同意立即在其应用中禁止迈克菲广告弹窗。除此之外一切照旧。

美国初创公司反对禁止使用中国开放权重模型

近两百家美国科技初创公司组成 Little Tech Association 联盟,联署致函美国总统特朗普、商务部长 Howard Lutnick 等政府高官,呼吁政府不要禁止使用来自中国的开放权重模型。此前由于中国 AI 模型在性能上逼近美国的前沿 AI 模型 Anthropic 的 Fable 5 和 OpenAI 的 GPT-5.6 Sol,美国政府官员表示在考虑封禁中国的 AI 模型。Little Tech Association 的联署信指出,此举会削弱美国初创公司,且并不能阻止开放权重模型扩散。而美国要保持其领先地位需要有世界领先的开放权重模型,确保美国公司能访问其它地方的开放权重模型。

09

APP STORE RANK

09.00
APP STORE RANK
Loading…