frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The Physical World Has No Data Stack

https://www.felicis.com/blog/the-physical-world-has-no-data-stack
1•intrepidsoldier•4m ago•0 comments

AI safety conversations have gotten unbelievable

https://techcrunch.com/2026/09/19/ai-safety-conversations-have-gotten-unbelievable/
1•jnord•6m ago•0 comments

Frontier Engineering

https://kiro.dev/topics/frontier-engineering/
1•emersonmacro•18m ago•0 comments

Nscale S-1 IPO

https://www.sec.gov/Archives/edgar/data/2110365/000119312526395475/ck0002110365-20260918.htm
2•marc__1•18m ago•0 comments

Why fitting a logistic is nearly impossible from early data

https://www.johndcook.com/blog/2026/09/18/logistic-fit-sensitivity/
1•ibobev•19m ago•0 comments

How did Apple Silicon get 50% faster in three years? – Daniel Lemire's blog

https://lemire.me/blog/2026/09/19/how-did-apple-silicon-get-50-faster-in-three-years/
1•ibobev•20m ago•0 comments

Show HN: Rubrol – Sub-10ms PDF engine using Typst instead of Headless Chrome

https://rubrol.com/
1•halfradaition•20m ago•0 comments

Notes on discrete-time Fourier series and transform

https://eli.thegreenplace.net/2026/notes-on-discrete-time-fourier-series-and-transform/
1•ibobev•21m ago•0 comments

Show HN: Jev-align, a CLI to calibrate Jev to your judgement

https://github.com/sutro-sh/jev-align
1•sethkim•22m ago•0 comments

Claudecookie – convert, check, and mint Claude Code credentials from a cookie

https://claudecookie.com/
1•matt_hollins•24m ago•0 comments

Authenticity's Triumph

https://blog.smalleycreative.com/authenticitys-triumph/
1•stuntmachine•25m ago•0 comments

Can you tell which images are AI-generated?

https://slop-sense.labtoagi.com/games/is-this-image-ai/
2•hckr78•26m ago•0 comments

Relation Algebra ≠ Relational Algebra

https://remy.wang/blog/ra-ra.html
1•remywang•26m ago•0 comments

An open source roguelike adventure through dungeons

https://crawl.develz.org/
1•Bluestein•33m ago•0 comments

AI in schools – The choice we keep making

https://friendsschoolboulder.org/the-choice-we-keep-making/
1•MetallicCloud•33m ago•0 comments

OneZoom: Tree of Life Explorer

https://www.onezoom.org/
1•thunderbong•36m ago•0 comments

Tadao Ando Designed&Donated a Floating Library That Delivers Books to Children

https://spoon-tamago.com/tadao-ando-kagawa-floating-library/
1•bookofjoe•37m ago•0 comments

Ask HN: Anyone using DeepSeek Harness (dsh) as part of a customer-facing agent?

1•mmartindevelope•42m ago•0 comments

Joy's Law (Management)

https://en.wikipedia.org/wiki/Joy%27s_law_(management)
1•brewmarche•43m ago•0 comments

Academic Doomerism

http://muratbuffalo.blogspot.com/2026/09/academic-doomerism.html
1•zdw•47m ago•0 comments

Communicating schwa is impossible in written English

https://ashishb.net/linguistics/schwa/
2•ashishb•47m ago•0 comments

Research that compiles: typed claims, conflict detection and next actions

https://grainulator.app/playground/
3•aid-ninja•48m ago•1 comments

PyPy v8.0.0 Release

https://pypy.org/posts/2026/09/pypy-v800-release.html
2•lumpa•48m ago•0 comments

Humanism Without (All) Humans

https://contraptions.venkateshrao.com/p/humanism-without-all-humans
1•zdw•48m ago•0 comments

Semantic end-to-end agent testing for iOS, Android, and web using Jev

https://www.tryconvoy.xyz
1•gokulnair2001•51m ago•1 comments

India Outsourcing Shifts Upmarket as AI Reshapes Jobs, ING Says

https://www.bloomberg.com/news/articles/2026-09-17/india-outsourcing-shifts-upmarket-as-ai-reshap...
1•porridgeraisin•52m ago•1 comments

V Language Review (2023)

https://n-skvortsov-1997.github.io/reviews/
2•lr0•52m ago•0 comments

An old systems problem with a new AI twist: data movement

https://twitter.com/nk_developer1/status/2101028456083677524
2•limestoneai•53m ago•0 comments

Show HN: I am vibe coding a drone

https://ai-eng-design-production.up.railway.app/login
1•couAUIA•57m ago•0 comments

Show HN: CAS-X – An automated compliance matrix for the Amaya Axioms (v5.0)

1•richardaamaya•57m 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.