frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

1970 Plymouth Hemi 'CUDA

https://knuckledustchronicles.com/1970-plymouth-hemi-cuda/
1•frobinson47•8m ago•0 comments

A Jupiter-size planet that escaped its star's death

https://arstechnica.com/science/2026/07/a-jupiter-size-planet-that-escaped-its-stars-death/
1•pseudolus•11m ago•0 comments

Stellantis to sell small Fiat Topolino EV for $13,995 in U.S.

https://www.cnbc.com/2026/07/07/stellantis-fiat-topolino-ev.html
3•mattas•19m ago•1 comments

Vim of Coding Agents

https://rasyidanaf.com/blog/vim-of-coding-agents/
1•brutaljokerz•21m ago•0 comments

Unintentional information disclosure in LaTex Files submitted to arXiv

https://ieeexplore.ieee.org/document/11573440/
1•whym•30m ago•0 comments

Mouse cursor disappears when my refrigerator turns off

https://old.reddit.com/r/archlinux/comments/55pbqp/mouse_cursor_disappears_when_my_refrigerator/
1•polivier•32m ago•0 comments

Advertise in ChatGPT – OpenAI Ads

https://ads.openai.com/
5•hboon•34m ago•0 comments

Life among the garbage mountains of the biggest city

https://www.theguardian.com/world/ng-interactive/2026/jul/13/jakarta-trash-garbage-rubbish-bantar...
1•prawn•35m ago•0 comments

China, Russia and Others Seek to Inflame Debate over A.I. Data Centers

https://www.nytimes.com/2026/07/09/business/china-russia-ai-data-centers.html
4•lxm•36m ago•0 comments

Maps, Smaps and Memory Stats

https://jameshunt.us/writings/smaps/
2•snihalani•38m ago•0 comments

Show HN: Self-hosted voice AI agent for Asterisk/FreePBX

https://github.com/hkjarral/AVA-AI-Voice-Agent-for-Asterisk
2•hkjarral•39m ago•0 comments

Chinese voice actor forced to prove he's human against AI clones

https://www.sixthtone.com/news/1018753/TheChineseVoiceActorForcedtoProveHe’sHuman
1•whiteblossom•41m ago•1 comments

Live2D Body for Hermes Agent

https://github.com/Soundpulse/hermes-live2d
1•totallyscout•44m ago•1 comments

Japanese payment processor's collapse hits banks and restaurants

https://www.japantimes.co.jp/business/2026/07/08/companies/zentoshin-impact-restaurants/
2•mikhael•45m ago•0 comments

Thoughts on AI

https://jackpeplinski.bearblog.dev/thoughts-on-ai/
1•jackpep•47m ago•0 comments

CO2: Language backward compatible with C, with access to the Rust ecosystem

https://github.com/hkalbasi/co2/tree/main
1•Georgelemental•51m ago•0 comments

Six months daily driving Linux

https://interestingstuff.xyz/reviews/six-months-daily-driving-linux/
1•interestingstuf•51m ago•0 comments

Show HN: Baton - Know which of your AI coding agents needs you

https://github.com/neilkpatel/baton
1•nkp007•54m ago•0 comments

Show HN: Web App Uses RTL-SDR to Align HDTV Antenna

https://tunerscope.com/
1•robotastic•56m ago•0 comments

I tried 5 free image-to-ASCII converters so you don't have to

https://image-to-ascii.com/
1•LumisYY•1h ago•0 comments

That Is Load-Bearing

https://old.reddit.com/r/ClaudeAI/comments/1tob6q5/that_is_loadbearing/
3•varun_chopra•1h ago•0 comments

Frank Lloyd Wright's First Home

https://www.architecturaldigest.com/story/frank-lloyd-wright-home-and-studio-everything-you-need-...
1•NaOH•1h ago•0 comments

The cloud begins with coal (2013)

https://www.cepi.org/the-cloud-begins-with-coal-an-overview-of-the-electricity-used-by-the-global...
1•thelastgallon•1h ago•0 comments

What most histories get wrong about MUMPS's first standard

https://github.com/rochus-keller/MUMPS/blob/main/docs/First_MUMPS_Standard_Article.md
1•Rochus•1h ago•0 comments

Self-Improving Agent Systems: A Unified View

https://yigengjiang.github.io/posts/self_improving_agent_systems/
1•ygx•1h ago•0 comments

PC Emulator PCem Makes It to WebAssembly

https://github.com/va3jfl/PCem-WebAssembly
2•JoelLagace•1h ago•0 comments

mRNA vaccine targeting tick proteins induces tick resistance in guinea pigs

https://medicine.yale.edu/news-article/yale-researchers-advance-work-in-diagnosing-and-preventing...
4•DogOfTheGaps•1h ago•0 comments

Pg_re2: 9x faster regular expressions in Postgres

1•saisrirampur•1h ago•1 comments

Australian Consumer advocate calls for mandatory domestic mobile roaming

https://www.abc.net.au/news/2026-07-13/calls-for-mandatory-domestic-mobile-roaming-intensify/1068...
4•ggm•1h ago•0 comments

The Battle of Carrhae (53B.C.E.) [video[

https://www.youtube.com/watch?v=bR7VDPUj5AE
1•JumpCrisscross•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.