frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

The First Telephone Call

https://theconversation.com/the-story-of-the-first-telephone-call-nine-words-that-changed-the-wor...
1•gmays•5m ago•0 comments

Grammarly Hit with Class-Action Suit over AI Identity Theft

https://www.techbuzz.ai/articles/grammarly-hit-with-class-action-suit-over-ai-identity-theft
1•twalichiewicz•6m ago•0 comments

Resume AI Analysis and Tailoring Portal

https://resume-elevator.com/
1•videsh•6m ago•0 comments

I Built a Reddit Alternative

https://exitapp.social
1•oligopoly_2•7m ago•1 comments

Optimizing for Decision Points

https://narphorium.com/blog/decision-points/
1•narphorium•9m ago•1 comments

BlackRock Launches $100M Skilled Trades Initiative

https://www.blackrock.com/corporate/newsroom/press-releases/article/corporate-one/press-releases/...
1•toomuchtodo•13m ago•0 comments

5 Games I Use to Teach English as an Alt

https://landenlove.com/five-games-i-use-to-teach-english/
1•LandenLove•14m ago•0 comments

Duckstation is ending Android support

https://www.androidauthority.com/duckstation-ends-android-support-3648430/
1•flykespice•14m ago•0 comments

Browserbase Founder Rejected by 500 Internships before founding $300M company [video]

https://www.youtube.com/watch?v=Eyuo1kG_APQ
3•dutilh•18m ago•0 comments

Apple releases iOS 15.8.7 to fix Coruna exploit for iPhone 6S from 2015

https://support.apple.com/en-us/126632
28•seam_carver•22m ago•6 comments

Show HN: Hyper, AI voice notes for spontaneous conversations

https://gethyper.space/
3•shainvs•24m ago•0 comments

Show HN: SwarmClaw – Manage a swarm of OpenClaw agents from one self-hosted UI

https://github.com/swarmclawai/swarmclaw
2•jamesweb•24m ago•0 comments

Halide cofounder Sebastiaan de With joins Apple's design team

https://9to5mac.com/2026/01/28/halide-cofounder-sebastiaan-de-with-joins-apples-design-team/
3•CharlesW•25m ago•1 comments

Paradise Episode 1 (KRAZAM)

https://www.youtube.com/watch?v=AS9y-d2BvZU
2•parkaboy•26m ago•0 comments

How much of HN is AI?

https://lcamtuf.substack.com/p/how-much-of-hn-is-ai
5•surprisetalk•29m ago•0 comments

The iPhone 17e

https://daringfireball.net/2026/03/the_iphone_17e
2•vismit2000•30m ago•0 comments

Watershed Moment for AI–Human Collaboration in Math

https://spectrum.ieee.org/ai-proof-verification
2•Brajeshwar•36m ago•0 comments

Ask HN: What on this "List of Unsolved Problems in Physics" Has Your Attention?

2•ghastmaster•42m ago•0 comments

Open-source GPU virtualization and pooling for Kubernetes

https://github.com/NexusGPU/tensor-fusion
3•killme2008•47m ago•0 comments

Iceberg was once the biggest in the world. Now it has just weeks left

https://www.bbc.co.uk/news/resources/idt-20f878f1-f4af-4022-9f62-b0515b9f4b20
4•gmays•49m ago•0 comments

Boosting Android Performance: Introducing AutoFDO for the Kernel

https://android-developers.googleblog.com/2026/03/BoostingAndroid%20PerformanceIntroducingAutoFDO...
2•ndesaulniers•49m ago•0 comments

On The Need For Understanding

https://blog.information-superhighway.net/on-the-need-for-understanding
2•zdw•51m ago•0 comments

Are we doing UX for AI the right way?

https://uxdesign.cc/are-we-doing-ux-for-ai-the-right-way-aea01e14138e
2•Akcium•53m ago•0 comments

Show HN: A tool that audits healthcare ML models for safety and trust

https://htas.runable.site/
1•AyodeleFikayomi•57m ago•0 comments

Show HN: Bus Core 1.0.3 Local-first manufacturing system for small shops

https://buscore.ca/
2•True-Good-Craft•1h ago•0 comments

My father left gold and cash. He left zero words for his family-I built the fix

https://eternalegacy.life
2•eterna_legacy•1h ago•2 comments

Grammarly Is Facing a Class Action Lawsuit over Its AI 'Expert Review' Feature

https://www.wired.com/story/grammarly-is-facing-a-class-action-lawsuit-over-its-ai-expert-review-...
2•healsdata•1h ago•0 comments

Show HN: K9 Audit – Causal intent-execution audit trail for AI agents

https://github.com/liuhaotian2024-prog/K9Audit
2•zippolyon•1h ago•0 comments

Measure of Justice: Covering the Cerîde-I Adliye Covers (2017)

https://www.denizcemonduygu.com/2017/05/measure-of-justice/
2•benbreen•1h ago•0 comments

Happy Birthday YC/HN

5•ellis0n•1h ago•3 comments
Open in hackernews

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

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