frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

AI makes foundational knowledge more important

https://www.timeshighereducation.com/opinion/ai-makes-foundational-knowledge-more-important-ever
1•jruohonen•3m ago•0 comments

Hayward City Council will consider banning data centers at its Sept. 15 meeting

https://www.hayward-ca.gov/discover/news/aug26/hayward-council-consider-move-ban-data-centers-its...
1•MilnerRoute•4m ago•0 comments

Why did I build a product no one needs?

https://metedata.substack.com/p/017-why-did-i-build-a-product-no
2•young_mete•4m ago•0 comments

DersCountsort: General-purpose sort with amortized O(N) complexity

1•dersoverflow•5m ago•0 comments

Which Data Repository Should You Use?

http://daniellakens.blogspot.com/2026/08/which-data-repository-should-you-use.html
2•pajop•6m ago•0 comments

Abdominal Fat Predicts Heart Disease Risk Better Than BMI

https://www.acc.org/about-acc/press-releases/2026/08/11/14/59/abdominal-fat-predicts-heart-diseas...
1•theanonymousone•7m ago•0 comments

AAP: How pediatricians are navigating federal leaders' fearmongering on vaccines

https://www.statnews.com/2026/08/14/vaccine-executive-order-policy-aap-president/
1•EA-3167•8m ago•0 comments

4B Capable Agent in the Browser

https://alexwortega-my-pi-agent.hf.space/
1•Alexwortega•9m ago•0 comments

Living with Depression: The Part I Never Say Out Loud About Depression

https://medium.com/freedomofthought/living-with-depression-the-part-i-never-say-out-loud-3e9c218b...
1•raynchad•9m ago•1 comments

A Walkable ASCII Cyberpunk City in One HTML File [video]

https://www.youtube.com/watch?v=3YtygAx_C6A
1•yboris•10m ago•0 comments

Memories Mysteriously Survive After Brain Shutdown

https://www.404media.co/memories-mysteriously-survive-after-brain-shutdown-and-scientists-dont-kn...
1•Jimmc414•10m ago•0 comments

Dryas: A Reprogrammable Engine for High-Speed Interconnect Tracing and Analysis

https://arxiv.org/abs/2608.12934
1•Jimmc414•10m ago•0 comments

Show HN: Personal Stock – share a stake in your lifetime wealth

https://github.com/onrootnet/personal-stock
1•koopuluri•11m ago•0 comments

The Enshittification of Everything (Part 3)

https://robertreich.substack.com/p/the-enshittification-of-everything-c94
2•rbanffy•12m ago•0 comments

How Samsung's Privacy Screen Works

https://www.ifixit.com/News/117498/the-secrets-behind-samsungs-privacy-screen
1•gnabgib•12m ago•0 comments

Show HN: Open-source skill to run Matt Pocock's skills in bulk AFK

https://github.com/rvoertmann/barbequeue
1•remingtonv•14m ago•0 comments

Cornell: Pro Palestine Students Targeted by ICE: Come Back to US or Lose Funding

https://theintercept.com/2026/08/14/cornell-pro-palestine-student-targeting-ice/
5•Jimmc414•14m ago•0 comments

The unlikely opera star: How AI helped a nonspeaking performer find his voice

https://www.scientificamerican.com/podcast/episode/a-nonspeaking-person-is-the-star-of-this-opera...
1•e2e4•16m ago•0 comments

Stewart Brand's 6‑Part Series How Buildings Learn, with Music by Brian Eno

https://www.openculture.com/2026/08/watch-stewart-brands-6-part-series-how-buildings-learn.html
1•pauldelany•17m ago•0 comments

Show HN: Native experience for mobile web – Raylers

https://raylers.com
1•faruq_72_786•17m ago•0 comments

Show HN: A mobile app to keep up with most important news on Agentic Coding

https://apps.apple.com/de/app/agentic-coding-news-digest/id6797645176
1•remingtonv•17m ago•0 comments

Show HN: Open-source Grok Bot alternative

https://github.com/madebywelch/guaca
1•madebywelch•18m ago•0 comments

Emulating Terraform on Pulumi's Engine

https://www.pulumi.com/blog/terraforms-data-model-on-pulumis-engine/
1•cnunciato•21m ago•0 comments

Air traffic controller saves day when 2 flights with same call number converge

https://www.cbsnews.com/news/phoenix-air-traffic-controller-2-american-airlines-flights-same-call...
2•cf100clunk•22m ago•1 comments

The Podcast Where You Can Eavesdrop on the A.I. Elite

https://www.nytimes.com/2026/04/26/business/dwarkesh-patel-podcast-ai.html
1•paulpauper•24m ago•0 comments

Ozempic is not just a weight-loss story anymore

https://www.vox.com/future-perfect/499434/ozempic-glp1-wegovy-obesity-overweight-diabetes
1•paulpauper•27m ago•0 comments

Cultivating a state of mind where new ideas are born

https://www.henrikkarlsson.xyz/p/good-ideas
8•felixbraun•28m ago•0 comments

Successful Families Are Process Knowledge

https://steader.substack.com/p/successful-families-are-process-knowledge
1•paulpauper•30m ago•0 comments

TemporalStore: A disruptive open-source engine managing your LLM memory

https://temporalstore.ai/blog-context-management.html
2•matrixarkai•30m ago•1 comments

Every ESP32 has one of 4.3B doodle faces latent in its Mac address

https://evandroguedes.github.io/doodlesoul/
2•evandrog•31m 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.