frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Dekal – Design CAD kinematics with code

https://demo.dekal.sh
1•Timot05•28s ago•0 comments

Check Point Researchers Expose Critical Claude Code Flaws

https://blog.checkpoint.com/research/check-point-researchers-expose-critical-claude-code-flaws/
1•geoffbp•1m ago•0 comments

Personal relationship with the bouba-kiki effect

https://tristan.st/blog/bouba-kiki
1•tsterin•3m ago•0 comments

Brain-like computers could be built out of perovskites

https://www.economist.com/science-and-technology/2026/02/18/brain-like-computers-could-be-built-o...
1•8ytecoder•5m ago•0 comments

Agents are not thinking, they are searching

https://technoyoda.github.io/agent-search.html
3•sci-genie•7m ago•0 comments

Show HN: Sitter Rank – Pet sitter booking without 20-40% platform fees

https://www.sitterrank.com
2•eibrahim•7m ago•0 comments

Hetzner Is Down

https://statusgator.com/services/hetzner
8•alcazar•8m ago•5 comments

How I Ported a Python Astronomy Library to Go with AI

https://www.anupshinde.com/ai-assisted-skyfield-to-go-port/
1•anupshinde•8m ago•0 comments

Fincke reveals it was his medical issue that led to early mission end

https://www.cnn.com/2026/02/25/science/nasa-astronaut-medical-issue-mike-fincke-iss
1•reconnecting•9m ago•0 comments

OpenClaw Installation in FreeBSD Jail

https://github.com/isaponsoft/freebsd-ai-notes/blob/main/openclaw-on-jail.md
2•vermaden•9m ago•0 comments

Testosterone: Much Easier Just to Buy Underground from a Guy at the Gym

https://journals.sagepub.com/doi/10.1177/00220426251403911
1•PaulHoule•9m ago•0 comments

Anthropic acquires Vercept whose Vy let you control Mac/PC via natural language

https://www.geekwire.com/2026/anthropic-acquires-vercept-in-early-exit-for-one-of-seattles-stando...
1•adamhowell•9m ago•1 comments

An open DNS protocol got captured by corporate gatekeepers

https://www.jannis.io/open-means-open-or-it-means-nothing/
2•jannisfb•10m ago•0 comments

AI agents are making data portability the default

https://allin1builders.lovable.app/blog/era-of-open-data
1•anaviz•10m ago•1 comments

Just use symlinks and be agent agnostic

https://matanabudy.com/just-use-symlinks-and-be-agent-agnostic/
1•matanabudy•10m ago•0 comments

Agents are the new browsers. Design for it

https://visr.dev
2•sourishkrout•10m ago•0 comments

An autopsy of AI-generated 3D slop

https://aircada.com/blog/ai-vs-human-3d-ecommerce
9•sech8420•11m ago•0 comments

A Fuzzer for the Toy Optimizer

https://bernsteinbear.com/blog/toy-fuzzer/
1•chunkles•12m ago•0 comments

Show HN: Synergetic-SQR – A 4D rendering engine with bit-exact rotation

https://github.com/johncurley/synergetic-sqr
1•j291920•13m ago•0 comments

The Prompt Injection Problem: A Guide to Defense-in-Depth for AI Agents

https://manveerc.substack.com/p/prompt-injection-defense-architecture-production-ai-agents
1•manveerc•14m ago•0 comments

"OpenClaw, open the front door"

https://jukkan.com/openclaw-open-the-front-door/
1•jukkan•14m ago•0 comments

Show HN: TinyCard – A minimalistic & functional e-Card site, like tinyletter

https://tinycard.app
1•szemy2•14m ago•0 comments

Mapping Physical Header Pins to Logical GPIO Numbers in Code

https://hubble.com/community/guides/mapping-physical-header-pins-to-logical-gpio-numbers/
1•jmarbach•15m ago•0 comments

Build Windows 11 QEMU VM images deterministically with Nix

https://github.com/aleclearmind/nix-windows-in-qemu
1•aleclm•15m ago•0 comments

Apple's upcoming AI smart glasses are starting to sound more exciting

https://9to5mac.com/2026/02/21/apple-ai-smart-glasses-rumors-sounding-more-exciting/
1•gmays•15m ago•0 comments

A 62-byte FLAC file that requests 8.5GB in dr_flac, used by raylib and SDL

https://medium.com/@caplanmaor/integer-overflow-in-dr-flac-cve-2025-14369-2785de317496
3•BambaNugat•18m ago•0 comments

Chemical Weapons: A Summary Report of Characteristics and Effects

https://www.congress.gov/crs-product/R42862
2•joebig•18m ago•0 comments

Ask HN: What do I do now that software engineering is dead?

2•eerichmond33•18m ago•1 comments

Can Chain-of-Thought Reasoning Solve Any Computable Task?

https://arxiv.org/abs/2510.12066
3•ryancoleman•19m ago•1 comments

The Last Year of Terraform

https://encore.dev/blog/last-year-of-terraform
3•rzk•19m ago•1 comments
Open in hackernews

Show HN: OpenEvolve – open-source implementation of DeepMind's AlphaEvolve

8•codelion•9mo 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•9mo 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•9mo ago
How many tokens did it take to generate the 800 versions of the code?
codelion•9mo ago
Checked my openrouter stats, it took ~3M tokens but that involved quite a few runs of various experiments.