frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Tinyspec – A spec for tinygrad (ML compiler)

https://github.com/tinygrad/tinyspec
1•ronfriedhaber•40s ago•0 comments

Atlassian Says It Had Right to Fire Engineer for Suggesting CEO Is 'Rich Jerk'

https://www.bloomberg.com/news/articles/2026-03-16/atlassian-defends-firing-worker-who-suggested-...
1•FiddlerClamp•45s ago•0 comments

TINA: Circuit simulator for analog, digital, MCU and RF circuits

https://www.tina.com/
1•teleforce•47s ago•0 comments

You Are Not Your Job

https://jry.io/writing/you-are-not-your-job/
2•jryio•3m ago•0 comments

A $25B Moonshot: Tesla Prepares to Launch Terafab in Four Days

https://www.forbes.com/sites/jonmarkman/2026/03/17/a-25-billion-moonshot-tesla-prepares-to-launch...
1•surprisetalk•6m ago•0 comments

Spyware once used by governments is now spreading to cybercriminals

https://www.axios.com/2026/03/21/iphone-spyware-is-everyones-problem-now
2•Brajeshwar•7m ago•0 comments

Common Package Specification

https://cps-org.github.io/cps/
1•kergonath•11m ago•0 comments

An AI trainer for difficult conversations and social skills

https://nerveless.app
1•bugigas•12m ago•0 comments

Show HN: Actufeed

https://actufeed.com
1•dancode7•14m ago•0 comments

Reddit is weighing identity verification methods to combat its bot problem

https://www.engadget.com/social-media/reddit-is-weighing-identity-verification-methods-to-combat-...
1•pseudalopex•15m ago•0 comments

Show HN: Weekend Project, Built a Vanilla JavaScript Online Code Editor (2022)

https://codeeverywhere.ca/post.php?id=73&title=Weekend-Project:-Online-Code-Editor
1•coevcan•17m ago•0 comments

A Coherent Vision for the Future of Version Control

https://bramcohen.com/p/manyana
2•c17r•17m ago•0 comments

Micron says AI-driven memory crunch is unprecedented

https://www.businesstimes.com.sg/companies-markets/telcos-media-tech/micron-says-ai-driven-memory...
1•teleforce•18m ago•0 comments

Show HN: ClawRun – Deploy AI agents into secure sandboxes with one command

https://clawrun.sh/?hn
1•afshinmeh•20m ago•0 comments

Nvidia to sell 1M chips to Amazon by end of 2027 in cloud deal

https://www.businesstimes.com.sg/companies-markets/telcos-media-tech/nvidia-sell-1-million-chips-...
3•teleforce•22m ago•0 comments

The Longevity Scam

https://www.theatlantic.com/health/2026/02/longevity-medicine-profit-oversold/686049/
1•bookofjoe•24m ago•1 comments

People are selling their identities to train AI – but at what cost?

https://www.theguardian.com/technology/2026/mar/21/ai-trainers-identity-cost
1•Brajeshwar•24m ago•0 comments

NTLM and SMB go opt-in in curl

https://daniel.haxx.se/blog/2026/03/22/ntlm-and-smb-go-opt-in/
1•jandeboevrie•24m ago•0 comments

Zipf's Law and Sharding

https://nvartolomei.com/zipf-s-law-and-sharding/
2•Malp•24m ago•1 comments

Llamafile Reloaded: What's New in v0.10.0

https://blog.mozilla.ai/llamafile-reloaded-whats-new-in-v0-10-0/
1•thomascountz•25m ago•0 comments

I Hate: Programming Wayland Applications

https://www.p4m.dev/posts/29/index.html
2•dwdz•27m ago•0 comments

L.A. County CEO, who got $2M settlement, is resigning

https://www.latimes.com/california/story/2026-03-21/la-county-ceo-who-got-2-million-settlement-is...
1•silexia•28m ago•0 comments

AI Interview Trolling [video]

https://www.youtube.com/watch?v=n4lzOYAJmDc
1•lopespm•29m ago•0 comments

Show HN: Writermark – Open protocol to help prove text is human-written

https://www.writermark.org/
1•jhyolm•33m ago•0 comments

OpenAI to introduce ads to all ChatGPT free and Go users in US

https://www.reuters.com/business/media-telecom/openai-expand-ads-chatgpt-all-free-low-cost-users-...
1•tlogan•34m ago•0 comments

Side-stepping the Secretary Problem, unwittingly

https://www.evalapply.org/posts/side-step-secretary-problem-hiring/index.html
2•adityaathalye•34m ago•0 comments

The Quantum Decade A playbook for achieving awareness, readiness, and advantage

https://www.ibm.com/downloads/documents/us-en/107a02e97dc8fd16
2•hkhn•36m ago•0 comments

Ask HN: Will LLM-commodification cause growth to continue without a correction?

1•AbstractH24•41m ago•9 comments

Trump is showing Beijing how to seize Taiwan

https://www.japantimes.co.jp/commentary/2026/03/22/world/trump-shows-how-to-take-taiwan/
4•geox•41m ago•0 comments

Customizing the Emacs Email Experience with Mu4e

https://brainbaking.com/post/2026/01/customizing-the-emacs-email-experience-with-mu4e/
1•mrtz•43m ago•0 comments
Open in hackernews

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

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