frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Raiders at the Gate – tower defense web game

https://games.chrisbeach.co.uk/raiders-at-the-gate/
1•cbeach•1m ago•0 comments

In search of the hypothetical iPhone Duo buyer

https://manualdousuario.net/en/iphone-duo-who-buys-foldable-phones/
1•rpgbr•2m ago•0 comments

Show HN: Ecommerce Search comparisson across 5 independent engines, all public

https://github.com/quissly/search-benchmark
1•tazo-lezhava•2m ago•1 comments

Custom AMOLED Wearable Makes Great Icebreaker

https://www.scd31.com/posts/defcon-choker
1•SamuraiLion•4m ago•0 comments

What Happened at the White House That Marc Andreessen Says Sent Him to Trump

https://www.politico.com/news/magazine/2026/09/10/marc-andreessen-trump-biden-ai-opinion-01045516
2•mmayberry•5m ago•0 comments

Linus's Law

https://en.wikipedia.org/wiki/Linus%27s_law
1•gchamonlive•5m ago•1 comments

Study: A burst of "pink noise" may lead to more restorative sleep

https://news.mit.edu/2026/pink-noise-burst-may-mean-more-restorative-sleep-0909
1•giuliomagnifico•5m ago•0 comments

ChatGPT for Financial Services

https://openai.com/index/introducing-chatgpt-financial-services/
1•skogstokig•6m ago•0 comments

Life as a Terrorist: Uncovering my FBI file (2013)

https://harpers.org/archive/2013/09/life-as-a-terrorist/
1•cocacola1•7m ago•0 comments

Mischievous AIs

https://www.strangeintelligence.ai/mischievous-ais
2•randomparticlez•7m ago•0 comments

Study confirms permanent loss of Canada's last Arctic epishelf lake

https://news.ubc.ca/2026/09/study-confirms-permanent-loss-of-canadas-last-arctic-epishelf-lake/
1•rdmuser•11m ago•1 comments

Show HN: Biff 2.0 (Clojure web framework)

https://biffweb.com
1•jacobobryant•12m ago•0 comments

X-HBM – 16X more bandwidth or 10x higher density than traditional HBM (2025) [pdf]

https://neosemic.com/wp-content/uploads/2025/09/X-HBM_Brochure.pdf
1•peter_d_sherman•13m ago•0 comments

Oslo bans smart glasses in schools

https://www.thelocal.no/20260910/oslo-bans-smart-glasses-in-schools
3•vinni2•14m ago•0 comments

How do you keep up HN post with more than 2K comments?

1•pablogancharov•14m ago•3 comments

An Engineer's Guide to Surviving a Layoff

https://spectrum.ieee.org/how-to-survive-a-layoff
1•Brajeshwar•15m ago•0 comments

Stabilization Progress of Rust Allocators

https://cetra3.github.io/blog/state-of-allocators-2026-part-2/
1•fanf2•16m ago•0 comments

Ask HN: Would you pay to have your favorite AI agents in one app?

1•balgeman•16m ago•0 comments

What Comes After Git

https://ersc.io/blog/what-comes-after-git
7•steveklabnik•16m ago•0 comments

Bad Vibes Coding

https://spectrecollie.com/2026/09/05/bad-vibes-coding/
1•BrunoBernardino•17m ago•0 comments

Runnable – CI That Speaks Actions (Entire and GitHub)

https://runnable.cloud
1•melkor7•17m ago•0 comments

Writing in 2026: Wherein Claude Voice infects the universe

https://craigmod.com/roden/118/
1•decimalenough•17m ago•0 comments

People's Old Saves Kinda Make Me Sad

https://blog.absurdpirate.com/peoples-old-saves-kinda-make-me-sad/
1•speckx•18m ago•0 comments

OpenAI's research is too important to be turned into propaganda

https://www.modelrepublic.org/articles/openai-research-propaganda
1•cdrnsf•18m ago•0 comments

We Managed an Engineering Reliability Crisis

https://theengineeringmanager.substack.com/p/code-yellow-code-red
1•AntonZ234•18m ago•0 comments

The Open Source Engineering Performance Report [pdf]

https://research.navigara.com/research/Navigara-Performance-Report-Q2-2026.pdf
1•alienll•19m ago•0 comments

Not one of 426 open NIH funding opportunities has a machine-readable deadline

https://grantping.com/writing/nih-deadlines
1•ProtoRun•19m ago•0 comments

Show HN: I built a directory for discovering startups shared on X

https://www.startupsonx.com/
1•techbyhez•22m ago•0 comments

Google has removed the Pixel Tablet from its store

https://www.engadget.com/2254487/google-store-removed-pixel-tablet/
1•jefflinwood•24m ago•0 comments

Alberta First Nation invokes treaty clause to set up gender-affirming care

https://globalnews.ca/news/12053337/alberta-first-nation-gender-affirming-care-safe-haven/
5•colinprince•27m 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.