frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Autonomous Lost-in-Space Catalog-Based Optical Navigation (Falcon) [pdf]

https://slab.stanford.edu/sites/g/files/sbiybj25201/files/media/file/aiaa_asc_2025-falcon_paper.pdf
1•rbanffy•55s ago•0 comments

Decades-old file security flaws found in Android, Linux, macOS, and Windows

https://www.theregister.com/security/2026/09/24/decades-old-file-security-flaws-found-in-android-...
1•DemiGuru•1m ago•0 comments

Plux trip planner: free, no ad or register obligation, and open source trip

https://plux.nibecarcofeben.com/
1•nibecarcofeben•1m ago•1 comments

Cracking Fortinet's Decryption with Ablation

https://github.com/Ablation-Tool/ablation
1•zellkernel•2m ago•1 comments

Show HN: See your portfolio in your Mac Menubar

https://menubar.snaptra.de/
1•tma•2m ago•0 comments

Show HN: Agency – Manage Agents for Your Robinhood Agentic Account

https://agency.trading/
2•rallies•3m ago•2 comments

African elephants putatively self-medicate with medicinal plants

https://www.nature.com/articles/s41598-026-53610-4
1•geox•4m ago•0 comments

MTV On-Screen Graphics Recreation

https://github.com/m1k1o/mtv-onscreen-graphics
1•m1k1o•6m ago•1 comments

Untamed – A systems-engineering blueprint for technical autonomy

https://thefinancialtimingkey.com/untamed/
1•Sledgehammer_Op•7m ago•0 comments

Government contractor exposed path to immigration records

https://www.theregister.com/security/2026/09/24/government-contractor-exposed-path-to-immigration...
1•DemiGuru•7m ago•0 comments

Apple Opens Apple Music Hall

https://www.apple.com/newsroom/2026/09/apple-opens-apple-music-hall-a-state-of-the-art-live-music...
2•fredley•8m ago•0 comments

GPT-6 Sol is like GPT-5.6 Terra, GPT-6 Luna is like GPT-5.6 Asteroid

https://twitter.com/i/status/2103026209361719406
1•Michelangelo11•9m ago•0 comments

India sees coal remaining power mainstay through 2035-36

https://www.reuters.com/business/energy/india-sees-coal-remaining-power-mainstay-through-2035-36-...
1•alephnerd•10m ago•0 comments

A Little Spark in the Sky

https://thinkingground.net/writing/a-little-spark-in-the-sky
1•zc4242•10m ago•0 comments

"It Was Tragic": Exploring the Impact of a Robot's Shutdown

https://arxiv.org/abs/2509.06934
1•StatsAreFun•10m ago•0 comments

Show HN: Build Python project with poetry and DSCI

http://dsci.sparrowhub.io:8080/file_view/dsci/1f7f688.1790275674/02_answer.md
1•melezhik•10m ago•0 comments

Show HN: I built a seriously detailed free financial planner

https://app.finzot.com/plan/6VXFMte2tRMp81sRKhYgXM/results/net-worth
1•ryan3789437•12m ago•1 comments

US data centres 'are short six NYCs of electricity'

https://www.ft.com/content/f29de45a-3d32-4d9f-90cd-615f7466c1de
2•JumpCrisscross•13m ago•0 comments

Building a GPU in 24 Hours

https://www.outercloud.dev/blogs/gpu/
1•arghunter•14m ago•0 comments

OverfitCheck: Check if your trading backtest is overfit

https://overfitcheck.com
1•aidengandhi•17m ago•0 comments

Easy PDF Export with Links

https://www.figma.com/community/plugin/1637200885821233245/easy-pdf-export-with-links
1•edib•17m ago•0 comments

2.5D parallax interactive battle scene by Opus 5.5

https://www.echohive.ai/experiments/the-golden-ford
2•echohive42•18m ago•0 comments

Massive Parallel Imports in Neo4j Without Deadlock and Lock Contention

https://medium.com/neo4j/massive-parallel-imports-in-neo4j-without-deadlock-and-lock-contention-2...
2•eatonphil•18m ago•0 comments

Postgres SELECT DISTINCT Does Not Scale

https://www.dbos.dev/blog/postgres-select-distinct-does-not-scale
1•KraftyOne•18m ago•0 comments

Watermarking in vLLM

https://vllm.ai/blog/2026-09-24-watermarking-in-vllm
2•eatonphil•18m ago•0 comments

KeePassXC 2.8.0 (Beta 1) released

https://keepassxc.org/blog/2026-09-23-2.8.0-beta1-released/
5•varjolintu•19m ago•0 comments

Show HN: IttyBittyAI – Qwen2.5:0.5B running on a 2017 Asus smartphone

1•spottedmarley•19m ago•0 comments

Anthropic resumes charging for requests blocked by safeguards

https://twitter.com/ClaudeDevs/status/2103170368794185758
4•jeudesprits•20m ago•2 comments

Starbucks to close 250 stores this week

https://finance.yahoo.com/markets/stocks/article/starbucks-to-close-250-stores-this-week-15584602...
1•randycupertino•21m ago•2 comments

OpenAI, Anthropic CEOs urge UN countries to cooperate on AI safety standards

https://slashdot.org/story/26/09/24/0338213/openai-anthropic-ceos-urge-un-countries-to-cooperate-...
1•MilnerRoute•21m 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.