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 0918
MON, JUL 6, 2026
OrangeBot.AI 智能策划和筛选每日科技趋势和新闻,为您节省时间。
TODAY · MON, JUL 6, 2026

The web,
read by a bot.

Ten sources — Hacker News, Product Hunt, HuggingFace, Techmeme and more — filtered, tagged, and summarized every morning 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 6, 2026

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

Technology and Corporate Deals

SpaceX Joins the Nasdaq-100 Index Elon Musk’s rocket company, SpaceX, is set to be added to the tech-focused Nasdaq-100 index tomorrow. The move marks a significant milestone for the private space firm, though it will enter with a relatively low weighting.

TeraWulf and Anthropic to Build Major AI Campus Bitcoin mining company TeraWulf announced a partnership with AI leader Anthropic to develop a large-scale AI infrastructure campus in Kentucky. The project is expected to generate as much as $19 billion in future revenue.

Solstice to Acquire Element Solutions in Over $12 Billion Deal Solstice Advanced Materials has agreed to buy specialty chemicals maker Element Solutions in a cash-and-stock transaction valued at more than $12 billion. The merger aims to create a leading global company in the advanced materials sector.

Rogers Buys Remainder of Maple Leaf Sports and Entertainment Rogers Communications is buying the final stake in Maple Leaf Sports and Entertainment (MLSE) from Larry Tanenbaum for C$4.35 billion. The deal gives Rogers full ownership of the parent company of major Toronto sports franchises like the Maple Leafs and Raptors.

Global Markets

U.S. Stocks Rise as Markets Reopen U.S. stock futures were higher today as markets returned from the holiday, with the Nasdaq leading gains. Traders appeared to shake off recent concerns about the AI sector that had previously impacted tech stocks.

Oil Prices Fall on Increased Production The price of crude oil declined after OPEC+ decided to increase production. Easing geopolitical tensions and a recovery in shipping through the Strait of Hormuz also contributed to the drop in prices.

Gold Prices Climb on Weaker Economic Data Gold futures rose for a second consecutive week. The increase was driven by recent weak U.S. jobs data and falling oil prices, which have lowered investor expectations of a near-term interest rate hike by the Federal Reserve.

International Affairs

China Launches Ballistic Missile into Pacific China conducted a test of a submarine-launched ballistic missile, which carried a dummy warhead and landed in the Pacific Ocean. The action drew immediate condemnation from Japan, Australia, and New Zealand.

Ukraine Pleads for More Air Defenses Ukrainian President Volodymyr Zelenskyy made a direct appeal to allies for more Patriot interceptor systems to defend against Russian attacks. This comes as Finland’s president noted that Ukraine's successful long-range strikes have positively shifted U.S. views on the conflict.

02

ON THE WIRE

6 SOURCES
02

HACKER NEWS

02.00
HACKER NEWS

Hacker News - July 6, 2026

Hacker News Feed: Highlighting key posts and discussions.

Road to Elm 1.0

(elm-lang.org)

11955
Has_not_been_viewed_much

(iamwillwang.com)

384101
OpenPrinter

(www.opentools.studio)

1009243
Small Penis Rule

(en.wikipedia.org)

14877
Starring the Computer

(www.starringthecomputer.com)

25856
Organic Maps

(organicmaps.app)

1076341
Meta's Un-Stable Signature

(hackerfactor.com)

14523
03

HUGGINGFACE

03.00
HUGGINGFACE

HuggingFace 新闻 - July 6, 2026

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

The Mirage of Optimizing Training Policies: Monotonic Inference Policies as the Real Objective for LLM Reinforcement Learning

Reinforcement learning (RL) has gained growing attention in large language model (LLM) post-training, yet RL training remains fragile and can suffer from instability or collapse. One vital cause is training-inference mismatch: LLM adopts separate inference and training engines for generation efficiency and training precision, which in practice exhibits inconsistent probabilities for the same trajectories on training and inference sides, even with synchronized model parameters. This naturally induces a special type of off-policyness ever existing and poisoning the training. Prior works have made various efforts in addressing the off-policyness to stabilize the training policies under the mismatch. In this paper, we point out the objective misalignment neglected by existing works that an effective update to the policy in the training engine not necessarily ensures the improvement of the inference policy, i.e., the one used in deployment. To this end, we propose a new policy optimization objective for LLM RL, named Monotonic Inference Policy Improvement (MIPI). Following this principle, we introduce Monotonic Inference Policy Update (MIPU), a two-step LLM RL framework that constructs sampler-referenced candidate updates and selectively accepts synchronized candidates using an inference-side gap proxy. Experiments conducted on two model scales under high mismatch show that MIPU improves average reasoning performance and training stability.

72
Embodied.cpp: A Portable Inference Runtime of Embodied AI Models on Heterogeneous Robots

Embodied AI models now span vision-language-action (VLA) models and world-action models (WAMs), but practical deployment remains fragmented across model-specific Python stacks, backend assumptions, and robot-side glue code, especially on heterogeneous edge devices. Existing inference runtimes are designed mainly for request-response serving and therefore do not satisfy the runtime contract of embodied deployment: multi-rate execution inside closed-loop control, latency-first batch-1 inference on heterogeneous hardware, and extensible embodied interfaces beyond fixed token I/O. We present Embodied.cpp, a portable C++ inference runtime for embodied models. Based on an architectural analysis of representative VLA models and WAMs, Embodied.cpp captures a shared execution path and organizes it into five layers: input adapters, sequence builders, backbone execution, head plugins, and deployment adapters. The runtime provides modular multi-rate execution, latency-first fused inference, and extensible operator and I/O support, enabling deployment across heterogeneous devices, robots, and simulators through one backend abstraction. We evaluate Embodied.cpp on two VLA models, HY-VLA and pi0.5, and on a preliminary WAM benchmark using a LingBot-VA Transformer block. The VLA deployments achieve successful closed-loop execution with 100.0% and 91.0% task success rates, respectively. The WAM benchmark reduces block memory from 312.2 MiB to 88.1 MiB. These results show that Embodied.cpp improves deployment efficiency while preserving high accuracy across diverse embodied model architectures.

