frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Five OpenAI announcements in one day tell one story: demos are over

https://oswarld.beehiiv.com/p/openai-s-five-headline-blitz-reveals-its-real-strategic-pivot
1•haebom•1m ago•0 comments

Artist shares how he created Penguin Random House's Playful Penguins campaign

https://www.creativebloq.com/art/illustration/artists-shares-how-he-created-penguin-random-houses...
1•mooreds•2m ago•0 comments

The great fish migrations are collapsing

https://theconversation.com/the-worlds-great-fish-migrations-are-collapsing-thats-a-problem-for-m...
1•mooreds•3m ago•0 comments

I Forked Httpx

https://tildeweb.nl/~michiel/httpxyz.html
1•roywashere•4m ago•0 comments

Agones: A library for hosting, running and scaling dedicated game servers on K8s

https://agones.dev/site/docs/overview/
1•mooreds•5m ago•0 comments

Exclusive eBook: Are we ready to hand AI agents the keys?

https://www.technologyreview.com/2026/03/24/1134531/exclusive-ebook-are-we-ready-to-hand-ai-agent...
1•joozio•6m ago•0 comments

Hyperagents – Self-referential self-improving agents

https://github.com/facebookresearch/Hyperagents
1•h4ch1•6m ago•0 comments

FreeCAD Version 1.1 Released

https://blog.freecad.org/2026/03/25/freecad-version-1-1-released/
1•Klaster_1•11m ago•0 comments

Web developers cache too much

https://websmith.studio/blog/we-cache-too-much/
1•yukiyamata•11m ago•0 comments

US should give up on trying to change EU tech rules, lawmakers say

https://www.politico.eu/article/us-should-give-up-trying-change-eu-tech-rules-lawmakers-say/
1•vrganj•12m ago•0 comments

AI for nuclear energy: Powering an intelligent, resilient future

https://www.microsoft.com/en-us/industry/blog/energy-and-resources/2026/03/24/ai-for-nuclear-ener...
3•mpweiher•22m ago•0 comments

Type Construction and Cycle Detection

https://go.dev/blog/type-construction-and-cycle-detection
2•darccio•23m ago•0 comments

Show HN: I've ditched paper todo lists

https://puranno.com/
2•przemekdz•23m ago•0 comments

From coal to cures: Chinese scientists bring a 160-year-old dream to life

https://www.scmp.com/news/china/science/article/3347300/turning-coal-medicines-chinese-scientists...
1•KnuthIsGod•23m ago•0 comments

Direct Conversion from Alkenes to Alkynes

https://www.nature.com/articles/s41586-026-10372-3
1•KnuthIsGod•24m ago•0 comments

Swift 6.3 Released

https://www.swift.org/blog/swift-6.3-released/
1•mpweiher•24m ago•0 comments

Pg_stat_ch: Deep Postgres observability through ClickHouse

https://github.com/ClickHouse/pg_stat_ch
2•saisrirampur•24m ago•0 comments

Made a random RNN that plays happy birthday

https://malie.github.io/random-rnn-music/
1•brshbrsh•25m ago•0 comments

Show HN: Chronos a Drag-and-Drop Scheduler

1•alekseiavg•25m ago•0 comments

Voxyflow Personal AI bot that executes tasks from your Kanban cards

https://github.com/jcviau81/voxyflow
1•jcviau•28m ago•0 comments

The Cursed Computer Iceberg Meme

https://suricrasia.online/iceberg/
2•pabs3•31m ago•0 comments

Paseri now supports Standard Schema

https://paseri.dev/
1•ek0•37m ago•0 comments

Senseible – Carbon footprint reporting for MSMEs in under a minute

1•Senseible•38m ago•0 comments

Show HN: Articyl – save anything, consume it anywhere (articles, podcasts, RSS)

https://articyl.com/
3•gavdraper•38m ago•3 comments

OpenAI Hires CEO of India's JioStar to Head Up Asia-Pacific

https://www.bloomberg.com/news/articles/2026-03-25/openai-hires-ceo-of-india-s-jiostar-to-head-up...
2•Brajeshwar•41m ago•0 comments

Senseible

1•Sensieble•44m ago•0 comments

Death by Clawd: Scan your business mortality with ClaudeAI

https://deathbyclawd.com
2•KellyCriterion•47m ago•2 comments

Aimemegenerator

https://aimemegenerator.io/
1•aimemegenerator•54m ago•0 comments

Obsolete Sounds

https://citiesandmemory.com/obsolete-sounds/
5•kelseydh•58m ago•2 comments

Minimal Version Selection Revisited

https://matklad.github.io/2024/12/24/minimal-version-selection-revisited.html
2•tosh•1h ago•0 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.