frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

ToolBoxHub

https://estevao-jun.github.io/toolboxhub/
1•sa-m•1m ago•1 comments

It turns out Fortnite isn't the forever game after all

https://www.gamesindustry.biz/it-turns-out-fortnite-isnt-the-forever-game-after-all-opinion
1•lentil_soup•2m ago•0 comments

Google is to journalism what Vikings were to monks. Now their man will run BBC

https://www.theregister.com/2026/03/30/bbc_opinion/
1•defrost•6m ago•0 comments

Three-processor inference on AMD Ryzen AI 300

https://github.com/Peterc3-dev/rag-race-router
1•peterc3dev•12m ago•1 comments

Hacker News

https://github.com/qinheming/BloClaw
1•qinheming624•16m ago•0 comments

Sycophantic AI decreases prosocial intentions and promotes dependence

https://www.science.org/doi/10.1126/science.aec8352
2•xiaoyu2006•17m ago•0 comments

Resurrecting Sinistar: A Cyber-Archaeology Documentary [video]

https://www.youtube.com/watch?v=lCuoUSDBVac
1•sagacity•17m ago•0 comments

We're Pausing Asimov Press

https://www.asimov.press/p/pause
2•bookofjoe•18m ago•0 comments

Give your AI agent a real email address (open source, Cloudflare)

https://github.com/Digidai/mails
1•genedai•19m ago•3 comments

Startup wants to change how mathematicians do math

https://www.technologyreview.com/2026/03/25/1134642/this-startup-wants-to-change-how-mathematicia...
1•isaacfrond•22m ago•0 comments

Show HN: We Built 450 Modular Agent Skills for Medical Research

https://github.com/aipoch/medical-research-skills
1•The_resa•25m ago•0 comments

Show HN: Smux – split terminals for AI agents

https://github.com/gergomiklos/smux
1•gregolo•25m ago•0 comments

4.0M tokens for Next.js vs. 2.5M tokens for Wasp: same app, same prompt

https://wasp.sh/blog/2026/03/26/nextjs-vs-wasp-40-percent-less-tokens-same-app
1•matijash•29m ago•1 comments

Ask HN: Why do you flag a service when it goes down?

1•haebom•30m ago•0 comments

Vibe coding could mark the end of the App Store review process as we know it

https://9to5mac.com/2026/03/29/vibe-coding-developers-report-long-app-store-review-queues/
1•thm•31m ago•2 comments

The case for a universal basic income in the era of A.I

https://www.americamagazine.org/short-take/2026/03/23/universal-basic-income-ai/
1•robtherobber•34m ago•0 comments

Galton's Law of Mediocrity: Why Large Language Models Regress to the Mean

https://arxiv.org/abs/2509.25767
2•camillomiller•35m ago•0 comments

Stripe stole $85k and closed our account

12•MelkerWendelbo•41m ago•5 comments

Apple nailed AI by doing fucking nothing lol

https://xcancel.com/cryptopunk7213/status/2038351931589193953?s=20
8•doener•45m ago•5 comments

Stripe Dashboard Down

1•HPMOR•45m ago•0 comments

Stripe Is Down

https://dashboard.stripe.com/login
19•tompccs•45m ago•6 comments

In Praise of Plasma TVs

https://hackaday.com/2025/11/18/in-praise-of-plasma-tvs/
1•jruohonen•46m ago•0 comments

Show HN: AnyVali – Validation library that works the same across 10 languages

https://anyvali.com/
1•mrinc•48m ago•0 comments

GPL-compliant reasonable legal notices and author attributions

https://www.fsf.org/blogs/community/gpl-compliant-legal-notices-author-attributions
2•Tomte•50m ago•0 comments

You're right to be anxious about AI: This is how much we are building

https://www.dumky.net/posts/youre-right-to-be-anxious-about-ai-this-is-how-much-we-are-building/
3•dmkii•1h ago•3 comments

Mathematical methods and human thought in the age of AI

https://terrytao.wordpress.com/2026/03/29/mathematical-methods-and-human-thought-in-the-age-of-ai/
2•jjgreen•1h ago•0 comments

Swift SDK for Android

https://www.swift.org/documentation/articles/swift-sdk-for-android-getting-started.html
2•devy•1h ago•0 comments

Polygraphs have major flaws. Are there better options?

https://undark.org/2026/03/25/lie-detection-polygraph-accuracy/
3•Tijana329•1h ago•0 comments

Stripe Is Down

https://downdetector.fr/en/status/stripe/
6•pinter69•1h ago•0 comments

Show HN: IsDisposable – Open-source disposable email detection (160K+ domains)

https://www.npmjs.com/package/@isdisposable/js
2•junaidshaukat•1h ago•0 comments
Open in hackernews

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

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