frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

DiffFind – Semantic search and diff for text and documents

https://difffind.com/
1•stephenpince•1m ago•1 comments

Musk – Official Trailer [video]

https://www.youtube.com/watch?v=HP_z7ji3MSY
1•embedding-shape•3m ago•0 comments

Pencils Down, Notation Up

https://intertwingly.net/blog/2026/09/25/Pencils-Down-Notation-Up.html
2•freediver•15m ago•0 comments

Approaching a 10 Second Linux Kernel Build

https://www.phoronix.com/review/near-10-sec-kernel-build
1•zX41ZdbW•15m ago•0 comments

Relnotely, hosted changelog on your own domain, no vendor badge

https://relnotely.com
1•valexi•18m ago•1 comments

A Friendlier Version of I2cdetect

https://github.com/bitbank2/ls_i2c
1•bitbank•22m ago•1 comments

Anatomy of a (Postgres) Search Engine

https://planetscale.com/blog/anatomy-of-a-postgres-search-engine
1•eigenBasis•22m ago•0 comments

The Failed "Hostage Theory" of Nikole Hannah-Jones

https://www.educationprogress.org/p/the-failed-hostage-theory-of-nikole
2•rahimnathwani•26m ago•0 comments

Check is your OpenAI GPT-6-Astra nerfed?

https://is-my-astra-real.pages.dev/
1•nitinreddy88•26m ago•0 comments

Ask HN: Who is the inspiration for your thinking?

2•SMAAART•27m ago•2 comments

Speeding up screensaver 17x by porting from Rust to x86-64 assembler via LLMs

https://twitter.com/dhh/status/2103595410921279635
1•dingaling911•28m ago•1 comments

PostgreSQL and the Linux OOM Killer: A Better Default

https://clickhouse.com/blog/strict-memory-overcommit-for-postgres
1•saisrirampur•49m ago•0 comments

OpenAI agents tried to bruteforce a UN website's API fields

https://swarmcha.se/posts/openai-unctad
2•intunderflow•53m ago•0 comments

SpaceX Pivots Away from Space

https://www.ft.com/content/0fd15797-ac89-4222-a4bb-03a6a1330f48
3•kaycebasques•53m ago•2 comments

Insurers claim AI is increasing healthcare costs

https://techcrunch.com/2026/09/26/insurers-claim-ai-is-already-increasing-healthcare-costs/
2•sbulaev•54m ago•0 comments

Real-Time Feedback: My Closing Move in Every Interview

https://mgrebler.substack.com/p/real-time-feedback-my-closing-move
4•fagnerbrack•1h ago•0 comments

Play Diplomacy against AIs like Claude or GPT: they betray, scheme, etc.

https://twitter.com/olam_labs/status/2103986923346043362
3•sensho•1h ago•0 comments

Privacy-First Natural Language to SQL, No LLMs, No Uploads

https://www.clientvirt.com/
1•teeskay•1h ago•0 comments

Trump administration Plans to Gut Clean Car Rules

https://www.nytimes.com/2026/09/26/climate/trump-fuel-economy-car-rules.html
2•thelastgallon•1h ago•0 comments

What if you removed every electron from 1kg of metal?

https://www.youtube.com/watch?v=jw7x2RoeGIY
1•gosub100•1h ago•0 comments

The AI Doomsday Future Is Not Inevitable

https://theintercept.com/2026/09/14/surveillance-tech-ai-military-flock/
1•jamesgill•1h ago•0 comments

LLM Policies: Progress at All Costs

https://diegoe.be/2026/09/25/llm-policies-progress-at-all-costs/
1•birdculture•1h ago•0 comments

Show HN: Translate Like Me, a Mac menu bar translator that keeps your voice

https://github.com/wiltodelta/translate-like-me
1•kuznetsov_va•1h ago•0 comments

His Novel Had a Shot at a Top Book Prize. Then Someone Ran an A.I. Test.

https://www.nytimes.com/2026/09/25/world/europe/thelyson-orelien-ai-canada-haiti-france.html
3•bookofjoe•1h ago•1 comments

OpenAI (2015)

https://openai.com/index/introducing-openai/
29•andsoitis•1h ago•12 comments

Speech-to-Text Accuracy in 2026: Open-Weight vs. Cloud

https://verli.app/blog/speech-to-text-accuracy-benchmark
2•arttaboi•1h ago•1 comments

Show HN: Cantala – a free Mexican lotería caller with recorded voices

https://cantala.net
1•gomflo•1h ago•0 comments

Geely's AI fast charging 'heals' EV batteries for 20% more cycle life

https://electrek.co/2026/09/25/geely-ai-fast-charging-heals-ev-batteries-pulse-restoration/
1•MilnerRoute•1h ago•0 comments

Marginalia Search

https://marginalia-search.com/
3•thunderbong•1h ago•0 comments

Utilizing Enzymes to Help Treat Tuberculosis

https://www.caltech.edu/about/news/utilizing-enzymes-to-help-treat-tuberculosis
1•gmays•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.