frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Are U.S. Consumers Ready to Use Pay-by-Bank at the Point of Sale?

https://www.kansascityfed.org/research/payments-system-research-briefings/are-us-consumers-ready-...
1•toomuchtodo•4m ago•0 comments

Prominent Haskell defector pilloried by anti-AI purists

https://www.theregister.com/devops/2026/07/15/prominent-haskell-defector-pilloried-by-anti-ai-pur...
1•galaxyLogic•6m ago•0 comments

Celebrity influencers paid up to £1M to advertise deodorant on Instagram

https://www.bbc.co.uk/news/articles/cvgegqrp656o
2•mmarian•9m ago•0 comments

Vercel Native Awesome List

https://github.com/henryoman/awesome-vercel-native
1•henryoman•9m ago•0 comments

Holding the LLM Stack in Your Head

https://thegustafson.com/series
1•yayitswei•13m ago•0 comments

Show HN: Applications Are All You Need

https://www.npmjs.com/package/@openluxeco/cli
1•chandlerwilcox•14m ago•0 comments

Roko's Dancing Basilisk

https://boston.conman.org/2025/12/02.1
1•signa11•16m ago•0 comments

Mirage – fast and simple GTK+ image viewer

https://gitlab.com/thomasross/mirage
1•Mr_Minderbinder•18m ago•0 comments

Show HN: Free Ollama AI Trading Desktop App

https://www.vaultcharts.com/
1•AlexBThomsen•20m ago•0 comments

How AI Slop Is Killing World War II History (video)

https://www.youtube.com/watch?v=iUfP6amE7UA
1•MichaelMoser123•24m ago•0 comments

Firefox-WASM: Firefox in WebAssembly

https://github.com/HeyPuter/firefox-wasm
2•thunderbong•26m ago•0 comments

Triton Plugin Extensions

https://pytorch.org/blog/triton-plugin-extensions-enabling-tlx-and-custom-compiler-passes-out-of-...
2•zer0zzz•26m ago•0 comments

Linus Torvalds on AI usage in Linux development

https://lore.kernel.org/linux-media/CAHk-=wi4zC+Ze8e+p3tMv8TtG_80KzsZ1syL9anBtmEh5Z40vg@mail.gmai...
3•tosh•35m ago•0 comments

I built a tool to get comments in CSV format from YouTube videos

2•cristyg0101•35m ago•0 comments

Sheetz Chooses StorMagic SvHCI to Replace VMware Across 830 Retail Stores

https://finance.yahoo.com/technology/articles/sheetz-chooses-stormagic-svhci-replace-120000659.html
2•gnabgib•37m ago•0 comments

Show HN: Kosh – a self-hosted personal finance app

https://github.com/kzekiue/kosh/
2•kzekiue•37m ago•0 comments

Don't make one LLM call do retrieval and interpretation

https://ffilm.org/astro/
2•tobywhy•37m ago•0 comments

Lightweight Ukrainian drones flew for a record 12h to hit refinery 1,500M away

https://www.telegraph.co.uk/world-news/2026/07/13/ukrainian-long-range-drones-stretching-russia-a...
5•giuliomagnifico•39m ago•0 comments

Sheetz is quitting VMware, migrating 11,000 virtual machines

https://arstechnica.com/information-technology/2026/07/sheetz-moves-838-stores-off-vmware-broadco...
2•jimt1234•44m ago•0 comments

Ode with Anthropic – AI meets reality

https://www.ode.com
2•car•45m ago•2 comments

DJB Netstrings (1997)

https://cr.yp.to/proto/netstrings.txt
4•signa11•47m ago•3 comments

Easy Acceleration with Distributed Arrays

https://arxiv.org/abs/2508.17493
2•teleforce•51m ago•0 comments

Whale – 98% Cache Hit with DeepSeek

https://github.com/usewhale/Whale
2•arikrahman•54m ago•1 comments

AI That Never Forgets – Dendritron Transformer Explained [video]

https://www.youtube.com/watch?v=6zwuTqGweJE
3•ilaksh•54m ago•1 comments

Google and Epic Abandon Settlement

https://www.macrumors.com/2026/07/15/google-third-party-app-stores/
4•tosh•56m ago•0 comments

DeepCleanAudio AI-powered audio denoising that restores clarity in seconds

https://steelsoft.site/software/DeepCleanAudio_home.html
2•billqu0001•57m ago•0 comments

Precociality and Altriciality

https://en.wikipedia.org/wiki/Precociality_and_altriciality
2•num42•58m ago•0 comments

Chaos and confusion bring US no closer to resolution on Strait of Hormuz

https://www.theguardian.com/world/2026/jul/15/chaos-confusion-no-closer-resolution-strait-hormuz-...
4•hebelehubele•1h ago•0 comments

What happened to our climate extinction?

https://cerebusthefirst.substack.com/p/what-happened-to-our-climate-extinction
4•joanwestenberg•1h ago•1 comments

The First Compiler: How Alan Jay Perlis Made Programming Human

https://nirmalutwani.substack.com/p/the-first-compiler-how-alan-jay-perlis
2•nutwani91•1h ago•1 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.