frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

What happens when a GPU writes memory

https://blog.doubleword.ai/what-happens-when-a-gpu-writes-memory
2•somnial•2m ago•0 comments

The People's Computer at 50 the Cosmac ELF [video]

https://www.youtube.com/watch?v=H3Pdf8iRw5E
1•oldnetguy•2m ago•0 comments

Show HN: AI studio with 500 models for headshots, video and images

https://magicshot.ai
1•not_wowinter14•4m ago•0 comments

Local AI Is Dead. You Are at the Funeral

https://twitter.com/ivanburazin/status/2094373912154874171
1•tosh•6m ago•0 comments

There is no such thing as full decentralization

https://en.andros.dev/blog/603e4e90/there-is-no-such-thing-as-full-decentralization/
1•andros•9m ago•0 comments

Day: Create native apps for every platform from a single Rust codebase

https://daybrite.dev/
1•LiamPowell•18m ago•0 comments

Show HN: SwiftMo Power captures real-time exercise kinematics from a webcam

https://app.swiftmo.com/#/stage/:manualMode/:demo
1•Tomas_Metcalfe•19m ago•3 comments

Malleable software = solid bases and custom code

https://www.mdubakov.me/malleable-software-solid-bases-custom-code/
1•tablet•19m ago•0 comments

Data Abstraction, Distributed Systems – Barbara Liskov (Turing Award Winner) [video]

https://www.youtube.com/watch?v=T9CGjbPZeaM
1•binyu•20m ago•0 comments

Tim Cook's Apple legacy by the numbers

https://giftarticle.ft.com/giftarticle/actions/redeem/8ac9911f-bfe9-4e33-b8b6-04e8b83fd6b6
1•nmstoker•21m ago•0 comments

DIY archivists push budget Nikons to 902,000 clicks to save 1,800 rare books

https://www.tomshardware.com/tech-industry/artificial-intelligence/diy-archivists-push-budget-nik...
1•throwaway2037•22m ago•1 comments

Bill payment kiosk -self-service payment machine Dubai

1•panashifzc•24m ago•0 comments

Lost in Translation Code-Switchin ASR Competition – $USD 20k in Prizes

https://competitions.mozilladatacollective.com/competitions/group/lost-in-transcription/
1•kathyreid•24m ago•0 comments

Meta Settles, a Framework for Regulating Content, the Rest of Big Tech

https://stratechery.com/2026/meta-settles-a-framework-for-regulating-content-the-rest-of-big-tech/
1•swolpers•26m ago•0 comments

BlogFlock

https://blogflock.com/
1•rdmuser•35m ago•1 comments

Matter, Memory, and the Paradox of Perception – Popova on Bergson

https://www.themarginalian.org/2026/08/30/matter-memory-bergson/
1•unprovable•35m ago•0 comments

Do Dynamic Tools Break Prompt Caching?

https://m-reschreiter.at/en/blog/does-dynamic-tool-activation-break-prompt-caching
1•asm3r96•36m ago•0 comments

The Shape and Feel of the Post-AI Data Stack

https://www.iandmacomber.com/blog/post-ai-data-stack/
1•matthieu_bl•36m ago•0 comments

De-Googling: Replacing Google Search with Kagi

https://pliutau.com/from-google-to-kagi/
1•der_gopher•40m ago•0 comments

One AWS Bill Went from Almost $8k a Month Toward $6k

https://greenops.cloud/blog/blog-cost-drop-8k-to-6k
1•spidgorny•41m ago•0 comments

Show HN: Floe – an open-source plugin for sample libraries – CLAP/VST3/AU

https://floe.audio/
2•windell•45m ago•0 comments

How does Quantum Mechanics work?

https://explainers.blog/posts/how-does-quantum-mechanics-work/
1•lrmunoz•46m ago•0 comments

All CERN accelerators now on the road to HiLumi

https://home.cern/all-cern-accelerators-now-on-the-road-to-hilumi/
1•ilreb•51m ago•0 comments

Pushover – Simple Notifications

https://pushover.net
1•marksully•53m ago•0 comments

OpenShot 4.0: Record, Edit, and Color Like Never Before

https://www.openshot.org/blog/2026/08/30/openshot-40-record-edit-color-like-never-before/
61•metrofun•57m ago•18 comments

Nissan and Honda agree to work together on software for cars

https://apnews.com/article/nissan-honda-automakers-japan-software-collaboration-521bc44069a8d73fb...
1•geox•58m ago•0 comments

Claude and Claude Code Are Distinct Answer Engines

https://www.tryprofound.com/blog/claude-and-claude-code-are-distinct-answer-engines
2•giuliomagnifico•58m ago•0 comments

The startling 1960s theory that Stonehenge was a prehistoric computer

https://www.bbc.com/culture/article/20260828-the-startling-1960s-theory-that-stonehenge-was-a-pre...
3•dabinat•59m ago•0 comments

G20 Warned of Growing Threat to Financial Stability Posed by New AI Models

https://www.wsj.com/tech/ai/g20-warned-of-growing-threat-to-financial-stability-posed-by-new-ai-m...
2•thm•59m ago•0 comments

Product Backlog Problems: Why Your Hierarchy Is Broken

https://www.prodpad.com/blog/backlog-hierarchy-problem/
1•adrianhoward•1h 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.