Skip to the content.

From 304 items, 29 important content pieces were selected


Technology News

  1. GitHub details how a VS Code retry loop prolonged its August 17 outage ⭐️ 8.0/10
  2. Malicious Rust Crate Arrayref Executes a Build-Time Payload ⭐️ 8.0/10
  3. 蚂蚁百灵开源 Ling-3.0 Base 模型及六个训练检查点 ⭐️ 8.0/10
  4. Terence Tao Warns AI Could Create a Crisis of Excessive Mathematical Proofs ⭐️ 8.0/10
  5. AliExpress Allegedly Uses Silent WebAudio Activity That Disrupts Bluetooth Multipoint ⭐️ 7.0/10
  6. Huzzah Connects Persistent Pseudocode With AI-Generated Code ⭐️ 7.0/10
  7. 125M-Parameter Transformer Autocompletes Piano on an iPhone ⭐️ 7.0/10
  8. Linux 7.2 Highlights Graphics, HDMI 2.1, and Raspberry Pi Support ⭐️ 7.0/10
  9. Bun 1.4 Adds WebView-Based JSON APIs for Browser Automation ⭐️ 7.0/10
  10. Anthropic Cybersecurity Skills Library Reaches 817 Agent-Ready Skills ⭐️ 7.0/10
  11. Superpowers Adds a Structured Development Methodology for Coding Agents ⭐️ 7.0/10
  12. Chrome DevTools MCP Connects Coding Agents to Live Chrome ⭐️ 7.0/10
  13. Meetily Brings Local Transcription and Summarization to Meeting Workflows ⭐️ 7.0/10
  14. Anubis protects web services from AI crawler traffic ⭐️ 7.0/10
  15. Meta Becomes One of Microsoft’s Largest AI Customers ⭐️ 7.0/10
  16. Tesla Robotaxi May Be Operating Without Safety Drivers in Austin ⭐️ 7.0/10
  17. SteamOS 3.9 Adds Direct Arc B580 Support ⭐️ 7.0/10
  18. 阿里称平头哥二代芯片将于下半年流片并产出 ⭐️ 7.0/10
  19. US Agencies Warn of AI-Assisted Attacks on Water Infrastructure ⭐️ 7.0/10
  20. Micron to Invest $10 Billion in U.S. Storage Research Over the Next Decade ⭐️ 7.0/10
  21. DeepSeek Harness v0.1.0-rc.8 Adds Multimodal Input and Expanded Subagents ⭐️ 7.0/10
  22. Malware Campaign Targets Steam Wallpaper Engine Workshop Users ⭐️ 7.0/10
  23. The Spectral Neuron Proposes an Interpretable ML Primitive ⭐️ 7.0/10
  24. OpenAI Previews Privacy-Preserving Abuse Detection for Eligible API Customers ⭐️ 7.0/10
  25. Study Links AI-Assisted Homework Gains to Lower Exam Scores in Chinese Students ⭐️ 7.0/10
  26. Reverse Image Search Service Exposes Millions of Facial Photos ⭐️ 7.0/10

Financial News

  1. Evergrande Founder Xu Jiayin Sentenced to Life in Prison ⭐️ 8.0/10
  2. Stripe Agrees to Acquire OpenRouter ⭐️ 7.0/10
  3. CFTC Seeks Views on AI Compute Futures ⭐️ 7.0/10

Technology News

GitHub details how a VS Code retry loop prolonged its August 17 outage ⭐️ 8.0/10

GitHub’s postmortem of its August 17 outage says delayed responses from an internal endpoint triggered a latent client-side retry bug in VS Code. The retry loop amplified traffic by approximately 10 times, worsening the incident and delaying recovery of the Copilot Token Service. The analysis highlights how automatic retries can turn partial failures into cascading outages, particularly when clients continue retrying without adequate limits or backoff. GitHub presents the incident as evidence for further work on retry behavior, service resilience, and operating large-scale developer infrastructure.

hackernews · 0xedb · Aug 20, 19:22 · Discussion

「Background」 GitHub's August 17 incident was a 7-hour-47-minute outage that affected github.com, authentication, GitHub Actions, APIs, pull requests, issues, and Copilot worldwide [tool-1-1]. In distributed systems, clients often retry failed or delayed requests to handle temporary connectivity problems, but poorly bounded retries can amplify traffic against an already degraded service and create a cascading failure.

「Impact」 GitHub Copilot and other affected users experienced prolonged service disruption because VS Code clients generated substantially more traffic while GitHub’s internal services were recovering.

「Community Discussion」 Commenters broadly agreed that unbounded or poorly designed retries can conceal real failures and amplify outages, while some questioned whether retries should be used extensively for desktop-connected services. Others noted GitHub’s scale and free offerings, and highlighted the reported increase in monthly commits from 1.4 billion to 2.9 billion as evidence of rapidly growing demand.

References

Tags: #Site Reliability Engineering, #Outage Postmortem, #Distributed Systems, #Retry Logic, #GitHub Copilot


Malicious Rust Crate Arrayref Executes a Build-Time Payload ⭐️ 8.0/10

The Rust crate `arrayref` was involved in a software supply-chain attack in which a malicious version executed a payload during the build process. The incident affects Rust dependency users because Cargo builds can run package-provided build scripts or procedural macros in developer and CI environments. The Rust project published an incident report, and the RustSec advisory database opened a corresponding issue. The event highlights the risks of trusting third-party crates and the need for stronger build isolation, dependency review, and clearer package-registry incident handling.

