frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

ForgeLite-The Most Minimalized Git

1•david3289•2m ago•0 comments

I made this word find game

https://word.1200tech.com
1•bosco_camera•5m ago•0 comments

Tokenomics: Quantifying Where Tokens Are Used in Agentic Software Engineering

https://arxiv.org/abs/2601.14470
1•Anon84•5m ago•0 comments

Gaia2: Benchmarking LLM Agents on Dynamic and Asynchronous Environments

https://arxiv.org/abs/2602.11964
1•Anon84•6m ago•0 comments

Bitcoin is cratering, but there is a new Wall Street crypto HYPE

https://www.cnbc.com/2026/06/06/bitcoin-price-crash-crypto-hype-hyperliquid-etfs.html
2•KnuthIsGod•10m ago•0 comments

HateArena – A free and open source arena shooter

https://github.com/hatearena/hate
3•death_eternal•16m ago•0 comments

Ask HN: Where do you get the latest updates about AI?

2•d0able•17m ago•1 comments

An Ohio Valley 100k-Watt FM Signal Is Severed in Broad Daylight – Radio World

https://www.radioworld.com/news-and-business/headlines/an-ohio-valley-100000-watt-fm-signal-is-se...
3•pkaeding•18m ago•0 comments

ICE detainees across the US describe medical neglect

https://apnews.com/article/ice-immigration-detention-medical-neglect-dhs-32c3fbeef0c44dfb02fcab89...
2•petethomas•23m ago•0 comments

Super El Niño Events

https://en.wikipedia.org/wiki/Super_El_Ni%C3%B1o_events
2•rolph•24m ago•0 comments

When Can Amazon Block an Agentic AI Service?–Amazon vs. Perplexity

https://blog.ericgoldman.org/archives/2026/06/when-can-amazon-block-an-agentic-ai-service-amazon-...
3•HotGarbage•24m ago•0 comments

Passing DBs Through Continuations

https://remy.wang/blog/cps.html
2•remywang•25m ago•0 comments

Complete Guide to Everything El Niño

https://weather.com/science/weather-explainers/news/2026-02-19-el-nino-la-nina-neutral-enso-pacif...
2•rolph•25m ago•0 comments

Deepfake Detector Robustness Testing

https://huggingface.co/datasets/danb21/social-media-robustness-sdxl-instantid
2•danbabalola•29m ago•1 comments

Show HN: Word-by-word translation aligner tool

https://aligner.tinygods.dev/
2•danipolani•32m ago•0 comments

ChatGPT hallucinating images when asked to restore non existent photo

https://twitter.com/penguinweb3/status/2063196355011424582
3•blumomo•34m ago•0 comments

Ultra-High-Speed Cutting for High-Performance Difficult-to-Machine Composites

https://www.mdpi.com/2075-1702/14/5/468
2•PaulHoule•34m ago•0 comments

FreeBSD 15.1 Delayed to Mid-June Due to Critical x86 Bug Fixes

https://www.phoronix.com/news/FreeBSD_15.1-RC3-Released
3•daesorin•39m ago•0 comments

I don't like computer anymore. [video]

https://www.instagram.com/reel/DZGC6EChvGK/
2•mastazi•42m ago•0 comments

AI Criticism

https://dennisforbes.ca/blog/microblog/2026/06/on_ai_criticism/
2•llm_nerd•45m ago•0 comments

Show HN: DomainTasker – avoid losing domains and surprise renewals

https://domaintasker.com/
8•si_164•52m ago•3 comments

Armed Forces Recipe Service [pdf]

https://www.marines.mil/portals/1/Publications/MCO%20P10110.42B.pdf
2•kmstout•53m ago•1 comments

The Guix Nix Abomination: Leveraging Guix Derivations in Nix

https://fzakaria.com/2026/06/05/the-guix-nix-abomination-leveraging-guix-derivations-in-nix
3•dagenix•1h ago•0 comments

Show HN: Persist – an AI agent that follows up accrued channels till they reply

https://persist.chat
3•Robelk1•1h ago•1 comments

CS Trivia: computer science crosswords

https://cstrivia.com/
2•bluejulius•1h ago•1 comments

A modular impact diverting mechanism for football helmets [pdf]

https://www.sfu.ca/~gwa5/pdf/2020_04.pdf
3•luu•1h ago•0 comments

Is AI Anxiety Causing the Vibecession? An Investigation

https://kevinonthemargin.com/is-ai-anxiety-causing-the-vibecession-an-investigation/
2•m-hodges•1h ago•0 comments

Up-to-Date Evidence Reviews of Health and Longevity Interventions

https://evipedia.ai/
2•negura•1h ago•0 comments

Public Domain Image Archive

https://pdimagearchive.org/
11•davidbarker•1h ago•1 comments

Immortality

https://aabiji.github.io/html/immortality.html
4•aabiji•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.