frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Explyt 5.20 – background task panel for AI agent runs in JetBrains IDEs

https://explyt.ai/docs/explyt-test/whats-new-explyt
1•Explyt-ai•1m ago•0 comments

CVE-2025-13032: Entering and Breaking the Avast Antivirus Sandbox Part 2

https://www.safateam.com/intelligence-hub/research/technical-articles/cve-2025-13032-entering-and...
2•safateam•4m ago•0 comments

A congressional representative just proposed killing America's border tower pro

https://www.technologyreview.com/2026/09/23/1145002/a-congressional-representative-just-proposed-...
1•joozio•5m ago•0 comments

The Efficiency-Throughput Gap with GitHub Copilot

https://cacm.acm.org/research/beyond-the-hype-the-efficiency-throughput-gap-with-github-copilot/
1•fscaramuzza•6m ago•0 comments

Prism Inference

https://prisminference.com
1•handfuloflight•11m ago•0 comments

How to Draw Anything(2025) [video]

https://www.youtube.com/watch?v=-UBbFNeY38k
2•num42•12m ago•1 comments

Jensen Huang says with AI 'in order to save you, they've got to hurt you first.'

https://www.theverge.com/tech/1000140/jensen-huang-nvidia-ai-energy-climate-change-supervillain
3•pera•16m ago•1 comments

Basic Linear Algebra Subprograms (BLAS)

https://en.wikipedia.org/wiki/Basic_Linear_Algebra_Subprograms
1•peter_d_sherman•26m ago•0 comments

CozyToolkit – Free everyday tools for creators

https://cozytoolkit.com/
1•SamuelYMChen•37m ago•0 comments

The moon matters NASA chief: China may deny access to Moon's South Pole

https://arstechnica.com/space/2026/09/nasa-chief-concerned-china-may-deny-access-to-parts-of-sout...
1•worik•38m ago•0 comments

Entrepreneurship and Industry in Europe

https://eudata.vercel.app/
3•duck•39m ago•0 comments

Show HN: Reteach – AI tutor that feels human

https://www.reteach.study/
3•antariksh_verma•42m ago•0 comments

Google plans first test ofAl chips in space under Project Suncatcher

https://blog.google/innovation-and-ai/technology/research/google-project-suncatcher/
2•fork-bomber•47m ago•3 comments

London's schools are running out of children

https://www.ft.com/content/5b019594-5b20-479a-8549-7b564127eb3f
3•2dvisio•47m ago•0 comments

Just how hot and dry was your summer? – UK postcode lookup

https://www.bbc.co.uk/news/articles/cy9zvw47v90o
3•ColinEberhardt•47m ago•0 comments

AMBA – Free and Open Advanced Microcontroller Bus Architecture

https://www.arm.com/architecture/system-architectures/amba
1•peter_d_sherman•49m ago•1 comments

About Those Property Taxes

https://pxlnv.com/linklog/data-centre-property-taxes/
1•danaris•53m ago•0 comments

Show HN: Lift and Coast (Browser based F1 game)

https://lift-and-coast.vercel.app
2•Hussain04•55m ago•0 comments

Recipe for Disaster v1.0

1•stpedgwdgfhgdd•56m ago•1 comments

Show HN: Jevper – an LLM API client constrained to the Jev wire format

https://github.com/zhulinchng/jevper
2•czl_my•58m ago•0 comments

Extracting and Characterizing Hidden Chain-of-Thought in Frontier Models

https://arxiv.org/abs/2609.26637
1•jumploops•59m ago•0 comments

Control-Token Injection Suppresses Chain-of-Thought and Defeats Reasoning-Based

https://arxiv.org/abs/2609.27542
1•sbulaev•1h ago•0 comments

Show HN: A single-use authorization boundary in Rust

3•Founderarcstone•1h ago•0 comments

Peter Thiel slams pope's AI encyclical as gift to Chinese Communist Party

https://www.politico.com/news/2026/09/24/peter-thiel-slams-popes-ai-encyclical-as-gift-to-chinese...
4•vrganj•1h ago•1 comments

Oldest recorded voices, haunted dolls, and more from Tempest Instruments

https://cdm.link/oldest-recorded-voices-haunted-dolls-and-more-from-tempest-instruments/
2•bryanrasmussen•1h ago•0 comments

I stopped letting LLMs do arithmetic

https://medium.com/@jwbobbink/best-search-console-mcp-in-2026-gsc-wizard-7a63f91191ca
6•jwbobbink•1h ago•0 comments

Tell HN: No company scaled revenue as fast as AI companies

2•silexia•1h ago•1 comments

700 MB/s of Kafka throughput, on Postgres

https://rynr.dev/blog/700mbskafgres/
4•theanonymousone•1h ago•0 comments

AI Agents are breaking into Online Retailers for $25 a target

https://gambit.security/blog-posts/autonomous-ai-agents-online-retailers-25-a-company
4•geox•1h ago•0 comments

Taste Bench

https://www.omneky.com/tastebench
7•hsenju•1h 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.