frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Retro phone trend reveals growing desire to disconnect, research finds

https://www.ecu.edu.au/newsroom/articles/research/retro-phone-trend-reveals-growing-desire-to-dis...
1•DeepLogin•43s ago•0 comments

Character and consequences in the age of intelligent machines

https://ctsmyth.substack.com/p/all-you-need-is-character
1•K0balt•1m ago•0 comments

Trump 2.0 has deleted or altered nearly 400 US datasets

https://www.theguardian.com/us-news/ng-interactive/2026/aug/18/trump-federal-data-deleted-altered
2•_djo_•1m ago•0 comments

China Removes Microsoft Windows at State Users Ahead of Plan

https://www.bloomberg.com/news/articles/2026-08-18/china-axing-microsoft-windows-from-state-agenc...
1•toomuchtodo•2m ago•1 comments

$1M hacker challenge for Vercel Sandbox

https://vercel.com/blog/one-million-dollar-hacker-challenge-for-vercel-sandbox
1•cletusigwe•4m ago•0 comments

Treasury Seeks Public Comment on Genius Act Proposed Rulemaking

https://home.treasury.gov/news/press-releases/sb0605
2•petethomas•4m ago•0 comments

PageSpeed Insights replays cached results, so I built an MCP that detects it

https://github.com/ConsidusOld/pagespeed-insights-mcp
1•Considus•7m ago•0 comments

Operationalizing agentic AI: The Day 0-2 blueprint for enterprise infrastructure

https://www.redhat.com/en/blog/operationalizing-agentic-ai-day-0-2-blueprint-enterprise-infrastru...
1•mooreds•9m ago•0 comments

30-year Treasury yield tops 5.33%, new 19-year high: inflation, spending worries

https://www.cnbc.com/2026/08/18/treasury-yields-.html
3•MilnerRoute•10m ago•0 comments

Why Don't We Version UIs?

3•gruensk•12m ago•1 comments

Diesel Margins Top $100 a Barrel to Reach Record High as Supply Crunch Grows

https://www.bloomberg.com/news/articles/2026-08-18/diesel-margins-top-100-a-barrel-to-reach-recor...
5•toomuchtodo•12m ago•1 comments

Hacker Koan

https://simple.wikipedia.org/wiki/Hacker_koan
1•gregsadetsky•14m ago•0 comments

The AI Slop Spiral

https://nolanfrausto.com/posts/ai-slop-spiral/
3•frausto•15m ago•1 comments

Eight hours of vintage department store Christmas music [video]

https://www.youtube.com/watch?v=nQKlEkKXBzQ
1•mooreds•16m ago•0 comments

Employees from lower class backgrounds face backlash when they negotiate

https://hbr.org/2026/08/research-employees-from-lower-class-backgrounds-negotiate-less-and-face-m...
1•underlipton•16m ago•0 comments

Recent grads say AI is making it harder to get a job. Economists aren't sure

https://text.npr.org/nx-s1-5910677
2•mooreds•18m ago•0 comments

the 404 test

https://www.oblo.mov/writing/the-404-test/
1•bahrtw•20m ago•0 comments

Show HN: Cronloop, run Claude Code or Codex on a schedule

https://cronloop.ai/
1•miketromba•21m ago•1 comments

Amazon Leo plans to connect mobile devices from space

https://www.aboutamazon.com/news/amazon-leo/amazon-leo-direct-to-device-satellite-service-explained
1•nateb2022•21m ago•0 comments

Self-Verification with DeepSeek V4 Flash Beats Claude Fable 5 on Terminal-Bench

https://github.com/llm-as-a-verifier/llm-as-a-verifier
2•yogthos•22m ago•0 comments

Trump Labels Map of Strait of Hormuz 'New U.S. Territory'

https://www.forbes.com/sites/zacharyfolk/2026/08/18/trump-labels-map-of-strait-of-hormuz-new-us-t...
1•bushwart•22m ago•0 comments

Sol Loves to Cheat

https://jumploops.com/blog/sol-loves-to-cheat/
1•jumploops•23m ago•0 comments

Ranked: Popular Cities for Digital Nomads

https://www.visualcapitalist.com/cp/ranked-the-30-most-popular-cities-for-digital-nomads/
1•mdp2021•23m ago•0 comments

Claude: Degraded Performance for Multiple Models

https://status.claude.com/incidents/q7txxvbsftgq
54•matt89•24m ago•29 comments

Superpowers, Not Superintelligence

https://bond.now/news/superpowers-not-superintelligence
2•edbernays•25m ago•0 comments

Changes for Apps in the European Union

https://developer.apple.com/news/?id=gmws0jgp
1•johnbehnke•25m ago•1 comments

How Turkey may have solved the Kurdish insurgency

https://www.nytimes.com/2026/08/18/opinion/turkey-kurds-pkk-hamas.html
1•marojejian•25m ago•1 comments

Git at Any Scale

https://cursor.com/blog/git-at-any-scale
2•meetpateltech•26m ago•0 comments

Launch HN: machine0 (YC S26) – Persistent CPU and GPU VMs from the CLI

https://machine0.io
6•bwm•26m ago•2 comments

Some contradictions of hybrid back to work (2023)

https://euri.ca/blog/2023-hybrid-back-to-work/
1•mooreds•26m 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.