hackernews · abhisek · Aug 20, 13:23 · Discussion

「Background」 Rust crates can include build scripts that Cargo executes during compilation, giving dependencies the ability to perform actions on the build machine. In this incident, the compromised arrayref release added the typosquatted `proc-macro1` crate, whose build script downloaded and executed a remote binary; related crates were also deleted from crates.io.[tool-1-1][tool-1-2]

「Impact」 Developers and CI systems building compromised versions such as `arrayref` 0.3.10, `internment` 0.8.7, or `append-only-vec` 0.1.9 could execute a remote binary through a typosquatted build-time dependency, requiring dependency review and environment remediation.

「Community Discussion」 Commenters criticized the lack of visible registry-level security information after the affected package version disappeared from crates.io, and called for more transparent incident response and finer-grained repository history. Other concerns included Cargo’s lack of effective sandboxing for `build.rs` scripts and the growing dependency exposure of modern software ecosystems, while some commenters argued that more batteries-included standard libraries could reduce reliance on third-party packages.

References

Tags: #Rust, #Software Supply Chain Security, #Malware, #Build Systems


蚂蚁百灵开源 Ling-3.0 Base 模型及六个训练检查点 ⭐️ 8.0/10

蚂蚁百灵正式开源 Ling-3.0-tiny-base 和 Ling-3.0-flash-base,并为每个模型提供预训练、中期训练和 WSM 合并阶段的检查点,共六个 checkpoint。Ling-3.0-tiny-base 采用 7.9B 总参数、1.3B 激活参数的配置,Ling-3.0-flash-base 采用 124B 总参数、5.1B 激活参数的稀疏激活设计;官方称两者在代码、复杂推理或长上下文等评测中具有竞争力。中期训练后,模型使用 WSM(Warmup-Stable and Merge)进行检查点加权合并,以替代传统学习率衰减,使研究者能够持续预训练、扩展数据,并离线探索不同的学习率衰减曲线。由于这些模型是未经指令对齐的 Base 模型,官方不建议直接部署为聊天服务或用于安全关键型应用,生产使用仍需完成针对具体任务的后训练、评估和验证。

rss · IT之家 · Aug 20, 22:54

「背景」 Base 模型是经过预训练、但尚未完成指令微调和安全对齐的基础模型,通常需要后训练才能用于面向终端用户的交互应用。WSM 是蚂蚁百灵在中期训练后采用的检查点加权合并方法,旨在保留持续训练和后续实验中对训练过程进行调整的空间。

「实际影响」 模型研究者和开发团队现在可以从不同训练阶段开始进行持续预训练、领域微调、偏好优化、强化学习、蒸馏以及长上下文和 MoE 实验,而不必只使用最终 Base checkpoint。

Tags: #开源大模型, #模型训练, #Checkpoint, #后训练, #MoE


Terence Tao Warns AI Could Create a Crisis of Excessive Mathematical Proofs ⭐️ 8.0/10

In an article written for the 2026 International Congress of Mathematicians, Terence Tao argues that mathematicians should focus less on what AI can do and more on what research is meant to achieve. He compares the emerging situation with the foundational crisis between 1900 and 1930, associated with Russell’s paradox and Gödel’s incompleteness theorems, and warns that AI could shift mathematics from a shortage of proofs to an excess of them. He cites the second round of the First-Proof project, in which four AI systems assessed 10 unpublished research problems: seven were judged successfully solved by at least one system, at costs ranging from tens to hundreds of dollars per problem. Tao further argues that a proof should be considered incomplete if no one can clearly explain it, even when it has passed formal verification.

telegram · zaihuapd · Aug 20, 13:19

「背景」 20世纪初,罗素悖论等基础问题以及哥德尔不完备定理曾迫使数学界重新审视数学体系的可靠性、边界与研究基础。现代形式化验证可以检查证明是否符合预先定义的公理和规则,但这种机器可验证性并不等同于人类能够理解证明的思路与意义;这一差别构成了陶哲轩所警告的新危机背景。

「Impact」 Mathematicians may need to treat clear human-readable explanations as part of a complete result, even when AI-generated proofs pass formal verification.

References

Tags: #人工智能, #数学证明, #形式化验证, #AI科研, #数学基础


AliExpress Allegedly Uses Silent WebAudio Activity That Disrupts Bluetooth Multipoint ⭐️ 7.0/10

An article alleges that AliExpress webpages perform silent WebAudio activity that can fingerprint users and interfere with Bluetooth multipoint connections. The reported behavior matters because browser audio APIs can operate without obvious audible output while still interacting with connected audio devices. The supplied material does not independently verify the mechanism, its prevalence, or whether the behavior is caused by fingerprinting, audio-device probing, or another implementation detail.

hackernews · emctech · Aug 20, 10:08 · Discussion

「Relevant Concepts」 WebAudio lets webpages create, process, analyze, and route audio graphs, including graphs connected to the system audio destination. In the reported case, AliExpress allegedly uses obfuscated security scripts to generate and analyze waveforms for browser fingerprinting, then routes the result through a zero-gain node, which can keep an audio path active without audible output.[^1]

「User Impact」 Some commenters report disrupted car audio, hearing-aid behavior, or multipoint connections after using AliExpress, but these accounts do not establish that the webpage caused every incident.

「Community Reports」 Commenters questioned why silent audio does not trigger browser audio indicators and whether it can keep pages active in the background, while others described changes to hearing-aid amplification and car systems that stopped after closing or uninstalling AliExpress. Another commenter noted that WebAudio fingerprinting is substantially mitigated in Firefox and may be mitigated in other browsers.

