frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Google workers demand layoff protections amid AI boom in petition to CEO

https://www.theguardian.com/technology/2026/jul/16/google-workers-layoff-protections-ai
2•tcp_handshaker•2m ago•0 comments

The Open-Soruce Big Bang

https://webaligo.bearblog.dev/the-open-soruce-big-bang/
1•ilreb•3m ago•0 comments

Ukraine's Dr. Strangelove – a rocket designer with dubious past sets out to

https://www.theatlantic.com/national-security/2026/07/ukraine-denys-shtilerman-drone-missile/687931/
1•bell-cot•3m ago•0 comments

Avoidance 1.0: Making Every Run Fairer

https://simonskinner.me/blog/avoidance-1-0-making-every-run-fairer
1•vultuk•5m ago•0 comments

Beaver who escaped to find mate welcomes first kit

https://www.bbc.com/news/articles/c70gz4zpv97o
1•1659447091•6m ago•0 comments

Trump administration is dictating access to frontier AI models

https://www.cnbc.com/2026/07/17/white-house-ai-access-anthropic-openai.html
2•tosh•6m ago•0 comments

Warum fällt Abnehmen ab 35 plötzlich so schwer?

https://substack.com/profile/524692702-ketosana94/note/c-296895670
1•ketosana94•8m ago•0 comments

Pelican on a bicycle is a good benchmark, right?

https://playcode.io/blog/macbook-svg-benchmark
2•ianberdin•10m ago•0 comments

Show HN: A modern sample database for learning SQL – replace the Sakila database

https://github.com/rozhnev/university-db
1•rozhnev•11m ago•0 comments

Trump pitched $100k monthly fee for faster feed of US president's posts

https://www.reuters.com/business/media-telecom/trump-media-pitched-100000-monthly-fee-fast-feed-u...
1•Alien1Being•12m ago•0 comments

GitRoot

https://gitroot.dev/
1•ilreb•12m ago•0 comments

OT Credential Abuse: They Logged In. They Didn't Break In

https://www.emberot.com/resources/blog/ot-credential-abuse/
1•TheWiggles•16m ago•0 comments

Profile: GRU cyber and hybrid threat operations

https://www.gov.uk/government/publications/profile-gru-cyber-and-hybrid-threat-operations/profile...
1•azalemeth•17m ago•0 comments

I was tired of random feeds so I created my personal algorithm

1•Satya29•20m ago•0 comments

Glamorous Toolkit

https://gtoolkit.com//
1•Tomte•20m ago•0 comments

Show HN: ShellStack – Interactive cybersecurity learning platform with 280 tool

https://github.com/shlokkokk/ShellStack
1•shlokkshahh•24m ago•0 comments

12 Factor Agents

https://github.com/humanlayer/12-factor-agents
1•veleon•24m ago•0 comments

Agent-compiler: scripts for your recurring workflows (60–80% lesser tool calls)

https://www.npmjs.com/package/@woustachemaxd/agent-compiler
1•woustachemaxd•25m ago•0 comments

Show HN: Xata scratch – a branch for each psql session

https://xata.io/blog/the-instant-database-scratchpad-xata-scratch
1•tudorg•27m ago•0 comments

Startup credits hiding your real burn rate

https://economi.co/learn/cloud-credits-hiding-your-burn
1•pelle•28m ago•0 comments

Europe 2027, or how Europe can win

https://kdev.home.arpa/posts/europe-2027/
1•RedTachyon•29m ago•0 comments

Vikram-1: India's first private space rocket by Skyroot to carry diamond flower

https://www.bbc.com/news/articles/clyekv7rld3o
2•breve•30m ago•0 comments

The Man Who Killed Google Search (2024)

https://www.wheresyoured.at/the-men-who-killed-google/
2•thunderbong•33m ago•0 comments

AI Gets Trapped in a Circular Loop on Climate Science

1•radicon•36m ago•0 comments

Why is the determinant like that? [video]

https://www.youtube.com/watch?v=Sv7VseMsOQc
1•penguin_booze•38m ago•0 comments

Show HN: A done-for-you subscription app service for Instagram creators

https://www.officeos.co
1•Harro123•40m ago•0 comments

The 20x plan is now the 10x plan, and the 5x plan is the 2.5x plan

https://xcancel.com/bilawalsidhu/status/2078312397069009403
2•phaser•41m ago•0 comments

London Underground users should know about toxic dust risk, whistleblower says

https://www.theguardian.com/uk-news/2026/jul/18/london-underground-passengers-should-know-about-t...
2•YeGoblynQueenne•41m ago•0 comments

The Joy of Being Wrong

https://shortdiv.com/posts/the-joy-of-being-wrong/
1•haritha1313•42m ago•0 comments

Vibe Maintainer by Steve Yegge

https://steve-yegge.medium.com/vibe-maintainer-a2273a841040
2•haritha1313•43m 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.