Motorola GrapheneOS devices will be bootloader unlockable/relockable

https://grapheneos.social/system/site_uploads/files/000/000/002/@1x/42ead1439dbbdc50.png
@[email protected] It will fully support using other operating systems including users making their own builds of GrapheneOS. It's part of our hardware requirements. We'll likely be able to make hardened builds of firmware and drivers which can be released in an official way for easy builds without needing to extract anything from the GrapheneOS or Motorola OS factory images.

RFC 9849. TLS Encrypted Client Hello

This document describes a new Transport Layer Security (TLS) extension called Encrypted Client Hello (ECH) that encrypts the ClientHello message to protect sensitive information. ECH uses Hybrid Public Key Encryption (HPKE) and is supported in TLS 1.3, DTLS 1.3, and newer versions of the TLS and DTLS protocols.

Agentic Engineering Patterns

Patterns for getting the best results out of coding agents like Claude Code and OpenAI Codex. See my introduction for more on this project.

Better JIT for Postgres

https://opengraph.githubassets.com/184165679057cb4aa5592de6144e7f278fc1ee4583a821ceaae48334ee48fff5/vladich/pg_jitter
pg_jitter is a PostgreSQL JIT compilation provider that adds three alternative JIT backends - sljit, AsmJit, and MIR - delivering faster compilation and competitive query execution. It provides native code generation with microsecond-level compilation times.

RE#: how we built the fastest regex engine in F#

https://iev.ee/_astro/dfa1.CEb5C-8q_RPmFN.webp
A new regex engine called RE# was developed in F# that outperforms other industrial regex engines and supports intersection, complement, and context-aware lookarounds with linear-time guarantees. The engine uses a derivative-based approach and minterm compression to achieve high performance and supports leftmost-longest matching with bidirectional scanning.

A CPU that runs entirely on GPU

https://raw.githubusercontent.com/robertcprice/nCPU/main/assets/logo.png
The NeuralCPU is a GPU-based CPU that uses trained neural networks for all arithmetic operations, achieving speeds of 4,975 IPS and inverting the conventional CPU's MUL vs ADD performance. It supports two modes: Neural Mode, where every operation is a forward pass through a trained model, and Fast Mode, where the ALU uses native torch arithmetic for maximum throughput.

MacBook Pro with M5 Pro and M5 Max

https://www.apple.com/newsroom/images/2026/03/apple-introduces-macbook-pro-with-all-new-m5-pro-and-m5-max/article/Apple-MacBook-Pro-M5-Pro-and-M5-Max-Capture-One-260303_big.jpg.large.jpg
Apple announced the new 14- and 16-inch MacBook Pro with M5 Pro and M5 Max chips, offering up to 4x faster AI performance and up to 24 hours of battery life. The new MacBook Pro features a Liquid Retina XDR display, Wi-Fi 7, and Bluetooth 6, and starts at 1TB of storage for M5 Pro and 2TB for M5 Max.

Graphics Programming Resources

https://develop--gpvm-website.netlify.app/_astro/learn_opengl.BFyVqNUR_B0S2I.webp
This page offers a collection of resources for learning graphics programming, including tutorials, books, and articles on topics like OpenGL, Vulkan, ray tracing, and rendering techniques.

Show HN: I made a zero-copy coroutine tracer to find my scheduler's lost wakeups

https://raw.githubusercontent.com/lixiasky-back/coroTracer/main/example/coro_dashboard.png
The user created coroTracer to track down logical deadlocks and broken state machines in M:N coroutine schedulers, which traditional tools cannot catch. coroTracer is an out-of-process tracer that uses shared memory and a separate engine to track state changes and detect issues like lost wakeups and coroutine leaks.

Claude's Cycles [pdf]

Claude Opus 4.6 solved an open problem in automatic deduction and creative problem solving by finding a generalization for odd values of m. The solution was discovered through a series of explorations and involved a novel approach called fiber decomposition.

On the Design of Programming Languages (1974) [pdf]

TikTok will not introduce end-to-end encryption, saying it makes users less safe

https://ichef.bbci.co.uk/news/480/cpsprodpb/642d/live/9816c7c0-1723-11f1-9120-a910fc22c6ac.jpg.webp
TikTok won't introduce end-to-end encryption for DMs citing safety concerns. It prioritizes proactive safety over user privacy, arguing it helps prevent harm to young users.

Voxile: A ray-traced game made in its own engine and programming language

https://substackcdn.com/image/fetch/$s_!yL8f!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fcd000b3f-c2bd-48ea-b96d-1490c2947f51_400x400.jpeg
Wouter von Oortmersen's VoxRay Games released The Builder's Update for Voxile, a voxel-based survival game with ray tracing and co-op multiplayer. Voxile's custom engine, Lobster, enables fast prototyping and record-speed compile times.

Show HN: Stacked Game of Life

Simulation

My spicy take on vibe coding for PMs

Product managers should prioritize fixing the system for prioritization rather than adding random features. This approach helps avoid accumulating tech debt and allows for more impactful work.

Textadept

