frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: OpenEHR-CLI – CLI and MCP server for working with openEHR artifacts

https://github.com/CaboLabs/openEHR-CLI
1•ppazos•1m ago•0 comments

Looking for testers for a location-based AI experiment

1•sharkgil•5m ago•0 comments

We're Training Students to Write Worse and to Use AI to Prove They're Not Robots

https://www.techdirt.com/2026/03/06/were-training-students-to-write-worse-to-prove-theyre-not-rob...
1•hn_acker•5m ago•1 comments

Show HN: We're on Women's Day Sale. Sign Up to Playtest Shop Crush

https://store.steampowered.com/app/2961120/Shop_Crush/
1•hollowlimb•5m ago•0 comments

Huawei PanguLM [pdf]

https://support.huaweicloud.com/intl/en-us/productdesc-pangulm/PanguLM%20Service_Service%20Overvi...
1•zlu•7m ago•0 comments

What's the deal with "age verification" and computers?

https://rudd-o.com/linux-and-free-software/what-is-going-on-with-age-verification-in-computers
1•Magnusmaster•8m ago•0 comments

Show HN: BottomUp- Translate Your Thoughts So AI Can Work For Your Neurotype

https://www.bottomuptool.com/
1•claythedesigner•9m ago•0 comments

SPA vs. Hypermedia: Real-World Performance Under Load

https://zweiundeins.gmbh/en/methodology/spa-vs-hypermedia-real-world-performance-under-load
1•todsacerdoti•10m ago•0 comments

Steve Jobs predicted "vibe coding" in 1997 [video]

https://twitter.com/musaabHQ/status/1582671928271118337
1•mba_lmh•10m ago•0 comments

Brain Computer Interfaces Are Now Giving Sight Back to the Blind

https://garryslist.org/posts/brain-computer-interfaces-are-now-giving-sight-back-to-the-blind
2•magoghm•11m ago•0 comments

Show HN: Hatice – Autonomous Issue Orchestration with Claude Code Agent SDK

https://github.com/mksglu/hatice/tree/main
1•mksglu2•11m ago•0 comments

Show HN: Free salary converter with 3,400 neighborhood comparisons in 182 cities

https://salary-converter.com/
2•jay7gr•12m ago•0 comments

The Quran's 950-Years of Noah Echoes the Ages of Kings in the Sumerian King List

https://mystudentfailedtheirmid.substack.com/p/if-muslims-accept-noahs-950-years
1•darkhorse13•14m ago•0 comments

More Is Different for Intelligence

https://fulcrumresearch.ai/2026/03/05/more-is-different-for-intelligence.html
2•etherio•15m ago•0 comments

What if CLIs exposed machine-readable contracts for AI agents?

https://github.com/sonde-sh/sonde
1•valentinprgnd•18m ago•1 comments

The Monk at the Cocktail Party

https://www.sebs.website/the-monk-at-the-cocktail-party
1•Incerto•18m ago•0 comments

Weather Report #1

https://at-news.leaflet.pub/3mgg7ie7tdk2o
2•Kye•18m ago•0 comments

A Million Simulated Seasons [video]

https://www.youtube.com/watch?v=Vv9wpQIGZDw
1•carlos-menezes•19m ago•0 comments

Incrementally parsing LLM Markdown streams on server/client

https://github.com/nimeshnayaju/markdown-parser
1•nayajunimesh•19m ago•1 comments

Show HN: Kula – Lightweight, self-contained Linux server monitoring tool

https://github.com/c0m4r/kula
2•c0m4r•19m ago•0 comments

Show HN: Cross-Claude MCP – Let multiple Claude instances talk to each other

https://github.com/rblank9/cross-claude-mcp
2•rblank9•20m ago•0 comments

Poll

2•consumer451•21m ago•1 comments

I'm 60 years old. Claude Code has ignited a passion again

7•shannoncc•22m ago•1 comments

SYNX – a config format that parses 67× faster than YAML, built for AI pipelines

https://github.com/kaiserrberg/synx-format
2•Kaiserrberg•22m ago•0 comments

All of this refugee case's filings should be online

https://www.lawdork.com/p/law-dork-objection-refugee-case
1•hn_acker•23m ago•1 comments

Plasma Bigscreen – 10-foot interface for KDE plasma

https://plasma-bigscreen.org
25•PaulHoule•28m ago•6 comments

GitHub appears to be hiding repo stars for signed-out users

3•ramoz•30m ago•1 comments

Garrett Langley of Flock Safety on building technology to solve crime

https://cheekypint.substack.com/p/garrett-langley-of-flock-safety-on
1•hhs•30m ago•0 comments

Kafka 101

https://highscalability.com/untitled-2/
1•medbar•31m ago•0 comments

Show HN: MCP server that finds dev tool credits in your workflow

1•janaksunil•32m ago•0 comments
Open in hackernews

Show HN: CloakPipe – Rust privacy proxy for LLM APIs with pseudonymization

2•rohansx•5h ago
CloakPipe is a small Rust proxy that sits between your application and any OpenAI-compatible API.

It detects sensitive entities in requests, replaces them with consistent pseudonyms, forwards the sanitized request to the LLM provider, then rehydrates the response before returning it to your app.

“Consistent” means the same input always maps to the same token (e.g. "Tata Motors" → "ORG_7"). This preserves semantic structure so embeddings and retrieval still work, while ensuring the API provider never sees the real entity values.

The motivation came from looking at typical RAG architectures. A standard pipeline leaks data in multiple places per query:

- Raw document text sent to embedding APIs - Embeddings stored in cloud vector databases (recent work like Zero2Text shows they can be inverted) - Query embeddings sent to providers - Retrieved context sent to LLM generation APIs

Existing approaches tend to fall into three buckets:

- Redaction ([REDACTED]) which destroys semantic meaning and breaks retrieval - NER-based detection pipelines that add significant latency - Stateless replacements that break vector search because tokens change between requests

CloakPipe tries to solve this by doing deterministic pseudonymization with a local mapping vault.

Some implementation details:

- Written in Rust as a single binary - <5ms overhead per request in testing - AES-256-GCM encrypted mapping vault with zeroize memory safety - OpenAI-compatible proxy endpoints (`/v1/chat/completions`, `/v1/embeddings`) - Streaming response rehydration (handles tokens split across SSE chunks) - Pattern detection for API keys, JWTs, emails, IPs, financial amounts, fiscal dates - Custom detection rules via TOML config

It's designed to be drop-in: point your client to the proxy by changing `OPENAI_BASE_URL`.

Repo: https://github.com/rohansx/cloakpipe