frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Judge a book by its first pages

https://uncovered.ink
2•bookofjoe•2m ago•0 comments

Classic Amiga titles, free to download

https://amigafreeware.downer.tech/
1•doener•9m ago•0 comments

Next UK prime minister Andy Burnham drops digital ID scheme

https://www.reuters.com/world/uk/next-uk-prime-minister-andy-burnham-drops-digital-id-scheme-2026...
1•lemoncookiechip•10m ago•1 comments

World Cup France England 0:4 halftime

3•pm2222•12m ago•0 comments

Hardcore IndieWeb: Run your own website 100% independently for only $0.01/day

https://www.neatnik.net/hardcore-indieweb
2•cdrnsf•20m ago•0 comments

Fable 5 finds major bugs in 10 year old open source game networking libraries

https://www.patreon.com/MasBandwidth/posts/important-news-164199395
4•gafferongames•24m ago•0 comments

Pico W firmware creates driverless USB WiFi bridge (Layer-2)

https://www.cnx-software.com/2026/07/16/pico-usb-wifi-converts-the-raspberry-pi-pico-w-into-a-dri...
3•whiteblossom•25m ago•0 comments

Frontier and Center: Who evaluates the evaluations?

https://cloud.google.com/blog/products/data-analytics/evaluate-agent-performance/
2•gmays•27m ago•0 comments

What Makes a Volume Bootable?

https://eclecticlight.co/2026/07/18/what-makes-a-volume-bootable/
2•frizlab•33m ago•0 comments

Klong for the Web

https://tailrecursion.com/klong/
2•wooby•33m ago•0 comments

The Swiss Cheese model, pt. 1

https://unsung.aresluna.org/the-swiss-cheese-model-pt-1/
3•frizlab•35m ago•0 comments

UnifiedIR for Julia

https://github.com/JuliaLang/julia/pull/62334
2•vimarsh6739•36m ago•0 comments

Show HN: PKPass Inspector

https://www.getleal.com/tools/pkpass-inspector
2•rikkipitt•37m ago•0 comments

High-scale web apps in any language

https://velixir.net/
2•dbContext•37m ago•0 comments

Recause – complex interactive flows as ordinary functions over explicit state

https://recause.org/
2•Ruebennase•38m ago•0 comments

Andy Burnham to scrap digital ID in first major policy pledge

https://www.bbc.co.uk/news/articles/c5y08z25q8eo
4•Lio•39m ago•0 comments

Wp2shell (CVE-2026-63030): Pre-Auth RCE Chain in WordPress Core

https://fullhunt.io/blog/2026/07/17/wp2shell-wordpress-core-pre-auth-rce-cve-2026-63030.html
2•mazen160•41m ago•0 comments

Engineered Enzyme Reverses Age-Related Protein Damage

https://lifespan.io/engineered-enzyme-reverses-age-related-protein-damage/
2•littlexsparkee•42m ago•0 comments

AI for Bug Bounty with VulneraMCP

https://www.zaproxy.org/blog/2025-11-28-enhancing-zap-with-ai-for-bug-bounty-hunting/
2•Fermino•44m ago•0 comments

$20/Month: The Price Ceiling Every AI Company Copied

https://qainsights.com/20-month-the-price-ceiling-every-ai-company-copied/
2•qainsights•45m ago•0 comments

Neoclouds owe their customers years of compute

https://www.solvimon.com/blog/neoclouds-owe-customers-years-of-compute
3•arnon•47m ago•0 comments

Heaven's IT Guy – Design Complaints

https://www.youtube.com/watch?v=--Twuo6rgIE
1•quantummagic•50m ago•0 comments

I asked a psychiatrist I know about the effects of AI

https://teadrivendevelopment.substack.com/p/i-asked-a-psychiatrist-i-know-about
1•ghassenfaidi•53m ago•0 comments

Show HN: Graph Context Engine for Reliable AI

https://kritama.com
1•zacksiri•55m ago•0 comments

Yodel Extreme

https://music.apple.com/fr/album/yodel-extreme-single/6789486724
1•frizlab•55m ago•0 comments

Co-evolution of self-replication and function in a digital primordial soup

https://arxiv.org/abs/2607.09211
2•vicgalle_•56m ago•1 comments

SmartTAR – STAR 1.3.1

https://github.com/eco-by-different/smarttar-star
1•e_b_d•57m ago•1 comments

Microsoft cuts OneDrive support for older Windows 10 versions next month

https://www.theregister.com/os-platforms/2026/07/17/microsoft-cuts-onedrive-support-for-older-win...
2•Bender•58m ago•0 comments

Ada: An AI business intelligence software from CSV and Excel(yes LLMs but more)

https://github.com/saineshnakra/automated-data-analyst
2•saineshnakra•58m ago•0 comments

Al-Munaa for OpenAI Build Week

https://devpost.com/software/zeedos-self-hosted-autonomous-ai-operating-system
1•FARHANALMUTAIRI•58m 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.