frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Correction: Anthropic attack did not have 1000/s

https://www.anthropic.com/news/disrupting-AI-espionage?correction
1•blazespin•1m ago•0 comments

US spy satellites built by SpaceX send signals in the "wrong direction"

https://arstechnica.com/tech-policy/2025/11/us-spy-satellites-built-by-spacex-send-signals-in-the...
1•chha•2m ago•0 comments

Making $1200 a month with a great idea that help AI App builders find customers

1•leadgrids•4m ago•0 comments

America Is a Banana Republic

https://chrishedges.substack.com/p/america-is-a-banana-republic-read
1•chmaynard•9m ago•0 comments

Piloting Group Chats in ChatGPT

https://openai.com/index/group-chats-in-chatgpt/
2•tamnd•11m ago•0 comments

UCSD Faculty Sound Alarm on Declining Student Skills

https://marginalrevolution.com/marginalrevolution/2025/11/ucsd-faculty-sound-alarm-on-declining-s...
2•josephcsible•17m ago•0 comments

Lingua Ignota

https://www.dcode.fr/lingua-ignota-code
2•jruohonen•18m ago•0 comments

Magic Words

https://en.wikipedia.org/wiki/Category:Magic_words
1•gsf_emergency_4•26m ago•0 comments

The Internet Is Cool. Thank You, TCP

https://cefboud.com/posts/tcp-deep-dive-internals/
2•signa11•26m ago•0 comments

Google must pay German price comparison platform 465M euros in damages

https://www.reuters.com/legal/litigation/google-must-pay-german-price-comparison-platform-465-mln...
1•1vuio0pswjnm7•33m ago•0 comments

Crims Poison 150K+ NPM Packages with Token-Farming Malware

https://www.theregister.com/2025/11/14/selfreplicating_supplychain_attack_poisons_150k/
6•jruohonen•35m ago•0 comments

Automating rootless Docker host updates with Ansible

https://du.nkel.dev/blog/2025-11-15_docker-rootless-ansible/
2•Helmut10001•37m ago•0 comments

He's Been Right About AI for 40 Years. Now He Thinks Everyone Is Wrong

https://www.wsj.com/tech/ai/yann-lecun-ai-meta-0058b13c
5•mudil•37m ago•1 comments

Turn Web Sources into Datasets

https://tenkai.tech
1•nikostenkai•41m ago•0 comments

Cuis Smalltalk

https://cuis.st/
2•andsoitis•41m ago•0 comments

Tamil Nadu sub-State model of climate action

https://www.thehindu.com/opinion/op-ed/the-tamil-nadu-model-of-sub-state-climate-action/article70...
1•gsf_emergency_4•41m ago•0 comments

Colombia signs agreement to acquire 17 Saab Gripen E fighters

https://defence-industry.eu/colombia-signs-agreement-to-acquire-17-saab-gripen-e-fighters-to-repl...
2•lysace•42m ago•0 comments

Google Ordered to Pay €573M in German Shopping Suits

https://www.bloomberg.com/news/articles/2025-11-14/google-ordered-to-pay-573-million-in-german-sh...
2•1vuio0pswjnm7•43m ago•0 comments

Apple's $230 Cloth iPhone Pouch Is Already Sold Out

https://www.bloomberg.com/news/articles/2025-11-14/apple-issey-miyake-iphone-pocket-price-colors-...
1•1vuio0pswjnm7•46m ago•0 comments

'Vibe revenue': AI companies admit they're worried about a bubble

https://www.cnbc.com/2025/11/14/vibe-revenue-ai-companies-admit-theyre-worried-about-a-bubble.html
2•MilnerRoute•54m ago•0 comments

ICE looks to WA tribes to house detained immigrants

https://www.seattletimes.com/seattle-news/politics/ice-looks-to-wa-tribes-to-house-detained-immig...
3•petethomas•59m ago•0 comments

Autoregressive or Diffusion Language Models, Why Choose?

https://arxiv.org/abs/2511.08923
3•mimida•59m ago•0 comments

Experimenting with Programming Languages [pdf]

https://web.cs.ucla.edu/~todd/theses/warth_dissertation.pdf
1•andsoitis•1h ago•0 comments

Ohm Editor

https://ohmjs.org/editor/
2•andsoitis•1h ago•0 comments

Adding Customizable Frame Contrast to KDE Plasma

https://akselmo.dev/posts/frame-contrast-settings/
1•PaulHoule•1h ago•0 comments

The Missing Abstraction for AI Agents: The Agent Filesystem

https://turso.tech/blog/agentfs
2•forks•1h ago•0 comments

Heady odors and sensory overload; 5,200 cheeses compete for World Cheese Awards

https://apnews.com/article/world-cheese-awards-switzerland-41f1a46f4af7fb5fc6f33a66df663755
4•petethomas•1h ago•0 comments

World still on track for catastrophic 2.6C temperature rise, report finds

https://www.theguardian.com/environment/2025/nov/13/world-still-on-track-for-catastrophic-26c-tem...
4•ivape•1h ago•0 comments

Justice Department replaced 'identical' Trump signatures on recent pardons

https://apnews.com/article/trump-pardon-biden-justice-department-ed-martin-d525b1911534a40f70394f...
6•petethomas•1h ago•0 comments

So, you want to design your own language?

https://cs.lmu.edu/~ray/notes/languagedesignnotes/
20•veqq•1h ago•4 comments
Open in hackernews

Show HN: OpenEvolve – open-source implementation of DeepMind's AlphaEvolve

8•codelion•5mo 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•5mo 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•5mo ago
How many tokens did it take to generate the 800 versions of the code?
codelion•5mo ago
Checked my openrouter stats, it took ~3M tokens but that involved quite a few runs of various experiments.