frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

I built an on-device real-time translator that doesn't require hardware

https://apps.apple.com/us/app/caliptic-offline-translator/id6804074288
1•caliptictransla•1m ago•0 comments

I vibecoded a Desert Strike tribute in 20 min

1•joaootero•1m ago•0 comments

The Unicode Standard, Version 18.0

http://blog.unicode.org/2026/09/announcing-unicode-standard-version-180.html
1•jwilk•3m ago•0 comments

Magento analytics boosted using DuckDB engine and the same transactional MariaDB

https://mariadb.org/trying-duckdb-for-magento-analytics-an-experiment-with-one-million-orders/
1•drrtuy•4m ago•0 comments

66% of cordless mowers overstate runtime by an avg of 34% (Audit of 178 models)

https://winnowl.com/audits/battery-powered-lawn-mower-audit
1•modus73•4m ago•0 comments

TypeSafe AI debuts model for machines that plays Doom

https://www.theregister.com/ai-and-ml/2026/09/16/typesafe-ai-debuts-model-for-machines-that-plays...
1•itvision•5m ago•1 comments

Raycast Rugpull: Free Alternative to Raycast

https://github.com/abue-ammar/tinycast
1•behnamoh•7m ago•0 comments

Safely generating legal chess moves at 475M nodes/s

https://bamburac.com/blog/chess-engine/
1•metrofun•7m ago•0 comments

What's in a name? Giving Nebula hosts URLs

https://www.defined.net/blog/dns-for-nebula-hosts-using-the-api/
1•zoo23•7m ago•0 comments

Driftsort: An efficient, generic and robust stable sort implementation

https://github.com/Voultapher/sort-research-rs/blob/main/writeup/driftsort_introduction/text.md
1•drw•9m ago•0 comments

Show HN: A wall where only AI agents can write, one Oulipo rule a day

https://agent.milotche.com/en/
1•Milotche•14m ago•0 comments

Xiami Mimo 2.6 Live Training Dashboard

https://mimo.xiaomi.com/rl/
2•krackers•14m ago•0 comments

How do you take T. rex's temperature? These scientists did it

https://www.cbc.ca/news/science/t-rex-warmblooded-9.7346527
1•rdmuser•15m ago•1 comments

Ask HN: Where Are All the Sysadmins?

2•gtech1•15m ago•1 comments

Show HN: Halo 3's Guardian, playable in the browser, as my personal website

https://runboli.com
3•runshouse•15m ago•1 comments

MCP server that gives any agent a sandbox, browser and GitHub access

https://upstash.com/blog/turn-any-agent-into-a-code-factory-with-an-mcp
2•cahid_arda•16m ago•0 comments

Road Transport of Trapped Antiprotons

https://www.nature.com/articles/s41586-026-11019-z
1•sbulaev•17m ago•1 comments

Roosevelt Island's Futuristic Pneumatic Tube Trash System

https://www.untappedcities.com/inside-roosevelt-islands-futuristic-pneumatic-tube-trash-system/
2•speckx•17m ago•0 comments

Apple building M8 AI servers, talks with Nvidia, reports The Information

https://finance.yahoo.com/technology/ai/articles/apple-building-m8-ai-servers-134927360.html
2•bluedino•18m ago•0 comments

A web browser on an infinite canvas

https://marble.surf/
2•JMiao•19m ago•0 comments

Network science reveals structure, lasting impact of Roman road system

https://www.nature.com/articles/s41467-026-75453-3
2•bcaulfield•19m ago•0 comments

Nuclear Fusion's Moment of Truth

https://www.ft.com/content/ef511d46-a689-4868-9654-15b96a71586d
1•JumpCrisscross•21m ago•0 comments

CUDA Rust: Two Tracks for Writing GPU Kernels

https://developer.nvidia.com/blog/introducing-cuda-rust-two-tracks-for-writing-gpu-kernels/
1•thomasfromcdnjs•22m ago•0 comments

Bypassing inference bottlenecks: Accelerating complex AI search

https://research.google/blog/bypassing-inference-bottlenecks-accelerating-complex-ai-search-with-...
1•simonpure•23m ago•0 comments

Horace Dediu: The Dawn of Gestural Computing

https://asymco.com/2026/09/14/the-dawn-of-gestural-computing/
1•pixxa•26m ago•0 comments

Why Does the Universe Expand?

https://cosmicave.org/2026/09/15/why-does-the-universe-expand/
1•the__alchemist•27m ago•0 comments

Ask HN: Do you still use Sass for website development

2•akapaka•29m ago•0 comments

Did Wildfires Spark the Invention of Pottery?

https://nautil.us/did-wildfires-spark-the-invention-of-pottery-1285052
1•Brajeshwar•30m ago•0 comments

macOS 27 Golden Gate: The Ars Technica Review

https://arstechnica.com/gadgets/2026/09/macos-27-golden-gate-the-ars-technica-review/
2•Brajeshwar•30m ago•0 comments

The Mind-Bending Joyrides That Gave Rise to Tesla

https://spectrum.ieee.org/elon-musk-tesla
1•Brajeshwar•30m 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.