Feed aggregator
How I think systemd IP address restrictions on socket units works
Article URL: https://utcc.utoronto.ca/~cks/space/blog/linux/SystemdSocketIPRestrictions
Comments URL: https://news.ycombinator.com/item?id=47278941
Points: 1
# Comments: 0
Anthropic sues US Government after unprecedented national security designation
Article URL: https://www.theregister.com/2026/03/06/anthropic_left_with_no_other/
Comments URL: https://news.ycombinator.com/item?id=47278927
Points: 1
# Comments: 0
MultiGen: Level-Design for Editable Multiplayer Worlds in Diffusion Game Engine
Article URL: https://ryanpo.com/multigen/
Comments URL: https://news.ycombinator.com/item?id=47278924
Points: 1
# Comments: 0
Your AI Slop Bores Me
Article URL: https://youraislopbores.me/
Comments URL: https://news.ycombinator.com/item?id=47278921
Points: 1
# Comments: 1
Security Scanner for Agent Skills
Article URL: https://github.com/cisco-ai-defense/skill-scanner
Comments URL: https://news.ycombinator.com/item?id=47278915
Points: 1
# Comments: 0
Iranian news service claims drone strikes on AWS were deliberate
Article URL: https://www.theregister.com/2026/03/06/iran_news_aws_drone_strikes/
Comments URL: https://news.ycombinator.com/item?id=47278910
Points: 1
# Comments: 0
China's 3K km Green Wall has transformed its largest desert into a carbon sink
Show HN: Go-TUI – A framework for building declarative terminal UIs in Go
I've been building go-tui (https://go-tui.dev), a terminal UI framework for Go inspired by the templ framework for the web (https://templ.guide/). The syntax should be familiar to templ users and is quite different from other terminal frameworks like bubbletea. Instead of imperative widget manipulation or bubbletea's elm architecture, you write HTML-like syntax and Tailwind-style classes that can intermingle with regular Go code in a new .gsx filetype. Then you compile these files to type-safe Go using `tui generate`. At runtime there's a flexbox layout engine based on yoga that handles positioning and a double-buffered renderer that diffs output to minimize terminal writes.
Here are some other features in the framework:
- It supports reactive state with State[T]. You change a value and the framework redraws for you. You can also forego reactivity and simply use pure components if you would like.
- You can render out a single frame to the terminal scrollback if you don't care about UIs and just want to place a box, table, or other styled component into your stdout. It's super handy and avoids the headache of dealing with the ansi escape sequences directly.
- It supports an inline mode that lets you embed an interactive widget in your shell session instead of taking over the full screen. With it you can build things like custom streaming chat interfaces directly in the terminal.
- I built full editor support for the new filetype. I published a VS Code and Open-VSX extension with completion, hover, and go-to-definition. Just search for "go-tui" in the marketplace to find them. The repo also includes a tree-sitter grammar for Neovim/Helix, and an LSP that proxies Go features through gopls so the files are easy to work with.
There are roughly 20 examples in the repo covering everything from basic components to a dashboard with live metrics and sparklines. I also built an example wrapper for claude code if you wanted to build your own AI chat interface.
Docs & guides: https://go-tui.dev
Repo: https://github.com/grindlemire/go-tui
I'd love feedback on the project!
Comments URL: https://news.ycombinator.com/item?id=47278869
Points: 1
# Comments: 0
Codex Security: now in research preview
Article URL: https://openai.com/index/codex-security-now-in-research-preview/
Comments URL: https://news.ycombinator.com/item?id=47278862
Points: 2
# Comments: 0
Request to the European Commission to Adhere to Its Own Guidance
Article URL: https://blog.documentfoundation.org/blog/2026/03/05/cra-guidances/
Comments URL: https://news.ycombinator.com/item?id=47278860
Points: 1
# Comments: 0
The Golden Networking Hour
Article URL: https://olshansky.info/posts/2025-12-31-the-golden-networking-hour
Comments URL: https://news.ycombinator.com/item?id=47278842
Points: 1
# Comments: 0
Never Bet Against x86
Article URL: https://www.osnews.com/story/144527/never-bet-against-x86/
Comments URL: https://news.ycombinator.com/item?id=47278836
Points: 4
# Comments: 0
Show HN: Max – a federated data query layer for AI agents (and humans)
Hey HN! I built a thing and I'm really excited to share it.
EDIT: I meant to link to the github, not the website: https://github.com/max-hq/max
Like many of us here, I've been commonly reaching for a pattern of "pull data into db; give it to claude" for a while, whilst doing data spelunking or building tooling - for the same reasons mentioned by thellimist over here [1] and a few other recent "CLI vs MCP" posts.
To that end, about a month ago I started building a project called `max` - its goal is to cut the middleman and schematise any data source for you. Essentially, provide a lingua-franca for synchronising and searching data.
In short: Max exposes a CLI for any given data source, and mirrors it locally. As in, puts that data right next to the agent. It means search is local and fast, and ready for cut, sed, grep, sort etc.
More concretely:
> max connect @max/connector-gmail --name gmail-1 > max sync gmail-1
> # show me what data i can search for > max schema @max/conector-gmail
> # do a search > max search gmail-1 --filter"subject ~= Apples" --fields=subject,from,time
I've built a few connectors over at `max-hq/max-connectors` - but the goal is that they're easy to create (sync is done via graph walk - max makes you provide field resolution so it can figure out how to sync).
In practice - I've found that telling claude to run "max -g llm-bootstrap" to get acquainted, and then "make a connector for X" also works pretty well :).
There's a lot still to come(!) - realtime, somewhere to host connectors, exposing and serving max nodes... I'll be updating the roadmap over the next couple of days - but I didn't want to wait any longer before sharing here.
(on that note - max is designed for federation. The core is platform agnostic)
In terms of what this approach makes possible - I ran a benchmark on a challenge (it's the one on the website) asking claude to find me names of a particular form from a fairly chunky hubspot (100k contacts). The metrics are roughly what you'd expect from putting the data local and avoiding any tokens hitting claude's context window:
MCP: 18M tokens | 80m time | $180 cost
Max: 238 tokens | 27s time | $0.003 cost
(I'll explain how these numbers were calculated in a new reply)
It's still early (alpha) but if you're building agents or just want local data, please try it and tell me what breaks.
Thanks!
[1] https://news.ycombinator.com/item?id=47157398
Comments URL: https://news.ycombinator.com/item?id=47278802
Points: 3
# Comments: 0
Show HN: MyChatArchive – bring your full ChatGPT history into Claude via MCP
Switched from ChatGPT to Claude and realized the official migration only transfers what ChatGPT remembers about you, not your actual conversations. Built a local pipeline that imports full exports, generates semantic embeddings on your machine, and serves them via MCP server. Claude Desktop and Cursor can search your entire chat history by meaning during any conversation. No cloud, no API keys for core pipeline. Also supports Claude Code, Cursor, and Grok exports.
Comments URL: https://news.ycombinator.com/item?id=47278798
Points: 1
# Comments: 0
