frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: One AI API for word-accurate transcription, translation, and export

https://www.transcripthq.io/
1•ssreenithin•19s ago•0 comments

Show HN: Quintel, a Rule-Discovery Game

https://eternaldawn.itch.io/quintel
1•MageOfTheEast•35s ago•0 comments

How to Help Santa Claus Concurrently

https://wyounas.github.io/puzzles/concurrency/2025/12/23/how-to-help-santa-claus-concurrently/
1•simplegeek•1m ago•0 comments

Line scan camera image processing

https://daniel.lawrence.lu/blog/2025-09-21-line-scan-camera-image-processing/
1•vasco•3m ago•0 comments

How we solved for Cloudflare and Azure outages

https://thesidedish.flipdish.com/flipdish-shipping-forecast-multiple-clouds-with-a-chance-of-seve...
1•flibble•4m ago•0 comments

Ingestr: CLI tool to copy data between any databases with a single command

https://github.com/bruin-data/ingestr
2•saikatsg•7m ago•0 comments

We invited a man into our home at Christmas and he stayed with us for 45 years

https://www.bbc.co.uk/news/articles/cdxwllqz1l0o
5•rajeshrajappan•11m ago•0 comments

Agent-Skills-for-Context-Engineering

https://github.com/muratcankoylan/Agent-Skills-for-Context-Engineering
2•kim0•11m ago•0 comments

Good Morning to Those at Work

2•sandworm101•19m ago•0 comments

Extreme Ironing

https://en.wikipedia.org/wiki/Extreme_ironing
1•m4khno•20m ago•0 comments

Reflections on building internal tools after AI changed the workflow

1•kinj28•24m ago•0 comments

Indian rocket launches record-breaking BlueBird 6 smartphone satellite to orbit

https://www.space.com/space-exploration/launches-spacecraft/indian-rocket-launch-bluebird-6-satel...
1•saikatsg•28m ago•0 comments

Download Python Today

https://files.catbox.moe/taze7f.jpg
1•lihaciudaniel2•31m ago•0 comments

Contributing to Debezium: Fixing Logical Replication at Scale

https://engineering.zalando.com/posts/2025/12/contributing-to-debezium.html
1•saikatsg•32m ago•0 comments

Best practices for long-run LED strip installs (20–50M) to avoid flicker?

1•emmasuntech•34m ago•0 comments

Gluetun v3.41.0 Release – The Ranting Section

https://www.youtube.com/watch?v=SSkGpys40ck
1•FeelingGood•36m ago•0 comments

Prompts.chat: the social platform for AI prompts

https://prompts.chat
1•fka•39m ago•0 comments

Cursor UI is built with SolidJS

https://old.reddit.com/r/solidjs/comments/1puoifc/cursor_ui_is_built_with_solidjs/
2•itayadler•39m ago•0 comments

Show HN: FailCore – Execution-Time Safety Runtime for AI Agents

https://github.com/Zi-Ling/failcore
1•IntelliAvatar•41m ago•1 comments

Show HN: Awkward 90s Christmas Studio Portrait

https://picxstudio.com/templates/298-awkward-90s-christmas-studio-portrait
1•Yash16•43m ago•0 comments

Show HN: Measuring the "Mom-induced" insulin resistance this Christmas

https://www.longevity-tools.com/glucose-metabolism-interpreter
1•zsolt224•44m ago•0 comments

Show HN: Browser Based IDE for Love2D

https://github.com/Charmunks/loveweb
4•Charmunk•44m ago•0 comments

Christmas and Kim Jong-suk's birthday

https://www.cartographerstale.com/p/christmas-and-kim-jong-suks-birthday
1•Milhaud•45m ago•0 comments

Star Wars Vader vs. Kenobi, Reimagined

https://www.youtube.com/watch?v=to2SMng4u1k
2•fanf2•1h ago•0 comments

Why 'The Global Market' Is an Irresponsible Phrase

https://oswarld.com/eng/insight/251117_Why-the-global-market-Is-an-Irresponsible-Phrase
8•haebom•1h ago•3 comments

Show HN: Pepterm – view protein structures in your terminal (Rust)

https://crates.io/crates/pepterm
1•ss-13•1h ago•0 comments

Ruby Turns 30 Celebrating the Anniversary with the Release of Ruby 4.0

https://blog.jetbrains.com/ruby/2025/12/ruby-turns-30-a-celebration-of-code-community-and-creativ...
2•pogrebnoy•1h ago•0 comments

Sitemap Valid but "Couldn't Fetch" in GSC

1•rb_sys•1h ago•0 comments

In Search of Scrooge's Door Knocker

https://londonist.com/london/christmas-in-london/where-is-scrooges-door-knocker
2•zeristor•1h ago•0 comments

Ask HN: Did any projects succeed with crowdfunding?

2•asim•1h ago•0 comments
Open in hackernews

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

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