frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Imperial Colors Manifesto

https://qum.cz/imperial_colors/
1•signa11•1m ago•0 comments

Show HN: Mu, two-minute visualized lessons on modern AI

https://mu.vizuara.ai/
1•sreedath•1m ago•0 comments

The U.N. backs a new world map showing Africa in its true relative size

https://www.npr.org/2026/09/04/nx-s1-5958611/africa-world-map-un-vote
1•croes•2m ago•0 comments

Show HN: RagLeap Core – 46 AI Employees, open-source LangChain alt

https://github.com/antonyrag/ragleap-core
1•antonyragleap•3m ago•0 comments

Microsoft says email spammers are adopting ASCII smuggling

https://arstechnica.com/security/2026/09/once-popular-for-attacking-ai-ascii-smuggling-is-embrace...
1•utiiiD•3m ago•0 comments

Show HN: map data onto a globe

https://github.com/atlaslib/globe
1•tosh•5m ago•0 comments

Show HN: Free macOS App to import photos from memory card with file naming rules

https://github.com/jianfenglin-git/photo-batch-importer
2•jianfenglin•6m ago•0 comments

Aerial Saw

https://en.wikipedia.org/wiki/Aerial_saw
1•js2•8m ago•1 comments

Show HN: Hitomaki, a memento mori measured in toilet paper rolls

https://ag3497120.github.io/hitomaki/
1•kofdai•17m ago•0 comments

El Niño Forecast to Be Strongest on Record

https://healthpolicy-watch.news/ongoing-el-nino-set-to-strongest-on-record-increasing-risks-of-ex...
1•geox•18m ago•0 comments

The Cogito – Keyboard designed for human hands

https://wattiv.nl/work/cogito/
1•TGHUvzPtTBFnxRo•20m ago•0 comments

Former Treasury Secretaries: AI is a risk of a different kind

https://www.washingtonpost.com/opinions/2026/09/03/ai-safety-security-risks-demand-new-government...
5•reasonableklout•21m ago•1 comments

Who runs the labor market? Women accounted for 98% of U.S. job gains in August

https://fortune.com/2026/09/04/jobs-report-september-women-162000-jobs/
4•littlexsparkee•21m ago•1 comments

Motivating Myself for Exercise by Arbitrarily Withholding Things I Desire

https://blog.klungo.no/2026/09/04/motivating-myself-for-exercise-by-arbitrarily-withholding-rewards/
1•danielskogly•23m ago•0 comments

Free Sewing Patterns

https://freesewing.eu/
2•gmargari•28m ago•0 comments

Could Anthropic have solved Navier–Stokes?

https://twitter.com/ElliotGlazer/status/2096076054133952516
1•marcelo-earth•29m ago•0 comments

An OS with two syscalls that runs COBOL on bare metal, no LLVM or GCC

https://github.com/AndreeSalazar/BMO-X
1•Salazar-X•34m ago•0 comments

Is AI ruining my brain?

https://thoughtbot.com/blog/is-ai-ruining-my-brain
2•signa11•34m ago•1 comments

Booz Allen Cyber Weapon Index

https://www.boozallen.com/insights/cyber/cyber-weapon-index.html
3•jonbaer•35m ago•0 comments

Why are European countries moving their gold out of North America?

https://www.bbc.com/news/articles/cvgyn8q8gqxo
48•ranit•35m ago•26 comments

LG and Samsung TVs are logging everything you say [video]

https://www.youtube.com/watch?v=w5KnFmKjFTA
3•someonebaggy•41m ago•0 comments

Cerebras CS-4: 30x Faster Than GPUs

https://www.cerebras.ai/blog/introducing-cerebras-cs-4
2•mgh2•42m ago•2 comments

Claude Fable 5.1 and Mythos 5.1: The System Card

https://thezvi.substack.com/p/claude-fable-51-and-mythos-51-the
1•paulpauper•46m ago•0 comments

Liechtenstein prince tightens grip in succession shake-up

https://www.ft.com/content/c25c1bdf-8acf-4ccc-bc67-c31bc9fb83bc
2•paulpauper•47m ago•0 comments

New Zealand is determined not to keep China's espionage a secret

https://www.lowyinstitute.org/the-interpreter/new-zealand-is-determined-not-to-keep-china-s-espio...
9•pir8life4me•55m ago•0 comments

Opinion: Religion Lowers Individual Morality

4•ReligionKills•55m ago•1 comments

Show HN: Mac Cleaner for devs

https://app.paymug.co/buy/lime-cleaner-mac
1•docuru•56m ago•1 comments

Show HN: PATM - A graphical database manager and developer toolbox

https://github.com/jamalhill12321-hash/patm
1•jamalhill•57m ago•1 comments

There's No Such Thing as an AI 'Lab'

https://www.theatlantic.com/technology/2026/09/stop-calling-ai-companies-labs/688528/
2•littlexsparkee•57m ago•0 comments

Cancer Capital: VC didn't use to work like this

https://www.anildash.com/2026/09/04/vc-didnt-use-to-work-like-this/
3•dotcoma•57m 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.