frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Break any AI scam phone call in just a few easy steps [video]

https://www.youtube.com/watch?v=lk3jCuITwcE
1•akavel•23s ago•0 comments

Show HN: GONK – Lightweight Edge-Native API Gateway in Go

https://github.com/JustVugg/gonk
1•vforno•1m ago•0 comments

Lawsuit alleges Samsung, SK Hynix, and Micron colluded to inflate DRAM prices

https://www.polygon.com/ram-manufacturers-sued-supply-price-fixing/
1•DSemba•3m ago•0 comments

Opening up 'Zero-Knowledge Proof' technology to promote privacy in age assurance

https://blog.google/innovation-and-ai/technology/safety-security/opening-up-zero-knowledge-proof-...
1•consumer451•6m ago•0 comments

Teaching AI to Reason About Software

https://soteria-tools.com/blog/teaching-ai
2•giltho•8m ago•0 comments

KDE Linux Introduces "Developer Mode" Option, Easier Log Collection

https://www.phoronix.com/news/KDE-Linux-June-2026
2•Bender•10m ago•0 comments

'It's like having a dumb friend': Young San Franciscans hate AI

https://www.sfgate.com/tech/article/san-francisco-ai-backlash-22325141.php
6•turtlegrids•11m ago•0 comments

US opts not to renew Trump's trade deal with Mexico and Canada

https://www.ft.com/content/2c7b4dc8-1b1c-49f4-b51a-0dee0c1d216a
3•petethomas•12m ago•0 comments

Roost

https://roostsocial.app/
1•JetSpiegel•12m ago•0 comments

Reap: Automatic Curation of Coding Agent Benchmarks

https://arxiv.org/abs/2604.01527
1•dipankarsarkar•15m ago•0 comments

Ask HN: Could someone invite me to lobste.rs?

1•ra0x3•15m ago•0 comments

The Rape Gang Inquiry Report

https://rapeganginquiry.co.uk/report
3•Bender•15m ago•1 comments

Are Claude models broken with the Fable 5 update?

1•jackjd•15m ago•0 comments

Cboe Seeks to List Prediction Market Type Options on Earnings Metrics

https://www.bloomberg.com/news/articles/2026-07-01/cboe-seeks-to-list-prediction-market-type-opti...
1•petethomas•16m ago•0 comments

Crimson Room (2004)

https://kbhgames.com/game/crimson-room
1•dieselgate•18m ago•0 comments

Best Investments over the Last 100 Years? Almost All Are Tech Companies.

https://www.nytimes.com/2026/06/26/business/apple-nvidia-tesla-spacex-stock-market-winners.html
1•bookofjoe•18m ago•1 comments

The empty corner in brain-to-text

https://brgsk.xyz/the-empty-corner-in-brain-to-text/
1•brgsk•18m ago•0 comments

Your Site, your rules: new AI traffic options for all customers

https://blog.cloudflare.com/content-independence-day-ai-options/
1•tcp_handshaker•20m ago•0 comments

Large Hadron Collider is shut down by CERN to make it more powerful

https://www.dailymail.com/sciencetech/article-15943949/Large-Hadron-Collider-shut-CERN.html
1•Bender•20m ago•0 comments

Show HN: Simulate what AI agents do to an engineering org (no signup)

https://www.orgonaut.co/tools/agentic-reorg-simulator/
1•orgonaut•21m ago•0 comments

FSF Librephone update: Ensuring freedom, one blob at a time

https://www.fsf.org/bulletin/2026/summer/ensuring-freedom-one-blob-at-a-time
5•g-b-r•21m ago•0 comments

Stop Quoting Steve Ballmer

https://www.boxofcables.dev/stop-quoting-steve-ballmer/
1•haydenbarnes•21m ago•2 comments

Meta is reportedly building its own cloud business

https://www.engadget.com/2206249/meta-is-reportedly-building-its-own-cloud-business/
1•tcp_handshaker•22m ago•0 comments

What Can't Fable Do?

1•alimhaq•23m ago•0 comments

Flickr – Senior SRE – Remote (US) – Full-Time

https://www.flickr.com/jobs?gh_jid=7822735&gh_src=7b63e17d1
1•Photoworkisfun•24m ago•0 comments

Tidesman: Native MCP server for Apple Container's Linux container workflows

https://tidesman.dev/
1•JeronimoColon•25m ago•0 comments

Polymarket

https://unlimitedhangout.com/2026/06/investigative-series/the-secret-history-of-polymarket-part-1/
2•some-guy•26m ago•0 comments

Koah – Ad network built for AI

https://www.koahlabs.com
1•mkchoi212•27m ago•0 comments

Code Reviews Don't Scale

https://medium.com/@ben.g.northmore/the-death-of-code-reviews-as-we-know-them-d9a3e8d6795e
1•surprisefox•27m ago•3 comments

Show HN: Forgejo Appliance, a private Git server based on OrbStack and Tailscale

https://github.com/highpost/forgejo-appliance
1•highpost•27m 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.