frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Fil-C Linux/x86_64 version 0.680 Latest

https://github.com/pizlonator/fil-c/releases/tag/v0.680
1•sibellavia•1m ago•0 comments

Recursively Diff Packages

https://github.com/anthraxx/diffoscope
1•ankitg12•1m ago•0 comments

OCaml 5.5.0 Released

https://discuss.ocaml.org/t/ocaml-5-5-0-released/18265
2•dtoma•2m ago•0 comments

Run isolated sandboxes with full lifecycle control: AWS introduces MicroVMs

https://aws.amazon.com/blogs/aws/run-isolated-sandboxes-with-full-lifecycle-control-aws-lambda-in...
1•justincormack•3m ago•0 comments

I built a GPU back end for Emacs

https://en.andros.dev/blog/4b707a03/how-i-built-a-gpu-backend-for-emacs/
1•andros•4m ago•0 comments

Show HN: I built a PC-part picker that handles compatibility and shortages

https://pc-cool.com/
1•mesahm•5m ago•0 comments

Show HN: OpenTerm – A tiny, fast SSH client (no login, no cloud, free)

https://github.com/zhangshuo1991/openterm
1•zhangshuo1991•6m ago•0 comments

Sakana.ai releases a model competiting with Fable

https://sakana.ai/fugu-release/
1•LexSiga•6m ago•0 comments

A game where you're an OS and have to manage processes, memory and I/O events

https://github.com/plbrault/youre-the-os
1•exploraz•7m ago•0 comments

AI models capable of devastating attacks on governments and business months away

https://www.theguardian.com/technology/2026/jun/22/anthropic-claude-fable-ai-model-artificial-int...
1•eternalreturn•8m ago•0 comments

Reclassifying ARC as Historic – DKIM2 to solve the problem better

https://datatracker.ietf.org/doc/draft-ietf-dmarc-arc-to-historic/
1•peregrinus_13•8m ago•0 comments

NavigationServer2D in Godot: The Complete Guide

https://vav-labs.com/blog/navigationserver2d-godot-complete-guide/
1•Vav-Labs•8m ago•0 comments

Show HN: VibePantry – Photograph your kitchen, get recipes from what you have

https://vibepantry.com/
1•bigjick•9m ago•0 comments

In-App Avatar Integration

https://www.elias-schoko-shop.de/
1•eschwalme•11m ago•1 comments

standard.site

https://standard.site/
1•soheilpro•11m ago•0 comments

We found a bug in the hyper HTTP library

https://blog.cloudflare.com/hyper-bug/
1•soheilpro•12m ago•0 comments

Democratic Tech Alliance

https://democratic.technology/
1•doener•13m ago•0 comments

Hospitals switched to pen and paper to defeat a national cyber-attack

https://www.bbc.co.uk/news/articles/c4gyk756mzlo
2•mmarian•14m ago•0 comments

Show HN: Founder Pass – 6 indie dev tools lifetime for $14 (first 10 only)

https://xiaohou2503687-design.github.io/shipfast-oss/founder.html
1•shipfastcli•14m ago•0 comments

Metasearch: A self-hosted metasearch engine

https://github.com/tiagozip/metasearch
1•mrunix•18m ago•1 comments

Why AI Problems Are Becoming Philosophical Problems

https://kunyuan.substack.com/p/07concept-entrywhy-ai-problems-are
1•hufdr•19m ago•1 comments

ggsql 0.4.1: new release adds spatial plotting and in-layer aggregation

https://opensource.posit.co/blog/2026-06-23_ggsql_0_4_1/
2•thomasp85•19m ago•0 comments

Feedback on the logo for my programming language, Lopo

https://github.com/dominexmacedon-docs/lopo-docs/blob/main/lopo.png
1•dominex•22m ago•0 comments

Wlog: Claude Code token/cost/tool dashboard, single binary, no Grafana

https://github.com/openwong2kim/wlog
1•wong2kim•23m ago•0 comments

Watch me build out an 80s style BBS over SSH

2•buffer_overlord•27m ago•1 comments

A1 Road Collision Density Visualisation

https://visquill.com/gallery/uk-a1
1•zeristor•27m ago•0 comments

Show HN: Algorithm-free video hosting that doesn't recompress your master

https://longplayplatform.com/
1•longplay•27m ago•0 comments

The Startup Graveyard – what killed 16 startups

https://kasspian.com/graveyard
2•izhonline•28m ago•1 comments

Modellot – Plain language in, ODCS data contracts out (EU Data Act compliant)

https://www.modellot.com/
1•sasanin•30m ago•0 comments

Semantic Search in Under 3MB

https://blog.lukesalamone.com/posts/creating-tiny-semantic-search/
1•salamo•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.