frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Relaxed Memory Model Zoo: Ordering models by the inclusion of allowed behaviours

https://rmm-zoo.kissig.org/
2•csmantle•8m ago•0 comments

Coulomb's law remains tricky to test at home

https://chillphysicsenjoyer.substack.com/p/coulombs-law-remains-tricky-to-test
2•crescit_eundo•26m ago•0 comments

Browser Isolation Session Initialization Failures – Cloudflare Status

https://www.cloudflarestatus.com/incidents/z16209cfb1xv
2•kyisaiah47•26m ago•0 comments

SayItErmano – local-first voice dictation for Linux

https://github.com/acailic/SayItErmano
2•ilkehimself•31m ago•0 comments

OpenCode team's X analytics leaderboard

https://xrank.opencode.ai/
3•seelos•32m ago•0 comments

Where Understanding Arrives After the Decisions

https://medium.com/@gurvinder372/article-10-where-understanding-arrives-after-the-decisions-310cb...
3•gps372•33m ago•0 comments

Anthropic AI 'formalizes' proof of Fermat's last theorem in just 11 days

https://www.nature.com/articles/d41586-026-02822-9
3•sbulaev•33m ago•0 comments

Zen of Palm [pdf]

https://www.cs.uml.edu/~fredm/courses/91.308-fall05/palm/zenofpalm.pdf
3•hexatron4•34m ago•0 comments

Europe's largest carbon capture facility opens in the Netherlands

https://www.yara.com/corporate-releases/europes-largest-carbon-capture-facility-officially-inaugu...
3•negura•34m ago•0 comments

Made this math/physics learning website, would love some feedback

https://locusmath.org/
3•dinomighty•35m ago•1 comments

Integration of proteomic aging clocks in a phase 2a clinical trial

https://www.nature.com/articles/s41587-026-03286-y
4•spenvo•39m ago•0 comments

Secure temporary file sharing for AI agents and humans

https://github.com/aispace-sh/aispace-client
5•tengio•40m ago•0 comments

Show HN: Brw - better than Claude chrome

https://brw.donworks.co.uk
3•maxrev17•44m ago•0 comments

WeatherNext 3: Our most advanced global weather AI model

https://blog.google/innovation-and-ai/models-and-research/google-deepmind/introducing-weathernext-3/
4•gmays•44m ago•0 comments

Landmark study reveals century-long U.S. suicide rate cycles among youth

https://attheu.utah.edu/health-medicine/landmark-study-reveals-century-long-cycles-in-u-s-suicide...
5•littlexsparkee•47m ago•1 comments

Astrophyzix Integrates NASA API's to Build Advanced Public Tracker Tool

https://www.astrophyzix.com/p/live-asteroid-tracker-v9.html
2•UniverseToday•48m ago•0 comments

Saturday Evening Post Will Stop Printing After 205 Years

https://www.nytimes.com/2026/09/02/business/media/saturday-evening-post-stop-printing.html
3•ripe•48m ago•1 comments

The Full-Source Bootstrap: Building from source all the way down

https://guix.gnu.org/en/blog/2023/the-full-source-bootstrap-building-from-source-all-the-way-down/
3•embedding-shape•49m ago•0 comments

Premium Shop Helpfull

https://www.ebay.com/usr/ilyasseng0
3•ilaysyou•50m ago•3 comments

What are you building? Paste a domain, prove you own it, get listed

https://www.whatareyoubuilding.app/
2•kunalpanchal•52m ago•0 comments

Have You Ever Seen the Rain?

https://christopherren.substack.com/p/have-you-ever-seen-the-rain
3•lookatdata•1h ago•1 comments

Open-source 3D anatomy explorer: 2,234 selectable BodyParts3D meshes

https://github.com/ashemag/human-atlas
2•metrofun•1h ago•0 comments

Do you ever struggle to find another programmer to work on a project/pair with?

2•rizsyed1•1h ago•0 comments

2025 Dodge Charger EV: Regular Car Reviews [video]

https://www.youtube.com/watch?v=0jZVP_ZA3ZY
3•fortran77•1h ago•1 comments

TALA Is Open-Source

https://d2lang.com/blog/tala-is-open-source/
17•alixanderwang•1h ago•1 comments

Show HN: Explore the fun side of the personal web

https://straw.page/explore
3•chickenman•1h ago•0 comments

Show HN: Archprint, infer architecture lint rules from your repo's import graph

https://github.com/Tommkruix/archprint
2•Tommkruix123•1h ago•0 comments

Unauthenticated RCE in Telerik UI

https://tantosec.com/blog/2026/09/telerik-padding-oracle-to-shell/
2•dwbzn•1h ago•0 comments

Show HN: Browse 27 years of movie ticket stubs in ThreeJS

2•zebomon•1h ago•0 comments

I kept working on Windows Notepad for Mac

https://github.com/Arijit-gotsomecodes/NotePadMac
2•fxxai•1h 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.