frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Highline: A higher level command-line oriented interface

https://github.com/JEG2/highline
1•thunderbong•26s ago•0 comments

70k students, 1k schools, results in seconds: using AI for assessment

https://indianexpress.com/article/india/jodhpur-ai-pilot-transforming-assessments-schools-student...
1•rtcoms•37s ago•0 comments

Ethernet Commoditizes Everything. Except EOS

https://routerjockey.com/ethernet-commoditizes-everthing-except-eos-arista-nfd40/
1•tonhe•2m ago•0 comments

Show HN: I built a zero-tracking news hub to escape doomscrolling at (AGE 17y)

1•blazeeofsun•3m ago•1 comments

Anaconda acquires Outerbounds to rein in the buggy code AI agents keep shipping

https://thenewstack.io/anaconda-ai-outerbounds-python-metaflow/
1•Brajeshwar•4m ago•0 comments

Kubereboot/Kured: Kubernetes Reboot Daemon

https://github.com/kubereboot/kured
1•ankitg12•5m ago•0 comments

OpenAI: WebAssembly and Rust Are Reshaping Data Visualization in BI

https://blog.gopenai.com/dashboard-studio-rs-how-webassembly-and-rust-are-reshaping-data-visualiz...
1•mendyberger•6m ago•0 comments

Prism: Demystifying Retention and Interaction in Mid-Training

https://arxiv.org/abs/2603.17074
1•mdp2021•7m ago•0 comments

You probably dont want RLS

https://planetscale.com/blog/rls-sounds-great-until-it-isnt
1•imjosh-dev•8m ago•0 comments

Building a CDC Pipeline, Part 1: PostgreSQL WAL Internals

https://georgioszefkilis.substack.com/p/building-a-cdc-pipeline-part-1-postgresql
1•speckx•8m ago•0 comments

AI could help human scientists pick promising research topics

https://physicsworld.com/a/ai-could-help-human-scientists-pick-promising-research-topics/
1•zeristor•9m ago•0 comments

How A.I. Killed Student Writing (and Revived It)

https://www.nytimes.com/2026/04/30/us/ai-students-cheating-homework-classrooms.html
2•apparent•11m ago•0 comments

Show HN: TRiP – a complete transformer engine in C built from scratch just by me

https://github.com/carlovalenti/TRiP
1•carlovalenti•11m ago•0 comments

Judge Orders Matt Mullenweg to Explain Missing Messages in WP Engine Dispute

https://www.therepository.email/federal-judge-orders-matt-mullenweg-to-explain-missing-messages-i...
2•docdeek•12m ago•0 comments

The Bloomberg Terminal Is Getting an AI Makeover, Like It or Not

https://www.wired.com/story/the-bloomberg-terminal-is-getting-an-ai-makeover-like-it-or-not/
1•01-_-•12m ago•0 comments

Non-Programmer Code Sharing

1•CombatHacker•13m ago•0 comments

Revealing NVIDIA Driver Command Streams for CPU-GPU Runtime Behavior Insight

https://arxiv.org/abs/2604.26889
1•matt_d•13m ago•0 comments

AI optimism is waning

https://bayeslord.substack.com/p/ai-optimism-is-waning
3•swah•14m ago•0 comments

Guardians: Static verification for AI agent workflows

https://github.com/metareflection/guardians
1•matt_d•14m ago•0 comments

CopyFail Was Not Disclosed to Distros

https://www.openwall.com/lists/oss-security/2026/04/30/10
5•ori_b•15m ago•0 comments

Show HN: I built a private GitHub in 650 lines of PostgreSQL

https://github.com/calebwin/gitgres
2•calebhwin•17m ago•0 comments

AI Investment Boosted Economic Growth, While Consumers Tapped the Brakes

https://www.wsj.com/economy/central-banking/u-s-economy-grew-at-2-rate-in-first-quarter-6e0c18cc
1•JumpCrisscross•17m ago•0 comments

Show HN: Larkin – Authorization middleware for x402 agent payments

https://larkin.sh
1•mikebom•18m ago•0 comments

Vision agents vs. structured APIs on the same internal tool task

4•FirestarAlpha•18m ago•0 comments

The Whistleblower Who Uncovered the NSA's 'Big Brother Machine'

https://thereader.mitpress.mit.edu/the-whistleblower-who-uncovered-the-nsas-big-brother-machine/
16•the-mitr•18m ago•0 comments

Xatastor: ZFS and NVMe-Of for Postgres Databases

https://xata.io/blog/xatastor-zfs-nvme-of-for-millions-of-postgres-databases
3•tee-es-gee•19m ago•0 comments

Fast GPU Linear Algebra via Compile Time Expression Fusion

https://arxiv.org/abs/2604.22242
1•matt_d•21m ago•0 comments

American Dads Became the Parents Their Fathers Never Were

https://www.derekthompson.org/p/why-do-richer-dads-spend-more-time
1•ozozozd•21m ago•0 comments

Command Decision System for organizational risk (not average-based)

https://github.com/knuppjason-source/Human-Factors-App
1•Knuppjason•22m ago•0 comments

Show HN: Phase Router – capacity-aware routing for MoE

https://github.com/TSltd/phase_router_rs
1•TSltd•22m ago•0 comments
Open in hackernews

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

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