frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Why SpaceX 2040 Revenue FCST $4.3T in highly unlikely

https://www.matteast.io/spacex-escape-velocity.html
1•meast•13s ago•0 comments

A small, self-hosted HTTP API that turns HTML, URLs and JSON into PDF/A-3a

https://pdf-ua-api.bambamboole.com/
1•robin_reala•3m ago•0 comments

Show HN: Meadow Mind – a 7B diffusion LLM plays Gym games with zero training

https://github.com/Hey-Meadow/meadow-mind
1•akaiHuang•3m ago•0 comments

Flock Blocks Itself from Wayback Machine: How Companies Can Erase Their History

https://ipvm.com/reports/flock-wayback
1•jhonovich•3m ago•0 comments

SplitShot

https://splitshot.co/
1•kolachalama•4m ago•0 comments

GeoLibre 1.0

https://geolibre.app/
2•jonbaer•5m ago•0 comments

Using biotelemetry to assess drone effects on whale sharks

https://esajournals.onlinelibrary.wiley.com/doi/10.1002/ecs2.70575
1•PaulHoule•5m ago•0 comments

CC-Ledger: Cost Controls for Claude Code

https://ccledger.dev
1•tejpalv•6m ago•1 comments

Beware the Benedict Bot

https://firstthings.com/beware-the-benedict-bot/
1•cratermoon•6m ago•0 comments

Insurers aren't the main villain of the U.S. health care system

https://www.noahpinion.blog/p/insurers-arent-the-main-villain-of
3•paulpauper•7m ago•0 comments

The $20 fix that solved traffic deaths

https://www.youtube.com/watch?v=tMBR3ur1egk
1•amai•8m ago•0 comments

The Progressive Movement, 1898-1914

https://arnoldkling.substack.com/p/the-progressive-movement-1898-1914
1•paulpauper•8m ago•0 comments

Show HN: SlopGuard, a GitHub App that quarantines AI slop PRs and issues

https://slopguard.app
1•blue-b•9m ago•0 comments

You can't fix a broken process by bolting AI on top of it

https://roganov.me/blog/token-irresponsibility/
2•IFC_LLC•10m ago•0 comments

Immigration Laws Are Made to Be Broken

https://www.betonit.ai/p/immigration-laws-are-made-to-be-broken
1•paulpauper•11m ago•0 comments

Following acquisition by OpenAI, Tart is still proprietary software

https://github.com/openai/tart/pull/1238
1•whimblepop•11m ago•1 comments

Every breaking change in the July MCP spec, and how to migrate

https://mcpmigrate.dev/blog/mcp-spec-2026-07-28-migration-guide
1•dougwalseth•13m ago•0 comments

How JPL Keeps the 13-Year-Old Curiosity Rover Doing Science

https://spectrum.ieee.org/curiosity-rover-jpl-mars-science
3•pseudolus•14m ago•0 comments

The Fifth Shift: Saronic's autonomous vessels are a revolution in naval warfare

https://arenamag.com/articles/the-fifth-shift
1•crescit_eundo•16m ago•0 comments

Anthropic Bulks Up Its Enterprise Partner Program Amid IPO Plans

https://www.wsj.com/cio-journal/anthropic-bulks-up-its-enterprise-partner-program-amid-ipo-plans-...
1•gmays•16m ago•0 comments

A key remapping daemon for Linux

https://github.com/rvaiya/keyd
1•joooscha•17m ago•1 comments

Twenty Year Old Unicorn Goes AI-First Without Mass AI Layoffs

https://shiftmag.dev/ai-first-izabel-jelenic-infobip-10156/
2•dxs•18m ago•0 comments

WWDC26: Run local agentic AI on the Mac using MLX [video]

https://www.youtube.com/watch?v=wykPErJ8M-8
3•jorisw•19m ago•1 comments

Reddit's home screen now forces a "for you" feed that cannot be turned off

https://old.reddit.com/r/bugs/comments/1u26ydd/comment/oqvhjvc/
4•jazzypants•19m ago•1 comments

Show HN: Tiny project memory for coding agents

https://github.com/Seven128/project-tiny-context-harness
1•SevenQin•20m ago•0 comments

WWDC 2026: Five Things That Matter

https://systemhyperlink.com/wwdc-2026-five-things-that-actually-matter/
2•timothybsmith•21m ago•0 comments

Improved Tracking of Brownian Milk Globules

https://chillphysicsenjoyer.substack.com/p/improved-tracking-of-brownian-milk
1•crescit_eundo•21m ago•0 comments

Nordstjernen Web Browser 1.0.3

https://github.com/nordstjernen-web/nordstjernen/releases/tag/1.0.3
2•andreasrosdal•22m ago•0 comments

Microsoft restricts Claude Fable for employees over data retention concerns

https://www.theverge.com/report/947575/microsoft-claude-fable-5-restricted-internally
5•speckx•23m ago•0 comments

Elixir for a Bluesky DataPlane: the choice we didn't expect

https://bitcrowd.dev/why-elixir-bluesky-dataplane/
2•s3cur3•23m 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.