frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Nike's End of Men (2021)

https://www.houseofstrauss.com/p/nikes-end-of-men
1•vismit2000•2m ago•0 comments

My Wife Died of an Asthma Attack. If She'd Known About 'Peak Week' (2019)

https://www.wbur.org/cognoscenti/2019/09/18/asthma-peak-week-laura-levis-peter-demarco
1•Synthetic7346•3m ago•0 comments

Ledgerly a live budget chart that runs in the browser (free, no signup)

https://6b929b8f01f0260a705fb34bdac44ec3.ctonew.app
1•nharvey•6m ago•0 comments

Manticore Search 29.9.0: Chunked auto-embeddings and MMAP columnar access

https://medium.com/@s_nikolaev/manticore-search-29-9-0-chunked-auto-embeddings-and-mmap-columnar-...
1•snikolaev•8m ago•0 comments

Neurogrid the Community Cloud for LLMs

https://neurogrid.cc
1•cheyodev•9m ago•1 comments

Mourning the Loss of AI Companions

https://www.nature.com/articles/s41562-026-02569-3
1•geox•9m ago•0 comments

Sidero Labs Joins Yardi

https://www.siderolabs.com/blog/sidero-labs-joins-yardi
1•robinhoodexe•10m ago•0 comments

A Blender BPY skill that helps smaller LLMs build better 3D models

https://github.com/capybala18/capybala-bpy-skill
1•capy00129•10m ago•1 comments

He Accused His Brother of Sexual Abuse. Then He Took on His Family

https://www.nytimes.com/2026/09/15/world/asia/thai-singha-beer-family-abuse-accusations.html
1•JumpCrisscross•17m ago•0 comments

Show HN: The web is dead. Keep this app alive

https://longlivethis.site
4•armstrongb•18m ago•3 comments

Agents Have Favorite Tools

https://ianbarber.blog/2026/09/14/agents-have-favorite-tools/
1•matt_d•20m ago•0 comments

Pisa 2025 Results

https://www.oecd.org/en/publications/2026/09/pisa-2025-results-volume-i_5265bfb1/full-report.html
1•mudil•21m ago•1 comments

AI vs. Human Value Drift

https://www.overcomingbias.com/p/ai-vs-human-value-drift
1•paulpauper•22m ago•1 comments

New AI Solves a Millennium Prize

https://thezvi.substack.com/p/brand-new-ai-solves-a-millennium
1•paulpauper•23m ago•0 comments

Supreme Court blocks Trump's plan to restrict mail-in ballots

https://www.bbc.com/news/articles/c5yjpdy4gjlo
4•colinprince•26m ago•1 comments

The Revolut breach just escalated

https://twitter.com/T3chFalcon/status/2099584270058537044
1•soltanov•26m ago•1 comments

Show HN: Analyzed 400 routes and driving a Tesla beats flying 65% of the time

https://flyortesla.com/insights
2•drewlem•33m ago•3 comments

Adapt or Perish: What Mathematicians Must Learn from Software Engineers

https://medium.com/@b1nj0y/the-misalignment-is-within-why-mathematics-must-embrace-the-ai-paradig...
1•b1nj0y•39m ago•0 comments

Mastering Layout Engines in Graphviz: Dot vs. Neato vs. Twopi vs. Circo

https://guides.visual-paradigm.com/mastering-graphviz-layout-engines-dot-neato-twopi-circo/
2•vismit2000•43m ago•0 comments

Linux from Scratch

https://www.linuxfromscratch.org/
2•sippingabonedry•46m ago•0 comments

A Faster Approach to Ethereum Wallet Activity Patterns and Transaction Summaries

https://chainledgerai.io/blog/beyond-bigquery-a-faster-approach-to-ethereum-wallet-activity-patte...
1•oculix-official•48m ago•0 comments

Streamlining Your Strategy: The Power of Automated Real Estate Descriptions

https://propdescai.io/blog/streamlining-your-strategy-the-power-of-automated-real-estate-descript...
1•oculix-official•50m ago•0 comments

Archkeel – coding agents declare architecture changes before they submit

https://github.com/rapiddweller/archkeel
1•ake2l•50m ago•0 comments

The Three Lives of Clausewitz: How Anglo-American Strategists Remade "On War"

https://smallwarsjournal.com/2026/07/21/three-lives-of-clausewitz-on-war/
1•bryanrasmussen•52m ago•1 comments

The Butlerian Secession

https://the-human-alliance.org/
2•tcorcos•52m ago•0 comments

Shuffling Is Not Enough: Breaking Permutation-Based Model Confidentiality

https://arxiv.org/abs/2609.12911
1•sbulaev•54m ago•0 comments

We Automate KiCad PCB Routing

https://autocuro.com/blog/how-we-automate-kicad-pcb-routing
3•teleforce•55m ago•0 comments

KiCad Routing Tools

https://github.com/drandyhaas/KiCadRoutingTools
3•teleforce•55m ago•0 comments

See how well you know the sizes of things

https://playdaily.org/size-it-up
4•Hemmaamlin•57m ago•0 comments

How to Build a Practical Household Bike Generator

https://solar.lowtechmagazine.com/2022/03/how-to-build-a-practical-household-bike-generator/
1•fosco•57m ago•1 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.