References

Tags: #WebAudio, #Browser Privacy, #Fingerprinting, #Bluetooth, #Web Security


Huzzah Connects Persistent Pseudocode With AI-Generated Code ⭐️ 7.0/10

Huzzah is an experimental editor that lets developers write pseudocode and synchronizes it with generated source code when the file is saved. The pseudocode remains alongside the generated code, preserving the developer's prompt as a persistent record of intent. Its creator, Daniel Vaughn, designed the approach after becoming frustrated with repeatedly describing changes to coding agents and with agents becoming less reliable as codebases grow more complex. The project is currently a proof of concept, so the supplied account provides no evidence about adoption, implementation maturity, or comparative performance.

hackernews · danielvaughn · Aug 20, 19:05 · Discussion

「Why It Matters」 AI-assisted programming commonly uses natural-language prompts to direct agents that generate or modify executable code, but those prompts are often transient and can become difficult to manage as a project evolves. Huzzah treats pseudocode as an editable intermediate representation: developers work at a higher level of abstraction while the editor translates that intent into source code.

「Impact」 Developers can experiment with Huzzah’s proof-of-concept workflow, which keeps declarative pseudocode as a persistent record of intent alongside LLM-generated source code, but the supplied evidence does not establish adoption, maturity, or comparative benefits.

「Community Discussion」 Discussion was divided between support for persistent pseudocode as a way to improve precision and manage larger systems, and concern that the core problem is the loss of deliberate, meditative programming rather than the effort of writing prompts. Commenters also questioned whether the approach merely introduces a terse language with compilation costs, while noting that it may be more useful for complex applications than for small ones.

References

Tags: #AI-assisted programming, #Developer tools, #Code generation, #Pseudocode, #Software architecture


125M-Parameter Transformer Autocompletes Piano on an iPhone ⭐️ 7.0/10

The project demonstrates real-time piano-performance autocomplete using a 125-million-parameter transformer running entirely on an iPhone 15. A player supplies MIDI notes through a piano, and the model generates a continuation in the style of an autocomplete tool such as GitHub Copilot or Tabnine. The reported throughput is approximately 108 notes per second, with deployment handled through Apple’s Core ML. The app is free to try, although the post provides limited information about its training data, evaluation methodology, latency measurements, and generated-music quality.

hackernews · simedw · Aug 20, 12:04 · Discussion

「Background」 MIDI represents musical performances as structured events such as note pitches, timings, velocities, and durations, making it suitable for sequence models. A transformer can use the notes played so far as context to predict subsequent events, while Core ML enables a trained model to run locally on Apple devices instead of sending performance data to a server.

「Practical Consequence」 Musicians with a compatible iPhone and MIDI piano can experiment with interactive generative accompaniment without sending performance data to a server.

「Community Discussion」 Commenters connected the system to historical classical-composition training based on recognizing and generating familiar formulas, and several saw it as a tool for rapidly exploring musical possibilities where taste remains the main human contribution. Others focused on missing technical details such as dataset size, while one user described hearing Für Elise continued in a radically different direction as surprisingly disconcerting.

Tags: #On-Device ML, #Transformer Models, #Core ML, #Generative Music


Linux 7.2 Highlights Graphics, HDMI 2.1, and Raspberry Pi Support ⭐️ 7.0/10

Linux 7.2 has been released, with the available discussion highlighting graphics support, HDMI 2.1, display-stack changes, and embedded-device updates. The release is therefore relevant to kernel developers, graphics-stack maintainers, hardware-support engineers, and users running embedded Linux systems. The supplied material does not provide enough detail to determine which specific drivers, devices, or protocols changed or whether the release includes groundbreaking performance improvements. In particular, the apparent HDMI 2.1 changes require clarification because earlier open-source AMD support was understood to be constrained by HDMI Forum licensing or specification-access issues.

hackernews · mariuz · Aug 20, 15:46 · Discussion

「Relevant Background」 The Raspberry Pi 4 and 5 use the V3D graphics driver for their GPUs. Before Linux 7.2, that driver enabled the GPU clock during initialization and kept it enabled for the driver’s entire lifetime; runtime power management allows the GPU to be powered down when it is idle and reactivated when needed.

「Community Discussion」 Commenters focused on how Linux 7.2 could improve HDMI 2.1 support despite previously reported restrictions affecting AMD's open-source driver, while others questioned the practical advantages of HDMI over DisplayPort on desktop systems. Raspberry Pi 4 users expressed interest in updating, and one commenter praised the added context, but the discussion did not establish the exact technical changes or their compatibility limits.

References

Tags: #Linux kernel, #HDMI 2.1, #Graphics drivers, #Raspberry Pi


Bun 1.4 Adds WebView-Based JSON APIs for Browser Automation ⭐️ 7.0/10

Bun 1.4 introduces Bun.WebView, adding browser automation to the runtime through macOS WebKit or a local Chromium process controlled via the Chrome DevTools Protocol. Simon Willison used it to prototype a shot-scraper-style TypeScript JSON API that loads web pages and executes JavaScript against them. The prototype required an estimated 192MB to 256MB container to run full Chrome against complex pages, based on cgroup tests. Bun 1.4 also adds 1,517 Node.js tests, fixes more than 2,900 issues, reduces idle CPU usage fivefold and memory usage by up to 35%, and starts 50% faster on Linux, while rewriting Bun from Zig to Rust.

