frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Deterministic Concurrency [video]

https://www.youtube.com/watch?v=25x0UuSCKuU
2•surprisetalk•9m ago•0 comments

Buzz: Share spare compute and run open models together over P2P networks

https://www.iroh.computer/blog/buzz-agent-workspaces
2•surprisetalk•12m ago•0 comments

Show HN: A game about fake news and memes

https://unspin.app/
1•azermite•12m ago•0 comments

Local-First Conf Recap

https://www.inkandswitch.com/newsletter/dispatch-019/
2•surprisetalk•12m ago•0 comments

Arm and SoftBank: Part 1

https://thechipletter.substack.com/p/arm-and-softbank-part-1-masa-comes
2•chmaynard•15m ago•0 comments

Brazil Bans Online Betting

https://www.reuters.com/world/americas/brazils-lula-bans-online-betting-operations-reelection-rac...
6•bratao•15m ago•0 comments

U2 Celebrates 50th Anniversary

https://www.bbc.com/news/articles/cm9w4042yklko
1•doctor_radium•16m ago•0 comments

Show HN: KISS – A highly performant agent harness inspired off Pi built in Rust

https://github.com/racetozero/kiss
2•racetozero•18m ago•1 comments

Zambia Approved an HIV Drug in 12 Days

https://asteriskmag.com/issues/15/how-zambia-approved-an-hiv-drug-in-12-days
2•surprisetalk•20m ago•0 comments

S3 Is the Future, S3 Is the Past

https://btrblocks.com/blog/s3_is_the_future_and_the_past/
3•tkhattra•25m ago•0 comments

Nvidia 5090 DLSS 5 power hits 647W, power connector runs hotter than the GPU die

https://www.tomshardware.com/pc-components/gpus/nvidia-dlss-5-upscales-frame-rates-and-flame-temp...
1•GeekyBear•27m ago•0 comments

Primal Solver

https://github.com/c-vision/Primal
1•c-vision•36m ago•0 comments

It Got to My Field

https://4gravitons.com/2026/09/25/it-got-to-my-field/
1•Hbruz0•37m ago•0 comments

LeanAPI: API Servers for web applications written in Lean 4

https://github.com/theoriclabs/leanapi
2•hargup•37m ago•0 comments

Jev Plays Pokémon Red (LIVE): an AI decision model plays the whole game [video]

https://www.youtube.com/watch?v=1HMOA3BawXg
2•luispa•40m ago•0 comments

Bob Mackie dressed stars–if they were brave enough

https://www.economist.com/obituary/2026/09/24/bob-mackie-dressed-stars-if-they-were-brave-enough
1•andsoitis•42m ago•0 comments

Why house prices may be in trouble

https://www.economist.com/leaders/2026/09/24/why-house-prices-may-be-in-trouble
2•andsoitis•42m ago•2 comments

Luntrack – food, workouts and runs in one daily log

https://luntrack.com/
1•tmsswp•44m ago•0 comments

Hasarak – don't miss what's missing

https://hasarak.com/
1•vhgn•45m ago•0 comments

Solon – Docker on Windows Without Docker Desktop or WSL

https://github.com/v94lere/solon
4•v94lere•48m ago•0 comments

How does one keep up with exponential growth?

https://ezzeriesa.notion.site/How-does-one-keep-up-with-exponential-growth-3e61308b42048020bdfefc...
1•kurinikku•49m ago•0 comments

The Subtle Art of Advertising as Taught by Mad Men

https://www.teamlewis.com/magazine/mad-men-and-advertising/
2•ohjeez•49m ago•0 comments

Our Big Dumb AI Gods Are Wrong

https://news.massopen.ai/our-big-dumb-ai-gods-were-wrong/
2•johnmark•49m ago•1 comments

Automattic has a new board after failed attempt to put CEO on leave

https://techcrunch.com/2026/09/25/automattic-has-a-new-board-after-failed-attempt-to-put-ceo-on-l...
5•kevmarsden•53m ago•4 comments

Market making PnL theoretical limits

1•aleksisch•54m ago•0 comments

NEC building 1-petabit capacity subsea cable for Meta

https://www.japantimes.co.jp/business/2026/09/25/companies/nec-undersea-cable/
2•anigbrowl•54m ago•0 comments

X Club

https://en.wikipedia.org/wiki/X_Club
4•fschuett•1h ago•0 comments

OpenAI’s Systems Went Rogue and Meddled With U.S. Government Websites

https://www.nytimes.com/2026/09/25/technology/openais-ai-us-government-websites.html
6•jbegley•1h ago•2 comments

How to keep enjoying programming in a world of LLMs

https://discourse.haskell.org/t/how-to-keep-enjoying-programming-in-a-world-of-llms/14705
1•eatonphil•1h ago•0 comments

Ending procurement and forced use of paper straws (2025)

https://www.whitehouse.gov/presidential-actions/2025/02/ending-procurement-and-forced-use-of-pape...
3•electrum•1h 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.