frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

LLM Transparency

https://github.com/st-tech/ppf-contact-solver/blob/main/articles/llm_transparency.md
1•hmokiguess•1m ago•0 comments

Distributing LLM Inference in DwarfStar

https://antirez.com/news/167
1•Brajeshwar•3m ago•0 comments

Michael Burry Warns Nvidia Stock Faces Aggressive Fall

https://letsdatascience.com/news/michael-burry-warns-nvidia-stock-faces-aggressive-fall-7bf40de2
1•mgh2•3m ago•0 comments

Show HN: I wrote a book that teaches writing for marketing from first principles

https://www.nair.sh/books/copywriting-after-ai
1•nilirl•3m ago•0 comments

Chinese Memory Flood Could Drop DRAM and SSD Prices

https://www.gadgetreview.com/chinese-memory-flood-could-finally-drop-dram-and-ssd-prices
1•mgh2•4m ago•0 comments

'BusPatrol' Put AI Cameras in School Buses

https://www.404media.co/buspatrol-put-ai-cameras-in-tens-of-thousands-of-school-buses-now-they-wa...
2•cdrnsf•4m ago•0 comments

USD by the Numbers

https://taylor.town/money-supply
1•surprisetalk•5m ago•0 comments

Show HN: Perga, an open-source daily planner with notes

https://demo.getperga.me
1•dimatiu•5m ago•0 comments

Why domain valuation metrics fail in agentic and voice-first environments

https://domainalot.substack.com/p/what-makes-a-premium-domain-in-2026
1•sonofmarzipan•6m ago•0 comments

The Average Guys Outsmarting Wall Street on Prediction Markets

https://www.nytimes.com/2026/05/26/magazine/polymarket-prediction-wall-street.html
1•uxhacker•6m ago•0 comments

A model upgrade is a release, not a setting

https://heavythoughtcloud.com/blog/a-model-upgrade-is-a-release-not-a-setting
1•ryan-s•8m ago•0 comments

Wave – A universal GPU instruction set architecture

https://github.com/Oabraham1/wave
2•oabraham1•8m ago•0 comments

Canada's Defence Industrial Strategy is a software procurement signal

https://northfleet.tech/field-notes/defence-industrial-strategy-software-procurement
1•occam65•9m ago•0 comments

De gustibus non est disputandum

https://en.wikipedia.org/wiki/De_gustibus_non_est_disputandum
1•tosh•12m ago•0 comments

AI Killed Stack Overflow (and why that sucks)

https://devcodehack.com/ai-killed-stack-overflow-and-heres-why-that-sucks/
1•par•12m ago•1 comments

Companies should pay the consumer, not the platform for ads, I'll explain

https://www.nexertise.com/founding
3•srulygotz•13m ago•3 comments

Simple Apps with Clojure, Htmx and Pipelines

https://rockyj-blogs.web.app/2026/05/26/clojure-htmx-pipeline.html
2•rockyj•13m ago•0 comments

AgentSeek – The Agent Registry That Only Shows You Verified, Monitored Endpoints

https://agentseek.co
2•rtsubber•13m ago•0 comments

ShowHN Mushku.com – A deterministic answer oracle with zero raw-text egress

https://mushku.com/
1•ninjra•13m ago•1 comments

AI-Powered Cyber Attacks in 2026: How Adversaries Are Evolving

https://www.pentesty.co/blog/ai-powered-cyber-attacks-2026
1•josanjohnata•16m ago•0 comments

U.S. AI Data Center Awareness and Issue Map

https://www.brockovichdatacenter.com/
2•onel•16m ago•0 comments

C64 Basic: Game Map Overhead "Camera View"

https://retrogamecoders.com/overhead-camera-view/
1•ibobev•17m ago•0 comments

Three Binary Tricks

https://buttondown.com/jaffray/archive/three-binary-tricks/
2•ibobev•18m ago•0 comments

Show HN: WYSIWYG markdown editor for any GitHub repo

https://dunkdown.com
1•ramoz•18m ago•0 comments

Walking the Dog with Claude

https://xania.org/202605/walking-the-dog
1•ibobev•18m ago•0 comments

Show HN: Raft in Rust

https://github.com/carterburn/ferris-ferry
1•carterburn•19m ago•0 comments

Switching to Colemak

https://pta2002.com/blog/colemak/
1•birdculture•19m ago•0 comments

Diagramming Program Values by Spatial Refinement

https://blog.brownplt.org/2026/05/22/spytial.html
1•surprisetalk•20m ago•0 comments

We picked a great day to launch our faster GitHub Actions runners

https://avrea.com
4•tmakijar•21m ago•0 comments

Show HN: Treats Human and AI the Same

https://github.com/haozeli2009/Hands-and-Claws
2•haozeli•21m 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.