frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Markdown Gatekeeper – one current source per topic for AI agents

https://github.com/nanlogic/markdown-gatekeeper
2•sacravenger•2m ago•0 comments

TrackerControl for Android

https://trackercontrol.org/
1•uoaei•3m ago•0 comments

What we've learned building cloud agents

https://cursor.com/blog/cloud-agent-lessons
1•shenli3514•4m ago•0 comments

Show HN: Pastecmd – copy/paste between Phone/PC, end-to-end encrypted

https://pastecmd.com
2•DavidD•7m ago•0 comments

A Hedge-Fund Titan's Divorce Is Putting Wall Street's Staggering Wealth on Publi

https://www.wsj.com/personal-finance/a-hedge-fund-titans-divorce-is-putting-wall-streets-staggeri...
2•kamaraju•10m ago•0 comments

EngineRed: Asymmetric AI Warfare

https://sma-das.blog/blogs/enginered-asymmetric-ai-warfare
1•smadas•10m ago•0 comments

Insightify – AI review analytics for Shopify

https://apps.shopify.com/aireview-analyzer
1•Insightify•11m ago•0 comments

Show HN: Haserupt – A new way to reduce your phone usage

https://www.haserupt.com
2•vishalds•12m ago•0 comments

A Switch-Level Simulation Model for Integrated Logic Circuits (1981) [pdf]

https://www.cs.cmu.edu/~bryant/pubdir/MIT-LCS-TR-259.pdf
1•gregsadetsky•15m ago•0 comments

3D Spatial Transformer Network (2016)

https://github.com/shubhtuls/stn3d
1•peter_d_sherman•16m ago•0 comments

An Interpretation of the POSIX regex Standard [pdf]

https://dn790006.ca.archive.org/0/items/glenn_fowler_interpretation_of_posix_standard/glenn_fowle...
1•pcfwik•19m ago•0 comments

Dropbox says about 5k accounts compromised in August hack

https://www.reuters.com/technology/dropbox-says-about-5000-accounts-compromised-august-hack-2026-...
1•malshe•20m ago•0 comments

Firefox's new native iOS ad blocker won't block all ads

https://www.neowin.net/news/you-can-now-block-some-ads-in-firefox-on-ios/
3•bundie•25m ago•0 comments

LiveTube Yt live Front End

https://ytfe.vercel.app/
1•alexander2002•28m ago•0 comments

AI wealth is creating a 'mansion shortage' upending San Francisco housing market

https://text.npr.org/nx-s1-5930432
3•1659447091•29m ago•1 comments

32nd Annual Interactive Fiction Competition

https://ifcomp.org/
1•ChicagoDave•30m ago•0 comments

True Rate of Unemployment

https://www.lisep.org/tru
2•ptrhvns•30m ago•0 comments

From poop to plants, how wolves help blueberries grow and spread in northern Min

https://www.mprnews.org/story/2026/08/30/how-wolves-help-blueberries-grow-and-spread-in-northern-...
2•EveryonePoops•31m ago•1 comments

'Idiocracy' Predicted All of This

https://www.texasmonthly.com/culture/mike-judge-idiocracy-turns-20/
2•pseudolus•32m ago•0 comments

Poop-maxxing: How a 30-year-old chart became a hot gut health trend

https://www.nbcnews.com/health/health-news/poop-maxxing-bowel-movement-track-fiber-bristol-chart-...
1•EveryonePoops•33m ago•0 comments

The Next Generation of Blockchains

https://egoblockchain.com/
1•artitmuhaxhiri•34m ago•0 comments

Show HN: One versioned standard for a fleet's Python packages

https://github.com/gojiplus/py-canon
1•neehao•36m ago•0 comments

Show HN: Forum – WebRTC video app with individual stream links for OBS

https://komu-forum.vercel.app/
2•Komumech•41m ago•0 comments

Show HN: Didit.run – did your cron job run?

https://didit.run
1•vi0ne•41m ago•0 comments

The Bitocoin Mining Investor

https://www.thebitcoinmininginvestor.com/?r=85nwr&utm_campaign=referrals-subscribe-page-share-scr...
1•iaspt•42m ago•0 comments

OpenAI having an outage with 5.6 sol?

2•rcleveng•44m ago•1 comments

Were Claude's Weekly Limits Cut in Half? (and obscured by another 50% "deal"?)

2•benwills•47m ago•0 comments

How we could save petabytes of cache storage with Zstandard and Pingora

https://blog.cloudflare.com/cache-transcoding/
1•soheilpro•47m ago•0 comments

Fine, I'll build my own text editor

https://dbushell.com/2026/09/01/text-editor/
1•signa11•49m ago•0 comments

What's the Right Balance in Regulating AI?

https://weightythoughts.com/p/whats-the-right-balance-in-regulating
1•gmays•49m 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.