frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

In search of Banksy, Reuters found the artist took on a new identity

https://www.reuters.com/investigates/special-report/global-art-banksy/
1•gnabgib•54s ago•0 comments

Amazon Owes New York City Almost $10M in Fines over Idling Vehicles

https://www.roadandtrack.com/news/a70757976/amazon-owes-nyc-millions-idling-vehicle-fines-report/
1•randycupertino•2m ago•0 comments

China Has Five-Minute EV Charging. America Is Trying to Catch Up

https://www.wsj.com/business/autos/china-has-five-minute-ev-charging-america-is-trying-to-catch-u...
2•JumpCrisscross•5m ago•0 comments

Ask HN: What Are You Reading? (Mar 2026)

1•juanpabloaj•7m ago•1 comments

Claude Chief of Staff

https://github.com/mimurchison/claude-chief-of-staff
1•AnhTho_FR•7m ago•0 comments

Show HN: Turn your OpenAPI document to an MCP server in ~1000 tokens and 3 tools

https://scalar.com/blog/agent-scalar
1•marclave•8m ago•0 comments

Asteroids and meteorites may have delivered the building blocks for life

https://courthousenews.com/asteroids-and-meteorites-may-have-delivered-the-building-blocks-for-li...
1•everybodyknows•8m ago•0 comments

MinRLM: A Token-Efficient Recursive Language Model Implementation and Benchmark

https://avilum.github.io/minrlm/recursive-language-model.html
1•curmudgeon22•10m ago•0 comments

Show HN: Soul Protocol – an open standard for portable AI identity

1•prakashdep•10m ago•1 comments

OpenAI courts private equity to join enterprise AI venture

https://finance.yahoo.com/news/exclusive-openai-courts-private-equity-132509339.html
1•gmays•10m ago•0 comments

Slug Text Rendering Algorithm Dedicated to Public Domain

https://terathon.com/blog/decade-slug.html
2•mwkaufma•10m ago•0 comments

Miami, Tokyo, Zurich top UBS housing bubble risk

https://www.ubs.com/global/en/wealthmanagement/insights/global-real-estate-bubble-index.html
1•ethbr1•10m ago•0 comments

Nvidia Hits $1T Order Backlog Through 2027

https://www.techbuzz.ai/articles/nvidia-hits-1-trillion-order-backlog-through-2027
1•techright75•10m ago•0 comments

Hacking the System in a Moral Panic: We Need to Talk

https://hackaday.com/2026/03/17/hacking-the-system-in-a-moral-panic-we-need-to-talk/
1•toomuchtodo•12m ago•0 comments

Huckle: Detect operational problems 30–90 days before they appear in metrics

https://github.com/The-Resonance-Institute/huckle-public
1•cherndon222•15m ago•1 comments

Show HN: A minimalist dungeon-crawler card game built with Deno

https://scoundrel.ever-forward.deno.net/play
1•davrodpin•16m ago•1 comments

Missiles a Month vs. 7 Interceptors – Why Centcom Shifted to Factories

https://brief.gizmet.dev/signal-100-missiles-a-month-vs-7-interceptors-why-centcom-shifted-t/
1•GIZINT•17m ago•1 comments

Toaster Settings: AI Agents and Classical French Cooking Techniques [video]

https://www.youtube.com/watch?v=S_Iqnt_Cf98
1•aarmenante•18m ago•0 comments

The Sky Tonight

https://theskylive.com/guide
1•susam•19m ago•0 comments

Padel Chess – tactical simulator for padel

https://www.padelchess.me/
1•AlexGerasim•20m ago•0 comments

How OpenClaw's Memory System Works

https://www.db0.ai/blog/how-openclaw-memory-works
3•shenli3514•21m ago•0 comments

Show HN: Build a knowledge graph from unstructured text in Python

https://github.com/arun1729/text-to-kg
1•am3141•22m ago•0 comments

I built a free site that can tell you if your hardware can run a model

https://llmscout.fit/#/
2•dinosoupy•22m ago•2 comments

PgBeam, a globally distributed PostgreSQL proxy

https://pgbeam.com/blog/why-i-built-pgbeam
1•PaulHoule•22m ago•0 comments

Words on Words on Words

https://lemoncosmos.com/blog/posts/2026/03/words/
1•midzer•22m ago•0 comments

Syntaqlite: High-fidelity devtools that SQLite deserves

https://lalitm.com/post/syntaqlite/
1•lalitmaganti•23m ago•0 comments

Show HN: Flotilla – An orchestrator for persistent agent fleets on Apple Silicon

https://github.com/UrsushoribilisMusic/agentic-fleet-hub
1•ursushoribilis•23m ago•1 comments

Show HN: I can no longer afford the silicon. Here is my autonomous HPC agent

https://github.com/KilianDiama/AutonomousRDAgent
1•diamajax•24m ago•0 comments

When Science Goes Agentic

https://cacm.acm.org/blogcacm/when-science-goes-agentic/
1•tchalla•26m ago•0 comments

Java 26 is here, and with it a solid foundation for the future

https://hanno.codes/2026/03/17/java-26-is-here/
10•mfiguiere•26m ago•1 comments
Open in hackernews

Show HN: Railguard – A safer –dangerously-skip-permissions for Claude Code

https://github.com/railyard-dev/railguard
1•LunarFrost88•1h ago
--dangerously-skip-permissions is all-or-nothing. Either you approve every tool call by hand, or Claude runs with zero restrictions. I wanted a middle ground.

Railguard hooks into Claude Code and intercepts every tool call and decides in under 2ms: allow, block, or ask.

  cargo install railguard                                                                                                                                                                                                                         
  railguard install

It comes with sane configs preinstalled. You keep using Claude exactly as before. 99% of commands flow through instantly. You only see Railguard when it matters.

What it actually does beyond pattern matching and sandboxing:

  - OS-level sandbox (sandbox-exec on macOS, bwrap on Linux). Agents can base64-encode commands, write helper scripts, chain pipes to evade regex rules. The sandbox resolves what actually executes at the kernel level.   
                      
  - Context-aware decisions. rm dist/bundle.js inside your project is fine. rm ~/.bashrc is not. Same command, different decision.

  - Memory safety. Claude Code has persistent memory across sessions — a real attack surface. Railguard classifies every memory write, blocks secrets from being exfiltrated, flags behavioral injection, and detects tampering between sessions. 

  - Recovery. Every file write is snapshotted. Roll back one edit, N edits, or an entire session.                                                                                                                                                 
                                                                                                                                                                                                                                                  
It won't close every vector of attack. But it covers the gap between "no protection" and "approve everything manually" without changing your workflow.

Rust, MIT, single YAML config file. Happy to talk architecture or trade-offs.

Comments

LunarFrost88•1h ago
I'm the author, AMA!