frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

ClickFix Campaign: I Searched for Tailscale and Found a Phishing Operation

https://perezbox.com/articles/clickfix-campaign-tailscale-nine-month-phishing-operation
1•sucuri2•1m ago•0 comments

Local LLM Proxy: Turn Idle LLM Compute into Universal Credits

https://github.com/wink-run/local-llm-proxy
1•zwling8•1m ago•0 comments

Kettle: Attested Builds for Verifiable Software Provenance

https://arxiv.org/abs/2605.08363
1•badcryptobitch•3m ago•0 comments

Sam Altman's Business Dealings Under GOP Scrutiny Ahead of OpenAI's IPO

https://www.wsj.com/tech/ai/sam-altmans-business-dealings-under-gop-scrutiny-ahead-of-openais-ipo...
3•JumpCrisscross•9m ago•0 comments

Productivity Isn't About Going Faster

https://humanpro.co/articles/productivity-isnt-about-going-faster/
2•gx•12m ago•0 comments

End-to-end encrypted RCS messaging rolling out for Android and iPhone users

https://blog.google/products-and-platforms/platforms/android/android-ios-end-to-end-encrypted-rcs...
2•thunderbong•13m ago•0 comments

Elon Musk's Grok Is Losing Ground in AI Race

https://www.wsj.com/tech/ai/anthropic-spacex-ai-deal-elon-musk-f86ea369
2•JumpCrisscross•14m ago•1 comments

MCP-Guardrail

https://github.com/kaarhsg-cpu/mcp-guardrail
1•karthikhermes•16m ago•0 comments

Skill1: Unified Evolution of Skill-Augmented Agents via Reinforcement Learning

https://arxiv.org/abs/2605.06130
1•lexandstuff•20m ago•0 comments

“Something rather unusual is happening in Russia” – My BBC Radio Dispatch

https://www.youtube.com/watch?v=K9su3iLw9hU
2•consumer451•27m ago•0 comments

Tofersen, a New Treatment for ALS, Reverses Symptoms for Some

https://www.nytimes.com/2026/05/06/well/als-treatment-tofersen-qalsody.html
1•MaysonL•31m ago•0 comments

Ask HN: Can NPM postinstall script be run in a sandbox? how to do that?

1•imWildCat•32m ago•0 comments

Cloudflare Is Down

6•sammy2255•33m ago•4 comments

Instructure Pays Ransom to Canvas Hackers

https://www.insidehighered.com/news/tech-innovation/administrative-tech/2026/05/11/instructure-pa...
1•Cider9986•44m ago•0 comments

Trying San Francisco's most experimental depression treatments

https://www.theguardian.com/society/2026/may/11/silicon-valley-depression-wellness-boom
2•andsoitis•45m ago•0 comments

Earthworms Don't Bio-Accumulate Microplastics, So There May Be Hope for Us

https://hackaday.com/2026/05/05/earthworms-dont-bio-accumulate-microplastics-so-there-may-be-hope...
1•lxm•48m ago•0 comments

Tesla's New AI Tech Could Save Lives, Thanks to Quicker Airbags

https://www.caranddriver.com/news/a71269172/tesla-ai-tech-airbag-deployment/
1•RickJWagner•48m ago•0 comments

RegexPSPACE: Regex LLM Benchmark

https://arxiv.org/abs/2510.09227
1•thatxliner•58m ago•0 comments

It has a few rough edges but it works and it's free

https://github.com/slucerodev/ExoArmur-Core
1•slucerodev•1h ago•0 comments

Show HN: Sigmashake Desktop – AI Coding Agent Guardrails

https://sigmashake.com/desktop
1•cavalrytactics•1h ago•1 comments

Why Everyone's Picking Up a PSP Again in 2026

https://gardinerbryant.com/psp-in-2026/
2•Kate0CoolLibby•1h ago•0 comments

America is experiencing a productivity miracle

https://www.economist.com/finance-and-economics/2026/05/11/america-is-experiencing-a-productivity...
2•simonpure•1h ago•0 comments

Software Internals Book Club

https://eatonphil.com/bookclub.html
8•aragonite•1h ago•0 comments

Fake building: Claude wrote 3k lines instead of import pywikibot

https://fireflysentinel.github.io/posts/fake-building-claude-3000-lines/
30•firef1y1203•1h ago•12 comments

Notes from inside China's AI labs

https://www.interconnects.ai/p/notes-from-inside-chinas-ai-labs
2•gmays•1h ago•1 comments

Mona Lisa's Identity Established Beyond Doubt (2008)

https://www.uni-heidelberg.de/press/news/press552e.html
1•thunderbong•1h ago•0 comments

Microsoft fires head of Israeli subsidiary over surveillance of Palestinians

https://www.pcgamer.com/gaming-industry/microsoft-fires-head-of-israeli-subsidiary-and-other-mana...
17•donohoe•1h ago•2 comments

Floci: Light, fluffy, and always free – The AWS Local Emulator alternative

https://github.com/floci-io/floci
1•linkdd•1h ago•0 comments

A consistent pattern of lying': trial exposes what insiders think of Sam Altman

https://www.theguardian.com/us-news/2026/may/11/musk-v-openai-altman-trial
8•andsoitis•1h ago•0 comments

Instructure Security Incident Update

https://www.instructure.com/incident_update
2•danso•1h ago•3 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.