Hacker News
Safe VSP
Article URL: https://linusakesson.net/scene/safevsp/index.php
Comments URL: https://news.ycombinator.com/item?id=47055485
Points: 1
# Comments: 0
Tesla Robotaxis Reportedly Crashing at a Rate That's 4x Higher Than Humans
Article URL: https://gizmodo.com/tesla-robotaxis-reportedly-crashing-at-a-rate-thats-4x-higher-than-humans-2000722989
Comments URL: https://news.ycombinator.com/item?id=47055467
Points: 4
# Comments: 0
Open-source game engine Godot is drowning in 'AI slop' code contributions
Why an A.I. Video of Tom Cruise Battling Brad Pitt Spooked Hollywood
Article URL: https://www.nytimes.com/2026/02/16/movies/tom-cruise-brad-pitt-artificial-intelligence-seedance.html
Comments URL: https://news.ycombinator.com/item?id=47055453
Points: 3
# Comments: 0
Ask HN: How do you overcome imposter syndrome?
I’ve been working at YC-backed startups since graduating from university. I’m now at a company building a deeply distributed systems product, and I’m surrounded by incredibly talented engineers who seem exceptionally strong at what they do. They often have knowledge and intuition about things I barely understand.
Lately, I’ve been feeling inadequate — like I’m contributing more to the less exciting parts of the product rather than the “cool” or core engineering challenges.
On top of that, I’m an immigrant and my wife and I are expecting. Balancing that with a fully remote job has been difficult, and at times I feel like I’ve lost some of my competence or sharpness. I’m taking steps to address this — I’ll be speaking with a psychologist soon — but I genuinely wonder: how does someone overcome these feelings while working within a high-functioning engineering team?
Comments URL: https://news.ycombinator.com/item?id=47055450
Points: 3
# Comments: 0
The most practical, fast, tiny command sandboxing for AI agents
Article URL: https://dw1.io/blog/2026/02/17/sandboxec/
Comments URL: https://news.ycombinator.com/item?id=47055446
Points: 2
# Comments: 0
An assembler that compiles to a printf loop
Article URL: https://git.sr.ht/~sebsite/printfasm
Comments URL: https://news.ycombinator.com/item?id=47055439
Points: 1
# Comments: 0
The mathematical mystery inside the shooter Quake 3
Article URL: https://www.scientificamerican.com/article/the-mathematical-mystery-inside-the-legendary-90s-shooter-quake-3/
Comments URL: https://news.ycombinator.com/item?id=47055436
Points: 1
# Comments: 1
Adam Mastroianni of Experimental History Interviews Gwern (2025)
Article URL: https://gwern.net/interview-inkhaven
Comments URL: https://news.ycombinator.com/item?id=47055430
Points: 2
# Comments: 0
First Agent Skills Hackathon by the Authors of SkillsBench
Article URL: https://www.skillathon.ai/
Comments URL: https://news.ycombinator.com/item?id=47055428
Points: 1
# Comments: 1
Rathbun's Operator
Article URL: https://crabby-rathbun.github.io/mjrathbun-website/blog/posts/rathbuns-operator.html
Comments URL: https://news.ycombinator.com/item?id=47055424
Points: 3
# Comments: 0
How Jet Engines Are Powering Data Centers
Article URL: https://www.wsj.com/business/energy-oil/how-jet-engines-are-powering-data-centers-b1c587a9
Comments URL: https://news.ycombinator.com/item?id=47055423
Points: 2
# Comments: 0
PostCSS creator: How to make your open source project popular
Article URL: https://evilmartians.com/chronicles/how-to-make-your-open-source-popular
Comments URL: https://news.ycombinator.com/item?id=47055413
Points: 1
# Comments: 0
The gut microbiota shapes the human and murine breath volatilome
Article URL: https://www.cell.com/cell-metabolism/fulltext/S1550-4131(25)00544-3
Comments URL: https://news.ycombinator.com/item?id=47055405
Points: 1
# Comments: 0
Cancer's safety net: A hidden mechanism lets dangerous mutations thrive
Article URL: https://medicalxpress.com/news/2026-01-cancer-secret-safety-net-hidden.html
Comments URL: https://news.ycombinator.com/item?id=47055023
Points: 1
# Comments: 0
Io: A Unique World in Our Solar System [pdf]
Article URL: https://lpl.arizona.edu/sites/default/files/publications/Unique_World_122022.pdf
Comments URL: https://news.ycombinator.com/item?id=47055022
Points: 1
# Comments: 0
Roast my language‑learning site (constructively lol)?
Article URL: https://truefluency.org
Comments URL: https://news.ycombinator.com/item?id=47055000
Points: 1
# Comments: 1
Can we just build, build, build over history? A short film.
Article URL: https://www.youtube.com/watch?v=L3_1dxGGRDw
Comments URL: https://news.ycombinator.com/item?id=47054991
Points: 1
# Comments: 0
Show HN: NadirClaw, LLM router that cuts costs by routing prompts right
I use Claude and Codex heavily for coding, and I kept burning through my quota halfway through the week. When I looked at my logs, most of my prompts were things like "summarize this," "reformat this JSON," or "write a docstring." Stuff that any small model handles fine.
So I built NadirClaw. It's a Python proxy that sits between your app and your LLM providers. It classifies each prompt in about 10ms and routes simple ones to Gemini Flash, Ollama, or whatever cheap/local model you want. Only the complex prompts hit your premium API.
It's OpenAI-compatible, so you just point your existing tools at it. Works with OpenClaw, Cursor, Claude Code, or anything that talks to the OpenAI API.
In practice I went from burning through my Claude quota in 2 days to having it last the full week. Costs dropped around 60%.
curl -fsSL https://raw.githubusercontent.com/doramirdor/NadirClaw/main/... | sh
Still early. The classifier is simple (token count + pattern matching + optional embeddings), and I'm sure there are edge cases I'm missing. Curious what breaks first, and whether the routing logic makes sense to others.
Repo: https://github.com/doramirdor/NadirClaw
Comments URL: https://news.ycombinator.com/item?id=47054977
Points: 1
# Comments: 1
Show HN: Bashtorio – Factorio-Like in the Browser Backed by a Linux VM
I created a free, open-source browser game inspired by Factorio.
You place "Input" machines that produce streams of bytes. You use conveyor belts to feed those bytes through other machines which produce transformations, and then to "Output" machines which produce audio or visual effects.
The game uses v86 to run a real Linux VM in the browser. I use the 9p filesystem to enable IPC via FIFO pipes, so shell commands can stream data continuously rather than just running once.
Features: - 30+ machine types (sources, filters, routers, packers, audio synthesis, displays) - "Command" machines that pipe data through real shell commands - Streaming mode for persistent processes - Shareable factories via URL - Chiptune audio engine (oscillators, Game Boy noise channel) + additional 808 drum machine
Try the presets in the menu bar (top left) to see what's possible. Requires WASM and may take a moment to load on slower connections.
Live: https://bashtorio.xyz Source: https://github.com/EliCunninghamDev/bashtorio
Comments URL: https://news.ycombinator.com/item?id=47054958
Points: 1
# Comments: 0
