frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Ask HN: Who's hiring but companies that don't have AI mandates?

1•ares623•5m ago•0 comments

Post-AI World: Notes on Economy, Meaning, Agency

https://yashmouje.com/blog/post-ai-world
1•yashmouje•7m ago•0 comments

Mechanical Habits

https://matklad.github.io/2025/12/06/mechanical-habits.html
1•r4um•8m ago•0 comments

A Crisis in the Alps: Airbnb, Climate Change and Americans

https://www.nytimes.com/2026/03/02/travel/french-alps-problems-overdevelopment-climate-change.html
2•RestlessMind•11m ago•0 comments

Agentic Engineering Patterns

https://simonwillison.net/guides/agentic-engineering-patterns/
1•r4um•12m ago•0 comments

Denoising my Life: Part 1

https://adityashrishpuranik.com/writing/denoising-my-life
1•adityapuranik99•12m ago•0 comments

MIDI Viz Piano

https://zz85.github.io/midiviz/midiviz_piano.html
1•memalign•12m ago•0 comments

Windows 12 Reportedly Set for Release This Year

https://tech4gamers.com/windows-12-reportedly-relasing-2026-modular-ai-focused-os/
1•ryandrake•17m ago•0 comments

Merge PDF

https://www.pdffixnow.com/merge-pdf
1•instahotstar•21m ago•1 comments

I got tired of rewriting interview questions for every candidate,so I built this

https://recruitlens.io/
1•elminson•24m ago•1 comments

I built a collection of privacy-focused browser tools (no uploads)

https://everytool.solutions/
1•Mihir1426•25m ago•0 comments

MachineAuth: Open source Authentication infrastructure for AI agents

https://github.com/mandarwagh9/MachineAuth
1•mandarwagh•25m ago•1 comments

Rust zero-cost abstractions vs. SIMD

https://turbopuffer.com/blog/zero-cost
1•whiteros_e•26m ago•0 comments

I Have No Mouth

https://www.leemeichin.com/posts/i-have-no-mouth
1•freediver•30m ago•0 comments

The GPT-3.5 Era: A Retrospective on 404s, Biometric Clocks, and $400 Bills

https://chippytime.com/gpt3-story
1•chippytech•32m ago•0 comments

Show HN: Claude-brain – Sync your Claude Code brain across machines via Git

https://github.com/toroleapinc/claude-brain
1•edvatar•33m ago•0 comments

GitNexus: The Zero-Server Code Intelligence Engine

https://github.com/abhigyanpatwari/GitNexus
1•mpweiher•36m ago•0 comments

Show HN: Kira – AI agent for Android that runs in Termux and has a socialnetwork

https://github.com/levilyf/droidclaw
1•animiso•36m ago•0 comments

The Modular Phone of the Future [video]

https://www.youtube.com/watch?v=tQn8X6l3-ig
1•mgh2•39m ago•0 comments

A CPU that runs entirely on GPU

https://github.com/robertcprice/nCPU
2•cypres•42m ago•0 comments

Ask HN: Transforming My Resumé for the Age of AI

1•metadat•46m ago•0 comments

Indefinite Book Club Hiatus

https://whatever.scalzi.com/2026/03/03/indefinite-book-club-hiatus/
2•cdrnsf•47m ago•0 comments

Pixel homescreens get custom icons, but Google's keeping them locked to AI

https://9to5google.com/2026/03/03/pixel-homescreens-are-getting-custom-icons-but-googles-keeping-...
1•josephcsible•47m ago•0 comments

CuTe Layout Representation and Algebra

https://arxiv.org/abs/2603.02298
3•matt_d•53m ago•0 comments

Show HN: Shipcheck – run a final website audit before deploying

https://www.shipcheck.pro/
1•fiynraj•53m ago•0 comments

WSJ Opinion: The A.I. Data Center Backlash

https://www.wsj.com/video/series/journal-editorial-report/wsj-opinion-the-ai-data-center-backlash...
2•1vuio0pswjnm7•57m ago•0 comments

AI knows everything – what should learning look like for my kids(8-12Y)

https://searchsaga.vercel.app/
1•aadivar•58m ago•0 comments

Been building the world labs of the enterprise space

https://www.loom.com/share/ecf98b88c6c746f082a2c121c6015398
1•tjarzu•1h ago•1 comments

It's official: Hiring managers aren't reading your Résumé

https://www.businessinsider.com/hiring-managers-arent-reading-resumes-slop-2026-3
5•KnuthIsGod•1h ago•1 comments

I Just Returned from China. We Are Not Winning

https://www.nytimes.com/2026/02/10/opinion/china-ai-ev-trump.html
6•nothrowaways•1h ago•2 comments
Open in hackernews

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

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