frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Scientists are regrowing human teeth

https://www.bbc.com/future/article/20260717-goodbye-implants-scientists-are-regrowing-teeth
1•dabinat•1m ago•0 comments

Is it a slop if it's not sloppy?

https://mkagenius.substack.com/p/is-it-a-slop-if-its-not-sloppy
1•mkagenius•4m ago•0 comments

Jurassic Park packed $4M of legit 1993 computer hardware

https://www.tomshardware.com/desktops/jurassic-park-packed-usd4-million-of-legit-1993-computer-ha...
3•sbulaev•9m ago•1 comments

xAI's first lawsuit against a user tests who is responsible for what Grok makes

https://thenextweb.com/news/xai-sues-grok-user-csam-terms-of-service
3•nyku•10m ago•0 comments

We want Texans to know their rights

https://www.eff.org/deeplinks/2026/07/we-want-texans-know-their-rights-qa-mayday-health-impact-su...
5•amarcheschi•12m ago•0 comments

The Control Group Is Out of Control (2014)

https://slatestarcodex.com/2014/04/28/the-control-group-is-out-of-control/
3•downbad_•14m ago•0 comments

Ask HN: How are you doing threat modeling for Terraform/IaC?

2•PotatoFy•16m ago•1 comments

On Creativity

https://twitter.com/bekhovsgun/status/2078959026004471973
3•reb•16m ago•0 comments

Grok-iOS – remote Grok Build from your iPhone over ACP

https://github.com/Pedroshakoor/grok-build-ios
2•pedroshakoor•24m ago•0 comments

Biggest Probabilistic Computer Turns Noise into Answers

https://spectrum.ieee.org/biggest-probabilistic-computer
2•rbanffy•33m ago•0 comments

Bad roads act as filters (1967)

https://wist.info/krutch-joseph-wood/53557/
2•dredmorbius•35m ago•1 comments

Is AI Progress Real? Four Independent Metrics Show It

https://skepticcto.substack.com/p/is-ai-progress-real-a-skepticcto
2•rbuccigrossi•36m ago•0 comments

Offload: Parallelize your test suite across 200 cloud sandboxes

https://imbue.com/product/offload
2•nvader•39m ago•0 comments

Show HN: A canvas-based note taking and organizer app

https://www.passinote.app/
3•passiflora96•44m ago•0 comments

Fayetteville officers fired for misusing license plate system

https://www.fox5atlanta.com/news/3-fayetteville-officers-fired-misusing-license-plate-system
4•pir8life4me•46m ago•1 comments

Three HPC Gurus Ask: Do We Still Need GPUs?

https://www.nextplatform.com/compute/2026/06/30/three-hpc-gurus-ask-do-we-still-need-gpus/5264552
3•rbanffy•46m ago•0 comments

How to Abandon Your Climate Commitments and Get Away with It

https://www.nytimes.com/2026/07/17/climate/company-climate-change-commitments-renege.html
4•littlexsparkee•52m ago•0 comments

Beware Change-Blocking Priors

https://www.overcomingbias.com/p/beware-change-blocking-priors
2•paulpauper•54m ago•0 comments

AI advice made people 3x less accurate but 2x confident, researchers found

https://thenextweb.com/news/ai-advice-suppresses-critical-thinking-wrong-answers-study
29•rbanffy•57m ago•6 comments

Show HN: ShipMD.app – Moving things in folders, move things in the real world

https://shipmd.app
2•bosky101•1h ago•0 comments

Built 160 micro calculator tools and the keyword data genuinely surprised me

https://www.indiehackers.com/post/built-160-micro-calculator-tools-and-the-keyword-data-genuinely...
3•julian-vix•1h ago•0 comments

Forbes Thinks AI Created a New Profession. History Has Seen It Before

https://futurehangover.substack.com/p/forbes-thinks-ai-created-a-new-profession
3•DefNotAiForSure•1h ago•2 comments

Cronstable, a cron replacement with retries, DAGs and a TUI/web dashboard

https://github.com/ptweezy/cronstable
2•ptweezy•1h ago•0 comments

A new Intel Itanium (IA-64) emulator that boots Windows

https://raymii.org/s/blog/Intel_Itanium_IA-64-Emulator_that_boots_Windows.html
18•jandeboevrie•1h ago•11 comments

Americans are angry about data centers. Politicians are feeling the pressure

https://www.reuters.com/world/us/americans-are-angry-about-data-centers-politicians-are-feeling-p...
11•baranul•1h ago•1 comments

From Enlightenment to Alignment

https://smolnero.com/posts/from-enlightenment-to-alignment
2•andsoitis•1h ago•0 comments

Why It's So Hard to Add a Column in the Middle of a PostgreSQL Table

https://www.bytebase.com/blog/why-its-hard-to-add-a-column-in-the-middle-of-postgres-table/
3•thunderbong•1h ago•0 comments

Moore's Law for Everything

https://moores.samaltman.com/
2•dtj1123•1h ago•0 comments

I built an AI operating system after getting tired of repetitive work

https://lynx.apex7ai.com
2•levymartins•1h ago•0 comments

Data Science Weekly – Issue 660

https://datascienceweekly.substack.com/p/data-science-weekly-issue-660
2•sebg•1h 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.