28
VLA-Corrector: Lightweight Detect-and-Correct Inference for Adaptive Action Horizon

Vision-Language-Action (VLA) foundation models have recently achieved strong progress in embodied intelligence. To reduce policy-call frequency while preserving temporal coherence, most generative policies adopt an action chunk mechanism, executing multiple future actions in an open-loop manner under a fixed action horizon. However, this "predict-then-blindly-execute" paradigm sacrifices closed-loop reactivity: in contact-rich physical interactions, even small local perturbations can rapidly amplify within the open-loop blind spot, leading to compounding errors and ultimately task failure. To address this limitation, we propose VLA-Corrector, a lightweight corrective inference framework for action-chunked VLA policies. Without modifying the backbone policy weights, VLA-Corrector introduces a lightweight Latent-space Vision Monitor (LVM) that continuously compares predicted and actual visual feature evolution, enabling online detection of visual dynamics deviations. Once persistent deviation is detected, the system triggers a truncation event, discards the remaining stale actions, and invokes corrective replanning via Online Gradient Guidance (OGG). The detect-and-correct mechanism of VLA-Corrector naturally induces an event-triggered adaptive action horizon: it preserves long-horizon execution when the current chunk remains reliable, and invokes short-horizon corrective replanning when execution begins to drift. In doing so, VLA-Corrector mitigates the trade-off imposed by static horizons between execution robustness and policy-call frequency. It can be integrated into different VLA models without further retraining the VLA backbone, interrupting compounding errors while preserving much of the efficiency benefit of action chunking and substantially improving robustness in long-horizon, contact-rich robotic manipulation tasks.

22
OrbitQuant: Data-Agnostic Quantization for Image and Video Diffusion Transformers

Diffusion transformers (DiTs) achieve state-of-the-art image and video generation, but their multi-step sampling and growing parameter count make inference expensive. Post-training quantization (PTQ) is the natural remedy, yet DiT activations shift across timesteps, prompts, and guidance branches, forcing prior methods to re-fit calibration data for every new checkpoint or modality. We present OrbitQuant, a data-agnostic weight-activation quantizer that bypasses range estimation by quantizing in a normalized, rotated basis. In this basis, a randomized permuted block-Hadamard (RPBH) rotation concentrates each coordinate around one fixed, known marginal regardless of the input, so a single Lloyd-Max codebook serves all timesteps, prompts, and layers of a given input dimension. We extend the same quantizer to weight rows offline, absorbing the rotation into the weights so that it cancels inside each linear layer and only a forward rotation on the activations remains at runtime. The same recipe transfers from image to video with no per-modality tuning. Across FLUX.1, Z-Image-Turbo, Wan 2.1, and CogVideoX, it sets the state of the art for PTQ at several low-bit settings. It also pushes PTQ of image diffusion transformers to W2A4 with usable generation quality.

13
DataComp-VLM: Improved Open Datasets for Vision-Language Models

Building performant Vision-Language Models (VLMs) requires carefully curating large-scale training datasets, yet the community lacks systematic benchmarks for evaluating such curation strategies. We introduce DataComp for VLMs (DCVLM), a benchmark for controlled data-centric experiments to improve VLM training. As part of DCVLM, we collect 160 datasets spanning four data types -- image-caption pairs, multimodal interleaved documents, text-only, and instruction-tuning data -- into a corpus of 6T multimodal tokens. DCVLM allows participants to test curation strategies (filtering, mixing, formatting, sampling) across 1B-8B models and 6.25B-200B token budgets. Models are then evaluated on a carefully selected suite of up to 52 downstream benchmarks across 9 domains. We conduct extensive experiments on DCVLM and find that data mixing, not filtering, is key to a high-quality training dataset: instruction-heavy mixtures scale better than caption-heavy ones, with gains widening at larger scales. The resulting dataset, DCVLM-Baseline, enables training an 8B VLM to 63.6% accuracy on our 33-task core suite with 200B training tokens. Compared to FineVision, the state-of-the-art open VLM training dataset, this represents an improvement of +5.4pp. DCVLM and all accompanying artifacts will be made publicly available at https://www.datacomp.ai/dcvlm/.

8
Securing the AI Agent: A Unified Framework for Multi-Layer Agent Red Teaming

The fast growth of open-source AI infrastructure, from model serving engines and agent platforms to the Model Context Protocol (MCP) ecosystem and the language models themselves, has outpaced the security tooling available to defend it. We present AI-Infra-Guard, an open-source framework that organizes AI red teaming around a single observation: the attack surface of an AI agent is stratified across layers (infrastructure, protocol/tool, agent behavior, and model), and no single detection paradigm fits all of them. The framework therefore matches a paradigm to each layer, from deterministic rule matching over 75+ AI components and 1{,}400+ vulnerability rules, through LLM-driven agentic auditing of MCP servers and agent-skill packages and multi-turn black-box agent red teaming, to a jailbreak harness with 26+ attack operators over sixteen datasets. To our knowledge it is the only open-source framework to span all of these, including supply-chain auditing of the agent skills that increasingly extend AI agents. We release AI-Infra-Guard as open source so that layer-paradigm matching can serve as a practical foundation for agent security and a shared base for the community to build on.

