frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Kelvin versioning

https://wiki.xxiivv.com/site/kelvin_versioning.html
1•manwithaplan•1m ago•1 comments

A multiplicity of tomorrows: Imagining 299 climate intervention futures

https://www.sciencedirect.com/science/article/pii/S1462901126000626
1•rbanffy•5m ago•0 comments

American Keiretsu: A World of Increasing Interconnectivity (2025)

https://www.lom.com/american-keiretsu-a-world-of-increasing-interconnectivity/
1•walterbell•5m ago•0 comments

A Pragmatic Beginner's Guide to Introducing AI to Your Engineering Workflow

https://jeffammons.com/2026/05/05/a-pragmatic-beginners-guide-to-introducing-ai-to-your-engineeri...
1•jammons•5m ago•0 comments

Interpolatable Archives

https://goodinternet.substack.com/p/on-interpolatable-archives-clean
1•walt74•6m ago•1 comments

Show HN: I built a screen recorder that captures console logs, requests and more

https://userplane.io/
1•wizenheimer•7m ago•0 comments

America is experiencing a productivity miracle

https://www.economist.com/finance-and-economics/2026/05/11/america-is-experiencing-a-productivity...
1•andsoitis•7m ago•0 comments

Collective climate geoengineering futures through technology foresight exercise

https://www.sciencedirect.com/science/article/pii/S2214629625004104
1•rbanffy•7m ago•0 comments

Prometheus and Christ

https://hommepresse.substack.com/p/prometheus-and-christ
1•paulpauper•8m ago•0 comments

Show HN: Aggregating votes from US Congress representatives

https://usvote.fyi/
1•readonkeyless•9m ago•0 comments

If you can't get a job today, it's your fault

https://auren.substack.com/p/if-you-cant-get-a-job-today-its-your
1•paulpauper•9m ago•0 comments

The progress against pancreatic cancer

https://www.worksinprogress.news/p/pancreatic-cancer-just-met-its-match
1•paulpauper•11m ago•0 comments

The US is betting on AI to catch insider trading in prediction markets

https://www.wired.com/story/polymarket-insider-trading-cftc-michael-selig-interview/
2•Cider9986•13m ago•0 comments

Show HN: Pockli – I needed a better iOS scanning app

https://pockli.com/
1•tsoswr•17m ago•0 comments

Observability SQL?

https://github.com/elyosemite/openwatchit
1•elyosemite•18m ago•0 comments

The scientists using electricity to assess the consistency and flavor of coffee

https://www.npr.org/2026/05/01/nx-s1-5798783/electric-food-science-coffee-flavor
2•gmays•20m ago•0 comments

Distance Marching for Generative Modeling

https://arxiv.org/abs/2602.02928
1•E-Reverance•24m ago•0 comments

Annota – A local-first, E2EE note app with BYOK AI

https://annota.online
2•SpyNinja•24m ago•2 comments

Spec Driven Development: short specs

https://www.youtube.com/watch?v=xLIsrusr3NQ
1•bullbash•24m ago•1 comments

Why is Charlie Stross's site named Antipope?

https://www.antipope.org/charlie/old/antipope.html
27•turadg•25m ago•10 comments

Forgejo is a self-hosted lightweight software forge

https://forgejo.org/
1•doener•26m ago•0 comments

Japan runs out of robot wolves in fight against bears

https://www.popsci.com/environment/japan-robot-wolf-army/
5•bookofjoe•30m ago•2 comments

The Fil-C Optimized Calling Convention

https://fil-c.org/calling_convention
2•pizlonator•31m ago•0 comments

LocalVibe – Pure-Rust local AI stack with MCP, in one binary (Apple Silicon)

https://github.com/Sok205/local_vibe
1•sok2054•33m ago•0 comments

The Windows Command Line and JP Software – A Brief History

https://jpsoft.com/blogs/news/the-windows-command-line-and-jp-software-a-brief-history.html
1•BruceEel•35m ago•0 comments

Inter-Dicasterial Commission on Artificial Intelligence

https://press.vatican.va/content/salastampa/en/bollettino/pubblico/2026/05/16/260516b.html
1•bombcar•35m ago•0 comments

Xi Jinping Was Only Humoring Trump

https://www.theatlantic.com/ideas/2026/05/trump-lame-duck-superpower/687189/
6•hebelehubele•37m ago•3 comments

ArXiv will ban submitters of AI-generated slop for one year

https://arstechnica.com/science/2026/05/preprint-server-arxiv-will-ban-submitters-of-ai-generated...
1•Lihh27•38m ago•1 comments

NextEra and Dominion in talks over tie-up to create $400B US utility giant

https://www.ft.com/content/37ba1609-ffa7-42ae-b63c-b2c628c584e1
2•JumpCrisscross•41m ago•0 comments

Sequence Points (2010)

https://susam.net/sequence-points.html
1•susam•42m ago•0 comments
Open in hackernews

Show HN: OpenEvolve – open-source implementation of DeepMind's AlphaEvolve

8•codelion•12mo 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•12mo 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•12mo ago
How many tokens did it take to generate the 800 versions of the code?
codelion•11mo ago
Checked my openrouter stats, it took ~3M tokens but that involved quite a few runs of various experiments.