frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Ha.mr – short URLs using compression

https://ha.mr
1•matan-h•3m ago•0 comments

Eclipse: The Xiaomi 17 Ultra Confuses the Moon and the Sun

https://www.frandroid.com/marques/xiaomi/3211257_photo-de-leclipse-on-a-perce-a-jour-la-petite-tr...
1•n_plus_1_acc•4m ago•0 comments

Private security firms will soon be allowed to hack overseas cybercriminals

https://arstechnica.com/security/2026/08/white-house-recruits-security-firms-to-hack-overseas-cyb...
2•joozio•6m ago•0 comments

The Body Remembers but the Doctor Cannot- Experiments with AI in Personal Health

https://karankurani.com/writing/post/w_20260721140414_b0e102/the-body-remembers-but-the-doctor-ca...
2•BIackSwan•8m ago•0 comments

NPM Left-Pad Incident

https://en.wikipedia.org/wiki/Npm_left-pad_incident
3•gherkinnn•16m ago•0 comments

Show HN: OpenCode Auto Permissions – automatic review of permission prompts

https://github.com/hueyexe/opencode-auto-permissions
2•huey77•19m ago•0 comments

Mistral AI wants to build 1 gigawatt of European compute by 2030

https://venturebeat.com/infrastructure/mistral-ai-wants-to-build-1-gigawatt-of-european-compute-b...
2•tosh•19m ago•0 comments

Pay for SF uniformed police and Sheriff deputies is approaching $900k per year

https://twitter.com/loomdoop/status/2087994362219450743
2•MrBuddyCasino•20m ago•0 comments

The Case for Deliberately Building Less Software [video]

https://www.youtube.com/watch?v=I1Iw5yKmR5U
2•pierres7•20m ago•1 comments

Duxpath AI

1•SharkEdgeVision•23m ago•1 comments

Evaluating AI SRE Agents in Production (OpenSRE) – Evaluation

https://one2n.io/blog/how-to-evaluate-ai-sre-agents-for-production
1•srivatsa_rv•24m ago•1 comments

How a giant battery is transforming a town centre in Cannington, Ontario

https://betakit.com/how-a-giant-battery-is-transforming-a-town-centre-in-cannington-ontario/
3•builtbystef•32m ago•0 comments

Qwen3.8 2.4T A95B: Intelligence, Performance and Price Analysis

https://artificialanalysis.ai/models/qwen3-8-2-4t-a95b
1•theanonymousone•32m ago•0 comments

Product Purchased Badge

https://apps.shopify.com/product-order-history
1•expoundcoderz•33m ago•1 comments

OpenAI's Rogue-Agent Incident Has Become a Test of Its Safety Culture

https://ai-updates.net/openai-rogue-agent-incident-safety-culture-test/
1•ashurandi•34m ago•0 comments

Show HN: NotABot – A game to help train human-vs-bot detection models

https://notabot-five.vercel.app
1•zefparis•36m ago•0 comments

Open-sourcing the For You timeline in X.com

https://twitter.com/i/status/2087951962004230428
1•yarapavan•39m ago•1 comments

Show HN: WinCore – Open-Source Windows Utilities for AI and PyTorch

https://github.com/FWKMultiverse/WinCore
1•FWK_Multiverse•42m ago•0 comments

Apple Pay Chief Jennifer Bailey Retiring in October

https://www.macrumors.com/2026/08/11/apple-pay-chief-retiring/
1•ksec•43m ago•1 comments

The Lens structured patent database

https://www.lens.org/lens/search/patent/structured
1•q7m•45m ago•0 comments

RIP Claude – Aggressively writer-hostile

https://randsinrepose.com/archives/rip-claude/
2•LexSiga•50m ago•2 comments

Twenty Years of My Open Source Project

https://nemanjatrifunovic.substack.com/p/twenty-years-of-my-open-source-project
1•ingve•51m ago•0 comments

Looking for Techinal Experts

https://joinsyndicate.netlify.app/
1•PrimalOrigins•52m ago•0 comments

Z.ai Security

https://cvd.z.ai/
2•whwhyb•56m ago•0 comments

History of Flagellation (1926)

https://gutenberg.org/cache/epub/79361/pg79361-images.html
1•petethomas•57m ago•0 comments

Modelio 6.2 ported to native Apple Silicon ARM64 with Codex

https://github.com/sertitech/Modelio
1•rvlsnjk•58m ago•0 comments

Ruby 4.0 Universal RCE Deserialization Gadget Chain

https://www.elttam.com/blog/ruby-4-0-universal-rce-deserialization-gadget-chain
2•pentestercrab•59m ago•0 comments

Show HN: XFlux – X/Twitter read API and account monitors (free tier)

https://www.xfluxapi.com
1•xflux•59m ago•0 comments

Poems. by William Blake (1911)

https://gutenberg.org/cache/epub/79363/pg79363-images.html
1•petethomas•59m ago•0 comments

Agent Safety Should Be a Runtime Contract

https://arxiv.org/abs/2608.11274
1•sbulaev•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.