frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Converting models from various CAD systems to interactive 3D web visualizations

https://www.soft8soft.com/wiki/index.php/Creating_3D_web_experiences_from_CAD_data
1•soft8soft•52s ago•1 comments

Patio11: HuggingFace hack is most important security incident since Morris worm

https://twitter.com/patio11/status/2085504491458105732
1•reasonableklout•1m ago•0 comments

Df – creating 5k files on NTFS in 4.9s vs. 113s, by editing the MFT directly

https://github.com/boldizsarszakacsbekesi/diskforge
1•Boldizsar•2m ago•0 comments

Show HN: Catnip – GitHub repo stats: collect, analyze, TUI, agent inference

https://github.com/TGPSKI/catnip
1•tgpski•3m ago•0 comments

'Humans will be a rounding error on the internet' says Cloudflare exec

https://www.theregister.com/networks/2026/08/07/humans-will-be-a-rounding-error-on-the-internet-s...
1•defrost•5m ago•0 comments

User awareness in frontier models: Who's asking shifts what models say

https://transluce.org/user-awareness
1•matt_d•7m ago•0 comments

Show HN: Seedance 2.5 video API (30s single-take, 50 refs, 4K) on Atlas Cloud

https://www.atlascloud.ai/models/seedance-2.5
1•qqt•11m ago•0 comments

Artificial Intelligence used to design new viruses

https://www.bbc.co.uk/news/articles/c5y3j3ngevmo
2•CaRDiaK•13m ago•0 comments

Show HN: Linkly – a language designed for LLMs, compiled through MLIR

https://github.com/choiyounggi/linkly/releases
1•dch0202•13m ago•3 comments

A New Way That a Cow's Inner World Shapes Earth's Atmosphere

https://www.quantamagazine.org/a-new-way-that-a-cows-inner-world-shapes-earths-atmosphere-20260727/
1•pykello•19m ago•0 comments

Shrinking Ruby Hashes

https://byroot.github.io/ruby/performance/2026/08/05/shrinking-ruby-hashes.html
1•thunderbong•21m ago•0 comments

Complete guide to time stamping regulations in the financial sector (2023) [pdf]

https://www.npl.co.uk/getattachment/3ea3704a-8c51-442e-a035-44479439faf2/NPLTime-Brochure.pdf
2•altairprime•23m ago•1 comments

OpenAI's New Device Will Be Hockey Puck-Sized and Cost over $300

https://www.bloomberg.com/news/articles/2026-08-06/what-is-openai-s-device-a-doughnut-shaped-spea...
4•helsinkiandrew•23m ago•2 comments

Goertzel: A few reflections on AGI-26 and progress towards AGI [video]

https://www.youtube.com/watch?v=-N8oaaJSBXo
1•ilaksh•25m ago•1 comments

I'm leaving OpenAI to build Jurassic Park

https://taylor.town/leaving-openai
4•zombot•27m ago•1 comments

The Fifteen-Minute Principal Engineer

https://markatwood.substack.com/p/the-fifteen-minute-principal-engineer
1•tosh•27m ago•0 comments

00

https://w3techs.com/sites/info/jangkrik4d1883.com
1•tetenh•28m ago•0 comments

Hazard Pointers for the Kernel

https://lwn.net/Articles/1084015/
1•pykello•29m ago•0 comments

Show HN: An ultra-fast Prime Agent fork with Bun REPL

https://github.com/sng-asyncfunc/prime-bun
1•sashimikun•29m ago•0 comments

AI creates 16 new viruses from scratch

https://www.cnn.com/2026/08/06/health/ai-viruses-bacteriophages
2•avodonosov•32m ago•0 comments

Show HN: Peach – a local-first zero-knowledge password manager, now on Android

https://peachpasswords.com/
1•ashasoftware•32m ago•1 comments

I built a platform for creators to market their music, videos, content, etc.

https://www.influanto.com/
1•genbarriosdev•32m ago•1 comments

Chinese memory maker CXMT enters mainstream with Corsair Vengeance DDR5 kit

https://www.tomshardware.com/pc-components/ddr5/chinese-memory-maker-cxmt-enters-the-mainstream-c...
3•kristianp•33m ago•0 comments

SparSEEty: Extracting Tokens from Sparsity-Exploiting LLM Serving Systems

https://arxiv.org/abs/2608.02995
1•sbulaev•37m ago•0 comments

Decisive Action Training Environment [pdf]

https://paxsims.wordpress.com/wp-content/uploads/2016/05/312855400-decisive-action-training-envio...
1•gmays•38m ago•0 comments

Show HN: Muuted – I built a feed that knows when to shut up

https://muuted.com/
1•Caldwellone•44m ago•1 comments

Himalaya – CLI to Manage Emails

https://github.com/pimalaya/himalaya
2•tangue•47m ago•0 comments

Simple app to keep creativity ALIVE

https://www.theideasgarden.com/
1•matejsimko•47m ago•0 comments

Foomflops: Three Decades of AI Predictions

https://foom.hyperplex.org/
2•blfr•52m ago•0 comments

Trump administration to pay German firm $1.22B to cut offshore wind leases

https://www.theguardian.com/us-news/2026/aug/06/rwe-deal-wind-leases
3•leonidasrup•52m 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.