frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Bridgerton Inspired Social Network

https://the-ton.vercel.app/login
1•vss01•2m ago•0 comments

Show HN: Malext.io is out – Database of malicious Chrome extensions

https://malext.io
1•toborrm9•2m ago•0 comments

Hospitals That Sue You for Getting Sick

https://healthcareuncovered.substack.com/p/hospitals-that-sue-you-for-getting
1•foolswisdom•5m ago•0 comments

Ask HN: Did Claude lowered its usage limits?

4•yu3zhou4•14m ago•1 comments

Show HN: Built a Chrome extension to help with daily agenda (Gmail and outlook)

1•websku•15m ago•0 comments

The Industry of the Future Is Run by People Who Hate Each Other

https://nymag.com/intelligencer/article/why-all-the-ai-leaders-hate-one-another.html
2•pseudalopex•17m ago•0 comments

Regulators monitor Anthropic's Mythos for banking risks

https://www.reuters.com/legal/government/regulators-monitor-anthropics-mythos-banking-risks-2026-...
4•01-_-•23m ago•0 comments

Your "AI" Pull Request was rejected and you don't know why

https://blog.codepipes.com/llms/your-pr-was-rejected.html
2•kkapelon•25m ago•0 comments

Figma's woes compound with Claude Design

https://martinalderson.com/posts/figmas-woes-compound-with-claude-design/
2•martinald•27m ago•0 comments

SerpApi Claude Code Skill

https://github.com/serpapi/serpapi-claude-plugin
3•jamescollinssp•28m ago•0 comments

A Proposed Framework for Evaluating AI Agent Skills

https://tessl.io/blog/a-proposed-framework-for-evaluating-skills-research-eng-blog/
2•popey•30m ago•0 comments

Ask HN: How to become better at software "engineering"?

3•luplex•41m ago•4 comments

The Victorian sex abuse scandal that shocked Britain and changed the law

https://theconversation.com/the-victorian-sex-abuse-scandal-that-shocked-britain-and-changed-the-...
1•zeristor•42m ago•0 comments

Signal Shot: verify the Signal protocol and its Rust implementation using Lean

https://leodemoura.github.io/blog/2026-4-20-signal-shot-the-platform-is-ready/
2•u1hcw9nx•42m ago•0 comments

List of Heaviest People

https://en.wikipedia.org/wiki/List_of_heaviest_people
2•keepamovin•43m ago•0 comments

Show HN: Radio4000

https://radio4000.com
1•ngc6677•49m ago•0 comments

M 7.4 earthquake – 100 km ENE of Miyako, Japan

https://earthquake.usgs.gov/earthquakes/eventpage/us6000sri7/
2•Someone•49m ago•0 comments

We Built a Metric Simulator

https://simpleobservability.com/blog/metric-simulator
1•khazit•53m ago•0 comments

NSA is using Anthropic's Mythos despite blacklist

https://www.reuters.com/business/us-security-agency-is-using-anthropics-mythos-despite-blacklist-...
22•Palmik•53m ago•7 comments

The first open-weights Large Transaction Model, EWE-1

https://sistemalabs.com/blog/introducing-ewe-1
2•0xideas•1h ago•0 comments

What Makes Docs Beautiful?

https://passo.uno/what-makes-docs-beautiful/
1•theletterf•1h ago•0 comments

How I made a budget tracker for my gf because she kept complaining about Sheets

https://edm115.dev/blog/2026/02/15/how-i-made-spendly/
1•EDM115•1h ago•0 comments

Show HN: MyKana, a Japanese learning app I built for my own study

https://mykana.app/
1•zerratar•1h ago•0 comments

ACM CCS 2026 Between-Cycle Transparency Report

https://github.com/ACM-CCS-2026/Transparency-Report
2•jruohonen•1h ago•0 comments

Bun v1.3.13

https://bun.com/blog/bun-v1.3.13
4•Erenay09•1h ago•0 comments

ShannonBase is database agent platform

https://medium.com/@shannon.data.tech/shannonbase-is-databas-agent-platform-2e914ccfc45e
1•shannon-data-ai•1h ago•1 comments

Architecture is all you need (How to think about agentic design)

https://x.com/compose/articles/edit/2046045421844455424
1•Kushal6070•1h ago•0 comments

Kindle E-Readers Released in 2012 or Earlier

https://www.amazon.com/gp/help/customer/display.html?nodeId=TRXsYxKJr4WTdsVs2P
1•bandwitch•1h ago•1 comments

The AI-Ready Product Data Framework for B2B Commerce

https://virtocommerce.com/assets/ai-ready-pim-framework
2•lizzieyo•1h ago•0 comments

How (and why) we rewrote our production C++ front end infrastructure in Rust

https://blog.nearlyfreespeech.net/2026/04/17/how-and-why-we-rewrote-our-production-c-frontend-inf...
1•birdculture•1h 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.