frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Saudi Arabia bets on driverless trucks

https://en.majalla.com/node/332904/business-economy/bold-road-saudi-arabia-bets-driverless-trucks
1•Alien1Being•1m ago•0 comments

"We Have to Assume That the Internet Will Go Offline in the Next Few Years"

https://www.trendingtopics.eu/emad-mostaque-ai-internet-outlook-english/
1•gumby•8m ago•0 comments

WordStar 4.0 – the real 1987 word processor, in the browser

https://nampara-ai.github.io/wordstar/
1•Tomte•8m ago•0 comments

Project Zenith: The ready-to-code Windows experience on developer-class devices

https://blogs.windows.com/windowsdeveloper/2026/09/04/announcing-project-zenith-the-ready-to-code...
1•poisonborz•10m ago•0 comments

How Marine Rifle Squads Plan to Fight Future Wars Dominated by Drones

https://www.twz.com/sea/how-marine-rifle-squads-plan-to-fight-future-wars-dominated-by-drones
1•cisc•20m ago•0 comments

Low Interest Rates Ruined the Economy

https://www.oftwominds.com/blogaug26/powder-key-economy8-26.html
1•BerislavLopac•23m ago•0 comments

Bespoke: A Programming Language for People Who Say Please

https://blog.hofstede.it/bespoke-a-programming-language-for-people-who-say-please/
1•birdculture•25m ago•0 comments

Isthmus – a small Go trust-kernel for NanoClaw

https://github.com/prathish-ks/isthmus
1•sriyapaka•26m ago•0 comments

AI Chip Regulation Is Not a Dystopian Surveillance State

https://www.astralcodexten.com/p/ai-chip-regulation-is-not-a-dystopian
1•reasonableklout•29m ago•0 comments

How to evaluate LLMs before production

https://github.blog/ai-and-ml/llms/how-to-evaluate-llms-before-production/
1•officekamiya•31m ago•0 comments

I gave my AI agent a sleep cycle – it dreams about its errors and fixes them

https://github.com/openamer/openamer
1•openamer•32m ago•0 comments

Archive.org in need of large hard drives

https://mastodon.archive.org/@textfiles/117220856033120449
1•happosai•34m ago•0 comments

Show HN: Kaden – Linux Terminal where Ctrl+C copies

https://github.com/glitcher255/Kaden-Terminal
1•Glitcher255•38m ago•0 comments

Nimvarya – Let AI coding agents control Chrome without stealing focus

https://github.com/Basiliskin/nimvarya
1•dimitrykatz•38m ago•0 comments

Derick Nwasor, Nigeria – Just Add Water – Quantum Regenerative Fuelcell

https://africaprize.raeng.org.uk/2026-cohort/derick-nwasor/
1•thunderbong•40m ago•0 comments

The SimCity Planning Commission Handbook (2024)

https://www.thomas-huehn.com/simcity/
1•Tomte•41m ago•0 comments

From all-or-nothing to task-based OAuth consent

https://blog.cloudflare.com/task-based-oauth-consent/
1•officekamiya•47m ago•0 comments

Python sets and dictionaries can have quadratic-time performance

https://lemire.me/blog/2026/09/03/python-sets-and-dictionaries-can-have-quadratic-time-performance/
2•signa11•55m ago•1 comments

Handoru: AI customer conversation agents for service businesses

https://handoru.ai/
1•Zabrodsk•55m ago•1 comments

Knowing Where to Type 'Zero' (2015)

https://randomascii.wordpress.com/2015/01/19/knowing-where-to-type-zero/
2•signa11•55m ago•0 comments

Writing Docs in LLMese

https://passo.uno/write-docs-llms-language/
1•theletterf•58m ago•0 comments

AI Programming: A Layered Model

https://lemire.me/blog/2026/09/05/ai-programming-a-layered-model/
1•signa11•1h ago•0 comments

Play GTA III in the Browser

https://quenq.com/apps/vice-city-online/
2•rzk•1h ago•0 comments

Notey and Noisy: A Sound Science Mathemusical

https://malwebb.com/notnoi.html
1•_kb•1h ago•0 comments

Show HN: Blunderbase: A Personal Chess Database

https://github.com/philphilphil/blunderbase
1•philphilphil•1h ago•0 comments

Isar Aerospace reaches orbit and deploys payloads on second flight

https://isaraerospace.com/press/history-for-european-spaceflight-isar-aerospace-reaches-orbit-and...
4•mpweiher•1h ago•1 comments

An Open Letter to Bernie Sanders: Regulate AI's Dangers, Don't Ban Its Promise

https://www.unite.ai/an-open-letter-to-bernie-sanders-regulate-ais-dangers-dont-ban-its-promise/
1•50kIters•1h ago•0 comments

GPT-6 Astra Plays Portal

https://www.youtube.com/watch?v=g5u2y0BwRJ0
2•liminal-dev•1h ago•0 comments

"Catching Crumbs from the Table"

https://www.nature.com/articles/35014679
3•stefanpie•1h ago•0 comments

How to Name Things

https://kolemannix.com/blog/how-to-name-things/
1•theanonymousone•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.