frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

'Tokenmaxxing' as a weird new trend

https://newsletter.pragmaticengineer.com/p/the-pulse-tokenmaxxing-as-a-weird
1•andsoitis•14s ago•0 comments

Microsoft offers buyouts up to 7% of US employees

https://techcrunch.com/2026/04/23/microsoft-offers-buyout-for-up-to-7-of-u-s-employees/
2•darth_avocado•1m ago•1 comments

TorchTPU: Running PyTorch Natively on TPUs at Google Scale

https://developers.googleblog.com/torchtpu-running-pytorch-natively-on-tpus-at-google-scale/
1•mji•2m ago•0 comments

Our Companywide NanoClaw Setup

https://bitsafe.notion.site/Building-a-Company-Wide-AI-Assistant-Architecture-Security-and-Self-I...
1•akibalogh•3m ago•0 comments

Ask HN: Incoming Meta layoffs, what now?

2•psychanarch•3m ago•0 comments

Toxins from Great Salt Lake dust are absorbed by plants, soils and human bodies

https://phys.org/news/2026-04-toxins-great-salt-lake-absorbed.html
1•littlexsparkee•3m ago•0 comments

AI-Powered Tool Helps Computer Architects Boost Processor Performance

https://news.ncsu.edu/2026/04/cachemind-tool-computer-architecture/
1•rbanffy•4m ago•0 comments

For Enterprises, GPUs Need Virtualization as Much as CPUs Ever Did

https://www.nextplatform.com/control/2026/04/10/for-enterprises-gpus-need-virtualization-as-much-...
1•rbanffy•5m ago•0 comments

Four Years of GreptimeDB: Decisions, Detours, and What We Got Wrong

https://greptime.com/blogs/2026-04-21-greptimedb-four-years-retrospective
1•JeremyFeng•5m ago•0 comments

Why AI data centers might lower electricity prices – not raise them

https://bigthink.com/science-tech/why-ai-data-centers-might-lower-electricity-prices-not-raise-them/
1•lschueller•5m ago•0 comments

How the Tech World Turned Evil

https://newrepublic.com/article/208876/tech-world-evil-musk-bezos-thiel
3•thomasstephan•6m ago•0 comments

Show HN: Object Storage Vendors – Compared

https://storage.mixpeek.com
1•Beefin•9m ago•0 comments

GitHub Merge Queue Silently Reverted Code

https://www.githubstatus.com/incidents/zsg1lk7w13cf
6•matthewbauer•9m ago•2 comments

Personal Daily Briefing (PDB)

https://icbrief.org/
3•billybuckwheat•10m ago•0 comments

How to Be a Hugo Nominee and Come Out of It Happy About the Honor

https://bsky.app/profile/seananmcguire.bsky.social/post/3mjzp5gmipc2z
1•mooreds•10m ago•0 comments

Unauthorized Discord group gained access to Anthropic's Mythos model

https://techcrunch.com/2026/04/21/unauthorized-group-has-gained-access-to-anthropics-exclusive-cy...
2•thoughtpeddler•11m ago•1 comments

US turns to Ukrainian counter-drone tech after Iran attacks, sources say

https://www.reuters.com/business/aerospace-defense/us-turns-ukrainian-counter-drone-tech-after-ir...
1•Teever•12m ago•0 comments

Cryptographic right answers: post quantum and Rust edition

https://kerkour.com/post-quantum-cryptography-recommendations-rust
1•fanf2•13m ago•0 comments

Built something in a Replit buildathon → 45 users in 3 weeks

https://www.indiehackers.com/post/built-something-in-a-replit-buildathon-45-users-in-3-weeks-MCt2...
1•Fateh06khlch•14m ago•0 comments

Rejection and Competition

https://www.emberdione.com/on-rejection-and-competition/
1•sebg•15m ago•0 comments

Steve Ballmer was an underrated CEO

https://danluu.com/ballmer/
1•vkdelta•16m ago•0 comments

What's new for .NET in Ubuntu 26.04

https://devblogs.microsoft.com/dotnet/whats-new-for-dotnet-in-ubuntu-2604/
1•vyrotek•23m ago•0 comments

Amazon S3 now supports five additional checksum algorithms

https://aws.amazon.com/about-aws/whats-new/2026/04/s3-five-additional-checksum-algorithms/
1•gslin•23m ago•0 comments

A bit of XENIX history (2014)

http://seefigure1.com/2014/04/15/xenixtime.html
1•naves•24m ago•0 comments

Brain Regeneration Observatory – a real, long term use of ML and AI that matters

https://brain-regeneration.com/
1•rcarmo•24m ago•0 comments

ArXivLean: How Well Can LLMs Formally Prove Research Math?

https://matharena.ai/arxivlean/
1•OxfordCommand•25m ago•0 comments

Intel's soars 15% as results top estimates

https://www.cnbc.com/2026/04/23/intel-intc-q1-2026-earnings-report.html
2•nodesocket•27m ago•1 comments

LaGuardia firefighter heard 'stop' before crash but didn't know who it was for

https://apnews.com/article/laguardia-air-canada-ntsb-crash-fire-truck-8f59cffd6f8230ec0c0c0c4d6ef...
2•geox•27m ago•0 comments

The Living Lattice – Explorables of the intelligence theorem

https://lattice.project89.org/
1•sebg•28m ago•0 comments

Show HN: Tron Hilbert Curve Macro

https://github.com/EricNelson12/retrocycles-hilbert
2•i_am_a_squirrel•30m ago•0 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.