frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Not in My Git Yard: Catching Backdoors at Commit and Release Time

https://arxiv.org/abs/2607.26719
1•matt_d•1m ago•0 comments

Apple Releases Firmware Update for 140W USB-C Power Adapter

https://www.macrumors.com/2026/09/08/apple-releases-140w-usb-c-charger-firmware-update/
2•hentrep•1m ago•0 comments

The Secret Life of Circuits: An Illustrated Guide to Electronic Circuit Design

https://nostarch.com/secret-life-of-circuits
1•teleforce•2m ago•0 comments

Show HN: LazyReader – Read ebooks and stream audiobooks directly from your cloud

https://lazyreader.lindocode.com
1•ekaftnuocca10•5m ago•0 comments

Vial contains a new drug called PAC-3310

https://twitter.com/douglasyaody/status/2097377733466800489
1•victor82•6m ago•0 comments

Open Parliamentary Accountability EXchange

https://opax.com.au/
1•jacobtracey•12m ago•0 comments

Practical PCB Design: From Breadboard to Production

https://nostarch.com/practical-PCB-design
1•teleforce•12m ago•0 comments

Gmail AI Threat Scanner–zero-infra email anomaly detection

https://github.com/ajaynyayapathi/Gmail-AI-Threat-Scanner
1•nvajay•13m ago•0 comments

Inflation is back around the world–as is the fight against it

https://www.economist.com/finance-and-economics/2026/09/06/inflation-is-back-around-the-world-as-...
1•andsoitis•15m ago•1 comments

How to search for long hashes and IDs with dict='keywords_32k'

https://medium.com/@s_nikolaev/how-to-search-for-long-hashes-and-ids-with-dict-keywords-32k-732e0...
1•snikolaev•17m ago•0 comments

Freelancers are getting buried with 'soulless' AI slop cleanup

https://www.theguardian.com/technology/2026/sep/02/ai-jobs-freelance-cleanup
2•oogali•20m ago•0 comments

Why OpenAI's NS Singularity Requires Forcing: Response Functionals and Clay B

https://reddawnacademicpress.org/2026/09/08/openai-camlin-clay-response/
2•jcamlin•22m ago•0 comments

A Case Study on Emergent Cheating, Whistleblowing in Autonomous Research Swarms

https://arxiv.org/abs/2609.04170
2•the-mitr•23m ago•0 comments

An Affair in the Nonlocality Community

https://mateusaraujo.info/2026/07/19/a-strange-affair-in-the-nonlocality-community/
3•brimtown•25m ago•1 comments

DHH's Omarchy Considering Replacing Arch/AUR with Nix

https://github.com/omacom/omarchy/blob/97a86af116b71ffd6b6dd0afc27cdefce5cacee2/plans/nix.md
2•djfergus•26m ago•0 comments

Inzerosight

https://github.com/inzerosight/inzerosight
1•planetrenox•29m ago•0 comments

The Architecture of Open Source Applications

https://aosabook.org/en/
2•zasz•31m ago•1 comments

Sex and Drugs and Guns and Code

https://third-bit.com/sdgc/
1•mooreds•32m ago•0 comments

Phoenix V2: persistent memory, emotional state, self-model for AI (MIT)

https://github.com/cleversonbrsantos-art/Phoenix
1•cleversonBr•41m ago•0 comments

Make your Mac displays work as one

https://displayspan.app/
1•ashing•43m ago•0 comments

Iran says it captured US submarine drone in Strait of Hormuz

https://www.reuters.com/world/middle-east/iran-says-it-captured-us-submarine-drone-strait-hormuz-...
19•harambae•46m ago•2 comments

Statement from AMS Leadership on Navier-Stokes Problem

https://www.ams.org/news?news_id=7686
5•wslh•46m ago•1 comments

A lab notebook of number theory results, including what didn't hold up

https://ras2045.github.io/reproducing-set/
1•rsardinifb•47m ago•0 comments

Driverless F-1 Competition Came to Italy [video]

https://www.yahoo.com/news/videos/driverless-cars-compete-f1-style-002939363.html
1•fuzzfactor•49m ago•1 comments

Harvard study predicts most suicide attempts a week in advance

https://current.fas.harvard.edu/stories/harvard-study-predicts-most-suicide-attempts-week-advance
65•jodacola•51m ago•25 comments

X402-trinity-gaming – Headless payment back end for the gaming economy

https://github.com/devmster/x402-trinity-gaming
1•devmster•53m ago•0 comments

Optimizing Your NFS Filesystem

https://www.admin-magazine.com/HPC/Articles/Useful-NFS-Options-for-Tuning-and-Management
1•ankitg12•54m ago•0 comments

CERN's migration path from CentOS Linux to Debian

https://lwn.net/SubscriberLink/1092512/0772b817c369632b/
2•signa11•57m ago•0 comments

Apple iPod Engraver (2019)

https://dunstanorchard.com/apple-ipod-engraver/
2•NaOH•1h ago•0 comments

HAE logged where the seconds go in coding-agent turn (TTFT vs. decode vs. tools)

1•Marvin_RunAI•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.