rss · Simon Willison · Aug 20, 15:37

「Why It Matters」 Bun is a JavaScript and TypeScript runtime that aims to provide an alternative to Node.js, while Bun.WebView brings browser capabilities directly into the runtime. A shot-scraper-style API combines page loading with caller-supplied JavaScript execution, making it useful for automation and structured data extraction from web pages.

「Practical Impact」 Developers can build browser-automation and scraping services around Bun 1.4, but deployments handling complex pages should budget roughly 192MB to 256MB of container memory for Chromium.

Tags: #Bun, #JavaScript runtimes, #WebView, #Web scraping, #Developer tools


Anthropic Cybersecurity Skills Library Reaches 817 Agent-Ready Skills ⭐️ 7.0/10

The independent Anthropic Cybersecurity Skills project provides 817 structured cybersecurity skills across 29 domains for AI coding and agent platforms. The repository says the skills follow the agentskills.io standard, support Claude Code, GitHub Copilot, Codex CLI, Cursor, Gemini CLI, and 20 or more other platforms, and are released under the Apache 2.0 license. It maps skills to six frameworks, including MITRE ATT&CK, NIST CSF 2.0, MITRE ATLAS, D3FEND, NIST AI RMF, and MITRE F3, with framework coverage varying by skill. The project includes offensive and dual-use material such as red-team command-and-control, phishing simulation, and exploitation techniques, and therefore limits its stated use to authorized testing, research, defense, and education; the supplied information does not independently establish the library's quality, maintenance, or real-world effectiveness.

rss · GitHub Trending - Daily · Aug 20, 02:12

「Background」 The repository packages cybersecurity guidance as structured, reusable skills following the agentskills.io open standard, so compatible AI coding and agent tools can discover and apply them. Its framework mappings connect individual skills with established models such as MITRE ATT&CK for adversary behavior and NIST CSF for organizational cybersecurity practices, while other mappings address AI threats and defensive techniques.[tool-1-1]

「Practical Consequence」 Security engineers can add a broad, framework-mapped skill collection to supported AI agents, but organizations must review and govern the content before using it in operational or offensive-security workflows.

References

Tags: #AI Agents, #Cybersecurity, #MITRE ATT&CK, #NIST AI RMF, #Open Source


Superpowers Adds a Structured Development Methodology for Coding Agents ⭐️ 7.0/10

Superpowers is an open-source software development methodology for coding agents, built from composable skills and startup instructions. Instead of immediately writing code, it guides an agent through clarifying requirements, presenting a readable specification for approval, producing an implementation plan, and then executing tasks through a subagent-driven process. The methodology emphasizes test-driven development, YAGNI, and DRY, while allowing agents to work autonomously through planned engineering tasks with inspection and review. It can be installed through plugins or extensions for multiple agent harnesses, including Claude Code, Codex, Cursor, Devin CLI, Factory Droid, Gemini CLI, GitHub Copilot CLI, and others, with separate installation required for each harness.

rss · GitHub Trending - Daily · Aug 20, 02:12

「Background」 Coding agents are AI-powered development tools that can inspect repositories, plan changes, write code, and run tests within a host environment or “harness,” such as Claude Code, Codex CLI, Cursor, or Gemini CLI. Superpowers packages reusable agent skills and startup instructions into a methodology that guides these tools through specification, design approval, implementation planning, test-driven development, and subagent-based execution rather than immediate code generation.

「Practical Consequence」 Developers using supported coding-agent tools can adopt a standardized, approval-driven workflow for planning, testing, and reviewing agent-generated changes, but must configure Superpowers separately for each harness they use.

References

Tags: #AI Agents, #Software Engineering, #Developer Tools, #Open Source


Chrome DevTools MCP Connects Coding Agents to Live Chrome ⭐️ 7.0/10

Chrome DevTools MCP is an MCP server that lets coding agents such as Antigravity, Claude, Cursor, and Copilot control and inspect a live Chrome browser. It combines Chrome DevTools and Puppeteer for trace-based performance insights, network analysis, screenshots, source-mapped console stack traces, and automated actions that wait for results; a CLI and a slimmer mode for basic browser tasks are also available. The project officially supports current Google Chrome and Chrome for Testing, requires an LTS Node.js version and npm, and other Chromium-based browsers may behave unexpectedly. Browser contents can be inspected, modified, or exposed to MCP clients, while usage statistics are enabled by default unless disabled with `–no-usage-statistics`, `CHROME_DEVTOOLS_MCP_NO_USAGE_STATISTICS`, or `CI`; performance tools can also query CrUX data unless `–no-performance-crux` is used.

rss · GitHub Trending - TypeScript Daily · Aug 20, 02:30

「How It Fits」 The Model Context Protocol allows AI assistants to connect to external tools through standardized servers, giving coding agents capabilities beyond text generation. Chrome DevTools provides browser-level debugging and performance data, while Puppeteer supplies programmatic Chrome automation; this project exposes those capabilities through MCP and can be installed through an MCP client with `npx`.

「Impact」 Developers connecting an MCP client to Chrome DevTools MCP should treat the browser session as exposed to that client, use supported Google Chrome or Chrome for Testing, and explicitly disable default usage statistics with `–no-usage-statistics` when required by privacy or organizational policies.

Tags: #Model Context Protocol, #Chrome DevTools, #AI Coding Agents, #Browser Automation


Meetily Brings Local Transcription and Summarization to Meeting Workflows ⭐️ 7.0/10

