frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

SoftBank's investor presentation is one of the greatest things ever made

https://twitter.com/i/status/2069990468587581455
1•Michelangelo11•32s ago•0 comments

Slopagotchi: Score your AI slop against other developers

https://slopagotchi.com/
1•stortebecker•40s ago•0 comments

Show HN: Unread – CLI that turns Telegram, YouTube and files into cited reports

https://github.com/maxbolgarin/unread
1•maxbolgarin•1m ago•0 comments

Show HN: I couldn't install Caffeine on my work Mac, so I built my own

https://github.com/Kuberwastaken/caffeineOSS
1•kuberwastaken•1m ago•0 comments

OpenAI won't let you "escape" freely in JSON mode

https://research.giskard.ai/blog/structured-output/
2•RuiLyonesse•1m ago•0 comments

Developer to Product Owner: Building Tilores Studio Changed My Mind About LLMs

https://medium.com/@stefan.berkner/from-developer-to-product-owner-how-building-tilores-studio-ch...
2•skafoi•2m ago•0 comments

SpaceX and the Sentient Sun

https://twitter.com/pmarca/status/2066523671456579828
3•vantareed•2m ago•0 comments

Ask HN: What does the day-to-day work of an AI Engineer look like?

2•vishalwaghmode•2m ago•0 comments

Apple just Increased Prices: here’s what’s changed

https://www.macrumors.com/2026/06/25/apple-just-increased-prices/
1•jaimebuelta•3m ago•1 comments

Apple Raises Prices on Macs, iPads by $200 or More on Some Models

https://www.wsj.com/tech/apple-raises-prices-on-macs-ipads-by-200-or-more-on-some-models-a7463f99
4•almog•5m ago•0 comments

Above the Cloud: Building Data Centers in Space – Richard Campbell – NDC 2026

https://www.youtube.com/watch?v=eo7MEPgWGic
2•johnbarron•6m ago•0 comments

Mobile Web Computing Before Smartphones. (University of Liverpool, ~2010) [pdf]

https://cgi.csc.liv.ac.uk/~trp/Teaching_Resources/COMP327/327-Lecture4-MobileWeb.pdf
1•rfmoz•7m ago•0 comments

Security checklist for AI startup CTOs

https://tolmo.com/resources/ai-cto-checklist/
2•smurda•9m ago•0 comments

HumansMap – Discover family dynasties and navigate their relational graphs

https://humansmap.com/?feed
1•scurnus•10m ago•0 comments

Why the West stopped making land

https://worksinprogress.co/issue/why-the-west-stopped-making-land/
3•surprisetalk•10m ago•0 comments

Utah wildfires: Here's a breakdown of all 6 fires burning in the state

https://www.sltrib.com/news/2026/06/23/utah-wildfires-heres-breakdown-all/
2•speckx•12m ago•0 comments

EU targets Amazon, Microsoft cloud units for Big Tech "gatekeeper" rules

https://www.reuters.com/business/retail-consumer/amazon-microsoft-cloud-computing-services-should...
1•cbg0•12m ago•0 comments

SoftBank 2026 AGM [pdf]

https://group.softbank/media/Project/sbg/sbg/pdf/ir/investors/shareholders/2026/shareholders-meet...
2•dmmalam•13m ago•0 comments

An Open-Source IDE Built for GLM 5.2

https://stagewise.io/use-cases/glm
1•glenntws•15m ago•0 comments

Show HN: Glitchwatch – CI failure inbox for indie devs (one GitHub webhook)

https://fleet-manager-roan.vercel.app
1•digitalcheff•18m ago•0 comments

The worst LLM: Emma-5

https://emma.egomnia.com
1•denysvitali•19m ago•0 comments

Show HN: DPI Bypass – directory of tools and clients to evade DPI

https://github.com/ubub111/awesome-dpi-bypass
2•ububus•20m ago•0 comments

Show HN: Diplomat-agent scan Python MCP servers for unguarded tool calls

https://github.com/Diplomat-ai/diplomat-agent
2•jguarnelli•20m ago•0 comments

GitHub Enterprise Local

https://techcommunity.microsoft.com/blog/azurearcblog/introducing-github-enterprise-local-preview...
2•beniihana•23m ago•0 comments

The database that refused to die: How Postgres survived its own creators

https://www.theregister.com/databases/2026/06/22/the-database-that-refused-to-die-how-postgres-su...
1•xenophenes•24m ago•0 comments

China claims to have developed AI 'cyber nuclear weapon', matching Mythos

https://www.telegraph.co.uk/business/2026/06/25/china-claims-to-have-developed-ai-cyber-nuclear-w...
3•toss1•24m ago•1 comments

Ask HN: Anyone else had clean test results while their body was clearly broken?

1•BrokenDigger•24m ago•1 comments

The Pizza Bakery

https://shwethakrishnamurthy.substack.com/p/the-pizza-bakery
1•eigenBasis•25m ago•0 comments

Show HN: Secs-man, a secrets manager you can (not) rely on

https://github.com/Fran314/secrets-manager-rs
2•Fran314•25m ago•0 comments

Show HN: CloudDeck – a Linux gaming PC in the cloud

https://clouddeck.app
1•sfrese•25m 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.