frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Edge.js: Running Node Apps Inside a WebAssembly Sandbox

https://wasmer.io/posts/edgejs-safe-nodejs-using-wasm-sandbox
1•syrusakbary•43s ago•0 comments

Show HN: Trapiche – Vercel-style deployments on Brazilian servers, billed in BRL

1•acfilho•53s ago•0 comments

Tool lets you build React UIs visually and export real code

https://reactorlowcode.com/
1•borges_sensei•1m ago•1 comments

Show HN: Codeglf – a local-first Python golf site

https://codeglf.com
1•ndr•1m ago•0 comments

Show HN: I built a rental property underwriting app and used it to buy a house

https://brrrrfect.com/
1•OutputRiff•1m ago•0 comments

Flipper One mechanics are now open

https://github.com/flipperdevices/flipperone-mechanics
1•ma5ter•1m ago•0 comments

Why Synthetic Data Can Never Be Ethical: A Lesson from Media Ethics (2024)

https://ojs.library.queensu.ca/index.php/surveillance-and-society/article/download/18324/11978/52201
1•1vuio0pswjnm7•1m ago•0 comments

"[St. Patrick's Day humor in security paper:] Sandboxing"

https://spawn-queue.acm.org/doi/10.1145/3733699
1•antlai•2m ago•0 comments

Test your docs for broken links and dangling pages

https://docsalot.dev/tools/broken-links
1•fazkan•2m ago•0 comments

Building What WCAG Can't Test

https://kiranoliver.beehiiv.com/p/building-what-wcag-can-t-test
1•mooreds•3m ago•0 comments

Recho Notebook: A reactive editor for algorithms and ASCII art

https://recho.dev/notebook/examples
1•ayhanfuat•3m ago•0 comments

Tatas, Fredie Mercury and Other Bawas

https://books.google.com/books/about/Tatas_Fredie_Mercury_and_Other_Bawas.html
1•joebig•3m ago•0 comments

The Paxos algorithm, when presented in plain English, is simple (2021)

https://www.mydistributed.systems/2021/04/paxos.html
1•eatonphil•3m ago•0 comments

What broke when I tried to evaluate an AI agent in production

1•colinfly•3m ago•1 comments

Teaching an AI to Read My Website (Over MCP)

https://jazzsequence.com/2026/03/teaching-an-ai-to-read-my-website-over-mcp/
1•mooreds•4m ago•0 comments

Computer Chronicles

https://archive.org/details/computerchronicles
1•max_•4m ago•0 comments

El Niño Set to Return in 2026, Bringing Erratic Global Weather Shifts

https://earth.org/el-nino-set-to-return-in-2026-bringing-erratic-global-weather-shifts-and-unusua...
1•geox•4m ago•0 comments

The Atlassian Layoffs – Yay or Fail

https://tapestry.news/tech/atlassian-layoffs/
1•zygon•4m ago•0 comments

The Reckless Women Who Changed Journalism

https://www.theatlantic.com/books/2026/02/women-who-reinvented-journalism/686146/
1•samclemens•5m ago•0 comments

AI, Human Cognition and Knowledge Collapse

https://www.nber.org/papers/w34910
1•netfortius•7m ago•0 comments

Factory waste heat could be used to cool data centers via novel thermal battery

https://www.datacenterdynamics.com/en/news/factory-waste-heat-could-help-cool-data-centers-thanks...
1•ZinedineF•7m ago•1 comments

Len Deighton, originator of modern spy fiction, dies

https://www.theguardian.com/books/2026/mar/17/len-deighton-obituary
1•zabzonk•7m ago•0 comments

Stop Losing Referrals: A Quick Note for Coaches and Consultants

https://substack.com/profile/461289274-willem/note/c-229234997
1•anqer•10m ago•0 comments

What can we remove? (2024)

https://stephango.com/remove
1•Sir_Twist•12m ago•0 comments

Genetically modified bacteria convert plastic waste into Parkinson's drug

https://www.heise.de/en/news/Genetically-modified-bacteria-convert-plastic-waste-into-Parkinson-s...
2•ohjeez•12m ago•0 comments

If you thought the code writing speed was your problem; you have bigger problems

https://andrewmurphy.io/blog/if-you-thought-the-speed-of-writing-code-was-your-problem-you-have-b...
3•mooreds•13m ago•0 comments

GhostNet: A Community-Driven Global OSINT Network over Shortwave Radio

https://github.com/s2underground/GhostNet
2•CGMthrowaway•14m ago•0 comments

Certifications with the best ROI per hour in 2026

1•OpenClawAura•14m ago•0 comments

Show HN: Specimen – Font Manager for macOS

https://getspecimen.app
1•yaniszaf•17m ago•0 comments

Nornr: Give your agent a spending mandate before it touches money

https://nornr.com/quickstart
2•dreadpirates•18m ago•1 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•9mo ago
Checked my openrouter stats, it took ~3M tokens but that involved quite a few runs of various experiments.