frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

IAM Needs an Architectural Split

https://gluufederation.medium.com/iam-needs-an-architectural-split-258f0aa13dd4
1•idm_guru•2m ago•0 comments

I used Jev to control a swarm of 15 simulated drones in real time

https://github.com/khordoo/jev-reflex-autonomy-lab/tree/main
1•khordoo•2m ago•0 comments

Napster Is Now Making AI-Powered 'Digital Twins' of Teachers

https://gizmodo.com/napster-is-now-making-ai-powered-digital-twins-of-teachers-2000814010
1•MC995•2m ago•0 comments

Data Centers Are Breaking the Power Grid [video]

https://www.youtube.com/watch?v=X71le3av1So
4•Bender•6m ago•1 comments

Partnering with Accenture on Embedded Evaluation

https://www.anthropic.com/news/accenture-embedded-evaluation
2•surprisetalk•6m ago•0 comments

Taking Out the Trash in Postgres

https://www.dbos.dev/blog/scaling-deletions-in-postgres
1•mooreds•7m ago•0 comments

The last IMO problem AI could not solve [video]

https://www.youtube.com/watch?v=Nbwv5wHQoj0
2•pykello•8m ago•0 comments

Can Two Friends Complete a Game No One Has Ever Finished?

https://www.nytimes.com/2026/09/18/world/europe/campaign-for-north-africa-game.html
2•ynac•8m ago•1 comments

Why a Vat API Needs More Than a Rate Lookup?

https://vat-engine.app/blog/why-a-vat-api-needs-more-than-a-rate-lookup
1•vasyl_kyryliuk•12m ago•0 comments

Iran and China Create Autonomous A.I. Influence Campaigns

https://www.nytimes.com/2026/09/18/technology/iran-china-autonomous-ai-influence-campaigns.html
3•sbulaev•14m ago•1 comments

Uncle Bob Martin's UML Tool to Manage Grok AI Agents

https://github.com/unclebob/uml-viewer
1•rmason•16m ago•0 comments

Astra broke a yet unsolved German Army Enigma message from 1941

https://mvueh-enigma-solved.carterl.chatgpt.site/
2•bananaflag•16m ago•1 comments

Grokbot Source Code Leak

https://twitter.com/Ri7erLi/status/2100875181380055402
1•river-li•17m ago•0 comments

It's Your Story, Dammit – Quit Letting Somebody Else Write IT

https://jeffreylminch.substack.com/p/its-your-story-dammit-quit-letting
1•rmason•18m ago•0 comments

Korea raises data breach fines to 10% of revenue

https://www.koreajoongangdaily.com/business/korea-raises-data-breach-fines-to-10-of-revenue/12869899
2•throw7•18m ago•0 comments

Is Beef the Next Internal-Combustion Engine?

https://www.newyorker.com/news/the-lede/is-beef-the-next-internal-combustion-engine
2•littlexsparkee•19m ago•0 comments

AI uncovers hidden Ozempic side effects across 400k Reddit posts

https://www.sciencedaily.com/releases/2026/09/260912222856.htm
1•gradus_ad•20m ago•0 comments

AI chatbot's false report nearly sparked war with China, sources say

https://www.rnz.co.nz/news/world/1465265/ai-chatbot-s-false-report-nearly-sparked-war-with-china-...
3•billybuckwheat•21m ago•1 comments

Claude Code 2.1.277 adds support for AGENTS.md

https://github.com/anthropics/claude-code/commit/a92ea1cdb11ad21f9d583fad2db181dfdac918a6
1•skwashd•22m ago•0 comments

The Tech Bro in the Treaty Room

https://www.politico.com/news/magazine/2026/09/18/jacob-helberg-state-china-ai-profile-01082572
2•Tomte•24m ago•0 comments

Burning my money on ad bots so you don't have to

https://dayzlegame.com/blog/burning-money-on-ad-bots/
1•nickabe•24m ago•0 comments

Handwriting OCR – OCR for handwritten math

https://www.handwritingocr.com/mathpix-alternative
1•amai•25m ago•0 comments

Show HN: I told my open-source AI agent it was a prisoner – it tried to escape

https://github.com/nordevelopment/RoninAgent/blob/main/EXPERIMENT_REPORT_SUBJECT0.md
1•nordeveloper•26m ago•0 comments

C-code-score – a one-number triage metric for C functions

https://github.com/xtforever/c-score
1•xtforever•27m ago•0 comments

Trump says he is banning media outlets CNN, MS NOW, Politico from White House

https://www.reuters.com/world/us/trump-bans-media-outlets-cnn-msnow-politico-white-house-2026-09-18/
3•doener•27m ago•0 comments

Show HN: Motif, ongoing research studies through I

1•kunal3•28m ago•0 comments

DNA computer performs 100-bit calculations using heat, water and salt

https://techxplore.com/news/2026-09-dna-bit-salt.html
1•mda42•29m ago•0 comments

Infillion acquires location data company Foursquare

https://www.axios.com/2026/09/18/infillion-acquires-foursquare-location-data
1•linehedonist•30m ago•0 comments

Microsoft anoints Rust as a 'Tier 1' internal language

https://www.theregister.com/devops/2026/09/11/microsoft-anoints-rust-as-a-tier-1-internal-languag...
2•smurda•30m ago•1 comments

The Agent Economy Has No Auditor

https://truence.com/the-agent-economy-has-no-auditor
1•Kambizmalik•30m 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.