frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

ABOM – Map your GitHub Actions supply chain (built after the Trivy compromise)

https://github.com/JulietSecurity/abom
1•rodrickbrown•4m ago•0 comments

What if you codebase was living all along and you were a surgeon

https://twitter.com/rs545837/status/2037382115457933720
1•as290608•5m ago•0 comments

JoyConf: A live emoji reaction app for presentations

https://tracyatteberry.com/posts/joyconf/
1•sea-gold•9m ago•0 comments

Ship with Claude – Free Starter Pack (Maintainable AI-Assisted Projects)

https://panavy.gumroad.com/l/skmaha
1•panavm•12m ago•0 comments

Systemd-free antiX 26: Debian 13, in bonsai form

https://www.theregister.com/2026/03/24/antix_26_bonsai_trixie/
1•thunderbong•13m ago•0 comments

Ask HN: How has your DevOps/SRE changed since AI was adopted in your company?

1•paperplaneflyr•17m ago•0 comments

Show HN: Sylve – A management plane for FreeBSD (ZFS, VMs, jails, clustering)

https://sylve.io
2•arch1e•20m ago•0 comments

Does a hit song really need 9 writers? (2019)

https://www.bbc.com/news/entertainment-arts-48395059
1•1659447091•22m ago•0 comments

If you are a published author you may be entitled to compensation

https://www.anthropiccopyrightsettlement.com
1•october8140•26m ago•0 comments

Tom paxton – lyndon Johnson told the nation [video]

https://www.youtube.com/watch?v=uXcG3tXYNF8
1•marysminefnuf•31m ago•0 comments

OpenCodex – A developer hub to showcase projects and profiles

https://opencodex.app
1•barrazadev•32m ago•1 comments

Sign Errors in "The Four Laws of Black Hole Mechanics"

https://arxiv.org/abs/2603.25171
2•mellosouls•41m ago•0 comments

Show HN: Agent Kernel – 3 MD files that turn any AI into a self-aware Agent

https://agent-kernel.dev/?release=v1.23.0
2•obilgic•43m ago•0 comments

Show HN: AgentGuard – An open-source firewall to secure autonomous AI agents

https://github.com/Caua-ferraz/AgentGuard
2•millimercure•45m ago•0 comments

Why the Minnesota Starvation Experiment Doesn't Generalize to Modern Dieting

https://greyenlightenment.com/2026/03/21/why-the-minnesota-starvation-experiment-doesnt-generaliz...
2•paulpauper•48m ago•0 comments

Why most AI projects fail after the demo works

https://thenewstack.io/ai-demo-to-production/
1•msolujic•1h ago•0 comments

Scale AI X Prediction Markets

https://reppo.ai/
1•rgvrmdya•1h ago•1 comments

What's the Deal with Forward Deployed Engineers?

1•rubyrenegade•1h ago•1 comments

I automated my social media outreach with Claude Code

https://github.com/Brainrot-Creations/claude-plugins
2•shubhthorat•1h ago•1 comments

Modeling the AGI Economy

https://continuations.com/modeling-the-agi-economy
2•allenleee•1h ago•0 comments

PICO-8 platformer system: handling every notoriously difficult physics edge case

https://torcado.com/blog/simple-platformer/
2•memalign•1h ago•0 comments

A leak reveals that Anthropic is testing a more capable AI model "Claude Mythos"

https://fortune.com/2026/03/26/anthropic-says-testing-mythos-powerful-new-ai-model-after-data-lea...
7•Tiberium•1h ago•0 comments

Update and learning from Unfudged HN Show last month

https://cyrusradfar.com/thoughts/unfudged-from-frustration-to-open-source
1•cyrusradfar•1h ago•0 comments

YouGov withdraws survey showing rising church attendance in England and Wales

https://www.theguardian.com/world/2026/mar/26/yougov-withdraws-survey-church-attendance-christian...
1•prawn•1h ago•0 comments

Show HN: Scroll bar scuba dude swimming as you scroll

https://scrollbuddy.com/
3•hello12343214•1h ago•4 comments

Show HN: New Causal Impact Library

https://github.com/YuminosukeSato/bsts-causalimpact
1•djwjjtw•1h ago•0 comments

Ask HN: How do you handle breaking changes from third-party APIs in production?

1•kriish2205•1h ago•0 comments

Sycophantic AI decreases prosocial intentions and promotes dependence

https://www.science.org/doi/10.1126/science.aec8352
2•noleary•1h ago•1 comments

Ordinary Americans Take on Mark Zuckerberg and Big Tech in Jury Trials

https://www.thebignewsletter.com/p/normal-americans-say-enough-to-big
1•connor11528•1h ago•0 comments

The Innovation Edge: How Large Companies Lose It and How to Get It Back

https://books.forbes.com/books/the-innovation-edge/
2•teleforce•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.