frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Why Cloudflare rule order matters?

https://www.brzozowski.io/web-applications/2025/03/11/why-cloudflare-rule-order-matters.html
1•redfr0g•20s ago•0 comments

Never knew news websites could survive without ads

https://text.npr.org/
1•dheerajmp•27s ago•0 comments

Google.org Future of Work: 5 years of impact and lessons for the AI era

https://blog.google/company-news/outreach-and-initiatives/google-org/future-of-work-impact-report/
1•salkahfi•2m ago•0 comments

Custom AI Smart Speaker

https://openhome.com
1•edf13•4m ago•0 comments

Ask HN: Ten YoE as a software engineer, what's next with LLMs coming in fast?

1•Tmkly•6m ago•0 comments

Finding Hope in the Shape of Failure: Bottling Infinity in Distributed Systems

https://forkracefold.com/
1•taylorbuley•7m ago•0 comments

WebMCP

https://github.com/webfuse-com/awesome-webmcp
2•tonysurfly•9m ago•0 comments

Given a narrator

https://andrewshawcare.com/given-a-narrator/
1•andrewshawcare•10m ago•0 comments

Mr. Nobody for Putin

https://ru.themoscowtimes.com/2026/02/27/gospodin-nikto-za-putina-a188312
1•profstasiak•13m ago•1 comments

Ask HN: Did GitHub Remove Opus and Sonnet from Their Copilot Pro Subscription?

3•lgl•15m ago•0 comments

Web Rewind – A Touch of Nostalgia

https://www.web-rewind.com/
1•mistat•17m ago•0 comments

Echoed – A Lightweight Discord Alternative

https://echoed.gg/
1•shaongitbd•17m ago•0 comments

The State of Allocators in 2026

https://cetra3.github.io/blog/state-of-allocators-2026/
2•ashvardanian•19m ago•0 comments

ASAT (Advanced Spreadsheet Alteration Tool)

https://github.com/okt4v/ASAT
1•okt4v•20m ago•1 comments

Show HN: Generate, Clean, and Prepare LLM Training Data, All-in-One

https://github.com/OpenDCAI/DataFlow
1•Junnn•22m ago•0 comments

Would maintaining such an open-source project be helpful to my career?

https://github.com/keminze/volo-data
1•kkmz•22m ago•0 comments

BriefMe – AI meeting briefs auto-generated from your calendar (no manual input)

https://www.briefme.wtf
1•Dev_Alex•22m ago•0 comments

Claude – Ask me 10 clarifying questions

https://zencapital.substack.com/p/claude-ask-me-10-clarifying-questions
1•zenincognito•26m ago•1 comments

If AI Writes the Code, Who Builds the Next Open Source Project?

https://blog.scottlogic.com/2026/03/15/if-ai-writes-the-code-who-builds-the-next-open-source-proj...
1•ColinEberhardt•26m ago•0 comments

Would You Help Me?

https://comuniq.xyz/post?t=860
1•01-_-•26m ago•0 comments

3D tic tac toe – coded via WhatsApp massages to OpenClaw

https://arthur-ficial.github.io/tictactoe-3d/
1•franze•28m ago•0 comments

Ask HN: Claude Code Phantom Usage

1•randoments•29m ago•0 comments

Bonsai: Use It Where Eval() Would Be Reckless

https://danfry1.github.io/bonsai-js/
1•thunderbong•29m ago•0 comments

Google's Gemini AI chatbot rolling out to all Hongkongers

https://hongkongfp.com/2026/03/16/googles-gemini-ai-chatbot-finally-rolling-out-to-all-hongkongers/
1•ksec•30m ago•1 comments

OpenCLI – Turn any website into a CLI, reusing your Chrome login

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

South Korea to get functioning Google Maps

https://www.scmp.com/news/asia/east-asia/article/3345293/south-korea-finally-get-fully-functionin...
2•ksec•32m ago•0 comments

The Coding Agent Bootstrap

https://www.monperrus.net/martin/coding-agent-bootstrap
2•ColinEberhardt•32m ago•0 comments

Catenator – an open standard for machine-readable AI specs

https://catenator.com/docs
1•parthupadhye•33m ago•1 comments

Shopify CEO Tobias Lütke Against Liquid, Shopify's OSS Ruby Template Engine

https://simonwillison.net/2026/Mar/13/liquid/
2•talboren•35m ago•1 comments

Rise of the AI Soldiers

https://time.com/article/2026/03/09/ai-robots-soldiers-war/
2•bbor•36m ago•0 comments
Open in hackernews

Show HN: OpenEvolve – open-source implementation of DeepMind's AlphaEvolve

8•codelion•9mo 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•9mo 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•9mo ago
How many tokens did it take to generate the 800 versions of the code?
codelion•9mo ago
Checked my openrouter stats, it took ~3M tokens but that involved quite a few runs of various experiments.