https://orbitalquark.github.io/textadept/assets/images/windows.png
Textadept has GUI and terminal versions with optional modules for extra features. It can be compiled from source or downloaded as pre-built binaries for various platforms.

Speculative Speculative Decoding (SSD)

https://arxiv.org/static/browse/0.3.4/images/arxiv-logo-fb.png
Researchers introduced speculative speculative decoding (SSD) to accelerate inference by parallelizing speculation and verification. SSD is up to 2x faster than optimized speculative decoding and up to 5x faster than autoregressive decoding.

When AI writes the software, who verifies it?

https://leodemoura.github.io/images/leo.jpg
AI is rewriting the world's software at an astonishing speed, but verification is lagging behind, making it a systemic risk.

You can use newline characters in URLs

https://lemire.me/blog/wp-content/uploads/2026/02/Capture-decran-le-2026-02-28-a-14.21.14-825x510.png
URLs can be formatted with newline and tab characters in HTML, but browsers ignore these characters. Data URLs, however, follow different rules and can include ASCII whitespace characters.

Reverse-Engineering the Wetware: Spiking Networks and the End of Matrix Math

https://metaduck.com/images/blog/astronaut-neurons.png
The human brain processes information through a top-down feedback loop, constantly generating a simulation of the world and correcting it with sensory data. It uses local learning, Spike-Timing-Dependent Plasticity, and dopamine to learn without calculus, unlike traditional AI models.

An Interactive Intro to CRDTs (2023)

https://d29xw0ra2h4o4u.cloudfront.net/assets/logo_square-60e12570c3a1b0b0798e651a0755f71a40ff15421761b786f720e4c02fc89a1f.png
CRDTs are data structures that allow multiple computers to update and sync data without a central server. A Last Write Wins Map (LWW Map) is a type of CRDT that combines multiple Last Write Wins Registers to store and sync data.

Indefinite Book Club Hiatus

https://whatever.scalzi.com/wp-content/themes/profile-scalzi/images/loader.gif
Authors are overwhelmed with AI-generated spam book club invitations and solicitations, making it difficult to distinguish real from fake. This has become a significant stressor for many writers, affecting their ability to market themselves and attend legitimate events.

Weave – A language aware merge algorithm based on entities

https://opengraph.githubassets.com/9c97ceac6aee44b1954121d845fe42937842f3af95a0bc7d3834a3ea6cd57d72/Ataraxy-Labs/weave
Weave is a Git merge tool that resolves conflicts by comparing semantic entities, not just lines. It automatically handles false conflicts in multi-agent codebases with zero regressions.

Launch HN: Cekura (YC F24) – Testing and monitoring for voice and chat AI agents

Cekura is a platform that simulates real user conversations to test AI agents and catch regressions before production. It uses synthetic users, real conversation import, and deterministic test cases to evaluate full conversational arcs, not just single turns.

Welcoming Elizabeth Barron as the New Executive Director of the PHP Foundation

https://thephp.foundation/assets/team/elizabeth_barron.jpeg
Elizabeth Barron is the new Executive Director of The PHP Foundation, bringing community and leadership experience. She succeeds Roman Pronskiy, who transitions to JetBrains while remaining on the Board of Directors.

GPT‑5.3 Instant

https://images.ctfassets.net/kftzwdyauwt9/30fH0I16KEPijLJ25eH2bK/c63f05ae65df8d18c06ccdaff115e74f/Lockdown-Mode_Art-Card.png?w=3840&q=90&fm=webp
GPT-5.3 Instant is an updated model that improves everyday conversations with more accurate answers, richer results, and reduced unnecessary caveats, focusing on tone, relevance, and conversational flow. The model also reduces hallucinations, improves writing capabilities, and is available starting today to all users in ChatGPT, with updates to Thinking and Pro to follow soon.

The largest acidic geyser has been putting on quite a show

https://d9-wret.s3.us-west-2.amazonaws.com/assets/palladium/production/s3fs-public/styles/side_image/public/vhp_img31.jpg?itok=FkN9euBL
The world’s largest acidic geyser is located in Norris Geyser Basin. Lately, it’s been putting on quite a show.

Number Research Inc

At Number Research Inc., we are attempting to find and document all available numbers.

Don't become an engineering manager

https://substackcdn.com/image/fetch/$s_!pS-U!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fcf9201cc-121b-4758-b23f-b03f2ac4fa8f_897x626.png
The user's friend was offered an Engineering Manager role but decided not to take it due to concerns about losing time for experimentation and adapting to change. The user agrees that being an IC is a smarter choice in 2026, but advises waiting a couple of years to see how things look before making a decision, unless the person truly wants to pursue management.

Intel's make-or-break 18A process node debuts for data center with 288-core Xeon

https://cdn.mos.cms.futurecdn.net/Xh2MupWrRjJPiLLuopmKRB.jpg
Intel introduced Xeon 6+ 'Clearwater Forest' processors with up to 288 energy-efficient cores for telecom, cloud, and edge AI workloads. They feature Advanced Matrix Extensions, QuickAssist Technology, and Intel vRAN Boost technologies for improved performance and power efficiency.