frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

AI's logs can be edited. Its evidence shouldn't be

https://github.com/thekiraproject/kira-project-site/blob/main/posts/2026-07-evidence-architecture.md
1•thekiraproject•3m ago•0 comments

Show HN: Kurvengefahr – browser CAD/CAM for pen plotters

https://kurvengefahr.org/
2•tibordp•5m ago•0 comments

OpenAvocado: Open-Source Adaptive Learning

https://github.com/frankhli843/openavocado
1•franksoftware•7m ago•0 comments

Major Memory Manufacturers Hit with Price-Fixing Class Action as RAM Prices Soar

https://openclassactions.com/lawsuits/antitrust/samsung-sk-hynix-micron-dram-price-fixing-class-a...
1•sydney6•8m ago•0 comments

Who cleans up after the vibe-coding party?

https://www.ft.com/content/cec8df9e-b43b-4cd1-8feb-c07e804e8d33
2•thm•9m ago•1 comments

Vim of Coding Agents

https://rasyidanaf.com/blog/vim-of-coding-agents/
1•aberoham•12m ago•0 comments

Multi-agent network: Own the node. Let the agents build together

https://github.com/quantiota/SKA-Protocol
2•quantiota•15m ago•0 comments

Linear is always a lagging indicator

https://remark.ing/rob/rob/-/Linear-is-always-a
2•koch•20m ago•0 comments

AI Adoption Was the Easy Part. Now Comes the Dollar-Sign Shock

https://www.inc.com/bruce-crumley/ai-adoption-was-the-easy-part-now-comes-the-dollar-sign-shock/9...
1•1vuio0pswjnm7•21m ago•0 comments

The cowboys of crypto: Wyoming ropes a $1 stablecoin

https://www.post-gazette.com/news/nation/2026/06/24/wyoming-stablecoin-token-digital-currency/sto...
3•greyface-•22m ago•0 comments

Litert.js, Google's High Performance Web AI Inference

https://developers.googleblog.com/litertjs-googles-high-performance-web-ai-inference/
2•kordlessagain•27m ago•0 comments

Investors sell longer-dated AI debt amid Big Tech borrowing spree

https://www.ft.com/content/28380abc-72f9-4287-8d36-2823c73358ce
3•1vuio0pswjnm7•29m ago•0 comments

You Have an AI Working Agreement. Write It Down

https://age-of-product.com/ai-working-agreement/
3•swolpers•30m ago•0 comments

What Is DAAD Ready?

https://www.ngpaws.com/daadready/
2•doener•32m ago•0 comments

Barron Wood Text Adventure

https://qladventures.itch.io/the-secret-of-barron-wood
2•doener•33m ago•0 comments

THEA1200 Juli F&A

https://www.youtube.com/watch?v=atZFmK9aOCI
2•doener•34m ago•0 comments

Microsoft joins Google in backing Go for AI agents — OpenAI and Anthropic lag

https://thenewstack.io/microsoft-agent-framework-go/
3•Brajeshwar•35m ago•0 comments

DVarr, a self-hosted sports DVR built to never miss the end of a game

https://github.com/haydenw22/DVarr
2•haydenw22•38m ago•0 comments

Show HN: Nihonpost – Japanese postal code lookup for Vue 3

https://github.com/Thiya11/nihonpost
2•kitsunechaos•41m ago•0 comments

Show HN: Nihonpost – Japanese postal code lookup for Vue 3

https://www.npmjs.com/package/nihonpost
1•kitsunechaos•41m ago•0 comments

The Floating Robot Companion Designed for Safe, Friendly Human Interaction

https://www.cnet.com/tech/floating-robots-safe-friendly-human-interaction/
2•zzzeek•43m ago•0 comments

Actojs – Bringing Elixir's Actors to TypeScript

https://www.npmjs.com/package/actojs
2•gidellav•46m ago•0 comments

HairGlimpse

https://hairglimpse.com/
2•lawrenceTang•46m ago•0 comments

Command Line Interface Guidelines

https://clig.dev/
4•subset•46m ago•0 comments

AI Boosts Research Careers but Flattens Scientific Discovery

https://spectrum.ieee.org/ai-science-research-flattens-discovery
6•zaikunzhang•48m ago•0 comments

Show HN: Jargo – Conversational-AI Golang Framework

https://github.com/gojargo/jargo
1•fallais•49m ago•0 comments

Count Binface the Game

https://binfacegame.co.uk
2•dawildcat•49m ago•0 comments

Show HN: Only 1 of 4,356 reachable MCP servers is ready for the 2026-07-28 spec

https://github.com/Roee-Tsur/mcp-spec-check
2•roee_tsur•54m ago•0 comments

I Love Details

https://nuno-icons.com/2026/07/11/i-heart-details/
1•LorenDB•54m ago•0 comments

HFI: Harmonic Firmware Initiative for RISC-V

https://qsoe.net/hfi/
1•ymz5•54m 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.