Published on August 26, 2026 at 06:01 CEST (UTC+2)
Apple introduces M6 and M5 Ultra (1024 points by interpol_p)
Apple announced the M6 and M5 Ultra chips, with the M6 debuting in the Mac mini and the M5 Ultra in the Mac Studio. The M6 is Apple’s first 2nm chip, featuring a 12-core CPU, 12-core GPU, and a Dual 16-core Neural Engine. The M5 Ultra uses a quad-die architecture for the first time, with up to 36 CPU cores, 80 GPU cores, and 1.2TB/s of unified memory bandwidth. Both chips are positioned as major leaps for performance and AI compute.
FDA authorizes first wearable device that monitors ketone and blood sugar levels (320 points by sunnynagra)
The FDA has authorized the Libre Duo 10 Day Continuous Dual Glucose Ketone Monitoring System, the first wearable in the U.S. to continuously monitor ketone levels and the first worldwide to monitor both ketones and glucose in one device. It is intended for people aged 2 and older with diabetes. Real-time ketone tracking can help detect dangerously rising ketone levels early, potentially preventing life-threatening emergencies like diabetic ketoacidosis.
OpenAI Jalapeño: Better than Nvidia Blackwell (377 points by bmulholland)
SemiAnalysis reports on OpenAI’s custom inference chip, “Jalapeño,” which was designed with Broadcom and announced at Hot Chips. OpenAI built the chip from scratch for LLM inference in about 16 months, an unusually fast ASIC development cycle. In benchmarks using SemiAnalysis’s InferenceX suite, Jalapeño reportedly outperformed every Nvidia, AMD, and Google chip tested on multiple open-source models. The chip’s advantage comes from extreme hardware/software co-design while remaining a general-purpose LLM inference processor.
New Mac Studio with M5 Max and M5 Ultra (724 points by interpol_p)
Apple introduced the new Mac Studio with M5 Max and M5 Ultra, calling it the most powerful Mac and a machine for on-device AI. It delivers up to 4.3x faster AI performance, up to 512GB of unified memory, and can run large LLMs entirely on device. The M5 Max has an 18-core CPU and up to 40-core GPU, while the M5 Ultra scales to a 36-core CPU and 80-core GPU. It targets creatives, developers, AI researchers, and data scientists.
Queryable Executables (46 points by rguiscard)
This blog post expands on the idea that executables can be SQLite databases. The “SELF” format treats the program file itself as a database, allowing binary tooling to be replaced with SQL queries. Since databases are writeable, the running program can also store state transactionally in the same file. A proof-of-concept web server, self-httpd, keeps its code, routes, website content, and visitor logs in one SQLite file.
Maiao: Gerrit-style code review workflow for GitHub, GitLab, Gitea, others (46 points by zdw)
Maiao is a community-maintained fork of a Gerrit-style code review tool that works with GitHub, GitLab, Gitea, Forgejo, Bitbucket Cloud, and other platforms. It provides command-line PR management with a workflow inspired by Gerrit’s review model. The original upstream project was no longer actively maintained, so the fork continues development under the runetes organization.
Black hole singularity is a surface not a point (211 points by raattgift)
This physics paper argues that the singularity inside a black hole is a surface, not a point. Two observers falling into a spherical black hole along different angular trajectories lose causal contact well before reaching the center. For rotating black holes, the singular surface likely lies at the inner horizon, where perturbations trigger exponential mass inflation. The authors say this has important implications for quantum gravity theories.
New Mac mini, featuring M6 and M5 Pro (455 points by runako)
Apple unveiled a new Mac mini featuring the M6 and M5 Pro chips. The M6 model delivers up to 4x faster AI performance, 2x faster graphics and storage, and 40% faster CPU performance. Apple specifically emphasizes “always-on agentic computing” and running AI models on-device. The Mac mini also gains Wi-Fi 7, Bluetooth 6, and upgraded Ethernet options.
When str.lower() is a security vulnerability in Python – Seth Larson (85 points by rbanffy)
Seth Larson writes about a security vulnerability related to Python’s str.lower() and IDNA handling. The issue involves the old IDNA 2003 codec, which uses StringPrep case folding and can produce surprising behavior when lowercasing Unicode characters. For domain-name applications, Python’s built-in "idna" codec can be unsafe, and the recommended solution is to use the third-party idna package implementing IDNA 2008.
C2PA Cameras Do Not Survive Contact with Reality (104 points by Retr0id)
David Buchanan argues that C2PA camera authentication on Android is fundamentally broken. C2PA relies on Key Attestation and Google Play Integrity to prevent users from signing arbitrary files, but root exploits and hardware fault-injection attacks can bypass these protections. Since such exploits can be unpatched or discovered faster than Android vendors ship fixes, C2PA’s trust model cannot hold. The author also notes that LLM-assisted exploit development is accelerating the release of root privilege-escalation attacks.
str.lower() can become a security vulnerability when used for IDNA/domain-name processing due to Unicode case-folding rules.idna (IDNA 2008), and treat canonicalization as security-critical code.Analysis generated by deepseek-reasoner