frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

The Founding Story Behind the House of Suntory

https://www.townandcountrymag.com/leisure/drinks/a71219491/japanese-whisky-house-of-suntory-histo...
1•NaOH•1m ago•0 comments

Ask HN: What's your experience with AI in hiring?

1•kathir05•2m ago•0 comments

Why Americans Dread AI

https://www.ft.com/content/637f5664-44eb-4527-8369-9eec320cfdf0
1•1vuio0pswjnm7•2m ago•0 comments

Show HN: NURL – A programming language designed for language models

https://nurl-lang.org/
1•Hindurable•3m ago•0 comments

AI versus Microservices

https://www.michaelnygard.com/blog/2026/05/ai-versus-microservices/
1•felipehummel•3m ago•0 comments

Show HN: Needle: We Distilled Gemini Tool Calling into a 26M Model

https://github.com/cactus-compute/needle
1•HenryNdubuaku•3m ago•0 comments

Redis and the Cost of Ambition

https://charlesleifer.com/blog/redis-and-the-cost-of-ambition/
1•cptmurphy•5m ago•0 comments

Show HN: Blober.io – The easiest way to transfer files between cloud providers

https://blober.io/
1•mckabue•5m ago•1 comments

Automated Grading: The Fairness, Reliability, and Validity of AI Grades

https://www.mdpi.com/1999-4893/19/5/346
1•PaulHoule•6m ago•0 comments

Kiln – a free app and open-source library to build better AI products

https://github.com/Kiln-AI/Kiln
1•debo_•7m ago•0 comments

Templ Beta Is Live. We Dare You to Steal Our Treasury

https://twitter.com/TemplFun/status/2054199653072076867
1•marcoworms•8m ago•0 comments

Prowl: Learning Through Discovery

https://odyssey.ml/introducing-prowl
1•olivercameron•8m ago•0 comments

Spotify confirms ongoing outage (2026)

https://twitter.com/spotifystatus/status/2054242542082822587
1•ArmandoAP•9m ago•0 comments

Show HN: OpenClaw OS – OSS Claude Cowork Built on Top of OpenClaw

https://github.com/thesysdev/openclaw-os
2•zahlekhan•10m ago•0 comments

SQL: Incorrect by Construction

https://chreke.com/posts/sql-incorrect-by-construction
2•ingve•10m ago•0 comments

New proj: Scorpi – a Docker-like VM development platform for macOS

https://fuse-t.org/scorpi/
1•concerned_ctzn•11m ago•1 comments

How the Blitz enhanced London's economy

https://blogs.lse.ac.uk/businessreview/2018/06/25/how-the-blitz-enhanced-londons-economy/
1•noleary•12m ago•0 comments

Quack: The DuckDB Client-Server Protocol

https://duckdb.org/2026/05/12/quack-remote-protocol
3•aduffy•12m ago•0 comments

The BeBox: BeOS Hardware, Photos, and the Apple Deal That Wasn't

https://www.jdhodges.com/blog/bebox-beautifully-overbuilt-computer/
1•speckx•13m ago•0 comments

Nvidia is buying the chip supply chain

https://www.msn.com/en-us/money/technologyinvesting/nvidia-is-buying-the-chip-supply-chain/ar-AA2...
2•petethomas•13m ago•0 comments

Julia Set

https://en.wikipedia.org/wiki/Julia_set
2•tosh•13m ago•0 comments

AI Use Is Breaking My Brain

https://www.404media.co/your-ai-use-is-breaking-my-brain/
1•Brajeshwar•13m ago•0 comments

Dead.letter (CVE-2026-45185) Humans vs. LLM for Unauthenticated RCE Race on Exim

https://xbow.com/blog/dead-letter-cve-2026-45185-xbow-found-rce-exim
5•fedek_•14m ago•1 comments

Aegis DQ – agentic data quality with LLM diagnosis

https://github.com/aegis-dq/aegis-dq
1•shiva_koreddi•16m ago•0 comments

Veridex– A P2P decentralized knowledge chain where verified truth gets tokenized

https://www.veridax.app/
1•omegastar•18m ago•0 comments

Cross-platform Rust: how WhatsApp, Signal etc. are shipping Rust to billions

https://kerkour.com/rust-cross-platform-apps
1•stmw•19m ago•0 comments

Spotify Is Down

https://xcancel.com/SpotifyStatus/status/2054242542082822587
1•therepanic•20m ago•0 comments

The Deathbed Notes of Henry James (1968)

https://www.theatlantic.com/past/docs/unbound/flashbks/james/jnote.htm
1•Hooke•22m ago•0 comments

Google Cloud and DigitalOcean Behaved Differently Under Repeated Deployments

https://webbynode.com/articles/repeated-deployments-google-cloud-vs-digitalocean
1•gsgreen•22m ago•0 comments

Strike Force Five Is and Always Will Be

https://www.youtube.com/watch?v=iU3PSAAgbrU
1•johnbarron•23m ago•0 comments
Open in hackernews

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

8•codelion•11mo 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•11mo 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•11mo ago
How many tokens did it take to generate the 800 versions of the code?
codelion•11mo ago
Checked my openrouter stats, it took ~3M tokens but that involved quite a few runs of various experiments.