frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Tesla Recalls 3M EVs in China over Door Handle Safety

https://www.bloomberg.com/news/articles/2026-08-21/tesla-recalls-3-million-evs-as-china-cracks-do...
1•Hoefner•21s ago•0 comments

Walmart adding Tap to Pay after years of shoppers asking for it

https://www.dexerto.com/entertainment/walmart-finally-adding-tap-to-pay-after-years-of-shoppers-a...
1•thunderbong•5m ago•0 comments

Older Americans leaving workforce poses challenges for AI plans

https://www.spglobal.com/market-intelligence/en/news-insights/articles/2026/8/older-americans-lea...
1•littlexsparkee•5m ago•0 comments

Show HN: Best of Marketing, an interactive and ranked advertising index

https://bestmarketingnewsletter.com/
1•jaskaransainiz•11m ago•0 comments

You can just choose how many bugs you want now

https://nolanlawson.com/2026/08/16/you-can-just-choose-how-many-bugs-you-want-now/
1•tosh•13m ago•0 comments

10% worse, 100x cheaper, 10000x faster: Why Simulation is taking over

https://www.latent.space/p/ainews-10-worse-100x-cheaper-10000x
1•swyx•14m ago•0 comments

I turned Unix talk from 1983 into the interface for my AI

https://en.andros.dev/blog/09a21bdd/i-turned-unix-talk-from-1983-into-the-interface-for-my-ai/
1•andros•15m ago•0 comments

Show HN: Agile AI Development Lifecycle

https://valeriavg.dev/agile-ai-development-lifecycle
1•valeriavg_dev•21m ago•0 comments

Show HN: Learn Leap, an AI tutor that teaches from your own material

https://learnleap.xyz
1•HarunaOseni•22m ago•0 comments

Music Theory for Programmers

https://runjs.app/blog/music-theory-for-programmers
2•reorder9695•23m ago•0 comments

Anthropic's Opus 4.6 is a smut-machine

https://techcrunch.com/2026/08/21/anthropics-opus-4-6-is-a-smut-machine/
1•sbulaev•23m ago•0 comments

LYF SOS: Emergency Tech for Indian Networks

https://lyfsos.lyfmail.com/
1•LYFMail•25m ago•0 comments

Feminism didn't kill the male breadwinner model, the economy did

https://www.ft.com/content/4b7b8d3f-5625-4dba-ad90-66192c101956
1•go4rayyan•25m ago•0 comments

Chainwarden – offline crypto address validation for Java

https://chainwarden.org
1•salvatorzy•26m ago•0 comments

Angus Barbieri's Fast

https://en.wikipedia.org/wiki/Angus_Barbieri%27s_fast
1•handfuloflight•31m ago•0 comments

BBC's Ann Droid [from Diane Morgan] raises questions about the future of care

https://theconversation.com/could-robots-help-tackle-loneliness-bbcs-ann-droid-raises-questions-a...
1•mdp2021•31m ago•0 comments

Walmart launching Apple Pay support next week

https://9to5mac.com/2026/08/21/walmart-finally-launching-apple-pay-support-next-week/
1•ksec•37m ago•0 comments

EnsembleWriter: Free Screenwriting Software

https://ensemblewriter.com/
1•handfuloflight•38m ago•0 comments

Is it on Linux yet? – Tracking Linux support for handmade software

https://isitonlinuxyet.com/
1•HexDecOctBin•40m ago•0 comments

Blast Radius – who else is exposed when an NPM package is compromised

https://github.com/Rohit-ATS/blast-radius
1•rohitmaruri•41m ago•0 comments

Show HN: Reverse-engineered a gaming mouse's HID protocol to bring it to Linux

https://github.com/blak0p/attack-shark-linux
1•blakok4•43m ago•0 comments

Biomimetic reconstruction of butterfly wing nanostructures for radiative cooling

https://pubs.rsc.org/nh/article-abstract/7/9/1054/773493/Biomimetic-reconstruction-of-butterfly-w...
1•soupspaces•46m ago•0 comments

A simplified robotics framework for non robotics devs

https://docs.peppy.bot/quickstart/
1•Ekami•48m ago•0 comments

Git Push No-Mistakes

https://github.com/kunchenguid/no-mistakes
1•handfuloflight•51m ago•1 comments

TikTok to pay $400M to US in one of largest child privacy settlements

https://www.bbc.com/news/articles/cwyr0l45xjro
2•geox•58m ago•0 comments

Bodycam – This Is What a Gunshot Sounds Like – Devlog [video]

https://www.youtube.com/watch?v=Oz66Ek1RYWU
2•twalichiewicz•58m ago•1 comments

South Korea's Child-Hating Society Locks Playgrounds, Silences Children

https://www.chosun.com/english/national-en/2026/08/22/I7XTKBQNYFBXHJRSIZV7XMT45Q/
3•theletterf•59m ago•0 comments

Tech Openings in the Bay Area and New York: What Our August Data Shows

https://corvi.careers/blog/did-nyc-pass-sf-bay-area-tech-openings/
1•sp1982•59m ago•0 comments

Show HN: PgExtAssure – pre-admission security evidence for PostgreSQL extensions

https://github.com/borborich/pgextassure
3•borborich•1h ago•0 comments

Ask HN: Why does the US government search through people's phones at the border?

6•roschdal•1h ago•2 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.