frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Andurel V2 – Space-Grade Go Web Framework

https://andurel.com/docs/head/whats-new
1•mbvisti•58s ago•0 comments

The Harness Eats Everything

https://spock.is/writing/the-harness-eats-everything
1•BenediktHolm•4m ago•0 comments

Fragment of oldest known peace treaty found in Turkey

https://www.livescience.com/archaeology/ancient-egyptians/we-have-found-traces-of-peace-thousands...
2•gmays•6m ago•0 comments

AI messaging scam costs Italy's top bank Intesa millions, sources say

https://www.reuters.com/legal/government/ai-messaging-scam-costs-italys-top-bank-intesa-millions-...
1•gbocs•6m ago•0 comments

In an $80 Motel Room, a Discovery to Shed Light on the Origins of Life

https://www.nytimes.com/2026/09/26/science/motel-science-discovery.html
2•danso•10m ago•2 comments

Active speaker detection for deaf and hard-of-hearing

https://captivision.app/
1•trobifi•12m ago•0 comments

How do you compare religions?

https://plurilore.com
1•nickvicman•12m ago•0 comments

All you need is accessibility

https://maheepk.net/posts/accessibility/
1•technusm1•14m ago•0 comments

Show HN: AI agent running cost calculator (and when a SaaS platform is cheaper)

https://broutonlab.com/calculators/how-much-does-an-ai-agent-cost/
1•myurushkin•15m ago•0 comments

Who Killed Paulina Borsook's Career?

https://www.wired.com/story/paulina-borsook-profile/
2•danielmorozoff•16m ago•0 comments

Ask HN: In 3 months 4300 Dowloads but only 100 Stars, what I need to do?

2•Arshad-Talpur•19m ago•1 comments

AI and the Fall? Of the Creative Class

https://www.apricitas.io/p/ai-and-the-fall-of-the-creative-class
2•m-hodges•24m ago•0 comments

Shame and snobbery as American students blamed for St Andrews classism

https://www.theguardian.com/education/2026/sep/27/st-andrews-university-class-divide-american-stu...
2•jimnotgym•24m ago•0 comments

Cashing in on Dust

2•spottedmarley•25m ago•0 comments

>1B tokens/minute/GPU by combining query planner and inference engine

https://modal.com/blog/quail-billion-tpm
1•birdculture•28m ago•0 comments

Software occlusion culling in Block Game

https://enikofox.com/posts/software-rendered-occlusion-culling-in-block-game/
1•airhangerf15•33m ago•0 comments

'Gaming pays me double what I earned as a teacher'

https://www.bbc.com/news/articles/cwe8eje6zny7o
2•theanonymousone•35m ago•1 comments

A Vindication of Bjorn Lomborg

https://humanprogress.org/a-vindication-of-bjorn-lomborg/
1•mpweiher•35m ago•0 comments

New generation of Business analytics Intelligence

https://blunxai.com/
1•rima_667•35m ago•1 comments

Minecraft developer found dead in his home in Paraná, Brazil (portuguese)

https://www.correio24horas.com.br/brasil/desenvolvedor-dos-jogos-minecraft-batman-e-the-walking-d...
2•danielt3•36m ago•1 comments

My development setup. A pivot toward terminal and dotfiles

https://besok.github.io/posts/my-development-setup/
3•besok•37m ago•0 comments

Ask HN: How are you getting inference for personal projects?

1•variety8675•38m ago•2 comments

Maplibre-Gl-Lanes v1.0.0

https://nuxx.net/blog/2026/09/27/maplibre-gl-lanes-v1-0-0/
2•c0nsumer•38m ago•0 comments

Show HN: A deterministic tool-call gateway vs. prompt-injection classifiers

https://github.com/Yehielamor/provenance-gate/blob/main/posts/01-provenance-vs-detection.en.md
1•YehielAmor•39m ago•0 comments

Sourced tracker for Tasmania's proposed AI data centres

https://tasdatacentres.org/30min/
1•demodefib•41m ago•0 comments

Can a practitioner's judgment be shipped as a text file?

https://grace.training/
2•pvachon•42m ago•0 comments

Quantum computing's "dark horse" just proved it can go universal

https://www.sciencedaily.com/releases/2026/09/260924020403.htm
2•arto•42m ago•0 comments

Jev and the Return of AI/ML Engineering

https://leehanchung.github.io/blogs/2026/09/20/jev-return-ai-ml-engineering/
2•mustaphah•52m ago•0 comments

Ask HN: What task manager do you use? What do you miss on them?

1•KlyX•56m ago•1 comments

Colyseus – Real-Time Multiplayer Framework for Node.js

https://colyseus.io/
1•eustoria•56m 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.