frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Dr. Claude: Or, How I Learned to Stop Worrying and Love Whatever It Is This Is

https://harlequin.sh/blog/dr-claude
1•tconbeer•55s ago•1 comments

Both .btc and .bitcoin domain extensions coming

https://namedesk.app/tlds/btc
1•zeppelin_7•1m ago•1 comments

Recently I've received lots of AI emails asking for my feedback

https://bsky.app/profile/carlbergstrom.com/post/3mtbboq46qc23
1•mooreds•2m ago•0 comments

Std: Process:Command is a bad citizen on Windows

https://purplesyringa.moe/blog/std-process-command-is-a-bad-citizen-on-windows/
1•ibobev•2m ago•0 comments

Show HN: Curia – Personal Radio and AI Podcasts

https://curia.surge.sh/
1•chasingimpetus•2m ago•0 comments

Ask HN: GitHub employees what's going on? Why?

3•sharts•2m ago•0 comments

The Government Is Paying for Your Health Insurance, Buddy

https://optimisteconomy.com/episodes/the-government-is-already-paying-for-your-health-insurance-b...
1•mooreds•2m ago•0 comments

Concurrent Servers: Part 7 – Rust

https://eli.thegreenplace.net/2026/concurrent-servers-part-7-rust/
1•ibobev•2m ago•0 comments

Apple ordered to change app data consent prompts on iPhones and iPads

https://www.theverge.com/tech/980977/apple-app-tracking-transparency-settlement-germany
3•mikelgan•3m ago•1 comments

Why people aren't buying Mark Zuckerberg's AI future

https://techcrunch.com/2026/08/16/why-people-arent-buying-mark-zuckerbergs-ai-future/
2•Brajeshwar•4m ago•0 comments

Go 1.27 will make some allocations cheaper

https://lemire.me/blog/2026/08/15/go-1-27-will-make-some-allocations-cheaper/
1•ibobev•4m ago•0 comments

Agentic AI costs set to balloon fivefold by 2028

https://www.theregister.com/ai-and-ml/2026/08/17/agentic-ai-costs-set-to-balloon-fivefold-by-2028...
1•joebuckwilliams•4m ago•0 comments

Frequentism for Bayesians

https://statmodeling.stat.columbia.edu/2026/08/17/he-wants-to-teach-frequentist-methods-to-engine...
2•Tomte•7m ago•0 comments

We will live and work in space–and could be commuting to the moon by 2030

https://fortune.com/2026/08/17/billionaire-founder-predicts-live-work-space-bezos-musk-altman-203...
1•_tk_•7m ago•0 comments

Ask HN: Is this the worst time to be human?

1•bg117•8m ago•2 comments

The cure for AI mansplaining

https://blog.dait.ro/post/ai-mansplaining
1•acsigen•8m ago•0 comments

The Beauty of Ugly Movement: grief, the body, dancing with what won't leave us [video]

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

Development Update, August 2026 – GIMP

https://www.gimp.org/news/2026/08/16/dev-update-august-2026/#new-project-file-format
2•OptionOfT•10m ago•0 comments

Show HN: Nomoads – a local DNS ad blocker for iOS

https://nomoads.com/
1•vin-vlad•10m ago•0 comments

Show HN: Lumon Industries Severance game – a retro-pixel browser adventure

https://severance.lol/
1•Extender777•10m ago•0 comments

Logical – My Codes Are Perfect

http://logicalawesome.com
1•Topfi•11m ago•1 comments

Show HN: Agent Mesh – Shared memory for Human and multi-Agent coordination

https://github.com/cbalgeman/agent-mesh
1•balgeman•11m ago•0 comments

Best GitHub Alternatives

https://www.jamdesk.com/blog/best-github-alternatives
3•spy888•11m ago•1 comments

Show HN: The AI Reputation Manager

https://moregoodreviews.com/ai
1•Brandwagon•11m ago•0 comments

Sainsbury's branch pauses AI cameras use after shopper ejected

https://www.bbc.co.uk/news/articles/cddjlmeqjgyo
3•edward•13m ago•0 comments

The Message Isn't the Medium: In Defense of LLM-Assisted Writing

https://claude.ai/share/99bfee0f-bab9-4593-aabb-377e71f1151d
1•supermatt•13m ago•0 comments

The Curious Incidents with DNS in the Sandbox at Escape-Time

https://chasersystems.com/blog/the-curious-incidents-with-dns-in-the-sandbox-at-escape-time/
1•new23d•14m ago•1 comments

Groq Valued at $3.5B in Funding Round After Nvidia Deal

https://www.bloomberg.com/news/articles/2026-08-17/groq-valued-at-3-5-billion-in-funding-round-af...
2•sbulaev•14m ago•0 comments

Show HN: SSLCanary – SSL and domain-name expiry monitoring across many domains

https://sslcanary.com/en/tools/ssl-checker
2•apancyborg•15m ago•1 comments

Computational Anatomy

https://en.wikipedia.org/wiki/Computational_anatomy
1•num42•16m 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.