frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

One of Grammarly's 'experts' is suing the company over its AI feature

https://www.theverge.com/ai-artificial-intelligence/893451/grammarly-ai-lawsuit-julia-angwin
2•october8140•2m ago•0 comments

MiniGTD: GTD but Smol

https://nekolucifer.substack.com/p/minigtd-gtd-but-smol
2•andai•6m ago•1 comments

Show HN: Nonna – code slop detector that runs in the browser

http://www.babush.me/nonna/
2•babush•8m ago•0 comments

The future of social media is about you not an app

https://eurosky.leaflet.pub/3mgnjewfva22q
3•doener•12m ago•0 comments

He Tried to Stop Adobe from Training Its AI on His Photo Library – He Lost

https://petapixel.com/2026/03/11/he-tried-to-stop-adobe-from-training-its-ai-on-his-photo-library...
1•jonah•13m ago•0 comments

I've Hesitated to Call Donald Trump a Fascist. Until Now – Newsweek (2021)

https://www.newsweek.com/robert-paxton-trump-fascist-1560652
2•abdelhousni•14m ago•1 comments

Iran-linked group claims responsibility for Stryker (medical) cyberattack

https://www.detroitnews.com/story/business/2026/03/11/stryker-hit-by-suspected-iran-link-cyberatt...
1•cebert•14m ago•0 comments

Agent Failures Don't Start Where They Appear

https://www.vichoiglesias.com/writing/agent-failures-dont-start-where-they-appear
1•vichoiglesias•14m ago•0 comments

Gathering Structures (2024)

https://maggieappleton.com/gathering-structures
1•Sir_Twist•15m ago•0 comments

EuroSky Issue with Posts and Reactions

https://bsky.app/profile/eurosky.social/post/3mgszz2tisk2a
1•doener•17m ago•0 comments

The $38.9T national debt is costing you extra dollars per year on your mortgage

https://fortune.com/2026/03/11/national-debt-costs-homeowners-trump-tax-cuts-mortgage-rates/
4•loveseekintruth•20m ago•0 comments

Interface Hall of Shame (2000)

http://hallofshame.gp.co.at/shame.htm
1•GaryBluto•20m ago•0 comments

Atlassian cuts another 1,600 jobs amid AI shakeup

https://www.forbes.com.au/news/investing/atlassian-cuts-another-1600-jobs-amid-ai-shakeup/
2•Cub3•23m ago•2 comments

Google Antigravity IDE rug pulls its quotas

https://old.reddit.com/r/google_antigravity/comments/1rr7vr4/did_the_quotas_change_again/
4•cft•23m ago•1 comments

Show HN: NowPages – Free "now page" generator, no sign-up, pure HTML output

https://nowpages.github.io
1•vipinkashyap•23m ago•0 comments

Your 401(k) could shrink due to climate risks, a new lawsuit argues

https://www.fastcompany.com/91503468/your-401k-could-shrink-due-to-climate-risks-a-lawsuit-argues...
2•fermier•24m ago•0 comments

Ask HN: How do we build a new Human First online community in the LLM age?

2•bluefirebrand•25m ago•1 comments

30k Tok/S (Allegedly)

https://www.percepta.ai/blog/can-llms-be-computers
1•E-Reverance•25m ago•1 comments

Show HN: Autoresearch_at_home – SETI_at_home but for LLM training

https://www.ensue-network.ai/autoresearch
9•austinbaggio•26m ago•3 comments

Show HN: A context-aware permission guard for Claude Code

https://github.com/manuelschipper/nah/
2•schipperai•27m ago•1 comments

Nvidia created a ray tracing fork of Godot

https://xcancel.com/StayAtHomeDev/status/2031830743815454977
4•xelia•28m ago•1 comments

Amazon's Win Against Perplexity Kicks AI Shopping Wars into High Gear

https://www.wsj.com/business/retail/amazons-win-against-perplexity-kicks-ai-shopping-wars-into-hi...
2•petethomas•29m ago•0 comments

What Every Computer Scientist Should Know about Floating-Point Arithmetic [pdf]

https://www.itu.dk/~sestoft/bachelor/IEEE754_article.pdf
2•jbarrow•29m ago•0 comments

Home Row Mods

https://precondition.github.io/home-row-mods
2•codewiz•31m ago•0 comments

Dubai faces existential threat as foreigners flee conflict

https://www.theguardian.com/world/2026/mar/11/the-shine-has-been-taken-off-dubai-faces-existentia...
3•prmph•32m ago•0 comments

Web UI for Kling 3.0 video generation with motion controls

https://kling3.io/
2•calvinclairer•34m ago•1 comments

Ask HN: If you could redesign API gateways today, what would you change?

1•shubham7004•35m ago•0 comments

I can’t trust anyone after this.. [video][25m]

https://www.youtube.com/watch?v=BaBzmjOcA8E
2•Bender•36m ago•1 comments

Judge Prepares Slide Deck of Lawyer's Mistakes

https://www.loweringthebar.net/2026/03/judge-prepares-slide-deck-of-lawyers-mistakes.html
2•samizdis•37m ago•0 comments

looking at cs1.6 "VAC" from 2001 [video]

https://www.youtube.com/watch?v=CWS_VGmB168
1•davikr•37m ago•0 comments
Open in hackernews

Ask HN: What are you using to mitigate prompt injection?

4•ramoz•1h ago
If anything at all.

Comments

oliver_dr•1h ago
We've been dealing with this at multiple layers. Here's what actually works in production:

Input-side (preventing injection):

- Strict input sanitization with role-boundary enforcement in the system prompt. Sounds basic, but most people skip it.

- Separate "user content" from "system instructions" at the API level. Don't concatenate untrusted input into your system prompt. Use the dedicated `user` role in the messages array.

- For tool-calling agents, validate that tool arguments match expected schemas before execution. An LLM-as-judge approach for tool call safety is expensive but effective for high-stakes actions.

Output-side (catching when injection succeeds):

This is the part most people underinvest in. Even with perfect input filtering, you still need output guardrails:

- Run the LLM output through evaluation metrics that score for factual correctness, instruction adherence, and safety before it reaches the user.

- For RAG systems specifically, verify that the generated answer is actually grounded in the retrieved context, not fabricated or influenced by injected instructions.

The "defense in depth" framing matters here. Input filtering alone has a ceiling because adversarial prompts evolve faster than regex rules. Output evaluation catches the failures that slip through. We use DeepRails' Defend API for this layer - it scores outputs on correctness, completeness, and safety, then auto-remediates failures before they reach end users. But the principle applies regardless of tooling: treat output verification as a first-class concern, not an afterthought.

Simon Willison's work on dual-LLM patterns is also worth reading if you haven't: https://simonwillison.net/2023/Apr/25/dual-llm-pattern/