frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

LeetCode Optimization and Go

https://xnacly.me/posts/2023/leetcode-optimization/
1•ibobev•1m ago•0 comments

Obituary for the greatest monument to logical AGI

https://yuxi.ml/cyc
1•e-dant•1m ago•0 comments

How to Write Fast Game Engine Math

https://gamesbymason.com/blog/2026/math/
1•ibobev•1m ago•0 comments

US Labor Force Demographics Are Worsening

https://www.aei.org/domestic-policy/our-labor-force-demographics-are-getting-worse/
1•toomuchtodo•2m ago•0 comments

Show HN: Tok/s on a 35B MoE model using a $100 AMD crypto APU and Vulkan

https://github.com/akandr/bc250
1•akandr•2m ago•1 comments

Runway GWM-1

https://runwayml.com/research/introducing-runway-gwm-1
1•lastdong•3m ago•1 comments

My prodigal brainchild: Neal Stephenson on the Metaverse

https://nealstephenson.substack.com/p/my-prodigal-brainchild
1•robinhouston•3m ago•0 comments

Schema as the Core of Reliability in AI Memory

https://xmemory.ai/schema-as-the-core-of-reliability/
1•ashvardanian•3m ago•0 comments

$100 gift card could be legit. $1000 is a Scam. What should scammers do?

https://blog.computationalcomplexity.org/2026/03/a-100-dollar-gift-care-could-be-legit.html
1•speckx•3m ago•0 comments

Mapping ICE's expanding footprint, and the communities fighting back

https://www.npr.org/2026/03/23/g-s1-114107/ices-growing-detention-footprint-and-the-communities-f...
1•verdverm•3m ago•0 comments

Show HN: Daily Unfold – A paper folding puzzle game

https://www.dailyunfold.com/
2•astralasia•3m ago•0 comments

Fantasy Baseball 2026

https://arnoldkling.substack.com/p/fantasy-baseball-2026
1•paulpauper•4m ago•0 comments

Dark Shadows Fall, One Upon the Other

https://www.robkhenderson.com/p/dark-shadows-fall-one-upon-the-other
1•paulpauper•4m ago•0 comments

A Conversation with Claude

https://www.noahpinion.blog/p/a-conversation-with-claude
2•paulpauper•4m ago•0 comments

Show HN: Run Labs – A multi-product startup

https://run-labs.com/
2•mnewme•5m ago•0 comments

The Priesthood of System Design

https://pooyam.dev/llms-system-design
1•py4•5m ago•0 comments

Outworked – An Open Source Office UI for Claude Code Agents

https://github.com/outworked/outworked
2•ZeidJ•7m ago•1 comments

Trigrep – indexed regex search in Rust with CLI

https://github.com/PythonicNinja/trigrep
1•PythonicNinja•9m ago•2 comments

Harper's Policy on PRs Authored by Agents

https://elijahpotter.dev/articles/harper%27s-policy-on-agent-PRs
1•chilipepperhott•9m ago•0 comments

Show HN: SRD, a simple DNS-driven HTTP redirect service

https://github.com/twopow/srd
1•patabyte•10m ago•0 comments

Coke fires worker injured on the job, keeping him would be hard on the company

https://www.cbc.ca/news/gopublic/go-public-coke-coca-cola-factory-injury-wcb-frustrated-empoloyem...
2•geox•12m ago•0 comments

Show HN: Littlebird – Screenreading is the missing link in AI

https://littlebird.ai/
13•delu•12m ago•3 comments

PostGIS-compatible spatial functions for ClickHouse

https://github.com/bacek/chgeos/
1•zX41ZdbW•14m ago•0 comments

Pipe to Bash

https://gaganpreet.in/posts/pipe-to-bash/
1•speckx•15m ago•1 comments

Prediction Market VC Fund Backed by Kalshi and Polymarket Founders

https://www.5cc.capital
2•salkahfi•15m ago•0 comments

Assignable Research bot for Linear and Slack tasks

https://github.com/serpapi/serpapi-research-bot
1•jamescollinssp•15m ago•0 comments

US govt pays TotalEnergies nearly $1B to stop US offshore wind projects

https://www.lemonde.fr/en/international/article/2026/03/23/us-and-totalenergies-reach-nearly-1-bi...
4•lode•16m ago•0 comments

Make OpenClaw your company's training program for agentic AI

https://www.robert-glaser.de/you-banned-openclaw-now-make-it-your-training-program/
1•youngbrioche•16m ago•0 comments

LLM-Native Advertising (What Ads in GenAI Will Look Like)

https://adgpt.rlafuente.com/
1•andes314•16m ago•0 comments

Selling Stuff

https://ftrain.com/selling-stuff
1•FigurativeVoid•18m ago•0 comments
Open in hackernews

Show HN: I built a 0.07ms Python firewall to stop AI hallucinations

2•richardewing1•1h ago
Hey HN,

I was building other AI products and kept hitting the same wall: agents hallucinate and constantly forget context. I ended up building a ledger just to track what they were actually doing.

Once that ledger was logging everything, I realized I could use it to enforce rules. Exogram is the result. It is a deterministic firewall that intercepts agent tool calls (like MCP) using pure Python logic gates. It catches bad schemas and destructive actions in 0.07ms. There is zero AI in the security loop.

I load-tested it yesterday and hit 137 RPS on a single container with zero dropped payloads.

Sandbox: https://exogram.ai/proving-ground Repo: https://github.com/Richard-Ewing/exogram-protocol-rfc

I just built the Proving Ground UI today to visualize the 0.07ms block in real time. Let me know if the split-screen demo makes sense, or if you manage to bypass the gates.

Richard

Comments

dhedegreen•1h ago
This is the missing layer nobody talks about. We kept connecting AI to real systems - browse this, call that, send this and each step felt like a feature. Nobody stopped to say: wait, the model is no longer just generating text, it's touching things. Cool to see someone building the gate with plain code instead of more AI on top of AI.
richardewing1•36m ago
Yeah exactly, messing up a chat response is whatever, but the second they have actual write access you just can't trust a system prompt anymore.