frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Embedded acoustic AI with <16ms latency running on 8MB RAM

https://www.voisace.com/blog
1•shermanliu•7m ago•0 comments

BambuStudio has been violating PrusaSlicer AGPL license since their fork

https://xcancel.com/josefprusa/status/2054602354851254330
1•Tomte•9m ago•0 comments

Concerning Emacs (and Jazz)

https://omidmash.de/blog#concerning-emacs
1•omidmash•13m ago•0 comments

Show HN: Chord Commander – A webapp to organize guitar chords

https://codeberg.org/joexo/chord-commander
1•joexo•16m ago•0 comments

SpaceX IPO: Nice Try Though [video]

https://www.youtube.com/watch?v=IHD8BDFYyGI
1•u1hcw9nx•18m ago•0 comments

A New Supercarrier Emerges Tracking China's Fourth Aircraft Carrier

https://features.csis.org/hiddenreach/china-fourth-carrier/
1•_____k•19m ago•0 comments

Legends of the Ancient Web (2017)

https://idlewords.com/talks/ancient_web.htm
1•downbad_•22m ago•0 comments

Building an AWS Lambda-Like Runtime with Firecracker MicroVMs

https://medium.com/@vivek1502/building-an-aws-lambda-like-runtime-with-firecracker-microvms-42a41...
1•nreece•26m ago•0 comments

Does anyone in your organisation own "correctness" in your AI products?

https://alokit.substack.com/p/nobody-in-your-organization-owns
2•avikalp•29m ago•0 comments

ChatGPT as the AOL of AI

https://rebecca-powell.com/posts/return-on-intelligence-02-moats/
1•maille•32m ago•1 comments

Ask HN: How do small teams securely share env files?

1•tmr_praveen•34m ago•0 comments

Pausing New Challenges – Codecrafters

https://codecrafters.io/blog/pausing-new-challenges
13•prakashqwerty•36m ago•2 comments

I reproduced a Claude Code RCE. The bug pattern is everywhere

https://vechron.com/2026/05/i-reproduced-a-claude-code-rce-the-bug-pattern-is-everywhere/
4•GeorgeWoff25•37m ago•1 comments

Show HN: GobanFTP – the board game Go played through FTP listings

https://github.com/molang163/GobanFTP
1•molang163•38m ago•0 comments

The three futures nobody is building for

https://andrebyrd.substack.com/p/the-three-futures-nobody-is-building-for
1•manofstyle04•39m ago•0 comments

You're Being Judged

https://zenodo.org/records/20352897
1•anasteciadunu•42m ago•0 comments

Nobody Understands Kafka Costs

https://getkafkanated.substack.com/p/nobody-understands-kafka-costs-stanislav
1•enether•43m ago•0 comments

Show HN: Klimkit: my Codex setup for multiple machines

https://github.com/klimentij/klimkit
1•klimentij•43m ago•0 comments

Twelve Ways to Be Wrong About AI-Assisted Coding

https://third-bit.com/2026/05/20/twelve-ways-to-be-wrong/
2•signa11•44m ago•2 comments

AI Ops SOP Pack: SOPs for reviewing AI-assisted engineering work

https://github.com/monkidy/ai-ops-sop-pack
1•monkidy•45m ago•0 comments

Show HN: Source-check politician stock-trade claims against public filings

https://tinyopsstudio.com/congress-disclosure-watchlist-digest
2•tinyopsstudio•46m ago•0 comments

Don't Read the Comments

https://kennethreitz.org/essays/2026-04-10-dont_read_the_comments
3•NicoHartmann•53m ago•0 comments

An interactive linear algebra primer aimed at LLM readers

https://algo-rhythm.dev/en/
6•bytegogogo•54m ago•0 comments

The most RAM efficient modern Linux. Noctalia v5 and LabWC and Artix [video]

https://www.youtube.com/watch?v=CnG32ZOi11s
2•grigio•54m ago•0 comments

AI Reconstructed Dead Pilots' Voices from Public NTSB Records

https://firethering.com/ai-recreated-dead-pilots-voices-ntsb-database/
1•steveharing1•54m ago•0 comments

Show HN: Larksson-lang: everything is a map or an atom

https://github.com/arthurzhu29/larksson
2•arthurzhu29•59m ago•0 comments

Experience: We found a baby on the subway – now he's our 26-year-old son

https://www.theguardian.com/lifeandstyle/2026/may/22/experience-found-baby-subway-now-26-year-old...
43•Michelangelo11•59m ago•5 comments

Don't Roll Your Own

https://susam.net/do-not-roll-your-own.html
3•Tomte•1h ago•0 comments

Sci-bot – AI-powered research assistant, powered by Sci-Hub

https://sci-bot.ru/
2•gasull•1h ago•0 comments

The New Luddite Movement

https://www.ft.com/content/f5c96fa6-5b9b-4951-b71d-e32b3b57d8df
2•quick_brown_fox•1h 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•1y ago
How many tokens did it take to generate the 800 versions of the code?
codelion•1y ago
Checked my openrouter stats, it took ~3M tokens but that involved quite a few runs of various experiments.