Meetily is an open-source, Rust-based meeting assistant that captures meetings, transcribes speech in real time, identifies speakers, and generates summaries. Its privacy-first configuration processes recordings and AI workloads locally using Parakeet or Whisper for transcription and Ollama for summarization, without requiring cloud services. The project supports self-hosting, offline use, and multiple meeting platforms, with releases targeting macOS and Windows while the feature list also mentions Linux. Users can alternatively connect summarization to Claude, Groq, OpenRouter, or another OpenAI-compatible endpoint, so fully local processing depends on choosing local models and configuration; the advertised four-times-faster transcription and #1 ranking are claims in the supplied source without independently verified evidence.

rss · GitHub Trending - Rust Daily · Aug 20, 02:27

「Required Context」 Speaker diarization separates a transcript by identifying which participant is speaking, while summarization uses a language model to turn the transcript into meeting notes. Local inference keeps audio, transcripts, and prompts on infrastructure controlled by the user, but it generally requires compatible hardware and locally installed models.

「Practical Impact」 Organizations handling sensitive meetings can deploy a meeting-notes workflow without sending recordings or transcripts to a vendor, provided they use the local processing path and accept its hardware, platform, and model-configuration requirements.

Tags: #Rust, #Local AI, #Speech-to-Text, #Open Source, #Privacy


Anubis protects web services from AI crawler traffic ⭐️ 7.0/10

Anubis is an open-source Go project that acts as a Web AI Firewall Utility for protecting upstream web services from scraper bots, particularly AI crawlers. It evaluates incoming HTTP requests with one or more challenges before allowing them through, aiming to reduce resource pressure on smaller websites and communities. The project describes this approach as a broad or "nuclear" response that can also block smaller scrapers and legitimate bots such as the Internet Archive, although operators can configure policies to allowlist specific bots. Anubis is intended for deployments that cannot or do not want to use Cloudflare, while its documentation notes that many sites may otherwise be adequately protected by Cloudflare.

rss · GitHub Trending - Go Daily · Aug 20, 02:18

「Background」 Anubis is a reverse proxy, meaning it sits between visitors and an upstream web application and evaluates requests before forwarding legitimate traffic. Its challenges use SHA-256 proof of work to make automated scraping more expensive while allowing ordinary users to proceed, although administrators may need policies to permit trusted bots.

「Practical Impact」 Website operators gain a self-hosted option for challenging crawler traffic, but they must configure allowlists carefully to avoid reducing access for legitimate bots and other automated clients.

References

Tags: #AI Crawlers, #Web Infrastructure, #Bot Mitigation, #Go, #Open Source


Meta Becomes One of Microsoft’s Largest AI Customers ⭐️ 7.0/10

Meta is reportedly spending hundreds of millions of dollars annually on AI services and computing capacity through Microsoft Azure, making it one of Microsoft’s largest AI customers. Sources cited by Bloomberg said Meta consumes several trillion tokens per week through Azure, mainly for software development and evaluating its internally developed models. Azure’s Foundry platform offers 11,604 models from providers including OpenAI, Anthropic, DeepSeek, Mistral AI, xAI, and Meta, and had 100,000 customers as of July. Meta selects models across platforms based on availability and cost while also developing its own model API business, which could eventually compete with services such as Azure Foundry.

rss · IT之家 · Aug 20, 14:40

「Why It Matters」 Azure Foundry is Microsoft’s platform for providing enterprise access to models from multiple AI vendors alongside the computing resources needed to run them. Meta is developing its own AI models but, according to the report, also rents external models for development and benchmarking, illustrating how large technology companies can combine proprietary systems with multiple third-party providers.

「Industry Impact」 Meta’s reported spending shows that major AI developers are becoming significant customers of cloud platforms even while building competing models and APIs, increasing the importance of multi-model infrastructure and enterprise cloud capacity.

Tags: #企业人工智能, #云计算, #Azure, #大语言模型, #AI基础设施


Tesla Robotaxi May Be Operating Without Safety Drivers in Austin ⭐️ 7.0/10

Third-party tracking suggests Tesla’s Austin Robotaxi service may have operated for several consecutive weeks without an in-car safety driver. Robotaxi Tracker recorded 170 Austin trips over two weeks involving 54 vehicles, with no safety driver observed in any of them, while roughly 30 driverless Tesla vehicles were reportedly active across Dallas and Houston during the prior week. The apparent increase partly reflects corrections to the tracker’s previously delayed metrics, and recent user reports on Reddit and X are broadly consistent with the change. Tesla has not officially confirmed the fleet figures, as its current Robotaxi service relies mainly on Model Y vehicles and the company rarely publishes detailed operational data.

rss · IT之家 · Aug 20, 14:32

「Key Context」 Tesla’s Robotaxi program has been progressively testing rides without an employee or safety driver inside the vehicle, but its fleet composition and operating status are not disclosed in detail by the company. Robotaxi Tracker estimates those changes from automatically recorded app trips, crowdsourced reports, and public information, so its figures provide an external indication rather than an official fleet census.

「Why It Matters」 If confirmed, Austin would represent a significant expansion of Tesla’s fully driverless commercial operations ahead of the planned Cybercab launch, although the available evidence does not establish official fleet-wide deployment.

Tags: #特斯拉, #Robotaxi, #自动驾驶, #车队运营


SteamOS 3.9 Adds Direct Arc B580 Support ⭐️ 7.0/10

