frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

90%+ of all fab litho equipment that has ever been made is still being used

https://twitter.com/IanCutress/status/2064530740038287638
2•JumpCrisscross•1m ago•0 comments

NoodleRack: Modular Synth in the Browser

https://noodlerack.com
1•kesor•2m ago•0 comments

Post‑match summary reports for all FIFA World Cup 2026

https://www.fifatrainingcentre.com/en/fifa-world-cup-2026/match-report-hub.php#
1•luispa•4m ago•0 comments

Intel Should Raise Capital

https://newsletter.semianalysis.com/p/intel-should-raise-capital
1•JumpCrisscross•5m ago•0 comments

User reported bug skill to help the agent debug

https://github.com/Anhydrite/user-reported-bug-skills
1•anhydrite•6m ago•0 comments

Certain of the One Thing They Can't Explain

https://hari.computer/certainty-is-the-signature
1•markovblanket•9m ago•0 comments

Amazon and the White House Ended Anthropic's Fable

https://www.axios.com/2026/06/13/anthropic-amazon-white-house
3•themgt•12m ago•1 comments

Anthropic Halts Foreign Accesss to Fable 5 and Mythos 5

https://catenaa.com/industries/technology/anthropic-halts-foreign-accesss-to-fable-5-and-mythos-5/
1•NewsCatenaa•12m ago•2 comments

Flight Emissions Calculator

https://github.com/bartvm/flight-emissions
1•bartvm•13m ago•0 comments

Amazon CEO's Talks with U.S. Officials Triggered Crackdown on Anthropic Models

https://www.wsj.com/tech/ai/amazon-ceos-talks-with-u-s-officials-triggered-crackdown-on-anthropic...
2•TravisJamison•13m ago•2 comments

The AI Bubble Monitor

https://cepr.net/publications/ai-bubble-monitor/
1•mooreds•13m ago•0 comments

Built this game with fable just before it went down

https://tiforia.live
2•zcapps•14m ago•0 comments

The history of butterfly swimming

https://www.swimming.org/sport/history-of-butterfly/
2•mooreds•14m ago•0 comments

Andy's Laws of AI in Software Engineering

https://andymaleh.blogspot.com/2026/06/andys-laws-of-ai-in-software-engineering.html
1•mooreds•16m ago•0 comments

Show HN: Open-Sourced Approxima, Our Agentic QA Tool to Catch Breakages Faster

https://github.com/Approxima-AI/Approxima-OSS
1•Intragalactic•18m ago•0 comments

The RTX Spark Is Not an Apple Silicon Competitor

https://wesbrown18.medium.com/the-rtx-spark-is-not-an-apple-silicon-competitor-6789ca8452ff
1•hasheddan•18m ago•0 comments

What a Great Day for Anthropic

https://ognjen.io/what-a-great-day-for-anthropic/
2•rognjen•20m ago•0 comments

Love Hate Relationships with Facebook, and Its Surprising Role in My Healthcare

https://undercoverlocal.wordpress.com/2025/02/02/love-hate-relationships-with-facebook-and-its-su...
1•airhangerf15•20m ago•0 comments

Extinction-Level Capitalism

https://matthewbutterick.com/extinction-level-capitalism.html
2•59nadir•23m ago•0 comments

Technical debt has caught up to me again (storage)

https://eggrain.blog/technicaldebtonooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo...
2•eggrain•27m ago•0 comments

Show HN: GEDD – A Systematic Evidence Driven LLM as a Judge Framework

https://github.com/aws-samples/sample-GEDD
1•balasvce2026•27m ago•0 comments

LLMs aren't conscious (and thinking they are is culturally dangerous)

https://www.theintrinsicperspective.com/p/dont-dethrone-consciousness
4•momentmaker•28m ago•0 comments

New Claude Opus 4.6, Stock Sell-Off and Super Bowl Ads

https://cmpld.ai/issues/004/
1•mantcz•31m ago•0 comments

Engram: Offline MCP memory server for AI coding tools to share memory

https://github.com/dgr8akki/engram
2•dgr8akki•34m ago•0 comments

Anthropic suspends new AI tools over US Government security concerns

https://www.bbc.com/news/articles/c932g3v3e13o
4•wslh•35m ago•1 comments

Rival GPUs Share One Linux Desktop

https://news.opensuse.org/2026/06/11/rival-gpus-share-desktop/
2•ferryth•40m ago•0 comments

China's control over indium phosphide exports threatens AI data centre rollout

https://www.reuters.com/world/china/chinas-control-over-indium-phosphide-exports-threatens-ai-dat...
2•ironyman•40m ago•1 comments

Why Millions Are Falling for Thailand's Same-Sex Romance Dramas

https://www.bloomberg.com/news/features/2026-06-12/thailand-turns-boys-love-girls-love-tv-dramas-...
2•petethomas•42m ago•0 comments

Zero Calcium. Doubled Plaque

https://substance-over-noise.beehiiv.com/p/zero-calcium-doubled-plaque
1•brandonb•47m ago•0 comments

Judge orders Trump admin to restore Park changes at sites that 'disparaged' US

https://apnews.com/article/trump-national-parks-lawsuit-c39eee6f77c2e782fc494e2167bf5a39
7•petethomas•50m ago•2 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.