Feed aggregator
Harrier: A high-performance Rust hashmap using SIMD-accelerated cuckoo hashing
Article URL: https://github.com/kushalthaman/harrier
Comments URL: https://news.ycombinator.com/item?id=47067581
Points: 1
# Comments: 1
Show HN: Generate baseline Kubernetes NetworkPolicies from rendered manifests
A lot of clusters still run “allow-all” east/west because NetworkPolicies aren’t enforced everywhere. I built a small static analyzer that reads rendered manifests (Helm/Argo CD/Kustomize output) and emits baseline NetworkPolicy YAML you can commit + diff in PRs.
Workflow:
PR changes manifests
CI regenerates policies
reviewers see “newly allowed” connections as a normal permission diff
Curious how others handle this: would you rather review generated policy diffs, or a connectivity-graph diff? Any edge cases you’ve seen bite in real clusters (headless services, shared namespaces, DNS/egress, service meshes, etc.)?
Comments URL: https://news.ycombinator.com/item?id=47067580
Points: 1
# Comments: 0
OpenAI's acquisition of OpenClaw signals the end of the ChatGPT era
Article URL: https://venturebeat.com/technology/openais-acquisition-of-openclaw-signals-the-beginning-of-the-end-of-the
Comments URL: https://news.ycombinator.com/item?id=47067573
Points: 1
# Comments: 0
Uber Has Big Plans for Lots More Robotaxis and EV Charging Stations
Ask HN: In Cursor/agents, do plugins hide MCP tools from the main agent?
Quick architecture question.
When using MCP servers directly in Cursor, the agent seems to see all tools at the same level.
But when using a plugin/extension that internally connects to MCP servers, does the main agent:
see only the plugin as a single tool and delegate to a sub-agent inside it, or
still see every underlying MCP tool individually?
In other words: do plugins act as a tool abstraction boundary, or just a packaging/install mechanism?
Comments URL: https://news.ycombinator.com/item?id=47067558
Points: 1
# Comments: 0
Show HN: Designing package namespacing for a new language (Coi)
Hey HN, I'm building Coi, a component-based language that compiles to WASM, JS, CSS and HTML with O(1) reactivity (no virtual DOM).
I just shipped a built-in package manager, but the interesting part wasn't the implementation, it was all the ecosystem design questions I'd never thought about as a user of package managers.
The problem I kept circling: how do you handle naming? Global names like auth or json seem fine until someone squats them. First-come-first-served creates perverse incentives. Reputation systems are easy to game early on. I went back and forth for longer than I'd like to admit.
I went through a few approaches:
Blocklist common names: reserve things like auth, json, http so people are forced into more specific names. Feels clean in theory, but who decides the list? And it doesn't really scale, someone will always find the next generic name you didn't think to block.
Go's approach: just use GitHub URLs directly as the package identifier. No registry needed, no naming wars. I liked the elegance of it, but in practice it's awful to actually write and read. Nobody wants import github.com/someone/thing/v2/pkg/util in their source files.
Tiered names: short names are hard to get, long names are open. Claiming json requires vetting, but json-schema-validator you can grab freely. The friction is proportional to how valuable the name is, nobody squats my-very-specific-http-retry-client because there's no payoff. I liked this one, but you still need to define the threshold and then you're back to needing governance :( just a smaller version of it.
Scoped names: ended up here. Everything is @someorg/http-client. Boring, proven, sidesteps squatting without needing governance infrastructure I don't have. npm figured this out the hard way so I don't have to :)
The registry itself is GitHub-based, metadata is JSON, submissions are PRs, validation runs through CI. Only one package in the registry right now (mine), but getting add/install/upgrade working end-to-end changed how the project feels. It went from "compiler experiment" to something with an actual ecosystem shape.
Curious how others have thought about this, especially early-stage ecosystems where you have no reputation signals yet. Did anyone solve the naming problem better than "just use scopes"?
Coi: https://github.com/io-eric/coi
Comments URL: https://news.ycombinator.com/item?id=47067550
Points: 1
# Comments: 0
Oral History of Michael J. Flynn [video]
Article URL: https://www.youtube.com/watch?v=OD2uE9X9BPs
Comments URL: https://news.ycombinator.com/item?id=47067543
Points: 1
# Comments: 0
Show HN: Build Minecraft mods and servers in the browser
Article URL: https://www.orcaengine.ai/
Comments URL: https://news.ycombinator.com/item?id=47067533
Points: 1
# Comments: 0
Micron's PCIe 6.0 SSD Hits Mass Production at 28 GB/S
Show HN: HiddenState – How I keep up with 500+ ML papers a day
HiddenState monitors arxiv, Reddit, GitHub, HN, Bluesky, HuggingFace, OpenReview, PapersWithCode, and a handful of research blogs. Every few hours it pulls new items, throws most of them away (+95%), and clusters what survives by the specific technical constraint being attacked. Not by topic, not by domain.
Example from this week; 7 independent VLA papers dropped within 24 hours from 9 different orgs. Xiaomi, GigaBrain, RISE, all attacking sim-to-real transfer for robotic manipulation. None coordinating. That kind of convergence is hard to spot unless you're reading everything.
Each mechanism gets a 0-100 score across convergence, implementation evidence, engagement, and significance. Orgs are deduplicated so a single lab posting on five platforms doesn't inflate the signal.
Python, SQLite, Claude for clustering, Cloudflare Pages. Free, no tracking. Looking for any and all feedback and thoughts! Cheers!
Comments URL: https://news.ycombinator.com/item?id=47067509
Points: 1
# Comments: 1
Britain Lost a Quarter of all pubs (14,000 Pubs) in 13 Years
Article URL: https://laurenleek.substack.com/p/britain-lost-14000-third-places-they
Comments URL: https://news.ycombinator.com/item?id=47067503
Points: 1
# Comments: 1
All Look Same?
Article URL: https://alllooksame.com/
Comments URL: https://news.ycombinator.com/item?id=47067498
Points: 3
# Comments: 0
Martial arts robots dazzle at 2026 Spring Festival Gala [video]
Article URL: https://www.youtube.com/watch?v=mUmlv814aJo
Comments URL: https://news.ycombinator.com/item?id=47067496
Points: 2
# Comments: 0
Show HN: Geneclaw – An AI agent framework that safely evolves its own code
Article URL: https://github.com/Clawland-AI/Geneclaw
Comments URL: https://news.ycombinator.com/item?id=47067488
Points: 1
# Comments: 1
GitSyncMarks – Browser extension that syncs bookmarks to your own GitHub repo
Article URL: https://github.com/d0dg3r/GitSyncMarks
Comments URL: https://news.ycombinator.com/item?id=47067450
Points: 2
# Comments: 1
Owning Your Data
Article URL: https://www.coryd.dev/posts/2026/owning-your-data
Comments URL: https://news.ycombinator.com/item?id=47067444
Points: 3
# Comments: 0
Andrew Ranken, Whose Drumming Powered the Pogues, Dies at 72
Article URL: https://www.nytimes.com/2026/02/11/arts/music/andrew-ranken-dead-the-pogues.html
Comments URL: https://news.ycombinator.com/item?id=47067435
Points: 2
# Comments: 1
Astrolabe
Article URL: https://en.wikipedia.org/wiki/Astrolabe
Comments URL: https://news.ycombinator.com/item?id=47067432
Points: 2
# Comments: 0