The SteamOS 3.9 development branch can now boot directly on Intel's Arc B580 discrete GPU, removing the previous need to install SteamOS with a supported AMD Radeon card first. In ETA Prime's tests, the Arc B580 and Core Ultra 5 250K Plus ran Cyberpunk 2077 at about 80 FPS and Horizon Zero Dawn at about 70 FPS at 1440p, while Fallout 4, Elden Ring, and Forza Horizon 5 reached approximately 60, 60, and 80 FPS respectively under the reported settings. The support expands SteamOS compatibility beyond Intel SoC-based handhelds and makes the distribution more practical for Intel desktop GPU users. However, XeSS cannot use the B580's XMX matrix engines for acceleration, and XeSS Frame Generation and Multi-Frame Generation are unavailable, although alternatives such as FSR frame generation remain usable.

rss · IT之家 · Aug 20, 14:15

「Background」 SteamOS is a Linux-based operating system designed around the Steam gaming ecosystem, so GPU driver and hardware compatibility determine whether a system can install and boot it successfully. Intel Arc GPUs use XeSS, Intel's upscaling and frame-generation technology, while XMX engines provide hardware acceleration for some AI workloads; the reported SteamOS limitations therefore leave Arc B580 functionality behind its Windows support.

「Impact」 Arc B580 owners can install and boot the SteamOS 3.9 development build without an interim AMD GPU and run several games at 1440p, but they must accept missing XeSS XMX acceleration and XeSS frame-generation features.

Tags: #SteamOS, #Intel Arc B580, #Linux 游戏, #显卡驱动, #XeSS


阿里称平头哥二代芯片将于下半年流片并产出 ⭐️ 7.0/10

阿里 CEO 吴泳铭在 8 月 20 日的分析师电话会上表示,平头哥第二代国产芯片预计于下半年开始流片并产出,具备“非常强”的算力和互联带宽,公司内部认为其“完全可以”替代大规模模型训练。基于新一代平头哥芯片真武 M890 的超节点实例已上线阿里云并开始规模化销售,阿里计划在下半年持续放量。阿里称,截至 8 月初,真武芯片已服务超过 650 家客户;财报另披露,截至今年 4 月其累计出货 56 万片、服务 20 多个行业的 400 多家客户。阿里同时将云智能集团与平头哥整合为“AI 云与算力服务”,但目前尚未公布第二代芯片的架构、性能基准或实际替代效果。

rss · IT之家 · Aug 20, 14:05

「Background」 PingTouGe is Alibaba’s semiconductor unit, and its Zhenwu product line covers self-developed AI, CPU, and networking chips. “Tape-out” refers to sending a chip design for manufacturing, after which physical production and deployment can begin; the Zhenwu M890 supernode is a cloud computing system that links multiple AI chips for large-scale workloads.

「实际影响」 如果按计划量产并达到公司所述能力,阿里云客户将获得更多国产 AI 训练算力选择,但芯片性能、软件兼容性和规模化交付能力仍需后续产品数据验证。

Tags: #国产AI芯片, #大模型训练, #云计算, #AI算力


US Agencies Warn of AI-Assisted Attacks on Water Infrastructure ⭐️ 7.0/10

CISA, the FBI, and the NSA have warned that attackers are targeting Siemens S7 programmable logic controllers used in water, wastewater, energy, manufacturing, and agriculture systems across the United States. CISA described the activity as a broad campaign affecting water and wastewater facilities, with potential consequences including service outages, safety incidents, and equipment damage. Attackers reportedly use AI to generate exploit scripts, identify vulnerable PLCs through publicly available information, and analyze how the devices operate; older software and systems with inadequate protection are especially exposed. Facilities in Minnesota, Michigan, Arkansas, Georgia, and New Jersey have reported intrusions, while US officials said suspected Iranian hackers have intensified attacks on internet-connected critical infrastructure, although the report does not provide specific vulnerability identifiers, attack samples, or the number of affected devices.

rss · IT之家 · Aug 20, 13:05

「背景」 可编程逻辑控制器(PLC)是工业控制系统中的现场控制设备,用于自动化管理供水、能源、制造和农业等流程;西门子 S7 系列覆盖多个产品世代,包括 S7-200 至 S7-1500 F 系列安全控制器。由于这类设备直接影响物理过程,暴露在互联网、使用过时软件或缺乏隔离与访问控制时,入侵可能从网络层面扩大为运行中断或设备安全风险;美国机构的联合通报因此将此次活动置于持续针对 PLC 和运营技术设备的威胁背景下。[1][2]

「Impact」 Water and wastewater operators using internet-exposed or poorly protected Siemens S7 PLCs face increased risk of unauthorized control and operational disruption, particularly in rural systems covering large geographic areas.

References

Tags: #关键基础设施安全, #工业控制系统, #PLC安全, #AI辅助攻击, #网络安全


Micron to Invest $10 Billion in U.S. Storage Research Over the Next Decade ⭐️ 7.0/10

Micron Technology announced the creation of Micron Research Labs, headquartered in Boise, Idaho, with plans to invest $10 billion over the next 10 years. The laboratory will pursue long-term research beyond Micron’s current products and technology roadmaps, covering core memory technologies, advanced memory and computing architectures, chip packaging, and next-generation semiconductor manufacturing. Micron says the center will be the first U.S. research facility dedicated specifically to storage technology and will support university collaborations, global branch laboratories, and industry partnerships. The announcement expands on Micron’s separate commitment to invest more than $250 billion in U.S. manufacturing and research and development, which the company expects will create more than 90,000 jobs, but it does not identify a specific technical breakthrough or completed research result.

