frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Agentmux – iOS terminal and workspace built for CLI AI agents

https://agentmux.saxcave.cc/
1•saxlamen•2m ago•0 comments

The U.S. wants to contain China's AI. Silicon Valley keeps using it

https://restofworld.org/2026/china-siliconvalley-ai-moonshot-kimi/
3•devonnull•3m ago•0 comments

Show HN: DocBrain, turns merged PRs and Slack threads into documentation

https://github.com/docbrain-ai/docbrain
2•bhanuhai2•3m ago•0 comments

European Commission: 'Guidance to Google for AI Interoperability'

https://daringfireball.net/2026/07/ec_google_guidance_android_ai_and_search_sharing
1•rgovostes•6m ago•0 comments

Earth-Like LHS 1140B May Feature the First Atmosphere Found on Exoplanet

https://hackaday.com/2026/07/20/earth-like-lhs-1140b-may-feature-the-first-atmosphere-found-on-ex...
1•jamesblonde•12m ago•0 comments

MemoHood and MemoBase – local memory and knowledge base for AI agents

https://github.com/mxskorohood-cmd/memobase
1•maxskorohood•12m ago•0 comments

Four-hour fundraising meeting with DeepSeek founder Liang Wenfeng

https://old.reddit.com/r/DeepSeek/comments/1v41q73/fourhour_fundraising_meeting_with_deepseek/
1•chewz•15m ago•1 comments

Missing required arguments in shell scripts? Use the colon

https://refp.se/articles/your-shell-and-the-magic-colon
1•ingve•19m ago•0 comments

Extreme SIMD: Optimized Collision Detection in Titanfall (2018) [video]

https://www.youtube.com/watch?v=6BIfqfC1i7U
1•xeonmc•21m ago•0 comments

How macOS Summarize Works (Reverse-Engineered with Kimi K3)

https://github.com/fenxer/macos-summarize-internals
1•haxfenx•21m ago•0 comments

Show HN: AI agents that go from naming your startup to running its marketing

https://www.brandbrahma.com/
1•BrandB•23m ago•0 comments

Gerrymandle

https://gerrymandle.com/
1•enjoyyourlife•23m ago•0 comments

AI Is the Ultimate Leaky Abstraction

https://www.jonathanbeard.io/blog/2026/06/20/ai-the-ultimate-leaky-abstraction.html
2•nalinidash•25m ago•0 comments

Review of my Open AI build week feedback please

https://devpost.com/software/grantscout-app
1•OOvsuOO•31m ago•1 comments

I solved 6 open Erdős problems in 5 days, using OpenAI GPT-5.6 Sol

https://twitter.com/Qiaoqiao2001/status/2080003441821163958
3•akalin•34m ago•1 comments

Postgres in Rust: three dead ends before we passed 100% of the regression suite

https://malisper.me/postgres-in-rust-regression-suite/
2•michaelssilver•42m ago•0 comments

Show HN: Let Claude/ChatGPT deploy your sites

https://mcp.so/servers/nippy
1•Jamie452•44m ago•0 comments

I built an AI tool that turns a product URL into a video ad

1•Ugcad•44m ago•1 comments

The Art of PostgreSQL

https://theartofpostgresql.com/
1•ahamez•48m ago•1 comments

Git Koans

https://stevelosh.com/blog/2013/04/git-koans/
3•janalsncm•53m ago•1 comments

Show HN: NearBye – macOS locks itself when your iPhone leaves the room

https://nearbye.gege.mn/
1•sadespresso•56m ago•0 comments

Tesla still has no real plan for Hardware 3 owners promised FSD

https://electrek.co/2026/07/22/tesla-hardware-3-fsd-no-plan-musk-earnings-call/
2•breve•58m ago•0 comments

Is your programming language unreasonable? (2015)

https://fsharpforfunandprofit.com/posts/is-your-language-unreasonable/
1•tosh•59m ago•1 comments

Show HN: A satellite control room from 100% open data, self-hosted in Europe

https://overwatch.confinia.io
2•clement_igonet•1h ago•0 comments

Cruller: Bun's Zig Runtime, Continued on Zig 0.16

https://ziggit.dev/t/cruller-buns-zig-runtime-continued-on-zig-0-16/16734
3•Erenay09•1h ago•0 comments

Google burning through cash with spiralling AI costs

https://www.bbc.com/news/articles/c235n47g8g8o
3•geox•1h ago•0 comments

Show HN: Northstar Browser

5•roschdal•1h ago•1 comments

UAE WPS Payroll Guide

https://adilrashidlone.substack.com/p/the-one-question-that-actually-tells
1•digitaldaddyme•1h ago•0 comments

French President Macron backs effort to ban kids under 15 from social media

https://fortune.com/2026/07/20/french-president-social-media-ban-lawmakers/
12•1vuio0pswjnm7•1h ago•1 comments

July 23 1985, Commodore introduced its Amiga 1000: 10 years ahead of its time

https://dfarq.homeip.net/amiga-1000-ten-years-ahead-of-its-time/
8•giuliomagnifico•1h ago•2 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.