frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

There Aren't Enough Ships to Handle China's Booming Car Exports

https://www.wsj.com/business/logistics/there-arent-enough-ships-to-handle-chinas-booming-car-expo...
1•ericmay•23s ago•0 comments

Agentic Task Management

https://github.com/myaa2913/agentic-task-management/tree/main
1•mcorrito•2m ago•0 comments

YouTuber Davie504 slapped with ridiculous copyright claim [video]

https://www.youtube.com/watch?v=fIs2JNOUWeU
1•Panoramix•3m ago•0 comments

Show HN: Biasly.ai – Bias detection with historical context

https://biasly.ai/
1•jayubba1•3m ago•0 comments

Don't Wipe Your Phone at the Airport [video]

https://www.youtube.com/watch?v=_2rokxux5cU
1•rectang•5m ago•1 comments

Z.ai Security Disclosure

https://cvd.z.ai
3•Alifatisk•5m ago•0 comments

What You Gain by Building Your Own Game Engine

https://eliasfarhan.ch/gamedev/cpp/2026/08/14/srnative-01-why-a-custom-engine.html
1•kwakwa_cat•7m ago•0 comments

CAKE: Compiler-Agent Co-Design for Frontier Kernel Evolution

https://arxiv.org/abs/2608.12629
1•matt_d•7m ago•0 comments

Niteshift.dev – The full-stack cloud for coding agents

https://niteshift.dev
1•ishener•8m ago•0 comments

Memory failure predicted by attention lapsing and media multitasking

https://www.nature.com/articles/s41586-020-2870-z
1•u1hcw9nx•8m ago•0 comments

Jason Arday Found Dead

https://www.telegraph.co.uk/gift/9d2ca09b7c07688a
2•theanonymousone•8m ago•0 comments

The Mysterious Syndrome Destroying Endurance Athletes

https://www.outsideonline.com/health/training-performance/running-empty/
1•cwwc•8m ago•0 comments

Ontario Launches Data Centre Playbook

https://news.ontario.ca/en/release/1007871/ontario-launches-data-centre-playbook
1•ChrisArchitect•9m ago•0 comments

Trump administration cancels Biden-era power line construction efforts

https://thehill.com/policy/energy-environment/6028881-energy-dept-scraps-transmission-corridors/
1•gok•10m ago•0 comments

How to Get Rich in America

https://kyla.substack.com/p/how-to-get-rich-in-america
1•cwwc•10m ago•0 comments

How Claude's text watermarking works

https://www.anthropic.com/news/claude-text-watermark
1•surprisetalk•11m ago•0 comments

Agentic OT system for plant operations

https://app.valak.ai
1•mickymultani•12m ago•2 comments

Bluehouse: Ingesting a social network and getting the vibe

https://oleander.dev/bluehouse
1•phixMe•12m ago•0 comments

Tescreal

https://en.wikipedia.org/wiki/Main_Page
1•dgellow•13m ago•0 comments

Counting push-ups live with iOS: brightness, Apple pose, then an LSTM

https://www.bdywrk.app/blog/blind-at-the-bottom
1•studiobokehai•13m ago•0 comments

I know how to talk to God and Hear them, too

https://www.CosmicGovernmentsAmbassador.com/
1•Lbesecker195•13m ago•1 comments

Mama Saturn's Virtual Concert [video]

https://www.youtube.com/watch?v=i2XUrySbdUE
1•consumer451•15m ago•1 comments

High-Performance Array-Backed LRU Hash Table

https://github.com/adanil-code/LRUHashTable
2•adanil_•16m ago•0 comments

Data-eng-bench, Snowflake's data engineering benchmark for agents

https://github.com/Snowflake-Labs/data-eng-bench
1•marcociavarella•17m ago•0 comments

The Great Logistics Mosaic: Who Is Truly Constructing the US ECom Parcel Network

https://chinesellers.substack.com/p/the-great-logistics-mosaic-who-is
1•iamnothere•17m ago•0 comments

Demo for Parameter Sniffing and Memory Grant Feedback

https://marlonribunal.com/demo-for-parameter-sniffing-and-memory-grant-feedback/
1•MarlonPro•17m ago•0 comments

ActivityPub Won by Being Boring

https://o.ee/blog/activitypub-won-by-being-boring/
2•speckx•18m ago•2 comments

The Waldo Moment

https://en.wikipedia.org/wiki/The_Waldo_Moment
1•cs702•19m ago•0 comments

Ask HN: What are you building with Mojo lang?

1•maxchisto•19m ago•0 comments

Open WireGuard Endpoints

https://proxylity.com/articles/now-available-open-wireguard-endpoints-and-async-lambda.html
1•mlhpdx•21m ago•0 comments
Open in hackernews

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

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