frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: CRSS v0.1 – a primitive for sharing agent memory and behavior

https://gitlab.com/0xc4ff31n3/crss
1•zdilly007•1m ago•0 comments

Werner Herzog: Is Math Art?

https://news.artnet.com/art-world/werner-herzog-brooklyn-public-library-pi-day-2754957
2•anjel•2m ago•0 comments

Show HN: Generative Media Skills

https://github.com/awesome-genmedia/skills
1•eftalyurtseven•5m ago•0 comments

Music video remixes every iPhone sound effect in iOS 26

https://www.youtube.com/watch?v=lILn2Gi1tAA
1•Terretta•6m ago•0 comments

CodeCity: Turning a Codebase into a Skyline

https://verial.xyz/posts/codecity
1•husky8•8m ago•0 comments

Developer's Guide to AI Agent Protocols

https://developers.googleblog.com/developers-guide-to-ai-agent-protocols/
1•run2arun•9m ago•0 comments

The Three Pillars of JavaScript Bloat

https://43081j.com/2026/03/three-pillars-of-javascript-bloat
2•onlyspaceghost•10m ago•0 comments

Harvest – Science Fiction

https://thearchiveinbetween.substack.com/p/the-harvest
1•Njalldur•10m ago•0 comments

Jonathan Blow on the AI bubble and the dot-com boom

https://www.youtube.com/watch?v=FoQxiG36CJs
1•owenpalmer•10m ago•0 comments

Verquotrine – Short Story [pdf]

https://static1.squarespace.com/static/686d9fb49c4cda307c6a05e4/t/68b134adddc0cf4e1869bf32/175644...
1•maxall4•12m ago•0 comments

Standardizing Pure PQC

https://securitycryptographywhatever.com/2026/03/09/standardizing-pure-pqc/
1•fowl2•14m ago•0 comments

The Making of IA Notebook

https://ia.net/topics/paper-alchemy-the-making-of-ia-notebook
1•Brajeshwar•16m ago•0 comments

The truth that haunts the Ramones: 'They sold more T-shirts than records'

https://english.elpais.com/culture/2026-03-17/the-uncomfortable-truth-that-will-always-haunt-the-...
2•c420•16m ago•0 comments

Laptop Apple Ever Made

https://www.jeffgeerling.com/blog/2026/best-laptop-apple-ever-made/
1•Brajeshwar•16m ago•0 comments

Why Is Everyone Supposed to Die If Machines Can Think?

https://idiallo.com/blog/everyone-is-supposed-to-die-when-machines-can-think
1•Brajeshwar•17m ago•0 comments

Agent Control – agentic runtime guardrails

https://github.com/agentcontrol/agent-control
1•samgdf2•18m ago•1 comments

Kill Chain

https://artificialbureaucracy.substack.com/p/kill-chain
2•_delirium•23m ago•0 comments

What Happens with Open Source in the Age of AI?

https://turso.tech/blog/what-happens-with-oss-in-the-age-of-ai
1•cyndunlop•26m ago•0 comments

Show HN: AgentVerse – Open social network for AI agents (Mar 2026)

https://nickakre.github.io/agentverse-social/
1•nickakre•27m ago•0 comments

Hungary's Foreign Minister Briefed Russia on EU Meetings in Real Time

https://euromaidanpress.com/2026/03/21/hungarys-foreign-minister-briefed-lavrov-on-eu-meetings-in...
5•vrganj•27m ago•0 comments

Sam Altman Sister's Abuse Claims Against Him Dismissed for Now

https://www.bloomberg.com/news/articles/2026-03-21/sam-altman-sister-s-abuse-claims-against-him-d...
1•doener•27m ago•0 comments

Deploy model whose predictions most resemble the ensemble mean

https://github.com/finite-sample/stable_selection
1•neehao•29m ago•1 comments

Show HN: How I built a resume editor using AI with zero web dev experience

https://www.tailortojob.app/
1•KasparSoukup•32m ago•0 comments

When AI Writes the Software, Who Verifies It?

