frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Paintings in a Different Style

https://www.experimentlog.com/blog/paintings-in-a-style-of-a-different-artist
1•iweczek•1m ago•1 comments

Demographic Profiles

https://visquill.com/gallery/world-demographics/
1•stared•1m ago•0 comments

Recreating the math behind the first stealth aircraft

https://www.pramit.gg/post/remaking-echo-1-stealth-physics
1•pmazumder•3m ago•0 comments

AttoChess, a complete, playable chess program for 16-bit x86 DOS in 278 bytes

https://nicholas-afk.github.io/AttoChess/
1•SeenNotHeard•4m ago•0 comments

Just Use Postgres for Job Queues

https://www.dbos.dev/blog/making-postgres-queues-scale
1•KraftyOne•6m ago•0 comments

Could China and Russia Destroy Starlink? Only with a Boomerang

https://arstechnica.com/space/2026/07/could-china-and-russia-really-destroy-starlink-only-with-a-...
2•kyrofa•6m ago•0 comments

Code Review Is Dead

https://www.jlchnc.com/essays/code-review-is-dead
1•pizzuh•8m ago•0 comments

The US army veteran and the mystery Boeings flying Sudan's war routes

https://www.reuters.com/investigations/us-contractor-mystery-boeings-operating-sudan-paramilitary...
2•Teever•8m ago•0 comments

A different approach to aim training for FPS games

https://www.pramit.gg/post/i-made-an-aim-trainer
2•pmazumder•8m ago•1 comments

An Elite NYC Public School Admitted 777 Students. Only 3 Were Black

https://www.nytimes.com/2026/07/14/nyregion/nyc-specialized-schools-black-hispanic.html
2•apparent•9m ago•3 comments

White House Teleprompter Operator Probed over Alleged Bets on Trump Speeches

https://www.wsj.com/politics/policy/white-house-teleprompter-operator-investigated-for-alleged-be...
3•qlte•10m ago•0 comments

Bootstrapping Trust: From Isolated Build Machines to Enclaved CI Pipelines

https://www.youtube.com/watch?v=V411Vadty38
1•benldrmn•10m ago•0 comments

Earth Is Dimming

https://www.economist.com/interactive/science-and-technology/2026/07/15/earth-is-dimming
1•Brajeshwar•11m ago•0 comments

Starship's Thirteenth Flight Test

https://www.spacex.com/launches/starship-flight-13
2•janpot•13m ago•0 comments

Scientists unravel the fast-moving 'butterfly effect' of the deep ocean

https://www.cam.ac.uk/research/news/scientists-unravel-the-fast-moving-butterfly-effect-of-the-de...
1•gmays•13m ago•0 comments

Hiring - Software Engineer (AI-Native WMS) Bilingual (ENG.KOR) Carson, CA

https://app.notion.com/p/wooltari/Software-Engineer-AI-native-WMS-372c2cf4d496805b8080c067d616183...
1•wooltarihr•15m ago•1 comments

ClickFix operator's blockchain C2 off the public ledger: 4 months, ~127 hosts

https://meltedinhex.com/posts/clickfix-errtraffic-blockchain-c2/
1•sdkhere•17m ago•0 comments

Kimi K3 full benchmarks and model details

1•benjiro29•17m ago•1 comments

Cyber Letters of Marque and Reprisal – Digital Privateers to Combat Cyber Crime

https://www.scribd.com/document/1062415707/Cyber-Letters-of-Marque-and-Reprisal
1•Vaslo•21m ago•0 comments

L3 Simulator: agent orchestrator over GH issues

https://github.com/czarandy/l3-simulator
1•czarandy•23m ago•0 comments

Google Gemini Launch Delayed as Tech Falls Short of Internal Goals

https://www.bloomberg.com/news/articles/2026-07-16/google-gemini-launch-delayed-as-tech-falls-sho...
9•mfiguiere•25m ago•2 comments

California authorizes its DMV to join a national ID database

https://papersplease.org/wp/2026/07/16/gov-newsom-signs-law-to-upload-california-data-to-national...
3•logickkk1•25m ago•0 comments

JD Vance: Jeffrey Epstein had clear connection to Mossad

https://www.ynetnews.com/article/sjyjztremg
3•root-parent•28m ago•1 comments

Airbus migrating 70 critical apps from AWS to France's Scaleway

https://www.theregister.com/paas-and-iaas/2026/07/16/airbus-migrating-70-critical-apps-from-aws-t...
4•rwmj•28m ago•1 comments

AI disruption in private credit: exposure to software firms in BDCs (BIS)

https://www.bis.org/publ/bisbull128.htm
1•aanet•28m ago•1 comments

NASA Dragonfly - a rotorcraft to explore Saturn's moon Titan

https://science.nasa.gov/mission/dragonfly/
2•thinkingemote•29m ago•0 comments

Connect more of your apps to Search

https://blog.google/products-and-platforms/products/search/connected-apps/
1•thm•29m ago•0 comments

Linus Torvalds rebukes anti-AI stances in the Linux kernel code review process

https://www.tomshardware.com/software/linux/linus-torvalds-rebukes-anti-ai-stances-in-the-linux-k...
3•vanburen•29m ago•0 comments

Nintendo Switch Joy-Con Removable Battery Replacement Procedure

https://www.nintendo.com/en-gb/Support/Troubleshooting/Battery-replacement/Joy-Con-L-HAC-015-01-B...
1•haunter•32m ago•0 comments

Please Stop Making Me Opt Out of AI

https://www.wired.com/story/please-stop-making-me-opt-out-of-ai/
3•Brajeshwar•32m 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.