frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Blink – Embeddable one-pass typed decision in 33 µs

https://github.com/sqliteai/blink
1•marcobambini•1m ago•0 comments

What Changed from GPT-3.5 to GPT-4? GPT-3.5: 0/30 Empty Nulls. GPT-4: 30/30

https://www.reddit.com/r/ArtificialInteligence/comments/1wotljm/what_changed_from_gpt35_to_gpt4_s...
1•rayanpal_•2m ago•0 comments

Steve Jobs' Full iPhone 4 Antennagate Press Conference Q&A Session

https://www.youtube.com/watch?v=BiN5ERktXz0
2•aSig•3m ago•0 comments

Can You Beat Jev?

https://antics.gg/can-you-beat-jev
1•thatslast•6m ago•0 comments

Albanese says OpenAI hacked Medicare and told Australia months later

https://www.theguardian.com/australia-news/2026/sep/24/anthony-albanese-says-openai-agent-hacked-...
1•skor•8m ago•0 comments

What's Left to Get Wrong

https://blogsh.app/posts/2026/what-s-left-to-get-wrong/
1•krab•8m ago•0 comments

Meta is making a standalone Muse AI gadget

https://www.theverge.com/tech/999750/muse-charm-meta-ai-hardware
1•arbayi•9m ago•0 comments

Mysteries of AI Generalization

https://www.astralcodexten.com/p/mysteries-of-ai-generalization
1•terryf•9m ago•0 comments

Lysios – LLM red teaming org

https://lysios.ai/
1•davedx•10m ago•0 comments

The biggest surprises from a year working at OpenAI

https://aalokpatwa.substack.com/p/one-year-at-openai
1•mji•11m ago•0 comments

Ways to Encrypt Data on Servers

https://lwn.net/Articles/1092553/
1•DavideNL•14m ago•0 comments

C-to-Rust Fallacy: Automatic Refactoring != Memory Security

https://arxiv.org/abs/2609.25682
3•sbulaev•14m ago•0 comments

The Nightmare of Voskhod 2

https://www.smithsonianmag.com/air-space-magazine/the-nightmare-of-voskhod-2-8655378/
1•thunderbong•15m ago•0 comments

Show HN: FireWand – A lightweight manager for GCP SQL databases

https://firewand.dev/
1•moshercode•15m ago•0 comments

Mocks and Explicit Contracts

https://dashbit.co/blog/mocks-and-explicit-contracts
1•Bluestein•16m ago•0 comments

No grades, no tests, no degree: Andreessen Horowitz launching builders' academy

https://sfstandard.com/2026/09/22/grades-tests-degree-andreessen-horowitz-launching-sf-academy-bu...
1•jnord•20m ago•0 comments

The "C" Word

https://blog.coredump.cx/p/the-c-word
2•surprisetalk•21m ago•0 comments

The Story Of Mel: A Real Programmer

https://melsloop.com/stories/the-story-of-mel/articles
1•signa11•23m ago•0 comments

Semantics Delivery Network: Rethinking Web Retrieval for LLM Agents

https://arxiv.org/abs/2609.22486
1•scottsiume•27m ago•1 comments

Browsers Situationship: When Browsers Agree but the Spec Doesn't

https://www.atbrakhi.dev/blog/browsers-situationship
2•cpeterso•29m ago•0 comments

The Bikeshed Email (1999)

https://phk.freebsd.dk/sagas/bikeshed/
1•theanonymousone•31m ago•0 comments

Spy Exhaustion Reversal Gauge

1•jakins1777•31m ago•0 comments

Layoff.tools: Help Solve Unemployment

https://layoff.tools/
3•mxfactorial•35m ago•1 comments

Turn Text into Actions with Needle, 14Mb

https://www.raspberrypi.com/news/turn-text-input-into-actions-with-needle-a-14mb-function-calling...
1•unprovable•41m ago•0 comments

Python Enhancement Proposal 824: None-coalescing operators

https://peps.python.org/pep-0824/
2•theanonymousone•44m ago•0 comments

Psilocybin as a treatment for repetitive mild head injury [pdf]

https://www.nature.com/articles/s42003-026-10804-w.pdf
2•dr_dshiv•51m ago•0 comments

ArchKeel – results from 2 large agentic refactoring experiments

https://github.com/rapiddweller/archkeel
3•ake2l•57m ago•0 comments

A Whistleblower Claims the CIA Is Searching DNA Sites for Alien-Human Hybrids

https://www.vice.com/en/article/a-whistleblower-claims-the-cia-is-searching-dna-sites-for-alien-h...
3•handfuloflight•58m ago•0 comments

Early rogue AI agent activity and attempts to hack found on urlquery.net

https://transluce.org/agent-activity
2•snikolaev•1h ago•0 comments

LensVLM: Selective Context Expansion for Compressed Visual Representation OfText

https://arxiv.org/abs/2605.07019
1•KitN•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.