6
Interpretation-Oriented Cloud Removal via Observation-Anchored Residual Flow with Geo-Contextual Alignment

Cloud removal (CR) is essential for optical remote sensing, serving as a prerequisite for reliable downstream interpretation, such as semantic segmentation and change detection. However, existing CR approaches often prioritize visual realism while overlooking their impact on subsequent analytical tasks, leading to semantic drift and degraded downstream performance. To address this issue, we propose Geo-Anchored Cloud Removal (GACR), a unified framework that jointly ensures faithful reconstruction and robust interpretability. At its core, GACR incorporates Observation-Anchored Residual Flow (OAR-Flow), which reformulates CR as a physically grounded residual inversion process. By anchoring the generative trajectory to the cloudy observation rather than pure noise, OAR-Flow enables fast, stable, and faithful reconstruction. To further preserve semantic structures critical for downstream interpretation, GACR integrates Geo-Contextual Prior Alignment (GCPA) to constrain the reconstruction within a semantic manifold induced by a Vision Foundation Model (VFM). Consequently, GACR strictly maintains the spatial-semantic integrity of complex landscapes. Extensive experiments across six CR datasets and twelve downstream tasks demonstrate that GACR produces superior reconstruction quality while consistently improving downstream task accuracy. The code is available at https://github.com/wzy6055/GACR.

4
MultAttnAttrib: Training-Free Multimodal Attribution in Long Document Question Answering

As grounded QA systems are increasingly deployed in AI assistants, accurately attributing generated answers to evidence is critical for user trust and model safety. While unimodal attributions have been explored in depth, the multimodal setting remains relatively under-researched. As a result, we introduce MultAttnAttrib, a training-free attribution-generation method that leverages a model's prefill pass, selected attention heads, and calibrated thresholds to locate source evidence within a document. To establish baseline results for the method, we introduce MultAttrEval, a complementary benchmark dataset annotated with fine-grained, ground-truth attributions for answer components grounded in multimodal source documents. To our knowledge, this is the first evaluation dataset designed specifically for multimodal attribution in long-form documents. Experimental results show that MultAttnAttrib consistently outperforms a variety of attribution-generation methods, including several strong prompting-based approaches and matches the latest frontier models such as GPT 5.4. Our method not only substantially improves attribution accuracy for both unimodal and multimodal attribution types, but also produces attributions at up to one-seventh of the direct inference latency compared to prompting on the same base model.

4
AGE: Adaptive-masking for Graph Embedding in Graph Retrieval-Augmented Generation

GraphRAG is an extension of retrieval-augmented generation (RAG) that supports large language models (LLMs) by referring to graph-structured data as external knowledge. While this technique ideally captures intricate relationships, it often struggles with graph representations for LLMs, particularly for frozen LLMs, due to the misalignment between graph-based and text-based latent features. We tackle this issue by introducing the {\it Adaptive-masking for Graph Embedding (AGE)}. AGE employs a Transformer in a mask-based self-supervised learning (SSL) approach. We designed the architecture similar to text embedding encoders, addressing the latent feature misalignment. In contrast to natural language texts, graphs are concise representations, and there exist {\it key nodes} that hold dominant contextual information, which are challenging to predict from their surroundings. Masking such key nodes leads to inefficiency in the SSL process. Therefore, AGE focuses on predicting nodes apart from key nodes, utilizing a learnable node sampler. Our experimental results indicate that AGE significantly improves approaches using non-parametric search component in GraphQA tasks, achieving superior accuracy across four benchmark datasets with distinct characteristics.

3
05

PRODUCT HUNT

05.00
PRODUCT HUNT

Product Hunt - July 6, 2026

Product Hunt Daily Feed: Featuring noteworthy tech launches.

Sunrise icon
Sunrise

A real planner for Google Tasks

0
Octolens icon
Octolens

Social listening for the agent era

0
Typeahead 2.0 icon
Typeahead 2.0

Private AI autocomplete for every app on your Mac

0
CodeMote icon
CodeMote

Claude Code, Codex, any CLI agent. Driven from your iPhone

0
Nixmac icon
Nixmac

Nix-darwin that speaks plain English

0
AnySearch icon
AnySearch

Real-time structured search trusted by agents and developers

0
Mozaik icon
Mozaik

TypeScript runtime for self-organizing AI agents

0
Astryx icon
Astryx

A customizable, agent-ready open-source design system

0
AirKaren icon
AirKaren

AI that fights customer service for you

0
Cadence icon
Cadence

Record once, send confidently

0
Stanley Studio icon
Stanley Studio

The AI video editor you hire that edits like a human

0
Edgee Claude Code Compressor V2 icon
Edgee Claude Code Compressor V2

Fewer tokens, same context, 50% cost reduction

0
WorkBuddy icon
WorkBuddy

Produce sharpened results faster with a team of AI experts

0
CircleChat icon
CircleChat

Give your AI agents a slack, a task board, and a boss

0
DocsAlot icon
DocsAlot

Documentation that works for both humans and AI systems

0
Toku Reader icon
Toku Reader

Read & listen to native Japanese and Chinese, tap any word

0
Pennen icon
Pennen

One quiet handwritten page a day. No feed, no AI.

0
MentionDrop MCP icon
MentionDrop MCP

Give your AI agent live market signals

