frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Layoffs hit Bellevue-based video game studio behind 'Destiny' franchise

https://www.seattletimes.com/business/local-business/layoffs-hit-bellevue-based-video-game-studio...
2•ynac•3m ago•0 comments

Staff Framework – Tornando Desejos Em Metas Verificáveis (Smart Method )

https://fidelissauro.dev/staff-smart-methods/
1•lsferreira42•6m ago•0 comments

New $1M Vesuvius Challenge Grand Prize will be announced in coming days

https://www.youtube.com/watch?v=96oTlQm0KBw
1•janpaul123•8m ago•0 comments

Anthropic Accuses Alibaba of Largest AI Distillation Attack: 28.8M Fraudulent

https://yipzap.com/anthropic-accuses-alibaba-of-largest-ai-distillation-attack-28-8m-fraudulent-e...
1•noida•10m ago•0 comments

The Ticks That Cause Red-Meat Allergies Are Spreading Across the U.S.

https://www.wsj.com/health/the-ticks-that-cause-red-meat-allergies-are-on-the-move-this-summer-b5...
2•rawgabbit•12m ago•1 comments

Razor‐Sharp Edge–The Yakutat Slab Dissecting South‐Central Alaska

https://pubs.geoscienceworld.org/ssa/tsr/article/6/2/230/731510/Razor-Sharp-Edge-The-Yakutat-Slab...
2•gnabgib•12m ago•0 comments

Radxa Orion O6N Review: The Powerful and Silent ARM64 Beast

https://boilingsteam.com/radxa-orion-o6n-review/
1•ekianjo•14m ago•0 comments

How agents are transforming work

https://openai.com/index/how-agents-are-transforming-work/
1•gmays•18m ago•0 comments

An Audit of the Bible and the God in It

https://medium.com/freedomofthought/an-audit-of-the-bible-and-the-god-in-it-0c425c3a2194
1•raynchad•19m ago•0 comments

Ask HN: How do you know when an Ad campaign is doing well?

1•TheRickyRed•22m ago•4 comments

Ask HN: Has anyone deployed AI tools in a trade or field service

1•VaderAi•22m ago•1 comments

Chasing Likes, Losing Connection: Youth Mental Health in the Digital Era

https://medium.com/freedomofthought/chasing-likes-losing-connection-youth-mental-health-in-the-di...
1•raynchad•22m ago•0 comments

Linux Foundation Launches Akrites to Defend FOSS from AI-Enabled Exploits

https://www.phoronix.com/news/Akrites
2•LorenDB•26m ago•0 comments

The Windows Phone that "killed" Nokia

https://www.instagram.com/reel/DZvCjtLM-UQ/
2•cromka•29m ago•1 comments

Sony Confirms 'Significant' Bungie Layoffs

https://www.ign.com/articles/bungie-announces-layoffs-as-it-admits-destiny-2-fell-short-of-expect...
5•mikhael•29m ago•1 comments

DropItDown – Drop a file, get Markdown your AI agent can read (macOS)

https://dropitdown.novashang.com
1•novashang•35m ago•0 comments

How do you get good ideas for startups?

https://www.paulgraham.com/ideas.html
1•Alien1Being•39m ago•1 comments

Extropic is Rethinking Computing

https://extropic.ai/writing/thermodynamic-computing-from-zero-to-one
1•binyu•41m ago•0 comments

CS2-10k: A Large-Scale Egocentric Counter-Strike 2 Dataset

https://reka.ai/news/cs2-10k-a-large-scale-egocentric-counter-strike-2-dataset
1•ilreb•44m ago•0 comments

Using a Rust macro for concise newtypes

https://adenalhardan.com/#rust-macros-concise-newtypes
1•adenalhardan•46m ago•0 comments

Ask HN: How did you set up a multi-agent orchestration for personal use?

2•cromka•52m ago•3 comments

A Deep Dive on China's "LineShine" All-CPU, Exaflops-Class Supercomputer

https://www.nextplatform.com/hpc/2026/06/25/a-deep-dive-on-chinas-lineshine-all-cpu-exaflops-clas...
1•jonbaer•1h ago•0 comments

Anthropic's philosopher answers your questions [video]

https://www.youtube.com/watch?v=I9aGC6Ui3eE
2•binyu•1h ago•1 comments

Silicon Valley Has an Empathy Vacuum (2016)

https://www.newyorker.com/business/currency/silicon-valley-has-an-empathy-vacuum
20•rmason•1h ago•12 comments

Van Halen test

https://en.wikipedia.org/wiki/Van_Halen_test
7•teleforce•1h ago•2 comments

Show HN: FastPlay, a fast minimal Windows video player built in Rust

https://github.com/CalvinSturm/FastPlay
2•CalvinSturm•1h ago•0 comments

Investors bet on AI again after Micron reports 346% sales jump

https://www.cnn.com/2026/06/25/business/micron-results-ai-stocks-volatility
4•dabinat•1h ago•1 comments

Steve Jobs felt certain Apple would never have existed without making blue boxes

https://macdailynews.com/2024/06/19/steve-jobs-felt-certain-apple-would-never-have-existed-withou...
2•SockThief•1h ago•0 comments

Popular Adblock for YouTube extension contains remote code execution

https://www.island.io/blog/badblocker-11-million-users-one-server-call-away-from-compromise
3•fastest963•1h ago•0 comments

Claude AI's link handling and fix

https://www.FoolQuest.com/
2•Aaron_Agassi•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.