frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

DConf 2026 in London

https://dconf.org/2026/index.html
2•teleforce•1m ago•0 comments

Quick and Easy Parser Combinators

https://www.cyan.sh/blog/posts/tutorial-quick-easy-parser-combinators.html
1•birdculture•2m ago•0 comments

PiEEG XR looking tester for new device – transfer emotions and mimics to VR

https://twitter.com/pieeg_official/status/2081512367838380346
1•Christiangmer•3m ago•0 comments

Should We Make Daylight Saving Time Permanent?

https://www.nytimes.com/2026/07/27/science/daylight-saving-time-health-safety.html
2•0in•5m ago•0 comments

Show HN: Call Me, your AI agents ring you with no extra carrier costs

https://github.com/radres/call-me
1•radres•5m ago•0 comments

C/C++ projects packaged for Zig

https://github.com/allyourcodebase
1•jcbhmr•6m ago•0 comments

Kimi is Claude

https://imgur.com/a/vek7fVQ
5•fny•10m ago•2 comments

America has become an entrepreneur's paradise

https://www.economist.com/business/2026/07/27/america-has-become-an-entrepreneurs-paradise
2•bookofjoe•11m ago•1 comments

Lost in Context: Addressing Context Anxiety in Large Language Models

https://arxiv.org/abs/2607.21616
1•StatsAreFun•13m ago•0 comments

China begins mass production of homegrown DUV chipmaking tools

https://www.tomshardware.com/tech-industry/semiconductors/china-begins-mass-production-of-domesti...
2•yogthos•14m ago•0 comments

Cisco launches super affordable security language model called Antares

https://www.neowin.net/news/cisco-launches-super-affordable-security-language-model-called-antares/
1•willmarch•14m ago•0 comments

Show HN: Ami – A local, open-source agent that does your busywork across apps

https://github.com/NanoNets/ami
1•vitaelabitur•20m ago•0 comments

Memories of a Checkstand Lifestyle (2021)

https://tagn.wordpress.com/2021/05/09/memories-of-a-checkstand-lifestyle/
1•LastTrain•27m ago•0 comments

TanStack Markdown and TanStack Highlight

https://tanstack.com/blog/introducing-tanstack-markdown-and-highlight
2•MehrdadKhnzd•28m ago•0 comments

Kimi K3 Now Available via Telnyx Inference API

https://telnyx.com/release-notes/kimi-k3-telnyx-inference
2•fionaattelnyx•29m ago•3 comments

A Discord Alternative – Echoed

https://echoed.gg/
5•acley•30m ago•1 comments

John's colleague told him he didn't belong. It was just what he needed to hear

https://text.npr.org/nx-s1-5906734
4•mooreds•30m ago•0 comments

Arizona State launches influencer degree where students must gain real followers

https://www.dexerto.com/entertainment/arizona-state-launches-influencer-degree-where-students-mus...
2•TMWNN•30m ago•0 comments

Show HN: Heddle- ATC for Your Subagents

https://github.com/zyads/heddle
1•aether-zyads•33m ago•0 comments

60 Years Ago, a Submerged Submarine Circled the Globe for the First Time (2020)

https://www.popularmechanics.com/military/weapons/a32009109/operation-sandblast-sumbarine-circumn...
1•baud147258•33m ago•1 comments

AI labs don't know how to make you trust them

https://www.semiodept.com/p/ai-labs-dont-know-how-to-make-you
1•pressentiment•35m ago•0 comments

David Sacks: "Now the gaslighting begins"

https://twitter.com/DavidSacks/status/2081470576653406328
4•anon373839•35m ago•0 comments

Major T-Mobile Outage

https://mashable.com/tech/t-mobile-outage-sos-mode-explained
1•bgschulman31•35m ago•0 comments

Show HN: ViewKit – Interactive dataset viewer in the browser, no upload

https://viewkit.app/
1•ayu05•36m ago•1 comments

Show HN: FileForge Finder: Local file search with AI-optimized export

1•FileForge•37m ago•0 comments

Benchmarking Opus 5 on SlopCodeBench

https://github.com/humanlayer/advanced-context-engineering-for-coding-agents/blob/main/benchmarki...
2•dhorthy•37m ago•0 comments

Hard Road – A beautiful procedural post-apocalyptic game

https://hardroad.xyz/
3•getbutterfly•38m ago•0 comments

'Is This Supposed to Be Fun?' Trump Hurls Insults at Correspondents' Dinner

https://www.nytimes.com/2026/07/25/us/politics/trump-white-house-correspondents-dinner-speech.html
2•whack•39m ago•0 comments

Show HN: Aidress – Coordination layer for autonomous AI agents

https://github.com/Aidress-ai/Aidress
3•mehulv24•40m ago•0 comments

Odin Programming Language Overview

https://odin-lang.org/docs/overview/
1•andrewstetsenko•42m 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.