We Know Simple Fluids Can Flow. Turns Out, Some Can Fracture

https://www.quantamagazine.org/wp-content/uploads/2026/07/ThamiresLima-coThamiresLima.webp
Thamires Lima discovered a nonelastic fluid can fracture like brittle solids, defying theories that elasticity causes fluid cracking. This challenges assumptions about stress-induced fluid failure, with potential impacts on engineering, medicine, and material science.

Mesh LLM: distributed AI computing on iroh

https://www.iroh.computer/blog/mesh-llm/header.png
Mesh LLM enables distributed GPU pooling for OpenAI-compatible APIs, offering control, cost efficiency, and peer-to-peer networking via iroh, avoiding centralized cloud lock-in. It splits models across devices, supports private/public deployment, and uses decentralized QUIC connections for seamless, scalable inference.

What xAI's Grok Build CLI Actually Sends to xAI

Show HN: Ant – A JavaScript runtime and ecosystem

https://themackabu.dev/assets/hell-B7vKAGz4.webp
Ant uses Hono for isolated module initialization without an HTTP server, enabling 40x faster package installation and secure execution via VM sandbox. It leverages ants.land registry with npm protocol support, offering ESM compatibility and cross-manager package management.

RISCBoy is an open-source portable games console, designed from scratch

https://raw.githubusercontent.com/Wren6991/RISCBoy/master/doc/diagrams/system_arch.png
A Gameboy Advance-inspired RISC-V processor in Verilog for iCE40-HX8k FPGA, supporting RV32IMC and compliance tests. Requires RISC-V toolchain setup, simulation with ISIM, and PCBs for prototyping.

I Did Not Kill Stanley Lieber: How to Draw (With 9front)

https://img.triapul.cz/brdzor.png
This document explains how to draw on 9front using various input devices like mice, tablets, and touchscreens, focusing on the paint(1) program for digital art creation. It covers techniques for image manipulation, file conversion to formats like PNG, and methods for sharing artwork via external drives or network connections.

Nvidia, CoreWeave, and Nebius: Inside the Circular Financing of the GPU Boom

https://bethtechnology.cdn.prismic.io/bethtechnology/e0a8f1ff-95b9-432c-a819-369b491ce051_Logo_Final_Transparent_IOFUND.svg?w=3840
Neoclouds like CoreWeave and Nebius grow via hyperscaler demand for AI infrastructure, leveraging Nvidia GPUs and optimizing compute utilization. However, rapid expansion relies on high debt and circular financing with Nvidia, risking sustainability amid cash flow gaps and macroeconomic pressures.

An agent in 100 lines of Lisp

https://thebeach.dev/images/lisp-agent.jpg
The author revisits Lisp's role in 1990s symbolic AI, now experimenting with its code-as-data feature to build a minimalist AI agent that dynamically generates and executes tools via recursion, contrasting modern fixed-agent frameworks. This approach mirrors human learning through memory-driven skill rehydration, suggesting Lisp's enduring relevance in agent design.

A pure scheme web programming tool

The Scheme compiler is self-hosted, using unboxed fixnums, GC structs, and hygiene via renaming, with fast variadic calls and Wasm-based continuations. It integrates web APIs (HTML, WebGL, JS FFI) and reactive systems, enabling RPC with exact s-expression data and efficient rendering.

Text Art Tools

https://app.notion.com/images/meta/default.png
A huge list of unconventional graphic design and text art tools, updated regularly (2026)

The Energetic Costs of Cellular Computation (2012)

https://arxiv.org/static/browse/0.3.4/images/arxiv-logo-fb.png
Cells expend energy to compute ligand concentrations using noisy two-component networks, with greater learning requiring higher energy costs. This energy constraint impacts resource-poor systems like bacterial spore germination networks.

Why Write Code in 2026

https://softwaredoug.com/assets/media/2026/cheat-at-search-social.png
Building a software factory with AI agents demands human hands-on coding to ensure quality and architectural clarity, as writing code fosters ownership, precision, and proactive system improvement beyond automated processes.

Jellyfish Undersea Roundabout

EF Core 11 makes your split queries faster

https://linkdotnetblog.azureedge.net/blog/assets/logo.png
If you use AsSplitQuery anywhere in your codebase, EF Core 11 has a present for you: your queries get faster. By default, EF Core loads everything in one query. If you Include a collection, that means a JOIN and JOINs against collections duplicate the parent row for every child. The more stuff you join "the worse" it gets. AsSplitQuery does tackle that: EF executes a query for the ...

Billions of Sketches Reveal Hidden Cultural Variation in Human Concepts

https://arxiv.org/static/browse/0.3.4/images/arxiv-logo-fb.png
Analyzing 2.6B sketches from 236 countries reveals greater cross-cultural conceptual variation than linguistic methods, especially for haptic concepts. Visual representations show 45% stronger alignment with cultural distances than text, suggesting modality shapes perceived universality.

A Erlang style pure Scheme Webserver and further

Igropyr is a Chez Scheme HTTP server using libuv, featuring fault-tolerant worker pools, hot code swapping, green processes for concurrency, and structured error handling. It ensures zero-downtime updates, preemptive scheduling, and OTP-inspired supervision for high reliability.

