The Interim Computer Museum

https://icm.museum/images/about1.jpg
The Interim Computer Museum preserves computing history through interactive exhibits, combining vintage hardware with modern enhancements. Membership is crucial to support the museum's activities and mission as a 501(c)(3) non-profit charity.

Make your first edit to OpenStreetMap

https://high5apps.github.io/josm-plugin-website-wizard/assets/images/blog-post/download-panel.png
This tutorial guides users to add a website tag to nearby shops or amenities on OpenStreetMap, helping people worldwide access more information. Users can use JOSM and the Website Wizard plugin to find and add official websites for places in their area of interest.

Real-SWE: Benchmarking AI models on private, real-world, enterprise codebases

Real-SWE is a benchmark that evaluates frontier AI models on private, real-world enterprise codebases. It tests agents' ability to navigate proprietary systems and make changes within real operational constraints.

The Succession Crisis That Tore England Apart

Establishing a secure connection... Request ID: e833255fe557687e03a0961aae97ec33

Nvidia is the central bank of AI

Apple iPod Engraver (2019)

https://dunstanorchard.com/apple-ipod-engraver/og.jpg
The author worked at Apple from 2004-2006 as a UI engineer, where they improved the "Personalize your iPod" page with interactive features. They added animations and live previews using JavaScript and imagemagick to create an immersive experience.

Everyone should slow down AI development except for me

https://xeiaso.net/.within.website/x/cmd/anubis/static/img/pensive.webp?cacheBuster=v1.27.0-pre2+dirty
Please wait a moment while we ensure the security of your connection.

From Git to Fossil

The author is switching from Git to Fossil for their personal projects due to its simplicity and ease of use, particularly in a self-hosted server setup. They found Fossil's command line interface more natural and efficient than Git's.

Getting 50 GB/S Back from the Apple Neural Engine

https://eiln.github.io/posts/2026-08-10-ane-dma/artifacts/bandwidth-vs-d-near-2048.png
The Apple M3 Neural Engine's DRAM weight streaming throughput is throttled at 17-19 GB/s when the total weight size is a multiple of 1 MiB, due to speculative prefetch ring lookahead requests. This issue can be avoided by splitting transfers that are multiples of 1 MiB into smaller chunks, resulting in a 2.6x speedup.

Don't be the out of touch Kung Fu master – John Carmack

https://pbs.twimg.com/profile_images/1560764938083352577/B1X3m4NN_400x400.jpg
The author reflects on the evolution of martial arts and programming skills, noting how modern AI is making some skills less critical. They draw a parallel between ancient Japanese swordsmanship and the current state of coding, where hand-assembled code is becoming obsolete.

Stabilizing Rust's Never Type

The Rust never type, denoted by an exclamation mark (!), has been stabilized after over two years of work. This change allows for more efficient generic code and correct type inference. The never type is useful in cases where a function cannot return any value or where a value can never occur.

No Atlantic hurricanes by Sept. 12 breaks a 60-year record

You don't have permission to access "http://www.accuweather.com/en/hurricane/no-atlantic-hurricanes-by-sept-12-breaks-a-60-year-record/1932278" on this server.

Don't call yourself an artisanal programmer

https://purplesyringa.moe/blog/dont-call-yourself-an-artisanal-programmer/og.png
The author questions the term "software engineer" and its usage, feeling that it's been hijacked by those who prioritize speed over reliability. They argue for a more nuanced understanding of software development as an engineering discipline requiring care and attention to detail.

Vintage Scientific Papers with LaTeX

https://raw.githubusercontent.com/Foadsf/vintage-latex/main/preview/01-early-modern-page.png
The project provides 20 examples of independent mechanisms behind a convincing old-scientific-paper aesthetic, using LaTeX and MetaPost. The examples are compiled independently with LuaLaTeX and can be converted to PDF or PNG format.

LG denies TV spying claims, says tracking and snooping concerns 'not true'

https://cdn.mos.cms.futurecdn.net/AJQPsR5faaTZVpDFpvDNVY.jpg
LG denies claims its smart TVs constantly log and upload data, record audio while in standby, and scan local area networks for other devices. The company confirms it scans for nearby devices to enable features like device connectivity but says this is a standard function of all smart TVs.

AgentsDock: An IDE designed for agentic AI research

https://agentsdock.net/assets/app-desktop.png
AgentsDock is an open-source IDE for agentic AI research, supporting multiple agents and devices. It allows users to connect various workstations, switch between them seamlessly and review output in real-time within a chat interface.

I Made a Non-Wi-Fi Mitsubishi AC Smart with an ESP32

