frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Anvil – a multi-repo AI pipeline and an MCP server for code search

1•esankhan3•22s ago•0 comments

Show HN: Control iOS Simulators remotely with real-time interaction

https://www.simcast.dev/
1•florinmatinca•35s ago•0 comments

A Renaissance gambling dispute spawned probability theory

https://www.scientificamerican.com/article/how-a-renaissance-gambling-dispute-spawned-probability...
1•sohkamyung•53s ago•0 comments

Visual engagement modulates auditory target detection in noisy soundscapes

https://pubs.aip.org/asa/jasa/article-abstract/159/3/2513/3383698/Visual-engagement-modulates-cor...
1•bookofjoe•1m ago•0 comments

Thank You for Being a Friend

https://blog.codinghorror.com/thank-you-for-being-a-friend/
1•janvdberg•1m ago•0 comments

New sign-ups for Copilot Pro and student plans are temporarily paused

https://docs.github.com/en/copilot/get-started/plans
1•tomthe•2m ago•0 comments

I left Vercel over dangerous defaults. The same defaults leaked customer secrets

https://joshduffy.dev/how-i-left-vercel/
2•nahsuhn•5m ago•1 comments

CheerpJ 4.3 – Run unmodified Java applications in the browser

https://labs.leaningtech.com/blog/cheerpj-4.3
1•apignotti•5m ago•0 comments

Query Visualize Understand – Grammar of Graphics to SQL

https://ggsql.org/
1•u1hcw9nx•5m ago•0 comments

Lead chromate pigments dominate lead paints sold in Mexico

https://academic.oup.com/annweh/article-abstract/70/3/wxag023/8653344
1•geox•6m ago•0 comments

Show HN: Antenna – RSS reader with a built-in MCP server

https://antennafeed.com/
1•toddllm•7m ago•0 comments

Show HN: FlirtingBots – My AI agent flirts with yours, we meet if it clicks

https://flirtingbots.com/
1•quenzo•7m ago•0 comments

ML-intern: open-source agent for autonomous ML research and training

https://twitter.com/akseljoonas/status/2046543093856412100
1•akseljoonas•7m ago•0 comments

DoD's 2026 National Defense Strategy [pdf]

https://media.defense.gov/2026/Jan/23/2003864773/-1/-1/0/2026-NATIONAL-DEFENSE-STRATEGY.PDF
1•artur_makly•8m ago•1 comments

Context.ai – SoC 2 Type II Report by Delve

https://pastebin.com/QNzrKpFi
2•Topfi•9m ago•0 comments

Gennie: Turns Meeting Discussions into Assigned Tasks with Due Dates

https://heygennie.com/
1•vishal_sahu•10m ago•0 comments

Glyph Protocol for Terminals

https://rapha.land/introducing-glyph-protocol-for-terminals/
1•birdculture•11m ago•0 comments

Compressing LLMs with progressive pruning and multi-objective distillation

https://rig.ai/blog/compressing-a-model-to-run-locally
1•adam_patarino•12m ago•2 comments

The Pagoda Puzzle: What Can Save China's Oldest Wooden Tower?

https://www.sixthtone.com/news/1018411
1•sohkamyung•12m ago•0 comments

LLMs and Your Career

https://notes.eatonphil.com/2026-01-19-llms-and-your-career.html
1•redarguireda•13m ago•0 comments

Newly Digitized Records Reveal How Maori Shared Knowledge of Plants with British

https://www.smithsonianmag.com/history/newly-digitized-records-reveal-how-indigenous-people-share...
1•beatthatflight•14m ago•0 comments

I accidentally created an Orwellian Performance Review bot

http://blog.elzeiny.io/posts/perf-ai/
2•aelzeiny•14m ago•0 comments

The State of Agent Payment Protocols (April 2026)

https://github.com/custena/agent-payment-protocols
2•augrrr•16m ago•0 comments

Philosophize This (podcast) Atlas

https://philthis.eamag.me/
2•eamag•21m ago•0 comments

Show HN: Claude Buddy Pico – Pi Pico 2 W Port of Claude Desktop's Hardware Buddy

https://github.com/amargandhi/claude-buddy-pico
2•AmarGandhi•22m ago•1 comments

Kimi K2.6 Intelligence, Performance and Price Analysis

https://artificialanalysis.ai/models/kimi-k2-6
2•Topfi•22m ago•0 comments

Qt Group Launches Operational Reorganization to Improve Efficiency

https://www.qt.io/releases/release
2•shrimp-chimp•23m ago•1 comments

The abandoned war: Why no one is stopping the genocide in Sudan

https://respublica.media/en/en-sudan-abandoned-war-genocide-no-one-stopping/
3•ResPublica•24m ago•1 comments

Hierarchical Planning with Latent World Models

https://arxiv.org/abs/2604.03208
1•fofoz•24m ago•0 comments

Kei Urana on Manga Piracy

https://xcancel.com/i/status/2046341018837197285
1•latexr•24m ago•1 comments
Open in hackernews

Show HN: OpenEvolve – open-source implementation of DeepMind's AlphaEvolve

8•codelion•11mo 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•11mo 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•11mo ago
How many tokens did it take to generate the 800 versions of the code?
codelion•11mo ago
Checked my openrouter stats, it took ~3M tokens but that involved quite a few runs of various experiments.