frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

crustc: entirety of `rustc`, translated to C

https://github.com/FractalFir/crustc
1•Philpax•3m ago•0 comments

The Intercept lost control of its Signal-based tip line for months

https://twitter.com/ryangrim/status/2072761908231585845
3•bhouston•5m ago•0 comments

Show HN: GeoSpoof – your VPN hides your IP, but the browser leaks your location

https://geospoof.com/
1•sgro•7m ago•0 comments

Why Did Goose Die Ejecting in Top Gun, but Maverick Didn't in Top Gun Maverick [video]

https://www.youtube.com/watch?v=Gj3r_aKo2bA
2•fortran77•8m ago•0 comments

Sous-Chef, a Claude Code plugin where Fable reviews, Codex implements

https://github.com/tomascupr/sous-chef
1•tomcupr•9m ago•0 comments

FBI Seizes NetNut Proxy Platform, Popa Botnet

https://krebsonsecurity.com/2026/07/fbi-seizes-netnut-proxy-platform-popa-botnet/
3•k1m•12m ago•0 comments

How America Celebrated Its Previous Big Birthday in 1976

https://www.wsj.com/us-news/how-america-celebrated-1976-b0f2b9d1
2•fortran77•13m ago•0 comments

The LLVM Compiler Infrastructure

https://cacm.acm.org/federal-funding-of-academic-research/the-llvm-compiler-infrastructure/
2•sohkamyung•13m ago•0 comments

TV Time is shutting down in a couple of weeks

https://www.neowin.net/news/tv-time-is-shutting-down-in-a-couple-of-weeks/
2•bundie•13m ago•0 comments

Ask HN: What if we provided support for AI guidelines at the kernel level?

1•PJHkorea•15m ago•1 comments

Show HN: Gist Discover – TikTok for ArXiv Summaries

https://gist.is/discover
1•MediaSquirrel•15m ago•0 comments

Mystery identity of 'Green Boots' climber is finally solved after DNA test

https://www.dailymail.com/news/article-15943905/Mystery-identity-Green-Boots-climber-macabre-land...
3•FireBeyond•16m ago•0 comments

Roach cyborg diving suit works well

https://www.popsci.com/technology/cockroach-diving-suit/
2•aegatlin•17m ago•0 comments

Google Android: the ECJ upholds Google's fine of around €4.1B [pdf]

https://curia.europa.eu/site/upload/docs/application/pdf/2026-07/cp260093en.pdf
1•bushwart•18m ago•0 comments

Scaling a 1.59 quadrillion-row logging system across three clouds

https://clickhouse.com/blog/a-quadrillion-rows-across-the-three-cloud-scaling-loghouse
1•saisrirampur•19m ago•0 comments

Greyshark AUV – Biologically Inspired High-Performance Underwater Drone

https://www.hisutton.com/Greyshark-AUV.html
1•EA-3167•19m ago•0 comments

GitHub will send you a CD with your repo on it

https://twitter.com/github/status/2072801888525840476
4•EvanZhouDev•19m ago•1 comments

Smol Machines

https://smolmachines.com/
2•fumplethumb•22m ago•0 comments

Show HN: Capcat – CLI/TUI to Archive Articles as Markdown and HTML (FOSS)

https://capcat.org/
2•stayux•22m ago•0 comments

JPEG-XL Libjxl 0.12 Brings More Performance Optimizations

https://www.phoronix.com/news/JPEG-XL-libjxl-0.12
1•Bender•24m ago•0 comments

Lean 4 software scaling laws

https://gwern.net/lean-scaling
1•yuppiemephisto•24m ago•0 comments

Show HN: A 155K-param transformer builds a map of a world it's never shown

https://ankur-chr.github.io/inside-the-model/
2•ankurchrungoo•25m ago•0 comments

Archivegenocide.com: view the footage collected from Gaza in one place

https://archivegenocide.com/
5•lorecore•27m ago•1 comments

OpenNotetaker for Hinglish Meetings

2•IsomerX•28m ago•0 comments

Consult-LLM – A second opinion from another model right in your existing agent

https://github.com/raine/consult-llm
1•tiahura•29m ago•0 comments

Show HN: Mirrors – test AI agent changes by replaying production traces

https://www.runmirrors.com/
3•aisinghal•30m ago•0 comments

Climon – A web dashboard for your CLI sessions, reachable from your phone

https://github.com/jackgeek/climon
1•jackgeek•31m ago•0 comments

Yahnc with previews – a visual hcker.news reader

https://hn.is-ai-good-yet.com/?view=frontpage
3•ilyaizen•36m ago•0 comments

Matrix Multiplication on Blackwell

https://www.modular.com/blog/matrix-multiplication-on-nvidias-blackwell-part-1-introduction
2•skidrow•37m ago•0 comments

Zuckerberg says Meta's bets on reorganization 'haven't come to fruition'

https://www.youtube.com/watch?v=uUJBRX_SkIc
7•root-parent•37m ago•3 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.