frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Organized violence 1989–2025, and violent political protests

https://academic.oup.com/jpr/advance-article/doi/10.1093/jopres/xjag046/8703754
1•joveian•1m ago•0 comments

Why Excess Regulation?

https://www.overcomingbias.com/p/why-excess-regulation
1•paulpauper•4m ago•1 comments

PrepPush – Chrome extension turning HackerRank Accepted into GitHub study guide

https://chromewebstore.google.com/detail/preppush/lkbbmepdmkokiapildnhkimcgnofokdd
1•banikt•4m ago•0 comments

Three Labs with a Plan and a Memorandum

https://thezvi.substack.com/p/three-labs-with-a-plan-and-a-memorandum
1•paulpauper•4m ago•0 comments

America, 1898-1914, overview, part 3

https://arnoldkling.substack.com/p/america-1898-1914-overview-part-3
1•paulpauper•5m ago•0 comments

What We Learned Hiring 33 Engineers in Two Weeks

https://www.digitalocean.com/blog/ai-native-engineering-interview
1•RyeCombinator•5m ago•0 comments

When do you guys think Zig will release 1.0?

1•J_Monclare•9m ago•0 comments

The Wild West

https://www.lynalden.com/june-2026-newsletter/
1•jameslk•10m ago•0 comments

Show HN: Claude Code Context Analyzer

https://github.com/manavgup/context-analyzer
1•manavg76•10m ago•0 comments

Lessons We Learned Building a RAG Assistant Without a Separate Vector Database

https://blog.devgenius.io/lessons-we-learned-building-a-rag-assistant-without-a-separate-vector-d...
2•HermitX•13m ago•0 comments

Salesforce lays off employees in a new round of cuts

https://www.businessinsider.com/salesforce-cuts-jobs-agentforce-2026-6
3•toomuchtodo•14m ago•1 comments

Fundamental of Running Agentic Loops

https://www.beontheloop.com/deck
1•shekharupadhaya•25m ago•3 comments

Show HN: Draft an all-time XI and simulate a World Cup run

https://www.perfectworldcup.com
1•ASquare•30m ago•0 comments

Connecticut Approves Plug-In Solar

https://cleantechnica.com/2026/05/30/connecticut-approves-plug-in-solar-its-so-exciting/
2•toomuchtodo•31m ago•1 comments

Canadians told to "Exercise a high degree of caution in Germany"

https://travel.gc.ca/destinations/germany
2•theanonymousone•33m ago•0 comments

Offline streaming speech recognition on iOS with Nvidia Nemotron 3.5 and Core ML

https://github.com/lbj96347/nemotron-3.5-asr-ios
1•lbj96347•43m ago•0 comments

Microsoft's AI chief says superintelligence is near, but won't take your job

https://www.theverge.com/podcast/944138/microsoft-ai-ceo-mustafa-suleyman-superintelligence-agi-o...
1•gnabgib•44m ago•0 comments

Microsoft AI boss no longer believes that AI will replace human workers

https://www.neowin.net/news/microsoft-ai-boss-no-longer-believes-that-ai-will-replace-human-workers/
1•bundie•45m ago•1 comments

Getting Started with OpenAI Models on Amazon Bedrock

https://developers.openai.com/cookbook/examples/partners/aws/openai_models_with_amazon_bedrock
1•gmays•50m ago•0 comments

Initial impressions of Claude Fable 5

https://simonwillison.net/2026/Jun/9/claude-fable-5/
1•mfiguiere•53m ago•1 comments

What Happens If We Break Time

https://www.youtube.com/watch?v=8T4tW67hpJY
2•Asheed•53m ago•0 comments

Fund the tools that keep the internet free

https://internetfreedom.torproject.org/
4•Cider9986•59m ago•0 comments

Grok Build

https://docs.x.ai/build/overview
2•binyu•1h ago•1 comments

Vibe coding my way to a healthy family: Introducing Gamow Labs

https://www.ddmckinnon.com/2026/06/09/vibe-coding-my-way-to-a-healthy-family-introducing-gamow-labs/
3•dmckinno•1h ago•2 comments

Show HN: This Week in Obsidian – Obsidian Newsletter Published Every Tuesday

https://thisweekinobsidian.substack.com/p/this-week-in-obsidian-25
2•boundless88•1h ago•0 comments

Who Owns the Loop?

https://cardeo.substack.com/p/who-owns-the-loop
2•cardeo•1h ago•1 comments

The Evolution of 'More Like This'

https://manticoresearch.com/blog/the-evolution-of-more-like-this/
4•snikolaev•1h ago•0 comments

The Glitch That Broke Link's Cel Shading [video]

https://www.youtube.com/watch?v=By7qcgaqGI4
2•aw1621107•1h ago•0 comments

Show HN: Master – Rails-style full-stack productivity for Node.js

https://bookbag.ai/blog/i-built-master-because-i-missed-rails
2•Rbatista•1h ago•0 comments

WWDC26 – The Small Things – Oneberri Blog

https://blog.oneberri.com/posts/wwdc26-the-small-things
4•tambourine_man•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.