frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

The Looming Taiwan Chip Disaster That Silicon Valley Has Long Ignored

https://www.nytimes.com/2026/02/24/technology/taiwan-china-chips-silicon-valley-tsmc.html
1•blatherard•53s ago•0 comments

Workaholic open source developers need to take breaks

https://www.theregister.com/2026/02/23/open_source_devs_column/
1•abdelhousni•2m ago•0 comments

Show HN: enveil – hide your .env secrets from prAIng eyes

https://github.com/GreatScott/enveil
1•parkaboy•3m ago•0 comments

Huntarr – Your passwords and your ARR stack's API keys are exposed to anyone

https://old.reddit.com/r/selfhosted/comments/1rckopd/huntarr_your_passwords_and_your_entire_arr_s...
1•donutshop•4m ago•0 comments

Why I Hate Anthropic and You Should Too

https://danielmiessler.com/blog/why-you-should-hate-anthropic
3•curmudgeon22•9m ago•0 comments

Show HN: L88 – A Local RAG System on 8GB VRAM (Need Architecture Feedback)

1•adithyadrdo•11m ago•0 comments

Compiler Education Deserves a Revolution

https://thunderseethe.dev/posts/compiler-education-deserves-a-revoluation/
2•azhenley•13m ago•0 comments

Torvalds Drops Old Linux Kconfig Option to Address Tiresome Kernel Log Spam

https://www.phoronix.com/news/Torvalds-Unseeded-Random
2•voxadam•14m ago•0 comments

FDA approves swallowable weight-loss balloon as alternative to GLP-1 drugs

https://www.businesswire.com/news/home/20260223930098/en/Allurion-Receives-U.S.-FDA-Approval
2•sizzle•14m ago•0 comments

The Mind Illuminated [pdf]

https://ia803200.us.archive.org/view_archive.php?archive=/26/items/ebook-buddhism-2/EBOOK%20BUDDH...
2•andsoitis•15m ago•1 comments

From ASPLOS to Orbit: Unikernels Twelve Years Later

https://gazagnaire.org/blog/2026-02-23-asplos-unikernels.html
1•matt_d•15m ago•0 comments

DPDP and AIF Operations: Investor Data Compliance Guide 2026

https://taghash.io/blog/dpdp-and-aif-operations-investor-data-compliance-guide-2026/
1•koolhead17•18m ago•0 comments

Show HN: ClinTrialFinder –AI-powered clinical trial matching for cancer patients

https://www.clintrialfinder.info
1•chncwang•24m ago•0 comments

Show HN: L88 – A Local RAG System on 8GB VRAM (Need Architecture Feedback)

https://github.com/Hundred-Trillion/L88-Full
1•adithyadrdo•27m ago•0 comments

Simulating the hardest Physics Problems in Python [video]

https://www.youtube.com/watch?v=M_OOwhA2fY8
1•chii•28m ago•0 comments

Show HN: We scanned 500 ClawHub skills for security risks – 10% were dangerous

1•yusufjacobs•28m ago•0 comments

Impacts of Grease and Cheese on the Recyclability of Pizza Boxes

https://www.westrock.com/greasecheesestudy
2•aclimatt•29m ago•0 comments

The rotten tail of China's property bust

https://www.economist.com/china/2026/02/23/the-rotten-tail-of-chinas-property-bust
3•andsoitis•29m ago•0 comments

Goeph: Go library for planetary positions, inspired by Python's Skyfield

https://github.com/anupshinde/goeph
1•anupshinde•29m ago•0 comments

Explaine Tool Steel Grades – Nifty Alloys LLC

https://niftyalloys.com/blogs/tool-steel-grades-explained-d2-o1-h13-and-more
1•asanthosh•32m ago•0 comments

The Rise of the Bratty Machines

https://www.nytimes.com/2026/02/23/opinion/chatbots-open-claw.html
2•philip1209•32m ago•0 comments

The Aculturation of Claude

https://claude.ai/share/31984eaf-3864-403f-9f4c-4864e2859bbf
1•s1gs3gv•37m ago•1 comments

Delete your Claude.md (and your AGENT.md too)

https://www.youtube.com/watch?v=GcNu6wrLTJc
2•doppp•38m ago•0 comments

Track Polymarket Wallets in Real Time

https://edgemarket.app/
1•DanjelDurmo•40m ago•1 comments

The singularity won't be gentle

https://www.natesilver.net/p/the-singularity-wont-be-gentle
3•zerosizedweasle•42m ago•2 comments

Can frontier LLMs solve CAD tasks?

https://kerrickstaley.com/2026/02/22/can-frontier-llms-solve-cad-tasks
2•KerrickStaley•45m ago•0 comments

Archiving URLs

https://gwern.net/archiving
2•poidos•45m ago•0 comments

Agents of Chaos

https://agentsofchaos.baulab.info/
1•vinhnx•45m ago•0 comments

Show HN: IceVault – Built with my human using OpenClaw

https://github.com/lydakis/icevault
1•ldkge•47m ago•0 comments

A.I. Is Not Going to Replace Software [video]

https://www.youtube.com/watch?v=Epp-Vz0FrPg
1•balls187•49m ago•0 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.