https://leodemoura.github.io/blog/2026-2-28-when-ai-writes-the-worlds-software-who-verifies-it/
2•vinhnx•34m ago•0 comments

Show HN: CI-debugger – Debug GitHub Actions locally with breakpoints

https://github.com/murataslan1/ci-debugger
1•murataslan•35m ago•1 comments

Refraktd – crowdsourced news bias ratings by article or outlet

https://refraktd.com
1•misterinfo•43m ago•1 comments

Screen Recorder – Free browser-based screen recording with zoom, blur, and cuts

https://screenrecorder.one
1•realfdi•47m ago•0 comments

Package Manager Mirroring – Andrew Nesbitt

https://nesbitt.io/2026/03/20/package-manager-mirroring.html
2•abdelhousni•50m ago•0 comments

The HTML Review 05

https://thehtml.review/05/
2•duck•51m ago•0 comments

Flow Matching and Diffusion Models – 2026 Version

https://diffusion.csail.mit.edu/2026/index.html
2•duck•51m ago•0 comments
Open in hackernews

Show HN: OpenEvolve – open-source implementation of DeepMind's AlphaEvolve

8•codelion•10mo ago
I've built an open-source implementation of Google DeepMind's AlphaEvolve system called OpenEvolve. It's an evolutionary coding agent that uses LLMs to discover and optimize algorithms through iterative evolution.

Try it out: https://github.com/codelion/openevolve

What is this?

OpenEvolve evolves entire codebases (not just single functions) by leveraging an ensemble of LLMs combined with automated evaluation. It follows the evolutionary approach described in the AlphaEvolve paper but is fully open source and configurable.

I built this because I wanted to experiment with evolutionary code generation and see if I could replicate DeepMind's results. The original system successfully improved Google's data centers and found new mathematical algorithms, but no implementation was released.

How it works:

The system has four main components that work together in an evolutionary loop:

1. Program Database: Stores programs and their metrics in a MAP-Elites inspired structure

2. Prompt Sampler: Creates context-rich prompts with past solutions

3. LLM Ensemble: Generates code modifications using multiple models

4. Evaluator Pool: Tests programs and provides feedback metrics

What you can do with it:

- Run existing examples to see evolution in action

- Define your own problems with custom evaluation functions

- Configure LLM backends (works with any OpenAI-compatible API)

- Use multiple LLMs in ensemble for better results

- Optimize algorithms with multiple objectives

Two examples I've replicated from the AlphaEvolve paper:

- Circle Packing: Evolved from simple geometric patterns to sophisticated mathematical optimization, reaching 99.97% of DeepMind's reported results (2.634 vs 2.635 sum of radii for n=26).

- Function Minimization: Transformed a random search into a complete simulated annealing algorithm with cooling schedules and adaptive step sizes.

Technical insights:

- Low latency LLMs are critical for rapid generation cycles

- Best results using Gemini-Flash-2.0-lite + Gemini-Flash-2.0 as the ensemble

- For the circle packing problem, Gemini-Flash-2.0 + Claude-Sonnet-3.7 performed best

- Cerebras AI's API provided the fastest inference speeds

- Two-phase approach (exploration then exploitation) worked best for complex problems

Getting started (takes < 2 minutes)

# Clone and install

git clone https://github.com/codelion/openevolve.git

cd openevolve

pip install -e .

# Run the function minimization example

python openevolve-run.py

examples/function_minimization/initial_program.py \

  examples/function_minimization/evaluator.py \

  --config examples/function_minimization/config.yaml \

  --iterations 50
All you need is Python 3.9+ and an API key for an LLM service. Configuration is done through simple YAML files.

I'll be around to answer questions and discuss!

Comments

codelion•10mo ago
I actually managed to replicate the new SOTA for circle packing in unit squares as found in the alphaevole paper - 2.635 for 26 circles in a unit square. Took about 800 iterations to find the best program which itself uses an optimisation phase and running it lead to the optimal packaging in one of its runs.
helsinki•10mo ago
How many tokens did it take to generate the 800 versions of the code?
codelion•10mo ago
Checked my openrouter stats, it took ~3M tokens but that involved quite a few runs of various experiments.