frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Portsh: A batch/shell polyglot that implements a Lisp

https://github.com/smasher164/portsh
1•smasher164•3m ago•0 comments

Humiliating IIS servers for fun and jail time

https://mll.sh/humiliating-iis-servers-for-fun-and-jail-time/
1•denysvitali•3m ago•0 comments

DNS Query Duplication

https://www.potaroo.net/ispcol/2026-06/dups.html
1•caminanteblanco•4m ago•0 comments

Among the large new rockets Amazon was counting on, only Europe has delivered

https://arstechnica.com/space/2026/06/amid-launch-bottleneck-amazon-has-hundreds-of-satellites-wa...
3•logickkk1•5m ago•0 comments

Writing as Species-Being

https://philosophyofwriting.substack.com/p/writing-as-species-being
1•herbertl•6m ago•0 comments

Peter Thiel's 'Dialog' network was super-secret. A data leak changed that

https://san.com/cc/peter-thiels-dialog-network-was-super-secret-a-data-leak-changed-that/
1•lorecore•6m ago•0 comments

Show HN: oh-my-reddit – beautiful reddit threads, live in your terminal

https://github.com/renatoworks/oh-my-reddit
1•renatoworks•12m ago•0 comments

Chimera Linux: Clang/LLVM, FreeBSD coreutils, dinit, musl Libc

https://chimera-linux.org/
1•hxorr•19m ago•1 comments

Transfigure αLPHA is live – Yes, moar AI CAD

http://xfgr.ai
1•itstransfigure•20m ago•1 comments

Show HN: Reticle – The map your infrastructure operators deserve

https://reticleops.com/
1•mannders•20m ago•0 comments

Native Coding Agent Optimized for Local LLM and DeepSeek v4 with Vector Memory

https://code.intellios.ai
1•coolwulf•20m ago•0 comments

Show HN: The Oct Programming Language for scientific programming

https://github.com/yuechen-li-dev/oct
1•YuechenLi•22m ago•0 comments

Show HN: The Ruby AI Newsletter

https://rubyai.beehiiv.com/p/ruby-ai-news-june-16th-2026
1•activefx•22m ago•0 comments

Static Types and Shovels

https://carefully.understood.systems/blog-2026-06-10-static-type-shovel.html
1•birdculture•23m ago•0 comments

Tokdiet a local proxy that cuts LLM token spend ~70% without quality loss

https://github.com/agiwhitelist/tokdiet
1•agiwhitelist•25m ago•1 comments

Stolen French fries are spicier than justice: How covert larceny enhances taste

https://www.sciencedirect.com/science/article/abs/pii/S0950329326001126
2•bookofjoe•28m ago•0 comments

Ireland ready to restrict social media for children even without EU agreement

https://www.irishtimes.com/politics/2026/06/16/ireland-ready-to-restrict-social-media-for-childre...
5•piltdownman•29m ago•2 comments

Reinventing the Renaissance

https://drb.ie/article/reinventing-the-renaissance/
2•Petiver•31m ago•0 comments

Show HN: Numax - a portable runtime for distributed apps

https://github.com/GianIac/numax
3•gianiac•31m ago•1 comments

Milky Way's black hole is quiet, scientists found evidence of its missing wind

https://www.cnn.com/2026/06/16/science/milky-way-sagittarius-a-black-hole-wind
2•1659447091•31m ago•0 comments

Digital Printing of Arabic: explaining the problem

https://digitalorientalist.com/2017/08/21/digital-printing-of-arabic-explaining-the-problem/
4•a_t48•34m ago•0 comments

Construction Starts on JetZero's Greensboro Assembly Site – Aviation Week

https://aviationweek.com/aerospace/manufacturing-supply-chain/construction-starts-jetzeros-greens...
2•rbanffy•35m ago•0 comments

Show HN: Private Markets SEC Filings Index

https://search.stillhousedata.com
3•lemonlym•37m ago•0 comments

Mozilla Added Google Play Integrity to Firefox for Android

https://bugzilla.mozilla.org/show_bug.cgi?id=2046154
6•summm•37m ago•0 comments

A Corner on a Country Road

https://worldsensorium.com/a-corner-on-a-country-road/
2•dnetesn•39m ago•0 comments

Andrew Ng ships Open CoWorker desktop AI agent

https://github.com/andrewyng/aisuite
4•Gaishan•40m ago•1 comments

Synaxi-predict: I'm trying to predict token cost before it happens

https://github.com/BeadW/synaxi-predict
1•beadw•40m ago•1 comments

Firefox 152 understands 'Sssh!'

https://www.theregister.com/software/2026/06/16/firefox-152-understands-sssh/5256390
4•Bender•40m ago•0 comments

The UK's Teen Social Media Ban Is Political Theater, Not Child Safety Policy

https://www.techdirt.com/2026/06/16/the-uks-teen-social-media-ban-is-political-theater-not-child-...
24•hn_acker•41m ago•9 comments

On The Architectural Complexity of Neural Networks

https://arxiv.org/abs/2605.04325
1•lamename•41m 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.