frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Can You Beat Jev?

https://antics.gg/can-you-beat-jev
1•eric_khun•5m ago•1 comments

Sub-15ms, non-autoregressive, local drop-in alternative to TypeSafe Jev

https://github.com/wfzyx/von
1•0x1997•8m ago•0 comments

Models know when they're reward hacking – and we can catch them at scale

https://www.goodfire.com/research/reward-hacking-activation-monitors
1•gmays•9m ago•0 comments

Fundamental Theorem of Calculus [Slop]

https://www.proofatlas.ai/library-theorems/fundamental-theorem-calculus/
1•throwyonion•11m ago•0 comments

Show HN: Vsqrd – AWS for Biology Experiments

https://vsqrd.com/
1•misterchocolat•14m ago•0 comments

The First Ten Years

https://gregorygundersen.com/blog/2025/01/30/first-ten-years/
1•andsoitis•14m ago•0 comments

Succinct Sounds-Like Starting Vowels

https://wiredream.com/vowels/
1•dgacmu•15m ago•0 comments

Show HN: Lain, a structural code graph and agent coordinator for coding agents

https://github.com/spuentesp/lain
1•spuentesp•19m ago•1 comments

Two similar AI judges fail together 7.7x more often than independence predicts

https://github.com/LAWLESS1987/covenant
1•Lawless1987•22m ago•0 comments

A refined phylochronology of the second plague pandemic in Western Eurasia

https://www.pnas.org/doi/10.1073/pnas.2534899123
1•Thevet•28m ago•0 comments

How I view LLMs as Sept 2026

https://bhardwajrish.blogspot.com/2026/09/how-i-view-llms-as-sept-2026.html
1•crearo•30m ago•0 comments

ZCode: silently uploading your Git history to the cloud

https://news.routley.io/posts/inside-zcode-silently-uploading-your-git-history-to-the-cloud.html
3•fourfire•34m ago•0 comments

A CERN for AI-assisted science

https://terrytao.wordpress.com/2026/09/17/a-cern-for-ai-assisted-science/
1•andsoitis•34m ago•0 comments

Show HN: Converting AVS audio viz to WebAssembly using GPT 5.6

https://strlns.github.io/very-serious-vibecoding/AVS-Web-Native-Editor-Alpha/
1•moritzwarhier•36m ago•0 comments

Spending on data centers and hardware now exceeds housing investment

https://fortune.com/2026/09/20/us-economy-milestone-spending-data-centers-ai-boom-housing-residen...
4•rawgabbit•36m ago•1 comments

Amiga Unix, Again

https://amigaux.org/
5•doener•37m ago•2 comments

Building an NBA stats warehouse without writing any of the code

https://jeffknupp719305.substack.com/p/paul-reed-is-tenth
2•jknupp•40m ago•0 comments

Prototype of a Windows 11-inspired Web OS with autonomous IA agents

https://github.com/davidpoliquin30-design/Prototype-autonom-ia-OS
1•davidpoliquin•42m ago•0 comments

Tools to Prevent Dementia

https://www.scmp.com/lifestyle/health-wellness/article/3368006/why-dementia-preventable-and-new-t...
1•elo2000•51m ago•0 comments

New startup to test psychedelic-like drug against Parkinson's symptom

https://www.statnews.com/2026/09/17/biotech-news-ariadne-testing-psychedelic-like-drug-parkinsons...
2•elo2000•52m ago•0 comments

Chronic stress may trigger hidden inflammation that damages the heart

https://lms.mrc.ac.uk/chronic-stress-may-trigger-hidden-inflammation-that-damages-the-heart/
2•doener•54m ago•1 comments

Are we talking less? A Q&A with psychologist Matthias Mehl (March 2026)

https://news.arizona.edu/news/are-we-talking-less-qa-psychologist-matthias-mehl
1•BiraIgnacio•55m ago•0 comments

Does Jev Have Politics? (Yes)

https://idlerambling.substack.com/p/does-jev-have-politics-yes
1•Sketchy_•1h ago•0 comments

Turn curiosity into a map you can explore

https://www.echohive.ai/experiments/drift
1•echohive42•1h ago•0 comments

AI Netscape – 1997 Chrome, 2026 AI

https://ainetscape.com/
2•TStringham•1h ago•2 comments

The addiction of online sports gambling: "Like crack in the '80s"

https://www.cbsnews.com/news/sports-betting-apps-gambling/
4•dzonga•1h ago•2 comments

The Crown of Creation

https://mika.global/post/1789946288.html
1•mika314•1h ago•0 comments

KDE Goes to the Pyramids [video]

https://media.ccc.de/v/kde2026-58-kde_goes_to_the_pyramids
2•sho_hn•1h ago•0 comments

How Anthropic CEO Dario Amodei's Writings Help Explain A.I. Fears

https://www.nytimes.com/2026/09/17/technology/dario-amodei-anthropic-essays-ai.html
5•gmays•1h ago•0 comments

Popular European Games

https://playfrom.eu/
2•doener•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.