0
TryCase icon
TryCase

Disposable test environments for AI coding agents

0
Endl icon
Endl

A global operating account for fiat, stablecoins, and cards.

0
Termi Protocol icon
Termi Protocol

Watch your AI coding agents build, live in 3D

0
CentryAI icon
CentryAI

Subscription tracker built by someone who forgot 11 of them

0
Vida icon
Vida

Clone yourself. Let AI do the work before you ask

0
ChecklistFox icon
ChecklistFox

AI checklist maker for beautiful pdfs, free & instant

0
PhoneDeck icon
PhoneDeck

Turn your iPhone into a free Mac controller

0
Tamamon icon
Tamamon

A desktop pet that grows as you code with Claude Code

0
Glaze by Raycast icon
Glaze by Raycast

Create your own Mac apps by chatting with AI

0
Goals from Loops icon
Goals from Loops

Measure whether a campaign drove the desired outcome

0
Archify icon
Archify

understand software

0
nxt icon
nxt

Talk to your to do list and get what's next

0
Vox icon
Vox

Voice in, voice out — with GitHub Copilot

0
Fypro icon
Fypro

Convert your TikTok followers into paying customers

0
Needle icon
Needle

The proactive GTM agent in Slack and Teams

0
Context.dev icon
Context.dev

One API to scrape, enrich, and extract the internet

0
html.contact icon
html.contact

A full form backend you can test before paying

0
PixFit icon
PixFit

Turn 1 creative into every ad format, instantly

0
Gaming Chat SDK by CometChat icon
Gaming Chat SDK by CometChat

Chat drops into Unreal like it was always there

0
Macro icon
Macro

Unifies your work into one app with shared memory

0
Quick Sub 2: Video Subtitling icon
Quick Sub 2: Video Subtitling

Quick, creative video subtitling with direct canvas control.

0
Basedash Actions icon
Basedash Actions

A BI tool that can take action for you

0
Flowly icon
Flowly

A personal AI agent that runs on your desktop and iPhone

0
Macuse icon
Macuse

Give Your AI Superpowers on macOS

0
Sidedoor icon
Sidedoor

Paste any job, find who in your network can refer you

0
Banger Mail icon
Banger Mail

Shared mailboxes for teams and AI agents

0
PieterPost MCP icon
PieterPost MCP

Connect your AI agent to postal mail

0
Retrace icon
Retrace

Debug AI agents by replaying and forking runs

0
scritty icon
scritty

Shared, searchable memory for every AI coding agent

0
Solaris icon
Solaris

Your company’s AI adoption and upskilling platform

0
Acti icon
Acti

Agentic keyboard for mobile commands and search

0
Humalike icon
Humalike

Give your AI agents the social intelligence they're missing

0
06

TECHMEME

06.00
TECHMEME

Techmeme - July 6, 2026

Techmeme Digest: Major tech headlines and industry conversations.

Memo: Xbox CEO Asha Sharma says the unit will divest five studios, including Ninja Theory, alongside 3,200 job cuts, to streamline the business, in a "reset" (Bloomberg)
Source: TechmemePublished: Jul 6, 2026

Bloomberg : Memo: Xbox CEO Asha Sharma says the unit will divest five studios, including Ninja Theory, alongside 3,200 job cuts, to streamline the business, in a “reset” —  Compulsion and Double Fine studios will become independent; Undead Labs and Ninja Theory will be sold.

Memo: Microsoft is laying off ~4,800 employees, or ~2.1% of its workforce; most layoffs are in Xbox, where ~20% of jobs are set to be cut by the end of FY 2027 (Tom Warren/The Verge)
Source: TechmemePublished: Jul 6, 2026

Tom Warren / The Verge : Memo: Microsoft is laying off ~4,800 employees, or ~2.1% of its workforce; most layoffs are in Xbox, where ~20% of jobs are set to be cut by the end of FY 2027 —  Most of the job losses are in Microsoft's Xbox and commercial sales organizations. … A year after cutting around 9,100 employees …

Reddit says its AI-powered content moderation systems caught 25K "spammy posts and comments" per day in Q1, reducing users' exposure to such content by 20% YoY (Natalie Lung/Bloomberg)
Source: TechmemePublished: Jul 6, 2026

Natalie Lung / Bloomberg : Reddit says its AI-powered content moderation systems caught 25K “spammy posts and comments” per day in Q1, reducing users' exposure to such content by 20% YoY —  Reddit Inc. is battling a new kind of spam: stealth marketing content created by brands that want to get mentioned …

Broadcom agrees to expand its Apple partnership through 2031 to develop and supply custom chips; in 2023, the companies announced a multibillion-dollar 5G deal (Akash Sriram/Reuters)
Source: TechmemePublished: Jul 6, 2026

Akash Sriram / Reuters : Broadcom agrees to expand its Apple partnership through 2031 to develop and supply custom chips; in 2023, the companies announced a multibillion-dollar 5G deal —  Broadcom (AVGO.O) said on Monday it has agreed to expand its partnership with Apple (AAPL.O) through 2031 to develop and supply custom chips …

Anthropic signs a 20-year, ~$19B lease to use a TeraWulf data center in Kentucky, set to have a ~400MW capacity and to start delivering power in H2 2027 (CNBC)
Source: TechmemePublished: Jul 6, 2026

CNBC : Anthropic signs a 20-year, ~$19B lease to use a TeraWulf data center in Kentucky, set to have a ~400MW capacity and to start delivering power in H2 2027 —  Anthropic on Monday signed a 20-year lease to use a TeraWulf data center in Kentucky.  —  The data center, located about an hour southwest …

