frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Enterprises Are Rethinking Kubernetes

https://www.infoworld.com/article/4161056/enterprises-are-rethinking-kubernetes.html
1•milkglass•36s ago•0 comments

Talk a stranger for fun or everything else

https://bakbak.fun/
1•chintan39•12m ago•1 comments

The West Forgot How to Make Things. Now It's Forgetting How to Code

https://techtrenches.dev/p/the-west-forgot-how-to-make-things
2•milkglass•15m ago•0 comments

The Coding Assistant Breakdown: More Tokens Please

https://newsletter.semianalysis.com/p/the-coding-assistant-breakdown-more
1•gmays•17m ago•0 comments

WTF Are Metaballs?

https://www.youtube.com/watch?v=LW03EEKjy9o
2•gdubs•18m ago•1 comments

Iran war hits Dubai chocolate pistachio supplies

https://www.ft.com/content/438ef32a-59e5-41b3-a0da-569716385347
1•KnuthIsGod•25m ago•0 comments

CO operating system age-verification open-source exemption doesn't include Linux

https://twitter.com/LundukeJournal/status/2048199650117554678
2•gasull•28m ago•0 comments

Why Rome Never Industrialized [video]

https://www.youtube.com/watch?v=uR8-AF6NJcc
2•Khaine•40m ago•1 comments

A Taiwanese Vestige in the Geedge Supply Chain

https://interseclab.org/research/madlink-a-taiwanese-vestige-in-the-geedge-supply-chain/
3•gslin•46m ago•0 comments

Show HN: Implit – Catch fake AI-generated dependencies

https://github.com/build-neurall/implit
1•neurall-build•50m ago•0 comments

Modern, Simple, Web Framework in C. REST, Templates, SSL, Metrics

https://github.com/briandowns/libpapago
1•ieska328•55m ago•0 comments

Rootless virtual machines with KVM and QEMU (2024)

https://developers.redhat.com/articles/2024/12/18/rootless-virtual-machines-kvm-and-qemu
1•adityaathalye•1h ago•0 comments

A suspect is in custody after Trump is rushed from correspondents' dinner

https://www.npr.org/2026/04/25/nx-s1-5799544/trump-white-house-correspondents-dinner
6•qmr•1h ago•0 comments

The American Wealth Curve: How the Gap Widens 8x Between Age 25 and 65

https://efficientdollar.com/blog/wealth-curve-by-age/
4•lundj•1h ago•0 comments

Aube – a fast Node.js package manager

https://aube.en.dev
1•microflash•1h ago•0 comments

How to train your brain to see possibility instead of doom

https://www.theguardian.com/books/2026/apr/19/how-to-train-your-brain-to-see-possibility-instead-...
3•1659447091•1h ago•0 comments

Revocation

https://www.potaroo.net/ispcol/2026-04/revocation.html
1•aragilar•1h ago•0 comments

First Paid Subscribers on Mymarks.net

https://mymarks.net/
2•shozzipen•1h ago•0 comments

Simple Sabotage of Agents

https://alexschroeder.ch/view/2026-03-12-agent-sabotage
1•Tallain•1h ago•0 comments

AGPLv3§74 Empowers Users to Thwart Badgeware Like OnlyOffice

https://sfconservancy.org/blog/2026/apr/16/badgeware-onlyoffice-nextcloud-affero-gpl/
39•pabs3•1h ago•1 comments

I Got 122 World Records to Prove a Point [video]

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

French tax official sold crypto investors' addresses: kidnappings followed

https://twitter.com/MarioNawfal/status/2047773069607854512
4•MrBuddyCasino•1h ago•0 comments

Stt.ai MCP Server

https://pypi.org/project/sttai-mcp/0.1.0/
1•nadermx•1h ago•0 comments

Consumer routers hacked by Russia's military

https://arstechnica.com/security/2026/04/russias-military-hacks-thousands-of-consumer-routers-to-...
1•pabs3•1h ago•0 comments

What are some unforeseen / elusive edge cases you have seen in your career?

https://www.reddit.com/r/ExperiencedDevs/s/FIQYb1Fg8x
2•rainhacker•1h ago•0 comments

Show HN: Browse GitHub repos in Emacs without cloning

https://github.com/agzam/remoto.el
6•iLemming•2h ago•5 comments

Maine's governor vetoes data center moratorium

https://techcrunch.com/2026/04/25/maines-governor-vetoes-data-center-moratorium/
1•SilverElfin•2h ago•0 comments

All About USB-C: Resistors and Emarkers (2023)

https://hackaday.com/2023/01/04/all-about-usb-c-resistors-and-emarkers/
2•walterbell•2h ago•0 comments

I asked my local LLM to add 23 numbers and got seven wrong answers

https://viggy28.dev/article/local-llm-seven-wrong-answers/
3•vira28•2h ago•2 comments

Godot 4.7 Beta with HDR Output, Ray-Tracing Improvements and Editor Enhancements

https://www.phoronix.com/news/Godot-4.7-Beta
11•shpat•2h ago•1 comments
Open in hackernews

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

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