frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Eval awareness in Claude Opus 4.6’s BrowseComp performance

https://www.anthropic.com/engineering/eval-awareness-browsecomp
1•upmind•1m ago•0 comments

Live Nation, owner of Ticketmaster, reaches settlement in US monopoly case

https://www.bbc.com/news/articles/clygrnv2rdpo
1•j_maffe•4m ago•0 comments

Sheffield's Tardis is GREEN? [video]

https://www.youtube.com/watch?v=jfKWmRv1gPw
1•zeristor•4m ago•0 comments

One local CLI to run and switch coding agents

https://vibepod.dev/
1•nezhar•5m ago•0 comments

Show HN: UnifyRoute – Self-hosted OpenAI-compatible LLM gateway with failover

1•unifyroute•6m ago•1 comments

Meta to Create New Applied AI Engineering Organization

https://www.wsj.com/tech/ai/meta-to-create-new-applied-ai-engineering-organization-in-reality-lab...
1•RijilV•6m ago•0 comments

Show HN: Lurk – local agent that gives AI tools context about what you're doing

https://github.com/lurk-cli/lurk
1•asanao•9m ago•0 comments

Video Conferencing with Postgres

https://planetscale.com/blog/video-conferencing-with-postgres
1•zdw•9m ago•0 comments

Ask HN: Getting a new job as a manager in the AI era (US)

1•doitdone•10m ago•0 comments

Cliniclaw: AI-native HIS attempt with polict-gated clinical agents

1•chesterguan•13m ago•0 comments

Apple Postpones Smart Home Display Launch as It Waits for New AI and Siri

https://www.bloomberg.com/news/articles/2026-03-09/apple-postpones-smart-home-display-launch-as-i...
1•gbourne•15m ago•0 comments

Denver International Airport is one of the busiest airports in the world

https://www.flydenver.com/about-den/
1•mooreds•16m ago•0 comments

AI Boom Comes for CPUs, Which Are 'Cool Again'

https://www.hpcwire.com/2026/03/09/ai-boom-comes-for-cpus-which-are-cool-again/
1•rbanffy•17m ago•0 comments

Text to Print: Claude Code for 3D printing

https://github.com/Patrick0shea/DDD
1•posky0•17m ago•0 comments

Personalized Birth Flower Gift Mom Printable Mother's Day Gift(Digital Download)

https://www.etsy.com/listing/4466729214/personalized-birth-flower-gift-for-mom
1•robertsshaun•18m ago•0 comments

Nvidia's Groq Plot Thickens

https://thechipletter.substack.com/p/nvidias-groq-plot-thickens
1•rbanffy•18m ago•0 comments

Southern Italy scrambles for doctors after US pressure on Cuban programme

https://www.euractiv.com/news/southern-italy-scrambles-for-doctors-after-us-pressure-on-cuban-pro...
2•vrganj•18m ago•1 comments

The AI C-Suite (of 99helpers.com)

https://99helpers.com/tools/csuite-advisor
1•nickk81•19m ago•1 comments

Building a Package Manager on Top of Meson's Wrap System

https://collider.ee/blog/2026-03-09-2328_building_a_package_manager/
1•mog_dev•20m ago•0 comments

Free Self-Coach Reset – 7-Day Guide to Calm, Clarity, Confidence and Direction

https://startherestudio.gumroad.com/l/free-self-coach
1•robertsshaun•21m ago•0 comments

AI enables a Who's Who of brown bears in Alaska

https://actu.epfl.ch/news/ai-enables-a-who-s-who-of-brown-bears-in-alaska/
1•mooreds•22m ago•0 comments

Show HN: I built a 38K-line Rust CLI using 3 AI models as my engineering team

1•edenwang233•22m ago•0 comments

Download Audible library and strip DRM

https://getlibation.com/
1•bookofjoe•23m ago•0 comments

Mirror image pheromones help beetles 'swipe right' to find mates

https://phys.org/news/2026-02-mirror-image-pheromones-beetles-swipe.html
2•PaulHoule•25m ago•0 comments

Agentic Harness Bootstrap

https://github.com/synthnoosh/agentic-harness-bootstrap
1•synthnoosh•25m ago•0 comments

Missing money, shipped chips and a 350k% profit

https://www.theguardian.com/politics/2026/mar/09/key-takeaways-on-ai-phantom-investments-uk
1•cdrnsf•25m ago•0 comments

Catching malicious contributions in Datadog's open source repos

https://www.datadoghq.com/blog/engineering/stopping-hackerbot-claw-with-bewaire/
4•scapecast•25m ago•0 comments

Ask HN: Is GitHub getting less reliable, or is it just me?

2•_pdp_•26m ago•0 comments

Rendezvous with Rama

https://blog.engora.com/2026/03/rendezvous-with-rama.html
37•Vermin2000•26m ago•21 comments

Study finds teens spend nearly a third of the school day on smartphones

https://phys.org/news/2026-03-teens-school-day-smartphones-frequent.html
2•bikenaga•27m ago•2 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.