AI agent training platform Bespoke Labs raised $40M across a seed led by 8VC and a Series A led by Wing, saying the funding gives it almost two years of runway (Natalie Breymeyer/Axios)
Source: TechmemePublished: Jul 6, 2026

Natalie Breymeyer / Axios : AI agent training platform Bespoke Labs raised $40M across a seed led by 8VC and a Series A led by Wing, saying the funding gives it almost two years of runway —  Bespoke Labs, an AI agent training platform, raised $40 million across seed and Series A funding, CEO Mahesh Sathiamoorthy tells Axios exclusively.

Filing: Brookfield-backed data center company Csquare seeks to raise up to $1.35B in an IPO, selling 50M shares at $23 to $27 each for an up to $4.18B valuation (Ryan Vlastelica/Bloomberg)
Source: TechmemePublished: Jul 6, 2026

Ryan Vlastelica / Bloomberg : Filing: Brookfield-backed data center company Csquare seeks to raise up to $1.35B in an IPO, selling 50M shares at $23 to $27 each for an up to $4.18B valuation —  Csquare Inc., a data center company backed by Brookfield Corp., is seeking to raise as much as $1.35 billion in a US initial public offering.

How Masayoshi Son is remaking SoftBank in his own image, betting on AI; SoftBank trades at a ~50% discount to its net asset value, as some question his strategy (David Keohane/Financial Times)
Source: TechmemePublished: Jul 6, 2026

David Keohane / Financial Times : How Masayoshi Son is remaking SoftBank in his own image, betting on AI; SoftBank trades at a ~50% discount to its net asset value, as some question his strategy —  The veteran investor has put himself at the centre of the global AI boom.  Some think he now has too much control

A profile of Samsung union leader Choi Seung-ho, who helped win a ~$26B bonus package for chip employees, as he tries to resolve the rift over bonus gaps (Yoolim Lee/Bloomberg)
Source: TechmemePublished: Jul 6, 2026

Yoolim Lee / Bloomberg : A profile of Samsung union leader Choi Seung-ho, who helped win a ~$26B bonus package for chip employees, as he tries to resolve the rift over bonus gaps —  Avoiding old-school labor ideology, a new generation of tech workers finds itself divided by the AI boom.  —  As recently as late May, Choi Seung-ho was hailed as a hero.

An interview with Agility Robotics CEO Peggy Johnson on why the startup is going public via a SPAC, the physical layer as its core advantage, safety, and more (Connie Loizos/TechCrunch)
Source: TechmemePublished: Jul 6, 2026

Connie Loizos / TechCrunch : An interview with Agility Robotics CEO Peggy Johnson on why the startup is going public via a SPAC, the physical layer as its core advantage, safety, and more —  The humanoid robotics market is awash in money right now.  Last week, AI2 Robotics, a Shenzhen-based startup that makes wheeled humanoid robots …

AI-driven drops in labor income and gains in capital income could hit Ireland's tax base, with 6%+ of its workforce in tech and heavy exposure to US companies (Olivia Fletcher/Bloomberg)
Source: TechmemePublished: Jul 6, 2026

Olivia Fletcher / Bloomberg : AI-driven drops in labor income and gains in capital income could hit Ireland's tax base, with 6%+ of its workforce in tech and heavy exposure to US companies —  The country benefited from a jobs boom after attracting US multinationals, but some of these roles are being cut in the name of AI efficiency.

Some US voters are using AI tools as nonpartisan researchers, seeing them as a viable alternative to traditional news coverage, voter guides, and social media (Jennifer Medina/New York Times)
Source: TechmemePublished: Jul 6, 2026

Jennifer Medina / New York Times : Some US voters are using AI tools as nonpartisan researchers, seeing them as a viable alternative to traditional news coverage, voter guides, and social media —  It takes effort to be an informed citizen.  Artificial intelligence tools offer an alluring shortcut — but they're not without risk.

Ripple secures CASP authorization from Luxembourg's financial regulator, making it fully MiCA-compliant to offer crypto services across 30 EEA countries (Brian Danga/The Block)
Source: TechmemePublished: Jul 6, 2026

Brian Danga / The Block : Ripple secures CASP authorization from Luxembourg's financial regulator, making it fully MiCA-compliant to offer crypto services across 30 EEA countries —  Quick Take  — Ripple said it received CASP authorization from Luxembourg's CSSF, making it fully MiCA-compliant to offer crypto services across 30 EEA countries.

Shenzhen-based Even Realities, a startup that makes smart glasses without cameras, raised a $150M pre-Series B led by Meituan and Tencent (Kate Park/TechCrunch)
Source: TechmemePublished: Jul 6, 2026

Kate Park / TechCrunch : Shenzhen-based Even Realities, a startup that makes smart glasses without cameras, raised a $150M pre-Series B led by Meituan and Tencent —  Meta and Snap rolled out new smart glasses last month, the latest sign that the industry is racing to put a camera and an AI assistant onto users' faces.

SK Hynix launches a US share sale on the Nasdaq to raise ~$28B, selling 17.79M new shares; the final listing price is due Thursday before trading starts Friday (Reuters)
Source: TechmemePublished: Jul 6, 2026

Reuters : SK Hynix launches a US share sale on the Nasdaq to raise ~$28B, selling 17.79M new shares; the final listing price is due Thursday before trading starts Friday —  South Korean chipmaker SK Hynix (000660.KS) on Monday launched a U.S. share sale to raise 43 trillion won ($28.07 billion) …

07

