frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

GenAI prompting Dutch secondary schools to rethink how they assign homework

https://nltimes.nl/2026/08/25/ai-prompting-dutch-secondary-schools-rethink-handle-homework
1•giuliomagnifico•34s ago•0 comments

Por que sua skin atual está limitando O nível de jogo

https://victormignone.substack.com/p/por-que-sua-skin-atual-esta-limitando
1•victormignone•43s ago•0 comments

Maps of Osaka

https://chyuang.com/writing/maps-of-osaka/
1•yongyongyong•54s ago•0 comments

Elm releases its first update since 2019

https://github.com/elm/compiler/releases
1•nor0x•1m ago•0 comments

Show HN: Building USoC Part 1: The Wishbone Bus

http://axiomfactory.co/wishbone
1•dvc94ch•2m ago•0 comments

We built a structured entity graph for an AI agent. Then we removed most of it

https://blog.getcassis.com/context-engineering-for-analytics-agents/
1•matthieu_bl•4m ago•0 comments

HelloAssembly The smallest possible complete Windows application

https://github.com/PlummersSoftwareLLC/HelloAssembly
1•Bluestein•7m ago•0 comments

At least 1-in-4 former NFL players who died between 2016-2021 had CTE

https://news.massgeneralbrigham.org/en/1-in-4-former-nfl-players-who-died-2016-2021-had-cte
1•geox•7m ago•0 comments

Show HN: Shepherdr – A mobile-first web UI for agents on Herdr

https://github.com/luiscleto/shepherdr
1•lfcc•8m ago•0 comments

Show HN: Turn any video into a scroll-controlled website with an Agent Skill

https://github.com/musoyangrigor/scroll-video-website-skill
1•MusoyanGrigor•9m ago•0 comments

Credit Card Rewards Became a $9.2B Wealth Transfer

https://www.library.hbs.edu/working-knowledge/how-credit-card-rewards-became-multibillion-dollar-...
3•conbrian•9m ago•0 comments

An Interesting AI Educational Animation Generator

https://fogsight.ai
1•redreamality•10m ago•0 comments

How to transfer Databricks certificates and Badges when changing employers

https://medium.com/databrickscommunity/how-to-transfer-databricks-certificates-and-badges-when-ch...
2•protmaks•13m ago•0 comments

The American People Hate Data Centers

https://thezvi.wordpress.com/2026/08/24/the-american-people-really-hate-data-centers/
4•zug_zug•14m ago•0 comments

British man charged in Singapore two years after alleged theft at airport

https://www.bbc.com/news/articles/ckg024vrzxjo
1•jonathanlydall•15m ago•0 comments

The data center era that's reshaping America

https://www.axios.com/2026/08/25/data-centers-ai-electricity-water-politics
4•1vuio0pswjnm7•15m ago•0 comments

RetroPad is a full-feature-parity version of Notepad from XP in just 2749 bytes

https://www.tomshardware.com/software/windows/retropad-is-a-full-feature-parity-version-of-notepa...
2•Bluestein•15m ago•1 comments

Local Privilege Escalation via the NetBird Client Daemon IPC

https://netbird.io/knowledge-hub/security-advisory-daemon-ipc-local-privilege-escalation
1•hollow-moe•16m ago•0 comments

Create videos for your products using your terminal/IDE

https://github.com/kritikmodi/product-video-as-code
1•kritikmodi•16m ago•1 comments

The Neumann Hangover from 1945

https://ussphoenix.substack.com/p/why-patching-and-triage-are-just
1•mavercik1337•16m ago•0 comments

Nostr vs. Fediverse vs. Bluesky: A Comparison of Decentralized Social Protocols

https://soapbox.pub/blog/comparing-protocols
2•Bluestein•19m ago•0 comments

Study's Alarming Finding: At Least 1 in 4 NFL Players Gets Brain Disease

https://www.nytimes.com/2026/08/25/us/nfl-cte-brain-disease.html
1•bookofjoe•20m ago•1 comments

The Move to Python 3 Begins

https://store.steampowered.com/news/app/8500/view/690892322235222263
2•dkpk•21m ago•1 comments

In solarpunk cities of the future tech follows natures lead

https://aeon.co/essays/in-solarpunk-cities-of-the-future-tech-follows-natures-lead
1•proudestmonkey•21m ago•0 comments

Offgrid Electric Car (2025)

https://joeyh.name/blog/entry/offgrid_electric_car/
2•birdculture•23m ago•0 comments

Hugging Face reportedly in talks to be acquired for $13B

https://techcrunch.com/2026/08/24/hugging-face-reportedly-in-talks-to-be-acquired-for-13b/
3•doppp•24m ago•0 comments

Helm Dashboard Sequence Diagrams

https://app.ilograph.com/demo.ilograph.Helm%2520Dashboard/Start%2520Dashboard
1•billyp-rva•25m ago•0 comments

Why we built an APFS filesystem version control tool for Mac?

https://scaleninja.com/blog/deltasnap/
1•yadvr•25m ago•0 comments

Meeting Seed7

https://genodians.org/nfeske/2025-12-22-meeting-seed7
1•mentalgear•26m ago•1 comments

SEC reportedly subpoenas Wall St banks over AI hedge fund Situational Awareness

https://www.cnbc.com/2026/08/25/sec-situational-awareness-hedge-fund-subpoenas.html
2•1vuio0pswjnm7•26m 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.