frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

DeepSeek-V4-Pro outperforms Fable 5 after fixing runtime inference control

https://github.com/Tiger3807861189/DeepSeek-V4-J-Space-Capability-Realization-Report
1•DarenWatson•2m ago•0 comments

Monty Hall Problem

https://en.wikipedia.org/wiki/Monty_Hall_problem
1•efilife•2m ago•0 comments

GGUF Quantization Compared: Q4_K_M vs. IQ4_XS vs. IQ4_NL

https://kaitchup.substack.com/p/choosing-a-gguf-model-k-quants-i
1•peter_d_sherman•6m ago•0 comments

Elon Musk's GitHub alternative couldn't have arrived at a worse time for GitHub

https://www.neowin.net/news/elon-musks-github-alternative-couldnt-have-arrived-at-a-worse-time-fo...
2•bundie•8m ago•0 comments

Forget Work. Passive Income Is the New American Dream

https://www.wsj.com/lifestyle/careers/passive-income-dreams-2e67ee5c
2•hheikinh•10m ago•0 comments

Digital Sundial

https://www.fransmaes.nl/genk/en/gk-zw08-e.htm
1•vova_hn2•11m ago•0 comments

I tested the viral "antigravity drive" claims against published physics

https://github.com/Montblanctech/ehd-thrust-verification
1•MontblancTech•16m ago•0 comments

Chat Wells, an Internet Masquerade

https://stuff.kyleperik.com/chatwells/
1•kyleperik•18m ago•1 comments

Emacs 31.1 RC1 is available

https://lists.gnu.org/archive/html/emacs-devel/2026-08/msg00599.html
1•ixsploit•18m ago•0 comments

Poll showing Bass leading Raman by double digits was bogus "social experiment"

https://www.msn.com/en-us/news/news/poll-showing-bass-leading-raman-by-double-digits-was-bogus-co...
3•ilamont•20m ago•0 comments

Weird Machines in Transport Layer Security

https://arxiv.org/abs/2608.13685
3•sbulaev•25m ago•0 comments

What If I Told You Humans Are Moving Faster Than AI?

https://medium.com/freedomofthought/what-if-i-told-you-humans-are-moving-faster-than-ai-833441f3fb21
2•raynchad•31m ago•0 comments

Why It Hasn't Happened Yet: Capable AI and Malicious Intent

https://substack.norabble.com/p/why-it-hasnt-happened-yet
2•nedruod•38m ago•0 comments

Niu Lai – a two-person animated film becomes an unlikely hit in China [video]

https://www.youtube.com/watch?v=5XdeI0cOWSs
1•gregzeng95•43m ago•0 comments

Expert Witness to ChatGPT "Show how 3M is 0 percent at fault"

https://www.404media.co/show-how-3m-is-0-at-fault-expert-witness-used-chatgpt-to-write-report-def...
2•kristjansson•48m ago•0 comments

Using Starlink's Satellites to Study Earth's Upper Atmosphere

https://hackaday.com/2026/08/17/using-starlinks-satellites-to-study-earths-upper-atmosphere/
1•toomuchtodo•51m ago•0 comments

When it comes to LLM, it's you who's using it wrong

https://www.vinoth.net/llm-wrong
1•avinoth•52m ago•0 comments

San Diego 150 Years Ago: Rare AI Reconstruction Visuals [video]

https://www.youtube.com/watch?v=qWaR_nc5sKM
2•latchkey•54m ago•0 comments

PineNote and PineTab2 are estimated to run out of stock in three months

https://social.treehouse.systems/@pine64/117111063654864544
1•dredmorbius•57m ago•1 comments

Beyond WASI: Running any Rust application in the browser with BrowserPod 3.0

https://labs.leaningtech.com/blog/browserpod-rust
1•corv•58m ago•0 comments

The Large Hadron Collider: 1984 – 2017

https://timeline.web.cern.ch/timeline-header/93
1•andsoitis•58m ago•0 comments

Missed shifts were costly to this McDonald's. An app has fixed the problem

https://text.npr.org/nx-s1-5893721
3•williadc•1h ago•0 comments

Sick of A.I. Slop? So Are Tech Giants

https://www.nytimes.com/2026/08/17/technology/ai-slop.html
1•uxhacker•1h ago•0 comments

Show HN: An open source alternative to Google's Critique

https://twigg.vc
1•andrebianchessi•1h ago•0 comments

USS Benfold Stalled and Lost Power in the South China Sea for Four Days

https://news.usni.org/2026/08/14/uss-benfold-was-stalled-in-the-south-china-sea-for-four-days-aft...
6•Gaishan•1h ago•0 comments

Columbia House Is Shutting Down

https://pitchfork.com/story/columbia-house-is-shutting-down/
5•ChrisArchitect•1h ago•2 comments

Fires on the Plain: Both Ends Burning (2007)

https://www.criterion.com/current/posts/473-fires-on-the-plain-both-ends-burning
1•cocacola1•1h ago•0 comments

Show HN: An n8n-like orchestration toolkit for DeepSeek harnesses

https://github.com/ahamoment-101/Open-DeepSeek-Harness-Desktop
1•darrenzhang•1h ago•0 comments

Creepy Insurers?

https://matthewekahn.substack.com/p/creepy-insurers
1•NomNew•1h ago•0 comments

I built an app that hides encrypted messages inside normal emojis

https://apps.apple.com/us/app/imp-secret-messages/id6794774885
1•oliverhann•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.