frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Ducktel – observability when the consumer is an AI agent, not a human

https://github.com/davidgeorgehope/ducktel/blob/main/THESIS.MD
1•djhope99•1m ago•0 comments

Stop telling people to sanitize user input

https://unixdigest.com/articles/stop-telling-people-to-sanitize-user-input.html
1•speckx•1m ago•0 comments

A Crypto Coin Is Gobbling Up U.S. Treasuries

https://www.nytimes.com/2026/03/08/business/stablecoins-crypto-treasuries-risks.html
1•bookofjoe•2m ago•1 comments

AI Mythology Stories Generator

https://www.mythologystories.org
1•RyanMu•3m ago•0 comments

2.0.0-beta.1, or how I avoided working on my thesis

https://github.com/Sibyx/phpGPX/releases/tag/2.0.0-beta.1
1•Sibyx•3m ago•0 comments

What will the paper of the future look like?

https://i4replication.org/what-will-the-paper-of-the-future-look-like/
1•jprs•4m ago•0 comments

Coding My Handwriting

https://www.amygoodchild.com/blog/cursive-handwriting-in-javascript
1•bwoah•4m ago•0 comments

Owning Code in the Age of AI

https://blog.mozilla.ai/owning-code-in-the-age-of-ai/
1•hawernawer•5m ago•1 comments

Online age-verification in U.S. for child safety, but adults being surveilled

https://www.cnbc.com/2026/03/08/social-media-child-safety-internet-ai-surveillance.html
2•1vuio0pswjnm7•7m ago•0 comments

Anthropic sues Trump admin over supply-chain risk label

https://www.politico.com/news/2026/03/09/anthropic-sues-trump-admin-over-supply-chain-risk-label-...
4•johnny313•7m ago•1 comments

Show HN: Llmpm – NPM for LLMs

https://www.llmpm.co/
2•sarthaksaxena•7m ago•1 comments

Trump's Canada Trade War Hits Jack Daniel's and Jim Beam with 'Devastating' Loss

https://www.inc.com/leila-sheridan/trumps-canada-trade-war-hits-jack-daniels-and-jim-beam-with-a-...
2•dj_rock•7m ago•0 comments

Following AI generated reviews, Resident Evil AI guide books flood Amazon

https://frvr.com/blog/following-ai-generated-reviews-resident-evil-requiem-ai-guide-books-flood-a...
2•jsheard•7m ago•0 comments

2026 F1 Cars Are Shorter but Still Longer Than a Chevy Tahoe

https://www.thedrive.com/news/2026-f1-cars-are-shorter-but-still-longer-than-a-chevy-tahoe
1•PaulHoule•7m ago•0 comments

Muon on Graph Neural Networks

https://brunoalano.com/writing/muon-optimizer-gnns/
1•brunoalano•8m ago•1 comments

ZeniMax Files Trademark for Quake

https://trademarks.justia.com/996/80/quake-99680430.html
1•speckx•8m ago•0 comments

Why Are Viral Capsids Icosahedral?

https://press.asimov.com/articles/viral-capsids
1•mailyk•8m ago•0 comments

How to Recalculate a Spreadsheet (2020)

https://lord.io/spreadsheets/
1•azhenley•8m ago•0 comments

How do you track and optimize your AI API spend?

1•CostsentryAI•9m ago•0 comments

Show HN: Zenòdot – Find if a book has been translated into your language

https://www.zenodot.app/
2•AusiasTsel•11m ago•1 comments

NutriAI – AI nutrition and fitness planner

https://nutriai.si/
1•domaisi•12m ago•1 comments

Just Move to Europe

https://justmovetoeurope.com/
2•FinnKuhn•12m ago•0 comments

AI-powered I Ching oracle for reflective decision-making

https://oracle-answer-engine.lovable.app/
1•snowmei•13m ago•1 comments

AMD VP uses AI to create Radeon Linux userland driver in Python

https://www.tomshardware.com/pc-components/gpu-drivers/amd-vp-uses-ai-to-create-radeon-linux-user...
1•robtherobber•14m ago•0 comments

Why London Could Become "Agent Capital"

https://agent.capital
1•burnedchris•16m ago•0 comments

MediaVault: Secure Call Recording Storage for Contact Centers

https://www.mediavaultplus.com
1•janandonly•16m ago•0 comments

eBay – What's Ending Soon?

https://falkus.co/2026/03/ebay-bargains
1•speckx•16m ago•0 comments

Datahäxan

https://0dd.company/galleries/witches/7.html
2•akkartik•17m ago•0 comments

Show HN: League Donation – Comprehensive Fantasy Baseball Analytics Dashboard

https://leaguedonation.com/
1•iDrinan•18m ago•0 comments

Show HN: Robotics runtime in the browser (flight controller, WebAssembly)

https://cdn.copper-robotics.com/demo/flight-controller/index.html
3•gbin•19m ago•1 comments
Open in hackernews

Giving local LLMs read-only institutional memory before task execution

2•LavaDMan•2h ago
I run a three-tier agentic system: cloud LLM for architecture/review, local 32B model for code generation and execution, smaller models for evaluation. The local model (Qwen2.5-Coder 32B) kept making avoidable mistakes — suggesting approaches that had already failed, ignoring active project context, reinventing solutions we'd already discarded. The problem isn't capability. It's that each delegation is stateless. The local model gets a task string and nothing else. The fix: Before every local model call, run a parallel enrichment pipeline and inject the results into the system prompt. async def fetch_qdrant_hits(): # Embed the task, search execution_memory for similar prior operations # Returns: operation_type, outcome_score, last_action, result summary

async def fetch_active_mandates(): # Pull IN_PROGRESS and APPROVED work from Postgres

async def fetch_pending_horizon(): # Pull top PENDING items — awareness only, not authorization

qdrant_hits, mandates, horizon = await asyncio.gather( fetch_qdrant_hits(), fetch_active_mandates(), fetch_pending_horizon(), return_exceptions=True # enrichment failure never blocks execution ) The injected block looks like: --- INSTITUTIONAL MEMORY (read-only, do not modify):

Prior relevant operations: - [SECURITY] Score:9/10 | Action:detonate_package Result: PERC H710 Mini does not support JBOD/Non-RAID on iDRAC 7. Used single-drive RAID-0 as workaround.

Active mandates: - [Phase 15] R720xd Provisioning — APPROVED (priority 8)

Upcoming pipeline (awareness only — not yet authorized): - [priority 6] Visual & Strategy Audit — PENDING

CONSTRAINTS: Read this context to inform your work. You may NOT update mandates, write to memory, or modify fleet state. All outputs are returned as string payloads to the L3 Architect for review and commit. --- The hard constraint block matters. Without it, a capable local model will attempt to act on context it shouldn't touch. The read-only boundary is enforced in the prompt, not technically — but in practice it works because the model is explicitly told its role. Results so far: The hardware-specific mistake that prompted this (local model looping on invalid RAID commands for 20 minutes) wouldn't happen now — the correct workaround is in execution_memory and would surface on the next similar task. The open question: How do you prevent the context window from getting polluted over time as execution_memory grows? Right now using score_threshold=0.5 and limit=3 on the semantic search. Curious whether others have found better filtering strategies for long-running agentic systems. Code is self-hosted, stack is Qdrant + Postgres + Neo4j + Ollama. Happy to share more details on any piece.