frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Htdym (How to Deploy Your Model)

https://www.sailresearch.com/blog/htdym
1•simonpure•1m ago•0 comments

US Population Growth Atlas

https://countdown369.github.io/county-population-growth/
1•gmays•1m ago•0 comments

Simurg – free web search for your AI agents that aborts hallucinations

https://pypi.org/project/simurg/
1•lebagetdefrance•2m ago•0 comments

Will financing bottleneck AI compute? An Anthropic case study

https://epochai.substack.com/p/will-financing-bottleneck-ai-compute
1•gmays•5m ago•0 comments

The Dark Side of the Colonization of Palestine

https://medium.com/freedomofthought/the-dark-side-of-the-colonization-of-palestine-0e7bcfddab96
3•raynchad•6m ago•0 comments

Sandbox.watch: Agent Sandbox Comparison

https://sandbox.watch/
1•simonpure•6m ago•0 comments

From the Promised Land to the State of Israel

https://medium.com/freedomofthought/the-hebrews-the-jews-the-promised-land-the-state-of-israel-an...
2•raynchad•6m ago•0 comments

New Home Sales Decrease to 607,000 Annual Rate in July

https://calculatedrisk.substack.com/p/new-home-sales-decrease-to-607000
2•JumpCrisscross•7m ago•1 comments

Show HN: AI Agents for Osint/Sigint

https://www.makralabs.org/about
1•ritsource•7m ago•0 comments

$44M Solar-Powered EV Production Deal Struck

https://frequal.com/aptera/ProductionDealAug2026.html
5•TeaVMFan•9m ago•1 comments

Zero-Trust for Bloggers: Hardening Your Site Against AI-Driven Phishing Swarms

https://www.a1ho.com/2026/08/zero-trust-for-bloggers-hardening-your_9.html
2•alfotesr•9m ago•0 comments

You Probably Own This 7-Eleven (and That's Why It Looks So Sad)

https://www.thenewatlantis.com/publications/you-probably-own-this-7-eleven
1•JumpCrisscross•9m ago•0 comments

Tracexy – Trace the failure back to the app

https://rockxy.io/tracexy
1•jonbaer•9m ago•0 comments

Mammal ancestors gave live birth 90M yrs earlier than thought

https://www.livescience.com/animals/land-mammals/mammal-ancestors-may-have-given-live-birth-90-mi...
1•gmays•13m ago•0 comments

Universal International Freephone Number

https://www.itu.int:443/en/ITU-T/inr/unum/pages/uifn.aspx
1•yawndex•16m ago•0 comments

Learning to Draw Again with AI

https://surya.website/a-blog/learning-to-draw-again-with-ai
1•_doctor_love•17m ago•0 comments

American Airlines' Legendary Mechanic Passes Away at 100 After 80-Year Career

https://simpleflying.com/american-airlines-mechanic-passes-away-100-record-80-years/
3•NaOH•21m ago•2 comments

Maternity Care Deserts Across the U.S.

https://www.marchofdimes.org/maternity-care-deserts-report
1•toomuchtodo•21m ago•1 comments

Postscriptum on LLMs: pelicans on bicycles with a twist

https://danilo.segan.org/blog/llm/postscript-pelicans-on-bicycles
1•necovek•23m ago•0 comments

Recombinant shingles vaccination and the risk of cardiovascular events

https://www.nature.com/articles/s41591-026-04606-0
1•bookofjoe•23m ago•1 comments

Wikipedia Offline Reader for ESP32 CYD

https://github.com/alunmorris/Offline-Wikipedia-ESP32/tree/master
1•iamnothere•24m ago•0 comments

Show HN: We built semantic search over the GTA 6 Extended Look

https://twitter.com/trackernetwork/status/2093792050445799551
1•lwansbrough•25m ago•0 comments

Toast IDE Adds Command Palette

https://github.com/paradise-runner/toast/releases/tag/v0.9.0
1•dividedcomet•27m ago•0 comments

Some US cities have begun rewarding careful drivers with fewer red lights

https://apnews.com/article/rest-red-reward-drivers-portland-albuquerque-bcec5e0fe91dcaaaeb8f60e86...
3•geox•34m ago•0 comments

Modern Web Development

https://www.xclick-ltd.com/blog/modern-web-development-performance-seo
3•Bolice•39m ago•0 comments

Understanding Dyn Compatibility in Rust

https://corrode.dev/blog/dyn-compatibility/
1•blueshoess•41m ago•0 comments

Will it be Anthropic or X AI after Cursor getting no access to OpenAI?

https://www.cnbc.com/2026/08/29/openai-cursor-spacex-model-access.html
1•potatobox•43m ago•1 comments

What the dead can teach you about life

https://www.economist.com/culture/2026/08/25/what-the-dead-can-teach-you-about-life
1•Anon84•46m ago•0 comments

Does Computer Science Need Computers?

https://www.quantamagazine.org/does-computer-science-need-computers-20260828/
3•Anon84•49m ago•1 comments

The Exploitation of Grassroots Belief

https://www.bitchute.com/video/cROqUoWO9o5i/
2•untitledsource•51m 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.