STARTUP ARCHIVE

07.00
STARTUP ARCHIVE

Startup News - July 6, 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 6, 2026

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

用 Go 语言编写的 TypeScript 7.0 发布 RC 版

C# 和 TypeScript 等语言的创始人 Anders Hejlsberg 在 2025 年 3 月宣布他的团队正在开发用 Go 语言编写的 TypeScript 编译器。现在首个基于 Go 语言的 TypeScript 7.0 发布了 RC 版本。正式版本预计会在下个月发布。微软表示,得益于原生代码速度和共享内存并行处理能力,TypeScript 7.0 的速度通常比 TypeScript 6.0 快约 10 倍。不同于 TypeScript 6.0,TypeScript 7.0 的许多步骤(如解析、类型检查和发射)都可以并行执行。其中一些步骤(如解析和发射)在不同文件之间可以基本独立完成。并行处理在较大的代码库中能自动实现良好扩展,且开销相对较小。但微软也表示 TypeScript 构建中并非每个步骤都能轻松实现并行处理。

Windows 11 设备标识符被用于逮捕网络勒索组织成员

美国司法部、FBI 与芬兰国家调查局合作逮捕了 19 岁的网络勒索组织 Scattered Spider 成员 Peter Stokes,该组织至今已勒索逾 1 亿美元赎金。Stokes 已引渡到美国并于 6 月 30 日出庭,目前处于羁押中。微软在识别其身份过程中起了很大的作用。微软向 FBI 提供了 GDID(Global Device Identifier 或全球设备标识符),GDID 是分配给每个 Windows 的唯一标识符,用于跟踪特定设备的遥测数据。法庭文件显示,Stokes 使用的是 Windows 系统,他的网络活动、游戏历史记录、IP 地址、工具使用情况(包括 Ngrok)、Azure 状态等信息都被记录下来并带有时间戳,这些信息由微软提供给了调查人员。他拥有美国和爱沙尼亚双重国籍,其身份早在 2024 年就被确定,但由于他当时未成年且居住在爱沙尼亚和阿联酋,因此他一直处于被监视状态,直到最近试图从芬兰赫尔辛基搭乘航班飞往日本。

字节跳动和阿里巴巴下线智能体功能

字节跳动的豆包和阿里巴巴的千问先后宣布于 7 月 1 5 日下线智能体功能。豆包称,由于产品功能调整,智能体功能将于 2026 年 7 月 15 日下线。功能下线后,用户仍可在一段时间内查看并自行保存智能体信息及历史对话数据,10月15日后,豆包将根据《隐私政策》对智能体相关数据进行处理,后续将无法在豆包内查看或恢复。用户可通过截图或分享导出文本的方式提前备份重要内容。千问将在同一天下线智能体功能,下线后用户将无法继续访问相关智能体配置及历史对话记录。7 月 15 日下线是因为当天《人工智能拟人化互动服务管理暂行办法》将正式实施。此前腾讯 AI 应用元宝已经移除了相似的功能。

隼鸟2号近距离飞越小行星鸟船

日本隼鸟 2 号探测器在完成小行星龙宫样本收集和送回地球任务之后开始向新目标前进。7 月 5 日隼鸟 2 号接近小行星 Torifune(鸟船),在高速通过距鸟船中心约 800 米的极近距离的同时,调查其形状和表面物质,进行了近距离探测。探测器接近也意在验证旨在防备小行星与地球相撞危险的“地球防御”。JAXA 称,过了最接近的预定时间之后,接收了来自隼鸟 2 号的信号。探测器没有撞上小行星,处于正常状态。

战争模糊了企业安全和国家安全

海底光缆、发电站、炼油厂,机场、海水淡化厂甚至亚马逊数据中心,都已成为战争期间的攻击目标。企业安全和国家安全之间的界限日益模糊。北大西洋公约组织(NATO)32 个成员国去年达成协议,将经济产出的 5% 用于国防和安全,其中 1.5% 用于军事相关需求,包括保护关键基础设施和网络。支出目标涵盖网络安全、工业产能,以及军事后勤所需的铁路、桥梁和港口等等。NATO 军事委员会主席、意大利海军上将 Giuseppe Cavo Dragone 表示我们需要一个更全面的国防概念——国防不再仅仅指军事。曾在美国交通部和国土安全部任职的 Marc Glasser 表示私营业主能投资冗余、监控和维修能力,但只有政府和军方才能真正威慑、巡逻、确认或应对敌对国家的活动。企业表示,他们需要政府更明确地阐明将提供哪些保护措施,以及为帮助企业保护那些提供公共利益的私有资产而提供的补贴。大多数政府并没有为企业提供激励措施去鼓励它们在法定最低韧性要求之外进行更多投资。

微软将利润转移到低税国家

微软显然在将利润转移到低企业税国家。早在 2005 年,微软时任 CEO 巴尔默(Steve Ballmer)称低企业税率是在爱尔兰做生意的整体优势之一。微软和其它跨国企业一样,会利用子公司来转移利润以降税。微软子公司的纳税金额有明显的模式:低税国家高利润,高税国家低利润。微软在爱尔兰的员工占到了全球员工的 3%,但它产生了近 40% 的税前收入;而在欧洲最大的经济体德国,德国子公司的利润仅占全球利润的不到 0.5%。微软在卢森堡的税前收入为 2.83 亿美元,但在该国仅仅只有 34 名员工。美国国税局(IRS)正寻求微软补税近 290 亿美元。微软官方篇博客称税收“是衡量贡献的一个重要指标,但不是唯一的指标”。