rss · IT之家 · Aug 20, 12:44

「Background」 Memory and storage technologies are central to AI infrastructure because they supply data to processors and influence system capacity, bandwidth, energy use, and cost. Micron’s proposed laboratory is intended to connect its research teams in the United States, Europe, and Asia with universities, government organizations, startups, customers, and other semiconductor companies to move fundamental research toward practical applications.

「Impact」 The investment strengthens Micron’s long-term U.S. research and manufacturing position and could expand collaboration across the memory, packaging, computing, and semiconductor-manufacturing ecosystems, although its near-term technical or commercial effects remain unspecified.

Tags: #存储技术, #半导体, #AI基础设施, #芯片制造


DeepSeek Harness v0.1.0-rc.8 Adds Multimodal Input and Expanded Subagents ⭐️ 7.0/10

DeepSeek Harness v0.1.0-rc.8, released less than a week after its August 13 public beta launch, is the project’s first major update and includes 14 changes. The release adds native image requests for compatible DeepSeek models, mixed text-and-image input for commands such as /goal and /plan, and file or session references through the @ menu. It also allows Claude Code and Codex to be installed as Profile Bundle subagents, with Codex supporting non-interactive permission mode and multiple named instances, while Windows gains persistent PowerShell sessions through the PTY terminal. Additional fixes address oversized or accumulated images, interrupted streaming responses, custom OpenAI-compatible gateways, and other terminal, tool-calling, web-search, session-forking, and SQLite performance issues; when the underlying model lacks vision, Harness can instead use OCR, color statistics, pixel scanning, and image metadata to provide structured evidence to a text model, though this remains less capable than direct visual understanding.

rss · 36氪 - 24小时热榜 · Aug 20, 01:30

「Background」 An agent harness is an orchestration layer that connects language models with tools, sub-agents, sessions, sandboxes, and user interfaces, allowing these components to be combined or replaced through plugins. DeepSeek Harness entered public beta in version 0.1 shortly before this release, so rc.8 represents an early iteration of an open-source system whose capabilities are still developing.

「Practical Impact」 Developers using DeepSeek Harness can now include images in Agent workflows and combine Claude Code or multiple Codex instances as subagents, but text-only models still face clear limitations on photographs and complex spatial content when relying on tool-based visual analysis.

Tags: #DeepSeek Harness, #多模态AI, #AI Agent, #子代理协作, #开源软件


Malware Campaign Targets Steam Wallpaper Engine Workshop Users ⭐️ 7.0/10

Kaspersky has warned that attackers are again using Steam Workshop content for Wallpaper Engine to distribute malware, reportedly hiding malicious code in wallpaper files that runs silently after installation. Researchers found dozens of malicious wallpapers, some with tens of thousands of downloads; reported download attempts were concentrated in China at 89%, followed by Russia at 5.5%, although the techniques could affect users in other language groups. Analyzed samples deployed a backdoor named Synaptics.exe and replaced AggregatorHost.dll to locate Steam, steal credentials, and take over login sessions, with DarkKomet, Lumma, Vidar, and RenEngine families identified. Attackers then used compromised accounts to upload more malicious wallpapers and send convincing fake Steam notifications or “live support” messages, while users are advised to revoke unfamiliar authorized devices, invalidate any unauthorized Steam Web API key, remove unknown wallpapers, and scan the Steam directory; the report is a secondary account and its full scope remains unverified.

rss · 机核 · Aug 20, 01:45

「Background」 Wallpaper Engine supports more than static images, including video, interactive scenes, web pages, and executable wallpapers, so some Workshop items can contain runnable files. Security researchers have previously documented malicious Workshop wallpapers packaging compromised executables, DLLs, or scripts that distribute infostealers and loaders.

「Impact」 Steam users who install malicious Wallpaper Engine Workshop content may lose account sessions and credentials while attackers deploy additional malware and use compromised accounts to target more users.

References

Tags: #Steam安全, #恶意软件, #账号劫持, #供应链攻击, #网络安全


The Spectral Neuron Proposes an Interpretable ML Primitive ⭐️ 7.0/10

A new preprint and code release propose the spectral neuron, a model defined as f(x) = lambda_k(A_0 + sum_i x_i A_i), where the output is an eigenvalue of an input-dependent matrix. The author investigates how expressiveness changes as the matrices grow, what learned matrices reveal about the model, and which output shapes can be guaranteed by construction. The work includes mathematical analysis, an initialization and training recipe, and scaling experiments on synthetic and real data. The proposal aims to combine scalability, interpretability, controllability, and expressive power, but the supplied Reddit post provides too few concrete results to independently assess those claims.

reddit · r/MachineLearning · /u/alexsht1 · Aug 20, 10:20

「Background」 The proposed spectral neuron sits between transparent linear models, which are easy to inspect but limited in expressive power, and conventional neural units that gain flexibility through scalar nonlinear activation functions. Its defining change is to use matrices as the model’s weights and an eigenvalue as the nonlinearity, producing a function from the eigenvalues of an input-dependent matrix such as A₀ + Σᵢ xᵢAᵢ.【tool-1-1】【tool-1-2】

「Why It Matters」 If validated, the spectral neuron could give model designers an eigenvalue-based building block whose behavior and structural properties are more directly inspectable than those of conventional neural units.

References

Tags: #Machine Learning, #Model Interpretability, #Neural Network Architectures, #Spectral Methods, #Research


OpenAI Previews Privacy-Preserving Abuse Detection for Eligible API Customers ⭐️ 7.0/10

