frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

GT-BN98 Quad-Band WiFi 8 (802.11B) Gaming Router

https://rog.asus.com/networking/rog-rapture-gt-bn98/
1•doener•5m ago•0 comments

Terrance Tao explains 6 essential mathematical concepts

https://www.youtube.com/watch?v=OOMx2BHHWtE
1•matthewsinclair•5m ago•0 comments

The Shape and Feel of the Post-AI Data Stack

https://www.iandmacomber.com/blog/post-ai-data-stack/
1•iandmacomber•5m ago•0 comments

Build a Tokenizer from Scratch

https://github.com/crackr-org/build-a-tokenizer-from-scratch/tree/main
1•wa5ina•9m ago•0 comments

Google quickly bows to Trump order and renames Lake Ontario 'Lake America'

https://www.nzherald.co.nz/world/google-quickly-bows-to-trump-order-and-renames-lake-ontario-lake...
2•TheAlchemist•10m ago•0 comments

Developer Experience should become Engineering Experience

https://twitter.com/DragorWW/status/2094188626238189809
1•dragorww•13m ago•1 comments

Show HN: Academa – Long-form STEM lecture videos generated by LLMs

https://academa.ai/
3•sinaatalay•19m ago•0 comments

Computer Tycoon

https://computertycoon.app/?lang=en
1•doener•24m ago•0 comments

Show HN: Ration – see your Claude usage across terminals and brag usage

https://github.com/solodynamo/Ration
1•solodynamo•24m ago•0 comments

Show HN: Manage coding norms across your AI agents

https://github.com/gsttm/norms
1•gshevchuk•25m ago•0 comments

AI coding agents followed abandoned package references, 6K domains analyzed

https://forgeeks.net/ai-agents-abandoned-package-references/
1•kuuuzya•26m ago•0 comments

A 500k-Euro Website

https://www.minid.net/2012/11/17/a-500k-euro-website
1•meerita•28m ago•0 comments

Turn chess game history into opening drills

https://plyscope.com/
1•thursday1•40m ago•0 comments

AI Can Answer Almost Anything. It Still Can't Tell You What Matters

https://medium.com/freedomofthought/ai-can-answer-almost-anything-it-still-cant-tell-you-what-mat...
2•raynchad•42m ago•1 comments

Ask HN: What are your biggest problems and fixes with multisession engineering?

2•top_rooster•43m ago•0 comments

I built a scanner to find a SaaS worth cloning. Its best answer was "don't."

https://www.petervijeh.com/projects/saas-scanner
3•p-s-v•44m ago•2 comments

Proton Incident Report

https://proton.me/blog/august-27-outage-incident-report
1•abnercoimbre•45m ago•0 comments

The Productivity Trap Nobody Talks About

https://medium.com/freedomofthought/the-productivity-trap-nobody-talks-about-ca251f72b471
2•raynchad•48m ago•0 comments

Monarch Chrysalis: a sparse Mixture-of-Experts model that reasons in Neuralese

https://cymela.com/research/first-of-its-kind
1•Cymela•48m ago•0 comments

Qwen3.8 27B on MacPro 32GB (Tasks) [video]

https://www.youtube.com/shorts/O4JvN4SlNnk
1•thinkevolve•50m ago•0 comments

OpenAI acquires Mac Minis, Mac Studios for AI training

https://cryptobriefing.com/openai-acquires-thousands-of-mac-minis-mac-studios-for-ai-training-the/
3•porridgeraisin•53m ago•0 comments

A Secure Hermes and Mnemosyne Memory Architecture

https://adithyanak.com/optimal-hermes-mnemosyne-memory-architecture/
1•akoffsec•55m ago•0 comments

Building Indices from Prediction Markets

https://lookbacklabs.com/blog#geopolitical-risk-panoramic-view
4•chaltik-human•56m ago•0 comments

Mark Zuckerberg's Social Reckoning

https://www.newyorker.com/magazine/2026/09/07/mark-zuckerbergs-social-reckoning
5•fortran77•1h ago•0 comments

Music Sparks Story-Like Brain Activity

https://communitynews.org/science-tech/princeton-study-music-brain-activity-imagined-narratives/
1•gmays•1h ago•0 comments

Car Sunroofs Keep 'Spontaneously' Exploding–and the Problem Is Getting Worse

https://www.wsj.com/business/autos/car-sunroofs-keep-spontaneously-explodingand-the-problem-is-ge...
3•bookofjoe•1h ago•1 comments

Why Some Image Conversions Come Out Blurry or Tiny

https://heic.frame-fix.workers.dev/
3•Hackergeist•1h ago•0 comments

How to combine exercise with video games

https://economist.com/science-and-technology/2026/08/28/how-to-combine-exercise-with-video-games
1•andsoitis•1h ago•0 comments

The Monkey Selfie Copyright Dispute

https://en.wikipedia.org/wiki/Monkey_selfie_copyright_dispute
3•busymom0•1h ago•1 comments

Gitea/Forgejo and Neovim

https://github.com/emrearmagan/atlas.nvim/tree/feat/gitea-forgejo
2•emrearmagan•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.