ReactOS 能运行 Half-Life 2

ReactOS 是一个致力于开发与 Windows NT 和 Windows 2000 应用程序和硬件驱动程序兼容的开源操作系统项目,至今已有逾三十年历史。该项目宣布了在游戏运行上的重大进展:六月初 ReactOS 宣布它能成功运行经典射击游戏《Half-Life》,仅仅过了一个月它宣布能成功进行《Half-Life 2》。这次演示是在一台搭载 NVIDIA GeForce 8400GS 显卡的 Intel Sandy Bridge 台式机上进行的。GeForce 8400GS GPU 是在 2007 年推出的,而 Sandy Bridge CPU 是在 2011 年发布的。

巨树能轻松将水输送到树冠

根据发表在《科学》期刊上的一项研究,世界最高的热带树能轻松将水分输送到树冠。传统理论认为,随着树木生长,水分从根部输送到树叶的难度会越来越大,从而限制了树木生长,使其更容易受干旱影响。新研究发现,巨型龙脑香树(Dipterocarp)内部水输送的调整完全补偿了将水抽到树顶的挑战。相比短树,巨树的高度并不会使其水系统更容易受到干旱的影响。单独测试发现,在严重干旱期间,相比短树巨树没有遭受与高度相关的生长损失。Exeter 大学的 Lucy Rowland 教授解释说,树木内部有很多细长中空导管,它们通过在树冠形成低压向上吸水分。导管演化出了精妙的适应机制,即使是在需要将水分输送到高达 80 米以上树顶所需的极低压力下,也能保持水分以液态形式存在。龙脑香树是世界上最高的开花树种。

火星岩石发现大量碳,来源未知

NASA 漫游车在火星上发现的有机碳绝大多数都是在岩石的内部,需要通过钻或磨才能暴露。如今火星漫游车毅力号在河道 Neretva Vallis 附近的岩石表面发现了复杂大分子碳,这是至今在火星上发现的最浅的有机物。如果地球上发现类似的大量大分子碳,通常表明它们来自生物。但对于火星岩石上发现的大量碳,则难以识别其来源,除非将其带到地球进行仔细研究。研究人员表示这些分子碳也可能源于非生物过程。它们是否是古代火星生命的遗迹,还有待未来回答。

仙女座发现新卫星星系

天文学家在距离地球约 250 万光年的仙女座星系附近,发现了一个新的超暗矮星系,命名为仙女座 XXXVI(Andromeda XXXVI,其中 XXXVI 为罗马数字 36),代表它是目前正式命名的第 36 个仙女座卫星星系。研究显示,它可能是迄今在仙女座星系周围发现最暗淡的卫星星系之一。这个星系年龄约达 125 亿年。仙女座星系是距离银河系最近的巨大螺旋星系,周围环绕着许多受到重力束缚的矮卫星星系,因此被视为研究星系形成的天然实验室。目前理论预测,仙女座可能拥有多达约 90 个卫星星系,但迄今仅发现约 40 个,其中只有约 15 个属于超暗矮星系。仙女座 XXXVI 的发现显示,在仙女座周围可能仍隐藏着大量尚未被发现的极暗小星系。

全球极端热应激现象加剧

发表在《Nature Climate Change》期刊上的一项研究显示,全球极端热应激现象加剧。相比 1970 年代,当前多出约 10 亿人要至少扛过一天“极端热应激”,也就是通用热气候指数(UTCI)≥46℃的日子。研究人员分析了 1950-2024 年共 75 年的全球热应激数据集,把白天、夜间,还有昼夜连着的那段时间分开算。结论不复杂:无论哪个时段,热应激现象在频率、强度、持续时间上全线走高,而夜里跑得比白天还快。自 1970 年代以来,从全球平均来看,每年最热的十个夜晚,UTCI 升温速率是每十年 0.32℃;每年最热的十个白天反倒慢一点,每十年 0.27℃。城市热岛效应是原因之一,但更重要是湿度。夜间地表辐射冷却被云量和大气水汽兜住,加上静风日数增加,“凉不下来”的夜越来越多。地域分布上,亚热带首先遭殃:北美南部、欧洲南部、非洲南北两端、南美这些地方,跟 1970 年代比,每年 UTCI≥32℃(强)和≥46℃(极端)的天数多了约 50 天。也就是说,某些亚热带城市一年里快要有一半日子卡在强热应激线上。西班牙、葡萄牙、意大利、法国这一部分南欧国家,现在的体感温度比 1970 年代高出 5 ℃。

现代生活可能与人类大脑不匹配

人类大脑演化适应了一个充满熟人、直接威胁以及小型社交群体的世界。但今天世界变化速度远超人类演化适应的速度。这种不匹配或能解释人类所经历的压力、孤独和持续攀比心理。新加坡研究人员在《Behavioral Sciences》期刊上发表论文,探讨了如何从演化角度理解压力、竞争和孤独。在熟人小群体中形成的行之有效的反应,在现代生活中显得格格不入,甚至令人难以承受。这种演化上的不匹配在社交媒体时代尤其显著。论文合作者 Jose Yong 博士称,竞争不是新鲜事,但现代生活让它无处不在,从演化论的角度看,或许可以解释为什么人们对对比和害怕落后的反应如此强烈,即便这些信号并非来自小群体,而是来自陌生人或屏幕。

NASA 发射探测器拯救坠落中的 Swift 天文台

