Hacker News

Latest

Alan Kay: Shannon gave us a way of dealing with noisy channels [video]

2026-09-25 @ 18:37:05Points: 99Comments: 21

https://news.ycombinator.com/item?id=49622607:

Alan Kay performs an improvisational avant garde layered audio feedback loop about Claude Shannon, live online during Kristen Nygaard's 100-year birthday celebration.

Alan was scheduled to talk about how encountering Simula sparked his early thoughts about objects. During setup, somebody had the live stream playing out loud near an open Zoom mic, so his own voice kept arriving back in his ears about 21 seconds late, over and over.

What he said was not random: "Shannon gave us a way of dealing with noisy channels." And: "I think about that almost every day. I realize what the fuck is going on and it's just so amazing." Shannon's noisy channel coding theorem is the math for exactly the kind of channel that was garbling him as he praised it.

Alan joked it was "being rerouted to Mars and back." At the speed of light, a 21 second round trip is about 3 million km one way -- eight trips to the Moon and back, but only about a seventeenth of the way to Mars at closest approach.

This is an accidental Zoom performance of Alvin Lucier's "I Am Sitting in a Room" (1969), where Lucier re-recorded his own voice in a room until only the room's resonance remained. Here what remains is the network: delay, compression, dropouts.

Bonus noise: YouTube's auto-transcript bleeps Alan's enthusiasm into [ __ ]. So the full chain is: Alan's voice, Zoom, stream, room, Zoom again times three, my screen recording, YouTube's speech recognizer, a censored transcript.

The fix: "Just turn off the audio at your end on Zoom."

I Am Sitting in a Room: https://en.wikipedia.org/wiki/I_Am_Sitting_in_a_Room

Alvin Lucier on "I am sitting in a room": https://www.youtube.com/watch?v=v9XJWBZBzq4

Ollaya – Ollama for open-source, Jev-style decision models

2026-09-25 @ 18:33:50Points: 220Comments: 68

Meta's Muse appears to use an OpenAI model labeled muse-special

2026-09-25 @ 18:18:06Points: 80Comments: 39

Yes, Claude can do Nine Loops

2026-09-25 @ 18:11:48Points: 100Comments: 55

The Post-AGI Era

2026-09-25 @ 17:19:50Points: 12Comments: 42

Show HN: Doom or Bloom, map your AI worldview with Jev

2026-09-25 @ 16:51:28Points: 45Comments: 34

only takes a few minutes && free & open source && private by default && powered by Jev

I think this is a really important question for everyone to be asking themselves, and my hope is that this lil project helps to move our conversations around AI futures in a more balanced, productive direction.

A Skill.md for Commenting on Hacker News

2026-09-25 @ 16:45:10Points: 29

Jevmem – automatic project memory for Claude Code, built on Jev

2026-09-25 @ 16:04:04Points: 59Comments: 39

Gravity Seems Holographic. What Does That Mean for Reality?

2026-09-25 @ 15:31:02Points: 76Comments: 78

U.S. appeals court upholds designation of Anthropic as supply chain risk

2026-09-25 @ 15:29:25Points: 319Comments: 558

Classified Estimates Show the NSA Is Paying Billions to Test AI Models

2026-09-25 @ 15:27:35Points: 166Comments: 98

Factorio that you can touch

2026-09-25 @ 14:24:42Points: 284Comments: 85

First Principles Thinking

2026-09-25 @ 13:55:37Points: 190Comments: 85

What happens when you analyze your favorite college football team like the CIA?

2026-09-25 @ 13:47:21Points: 20Comments: 11

The Test

2026-09-25 @ 12:14:02Points: 152Comments: 85

Platform-Independent SIMD in Go

2026-09-25 @ 11:47:06Points: 331Comments: 124

Git-bug: Distributed, offline-first bug tracker embedded in Git

2026-09-25 @ 11:38:31Points: 275Comments: 91

Ink and Switch Interactive Homepage

2026-09-25 @ 09:50:25Points: 213Comments: 25

Boards of Casio

2026-09-25 @ 09:26:01Points: 102Comments: 36

Dutch governments builds alternative for Microsoft based on NixOS

2026-09-25 @ 08:06:49Points: 915Comments: 532

Amiga Screens: A Primer

2026-09-25 @ 07:31:12Points: 117Comments: 34

Pentium II at 600Mhz with Voodoo 3 Emulated on 86Box with M6 Mac Mini

