frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Autoresearch for Optimizing Elliptic-Curve Point Addition in Shor's Algorithm

https://arxiv.org/abs/2609.09582
1•simonpure•2m ago•0 comments

From Lisp at JPL to Building AdWords at Google

https://corecursive.com/inside-early-google/
1•oumua_don17•4m ago•0 comments

Show HN: Caffenol, a darkroom simulation photo editing toy

https://caffenol.app/
1•vintagevibe•5m ago•0 comments

The Intelligence Asymptote

https://joshhawthorne.substack.com/p/the-intelligence-asymptote
1•JoHawth31•6m ago•1 comments

Show HN: Hacker News, but only AI news

https://allslop.news/
1•gavino•9m ago•1 comments

Hot coffee could cause oesophageal cancer

https://www.economist.com/science-and-technology/2026/09/11/hot-coffee-could-cause-oesophageal-ca...
5•vinni2•14m ago•4 comments

Light from your phone or the crack under your door could be damaging your health

https://www.fastcompany.com/91605352/this-common-sleep-sleeping-habit-changes-shape-of-your-heart...
2•prmph•16m ago•0 comments

Solve@Home: An open version of OpenAI's 10k-agent approach to hard math

https://solveathome.org/projects/twin-primes/board
2•Bry789123•17m ago•0 comments

9/11 in Berkeley

https://scottaaronson.blog/?p=10071
2•chmaynard•17m ago•0 comments

Project Callisto: Null results from a nine-year cold fusion research program

https://callisto.report/
2•clivefx•17m ago•1 comments

The unexpected effectiveness of the Picard maneuver

https://arxiv.org/abs/2608.23624
1•Tomte•19m ago•0 comments

Space Warfighting Environment 2040 [pdf]

https://www.spacecom.mil/Portals/57/%5bFINAL%5d%20USSC%20Space%20Warfighting%20Environment%202040...
1•tolerance•20m ago•0 comments

Orca – The Agent Development Environment

https://www.onorca.dev
1•tyleo•22m ago•0 comments

OxDock – Dockerfile-inspired build DSL for Rust

https://docs.rs/oxdock/latest/oxdock/
1•zombiej5•23m ago•1 comments

Tell HN: Strava Is Down

2•charliebwrites•25m ago•0 comments

Culture Becomes a Dark Forest

https://www.theintrinsicperspective.com/p/culture-becomes-a-dark-forest
1•reasonableklout•25m ago•0 comments

Unpacking the Navier–Stokes blowup: the math, the machines, & the mathematicians

https://blog.kolen.dev/math/Navier-Stokes
1•KolenCh•25m ago•0 comments

Show HN: I built a hand-modeled 3D Windows 98 portfolio with Three.js

https://wesselsdesktop.com/
2•Abstract2D•27m ago•1 comments

Show HN: SystemFaarDenge – a puzzle game and simulation for system designing

https://systemfaardenge.com/
1•aayushamann•28m ago•0 comments

Seven years of bitwise: Hacker News front page, and the long road into Debian

https://nativeguru.wordpress.com/2026/09/11/seven-years-of-bitwise-a-weekend-project-a-hackernews...
1•stdcall83•29m ago•0 comments

Rethinking Space Opera

https://www.antipope.org/charlie/blog-static/2026/09/rethinking-space-opera.html
1•pavel_lishin•30m ago•0 comments

GrapheneOS' rewritten Messages app is released

https://github.com/GrapheneOS/Messaging/releases/tag/13
2•microtonal•31m ago•0 comments

They Stole Our Code, Now They Want Our Brains (March 2026)

https://www.jernesto.com/articles/on_ai_tools
7•doomishbro•31m ago•3 comments

Git-native task management for local coding agents without MCP

https://gitoza.com/
1•gitoza•31m ago•0 comments

Report Links Pirate IPTV to Hezbollah TV, Calls for U.S. Site-Blocking

https://torrentfreak.com/report-links-pirate-iptv-to-hezbollah-tv-calls-for-u-s-site-blocking/
2•Cider9986•31m ago•0 comments

Governor Newsom signs the strongest child safety chatbot and social media laws

https://www.gov.ca.gov/2026/09/10/governor-newsom-signs-the-strongest-child-safety-chatbot-and-so...
4•moneycantbuy•33m ago•1 comments

Spanda: Sub-microsecond LLM epistemic uncertainty in Rust

5•liquidngas•33m ago•2 comments

Curie by colibrì: A 17B language model designed for SSD-backed inference [video]

https://twitter.com/justvugg/status/2098467957990903833
1•vforno•34m ago•0 comments

From 1 to 33 anycast sites at one cloud provider: a staircase, not a curve

https://anycast.dev/notes/33-sites-staircase
2•portalix•36m ago•0 comments

SB-1119 Companion chatbots: children's safety

https://leginfo.legislature.ca.gov/faces/billTextClient.xhtml?bill_id=202520260SB1119
1•moneycantbuy•36m 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.