UPI: Anatomy of a Payment Transaction

UPI payments involve apps, sponsor banks, and NPCI's central switch, with money debited before crediting, ensuring reliability despite hidden complexity. Over 2,272 crore transactions in June 2026 highlight its scale, with failures mostly due to user errors, not system flaws.

We scaled PgBouncer to 4x throughput

https://clickhouse.com/_next/image?url=%2Fuploads%2Fpgbouncer_jul2026_image5_331a55a410.png&w=2048&q=75
Using multiple PgBouncer processes with SO_REUSEPORT and peering leverages all CPU cores, achieving 4x throughput vs. a single process. This setup avoids pooler bottlenecks, maximizing resource use under high concurrency.

Long Covid May Physically Damage the Nerves That Control the Stomach

A study on Long-COVID-19 patients found reduced gastric mucosal cholinergic nerve density and impaired autonomic function via HRV analysis, linking vagal dysfunction to persistent symptoms and systemic inflammation. Histological and physiological data suggest structural autonomic damage, correlating with elevated cardiovascular biomarkers and procoagulative states.

Fixed three bugs that made Qwen3.5-122B a daily driver on Mac Studio

https://mrzk.io/posts/qmlx-maximising-ai-psychosis-minmaxing-mac-studio/cover_hu_68f05e165e9b9d29.png
The user switched from DS4 Flash to Qwen 3.5 122B on an M3 Mac Studio to address >3-minute delays from long-context prefill latency. Debugging three key bugs—cache misses, interrupted responses, and checkpoint issues—enabled sub-second prefill for 64k-token contexts, enabling efficient local AI use.

The early History of the Singular Value Decomposition (1993) [pdf]

A dock that wakes up reliably

https://fabiensanglard.net/tb4/tb4_vs_others.webp
User struggled with unreliable laptop wake-up from sleep via Thunderbolt docks, even with Thunderbolt 4. Switching to an ASUS ROG Swift monitor in 2025 resolved the issue, though the cause remains unclear.

Prefer strict tables in SQLite

SQLite's strict tables enforce rigid typing to prevent data type errors, require valid column definitions, and allow 'ANY' for flexibility. Introduced in 3.37.0, they improve data integrity but require upfront setup and may conflict with older versions or flexible use cases.

Biff.graph: structure your Clojure codebase as a queryable graph

https://opengraph.githubassets.com/2b1823e7d4112dbdf919be6aa226011f5ef69c243d9b0318e35428f3d09a8181/jacobobryant/biff
Biff.graph is a lightweight, Pathom-inspired library for querying databases and derived data as a unified graph using resolvers. It simplifies code structure with small, testable resolvers and supports EQL/Datomic patterns, though it lacks Pathom's query optimization.

Doctors die. It's not like the rest of us, but it should be (2016)

https://archive.cancerworld.net/wp-content/uploads/2016/04/CoverFocus71-678x381.jpg
Doctors often reject aggressive end-of-life treatments for themselves, prioritizing comfort and dignity, yet they frequently administer such care to others due to patient/family pressure, systemic incentives, and fear of litigation, highlighting a stark contrast between medical practice and personal choice.

Optimization Solver as a Service

https://quicopt.com/og-image.png
Quicopt solves LP, QP, MILP, and QUBO models via Python (OR-Tools/Pyomo) with a free tier requiring no API key. It auto-sets up keys, returns detailed results, and retains submitted data for solver improvement.

Show HN: Learn by rebuilding Redis, Git, a database from scratch

https://shipthatcode.com/opengraph-image?e5981ff808b13a14
Pick a system. Build it from scratch. Every lesson is choose → write → run, until it clicks. Each card opens a structured Fundamentals → Intermediate → Advanced track. Tap the > chevron to reveal all 37 languages. “You can’t cheat — you either solve the problem or you don’t. It’s the first platform where I actually understand what I’m writing.”

Martha Lillard, last US polio patient using iron lung, dies at 78 in Oklahoma

https://i.abcnewsfe.com/a/8835e7b2-65e3-4a45-b2f3-4acfec9712ea/wirestory_41e5b4da4f4e710344dd0872d7fcf987_16x9.jpg?w=992
Martha Lillard, the last U.S. polio patient using an iron lung, died at 78 in Oklahoma from long-haul COVID-19 and pulmonary issues. She lived independently, pursued education, and connected globally via internet before her 2026 death.

Show HN: Sqlsure – deterministic semantic checks for AI-generated SQL

https://opengraph.githubassets.com/36cea76d2cff0d78b3cac9f4cd1a217228d5dea2bb54e3f45e2c3e7635690f66/sqlsure/sqlsure
sqlsure detects silent SQL errors like double-counting or schema defects using dbt tests and schema introspection, offering deterministic, actionable fixes without new languages or models. It integrates with text-to-SQL tools, enforces semantic rules via existing metadata, and audits queries against declared facts for reliable validation.

Show HN: Orbit – AR satellite tracker, watch 15k+ objects

Orbit uses your device's camera and sensors for real-time AR sky tracking without storing/transmitting data. It collects anonymous diagnostics for improvements and includes an optional Google-powered chatbot, with no personal info required or tracked.