frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: ReviewAssist-Uses coding session to fix code and guided PR walkthrough

https://reviewassist.dev/
1•udik2•5m ago•0 comments

The Wait Equation

https://xendo.bearblog.dev/the-wait-equation/
1•xendo•6m ago•0 comments

Uber allies with driver unions in bid to slow robotaxi rollout

https://www.ft.com/content/84171f91-5f39-4878-bbc5-e4e6262c4321
2•JumpCrisscross•9m ago•0 comments

'A crisis of authenticity': the truth about food influencers

https://www.theguardian.com/news/ng-interactive/2026/sep/03/a-crisis-of-authenticity-the-truth-ab...
1•rdmuser•11m ago•0 comments

KPMG warned Guggenheim unit over deficiencies in internal controls

https://www.ft.com/content/70e8e4e6-def9-4683-9aa3-4bf7351474e4
1•JumpCrisscross•12m ago•0 comments

Ask HN: Is anyone working on this? (Silent texts)

1•quantum2022•14m ago•0 comments

Ski Voice Coding for Claude Code now available on Linux

https://heyski.io/
1•jomon003•17m ago•1 comments

China's Private Sector Botnets Are Worth Disrupting

https://news.risky.biz/srsly-risky-biz-chinas-private-sector-botnets-are-worth-disrupting/
1•Yctg•17m ago•0 comments

The $250k Synth That Replaced Frank Zappa's Band [video]

https://www.youtube.com/watch?v=GMmBsbnmEME
1•thm•19m ago•0 comments

Birkhoff's Theorem (Relativity)

https://en.wikipedia.org/wiki/Birkhoff%27s_theorem_(relativity)
1•vismit2000•20m ago•0 comments

Show HN: The Simpsons Hit and Run Revamped

https://github.com/xaskasdf/The-Simpsons-Hit-and-Run
2•xaskasdf•25m ago•0 comments

What happens when your AI agent edits its own tests to pass?

https://bartholomew.info/
2•itsub_sa•27m ago•0 comments

AI Can Help Plan a Bioweapon

https://secondthoughts.ai/p/ai-can-help-plan-a-bioweapon-building
1•soltanov•30m ago•0 comments

WithExe: In-process EXE host for Windows x64

https://github.com/IgorTebelev/WithExe
1•AngryIgor•34m ago•1 comments

How viable is LLM-assisted 3D modeling in Blender?

https://twitter.com/louszbd/status/2093047548550525165
1•HyperAI•37m ago•0 comments

New York City Bans AI from Elementary Schools

https://gizmodo.com/new-york-city-bans-ai-from-elementary-schools-2000806172
1•the-mitr•37m ago•1 comments

Quasi-Bialgebra

https://en.wikipedia.org/wiki/Quasi-bialgebra
1•blizow•43m ago•0 comments

Trump's Lake Ontario push forces tech to pick a side

https://www.politico.com/news/2026/09/02/tech-lake-ontario-01062631
1•JumpCrisscross•44m ago•2 comments

Show HN: Free app for offline image search and smart file renaming

https://ringlochid.me/imagesage/index.html
1•ringlochid•50m ago•0 comments

Ask HN: A tool to share my data

1•roromainmain•55m ago•0 comments

Update on RISC-V Standards and Adoption at Hot Chips 2026

https://www.servethehome.com/update-on-risc-v-standards-and-adoption-at-hot-chips-2026/
2•lumpa•55m ago•0 comments

PromptSonar – Execution path analyzer for AI agents and MCP servers

https://github.com/meghal86/promptsonar
1•meghal86•57m ago•0 comments

Show HN: Vanity Domain Generator

https://vanitydomain.net
2•i3oi3•57m ago•1 comments

Who Survived the Great Dying – and Why, from PBS

https://www.pbs.org/video/who-survived-the-great-dying-and-why-life-and-death-on-pangea-pzs3ev/
1•blizow•58m ago•0 comments

SF's Tech Right Debates the Ideal Dictator

https://bayareacurrent.com/sfs-tech-caesar/
3•hliyan•1h ago•3 comments

What do you think about elastic workload?

https://xflops.io/blog/flame-v0-6/
2•k82cn•1h ago•0 comments

Dutch central bank moves 86 tonnes of gold from US citing 'geopolitical unrest'

https://www.theguardian.com/world/2026/sep/03/netherlands-gold-dutch-central-bank-uk-us-and-canad...
19•Jimmc414•1h ago•13 comments

Show HN: Review-to-rule – Turn accepted review feedback into durable repo rules

https://github.com/vamgan/review-to-rule
1•vamgan•1h ago•0 comments

The Loose: The Coming of Useless Agents

https://twitter.com/deanwball/status/2094794694572015854
1•jjwiseman•1h ago•0 comments

Toxic haze from Indonesia spreads to Malaysia and Philippines as wildfires rage

https://www.bbc.com/news/live/cqevw9y34y34t
1•blondie9x•1h 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.