frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Google Workspace Chat is down

https://www.google.com/appsstatus/dashboard/incidents/KZuQxLyBKvPD1zS6sxVA
1•yla92•1m ago•0 comments

A new week is here – and at ConnectApp.inc

1•tobinews•1m ago•0 comments

Posthog NPM packages are compromised

https://twitter.com/posthog/status/1992894777524674642
1•h1fra•3m ago•0 comments

Great SEO starts with clarity – we craft every Keyword Phrase with that purpose

https://youtu.be/Y7dKocYIZJQ?si
1•RIGHTSEODIGITAL•8m ago•0 comments

Differentiable max-SAT Solver for real world optimization problems

https://navokoj.shunyabar.foo/
2•stuehieyr•9m ago•0 comments

Norway's wealth tax trades millionaires for equality

https://www.reuters.com/business/norways-wealth-tax-trades-millionaires-equality-2025-11-24/
1•praptak•9m ago•0 comments

A fast EDN (Extensible Data Notation) reader written in C11 with SIMD boost

https://github.com/DotFox/edn.c
1•delaguardo•12m ago•0 comments

EU AI Act: Pre-Market Rules Don't Fit Runtime AI Agents

https://www.europeanlawblog.eu/pub/dq249o3c/release/1
1•lloydjones•12m ago•0 comments

Show HN: Flag Waver, create and simulate realistic waving flags online

https://flagwaver.org
1•star98•14m ago•0 comments

Show HN: EphemeralNet – Secure C++ P2P infrastructure for hostile networks

https://eph.shardian.com/
1•cpp_enjoyer•15m ago•1 comments

Community Appeal: Help Validate PhaseFlip QEC on Real Hardware

https://github.com/shemshallah/phaseflip-qec
1•shemshallah•16m ago•1 comments

Asianometry: Can Superconductors Put an AI Data Center into a Shoebox? [video]

https://www.youtube.com/watch?v=mfk0vTe46ds
1•Klaster_1•16m ago•0 comments

Supabase Is Down?

https://status.supabase.com
3•mercurialsolo•17m ago•3 comments

WIP – Version control for AI agents. Diffs, rollback, sandbox

https://twitter.com/_NilsJacobsen/status/1992890927778582868
2•NilsJacobsen•20m ago•0 comments

Show HN: Volume Shader – GPU Performance Test with 3D Visualization

https://volume-shader.com
2•star98•21m ago•0 comments

Libfive: Solid Modelling with Functional Representations

https://libfive.com/
1•fanf2•21m ago•0 comments

Show HN: Smart Router Kit – Prevent "Garbage in" for RAG Using Pydantic and LLMs

https://github.com/2dogsandanerd/smart-router-kit
1•2dogsanerd•22m ago•0 comments

Fifty Shades of OOP

https://lesleylai.info/en/fifty_shades_of_oop/
2•todsacerdoti•23m ago•0 comments

Now witness the power of this operational Fediverse

https://shkspr.mobi/blog/2025/11/now-witness-the-power-of-this-fully-operational-fediverse/
2•cheeaun•23m ago•0 comments

HD Photo Converter – Transform Every Image into High-Definition Quality

https://www.4kupscaler.com/tools/hd-photo-converter
1•aiwebwin2025•24m ago•1 comments

Top France Newspapers

https://world-newspapers.net/blog/top-france-newspapers
1•sm-techq•24m ago•0 comments

My Number One "Resource Not Found"

https://blog.jim-nielsen.com/2025/top-resource-not-found/
1•AIBytes•26m ago•0 comments

Supabase Is Down

https://x.com/search
3•wonderfuly•26m ago•2 comments

Designing RBAC for AI Agents

https://www.pylar.ai/blog/designing-rbac-for-ai-agents-complete-framework
1•Hoshang07•29m ago•0 comments

The PC Emulation Book

https://book.martypc.net/
1•muterad_murilax•29m ago•0 comments

Show HN: Banana AI: An AI-Powered Web Tool for Image Editing

https://banana-ai.work/
1•jumpdong•31m ago•0 comments

Show HN: Network Monitor – a GUI to spot anomalous connections on your Linux

1•grigio•33m ago•0 comments

New AI Infra Product cuts GPU costs for self-hosted enterprise LLMs by 50%

https://venturebeat.com/ai/scaleops-new-ai-infra-product-slashes-gpu-costs-for-self-hosted-enterp...
1•lauluzzzzz•33m ago•0 comments

Has Doge Been Disbanded?

https://www.theguardian.com/us-news/2025/nov/23/trump-musk-doge-reportedly-disbanded
1•4ndrewl•33m ago•0 comments

I (Still) Love Linux

https://it-notes.dragas.net/2025/11/24/why-i-still-love-linux/
2•todsacerdoti•35m ago•0 comments
Open in hackernews

Show HN: EphemeralNet – Secure C++ P2P infrastructure for hostile networks

https://eph.shardian.com/
1•cpp_enjoyer•15m ago

Comments

cpp_enjoyer•15m ago
Hi HN, OP here. I’m the creator of EphemeralNet.

I built this because I wanted to tackle two deeply annoying problems in distributed systems simultaneously: getting P2P traffic through aggressive corporate firewalls/CGNATs reliably, and guaranteeing that shared data actually expires across a mesh without central coordination.

It’s a standalone infrastructure daemon written from scratch in C++20 (no Boost, minimal dependencies).

Some technical details for those interested:

The NAT Problem: It uses standard STUN, but falls back to a custom, high-performance asynchronous relay server I built using Linux epoll and macOS kqueue edge-triggered notification. It’s designed to handle high-throughput spikes efficiently.

The Expiration Problem: It implements a modified Kademlia DHT where TTL (Time-To-Live) is a first-class constraint enforced cryptographically across the network. Nodes actively reject and purge expired records.

Security: Handshake involves a proof-of-work puzzle to mitigate Sybil attacks. Transport is encrypted using ChaCha20-Poly1305 with rotating session keys.

It’s currently v1.0.0. The docs and architecture diagram are at the link. I’d love to hear your feedback on the design choices, especially around the relay architecture.

Thanks!