frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Snakes aren't simple tubes. Their bodies have 5 regions, including a short neck

https://theconversation.com/snakes-arent-simple-tubes-their-bodies-have-five-regions-including-a-...
1•defrost•42s ago•0 comments

The Myth, the Mythos, and the Man

https://om.co/2026/06/07/the-myth-the-mythos-and-the-man/
1•sanj•2m ago•0 comments

Show HN: Every plaintext HTTP request on your Linux box captured via eBPF

https://github.com/yeet-src/httpwatch
1•r3tr0•2m ago•0 comments

Cruising for Shells in Flowise – 6 RCEs That Rode Flowise Low and Slow

https://www.elttam.com/blog/cruising-for-shells-in-flowise
1•pentestercrab•2m ago•0 comments

Show CVBoosta:Resume Optimizer that tailors your resume to every job

1•cvboosta•4m ago•0 comments

Linux manpages maintainer wants to raise memory.h from the dead

https://lore.kernel.org/linux-man/am0RdPxvbIYUKAL-@devuan/T/#m277b916c39713d644d36a42d82debbff1df...
1•potus_kushner•6m ago•1 comments

Why Airplanes Use 400 Hz Power

https://blog.monroeaerospace.com/why-airplanes-use-400-hz-power/
1•thunderbong•6m ago•1 comments

The Next Five Years – Economics of AI – Patrick Collison

https://next-five-years.vercel.app/
1•haritha1313•9m ago•0 comments

Feynman's Lecture Notes

https://www.feynmanlectures.caltech.edu/Notes.html
2•tylerdane•12m ago•1 comments

Court case involving ownership of dota (2017) [pdf]

https://s3.documentcloud.org/documents/3726401/BlizzardvLilith.pdf
1•marysminefnuf•16m ago•0 comments

Show HN: Crack Attack game vibe-ported to run in browser

https://leifkb.github.io/crack-attack-browser/
1•eurleif•17m ago•0 comments

Telegram is suspected to be removed from the App Store

2•lijialjun•17m ago•0 comments

Native Apps Should Be Avoided Whenever Possible

https://nooneshappy.com/article/native-apps-should-be-avoided-whenever-possible/
1•bigyabai•18m ago•0 comments

How are you operating AI infrastructure in production?

1•kkgupta•19m ago•0 comments

We Rewrote Our Agent to Run in a Durable Object with Pi, Agents SDK, Code Mode

https://twitter.com/Vercantez/status/2082138839888589200
1•gmays•21m ago•0 comments

Used EV Prices Are Now Going Up in America

https://www.cnbc.com/2026/07/31/used-ev-prices.html
2•m463•28m ago•0 comments

Ask HN: Why is the "Who is hiring?" post being re-aged?

1•ethanwillis•29m ago•2 comments

9router-Python – Python SDK for the 9Router AI gateway (35 models)

https://github.com/ChristopherDond/9router-python
2•ChristopherDond•29m ago•0 comments

I asked GPT 5.6 Sol to build the opening scene to The Matrix using Three.js

https://marksmayo.github.io/matrix/
3•beatthatflight•30m ago•1 comments

Curlese, Five Years Later

https://www.hypertesto.me/en/blog/2026/08/curlese-five-years-later
1•rovr138•31m ago•1 comments

Preparing for next year's Rosetta 2 demise

https://sixcolors.com/post/2026/08/preparing-for-next-years-rosetta-2-demise/
2•CharlesW•40m ago•0 comments

Whimsical DMG screens are a dying art

https://mastodon.social/@BasicAppleGuy/117032230874235692
1•allenc•41m ago•0 comments

A fundamental flaw leaves LLMs strikingly vulnerable to attack

https://www.technologyreview.com/2026/07/30/1140927/a-fundamental-flaw-leaves-llms-vulnerable-to-...
2•mikhael•41m ago•0 comments

AI's Manifesto War

https://www.axios.com/2026/08/02/ai-manifesto-open-weight-models
2•supportm•45m ago•0 comments

Alpine Linux does not make the news (2023)

https://drewdevault.com/blog/Alpine-does-not-make-news/
2•psxuaw•46m ago•0 comments

AI Stocks with a Clear Enterprise Software Edge in 2026

https://simplywall.st/stocks/ca/software/tsx-dcbo/docebo-shares/news/ai-stocks-with-a-clear-enter...
1•supportm•48m ago•0 comments

Porn addicts tried to rescue teen camgirls they worshipped from webcam pimp

https://www.thecut.com/article/cam-girls-webcam-pimp.html
4•chirau•49m ago•2 comments

Show HN: "Hedgehog" - An Opinionated workflow for building with AI

https://github.com/skyf0xx/hedgehog
1•skyf0xx•50m ago•1 comments

Cloud Agents Should Use (Some) Code Execution

https://lexifina.com/blog/code-use-tools-for-cloud-agents
1•alansaber•51m ago•0 comments

Ghost Font Bypass and Hardening

https://github.com/Sakotass/ghost-font-bypass-hardening
1•newyorker_downt•54m 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.