frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Ext-Turbovec: A Vector Index Inside Your PHP Process

https://eric.mann.blog/ext-turbovec-vector-search-php/
1•eamann•1m ago•0 comments

Muxly – Native Tmux for iPhone and iPad

https://muxly.sh/
1•msupuka•1m ago•0 comments

Making Tailscale Faster

https://tailscale.com/blog/making-tailscale-faster
1•yarapavan•1m ago•0 comments

Not reading the code cannot become the new norm

1•selectedambient•1m ago•0 comments

Show HN: Crest – Answer Claude Code approvals from your MacBook's notch

https://crestnotch.app/claude-code-notch
1•zack40x•2m ago•0 comments

ApprenticeBench: Can AI agents learn a real job end to end?

https://neocognition.io/blog/apprentice-bench
1•moyicat•3m ago•0 comments

Recursive self-improvement of AI research agents

https://arxiv.org/abs/2609.26457
1•handfuloflight•3m ago•0 comments

Xbox Cuts Jobs, Moves Game Studios Under Activision (1)

https://news.bloomberglaw.com/daily-labor-report/xbox-cuts-jobs-moves-game-studios-under-activision
1•frank_clover•4m ago•0 comments

Show HN: Slop Mop, a Chrome extension that mops your LinkedIn feed

https://slopmop.lol
1•tomfrazier•4m ago•0 comments

UK military jamming other nations' satellites to defend itself, BBC told

https://www.bbc.com/news/articles/c32l8y8kygdvo
1•thm•5m ago•0 comments

What I learned from building 50 side projects

https://smartsoft.lv/en/articles/experiments-and-side-projects/
1•absurdwebsite•5m ago•0 comments

Video Commander: The IDE for Video Engineers

https://video-commander.com
2•petecooper•7m ago•0 comments

Google Hasn't Even Acknowledged This Months-Old YouTube Bug

https://www.extremetech.com/internet/google-hasnt-even-acknowledged-this-months-old-youtube-bug
1•speckx•7m ago•0 comments

Uproar in France over award-winning author accused of using AI

https://www.bbc.com/news/articles/ck7v4y45893go
1•theanonymousone•8m ago•0 comments

Show HN: Guerilla YouTube Playlist App

https://y2pilot.com/
1•lvidakovic•9m ago•0 comments

Jev Decision Index Leaderboard

https://huggingface.co/spaces/multimodalart/jev-decision-index
1•rgbrgb•11m ago•0 comments

Big dumb moron explains Jev in March 2025 – and then does nothing about it

https://arcturus-labs.com/blog/2025/03/31/supercharging-llm-classifications-with-logprobs/
1•JohnBerryman•12m ago•0 comments

Martha's Rule rolled out at every A&E department in England

https://www.bbc.co.uk/news/articles/c6lyep7l7qppo
1•smusamashah•13m ago•0 comments

RAF launches first space squadron dedicated to defending Britain's satellites

https://www.gov.uk/government/news/raf-launches-first-ever-space-squadron-dedicated-to-defending-...
1•giuliomagnifico•13m ago•0 comments

The last time India counted caste, the protests were filed as proof it worked

https://rentry.co/2bu7ch7k
1•ka_lentha•14m ago•0 comments

GPT-6 Sol might acutally be GPT-6 Terra

https://twitter.com/eidzoku/status/2102672660379443335
2•partsch•15m ago•0 comments

Many guys are bad at messaging their friends–and it might be making them lonely

https://www.theatlantic.com/family/archive/2025/01/men-texting-men-loneliness/681076/
1•MattGrommes•16m ago•1 comments

What to do when your Waymo holds up a Secret Service motorcade

https://www.ft.com/content/9cc479a6-8206-4af3-a6e5-77176b8d43c4
3•cjs_ac•16m ago•1 comments

Cortera Framework:agentic framework with containment for rogue agents and action

https://github.com/Cortera-space/Cortera-Framework/releases
1•Corteraspace•18m ago•0 comments

Show HN: Hntui – Another Hacker News TUI (Built on OpenTUI)

https://github.com/ahmd-sh/hntui
1•ahmd-sh•18m ago•1 comments

Hubble Network Opens Satellite Coverage to All Bluetooth Devices

https://www.businesswire.com/news/home/20260923752755/en/Hubble-Network-Opens-Satellite-Coverage-...
2•jmarbach•21m ago•0 comments

Even Americans who use AI every day are worried about it

https://techcrunch.com/2026/09/23/even-americans-who-use-ai-every-day-are-worried-about-it/
2•speckx•23m ago•1 comments

Ontological Language Models (OLMs)

https://olmapp.ai/more.html
1•northlondoner•23m ago•1 comments

New SDK for Photonic Compute?

https://github.com/Q-ANT-GmbH/qant_native_computing_toolkit
3•TechHack202•23m ago•0 comments

Android Developer Verification vs. Play Console Verification: Sept 30 Deadline

https://submitsafe.app/appeal-checker
1•igrik•24m 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.