https://miro.medium.com/v2/resize:fill:1200:632/g:fp:0.5:0.28/1*R16Q801qFYTdeUUxnqEKhA.jpeg
The user wants to control their Mitsubishi ducted AC remotely using an IR receiver and Home Assistant, a home automation platform. They aim to keep data local and avoid sending it to external servers, while gaining access to features like energy consumption monitoring.

We must pace the frontier

https://cdn.prod.website-files.com/67ecbba31246a69e485fdd4b/6aa5311897ee19af5d9f2cd9_og_we-must-pace-the-frontier.jpg
The author believes AI can greatly improve human life, but also poses significant risks that must be addressed. To mitigate these risks, the author proposes a three-step plan to pace AI development: embedded evaluators, democratic coordination, and global coordination.

Durable execution without history replay

https://trigora.dev/og-image.png
Most durable execution systems recover by replaying retained execution history. After a worker fails, a fresh worker loads the history and re-executes the program until it reconstructs the current position. This is a useful model. It provides durable progress while allowing workers to remain ephemeral. But it also makes accumulated history part of the recovery path. That tradeoff becomes more ...

P(doom)

https://lucumr.pocoo.org/social/2026-09-12-pdoom-social.png
The author discusses concerns about AI safety and pacing, particularly with regards to the potential risks of powerful models being developed by companies like OpenAI and Anthropic. They argue that these models are not inherently dangerous but rather a result of regulatory failures and unchecked power.

Will There Be a 7G?

https://arxiv.org/static/browse/0.3.4/images/arxiv-logo-fb.png
The transition to 6G is becoming concrete, with the ITU-R IMT-2030 framework and 3GPP Release 21 defining its path. A new question arises: should there be a 7G, and what would justify it?

I made a build visualizer to understand Bun's compile times

https://lalitm.com/assets/buildprof/ripgrep-overview.png
The author built an open-source tracing tool called buildprof to visualize the time spent on different parts of a software build process. The tool records every process launched during a build, including subprocesses and their subprocesses, and lays them out on one timeline.

Microcode in Intel's 8087 floating-point chip: the scale instruction

https://static.righto.com/images/8087-fscale/8087-die-labeled-w500.jpg
The Intel 8087 floating-point unit was introduced in 1980 and became the standard for most computers today. It uses a complex microcode system to handle various arithmetic operations, including scaling numbers by powers of two. The FSCALE instruction is one such operation that scales a number by adding its exponent to a power of two, but it is surprisingly complicated due to special cases and ...

Android NAT-T keepalive offload bypasses VPN lockdown

https://supuk.ch/images/headers/android-natt-keepalive-post.jpg
A vulnerability was discovered in Android's NAT-T keepalive API, allowing normal applications to bypass VPN lockdown and leak traffic outside the VPN path. The vulnerability affects most Android 12+ devices, with evidence collected from three OEMs and two confirmed WLAN families, including Samsung SM-F966B and Nothing A059 on Qualcomm hardware.

Linux Zoom client proactively reading everything written to X11 clipboard

I noticed today that an update to the #Linux #Zoom client has made it start proactively reading _everything_ written to the X11 clipboard. If you keep interesting secrets in your clipboard – particularly, if a password manager uses it as a means of getting the password to where it needs to be – this might be a thing you need to know about!

Align AI and Mathematics–To Something Else

https://liorpachter.wordpress.com/wp-content/uploads/2026/09/image.png?w=300
A group of 25 Fields medalists signed a letter criticizing the alignment between AI companies and mathematicians, citing issues with nurturing students and ideas. The signatories themselves have experienced similar problems in their careers, highlighting the need for change in the mathematics community.

I fixed a tractor using John Deere's self-repair service. Farmers aren't sold

https://media.wired.com/photos/6aa34b1b31130b4af58e1d2b/master/w_2560%2Cc_limit/John-Deere-5ML-Tractor.jpg
A John Deere farmer fixes his tractor using the company's self-repair software, Operations Center Pro Service, after a brief tutorial. The service allows owners to diagnose and repair issues with their machines via Wi-Fi or cable.

How Trail of Bits helps verify the integrity of Signal chats

https://blog.trailofbits.com/img/tob.png
Signal has launched Automatic Key Verification, a feature that helps validate secure chats without requiring direct safety number comparison. This system ensures the integrity of public keys and prevents malicious servers from providing false keys.

A Mathematical Framework for Transformer Circuits (2021)

Researchers are working on mechanistic interpretability of transformer language models, which can help understand their behavior and identify potential issues. They have developed a method to reverse-engineer transformers by breaking them down into human-interpretable pieces, such as attention heads and MLP layers.

LG Says We're Fake News [video]