frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Finding Vulnerabilities with Warden

https://cra.mr/finding-vulnerabilities-with-warden/
1•ezekg•3m ago•0 comments

Civil Rights Division Sues Cloudera for Blocking U.S. Workers from Tech Jobs

https://www.justice.gov/opa/pr/civil-rights-division-sues-cloudera-excluding-us-workers-applying-...
1•gixxerblade•3m ago•0 comments

Why Geolog? [pdf]

https://geolog.sgai.uk/why.pdf
1•luu•7m ago•0 comments

Singularity Report – The Last One:)

https://auroratheanomaly.nekoweb.org/DARSDBD.html
1•rogmash•11m ago•0 comments

Woman weaponizes swarm of bees against deputies trying to carry out an eviction

https://www.oregonlive.com/crime/2026/04/woman-weaponized-a-swarm-of-bees-against-deputies-trying...
2•randycupertino•17m ago•0 comments

The Role of a New Machine

https://newsletter.dancohen.org/archive/the-role-of-a-new-machine/
1•colinprince•18m ago•0 comments

Ask HN: Why does tech industry not have more co-ops?

1•conqrr•22m ago•2 comments

Show HN: Wayland Window Switcher

https://github.com/iondodon/witcher
1•iondodon•23m ago•0 comments

The Accidental Ancestor – How Verifying Numbers Shaped Modern Hashing

https://0xkrt26.github.io/math_behind_security/2026/04/28/the-accidental-ancestor-Luhn-algorithm....
1•denismenace•24m ago•0 comments

The Controllability Trap: A Governance Framework for Military AI Agents

https://arxiv.org/abs/2603.03515
1•Anon84•25m ago•0 comments

We Measure Tickets, Not Problems Prevented

https://vivianvoss.net/blog/why-we-measure-tickets
1•QuantumNomad_•25m ago•0 comments

PageGuide – a browser agent that grounds AI directly on the webpage

https://pageguide.github.io/
1•trangtri123•26m ago•0 comments

Show HN: Order a VPS without ever leaving your terminal

https://crocuda.com
1•jean_dupont•28m ago•1 comments

My Two Years as an Anthropologist on the Photoshop Team (2015)

https://medium.com/startup-frontier/my-two-years-as-an-anthropologist-on-the-photoshop-team-e700a...
2•downbad_•29m ago•1 comments

Little-known Bay Area city will keep San Francisco in its airport's name

https://sfstandard.com/2026/04/28/oak-sfo-reach-naming-settlement/
1•mikhael•31m ago•2 comments

Before GitHub

https://lucumr.pocoo.org/2026/4/28/before-github/
32•mlex•31m ago•7 comments

The Sad Story of Heisenberg's Doctoral Oral Exam (1998)

https://www.aps.org/archives/publications/apsnews/199801/heisenberg.cfm
1•downbad_•31m ago•1 comments

Hundred Rabbits

https://en.wikipedia.org/wiki/Hundred_Rabbits
1•quijoteuniv•33m ago•0 comments

Critical Vulnerability with CPanel and WHM Login Authentication

https://support.cpanel.net/hc/en-us/articles/40073787579671-Critical-Vulnerability-with-cPanel-WH...
5•ollybee•33m ago•0 comments

AI Wellbeing: Measuring and improving the functional pleasure and pain of AIs

https://www.ai-wellbeing.org/
1•anematode•35m ago•0 comments

Walmart Upstream Facility Services: What We Do

https://public.walmart.com/content/wp/upstream-home/WhatWeDo.html
1•petethomas•36m ago•0 comments

Donating Agent Payments Protocol to the Fido Alliance

https://blog.google/products-and-platforms/platforms/google-pay/agent-payments-protocol-fido-alli...
2•pentagrama•36m ago•0 comments

Preparing for the AI-Enhanced Attacker and the Impact on CISOs

https://www.armadin.com/blog-posts/prepare-for-the-ai-enhanced-attacker
1•wslh•37m ago•0 comments

Does it work, or does it keep working?

https://shippingbytes.com/2026/04/22/does-it-work-or-does-it-keep-working/
2•gianarb•38m ago•0 comments

Anglo-Persian Oil Company

https://en.wikipedia.org/wiki/Anglo-Persian_Oil_Company
2•notepad0x90•39m ago•0 comments

MeetingEscape – vibe-coded panic button for escaping meetings

https://meetingescape.net/
1•Enginehead_•39m ago•0 comments

Confectionary Satellites

https://zenodo.org/records/19799778
1•svnt•40m ago•0 comments

Denuvo has been cracked in all single-player games it previously protected

https://www.tomshardware.com/video-games/pc-gaming/denuvo-has-been-bypassed-in-all-single-player-...
12•oceansky•40m ago•0 comments

Vompeccc from Scratch: Picking Produce with ICR in Emacs

https://www.chiply.dev/post-vompeccc-fruits
1•chiply•41m ago•1 comments

Router has been narrating your browsing habits this whole time

https://www.makeuseof.com/your-isp-watching-your-browsing-whole-time-heres-windows-11-fix/
1•galaxyLogic•43m ago•0 comments
Open in hackernews

Show HN: OpenEvolve – open-source implementation of DeepMind's AlphaEvolve

8•codelion•11mo 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•11mo 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•11mo ago
How many tokens did it take to generate the 800 versions of the code?
codelion•11mo ago
Checked my openrouter stats, it took ~3M tokens but that involved quite a few runs of various experiments.