frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

BranchBase – Git-native, zero-copy local DB branching for PostgreSQL

https://github.com/oscarbol09/branchbase
1•oscarmb09•37s ago•0 comments

Omarchy Funding Climbs to $13M, with over $4M a Year Set for Spending

https://linuxiac.com/omarchy-funding-climbs-to-13m-with-over-4m-a-year-set-for-spending/
1•dxs•50s ago•0 comments

Show HN: 4D Chess – play against a friend or computer

https://4dchess.lol
1•mikiyas•1m ago•0 comments

Political meddling at the Census Bureau damages the US statistical system

https://www.piie.com/blogs/realtime-economics/2026/political-meddling-census-bureau-damages-entir...
1•boshomi•2m ago•0 comments

IrisFlow – open-source Mac overlay dictation (hold Left-Ctrl)

https://github.com/joyboy5477/IrisFlow
1•vishwaka•4m ago•0 comments

The 92-Year-Old Mathematician and the Teenage Apprentice

https://www.nytimes.com/2026/09/06/science/92-year-old-mathematician-apprentice.html
1•robinhouston•11m ago•0 comments

Surplus Agriculture Equipment

https://svdisposition.com/
1•Bluestein•12m ago•0 comments

'Model fatigue' sets in as AI labs race to roll out new versions

https://www.cnbc.com/2026/09/06/meta-google-openai-anthropic-ai-model-fatigue.html
2•cramer4next•12m ago•0 comments

Emma: The GP's AI Receptionist doesn't understand Yorkshire or security

https://floorjellyboot.infinityfree.io/?u=/2026/09/05/emma-the-gps-ai-receptionist-doesnt-underst...
2•floorjellyboot•13m ago•0 comments

And Yet It Warms: Federal Judges and Climate Change

https://www.nybooks.com/articles/2026/09/24/and-yet-it-warms-federal-judges-and-climate-change/
2•mitchbob•14m ago•1 comments

The Kuycon P20 – 28" 4500x3000px 3:2 monitor

https://taoofmac.com/space/reviews/2026/09/06/1800
1•zdw•14m ago•0 comments

Why your Delaware franchise tax notice says $85,165 (calculator)

https://www.incorpassist.com/blog/us-states/delaware-franchise-tax
1•incorpassist•25m ago•0 comments

The Jobs Apocalypse Is Postponed. An AI Jobs Boom Is Here

https://www.economist.com/finance-and-economics/2026/09/04/the-jobs-apocalypse-is-postponed-an-ai...
2•karakoram•29m ago•1 comments

All About IQ. Does AI Have an IQ?

https://desnitch.substack.com/p/what-is-your-iq-ready-to-take-this
1•desnitch•31m ago•0 comments

The AI Boom Is Coming for Your Gadgets

https://www.economist.com/graphic-detail/2026/09/03/the-ai-boom-is-coming-for-your-gadgets
1•karakoram•31m ago•1 comments

A party game for the couch. The game plays on the TV your phone is the buzzer

https://couchbattles.com
4•DCnow•33m ago•1 comments

US has access to more than half of Australia's military bases

https://www.theguardian.com/australia-news/ng-interactive/2026/sep/07/us-military-bases-in-austra...
2•siquick•36m ago•0 comments

Robots just had their GPT3 moment [video]

https://www.youtube.com/watch?v=cqwKceUSZ5Q
1•nazgul17•37m ago•1 comments

Show HN: Blueprintr – Diagram-first knowledge base with live cloud import

https://blueprintr.io
1•JoshJamesAnthon•43m ago•1 comments

The Living Documents Manifesto

https://orionfold.com/manifesto/
1•arkwor•44m ago•0 comments

The Continued Decline of White Collar Prosecutions

https://therevolvingdoorproject.org/the-continued-decline-of-white-collar-prosecutions/
2•paulpauper•45m ago•1 comments

Federated Stars (2024)

https://domaindrivenarchitecture.org/blog/2024-06-05-howto-federated-stars/
1•birdculture•45m ago•0 comments

Elena Ferrante and the people who vouched for her

https://www.strangeclarity.com/p/elena-ferrante-and-the-people-who
1•paulpauper•47m ago•0 comments

Do children grow continuously or do they grow in fits and starts?

https://statmodeling.stat.columbia.edu/2026/08/31/fits-and-starts/
2•paulpauper•48m ago•0 comments

3D Printed Hydrogels for Soft Robotic Applications (2025)

https://www.sciencedirect.com/org/science/article/pii/S0973862225000261
1•pliiight•52m ago•0 comments

VCF West 2026: Making games in the 1980s – David Crane, Garry Kitchen [video]

https://www.youtube.com/watch?v=9ramxZ1a6NM
1•fortran77•54m ago•0 comments

Show HN: Antifailure, a disposable copy of production for every pull request

https://antifailure.dev
3•VirS•55m ago•2 comments

Slop-Creep: When Building Gets Cheaper Than Thinking

https://awaitinginput.substack.com/p/slop-creep-when-building-gets-cheaper
2•bs2•56m ago•0 comments

Elon Musks 7 Predictions?

https://nostradamusintellect.com/articles/elon-musk-predictions-scored
1•Nikola5•57m ago•0 comments

Show HN: MaskShift – a maximalist coding agent with zero NPM dependencies

https://github.com/nafeeur/MaskShift
1•Nafeeur•59m 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.