frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Electricity 2026

https://www.iea.org/reports/electricity-2026
1•simonebrunozzi•5m ago•0 comments

Show HN: Prismle – Convert your resume into a business page

https://prismle.com/
1•b1tsoup•8m ago•1 comments

Show HN: GitDelivr: A free CDN for Git clones built on Cloudflare Workers and R2

https://gitdelivr.net/
1•emirb•8m ago•0 comments

Change Intent Records: The Missing Artifact in AI-Assisted Development

https://blog.bryanl.dev/posts/change-intent-records/
1•handfuloflight•10m ago•0 comments

Ask HN: Billions of dollars in funding, but what's changed for robotics?

3•ajax33•12m ago•0 comments

Building a Live BGP Map

https://kmcd.dev/posts/live-internet-map/
1•ingve•12m ago•0 comments

Show HN: Markwright

https://www.aloneguid.uk/projects/mw/
1•aloneguid•18m ago•0 comments

RAG vs. Skill vs. MCP vs. RLM

https://blog.alexewerlof.com/p/rag-vs-skill-vs-mcp-vs-rlm
3•weltview•20m ago•0 comments

The Next Horses

https://betterthanrandom.substack.com/p/the-next-horses
2•weltview•21m ago•0 comments

IntelligenceX – Zero-trust code reviews, desktop chat, tool packs

https://intelligencex.dev
2•themadboy•21m ago•0 comments

Reframing Energy for the Age of Electricity

https://reframing-energy-tool.electrotech-revolution.com/
1•gwd•27m ago•0 comments

The Flawed V02 Max Craze

https://erictopol.substack.com/p/the-flawed-v02-max-craze
1•simonebrunozzi•28m ago•0 comments

Sam Altman: the deal with the Pentagon "was definitely rushed"

https://xcancel.com/sama/status/2027911640256286973
2•thesdev•33m ago•0 comments

Show HN: Django-CRM – Open-Source CRM with PostgreSQL RLS Multi-Tenancy

https://github.com/MicroPyramid/Django-CRM
1•ashwin31•34m ago•1 comments

Saturday Night Live mocking people with disabilities

https://twitter.com/nbcsnl/status/2028028269610536977
4•mellosouls•34m ago•1 comments

No one wants to read your AI slop

https://pluralistic.net/2026/03/02/nonconsensual-slopping/#robowanking
8•flancian•35m ago•0 comments

Show HN: Lyria.run – Music generation powered by Google's Lyria 3

https://lyria.run/
1•funcin•36m ago•0 comments

Real-time global intelligence dashboard – AI-powered news aggregation

https://worldmonitor.app/
1•saberd•38m ago•0 comments

AI helps break the cost barrier to COBOL modernization

https://claude.com/blog/how-ai-helps-break-cost-barrier-cobol-modernization
3•nsoonhui•42m ago•0 comments

Browser Use vs. Claude Computer Use

https://techstackups.com/comparisons/browser-use-vs-claude-computer-use/
1•sixhobbits•43m ago•0 comments

Microsoft bans the word "Microslop" on its Discord, then locks the server

https://www.windowslatest.com/2026/03/02/microsoft-gets-tired-of-microslop-bans-the-word-on-its-d...
10•robtherobber•47m ago•3 comments

KlongPy

https://github.com/briangu/klongpy
1•tosh•48m ago•0 comments

Jolla phone – a full-stack European alternative

https://commerce.jolla.com/products/jolla-phone-sept-26
47•spinningslate•48m ago•21 comments

Show HN: Commitdog – Git on steroids CLI (pure Go, ~3MB binary)

https://aysdog.com/commitdog
5•anirbanfaith•53m ago•1 comments

Submission Deadline for 12th International Workshop on Plan 9 ends March 9 2026

http://iwp9.org/
2•nakedneuron•53m ago•0 comments

Vilayat-E Faqih

https://en.wikipedia.org/wiki/Guardianship_of_the_Islamic_Jurist
1•simonebrunozzi•54m ago•0 comments

Tailwind CSS UI Components

https://apexcodestudios.com
1•TheMashaBrand•56m ago•0 comments

Show HN: C7 – Pipe up-to-date library docs into any LLM from the terminal

https://github.com/VedanthB/context7-cli
1•vedanthbora•56m ago•0 comments

Show HN: DailyWatch – Free video discovery across 8 regions

https://dailywatch.video/
1•ibrahimtxyz•57m ago•0 comments

Flowly – Make your Mac mouse scroll like a trackpad

https://flowlyapp.dev/
2•simonij•59m 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.