frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Growing pains: An update on the ListenBrainz service status

https://blog.metabrainz.org/2026/08/19/growing-pains-an-update-on-the-listenbrainz-service-status/
1•rhabarba•31s ago•0 comments

Show HN: Invoicing and Tax for UK Tradespeople

https://tradetally.co.uk
1•wowinter15•46s ago•0 comments

X's algorithm feeds off ragebait and impacts Democrats more, study finds

https://www.404media.co/xs-algorithm-feeds-off-ragebait-and-impacts-democrats-more-study-finds/
1•madihaa•57s ago•0 comments

Would you eat fish raised in wastewater ponds?

https://reasonstobecheerful.world/east-kolkata-wetlands/
1•heavybiscotti•1m ago•0 comments

Internal memo: Eight execs out at Expedia Group in AI-driven shakeup

https://www.geekwire.com/2026/internal-memo-eight-execs-out-at-expedia-group-in-ai-driven-shakeup/
1•NewGoblin•3m ago•0 comments

You Underestimate How Much People Want to Hear from You

https://julienreszka.com/blog/you-underestimate-how-much-people-want-to-hear-from-you/
1•julienreszka•6m ago•0 comments

Australia secures court-enforceable child safety undertaking from Roblox

https://www.reuters.com/legal/government/australia-secures-court-enforceable-child-safety-underta...
1•tartoran•7m ago•0 comments

Unlocking a locked/deactivated e-waste Cricut Maker

https://sprocketfox.io/xssfox/2026/07/01/cricut-unlock/
1•1e1a•8m ago•0 comments

Debugging Postgres Performance Under Row-Level Security

https://engineering.myhoai.com/posts/debugging-postgres-performance-under-row-level-security/
1•zhixuan•8m ago•0 comments

Mark Zuckerberg's AI Manifesto Shows How Little the AI Future Offers

https://illegal.solutions/posts/meta_future
1•totallygeeky•9m ago•1 comments

Help port Thorium Reader to mobile to fight freemium accessibility

https://github.com/edrlab/thorium-reader
1•mous_tik•11m ago•0 comments

Home batteries are suddenly cheap and everywhere. Here's why

https://techcrunch.com/2026/08/19/home-batteries-are-suddenly-cheap-and-everywhere-heres-why/
3•toomuchtodo•12m ago•0 comments

Google Phishing Quiz

https://phishingquiz.withgoogle.com/
2•saikatsg•13m ago•0 comments

Democrats Lost Men

https://www.thefp.com/p/how-democrats-lost-men
1•makerdiety•15m ago•0 comments

One line of JavaScript disabled server rendering on 190 pages

https://watchnext.leyu.studio/blog/one-line-that-disabled-server-rendering
1•oujan•15m ago•0 comments

Show HN: Bewertix – Get More Google Reviews and Win More Customers

https://bewertix.eu
1•not_wowinter13•15m ago•0 comments

Police officer used Flock cameras to track estranged wife 717 times

https://www.wsbtv.com/news/trending/affidavit-police-officer-used-flock-cameras-track-estranged-w...
2•speckx•16m ago•0 comments

Show HN: CopyLasso, a free local screen OCR app for macOS

https://copylasso.com/
3•bennetthilberg•18m ago•0 comments

Smartphone imaging technology and its applications (2021)

https://www.degruyterbrill.com/document/doi/10.1515/aot-2021-0023/html
1•kawera•18m ago•0 comments

From Legacy Bedrock Agents to Strands Agents on Bedrock AgentCore Runtime

https://hypertrail.ai/blog/migrating-from-legacy-bedrock-agents-to-strands-agents-powered-by-amaz...
1•grollat•19m ago•1 comments

Climate Change Tracker

https://climatechangetracker.org
2•a2x•21m ago•0 comments

New term in AI search: On-site live agents

https://embassia.com
1•ramazanaliakdas•21m ago•0 comments

US treasury doubles debt buyback to steady bond market amid inflation fears

https://www.theguardian.com/business/2026/aug/19/us-treasury-doubles-debt-buyback-bond-market
2•almog•22m ago•0 comments

CFTC Requests Comment on the Listing of Compute Derivatives Contracts

https://www.cftc.gov/PressRoom/PressReleases/9286-26
1•petethomas•22m ago•0 comments

Show HN: APISign – E-signature API, templates are Markdown files in your repo

https://apisign.io/
2•wunl•23m ago•0 comments

Book Review: Kakistocracy

https://benthams.substack.com/p/review-kakistocracy
1•paulpauper•23m ago•0 comments

UC Berkeley professor admits to using AI in op-ed

https://www.dailycal.org/news/campus/uc-berkeley-professor-admits-to-using-ai-in-op-ed-calling-ou...
2•paulpauper•24m ago•0 comments

French Constitutional Council Blocks Under-15 Social Media Ban

https://www.techdirt.com/2026/08/19/french-constitutional-council-blocks-under-15-social-media-ba...
1•cdrnsf•24m ago•0 comments

Run GLM-OCR, DeepSeek-OCR-2, Dots.mocr with an OpenAI Compatible API

https://www.vlm.run/product/gateway
6•fzysingularity•25m ago•0 comments

Computational Life Reactor (Based on Brainfuck)

https://alexborger.com/clr-computational-life-reactor
1•a2x•26m 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.