frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

1•BadAtThis•8s ago

Sharing Linear's growth with the people building it

https://linear.app/now/sharing-growth-with-the-people-building-linear
1•946789987649•20s ago•0 comments

Show HN: I built a tool showing how AI providers (should) throttle their models

https://arxiv.org/abs/2608.23986
1•eliotho•44s ago•0 comments

Meta's AI dream reels on more than lab-rat revolt

https://www.reuters.com/commentary/breakingviews/metas-ai-dream-reels-more-than-lab-rat-revolt-20...
1•cramer4next•48s ago•0 comments

AWS Acquires DuckDB

https://ducklabs.com/news/2026/08/26/ducklabs-to-join-aws
3•onderkalaci•1m ago•0 comments

Show HN: Fake-bpy-module – Blender/UPBGE Python autocompletion for external IDEs

https://github.com/nutti/fake-bpy-module
1•nutti•2m ago•0 comments

Compare Value – 100% client-side developer sandboxes and price normalizer

https://compare-value.com
1•yhammadieh•4m ago•0 comments

I use Home Assistant to automate and monitor my aquariums

https://michaelharley.net/posts/2026/08/26/how-i-use-home-assistant-to-automate-and-monitor-my-aq...
2•speckx•6m ago•0 comments

Show HN: Kuma Voice – OSS Apple Watch voice assistant, no iPhone needed

https://github.com/itsperini/kuma-voice
2•itsperini•6m ago•0 comments

AI Review Loops Don't Always Stabilise

https://kevinmahoney.co.uk/articles/ai-review-loops/
1•kpmah•7m ago•0 comments

Most popular Xkcd comics on Hacker News

https://www.orangecrumbs.com/xkcd-on-hacker-news/
1•oyster143•7m ago•0 comments

A Hit Chinese Legal Drama Reopens an Old Question About Lawyers

https://www.pekingnology.com/p/a-hit-chinese-legal-drama-reopens
1•iamnothere•8m ago•0 comments

Qwen3.8-Flash-Next: A New Architecture, Towards Ultimate Cost-Efficiency

https://qwen.ai/blog?id=qwen3.8-flash-next
3•tosh•8m ago•0 comments

Shrine of Singularity, a votive altar for AI worship

https://www.thesingularityshrine.org/
3•theberns•8m ago•0 comments

An Archive of a Different Type (2020)

https://blog.archive.org/2020/08/26/an-archive-of-a-different-type/
1•EndXA•8m ago•0 comments

Cloudways' Cloudflare Enterprise integration is a crock of shit

https://www.jemjabella.co.uk/2026/cloudways-cloudflare-enterprise-integration-is-a-crock-of-shit/
1•edent•9m ago•0 comments

Agents are a security nightmare... are they?

https://write.as/z2x3hj2ph6zhf
1•j-bu•9m ago•0 comments

Futurism Is Always Extreme

https://borretti.me/article/futurism-is-always-extreme
1•ibobev•10m ago•0 comments

Adding diagrams to my static site generator with D2

https://www.gilesthomas.com/2026/08/adding-d2
1•ibobev•10m ago•0 comments

Qwen3.8-Flash-Next: A New Architecture, Towards Ultimate Cost-Efficiency

https://qwen.ai/blog?id=qwen3.8-lash-next
2•_ache_•10m ago•0 comments

Memory Ordering in CPUs

https://fgiesen.wordpress.com/2026/08/25/memory-ordering-in-cpus/
1•ibobev•10m ago•0 comments

Show HN: Witstep – daily math and logic puzzle game (Free No Sign-up)

https://witstep.vercel.app/
1•SpyNinja•11m ago•0 comments

Australia's First Dairy Cooperative

https://australianfoodtimeline.com.au/first-dairy-cooperative/
1•thunderbong•11m ago•0 comments

A curmudgeon tries a language server

https://entropicthoughts.com/curmudgeon-tries-language-server
2•crescit_eundo•12m ago•0 comments

Qwen3.8-Flash-Next

https://huggingface.co/collections/Qwen/qwen38-flash-next
1•tosh•12m ago•0 comments

Bill Gates: The turbulent AI era is here

https://www.gatesnotes.com/work/make-ai-work-for-everyone/reader/a-turbulent-ai-era-and-critical-...
4•ilamont•12m ago•1 comments

Leadership is completely out of touch and the good engineers are leaving

https://www.reddit.com/r/amazonemployees/comments/1vyontr/leadership_is_completely_out_of_touch_a...
2•johnbarron•13m ago•0 comments

"Model Effort" Has It Backwards

https://diverging.run/checkpoints/human-effort-not-model-effort/
1•shay_ker•14m ago•0 comments

I compared Opus 4.8 vs. Opus 5 on 25 of my tasks to see what the difference was

https://www.stet.sh/blog/opus-4-8-vs-opus-5-same-score-different-routes
2•bisonbear•14m ago•0 comments

Chesslop.com: Every day I open Chess.com and there is a new UI

https://blog.seydina.dev/blog/2026-08-01-chesslop/
2•alphaisidore•15m 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.