Feed aggregator
Au Revoir, Eleventy
Article URL: https://hamatti.org/posts/au-revoir-eleventy/
Comments URL: https://news.ycombinator.com/item?id=47269165
Points: 1
# Comments: 0
Why incremental aggregates are difficult
Article URL: https://www.feldera.com/blog/why-incremental-aggregates-are-difficult---part-1
Comments URL: https://news.ycombinator.com/item?id=47268899
Points: 1
# Comments: 0
Automated CT scan analysis could fast-track clinical assessments
Article URL: https://www.nih.gov/news-events/news-releases/automated-ct-scan-analysis-could-fast-track-clinical-assessments
Comments URL: https://news.ycombinator.com/item?id=47268882
Points: 1
# Comments: 0
Identify Every Visitor
Article URL: https://fingerprint.com/
Comments URL: https://news.ycombinator.com/item?id=47268877
Points: 1
# Comments: 0
Faulty reward functions in the wild (Jack Clark, Dario Amodei, 2016)
Article URL: https://openai.com/index/faulty-reward-functions/
Comments URL: https://news.ycombinator.com/item?id=47268853
Points: 1
# Comments: 0
Self-Portrait by Ernst Mach (1886)
Article URL: https://publicdomainreview.org/collection/self-portrait-by-ernst-mach-1886/
Comments URL: https://news.ycombinator.com/item?id=47268838
Points: 1
# Comments: 0
Show HN: Console2svg – Convert terminal output to crisp SVGs
I built a CLI that turns terminal output into vector SVGs.
It supports truecolor, animated “video” mode, cropping by pixels/chars/patterns, and optional window chrome/backgrounds.
Available via npm, dotnet tool, and standalone binaries.
Repo: https://github.com/arika0093/console2svg
Comments URL: https://news.ycombinator.com/item?id=47268837
Points: 1
# Comments: 0
Cracking the code on sulfur-based cathodes
Article URL: https://pme.uchicago.edu/news/cracking-code-sulfur-based-cathodes
Comments URL: https://news.ycombinator.com/item?id=47268833
Points: 1
# Comments: 0
The Pentagon Officially Notifies Anthropic That It Is a 'Supply Chain Risk'
Article URL: https://www.nytimes.com/2026/03/05/technology/anthropic-supply-chain-risk-defense-department.html
Comments URL: https://news.ycombinator.com/item?id=47268819
Points: 1
# Comments: 1
Ncruces/wasm2go: A WASM to Go translator
Article URL: https://github.com/ncruces/wasm2go
Comments URL: https://news.ycombinator.com/item?id=47268801
Points: 1
# Comments: 0
Show HN: Database Subsetting and Relational Data Browsing Tool
Article URL: https://wisser.github.io/Jailer/
Comments URL: https://news.ycombinator.com/item?id=47268798
Points: 1
# Comments: 0
The AI Hunger Games, submit your agents and watch them fight to the death
Article URL: https://twitter.com/AshtonBars/status/2029702436349432132
Comments URL: https://news.ycombinator.com/item?id=47268791
Points: 2
# Comments: 1
Crush, Welcome Home
Article URL: https://charm.land/blog/crush-comes-home/
Comments URL: https://news.ycombinator.com/item?id=47268786
Points: 2
# Comments: 0
Denmark is set to explore if gastronomy can be recognized as an art form
Article URL: https://apnews.com/article/denmark-copenhagen-gastronomy-art-cuisine-michelin-star-1ff12a21ab4e507d3f105413db0a1eb9
Comments URL: https://news.ycombinator.com/item?id=47268784
Points: 2
# Comments: 0
Bombardment unleashes terror in Tehran with no sign of protests
Article URL: https://www.reuters.com/world/middle-east/bombardment-unleashes-terror-tehran-with-no-sign-protests-2026-03-03/
Comments URL: https://news.ycombinator.com/item?id=47268783
Points: 3
# Comments: 1
Iranian Warship Did Not Carry Ammunition per Protocol of the Milan Exercises
Article URL: https://old.reddit.com/r/UnderReportedNews/comments/1rlmsom/the_downed_iranian_warship_did_not_carry_any/
Comments URL: https://news.ycombinator.com/item?id=47268779
Points: 1
# Comments: 0
Is anyone else drowning in terminal tabs running AI coding agents?
I work on a 300k line monorepo, just me and my co-founder. At any given moment I have 3-6 CLI agents (Claude Code, Codex, Aider) running simultaneously across git worktrees. The throughput is great. Managing it is not.
Every tool I found was either another agent, an IDE plugin, an abstraction over my CLIs, or doesn't understand worktrees. Conductor is Mac-only and getting buggier. Warp and Ghostty were interesting but not opinionated enough for my worktree-to-PR workflow.
So I built Pane (https://runpane.com). Keyboard-driven desktop app that gives you one interface to monitor and control CLI agents across worktrees. Ships with a command palette, simple shortcuts (ctrl + up or down arrow to switch between each worktree, VS code shortcuts for other basic things). Each worktree gets a run button that auto-generates a script (via Claude Code on first run) to spin up on isolated ports, so I can have every branch hot reloading in its own tab.
Been using it daily since last week. Hard to go back. I fully open sourced it here, so you can ship your own features to Pane, using Pane: https://github.com/Dcouple-Inc/Pane
How are others handling multi-agent workflows?
Comments URL: https://news.ycombinator.com/item?id=47268777
Points: 1
# Comments: 1
Multi-model code review and plan review for Claude Code
Article URL: https://github.com/AltimateAI/claude-consensus
Comments URL: https://news.ycombinator.com/item?id=47268774
Points: 1
# Comments: 1
2028: A Realistic Future for the Software Sector
Article URL: https://grahamyork.substack.com/p/2028-a-realistic-future-for-the-software
Comments URL: https://news.ycombinator.com/item?id=47268771
Points: 1
# Comments: 0
Show HN: NavAgent – CDP-free, token-efficient web automation for AI
Hi HN, I built NavAgent, a small MCP server + Chrome extension that lets AI clients drive your real browser session without CDP.
I use Claude Code daily, and I kept wanting it to interact with pages in my own browser, with my existing tabs, cookies, and logins.
Most browser automation approaches I tried for MCP were based on CDP / Playwright. I wanted something lighter and closer to normal browser behavior, so I tried a different design: the extension scans the DOM and sends the model a compact numbered list of actionable elements over a local WebSocket.
So the model sees something like: Search [input] Books [link] ... and can reply with browse_click(2) or browse_type(...)
That keeps scans very small (usually much smaller than screenshots or ARIA-tree dumps) and avoids screenshots, vision models, and huge accessibility payloads.
It currently handles SPAs, shadow DOM, same-origin iframes, and contenteditable editors. Everything runs locally. Setup is just the npm package plus the extension, and you can already try it by sideloading the extension from the repo and running npx navagent-mcp.
It's intentionally narrow: this is not a replacement for Playwright, CI automation or heavy scraping. It's a passive bridge for everyday browser tasks like opening pages, clicking around, and filling forms from an AI assistant.
It's still early, but it's already useful for my daily workflow. Feedback very welcome, especially on edge cases, security concerns and sites where it breaks.
Comments URL: https://news.ycombinator.com/item?id=47268758
Points: 1
# Comments: 0
