frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Ukraine's Kill Zone

https://www.reuters.com/graphics/UKRAINE-CRISIS/KILL-ZONE/znpnojmknvl/
1•stared•1m ago•0 comments

Free engagement-rate calculator for creators and brands

https://collabios.com/en/tools/engagement-rate-calculator
1•ghassendaoud•1m ago•0 comments

Show HN: Release-gate – a CLI that checks AI-agent PRs for risky changes

1•VamsiSudhakaran•1m ago•0 comments

Donald Trump's AI Brain Trust

https://www.wired.com/story/this-is-donald-trumps-ai-brain-trust/
1•joozio•1m ago•0 comments

A quantum heat engine that simultaneously provides work and refrigeration

https://phys.org/news/2026-07-quantum-simultaneously-refrigeration.html
1•pseudolus•2m ago•0 comments

UX-Context Design: The future of UX design and user research?

https://www.nngroup.com/articles/ux-context-design/
2•TonyAlicea10•3m ago•0 comments

The Ukrainian startup taking the missile fight deep into Russia

https://www.theguardian.com/world/2026/jul/27/fire-point-ukraine-cruise-missiles-russia
2•Anon84•4m ago•0 comments

The Birth of the American 12-string Guitar

https://www.harpguitars.net/history/grunewald/12-string.htm
2•bilegeek•11m ago•0 comments

Show HN: Horus-runtime – High Performance Computing workflow manager

https://github.com/temple-compute/horus-runtime
2•chdominguez•12m ago•0 comments

America Stopped Reading

https://ilummi.app/how-america-stopped-reading
1•anttonio•13m ago•1 comments

OpenAI is shutting down Atlas

https://techcrunch.com/2026/07/09/openai-is-shutting-down-atlas-but-its-ai-browser-ambitions-are-...
1•quadrige•14m ago•1 comments

Build a Basic AI Agent from Scratch: Security III

https://www.ruxu.dev/articles/ai/build-an-ai-agent-security-3/
1•ruxudev•15m ago•0 comments

Show HN: Dozenal – A Game of Spatial Arithmetic

https://dozenal.game
6•sarreph•19m ago•0 comments

Ask HN: Why is every company encorporating AI everywhere?

6•vanessa1211•23m ago•2 comments

If digital computers are conscious, they are conscious at the hardware level

https://smoothbrains.net/posts/2026-05-09-digital-consciousness.html
2•eatitraw•30m ago•0 comments

How to Run an Autonomous Agent Against Your Own Server

https://medium.com/@vektormemory/how-to-run-an-autonomous-agent-against-your-own-server-3ff9335ba69f
2•vektormemory•30m ago•1 comments

A preferred way to design tools for AI agents

https://www.bolshchikov.com/p/your-agent-isnt-dumb-your-tools-are
2•bolshchikov•30m ago•0 comments

Show HN: Spsc-ring-threadsafe Python C ext. 100x faster as multiprocessing.Queue

https://github.com/eliasdejong/spsc-ring-threadsafe
1•eliasdejong•35m ago•0 comments

Show HN: JavaScript/JSON and CSS minifier lib in minimal C89

https://fossil.wanderinghorse.net/r/cssminc/doc/ckout/README.md
1•sgbeal•41m ago•0 comments

How to Build an Automated SEO Workflow That Improves over Time

https://medium.com/@stefant/how-to-build-an-automated-seo-workflow-that-actually-improves-over-ti...
1•stevematzal•42m ago•0 comments

Big Companies Are Starting to Hire Again, Defying Predictions of AI Wipeout

https://www.wsj.com/business/big-companies-are-starting-to-hire-again-defying-predictions-of-ai-w...
4•thm•46m ago•1 comments

How to Set Up an On-Premises Project Management Platform

https://ones.com/blog/how-to-set-up-an-on-premises-project-management-platform-without-real-time-...
2•coding1134•50m ago•0 comments

Finance engineering roles are 2.6% of open finance-department jobs

https://app.layerz.cc/resources/finance-engineer-statistics
2•abarbey•53m ago•0 comments

How to Build a 50k Ton Forging Press

https://www.construction-physics.com/p/how-to-build-a-50000-ton-forging
3•Michelangelo11•56m ago•0 comments

Beyond Lambda-Calculus: Intensional Computation (2017) [video]

https://www.youtube.com/watch?v=Mmjwdtcu99I
2•sargstuff•56m ago•0 comments

Libsm64: Mario 64 as a library for use in external game engines

https://github.com/libsm64/libsm64
5•klaussilveira•58m ago•0 comments

Is Software Solved?

https://ahmet.ee/is-software-solved/
2•aozisik•1h ago•1 comments

The Odyssey Leaked on X: Bootleg Seen by Millions in Hours Before Takedown

https://variety.com/2026/film/news/the-odyssey-leaked-high-quality-bootleg-x-1236821418/
5•smurda•1h ago•1 comments

Removing React.js from the codebase and adapting Htmx for UI interactivity

https://misago-project.org/t/removing-reactjs-from-the-codebase-and-adapting-htmx-for-ui-interact...
2•Ralfp•1h ago•0 comments

Why I Left Google DeepMind

https://www.lesswrong.com/posts/iKm2FhpWkuuBojm82/why-i-left-google-deepmind
7•eatitraw•1h ago•1 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.