frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Benchmarking LLM Accuracy in Real-World API Orchestration

https://orbitalhq.com/blog/2026-01-20-agentic-orchestration-research-paper
1•martypitt•32s ago•0 comments

60 FPS AI-generated worlds you can play

https://www.overworld.stream/
1•ggsp•40s ago•1 comments

What Isaac Roberts Saw Without a Space Telescope

https://hackaday.com/2026/01/20/what-isaac-roberts-saw-without-a-space-telescope/
1•beardyw•1m ago•0 comments

Ask HN: How to Comeback in 2026?

1•SRMohitkr•2m ago•0 comments

Snap reaches settlement in social media addiction lawsuit

https://techcrunch.com/2026/01/20/snap-reaches-settlement-in-social-media-addiction-lawsuit/
1•speckx•5m ago•0 comments

RAM shortage chaos expands to GPUs, high-capacity SSDs, and even hard drives

https://arstechnica.com/gadgets/2026/01/ram-shortage-chaos-expands-to-gpus-high-capacity-ssds-and...
2•mariuz•8m ago•0 comments

The State of WebAssembly – 2025 and 2026

https://platform.uno/blog/the-state-of-webassembly-2025-2026/
1•pjmlp•8m ago•0 comments

I Made Zig Compute 33M Satellite Positions in 3 Seconds. No GPU Required

https://atempleton.bearblog.dev/i-made-zig-compute-33-million-satellite-positions-in-3-seconds-no...
1•signa11•10m ago•0 comments

Stopping Wall Street from Competing with Main Street Homebuyers

https://www.whitehouse.gov/presidential-actions/2026/01/stopping-wall-street-from-competing-with-...
1•KoftaBob•11m ago•0 comments

Remote authentication by-pass in inetutils-telnetd

https://www.openwall.com/lists/oss-security/2026/01/20/2
1•s3krit•11m ago•0 comments

SETI Home Is in Hiberation

https://setiathome.berkeley.edu/
2•keepamovin•12m ago•0 comments

Real programming vs. interviews: A dyslexic perspective

1•gcv•12m ago•0 comments

Mongoose – network library for C/C++

https://mongoose.ws/documentation/
1•smartmic•17m ago•0 comments

Building your own efficient uint128 in C++

https://solidean.com/blog/2026/building-your-own-u128/
3•fanf2•19m ago•0 comments

Leave X – Protect Democracy

https://leavex.eu
1•robin_reala•20m ago•0 comments

Religious affiliation of members of 118th Congress [pdf]

https://www.pewresearch.org/religion/wp-content/uploads/sites/7/2022/12/PF_2023.01.03_congress_LI...
2•KoftaBob•21m ago•0 comments

Vibe coding creates exponential technical debt (forbes)

https://www.forbes.com/sites/joetoscano1/2026/01/20/developers-use-ai-coding-tools-to-get-started...
1•cumo•22m ago•0 comments

Agent API for Claude Code / Claude Agent SDK

2•waterli•24m ago•0 comments

Connecting Claude Code to OpenAgents Networks

https://openagents.org/blog/posts/2026-01-15-connecting-claude-code-to-openagents-networks
3•snasan•25m ago•1 comments

KRAZAM - Rare Data Hunters [video]

https://www.youtube.com/watch?v=IU4ByUbDKNc
2•baobabKoodaa•27m ago•0 comments

Windows CLAT Enters Private Preview: A Milestone for IPv6 Adoption

https://techcommunity.microsoft.com/blog/networkingblog/windows-clat-enters-private-preview-a-mil...
1•AndrewDucker•28m ago•0 comments

OAuth2 Proxy

https://oauth2-proxy.github.io/oauth2-proxy/
1•JustSkyfall•31m ago•0 comments

Faster Horses, Not Trains

https://blog.robbowley.net/2025/12/16/faster-horses-not-trains-yet/
1•todsacerdoti•31m ago•0 comments

Show HN: Living Satoshi – A decentralized AI with on-chain memory

https://livingsatoshi.com
2•sebklaey•32m ago•0 comments

Code Review Best Practices: Focus on Maintainability, Not Correctness

https://www.blundergoat.com/articles/code-review-framework-collaborative-quality
1•blundergoat•34m ago•1 comments

Show HN: MCP Hangar: K8s operator for managing MCP servers with lazy loading

https://github.com/mapyr/mcp-hangar
2•mapyr•39m ago•1 comments

Where Should Agent Memory Actually Live?

https://www.youtube.com/watch?v=iVoWI67NqRY
1•musha68k•40m ago•0 comments

Whacky split keyboard, the glove80 – Dev Oops

https://mcgillij.dev/glove80.html
1•kirillrogovoy•41m ago•0 comments

Show HN: RobyGraph – A graph strategy game to program AI agents in the browser

https://www.yfiles.com/robygraph
2•buesra•42m ago•1 comments

Magic SysRq Key

https://en.wikipedia.org/wiki/Magic_SysRq_key
2•embedding-shape•44m ago•1 comments
Open in hackernews

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

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