frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

BoE Governor says Plans to limit food prices 'not sustainable'

https://www.thetimes.com/business/economics/article/m-and-s-boss-attacks-preposterous-food-price-...
1•petethomas•1m ago•0 comments

I 100% vibecoded a webgame that makes money

https://gunguesser.com
1•abhahbnar•6m ago•0 comments

Musk's SpaceX Reveals Its Finances for the First Time

https://www.nytimes.com/2026/05/20/technology/elon-musk-spacex-ipo.html
1•1vuio0pswjnm7•6m ago•1 comments

Show HN: SkinMax – AI Skin Care Coach

https://howolddoyoulook.com/app
1•beast200•6m ago•0 comments

Anthropic says it's about to have its first profitable quarter

https://techcrunch.com/2026/05/20/anthropic-says-its-about-to-have-its-first-profitable-quarter/
1•nl•9m ago•1 comments

Jeff Bezos says bottom half of earners should pay zero in income taxes

https://www.cnbc.com/2026/05/20/jeff-bezos-income-taxes.html
1•khutorni•12m ago•0 comments

OpenAI Stargate: where the US sites stand

https://epoch.ai/blog/openai-stargate-where-the-us-sites-stand
2•nl•14m ago•0 comments

Meta Begins Laying Off Employees as It Transforms Around AI

https://www.wsj.com/tech/ai/meta-begins-laying-off-thousands-of-employees-as-it-transforms-around...
2•1vuio0pswjnm7•14m ago•0 comments

Wispr Flow Is Broken

https://old.reddit.com/r/WisprFlow/comments/1thejf4/wisprflow_what_is_going_on/
1•ayushchat•15m ago•0 comments

Put yourself in a loop with your coding agents

https://github.com/AsteroidHunter/expediter
2•AsteroidHunter•15m ago•1 comments

Dumbshit.app

https://dumbshit.app
2•robsch•15m ago•0 comments

DiffsHub

https://diffshub.com/
2•tosh•17m ago•0 comments

PR Diff Speed Matters

https://twitter.com/mitchellh/status/2057229385963618787
2•tosh•18m ago•0 comments

[RFC] Open Access to Standards Documents – LLVM Project

https://discourse.llvm.org/t/rfc-open-access-to-standards-documents/90856
1•matt_d•18m ago•0 comments

Show HN: FKS2G – LLM-backed metrics for deciding how closely to review code

https://github.com/kmdupr33/fks2g
1•kmdupree•20m ago•0 comments

The Unreasonable Effectiveness of HTML

https://claude.com/blog/using-claude-code-the-unreasonable-effectiveness-of-html
1•galsapir•23m ago•0 comments

Sparrow compliance check for Linux configs

https://github.com/melezhik/Sparrow6/blob/master/documentation/taskchecks.md
1•melezhik•25m ago•1 comments

A Practical Guide to Profiling in Go

https://blog.jetbrains.com/go/2026/05/20/golang-profiling-guide/
3•signa11•34m ago•0 comments

Curly braces: An evolution of UNIX and C

https://thalia.dev/blog/unix-braces/
2•matt_d•35m ago•0 comments

Deterministic ad engine that refuses to lie – verified with SQL

https://alloceraintelligence.com/
1•allo1•36m ago•1 comments

The Sound of Cancer

https://twitter.com/Elise__Jenkins/status/2056938362548756561
1•pppone•39m ago•0 comments

Technology usually creates jobs for young, skilled workers. Will AI do the same?

https://news.mit.edu/2026/technology-creates-jobs-young-skilled-workers-ai-0521
2•SVI•39m ago•2 comments

Dirplot

https://deeplook.github.io/dirplot/
3•jonbaer•40m ago•0 comments

NanoTag: Systems Support for Efficient Byte-Granular Overflow Detection on Arm

https://github.com/ice-rlab/NanoTag
1•matt_d•42m ago•0 comments

Zed Terminal Threads

https://zed.dev/blog/terminal-threads
3•_august•44m ago•0 comments

He Lost It at the Movies

https://www.theideasletter.org/essay/he-lost-it-at-the-movies/
1•tintinnabula•46m ago•0 comments

Microsoft's LinkedIn Is Cutting Jobs in Latest Industry Cull

https://www.bloomberg.com/news/articles/2026-05-13/microsoft-s-linkedin-is-cutting-jobs-in-latest...
1•1vuio0pswjnm7•46m ago•0 comments

Quote Origin: In Physics, Almost Everything Is Discovered

https://quoteinvestigator.com/2026/05/20/physics-holes/
1•Tomte•47m ago•0 comments

Files.md

https://app.files.md/
2•memalign•47m ago•0 comments

UK radio station apologises for accidentally announcing death of King Charles

https://www.theguardian.com/tv-and-radio/2026/may/20/uk-radio-station-apologises-for-accidentally...
2•Tomte•48m ago•0 comments
Open in hackernews

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

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