frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

The YOLO Remand Shows Why the 9th Circuit Should Stop Carving Up Section 230

https://blog.ericgoldman.org/archives/2026/05/the-yolo-remand-shows-why-the-9th-circuit-should-st...
1•hn_acker•24s ago•1 comments

BBEdit 16 Is Here

https://www.barebones.com/products/bbedit/bbedit16.html
4•qaz_plm•3m ago•0 comments

Remembering Cleve Moler

https://www.mathworks.com/company/aboutus/founders/clevemoler.html
1•albertpub•3m ago•0 comments

SpaceX IPO Prospectus

https://www.sec.gov/Archives/edgar/data/1181412/000162828026036936/spaceexplorationtechnologi.htm...
1•HarHarVeryFunny•4m ago•0 comments

Shopping Isn't Politics

https://pluralistic.net/2026/05/21/purity-culture/
1•hn_acker•4m ago•1 comments

Hydrogen Jukeboxes

https://www.tumblr.com/nostalgebraist/778041178124926976/hydrogen-jukeboxes
1•bananaflag•6m ago•0 comments

Peak unemployment for a software engineer. What did I do wrong?

1•aliamer99•7m ago•0 comments

Postgres Is All You Need for Durable Execution

https://www.dbos.dev/blog/postgres-is-all-you-need-for-durable-execution
1•KraftyOne•8m ago•0 comments

Is disabling SIP for Yabai risky?

1•markosn•8m ago•0 comments

"No REST for Cap'n Web" – Kenton Varda at Node Congress 2026

https://www.youtube.com/watch?v=6ExqctHGuVw
1•jazzypants•9m ago•0 comments

I'm Using Telegram to Manage and Automate My Website

https://www.pootlepress.com/2026/05/im-using-telegram-to-manage-and-automate-my-website/
1•speckx•9m ago•0 comments

Wealth, Shown to Scale

https://eattherichtextformat.github.io/1-pixel-wealth/
2•LostMyLogin•10m ago•0 comments

ByteDance Open-Sources Lance, a 3B Multimodal Model for Images and Video

https://firethering.com/bytedance-open-source-lance-3b-multimodal-model/
2•steveharing1•13m ago•0 comments

ExtendDB – DynamoDB API compatible adapter for Posgresql

https://aws.amazon.com/blogs/database/introducing-extenddb-an-open-source-dynamodb-compatible-ada...
2•ke4qqq•16m ago•0 comments

LLMs give us a way to factorize intelligence

https://ankitmaloo.com/intelligence/
1•ankit219•16m ago•0 comments

Installing Alpine Linux 3.23 [video]

https://www.youtube.com/watch?v=M09d6pqXQfo
1•Babkock•18m ago•0 comments

Show HN: I just built a scanned PDF text extractor for public PDFs (1-300 page)

https://readplace.com/view
1•fagnerbrack•18m ago•1 comments

Where are all the UK red telephone kiosks?

https://www.thek6project.co.uk/
2•Kaibeezy•20m ago•0 comments

Getting an old Computer online with Android Ethernet tethering

https://82mhz.net/posts/2026/05/getting-an-old-computer-online-with-android-ethernet-tethering/
1•speckx•20m ago•0 comments

Filorithm – Expressive File and Folder Management in Python

https://github.com/ghetea-patrick/filorithm
1•patrick-ghetea•21m ago•0 comments

Cognir – A Philosophy First

https://cognir.netlify.app/
1•sailpvp998•23m ago•0 comments

From Open Source Software to Open Source Strategy

https://nonogra.ph/from-open-source-software-to-open-source-strategy-05-21-2026
2•382hi•23m ago•0 comments

Photovoltaic

https://joeyh.name/offgrid/photovoltaic/
1•edward•25m ago•0 comments

Google, Meta, TikTok hit by EU consumer complaints about financial scams

https://www.reuters.com/legal/litigation/google-meta-tiktok-face-eu-consumer-complaints-about-han...
3•1vuio0pswjnm7•25m ago•0 comments

Google offers free full-stack app creation and publishing

https://cloud.google.com/blog/products/databases/vibe-coded-ai-studio-apps-with-firestore-firebas...
5•sohansm•25m ago•0 comments

Show HN: Osint Arena – GeoGuessr for OSINT

https://osintarena.com/
1•jeffery123•26m ago•0 comments

After Automation

https://every.to/p/after-automation
2•xenophon•26m ago•0 comments

Show HN: I built a Printify wrapper to support a ministry

https://shop.twowitnessproject.org/
1•roramigator•26m ago•0 comments

Amazon, Facebook, FBI have access to a private intelligence-sharing network

https://prismreports.org/2026/05/20/seattle-shield-private-companies-surveillance/
97•root-parent•28m ago•18 comments

Maka Kids is a streaming app optimized for well-being, not engagement

https://techcrunch.com/2026/05/21/maka-kids-is-redefining-kids-screen-time-with-a-streaming-app-o...
2•DropDead•28m 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•12mo ago
Checked my openrouter stats, it took ~3M tokens but that involved quite a few runs of various experiments.