frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

I open-sourced a small library for drawing SVGs progressively

https://www.npmjs.com/package/@penwell/draw-on
1•Pratiksingh067•2m ago•0 comments

I run a production AI app for €60 a month. Here is the actual bill.

https://tailstory-app.com/en/blog/what-production-ai-actually-costs
1•Mohsentr•3m ago•0 comments

Show HN: WebMCP Registry of Websites That Agents Can Use

https://www.wmcp.ai/
1•jusquan•3m ago•0 comments

Show HN: Groupicorn directory of IOP group therapy programs

2•cs1996•3m ago•0 comments

Ancient DNA reveals pervasive directional selection across West Eurasia

https://www.nature.com/articles/s41586-026-10358-1
1•gmays•4m ago•0 comments

Code similarity detection using Tree-sitter

https://github.com/dsummersl/treepeat
1•91awebsi•5m ago•1 comments

ES Archive – a new memory system for AI, running natively on Mac

https://github.com/apocryphx/ES-Archive
1•ApocryphX•6m ago•0 comments

Claude Opus 5.5: Intelligence, Performance and Price Analysis

https://artificialanalysis.ai/models/claude-opus-5-5
1•theanonymousone•7m ago•0 comments

Barbara Mazzolai Wants to Build a New Field of Robotics

https://spectrum.ieee.org/sustainability-robotics-barbara-mazzolai
1•SamuraiLion•7m ago•0 comments

Siri AI Settlement Website Now Live

https://www.macrumors.com/2026/09/20/siri-ai-settlement-website-now-live/
1•JumpCrisscross•8m ago•0 comments

Xeno-Interpretability: Investigating the Alien Minds of LLMs

https://arxiv.org/abs/2609.20408
1•potent_latent•8m ago•0 comments

Aging may be a program, not a breakdown

https://www.quantamagazine.org/why-aging-may-be-a-program-not-a-breakdown-20260814/
7•elo2000•10m ago•0 comments

We Rebuilt Jev's API on an Open Model and Used It to Play Doom

https://blocks.ai/blog/jev-open-model-doom
2•stephenblum•11m ago•1 comments

How do you best protect against copycats?

1•thereisnotry•11m ago•0 comments

Tables and Strings in COBOL - Big Data like it's 1985

https://www.datagubbe.se/cobtab/
1•rbanffy•12m ago•0 comments

Show HN: graf (1000x faster graphify in Rust)

https://github.com/ctxrs/graf
1•ripped_britches•12m ago•0 comments

GameStop shares up 30% since earnings; CEO, other board members disclose buys

https://finance.yahoo.com/markets/article/gamestop-stock-jumps-as-ceo-ryan-cohen-buys-26-million-...
1•frmersdog•13m ago•0 comments

Armenia on track to become one of leading hubs for US AI infrastructure

https://armenpress.am/en/article/1261009
1•melicerte•13m ago•1 comments

Apple Developing New Fitness Tracker Aimed at Rivaling Whoop

https://www.bloomberg.com/news/articles/2026-09-22/apple-is-developing-new-fitness-tracker-aimed-...
2•elo2000•14m ago•0 comments

A framework for frontier AI and the dawning of a new age

https://institute.deepmind.com/essays/a-framework-for-frontier-ai-and-the-dawning-of-a-new-age/
2•LyalinDotCom•14m ago•0 comments

Ask HN: Did your side projects ever become something big enough to sustain you?

2•learner_yearner•15m ago•1 comments

18-year-old thought she'd take a gap year. Instead, she joined the S.F. Symphony

https://www.sfchronicle.com/entertainment/classical/article/sf-symphony-starla-breshears-22362042...
1•TMWNN•15m ago•0 comments

OpenRouter Batch API: half-price inference by bundling requests

https://openrouter.ai/blog/announcements/batch-api/
1•porridgeraisin•17m ago•0 comments

'Coding Kids' by Natasha Singer: An Education for the Future That Hasn't Worked

https://www.wsj.com/arts-culture/books/coding-kids-review-an-education-for-the-future-af7fa2a6
1•theanonymousone•17m ago•0 comments

The most difficult daily word game

https://un-scrabbled.com
1•jakespider•17m ago•0 comments

ProudSend – cold outreach drafts that cite the line they came from

https://proudsend.com
1•heypetar•18m ago•0 comments

Show HN: I gave Jev my forum database so he could find the most relevant

https://forumbacklinks.org/demo/setup
1•bigmuzzy•18m ago•0 comments

Go-System-One: Jev-Like Results in Pure Go and SIMD/PTX

https://github.com/rcarmo/go-system-one
1•rcarmo•19m ago•1 comments

Benchmarks are more broken than we could have imagined

https://www.horizonanalyticslabs.com/research/public-benchmark-dataset-audit
3•chillacy•19m ago•1 comments

AI Is Not the End of the World

https://www.everythingisbullshit.blog/p/ai-is-not-the-end-of-the-world
1•swolpers•19m 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.