2026-09-25 @ 07:27:45Points: 258Comments: 111

CVE-2025-13032: Entering and Breaking the Avast Antivirus Sandbox Part 2

2026-09-25 @ 07:03:46Points: 108Comments: 28

What About Rails?

2026-09-25 @ 02:50:16Points: 293Comments: 189

Show HN: Whiteboard (YC W26) – An open-source IDE for thoughtful software design

2026-09-24 @ 17:21:36Points: 390Comments: 128

https://whiteboard.dev.fast/), an open-source desktop app where humans and agents can architect software together in a common workspace. Here’s our repo: https://github.com/devdotfast/whiteboard.

We were missing the feeling of a “whiteboard session” with another dev where you leave with a deep understanding of a system, so we built this app for ourselves. Whiteboard plugs into the tools you already use - e.g. Claude Code, Codex, etc. – and gives your agent an SDK to draw on an in-app canvas to describe its work. We began with an MVP based on HTML artifacts and started rethinking the app as we ran into limitations:

1. Built on top of CodeOSS: We found that in pure HTML tools it was hard to connect a spec or diagram to code. In Whiteboard, when you click on visualizations like a sequence diagram, an entity relationship diagram, or a quote from the agent’s trace, you can jump to the underlying code directly. When navigating code, you get keybindings and LSP support from VSCode out of the box. We’ve found this is especially valuable because tradeoffs are often only discovered after a first pass at implementation (re: slop)

2. Semantic diff viewer: we wrote a semantic, AST-aware diff viewer in Rust so you can only view the code changes which are relevant to you [1]. We’ve set up some sane defaults: large added functions are summarized as pseudocode, and things like unit tests and large documentation changes are collapsed / hidden. This is all customizable with a WASM-based plugin system.

3. Decision Log: We found it difficult to reason about what set of decisions our agents made autonomously. So we built tools for agents to query and link their own traces to the Whiteboard, so you can understand how the requirements that you set were implemented, and understand what decisions your agent made autonomously.

Here’s a quick demo video explaining more: https://www.youtube.com/watch?v=ChPn3ftULWE

Folks at companies like Salesforce and Modal are using Whiteboard today as a review tool for architecture or spec-level changes – really any change where they want to be involved:

1. Reviewing your own coding agent’s work: because Whiteboard makes it easier to review large amounts of code, folks will typically have their AI agents create a prototype and a corresponding Whiteboard session so they can iterate on the design.

2. Reviewing other people’s changes: We’ve found that Whiteboard is particularly helpful when composed with tools like Greptile. For example, you can run an automated code reviewer on small changes and escalate to a Whiteboard session for the changes that require human judgement.

Why we built this: we’re four buddies from college who quit our jobs as tech leads right before agentic coding became industry standard. As we iterated towards an MVP for a previous idea, we struggled to maintain a comprehensible codebase while reaping all the velocity benefits of agentic coding. As more PRs were merged without our understanding, we felt a ‘cognitive debt’ begin to seep in, until it became difficult for us to even contribute to the system [2].

We’re releasing our desktop app under an MIT license. Please poke through and feel free to contribute! Eventually we’ll charge companies for a hosted web version that manages whiteboard session creation alongside features like trajectory storage and multiplayer reviews. Everything will always remain self-hostable.

Thanks for reading, and we hope you try it out! We would love to hear any feedback and to learn from your expertise.

Here’s are the project links again: https://github.com/devdotfast/whiteboard, and you can install (for MacOS + Linux) at https://install.dev.fast

[1] diffs library: https://github.com/devdotfast/diffr [2] Credit for the term ‘cognitive debt’ goes to https://www.geoffreylitt.com/2026/07/02/understanding-is-the...

Why is the liver so weirdly regenerative?

2026-09-24 @ 16:23:00Points: 546Comments: 279

F-Droid 2.0

2026-09-24 @ 15:26:12Points: 1432Comments: 405

Show HN: Make cursed fonts like Times New Bastard

2026-09-23 @ 22:53:28Points: 840Comments: 123

A joke tool that abuses OpenType's ligature feature to mix fonts. It works pretty fast on client-side by loading Python in WASM.

Rails World 2026 Opening Keynote [video]

2026-09-23 @ 15:33:33Points: 423Comments: 469

2DWillNeverDie

2026-09-22 @ 14:00:08Points: 324Comments: 83

Archives

2026

2025

2024

2023

2022