frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Anthropic and Nscale strike $45B cloud deal, sources say

https://www.cnbc.com/2026/08/26/anthropic-and-nscale-strike-45-billion-cloud-deal-sources-say.html
1•geoffbp•4m ago•0 comments

NVIDIA's quarterly revenue doubles to nearly $100B as CEO declares 'golden age'

https://www.theguardian.com/technology/2026/aug/26/nvidia-quarterly-revenue
1•andsoitis•6m ago•0 comments

High-Resolution Imaging for Statistical Validation of TESS Planet Candidates

https://arxiv.org/abs/2608.21560
3•mikecollier•8m ago•0 comments

Revenues at Nvidia more than double to $96B

https://www.thetimes.com/business/companies-markets/article/revenues-nvidia-more-than-double-2z95...
1•geoffbp•9m ago•0 comments

S1: In-Context Learning for Robotics

https://skild.ai/blogs/s1
1•epsteingpt•11m ago•1 comments

Show HN: KMF Leaderboard – Let GitHub Sponsors vote on issues and message you

https://my.kmf-lab.com/leaderboard
1•nathantippy•11m ago•0 comments

Google Moves AI-Responsibility Team Out of DeepMind Lab in Latest Shake-Up

https://www.wsj.com/tech/ai/google-moves-ai-responsibility-team-out-of-deepmind-lab-in-latest-sha...
2•geoffbp•12m ago•0 comments

The Performance Inequality Gap, 2026

https://infrequently.org/2025/11/performance-inequality-gap-2026/
2•luu•17m ago•1 comments

UUID in Manticore: A Practical Guide

https://medium.com/@s_nikolaev/uuid-in-manticore-a-practical-guide-101f1b505ded
1•snikolaev•17m ago•0 comments

Engineers laid off at Apple headquarters

https://www.sfgate.com/tech/article/apple-engineers-layoff-22403206.php
3•vinayakborkar•18m ago•0 comments

Nvidia has been in talks to acquire Hugging Face for more than $13B

https://www.businessinsider.com/nvidia-in-talks-to-buy-hugging-face-13-billion-dollars-2026-8
5•mfiguiere•22m ago•1 comments

MitM Is a Feature

https://www.labcraft.dev/blog/mitm-is-a-feature
1•anandsuresh•23m ago•0 comments

Mamdani did not 'doxx' wealthy New Yorkers

https://popular.info/p/did-mamdani-doxx-wealthy-new-yorkers
4•toomuchtodo•23m ago•1 comments

Listen to Wikipedia

https://listen.hatnote.com/#en,uk,hy,et,el,hu,be,gu,kn,ta,bn,zh,fa,it,es,ru,ro,pt,no,bg,mk,sa,mr,...
2•Rendello•25m ago•0 comments

We run stateful AI agents on a serverless infra

https://maritime.sh
1•mariagorskikh1•30m ago•0 comments

Business Process Model and Notation

https://en.wikipedia.org/wiki/Business_Process_Model_and_Notation
2•zatkin•31m ago•0 comments

Lost / Burned Coins – Chainquery.com

https://chainquery.com/lists/lost-coins
2•DeanMorgan•33m ago•0 comments

CRISPR: Isn't that your problem solved? (2025)

https://www.cureffi.org/2025/03/11/base-editing/
2•gone35•40m ago•0 comments

PaaS IaaS GaaS all in one. And 2 AI <compound> models

2•Notelife87•45m ago•0 comments

GlucoFM: Foundation model for continuous glucose monitoring

https://research.google/blog/glucofm-foundation-model-for-continuous-glucose-monitoring/
2•0xedb•47m ago•0 comments

Apple's new motion graphics video makes me feel Old

https://www.goodboy.ninja/blog/the-new-mac-studio-m5-motion-graphics-video-makes-me-feel-old
2•goodboyninja•49m ago•1 comments

Playdate surprises customers with tariff refund

https://www.oregonlive.com/silicon-forest/2026/08/portland-video-game-company-surprises-customers...
4•SwellJoe•50m ago•0 comments

Compromising Signal's Contact Discovery Enclave

https://v12.sh/blog/signal
3•ryanwhitney•50m ago•0 comments

Show HN: A shop-owner simulator and visual novel set in the early 2000s [video]

https://www.youtube.com/watch?v=o2J_H6metLI
3•hollowlimb•51m ago•0 comments

Physical AI Is Enabled by Mechanical Hardware

https://www.agilityrobotics.com/research-analysis/physical-ai-is-enabled-by-mechanical-hardware
2•realysy•56m ago•0 comments

Cookies Are 3D-Printed and Made of Recycled Plastic

https://www.cnet.com/science/cookies-from-recycled-plastic-siu-carbondale-research/
2•chumaltd•57m ago•0 comments

Taste testing Raiders Lime: '90s nostalgia in a cardboard carton

https://www.canberratimes.com.au/story/6158489/taste-testing-raiders-lime-90s-nostalgia-in-a-card...
2•thunderbong•58m ago•0 comments

DHH: Future of Programming – Lex Fridman Podcast #501 [YouTube, 5 Hours]

https://www.youtube.com/watch?v=NYFGCESmikA
6•kylecazar•59m ago•0 comments

He Thought He Destroyed a Flock Camera, but It Was a Decoy, Police Say

https://www.nytimes.com/2026/08/26/us/flock-camera-decoy-vandalism-arrest-florida.html
2•xnx•1h ago•0 comments

Amazon just tripled its order of Nvidia chips over 'surging demand'

https://techcrunch.com/2026/08/26/amazon-just-tripled-its-order-of-nvidia-chips-over-surging-demand/
2•jnord•1h ago•1 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.