frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The Data Center Backlash Bursts into the Midterms

https://www.nytimes.com/2026/08/23/us/politics/data-centers-midterm-elections.html
3•newsomix9xl•4m ago•0 comments

Across Nashville, Parked Waymos Are Recording Your Neighborhood

https://www.gadgetreview.com/across-nashville-parked-waymos-are-recording-your-neighborhood
2•HotGarbage•5m ago•0 comments

An elliptic curve of rank 31

https://twitter.com/mathandcobb/status/2091618274320552349
3•vicgalle_•9m ago•1 comments

Good and Bad Reasons to Become an Entrepreneur

https://medium.com/i-m-h-o/good-and-bad-reasons-to-become-an-entrepreneur-decf0766de8d
1•BASSAMej•12m ago•0 comments

Show HN: Photo Gallery Without JavaScript

https://ricobeck.de/photostream.html
2•ricobecks•14m ago•0 comments

The VLA and High-Frequency SETI: Expanding the Search for Life

https://arxiv.org/abs/2608.18275
1•root-parent•20m ago•0 comments

Show HN:Tool that checks if your AI-generated content are marked AI Act Art. 50

https://aiactverify.edenlabs.eu
1•lucapersichini•21m ago•0 comments

Cursor beat Git's scalability shortcomings

https://www.theregister.com/devops/2026/08/23/how-cursor-beat-gits-scalability-shortcomings/5291421
2•sbulaev•23m ago•0 comments

Optimizing memory use in a Markdown parser

https://blog.kowalczyk.info/a-n8wf/optimizing-memory-use-in-markdown-parser.html
2•blueshoess•28m ago•0 comments

Wallpaper Engine On Linux (native translation layer library)

https://github.com/shdwmtr/wallpiper
1•shadowmonster•31m ago•0 comments

Leyline: KV Cache Directives for Agentic Inference

https://arxiv.org/abs/2606.01065
3•Bluestein•34m ago•0 comments

Cicada.os – Graphene.os for Your Laptop

https://kpres12.github.io/Cicada.OS/
1•kpres62•34m ago•1 comments

Show HN: A way to let agents reliably pay for things

https://shopstack.ai/
1•windyVector•38m ago•0 comments

IXUI: A Proxmox/ESXi-Style Web UI for Incus

https://github.com/xlmnxp/ixui
1•xlmnxp•40m ago•0 comments

Residential proxies scraping your site? Drain their bandwidth

https://layer3intel.com/blog/residential-proxy-bandwidth-drain
3•Rasbora•40m ago•0 comments

The Summer of Open Weights

https://martinalderson.com/posts/the-summer-of-open-weights/
2•garo-pro•42m ago•0 comments

Declarative WebGPU with S-Expressions

https://hugodaniel.com/posts/declarative-webgpu-with-s-expressions/
2•hugodan•43m ago•0 comments

Bolt Graphics' Advanced GPU to Take on Nvidia – Architosh

https://architosh.com/2026/07/bolt-graphics-advanced-gpu-to-take-on-nvidia/
2•rbanffy•46m ago•0 comments

Ask (Your Terminal)

https://github.com/benja/ask
1•handfuloflight•47m ago•0 comments

Nss-userhosts: a name service switch module allowing unprivileged users to have

https://codeberg.org/felixs/nss-userhosts
1•fanf2•48m ago•0 comments

Making LEDs in the Home Fab

https://hackaday.com/2026/08/23/making-leds-in-the-home-fab/
1•rmason•51m ago•0 comments

Does Chess Make You Smarter? What Chess Can Teach Us

https://www.psychologytoday.com/us/blog/finding-a-new-home/202608/does-chess-make-you-smarter-wha...
2•amichail•52m ago•0 comments

Slash Pages

https://slashpages.net/
1•jcbhmr•52m ago•0 comments

Paul Graham on X: if I were 17. I'd learn how to build LLMs from scratch

https://twitter.com/paulg/status/2091544343589060625
3•bilsbie•52m ago•1 comments

Show HN: Khaos – Kafka traffic and failure simulator, rewritten in Go

https://github.com/aleksandarskrbic/khaos
1•skrbic_a•53m ago•0 comments

Cybernetics and Ghosts

https://robinrendle.com/notes/cybernetics-and-ghosts/
1•robin_reala•54m ago•0 comments

Show HN: Clothes Patterns You Can Make Based on Photo

https://github.com/Ag3497120/photoloset
1•pakupaku•55m ago•0 comments

Engineerification

https://eug.github.io/posts/engineerification.html
1•eugf_•57m ago•0 comments

OpenStar demonstrates dipole fusion reactor concept

https://www.world-nuclear-news.org/articles/openstar-demonstrates-dipole-fusion-reactor-concept
2•mpweiher•59m ago•0 comments

Rural Village in Spain Is Welcoming Digital Nomads with Open Arms

https://www.cntraveler.com/story/this-rural-village-in-spain-is-welcoming-digital-nomads-with-ope...
2•simonebrunozzi•1h ago•1 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.