OpenAI reaffirmed its zero-data-retention commitment for eligible API customers, under which prompts and responses are not retained after processing is complete. It also previewed a privacy-preserving safety-processing mechanism that can identify potential abuse across related interactions without exposing users’ original content to OpenAI personnel. Customer content is stored with encryption keys controlled by the customer, and even flagged content remains inaccessible to OpenAI staff in its original form. The mechanism is being tested with early customers, with a planned gradual rollout in September and a technical white paper to follow; its final scope, conditions, and effectiveness remain unverified.

telegram · zaihuapd · Aug 20, 02:33

「Background」 Zero Data Retention (ZDR) is an arrangement under which eligible API customers’ prompts and model responses are not retained after a request is processed. Private Safety Processing is intended to add abuse-detection signals across related interactions while keeping the original customer content protected from OpenAI personnel, including when content is flagged.

「Practical Impact」 Eligible API customers handling sensitive data may be able to combine zero data retention with limited abuse-detection signals, but they will need to confirm eligibility and the mechanism’s final technical and compliance conditions before relying on it.

References

Tags: #OpenAI API, #数据隐私, #零数据留存, #AI 安全


A reported study tracking 27,000 Chinese students aged 12 to 18 found that about 80% used common generative-AI tools such as Doubao. After six months, students using AI increased their average homework scores by 18% and reduced average assignment time from 64 minutes to 45 minutes, but scored 20% lower on exams than students who did not use AI. The decline was concentrated among students who used AI to complete assignments quickly, while students who used it as a tutor and spent the same amount of time understanding concepts reportedly showed no decline. The account also cites separate research suggesting that university students who learned with chatbots achieved higher test scores, but the report was relayed through Telegram and provides no study name, methodology, control design, or original paper link, so its figures and conclusions require verification.

telegram · zaihuapd · Aug 20, 03:58

「Background」 Generative AI tools can produce explanations, answers, and drafts, making them useful for completing homework but potentially allowing students to bypass the effort needed to learn underlying concepts. The reported research distinguishes performance on AI-assisted assignments from performance on supervised exams, and describes findings from 27,000 Chinese pupils aged 12 to 18.

「Impact」 If replicated, the findings would support designing AI-assisted learning tools and assessments around conceptual tutoring and independent testing rather than homework completion alone.

References

Tags: #生成式AI, #AI教育, #学习评估, #教育研究


Reverse Image Search Service Exposes Millions of Facial Photos ⭐️ 7.0/10

A reverse image search service reportedly suffered a data breach exposing more than 9 million facial images in a database of approximately 450 GB. Some records also included email addresses, phone numbers, and IP addresses, creating risks of unauthorized identification, tracking, and fraud. Because facial data is biometric information that cannot readily be replaced, affected individuals may face long-term privacy and identity-security consequences. The service has restricted database access, but the full scope of the incident, the service provider's identity, and follow-up remediation measures remain unclear.

telegram · zaihuapd · Aug 20, 15:14

「Background」 Reverse image search services identify or locate images by comparing uploaded photos with indexed images, and facial lookup services can apply similar matching to identify people. Unlike passwords or phone numbers, facial biometric data cannot be readily replaced after exposure, making unauthorized identification and long-term tracking potential concerns.

「User Risk」 People whose facial images or associated contact and network data were exposed could face persistent biometric-privacy risks, including misuse for identification, surveillance, or targeted scams.

Tags: #数据泄露, #生物识别隐私, #人脸识别, #网络安全


Financial News

Evergrande Founder Xu Jiayin Sentenced to Life in Prison ⭐️ 8.0/10

A Shenzhen court sentenced Evergrande founder Xu Jiayin to life imprisonment, permanently stripped him of political rights and ordered the confiscation of all his personal property in the first-instance trial. The court also fined Evergrande Group RMB 8.82 billion and Evergrande Real Estate RMB 7 billion over crimes including financial fraud, illegal fundraising and fraudulent securities issuance between 2016 and 2021.

telegram · zaihuapd · Aug 20, 04:06

「Background」 The court said the offenses occurred from 2016 to 2021 and involved multiple crimes, including illegally taking public deposits, fundraising fraud, securities issuance fraud, and false disclosure of important information.

References

Tags: #恒大集团, #许家印, #金融犯罪, #房地产行业, #司法判决


Stripe Agrees to Acquire OpenRouter ⭐️ 7.0/10

Stripe said on August 19, 2026, that it had agreed to acquire OpenRouter, an AI model gateway and routing platform that distributes requests among more than 400 models from over 80 providers based on factors such as price, speed and reliability. The source did not provide a transaction value or acquisition terms.

telegram · zaihuapd · Aug 20, 07:00

「Background」 OpenRouter is an AI gateway and routing platform that directs requests among models from more than 80 providers based on factors such as task complexity, price, speed, and reliability.

Tags: #Stripe, #OpenRouter, #人工智能基础设施, #企业软件, #并购交易


CFTC Seeks Views on AI Compute Futures ⭐️ 7.0/10

The U.S. Commodity Futures Trading Commission is seeking public comment on derivatives linked to AI computing capacity, including possible perpetual compute futures. The request is an early regulatory step and has not produced formal rules.

telegram · zaihuapd · Aug 20, 07:30

「Background」 The CFTC said the consultation will examine the spot compute market, market oversight and manipulation risks, and customer protection as demand for AI-related products grows.

Tags: #CFTC, #AI算力, #衍生品监管, #金融市场, #客户保护