frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Alphabet plans to raise $80B from stock sales to fund AI buildout

https://www.cnbc.com/2026/06/01/alphabet-to-raise-80-billion-from-stock-sales-to-fund-ai-buildout...
1•Indian_in_US•1m ago•0 comments

Tesla May registrations jump in several European markets as recovery continues

https://www.reuters.com/business/tesla-may-registrations-jump-several-european-markets-recovery-c...
1•JumpCrisscross•2m ago•0 comments

Show HN: I reduced LLM inference GPU calls by 94% using semantic routing

https://icomnewtechnologies.com/proof/proof_install.sh
1•kanacki•3m ago•0 comments

Macroscale Connectivity in the Octopus Brain

https://www.biorxiv.org/content/10.1101/2025.05.28.656524v1.full
1•jonnonz•4m ago•0 comments

Implicit.js, a way for agents to do 3D design with math

https://github.com/earthtojake/implicit.js
1•softservo•4m ago•1 comments

Show HN: Going from 1+1=2 to Quantum Mechanics

https://quantum.schols.io/intro
1•chaidhat•6m ago•0 comments

Open source project contains hidden instruction for "AI" agents: delete my code

https://www.osnews.com/story/145130/open-source-project-contains-hidden-instruction-for-ai-agents...
2•mbreese•7m ago•0 comments

75 years of the Fender Telecaster: 12 guitarists who defined the Tele

https://newatlas.com/music/75-years-fender-telecaster-12-guitarists/
2•breve•11m ago•0 comments

BYD plans to bring all-solid-state batteries to EVs by 2027, but it's not alone

https://electrek.co/2026/06/01/byd-all-solid-state-batteries-evs-by-2027/
4•breve•13m ago•0 comments

Show HN: QR Boarding Pass Generator++

https://bcbpgenerator.com/
1•micktor•13m ago•0 comments

Florida sues OpenAI and Sam Altman over marketing ChatGPT despite serious risks

https://fortune.com/2026/06/01/florida-sues-openai-ceo-sam-altman-chatgpt-safety-warnings/
3•1vuio0pswjnm7•19m ago•0 comments

A tale of two weekend projects

https://csmeyer.substack.com/p/a-tale-of-two-weekend-projects
3•csmeyer•24m ago•0 comments

Jenesis – A modern Java build tool

https://github.com/raphw/jenesis/tree/main/demo
1•raphw•27m ago•1 comments

Every Byte Matters

https://fzakaria.com/2026/06/01/every-byte-matters
3•setheron•27m ago•0 comments

The architect who became the king of bank robberies

https://thehustle.co/the-architect-who-became-the-king-of-bank-robberies
3•rmason•27m ago•0 comments

For Goldman's Top Bankers, It's All AI Data Centers All the Time

https://www.bloomberg.com/news/articles/2026-06-01/for-goldman-s-top-bankers-it-s-all-ai-data-cen...
1•1vuio0pswjnm7•28m ago•0 comments

Natural tissue immortality: Indefinite survival of sea cucumber explants

https://www.science.org/doi/10.1126/sciadv.aeb1394
1•bookofjoe•29m ago•0 comments

The MCP Context Tax – Notes from Running 605 Tool Packs

https://pipeworx.io/blog/mcp-context-tax-tool-routing/
1•pipeworx•29m ago•0 comments

Speech Studio – I open-sourced a local voice cloning Mac app (free, no API keys)

https://old.reddit.com/r/SideProject/comments/1tu78nn/speech_studio_i_opensourced_a_local_voice_c...
1•ipotapov•31m ago•1 comments

Hatch: Write agent rules/skills once, generate for all

https://github.com/grafana/hatch
1•matryer•31m ago•0 comments

The SpaceX Squeeze

https://www.bloomberg.com/opinion/newsletters/2026-06-01/the-spacex-squeeze
3•davidw•32m ago•0 comments

We built a 12-step verification pipeline. It caught zero real errors

https://www.inc.com/heather-wilde/before-you-let-ai-run-your-business-read-this/91327205
2•bobrenze•32m ago•0 comments

I tracked 68 automation metrics. Only 3 changed my behavior

https://www.inc.com/heather-wilde/4-tech-strategies-revolutionizing-business-operations.html
1•bobrenze•33m ago•0 comments

NeuROK: Generative 4D Neural Object Kinematics

https://chen-geng.com/neurok
1•ychidken•34m ago•0 comments

Repo explainer – For coders that can't read good

https://repo-explainer.com/
3•seahorsecastle•35m ago•3 comments

Why Are Human Teeth So Messed Up? (2017)

https://www.sapiens.org/biology/human-teeth-evolution/
2•downbad_•41m ago•0 comments

Famous Photo of Chernobyl's Dangerous Radioactive Material Was a Selfie (2016)

https://www.atlasobscura.com/articles/elephants-foot-chernobyl
3•downbad_•42m ago•0 comments

OpenAI frontier models and Codex are now available on AWS

https://openai.com/index/openai-frontier-models-and-codex-are-now-available-on-aws/
7•typpo•44m ago•0 comments

AI's reality check has arrived

https://www.fastcompany.com/91551700/ais-reality-check-has-finally-arrived
3•1vuio0pswjnm7•50m ago•0 comments

Terrascan: Explore public deep earth scan datasets

https://terrascan.bowd.io
3•bowd•51m 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.