frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Architecting on Cloudflare

https://architectingoncloudflare.com/
1•Lwrless•2m ago•0 comments

Show HN: Concord – Feature rich TUI for discord

https://github.com/chojs23/concord
2•jpellamo•2m ago•0 comments

The groundbreaking AI tool helping Victorian rangers protect native species

https://www.abc.net.au/news/2026-04-27/ai-helps-parks-victoria-manage-native-species-pests-after-...
1•aeonfox•4m ago•0 comments

UniPool: A Globally Shared Expert Pool for Mixture-of-Experts

https://arxiv.org/abs/2605.06665
1•danborn26•5m ago•0 comments

A History of IDEs at Google

https://laurent.le-brun.eu/blog/a-history-of-ides-at-google
1•laurentlb•10m ago•0 comments

Aids Creeps Back in Parts of Zambia, a Year After U.S. Cuts to HIV Assistance

https://www.nytimes.com/2026/04/25/health/pepfar-hiv-aids-zambia.html
1•susiecambria•10m ago•0 comments

Project Cybersyn: Chile's Radical Experiment in Cybernetic Socialism (2023)

https://thereader.mitpress.mit.edu/project-cybersyn-chiles-radical-experiment-in-cybernetic-socia...
1•pseudolus•16m ago•0 comments

The Audience Nobody Saw

https://fromthelittoral.substack.com/p/the-audience-nobody-saw
1•MrVandemar•18m ago•0 comments

Nvidia releases CUDA-Oxide 0.1 for experimental Rust-to-CUDA compiler

https://www.phoronix.com/news/NVIDIA-CUDA-Oxide-0.1
2•birdculture•21m ago•0 comments

Job

1•askb_coder•22m ago•0 comments

Musk vs. Altman week 2: OpenAI fires back, and Shivon Zilis reveals that Musk tr

https://www.technologyreview.com/2026/05/08/1137008/musk-v-altman-week-2-openai-fires-back-and-sh...
1•joozio•23m ago•0 comments

GpxFix – A tool to repair recordings of outdoor activities

https://www.gpxfix.eu/
1•taccp•25m ago•0 comments

LLMs are underutilized due to sub optimal management

https://alexzhang13.github.io/blog/2026/mgh/
1•melonmars•26m ago•0 comments

Show HN: DuoSolve – Daily grammer practice game

https://duobook.co/duosolve
1•celltalk•29m ago•0 comments

Vladimir Putin is losing his grip on Russia

https://www.economist.com/by-invitation/2026/05/06/vladimir-putin-is-losing-his-grip-on-russia
3•bazzmt•29m ago•3 comments

Practice reviewing risky AI-generated engineering output

https://www.proreview.dev/
1•shaad1337•31m ago•0 comments

Your Computer Doesn't Belong to You Anymore

https://aquisthoughts.substack.com/p/your-computer-doesnt-belong-to-you
3•ethanplant•34m ago•0 comments

Show HN: Memory Vault – local-first memory, hybrid search, knowledge graph

https://github.com/MihaiBuilds/memory-vault
1•mihaibuilds•38m ago•0 comments

Show HN: Aptmatic – a TUI for managing apt across a bunch of Debian boxes

https://crates.io/crates/aptmatic
1•growse•38m ago•0 comments

Kanvly – notes and boards with AI, now on iOS

https://kanvly.com
1•trotskomain•45m ago•0 comments

Lua as a practical "soft-bedrock" language

https://portal.mozz.us/gemini/zaibatsu.circumlunar.space/~solderpunk/gemlog/lua-as-a-practical-so...
3•karl42•49m ago•2 comments

Agentwerk: A minimal Rust crate for agentic apps

https://github.com/canvascomputing/agentwerk
1•schirrmacher•54m ago•0 comments

The Chiplet Illusion: New Moore's Law or the Most Expensive Cover-Up?

https://sourceryintel.com/reports/the-chiplet-illusion
1•freakynit•54m ago•0 comments

Show HN: Transformer Math Explorer

https://simonramstedt.com/tools/transformer/
3•rmst•56m ago•1 comments

Solar on canals reduces water evaporation by 70% and algae growth by 85%

https://www.pv-magazine.com/2026/05/04/solar-on-canals-reduces-water-evaporation-by-70-and-algae-...
4•ndr42•56m ago•1 comments

Free guided journaling during the Mental Health Awareness Month

https://journal.cubitoo.com/en
2•pawelkomarnicki•59m ago•1 comments

The Cost of Downsizing Social Security

https://www.newyorker.com/news/deep-state-diaries/the-real-cost-of-downsizing-social-security
2•littlexsparkee•1h ago•1 comments

Experimental Rust-to-CUDA Compiler

https://github.com/NVlabs/cuda-oxide
1•cgravill•1h ago•1 comments

Goodbye Slack

https://ano.chat
1•bill-cupid•1h ago•0 comments

The World Inside Neural Networks

https://www.goodfire.ai/research/the-world-inside-neural-networks
3•wsgeorge•1h 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.