frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Opinion polls see France's Le Pen winning 2027 election despite guilty verdict

https://www.reuters.com/world/europe/opinion-polls-see-frances-le-pen-winning-2027-election-despi...
1•melenchon•34s ago•0 comments

Voicebox: The Open-Source AI Voice Studio

https://github.com/jamiepine/voicebox
1•idleplant•2m ago•0 comments

Feasio – AI that gives brutally honest feasibility reports on business ideas

https://feasio.co/
2•alwgiles•3m ago•0 comments

An Update on the Scraper Situation

https://lwn.net/Articles/1080822/
1•aendruk•4m ago•0 comments

UK Online Safety Consultation: Giving users more choice control and trust online

https://www.ofcom.org.uk/online-safety/illegal-and-harmful-content/giving-users-more-choice-contr...
1•timthorn•5m ago•0 comments

The Weird Pattern of Japan Determining the World Cup Winners

https://old.reddit.com/r/worldcup/comments/1uprrsj/the_weird_pattern_of_japan_determining_the_world/
1•Anon84•5m ago•0 comments

Superoptimizer – A Look at the Smallest Program

https://dl.acm.org/doi/epdf/10.1145/36177.36194
1•linggen•5m ago•0 comments

A batch job, in The Elm Architecture

https://cekrem.github.io/posts/elm-run-batch-job/
1•linggen•5m ago•0 comments

DIY Mini Split Install: 3 Regrets After 1 Year of Use [video]

https://www.youtube.com/watch?v=5dCCntGj1wM
2•Bender•6m ago•0 comments

Sodas with a Doctorate

https://bsky.app/profile/tudorsandtms.bsky.social/post/3mpz7mfizyc24
2•Tomte•6m ago•0 comments

Waymo cars stranded on SF streets as 4th of July gridlock drains batteries

https://www.nbcnews.com/news/us-news/waymo-cars-stranded-san-francisco-streets-drain-batteries-rc...
2•bushwart•7m ago•0 comments

Show HN: A 100% branchless, CUDA-native AI guardrail kernel written in C++20

https://github.com/PJHkorea/value-system-kernel
1•PJHkorea•8m ago•1 comments

Japan's pension pivot puts Abe-era outpouring of capital in reverse

https://www.reuters.com/world/asia-pacific/takaichis-pension-pivot-seeks-reverse-abe-era-outpouri...
1•tartoran•8m ago•0 comments

Harness Handbook

https://ruhan-wang.github.io/Harness-Handbook/
1•handfuloflight•10m ago•0 comments

Amazon's New Debt Deal Puts Its AI Spending Story on Trial

https://www.marketbeat.com/articles/amazons-new-debt-deal-puts-its-ai-spending-story-on-trial/
1•smn1234•10m ago•0 comments

Burning the 3:40 AM Window

https://www.kevinlondon.com/2026/07/07/burning-the-3-40-am-window/
1•Kaedon•11m ago•0 comments

Engineering technique- Stop Drilling [video]

https://www.youtube.com/shorts/LG-qDttgQUE
1•lifeisstillgood•12m ago•0 comments

Christopher Nolan says younger audiences are utterly rejecting AI-generated slop

https://twitter.com/DiscussingFilm/status/2075611671243194588
3•amrrs•14m ago•1 comments

Why AI Is Collapsing: How China Is Winning [video]

https://www.youtube.com/watch?v=JXJf7vL8k94
1•Bender•17m ago•0 comments

Ask HN: What was the last task where only a frontier model could do it?

9•thedebuglife•19m ago•4 comments

Relax with Coax

https://coaxtheapp.com/
1•ndr42•19m ago•1 comments

Head to Head: Muse Spark 1.1 vs. DeepSeek-V4-Pro

https://runtimewire.com/article/head-to-head-muse-spark-1-1-vs-deepseek-v4-pro
1•ryanmerket•20m ago•0 comments

Filipino virtual assistants behind LinkedIn's "thought leadership" content mill

https://restofworld.org/2026/virtual-assistant-linkedin-engagement/
3•_tk_•22m ago•0 comments

Bluesky Names Toni Schneider CEO

https://bsky.social/about/blog/07-10-2026-toni-schneider-ceo
1•ilreb•23m ago•0 comments

Show HN: Willow Voice – Free AI Dictation

https://willowvoice.com/
1•LiuLawrence45•23m ago•0 comments

How to think about span of control

https://www.rubick.com/span-of-control/
1•sciurus•25m ago•0 comments

Typocalypse – A free online game I made

https://typocalypse.fun/
1•Aurelius101•27m ago•0 comments

War Atlas: An interactive cartography of every named war in human history

https://waratlas.org
3•NaOH•28m ago•0 comments

SpaceX wants to launch 100k more Starlink satellites – for 100x the bandwidth

https://www.zdnet.com/home-and-office/networking/spacex-wants-to-launch-100000-more-starlink-sate...
18•CrankyBear•29m ago•27 comments

Uiua - A tacit array programming language

https://www.uiua.org/
1•weinzierl•30m 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.