frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Turn your AI chat into a document generation engine

https://docuqueue.com/mcp
1•dvcoolarun•59s ago•0 comments

Training was just a side effect

https://fffej.substack.com/p/training-was-just-a-side-effect
1•mooreds•1m ago•0 comments

A Promising Heart Drug Fails, Challenging a Long-Held Theory of Disease

https://www.nytimes.com/2026/08/06/science/heart-disease-drug-fails-novo-nordisk.html
1•bhouston•2m ago•1 comments

Show HN: Online Speedometer

https://kmspeedometer.com/
1•artiomyak•3m ago•0 comments

I explored Tokyo and found peace there

https://www.kulman.sk/en/how-i-explored-tokyo-and-found-peace/
2•ig0r0•6m ago•0 comments

Deslopifying

https://martinsos.com/posts/deslopifying
1•matijash•7m ago•0 comments

Wellington second-hand bookstore's mysterious orders

https://www.rnz.co.nz/life/books/wellington-second-hand-book-store-s-mysterious-orders
1•lostlogin•7m ago•0 comments

Gigantic DapuStor R6060 512TB E2 NVMe SSD Shown at FMS 2026 – ServeTheHome

https://www.servethehome.com/gigantic-dapustor-r6060-512tb-e2-nvme-ssd-shown-at-fms-2026/
1•rbanffy•8m ago•0 comments

Joint Letter of AFC, Concacaf and UEFA

https://www.uefa.com/news-media/news/02a8-21501c254976-ca8bc2039a0f-1000--open-letter-to-the-foot...
2•tcp_handshaker•8m ago•0 comments

Protect Your Relays

https://www.iroh.computer/blog/authenticated-relays
1•surprisetalk•9m ago•0 comments

Can Extreme Morning Sickness Be Cured?

https://www.newyorker.com/news/essay/can-extreme-morning-sickness-be-cured
1•bookofjoe•11m ago•1 comments

SETI@Home was the coolest thing

3•b112•14m ago•0 comments

Show HN: Synchrium, a synchronized timer where remote peers meet at zero

https://synchrium.com/
1•areich•17m ago•0 comments

Pokecut: Free AI Photo Editor and Generator

https://www.pokecut.com/
1•awa11•17m ago•0 comments

Apple M1 Series SoCs to See ~1 Watt Power Savings with Linux 7.3

https://www.phoronix.com/news/Apple-M1-Power-Savings-Linux-73
1•DemiGuru•21m ago•0 comments

Study reveals people with ADHD are more likely to experience violence

https://www.swansea.ac.uk/press-office/news-events/news/2026/08/study-reveals-people-with-adhd-ar...
3•01-_-•21m ago•0 comments

Programmers Were the Compiler

https://www.minid.net/2026/8/10/programmers-were-the-compiler
1•meerita•23m ago•0 comments

Mnemara – a memory layer that keeps Claude agents continuous

https://github.com/mekickdemons-creator/mnemara
1•Mekickdemons•24m ago•1 comments

Over 181,000 AI meeting recordings left wide open in note taking app

https://bobdahacker.com/blog/tldv-hack
3•colesantiago•24m ago•1 comments

Chuck Grassley Announces the Death of His Beloved Vacuum, Beth

https://www.nytimes.com/2026/08/08/us/politics/beth-vacuum-chuck-grassley-iowa.html
1•reaperducer•24m ago•0 comments

Venaya – A financial wellness platform that adapts to your life stage

https://venaya.app
1•victoriaeast•25m ago•0 comments

DeepSeek costs OpenCode Go user $1.14/day; dual DGX breaks even in 24 years

https://twitter.com/thdxr/status/2086599224674681242
8•delduca•25m ago•2 comments

Farmer kills 25 acres of crops after following AI weed and pest control advice

https://www.tomshardware.com/tech-industry/artificial-intelligence/chinese-farmer-kills-25-acres-...
2•josephcsible•26m ago•1 comments

The AI Slop Backlash Is Having an Impact

https://www.wired.com/story/the-ai-slop-backlash-is-actually-having-an-impact/
4•infinitelurker•26m ago•0 comments

The First Pirated MP3

https://dfarq.homeip.net/the-first-pirated-mp3/
3•jnord•26m ago•0 comments

Antiqua–Fraktur Dispute

https://en.wikipedia.org/wiki/Antiqua%E2%80%93Fraktur_dispute
1•buzzy_hacker•27m ago•0 comments

Google Play now lets you install rival app stores

https://www.theverge.com/tech/977269/google-play-store-third-party-app-aptoide-games
2•BlueBerry2001•29m ago•1 comments

Fable one-shotted a Rust rewrite of the TerminalTextEffects Python library

https://twitter.com/dhh/status/2086590006898958752
1•wg0•29m ago•0 comments

AI Coding and Its Discontents

https://calnewport.com/on-ai-coding-and-its-discontents/
2•polymorph1sm•33m ago•0 comments

Squeak/Smalltalk 6.1 Release Notes

https://squeak.org/release_notes/6.1/
4•fniephaus•34m 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.