Posts

New top story on Hacker News: Show HN: Open-Source Article 12 Logging Infrastructure for the EU AI Act

Show HN: Open-Source Article 12 Logging Infrastructure for the EU AI Act 12 by systima | 0 comments on Hacker News. EU legislation (which affects UK and US companies in many cases) requires being able to truly reconstruct agentic events. I've worked in a number of regulated industries off & on for years, and recently hit this gap. We already had strong observability, but if someone asked me to prove exactly what happened for a specific AI decision X months ago (and demonstrate that the log trail had not been altered), I could not. The EU AI Act has already entered force, and its Article 12 kicks-in in August this year, requiring automatic event recording and six-month retention for high-risk systems, which many legal commentators have suggested reads more like an append-only ledger requirement than standard application logging. With this in mind, we built a small free, open-source TypeScript library for Node apps using the Vercel AI SDK that captures inference as an append-o...

New top story on Hacker News: 19th century silent film that first captured a robot attack

19th century silent film that first captured a robot attack 6 by ynac | 1 comments on Hacker News.

New top story on Hacker News: Language Model Contains Personality Subnetworks

Language Model Contains Personality Subnetworks 8 by PaulHoule | 0 comments on Hacker News.

New top story on Hacker News: A new account made over $515,000 betting on the U.S. strike against Iran

A new account made over $515,000 betting on the U.S. strike against Iran 4 by doener | 0 comments on Hacker News.

New top story on Hacker News: Show HN: Audio Toolkit for Agents

Show HN: Audio Toolkit for Agents 4 by stevehiehn | 1 comments on Hacker News.

New top story on Hacker News: Werner Herzog Between Fact and Fiction

Werner Herzog Between Fact and Fiction 5 by Hooke | 0 comments on Hacker News.

New top story on Hacker News: Show HN: Unfudged – version control without commits

Show HN: Unfudged – version control without commits 8 by cyrusradfar | 4 comments on Hacker News. I built unf after I pasted a prompt into the wrong agent terminal and it overwrote hours of hand-edits across a handful of files. Git couldn't help because I hadn't finished/committed my in progress work. I wanted something that recorded every save automatically so I could rewind to any point in time. I wanted to make it difficult for an agent to permanently screw anything up, even with an errant rm -rf unf is a background daemon that watches directories you choose (via CLI) and snapshots every text file on save. It stores file contents in an object store, tracks metadata in SQLite, and gives you a CLI to query and restore any version. The install includes a UI, as well to explore the history through time. The tool skips binaries and respects `.gitignore` if one exists. The interface borrows from git so it should feel familiar: unf log , unf diff , unf restore . I say "UN-E...