frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Claude Project Downloader

https://chromewebstore.google.com/detail/claude-project-downloader/ghbdnpphggjonapjkehkmhpnmhcngbbg
1•qwikhost•4m ago•0 comments

Trump promises $5k dividend in convention speech, but only if Republicans win

https://www.npr.org/2026/09/09/nx-s1-5961045/republican-midterm-convention-dallas-trump-vance
3•KingOfMyRoom•7m ago•1 comments

The Network Always Beats the Castle

https://sundaylettersfromsam.substack.com/p/the-network-always-beats-the-castle
1•benwen•12m ago•1 comments

Anthropic Just Threatened to Kill Billions of People. This Is Not Okay

https://calnewport.com/anthropic-just-threatened-to-kill-billions-of-people-this-is-not-okay/
4•alexfortin•16m ago•0 comments

The AI policy window is open. We need to act

https://openai.com/index/ai-policy-window/
1•johntb86•17m ago•0 comments

Rebuilding an AI-made browser game with Astra 6

https://arcane-orb-workshop.pages.dev/
2•Spazztik•20m ago•0 comments

CLI for converting JSON logs to human-readable format

https://github.com/poonesnerfect/jlf
1•ankitg12•28m ago•0 comments

Sergey Brin is cooking up Google's AI destiny

https://www.businessinsider.com/sergey-brin-google-gemini-ai-microkitchen-2026-9
2•theanonymousone•28m ago•0 comments

Reverse engineering my e-scooter and rewriting the firmware in Rust

https://bensimms.moe/reverse-engineering-scooter/
1•vinhnx•31m ago•0 comments

Scammers demand ransoms from Instagram users over fake copyright claims

https://www.bbc.com/news/articles/cjw54ww73qjo
2•josephcsible•31m ago•0 comments

The "rnull" Rust block driver

https://lwn.net/Articles/1090378/
1•pykello•31m ago•0 comments

Switching Password Managers in 2026

https://rmondello.com/2026/09/07/switching-password-managers-2026/
1•vinhnx•34m ago•0 comments

A Decade of Rustls

https://rustls.dev/blog/2026-09-08-a-decade-of-rustls/
1•vinhnx•35m ago•0 comments

Garnet: A Next-Generation Cache-Store for Accelerating Applications and Services [pdf]

https://www.vldb.org/pvldb/vol19/p224-chandramouli.pdf
1•k_138z•35m ago•1 comments

Show HN: Oz – a Vim-style terminal editor written in Zig

https://github.com/niT-Tin/oz
2•niT-Tin•37m 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/
2•xiaoyu2006•37m ago•0 comments

NASA's New Experimental Jet Promises Supersonic Flight Without the Sonic Booms

https://nautil.us/nasas-new-experimental-jet-promises-supersonic-flight-without-the-sonic-booms-1...
1•dustfinger•37m ago•0 comments

Trump promises $5k payout to U.S. adults if Republicans win election

https://www.reuters.com/world/us/trump-promises-5000-payout-us-adults-if-republicans-win-election...
6•nateb2022•39m ago•1 comments

Fnmatch-ng: POSIX fnmatch in one Zig file, 20,794/20,794 vs. musl, zero heap

https://github.com/logicpl4gue/fnmatch-ng
1•logicpl4gue•40m ago•0 comments

The Story of VS Code [video]

https://www.youtube.com/watch?v=kHL3XzjpT5w
1•soheilpro•46m ago•0 comments

The Politics of Superintelligence (2025)

https://www.noemamag.com/the-politics-of-superintelligence/
2•the-mitr•54m ago•0 comments

Copying explains the collective behavior of AI agents in the wild

https://arxiv.org/abs/2609.09150
2•sbulaev•56m ago•0 comments

Suddenly I'm a Go Developer

https://www.infoworld.com/article/4219382/suddenly-im-a-go-developer.html
5•theanonymousone•56m ago•0 comments

Early Islam and the Birth of Capitalism

https://islamiceconomicsproject.com/early-islam-and-the-birth-of-capitalism/
2•teleforce•1h ago•0 comments

Andrew Tulloch has left Meta and joined Anthropic

https://twitter.com/ArfurGrok/status/2097862553552740846
1•bobrenjc93•1h ago•0 comments

The Prophet Mohammed's surprising life as a businessman [video]

https://www.youtube.com/watch?v=NkRHPEueW7Q
2•teleforce•1h ago•0 comments

Looped Transformers as Programmable Computers (2023)

https://arxiv.org/abs/2301.13196
3•peter_d_sherman•1h ago•1 comments

WSJ Why the Largest Megaproject Collapsed - NEOM, Saudi Arabia[video]

https://www.youtube.com/watch?v=GbB3vFfiaVU
1•thelastgallon•1h ago•0 comments

Open source FPGA: the next frontier is silicon

https://www.reddit.com/r/FPGA/comments/1wbrrgi/open_source_fpga_the_next_frontier_is_silicon/
2•random__duck•1h ago•1 comments

FlavorDB: A resource to explore flavor molecules

https://cosylab.iiitd.edu.in/flavordb/
2•thunderbong•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.