frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Anthropic's best AI model struggles to attract users as cheaper tools thrive

https://www.ft.com/content/5ee49718-c258-4f01-aa32-7e5b76ae5245
1•merksittich•2m ago•0 comments

My Recent Visit to Anthropic

https://marginalrevolution.com/marginalrevolution/2026/08/my-recent-visit-to-anthropic.html
1•smitty1e•6m ago•0 comments

Randall Jarrell: Some Lines from Whitman

https://www.sas.upenn.edu/~perelman/classes/english088/rj_somelinesfromwhitman.html
1•firasd•9m ago•0 comments

Membership Fees Are Coming for Your Doctor's Office

https://slate.com/technology/2026/08/health-care-appointment-short-wait-solution-shortage.html
1•brandonb•11m ago•0 comments

Rust 1.98 got a P-critical miscompilation

https://github.com/rust-lang/rust/issues/161441
1•gdcbe•12m ago•0 comments

How Is AI Transforming Academic Search?

https://katinamagazine.org/content/article/resource-advisor/2026/how-is-ai-transforming-academic-...
1•jruohonen•14m ago•0 comments

Procura – Finance Manager

1•snitchiest•23m ago•0 comments

Land recovery of China's Zhuque-3 reusable rocket first stage completed [video]

https://www.youtube.com/watch?v=lRk0iKGRHGo
2•hggh•24m ago•0 comments

Fraud Is a Relationship Problem, Not a Data Volume Problem

https://memgraph.com/blog/fraud-is-a-relationship-problem
1•taubek•29m ago•0 comments

Tragically, as many as 9625 out of every 10k individuals may be neurotypical

https://erikengdahl.se/autism/isnt/
20•verisimi•36m ago•10 comments

The Last Generation of Mathematicians? [video]

https://www.youtube.com/watch?v=6uIJdXmB4vE
1•soupspaces•40m ago•1 comments

A 2026 Survey of Rust GUI Libraries

https://blog.wybxc.cc/blog/rust-gui-survey-2026/
2•birdculture•41m ago•0 comments

Principles of dependent type theory [pdf]

https://www.danielgratzer.com/papers/type-theory-book.pdf
2•fanf2•42m ago•0 comments

The Cool Things of Gleam

https://a.baez.link/3mtdbbp2dmc27
1•signa11•43m ago•0 comments

The lost airports of SimCity 3000 (2002)

https://web.archive.org/web/20021204030618/http://www.sc3000.com/knowledge/showarticle.cfm?id=091...
2•Lammy•45m ago•0 comments

Milky Way's fastest star orbits a black hole so close, it feels its spin

https://www.eso.org/public/news/eso2612/
1•thunderbong•45m ago•0 comments

Remindher

https://remindher.app/
1•adibenely•46m ago•0 comments

Space Sunshade

https://en.wikipedia.org/wiki/Space_sunshade
1•num42•47m ago•0 comments

Every Tech Bubble Obeyed the Same Rule. AI Is Next [video]

https://www.youtube.com/watch?v=KJxfSIvv920
1•mgh2•48m ago•0 comments

PureLiFi Debuts 10 Gbps "Connectivity DNA" and Bridges the 5G Gap

https://www.purelifi.com/purelifi-mwc-2026/
1•zeristor•50m ago•0 comments

Contextual News Search APIs: A Deep Comparison for AI, RAG, and Research

https://github.com/free-news-api/news-search-api-comparison
10•ermanos12•54m ago•0 comments

Nobody Explained the Schrödinger Equation Like This [video]

https://www.youtube.com/watch?v=X-q2eZVhff8
3•peter_d_sherman•54m ago•0 comments

VQL-Artifact.yaml

https://github.com/lexs201992-gif/Project-LION-Longcheer-Integrated-Overlay-Network-Virtualizaci-...
1•lexs201992-gif•1h ago•1 comments

Natural Number Game

https://adam.math.hhu.de/#/g/leanprover-community/nng4
1•it4rb•1h ago•0 comments

The next GitHub is not worth winning

https://davidpoblador.com/blog/the-next-github-is-not-worth-winning.html
1•serious_angel•1h ago•1 comments

Wiring up seven ESP32s to create a ~0.4B LLM

https://www.xda-developers.com/someone-wired-up-seven-esp32s-to-create-a-04b-llm-and-so-can-you/
4•epestr•1h ago•0 comments

Orelon – AI Video Generator for Cinematic Creation

https://orelon.ai/
1•duanhjlt•1h ago•0 comments

I built a tool to generate Cornell notes from YouTube videos

1•cristyg0101•1h ago•1 comments

Mojo by Example

https://ruhati.net/mojo/
3•ivell•1h ago•0 comments

Vale: Linter for Prose

https://github.com/vale-cli/vale
1•saikatsg•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.