frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Why Many Business Software Systems Fail Before Development Even Starts

https://medium.com/@rdxtbl/why-many-business-software-systems-fail-before-development-even-starts...
1•alkas•1m ago•0 comments

Next car might need 300 GB of RAM, and so will autonomous robots

https://www.theregister.com/2026/03/19/micron_q2_2026/
2•hedora•3m ago•1 comments

PayGate – File paywall for freelancers (pay before download, via Stripe Connect)

https://getpaygate.com/
1•kejneki•6m ago•0 comments

Branded Notion and Coda PDF Exports

https://notioncodapdf.app/
1•prtnm•8m ago•0 comments

A timeline of Mac processor transitions

https://colinmckellar.com/2026/03/12/mac-processor-transitions/
1•K7PJP•9m ago•0 comments

Good AI output hides great output. Cognitive science showed me why

https://thegrahams.au/blog/testing-the-theory
2•mattyg_aus•12m ago•1 comments

Have LLMs Learned to Reason? A Characterization via 3-SAT Phase Transition

https://arxiv.org/abs/2504.03930
1•jacklondon•17m ago•1 comments

Teens allege Musk's Grok chatbot made sexual images of them as minors

https://www.washingtonpost.com/technology/2026/03/16/teens-sue-musk-xai-grok/
3•gnabgib•20m ago•1 comments

Back to the Pet (Again and Again) [video]

https://www.youtube.com/watch?v=IXoZoogMsXA
1•amichail•20m ago•0 comments

Running WPA3-Enterprise in my home network

https://sour.coffee/2026/03/16/running-wpa3-enterprise-in-my-home-network/
1•bbsc•22m ago•0 comments

We Haven't Uploaded a Fly Yet

https://preservinghope.substack.com/p/no-we-havent-uploaded-a-fly-yet
2•arielzj•25m ago•1 comments

One year of developing my own operating system

https://mrunix.me/posts/one-year-osdev/
1•mrunix•26m ago•0 comments

Dial9: A flight recorder for the Tokio Rust library

https://tokio.rs/blog/2026-03-18-dial9
1•carllerche•26m ago•0 comments

Ask HN: Broken "Public Research Articles" Link: Any Support for Google Scholar?

1•yann-gael•27m ago•0 comments

Ask HN: Why do comment threads suddenly seem overwhelmingly bad faith?

2•scoofy•29m ago•2 comments

New Open Source Release

4•BrainDAnderson•30m ago•1 comments

HyperGraph Autorouting

https://blog.autorouting.com/p/hypergraph-autorouting
1•seveibar•32m ago•1 comments

Rust Project Structure

https://www.opal-rt.com/blog/5-types-of-communication-protocols-in-plc-systems/
1•mahirsaid•35m ago•0 comments

MPGe – Miles per gallon gasoline-equivalent

https://en.wikipedia.org/wiki/Miles_per_gallon_gasoline_equivalent
3•gurjeet•37m ago•1 comments

Democratic Backsliding Reaches Western Democracies, U.S. Decline "Unprecedented"

https://www.v-dem.net/news/press-release-democratic-backsliding-reaches-western-democracies-with-...
7•geox•38m ago•0 comments

Why AI has not yet upset India's IT industry

https://www.economist.com/business/2026/03/19/why-ai-has-not-yet-upset-indias-it-industry
2•petethomas•38m ago•0 comments

Memori Launched an OpenClaw Plugin

https://memorilabs.ai/docs/memori-cloud/openclaw/quickstart
1•jay17•38m ago•0 comments

Jeff Bezos in Talks to Raise $100B for AI Manufacturing Fund

https://www.wsj.com/tech/jeff-bezos-aims-to-raise-100-billion-to-buy-revamp-manufacturing-firms-w...
2•clcaev•41m ago•0 comments

Those trendy rear screens won't work with Pixels, because Google

https://www.androidauthority.com/google-pixel-rear-screens-not-compatible-3650053/
2•freedomben•47m ago•0 comments

Cinematic Motion, Stuttery Motion, and the Soap Opera Effect

https://www.rtings.com/tv/learn/research/motion-handling
1•dgroshev•48m ago•0 comments

How Much a Dollar Cost?

https://www.thetechbubble.info/p/how-much-a-dollar-cost
1•bryanrasmussen•48m ago•0 comments

The Day I Discovered Type Design

https://www.marksimonson.com/notebook/view/the-day-i-discovered-type-design/
2•ingve•52m ago•0 comments

Anthropic's "Claude for Open Source" program still charged $200

https://twitter.com/i/status/2034748327628005848
6•arccy•58m ago•0 comments

Walmart wins patents to give algorithms more sway over prices

https://www.ft.com/content/8c2338dc-9e2e-4561-955a-c2a6a6c4d28e
2•petethomas•1h ago•0 comments

Bombarding gamblers with offers greatly increases betting and gambling harm

https://www.bristol.ac.uk/news/2026/march/bombarding-gamblers-with-offers-greatly-increases-betti...
21•hhs•1h ago•16 comments
Open in hackernews

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

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