frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The AI industry is spending $10M against Alex Bores [video]

https://www.youtube.com/watch?v=Gj9vxVK4GEE
1•danuker•1m ago•0 comments

The Encyclopedia's Own Library

https://medium.com/regarding-wikipedia/the-encyclopedias-own-library-12f30899c8ae
1•JohnHammersley•2m ago•0 comments

Why Is Claude Turning into an a**Hole?

https://bramcohen.com/p/why-is-claude-turning-into-an-asshole
2•drob518•3m ago•0 comments

Iran threatens to attack Elon Musk's SpaceX and Starlink facilities

https://www.the-sun.com/news/16485781/iran-threatens-elon-musk-spacex-starlink-military-targets/
3•ivewonyoung•4m ago•0 comments

Is SMIC N+3's Metal Pitch Smaller Than Intel 18A's?

https://newsletter.semianalysis.com/p/steel-smic-n3-teardown
1•notahan•5m ago•0 comments

How are you feeling about the first Trillionaire?

https://trulytyped.com/post/BRCYJA
4•dwa3592•7m ago•3 comments

Linux 7.1

https://lkml.iu.edu/2606.1/13340.html
1•geoffbp•8m ago•0 comments

The Great Erase

https://www.neondystopia.com/?p=100043466
1•dangle1•12m ago•0 comments

Surpassing Frontier Performance with Fusion

https://openrouter.ai/blog/announcements/fusion-beats-frontier/
1•stared•15m ago•0 comments

For Retired Engineers

https://telescoper.blog/2026/06/14/for-retired-engineers/
1•mathgenius•18m ago•0 comments

Peace deal between US and Iran, Pakistan says, with Strait of Hormuz to re-open

https://www.theguardian.com/world/2026/jun/14/trump-calls-for-restraint-israel-airstrikes-beirut-...
2•srameshc•18m ago•0 comments

Bran flakes to be classed as junk food under new health plan

https://www.telegraph.co.uk/money/consumer-affairs/bran-flakes-to-be-classed-as-junk-food/
2•ivewonyoung•21m ago•0 comments

Making 'food out of thin air' (2024)

https://www.noemamag.com/making-food-out-of-thin-air/
2•muchweight•21m ago•0 comments

Windows 11 users are tired of MS account requirements creeping into everything

https://www.windowscentral.com/microsoft/windows-11/windows-11-users-are-tired-of-microsoft-accou...
5•josephcsible•24m ago•0 comments

The Magic Roundabout of Seattle Area

https://kirklandroundabouts.com
1•DenisM•25m ago•1 comments

Highly intelligent people are more likely to ditch old habits for better ideas

https://www.psypost.org/highly-intelligent-people-are-more-likely-to-ditch-old-habits-for-better-...
1•randycupertino•25m ago•2 comments

The Chinese parents dancing on live streams to help their children fight cancer

https://www.sixthtone.com/news/1018060
2•thisislife2•26m ago•0 comments

Zerostack v1.5 – A Unix-inspired coding agent written in pure Rust

https://crates.io/crates/zerostack/1.5.0#zerostack
1•gidellav•26m ago•0 comments

Lithos

https://lithosgraphein.com/
1•serhack_•27m ago•0 comments

Ask HN: Is anyone growing further from capitalism?

4•holistio•27m ago•4 comments

Risk of Portable Electronic Devices in Patients with Implanted Devices

https://www.ahajournals.org/doi/10.1161/CIRCEP.121.010646
2•bookofjoe•27m ago•1 comments

We Built a CLI That Gets Smarter Every Time You Use It

https://medium.com/@vektormemory/via-v0-4-0-we-built-a-cli-that-gets-smarter-every-time-you-use-i...
2•vektormemory•28m ago•0 comments

Scientists Identify 2 Distinct Subtypes of Autism in the Brain

https://www.sciencealert.com/scientists-identify-2-distinct-subtypes-of-autism-in-the-brain
3•andsoitis•29m ago•0 comments

8 Years of Refinement

https://alt-tab.app/changelog
2•behnamoh•31m ago•0 comments

Calculations Suggest It'll Be Impossible to Control a Super-Intelligent AI

https://www.sciencealert.com/calculations-suggest-itll-be-impossible-to-control-a-super-intellige...
1•andsoitis•31m ago•0 comments

Luddite

https://en.wikipedia.org/wiki/Luddite
3•d4ng•33m ago•1 comments

RFC 9396: OAuth 2.0 Rich Authorization Requests

https://ciamweekly.substack.com/p/rfc-9396-oauth-20-rich-authorization
1•mooreds•34m ago•0 comments

Show HN: V-COS – Governance layer that keeps AI coding agents coherent

https://github.com/vagnerfirminopro/v-cos
1•vagnerfirmino•34m ago•0 comments

A bitter lesson for medicine, or a benchmark problem?

https://sparsethought.com/2026/06/14/what-did-they-actually-measure/
1•galsapir•36m ago•0 comments

The Small-Business Owners Managing Whole Armies of A.I. Employees

https://www.nytimes.com/2026/06/04/magazine/ai-agents-openclaw-small-business.html
1•mooreds•36m 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.