frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Trump violated First Amendment by forcing Facebook, Apple to remove ICE-tracking

https://lawandcrime.com/high-profile/government-coerced-enforcement-trump-admin-violated-first-am...
1•vrganj•32s ago•0 comments

Intolerance of uncertainty (IU) positively associated with problematic phone use

https://www.sciencedirect.com/science/article/abs/pii/S0306460325002400
1•Terretta•5m ago•0 comments

Proposal: Moving ownCloud community discussion to GitHub Discussions

https://central.owncloud.org/t/proposal-moving-owncloud-community-discussion-to-github-discussion...
1•edent•9m ago•0 comments

Zine

https://zine-ssg.io/
1•Tomte•15m ago•0 comments

Turning Point USA Is Expanding Its Reach to K-12 Schools

https://www.edweek.org/policy-politics/how-charlie-kirks-turning-point-usa-is-expanding-its-reach...
2•geox•16m ago•0 comments

Airline worker arrested after sharing photos of bomb damage in WhatsApp group

https://www.lbc.co.uk/article/dubai-police-spied-private-whatsapp-5HjdXwr_2/
5•aa_is_op•22m ago•1 comments

History Is Running Backwards

https://www.theatlantic.com/magazine/2026/05/reactionary-traditionalism-worldview/686597/
1•Anon84•22m ago•0 comments

Claude system prompts as a Git timeline

https://simonwillison.net/2026/Apr/18/extract-system-prompts/
2•Brajeshwar•23m ago•0 comments

Panic says the Playdate Catalog won't accept games made with generative AI

https://www.engadget.com/gaming/panic-says-the-playdate-catalog-wont-accept-games-made-with-gener...
1•CharlesW•24m ago•0 comments

Modern Front end Complexity: essential or accidental?

https://binaryigor.com/modern-frontend-complexity.html
2•gsky•24m ago•0 comments

Show HN: Libredesk – self-hosted, single-binary Intercom/Zendesk alternative

https://libredesk.io
3•avr5500•26m ago•0 comments

The EU digital ID wallet can't deliver the privacy properties it claims

https://github.com/eu-digital-identity-wallet/av-doc-technical-specification/issues/26
3•gasull•27m ago•0 comments

A Multi‑Threaded Branchless Quicksort in C

https://easylang.online/blog/threaded_sorting
1•jsphtr•29m ago•0 comments

How Engineers Kick-Started the Scientific Method

https://spectrum.ieee.org/francis-bacon-scientific-method
1•salkahfi•30m ago•0 comments

CSS-Only Mario World

https://codepen.io/t_afif/full/JoKYwXO
1•bookofjoe•31m ago•0 comments

Tide: Token-Informed Depth Execution for Per-Token Early Exit in LLM Inference

https://arxiv.org/abs/2603.21365
1•OsamaJaber•31m ago•0 comments

Show HN: Scan domain for llms.txt LLMs-full.txt AI aware SEO tool

3•fcpguru•34m ago•0 comments

Wander Console Network Crawler

https://susam.net/code/news/wander/0.5.0.html
1•susam•37m ago•0 comments

Ask HN: How to handle desktop app security post-Mythos?

1•Archit3ch•40m ago•2 comments

Eternal November – this new influx of users may be better than the last one

https://sfconservancy.org/blog/2026/apr/15/eternal-november-generative-ai-llm/
1•nfriedly•42m ago•0 comments

Why we create architecture diagrams (2022)

https://www.ilograph.com/blog/posts/why-create-system-architecture-diagrams/
1•billyp-rva•48m ago•0 comments

Show HN: A collaborative SSH copilot for on-calls/DevOps/MLOps

https://github.com/few-sh/fewshell
1•hexer303•49m ago•0 comments

Graphics: How the Strait of Hormuz closure affects global oil supply

https://www.reuters.com/graphics/IRAN-CRISIS/OIL-LNG/mopaokxlypa/
1•cybermango•49m ago•0 comments

Open source contribution and job search as matching markets under AI congestion

https://e10v.me/matching-markets-congestion/
2•e10v_me•49m ago•1 comments

Show HN: Open-source digital business card generator

https://github.com/kevinwielander/digital-business-cards
2•challengerVIE•51m ago•0 comments

The Complexity of Simplicity [video]

https://www.youtube.com/watch?v=Cum5uN2634o
2•tosh•54m ago•0 comments

Explore Khorinis Gothic2 in the Browser

https://rapid-queen-bf94.gothicviewer.workers.dev/
1•xkcd1963•57m ago•1 comments

Haskell library for non-deterministic pattern matching

https://github.com/egison/sweet-egison
1•danny00•58m ago•0 comments

Microsoft .NET on Linux Patches Use IO_uring for Performance Benefits

https://www.phoronix.com/news/Microsoft-dotNET-IO-uring
1•DeathArrow•1h ago•0 comments

Help LaunchChair with the Rank In Public startup competition with an up-vote

https://rankinpublic.xyz/vote/jn7dkedm0qv6q9evmh2nwb7azh84r109
1•jacobcounsell•1h ago•0 comments
Open in hackernews

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

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