2004 年发射的 Neil Gehrels Swift 天文台设计监测宇宙中的伽马射线暴,它最初的运行轨道高度约 600 公里,但由于大气阻力其轨道高度已衰减至约 400 公里。2024 年太阳极大期间的太阳活动导致了地球大气膨胀,加速了轨道衰减。如果不进行拯救,Swift 天文台将于 2026 年底不受控重返大气层。Swift 天文台本身没有推进系统。去年 9 月 NASA 授予 Katalyst Space Technologies 一份 3000 万美元的合同,用于开发和发射一艘与 Swift 对接并提升其轨道的探测器 LINK。LINK 于 7 月 3 日成功发射,未来几个月它将尝试用三个机械臂抓住 Swift 天文台,启动推进器,将其送回 600 公里高度的安全轨道。这是一项雄心勃勃的任务,如果成功,那么下一个拯救任务有可能是哈勃太空望远镜。

蜂后会将农药负担转移给蜂卵

蜜蜂是重要的授粉昆虫,但其数量在世界各地都出现了下降,原因可能与农药有关。发表在《Current Biology》期刊上的一项研究在实验室条件下跟踪了农药在一个小型蜂群中的流动。研究发现,工蜂最初通过食物过滤和在蜂巢中沉积将食物中的农药水平降低 95%,但到第 10 天过滤效率下降至 86%;蜂后体内的农药含量显著低于工蜂,但随着时间的推移,蜂后会在卵巢中积累农药并将其转移到正在发育的蜂卵;蜂后的存在会改变整个蜂群的化学物质分布,工蜂会集中接触农药,增加蜂蜡中农药的沉积。

阿里巴巴禁止员工使用 Claude Code

阿里巴巴因担心后门禁止员工在工作中使用 Anthropic 的 Claude Code,它要求员工使用自家的编程平台 Qoder。尽管 Anthropic 限制了中国用户和实体的访问,但 Claude Code 在中国程序员中间仍然非常受欢迎。Anthropic 上个月指控阿里巴巴蒸馏了其模型,几天前它的 Claude Code 被发现包含了检测用户是否来自中国的代码。

Valve 开源 Steam Machine 的电子墨水屏

Valve 不会为 Steam Machine 游戏机提供正面的电子墨水屏,但它开源了相关技术,允许任何人自己动手为 Steam Machine 安装墨水屏。相关文件在 MIT 许可证下发布在 GitLab。Valve 将该项目称之为 Inkterfac,用户需要准备: 1 x Adafruit ESP32 Feather with 2MB PSRAM. 1 x Adafruit eInk Breakout Friend. 1 x Adafruit 5.83" Monochrome eInk Panel. 13 x M2.5 x 5mm Pan Head Machine Screws. 4 x 1/4" x 1/4" x 3/16" Stepped Magnet SB443-OUT.

阿里巴巴与美国达成和解将支付 6 亿美元

美国司法部表示,因未能阻止商家进口和销售违法药物,阿里巴巴集团及蚂蚁集团子公司将支付 6 亿美元,目前已就此达成和解协议。美国司法部不会起诉两家公司。阿里巴巴在 2016 年 1 月至 2024 年 12 月期间,未能防止商家通过阿里运营的电商平台向美国进口和销售违法化学物质、药品以及假药制造设备。蚂蚁子公司 AUS 则在 2020 年 1 月至 2023 年 12 月期间提供了支付服务。销售的违法商品达到 8 万笔,交易总额超过 2 亿美元。阿里巴巴将被没收 2 亿美元,AUS将被没收 1.9 亿美元,此外,阿里巴巴还将支付 1.25 亿美元罚金,AUS 将支付 8500 万美元罚金。

日本最高法院裁决 AI 不能被列为专利申请的发明人

日本最高法院驳回了一位美国工程师要求将 AI 列为专利申请发明人的上诉。日本最高法院维持了下级法院的判决,即根据专利法,专利申请的发明人必须是“自然人”。原告于 2020 年提交了一份专利申请,发明人是原告创建的 DABUS AI。专利局要求原告提供自然人的姓名作为发明人。原告拒绝提供,因此该申请被驳回。日本最高法院表示,专利法并未预见到 AI 的快速发展,而关于是否应授予 AI 发明专利权的问题“鉴于其对社会的影响,需要进行讨论”。

代糖会扰乱肠道健康和新陈代谢

越来越多的研究表明,人工甜味剂和非营养性甜味剂可能会扰乱新陈代谢。代糖在食品中已经无处不在。根据发表在《Current Atherosclerosis Reports》期刊上的一篇综述和荟萃分析,研究人员发现相比水或安慰剂等非热量对照组,人工甜味剂和低热量甜味剂会导致空腹胰岛素水平升高,糖化血红蛋白(HbA1c,长期血糖控制的标志物)升高,显示出胰岛素敏感性恶化的趋势。研究人员表示,一种解释与肠道微生物群有关。非营养性甜味剂会通过肠道与这些微生物直接接触,研究表明它会改变肠道微生物群的组成和功能。

苹果寻求从长鑫和长江存储采购内存

内存价格危机正迫使美国硬件制造商违背政府意愿尝试与中国内存制造商达成交易。苹果正与长鑫存储和长江存储谈判采购内存,以缓解全球内存短缺的影响。两家中国公司都被五角大楼列入了 1260H 名单,该黑名单并不具有法律上的禁止交易效力。但如果同时被列入美国商务部的实体清单,美国公司与之交易会受到限制,这正是苹果寻求阻止的。苹果可能会尝试仅在销往中国的苹果设备中使用中国内存芯片,以此限制负面影响。

09

APP STORE RANK

09.00
APP STORE RANK
Loading…