LodeHQSubscribe →

Lean Verified 3D Mesh, LLM Attention Tweak

Dev · 2026-07-28

Languages & Frameworks
Luau’s Speed Secrets: Fast Interpreter, Optional JIT, and Tuning Tips25 MIN

Roblox’s Luau engine prioritizes stable high‑performance in interpreted code, delivering a highly tuned C‑based bytecode interpreter that rivals LuaJIT on many workloads. It also offers an optional JIT for x64/arm64 that leverages type annotations but skips runtime tracing. These choices let game developers write idiomatic Lua that runs fast without heavy platform‑specific hacks.

Formally verified 3D mesh intersection in Lean, trusted by 93‑line spec15 MIN

This repo implements a 3D CSG mesh intersection in Lean 4, with a 93‑line formal specification that’s fully verified, while the underlying 1,000+ lines of AI‑generated code are never inspected. It shows correctness can be guaranteed without human code review, though it runs slower, 24 seconds for two 70k‑triangle Stanford bunnies.

Bun adds Float16 typed‑array support through a Rust N‑API rewrite6 MIN

A new PR introduces Float16 typed‑array handling to Bun's N‑API layer, adding enum definitions, Rust match arms, and C++ switch cases. This expands Bun's compatibility with Node's Float16 arrays and improves memory safety by leveraging Rust for the core implementation.

Tools & Platforms
XY: GPU‑Accelerated Python Charts Scaling to Billions of Points7 MIN

XY is a Python charting library with a Rust core that offloads rendering to the GPU, letting you plot tens of billions of points interactively. It blends a declarative API with matplotlib‑style calls, so you can drop it into notebooks or web apps unchanged. The result is a single, fast, composable visualisation tool for everyday plots and massive data‑driven dashboards.

GitHub adds npm & Actions safeguards that choke supply‑chain attacks7 MIN

GitHub has deployed new defenses in npm and GitHub Actions that block two of the most common supply‑chain attack vectors. High‑impact npm accounts now go read‑only for 72 hours after credential changes, and the actions/checkout default now refuses to pull untrusted code from forked pull requests. These steps give maintainers time to remediate and curb malware spread across the open‑source ecosystem.

AI-Assisted Development
Kimi Delta Attention unwrapped: why this tweak matters for LLM speed12 MIN

The blog explains KDA mechanism from first principles, showing it as a natural extension of linear attention variants that replace costly softmax with a fixed-size state. It walks through the derivation from quadratic attention to the final Kimi Delta Attention equations and then reveals the Triton‑based recurrent and chunkwise implementations that slash inference memory and speed up large language models.

Subagents Save Memory, Not Time, in LLM Orchestrators13 MIN

Rahul Garg shows that the primary benefit of using subagents in LLM orchestration is reducing the orchestrator's context window load, freeing its attention, rather than speed or parallel execution. By offloading reasoning, subagents protect the orchestrator’s working memory, making complex multi‑agent workflows more manageable.

Engineering Practice
TanStack Ditches React Server Components for Simpler SSR, Cuts 150KB JS per Page13 MIN

TanStack.com replaced React Server Components with plain server‑side rendering, keeping most of the speed gains while simplifying the codebase. The switch removed about 150 KB of gzipped JavaScript per page and reduced total blocking time by up to 1 s, making the docs faster to load and easier to maintain.

Deterministic simulation uncovers silent Raft bugs across major implementations23 MIN

Antithesis’s deterministic simulation testing found invariant violations in every Raft library it examined, including HashiCorp Raft and OpenRaft, despite formal specs and extensive code review. These hidden consensus bugs can trigger massive outages, so the findings urge developers to adopt systematic simulation before shipping distributed systems.

Careers & Open Source
Why Open‑Source Projects Die Without Fun (And How to Keep Them Alive)6 MIN

Mike McQuaid argues that the biggest threat to open‑source is maintainer burnout, not funding. He shows how Homebrew stays alive because the work feels fun, and urges projects to prioritize joy over endless chores to keep ecosystems thriving.

Why Open‑Source Projects Die Without Fun (And How to Keep Them Alive)6 MIN

Mike McQuaid argues that the biggest threat to open‑source is maintainer burnout, not funding. He shows how Homebrew stays alive because the work feels fun, and urges projects to prioritize joy over endless chores to keep ecosystems thriving.

Get Dev in your inbox, every issue.
Subscribe free
Get the app · Privacy · Terms · About · Contact
© 2026 LodeHQ