frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Metamorphic Testing for Infrastructure-as-Code Engines [pdf]

https://programming-group.com/assets/pdf/papers/2026_Metamorphic-Testing-for-IaC-Engines.pdf
1•matt_d•3m ago•0 comments

Tripling an LLM's ARC-AGI-2 score with code evolution

https://imbue.com/research/2026-02-27-arc-agi-2-evolution/
2•danielmewes•4m ago•0 comments

AdaptiveCpp's new Metal backend to support CUDA dialect on Apple GPUs

https://github.com/AdaptiveCpp/AdaptiveCpp/pull/1983
2•puschkinfr•8m ago•0 comments

New 'Mars GPS' lets Perseverance pinpoint its location within 25 centimeters

https://phys.org/news/2026-02-mars-gps-perseverance-centimeters.html
1•PaulHoule•9m ago•1 comments

I turned down a $1M acquisition offer because I wanted to own what I built

https://useviralize.com
1•jcrosbz•11m ago•1 comments

Wolfenstein: Enemy Territory in emscripten, WS relay for online browser matches

https://et.klaussilveira.com
3•klaussilveira•11m ago•0 comments

Airbnb has a recruiting easter egg in its JavaScript output

https://www.airbnb.de/
1•datawars•12m ago•0 comments

OpenAI Fires an Employee for Prediction Market Insider Trading

https://www.wired.com/story/openai-fires-employee-insider-trading-polymarket-kalshi/
1•nadis•13m ago•0 comments

The LLM Sycophancy Antidote

https://photostructure.com/coding/sycophancy-antidote/
1•mceachen•14m ago•0 comments

Lessons from Building Claude Code: Seeing Like an Agent

https://twitter.com/trq212/status/2027463795355095314
1•nadis•14m ago•0 comments

Hyperion author Dan Simmons dies from stroke at 77

https://arstechnica.com/culture/2026/02/hyperion-author-dan-simmons-dies-from-stroke-at-77/
1•speckx•16m ago•0 comments

PicoClaw: Ultra-Efficient AI Assistant in Go

https://github.com/sipeed/picoclaw
1•xtracto•16m ago•0 comments

Forgiven – A Vim/Spacemacs terminal editor with native Copilot agent (Rust)

https://github.com/danebalia/forgiven
2•danebalia•17m ago•3 comments

Show HN: Goodfriendsbook.com Let's ask you, want opensourced to GitHub

1•gitprolinux•18m ago•1 comments

Lazard LCOE+ 2025 [pdf]

https://www.lazard.com/media/eijnqja3/lazards-lcoeplus-june-2025.pdf
1•toomuchtodo•18m ago•1 comments

Trump officials move to kill system that protects US from chemical disasters

https://www.theguardian.com/environment/2026/feb/27/trump-fire-chemical-safety-system-epa
4•mitchbob•19m ago•1 comments

NASA announces Artemis III mission no longer aims to send humans to moon

https://www.theguardian.com/science/2026/feb/27/nasa-changes-delays-moon-missions
3•bookofjoe•20m ago•3 comments

Why is getting a cheap prepaid SIM card in the USA so complicated?

1•huntsmans•22m ago•3 comments

Pure LLMs Score 0% on ARC-AGI-2. Why the Third Wave of AI Looks Like the First

https://ai.gopubby.com/neuro-symbolic-ai-arc-agi-alphaproof-third-wave-48177339d698
1•Aedelon•22m ago•0 comments

ByteDance Seed 2.0

https://seed.bytedance.com/en/blog/seed2-0-%E6%AD%A3%E5%BC%8F%E5%8F%91%E5%B8%83
1•kristianp•24m ago•0 comments

Our new frontier model: Ian

https://ian.ianmyjer.com/
1•enmyj•24m ago•0 comments

Warner Bros signs $110B deal with Paramount

https://www.reuters.com/sustainability/sustainable-finance-reporting/warner-bros-signs-110-billio...
4•Vitamin_Sushi•24m ago•2 comments

The Distillation Problem, It's Not a Cold War, It's Napster

https://www.stickybit.com.br/distillation-napster-en/
1•TiMagazine•25m ago•0 comments

Is This Waymo a Better Person Than You?

https://www.newyorker.com/humor/shouts-murmurs/is-this-waymo-a-better-person-than-you
1•mitchbob•25m ago•1 comments

Lasse Collin

https://liberapay.com/Larhzu/
1•pinkmuffinere•26m ago•0 comments

Ask HN: Apple locked me out of the developer program for a technical error

2•LoganDark•26m ago•0 comments

IronCurtain: A Personal AI Assistant Built Secure from the Ground Up

https://www.provos.org/p/ironcurtain-secure-personal-assistant/
1•jmort•26m ago•0 comments

Instant DB clones for AI agents

https://contextbits.com/
1•classx•28m ago•1 comments

Should everyone be taking statins?

https://www.worksinprogress.news/p/should-everyone-be-taking-statins
1•salonium_•28m ago•3 comments

Even with Coding Agents, You Still Can't Recreate StackOverflow in a Weekend

https://orischwartz.com/posts/even-with-fleet-of-coding-agents.html
3•fleaflicker•29m ago•0 comments
Open in hackernews

Show HN: NeuroSync – An experimental Python library for neural cryptography

https://github.com/CooDiiNgg/NeuroSync
1•TheDumb1•1h ago
Hi HN,

I built NeuroSync originally as a final year school project to explore Neural Cryptography. The main idea is the use of adversarial learning to train two NNs (Alice and Bob) to encrypt and decrypt data while a third one (Eve) is trying to break the cipher. While that isn't new I made it into a usable library with an interface that allows to easily switch parameters and experiment with them to help research in this field.

To make it functional, I implemented a hash-based correction system to ensure 100% decryption accuracy (bypassing the usual 0.2% probabilistic errors of neural synchronization), alongside packet sequencing and periodic key changes.

It is definitely still a work in progress, and the "Eve" (attacker) network currently needs a lot of work. But the first version is usable and the core communication protocol works.

I added a Jupyter Notebook in the repo so you can test the key exchange and encryption without setting anything up. I'm sharing this mostly to get your feedback, hear your ideas, and maybe find some folks interested in this field too.

Would love to hear your thoughts or critiques!

Comments

TheDumb1•1h ago
Here's the link to the notebook if you just want to quickly test it: https://colab.research.google.com/github/CooDiiNgg/NeuroSync...