frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Stumble – discover the web, one site at a time

https://stumbleupon.cc/
1•thunderbong•3m ago•0 comments

Commodore OS 3.1

https://forum.commodoreos.net/viewtopic.php?t=1300
1•doener•3m ago•0 comments

Ask HN: Is it feasible to run a model on device for complete privacy?

1•mazinz•3m ago•1 comments

How to use images in communication in general and on the Web in particular

https://jkorpela.fi/images.html
1•jruohonen•6m ago•0 comments

Dreamliner front gear collapses at FRA

https://www.dw.com/en/germany-lufthansa-plane-suffers-nose-gear-collapse/a-77423104
1•persedes•6m ago•1 comments

The Garden: A Meditation on Consciousness

https://gabor.monomo.io/garden
1•vajdagabor•6m ago•0 comments

Podman 6: machine usability improvements

https://blog.podman.io/2025/10/podman-6-machine-usability-improvements/
1•daesorin•7m ago•0 comments

Show HN: Converted my Gmail into an agent to work for itself

https://www.neatmail.app/
1•mafia15•7m ago•0 comments

Show HN: WibeOS, an OS where every app is hallucinated by an LLM

https://github.com/hansstam86/wibeos
1•hans863•10m ago•0 comments

sqlite: A CGo-free port of SQLite/SQLite3

https://gitlab.com/cznic/sqlite
1•tosh•15m ago•0 comments

Daughter of 2028 Olympics Chair Dreams of Competing in LA – For Israel

https://theintercept.com/2026/06/07/olympics-la-casey-wasserman-israel/
1•daesorin•17m ago•0 comments

AI Companies' Shared Destiny Recalls Dot-Com Bubble Memories

https://www.bullbear.ninja/board/10
3•oswarld•20m ago•0 comments

Floors, 1,240 rooms: largest Baltic Sea hotel opens – but there is a catch

https://www.euronews.com/travel/2026/06/07/13-floors-1240-rooms-largest-baltic-sea-hotel-opens-bu...
1•taubek•21m ago•0 comments

The EU tech sovereignty plan

https://hamishcampbell.com/the-eus-tech-sovereignty-plan/
3•birdculture•22m ago•0 comments

gonum

https://github.com/gonum
1•tosh•22m ago•0 comments

I built a front-end web app to replace Obsidian/Roam Research at work

https://cognir.netlify.app/user_guide.html
1•sailpvp998•27m ago•0 comments

To be smarter, try being crazier? (2014)

https://lemire.me/blog/2014/01/30/to-be-smarter-try-being-crazier/
1•jruohonen•28m ago•0 comments

15 Years of StarCraft II Balance Changes Visualized

https://github.com/stared/sc2-balance-timeline
1•stared•29m ago•0 comments

Coreutils for Windows

https://learn.microsoft.com/en-us/windows/core-utils/overview
2•nickysielicki•29m ago•0 comments

Christophe Pettus: Async I/O in PostgreSQL 19: The Year After

https://thebuild.com/blog/async-io-in-postgresql-19-the-year-after/
1•PaulHoule•29m ago•0 comments

Why Companies Are Replacing Traditional Interviews with AI Assessments

https://pressearn.it.com/blog/2026/06/02/how-ai-is-changing-job-interviews-in-2026/
1•Kaysource•29m ago•0 comments

Show HN: keep it simple. – a free focus timer for iPhone & iPad

https://apps.apple.com/us/app/keep-it-simple-focus-timer/id6766077920
1•dsemianovich•31m ago•1 comments

BoredOS: Three years of building an OS from scratch (And loving every minute)

https://blog.boreddev.nl/posts/boredos/
2•boreddevnl•31m ago•1 comments

Scientists Discover Hidden Symmetry on Earth That Nobody Can Explain

https://www.404media.co/scientists-discover-hidden-symmetry-on-earth-that-nobody-can-explain/
2•Brajeshwar•32m ago•0 comments

Robots Create more jobs than they Kill

https://julienreszka.com/blog/robots-create-more-jobs-than-they-kill/
2•julienreszka•33m ago•0 comments

Protect the Shire

https://wordpress.org/news/2026/06/pts/
1•taubek•33m ago•0 comments

A Request Becomes Memory

https://rayredington.substack.com/p/how-a-request-becomes-memory
1•Visheshrwl•34m ago•0 comments

The dark side of Japanese convenience stores

https://spectator.com/article/the-dark-side-of-japanese-convenience-stores/
1•Michelangelo11•34m ago•0 comments

"Terrorists?": The Suffragette Arson and Bombing Campaign – Egham Museum

https://eghammuseum.org/terrorists-the-suffragette-arson-and-bombing-campaign/
2•lifeisstillgood•39m ago•0 comments

Show HN: LimitPing – Keep Claude Code and Codex rate-limit windows continuous

https://github.com/wavever/CCLimitPing
1•wavever•41m 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.