frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

What's Left of the Back-to-the-Landers

https://www.newyorker.com/culture/photo-booth/whats-left-of-the-back-to-the-landers
1•rdmuser•1m ago•0 comments

Show HN: As-an-engineer – A skill to make AI treat you like an engineer

https://github.com/mayooot/as-an-engineer
1•mayooot-go•1m ago•0 comments

Malicious/tracking 40 Chrome Extensions, 22M Users

https://www.hermandaniel.com/blog/20260705-40-chrome-extensions/
1•kekqqq•5m ago•0 comments

Show HN: ToolVerve – 75 client-side web tools running 100% in browser RAM

1•Abdullah_Sattar•7m ago•0 comments

UK to have strongest online child safety laws

https://www.gov.uk/government/news/uk-to-have-worlds-strongest-online-child-safety-laws-as-govern...
1•ironyman•8m ago•0 comments

Show HN: AlertiGate – Kubernetes alerts in, evidence-backed root cause out

https://alertigate.com/
1•dafi247•9m ago•0 comments

Cilfi: Automatic Function Identification in .NET Binaries

https://blog.washi.dev/posts/cilfi/
1•syumei•13m ago•0 comments

TuneWorks: Conversational AI analysis for Haltech ECU datalogs

https://tuneworks.ai/
1•Sharanxxxx•16m ago•0 comments

Do You Report Litter?

https://pmz1.substack.com/p/do-you-report-litter-will-it-work
1•gieksosz•16m ago•1 comments

The $2T Interest Bill

https://www.ft.com/content/4f28ef6c-f727-4d36-88a3-bbdbd13ddfbf
1•latentframe•16m ago•0 comments

The $440M Collapse of Guidepost Montessori

https://www.nytimes.com/2026/09/13/business/guidepost-montessori-higher-ground-education-ray-girn...
1•sbulaev•17m ago•0 comments

GitHub is currently experiencing an active service outage

https://www.githubstatus.com/incidents/0rn90wk115q9
2•matada_•18m ago•0 comments

Show HN: Lifetrajectory with calculation, action plans

https://lifetrajectory.live/calculator/
1•Lifetrajectory•18m ago•1 comments

Revolut confirms customer data breach through fake government requests

https://techcrunch.com/2026/09/12/revolut-confirms-customer-data-breach-through-fake-government-r...
3•tdrz•24m ago•0 comments

Race-Switching the Dukes of Hazzard

https://shitpost.plover.com/d/dukes.html
1•jjgreen•28m ago•0 comments

Our Eukaryotic Moment

https://contraptions.venkateshrao.com/p/our-eukaryotic-moment
1•jger15•29m ago•0 comments

Give to AI Formulas from Charts

https://github.com/BorisYamp/plotparse
2•borisyamp•32m ago•1 comments

How to Check Traffic Fines in UAE?

1•jimmyyy•34m ago•0 comments

My First Week with GPT-6 Astra

https://www.vincentschmalbach.com/gpt-6-astra-first-week/
3•vincent_s•35m ago•1 comments

Show HN: A museum of source code, in rooms you can walk through

https://www.programmingmuseum.com
1•justbits•36m ago•0 comments

The Effect of Cold Showering on Health and Work

https://pubmed.ncbi.nlm.nih.gov/27631616/
4•AFF87•43m ago•1 comments

New 'Zuckoff' App Detects Nearby Meta Smart Glasses Amid Privacy Backlash

https://www.channelnews.com.au/new-zuckoff-app-detects-nearby-meta-smart-glasses-amid-privacy-bac...
3•firstordefault•45m ago•0 comments

How to Build a Custom Agent Harness

https://www.langchain.com/blog/how-to-build-a-custom-agent-harness
1•porridgeraisin•50m ago•0 comments

Future Regret in Artichoke's State Refactor

https://github.com/lopopolo/harness-engineering/blob/v1.0.0/evals/artichoke-state-modeling.md
2•Bluestein•57m ago•0 comments

My Journey Towards Coding Agents: Building Sera

https://timdettmers.com/2026/01/27/building-open-coding-agent-sera/
1•vismit2000•1h ago•0 comments

MCP Server for reduce use of Token

https://github.com/dangranaz/nxm-memory
1•dangranaz•1h ago•1 comments

Show HN: STXT, indentation-based format with schemas and no escape characters

https://stxt.dev/
1•mombiela•1h ago•0 comments

Ten years of AI reporting ("60 Minutes" Marathon) [video]

https://www.youtube.com/watch?v=QdK-j7SYh4A
1•mdp2021•1h ago•1 comments

AI Ethics or Dog Whistling?

https://buttondown.com/usaa.ma/archive/ai-ethics-or-dog-whistling/
1•usamasulaiman•1h ago•0 comments

9/11 survivors are being diagnosed with cancer 25 years after the attacks [video]

https://www.youtube.com/watch?v=gKEly6Vs3MU
2•mgh2•1h ago•0 comments
Open in hackernews

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

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