frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

The China chip hype seems to be inference only. Is Jensen's worry true?

https://twitter.com/natolambert/status/2049634340561436966
1•jwzxgo•15m ago•0 comments

Three Cobblers, One Zhuge Liang: Making Cheaper Models Work Together

https://markhuang.ai/blog/three-cobblers-one-zhuge-liang-ai-architecture
2•zh_code•16m ago•0 comments

The Zig project's rationale for their firm anti-AI contribution policy

https://simonwillison.net/2026/Apr/30/zig-anti-ai/
2•lumpa•18m ago•1 comments

Elon Musk's worst enemy in court is Elon Musk

https://www.theverge.com/tech/921022/elon-musk-cross-openai-altman
5•granzymes•18m ago•1 comments

The Lightening of Intent

https://aneeshsathe.substack.com/p/the-lightening-of-intent
1•boredgargoyle•19m ago•0 comments

Generation Alpha

https://en.wikipedia.org/wiki/Generation_Alpha
1•keepamovin•24m ago•0 comments

Musk Says He 'Was a Fool' to Provide OpenAI's Early Funding

https://www.nytimes.com/2026/04/29/technology/musk-openai-trial-altman.html
4•1vuio0pswjnm7•25m ago•0 comments

Musk casts himself as AI's good guy in testimony vs. OpenAI

https://www.axios.com/2026/04/30/musk-openai-safety-grok
3•1vuio0pswjnm7•25m ago•0 comments

7-Zip 26.01 (7zip) – A free file archiver for high compression

https://sourceforge.net/p/sevenzip/discussion/45797/thread/555e132ba4/
2•neustradamus•27m ago•1 comments

FDA alleges 'manipulated' data supported approval of Amgen's autoimmune drug

https://www.biospace.com/fda/fda-alleges-manipulated-data-supported-approval-of-amgens-autoimmune...
2•randycupertino•32m ago•1 comments

Zulip 12.0 Released

https://blog.zulip.com/2026/04/27/zulip-12-0-released/
2•tabbott•33m ago•0 comments

Wanman: Open-source agent matrix network with JSON-RPC communications

https://github.com/chekusu/wanman/
3•imWildCat•39m ago•0 comments

Open-source briefing packets and citizen-action toolkits

https://github.com/ClosedNetwork/closed-network-flock-resources
2•pkaeding•40m ago•0 comments

Copilot Student GPT-5.3-Codex removal from model picker

https://github.blog/changelog/2026-04-27-copilot-student-gpt-5-3-codex-removal-from-model-picker/
1•aaronsung•42m ago•1 comments

AInvest

https://www.ainvest.com
2•Yang_Ruichen•43m ago•0 comments

Show HN: Agent that refuses to run commands without human approval

https://github.com/few-sh/fewshell
3•hexer303•44m ago•0 comments

Microsoft lifts 2026 AI spend by $25B to cover component price rises

https://www.theregister.com/2026/04/30/microsoft_q3_2026/
4•omer_k•45m ago•0 comments

A Grounded Conceptual Model for Ownership Types in Rust

https://cacm.acm.org/research-highlights/a-grounded-conceptual-model-for-ownership-types-in-rust/
5•tkhattra•46m ago•0 comments

Have You Seen the New Excel?

https://idiallo.com/blog/have-you-seen-the-new-xl-ai-parody
7•jnord•47m ago•0 comments

Neural similarity predicts whether strangers become friends

https://www.nature.com/articles/s41562-025-02266-7#Sec2
3•E-Reverance•48m ago•0 comments

Craig Venter has died

https://www.jcvi.org/media-center/j-craig-venter-genomics-pioneer-and-founder-jcvi-and-diploid-ge...
52•rdl•48m ago•11 comments

On the stand, Elon Musk can't escape his own tweets

https://techcrunch.com/2026/04/29/on-the-stand-elon-musk-cant-escape-his-own-tweets/
4•jnord•48m ago•0 comments

The feed doesn't know you, and YouTube refuses to let you browse

https://evilgeniuslabs.ca/blog/the-feed-doesnt-know-you
3•paulpauper•52m ago•0 comments

We Don't Know How A.I. Works. That's a Problem

https://www.nytimes.com/2026/04/15/magazine/ai-black-box-interpretability-research.html
2•lxm•53m ago•0 comments

When a tornado hits after US Government mass-deploy auto kill-switch

https://twitter.com/gatlin_didier/status/2049617318112534743
2•egberts1•1h ago•0 comments

Failed AI tractor company lays off all employees, abandons Bay Area headquarters

https://www.sfgate.com/tech/article/monarch-ai-tractor-failure-22183476.php
5•randycupertino•1h ago•0 comments

Show HN: WorkProof – JSON schema for skill evidence graphs

https://github.com/TalentProof/workproof-schema
2•parth4•1h ago•0 comments

Botfiles: Dotfiles-esque setup for Managing Agents

https://twitter.com/curious_queue/status/2049660997993152855
2•sourya4•1h ago•1 comments

Zwift buys Rouvy in shake-up of indoor cycling

https://www.bikeradar.com/news/zwift-buys-rouvy-in-massive-shake-up-of-indoor-cycling
3•obilgic•1h ago•0 comments

Claude.ai and API unavailable [fixed]

https://status.claude.com/incidents/2gf1jpyty350
91•rob•1h ago•75 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.