frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Two inmates at an Ohio prison built a secret hacking operation from behind bars

https://twitter.com/i/status/2044568738767294652
1•lando2319•1m ago•1 comments

There's yet another study about how bad AI is for our brains

https://www.engadget.com/ai/theres-yet-another-study-about-how-bad-ai-is-for-our-brains-183418494...
1•speckx•1m ago•0 comments

The World in 1975 (2007)

https://www.ranprieur.com/misc/1975.html
1•downbad_•2m ago•1 comments

The Case for Doing Real, Hard Things

https://thegrowtheq.com/the-case-for-doing-real-hard-things/
1•mooreds•2m ago•0 comments

Claude Opus 4.7

https://www.anthropic.com/claude/opus
6•AlphaWeaver•2m ago•0 comments

Is Ireland the worst run country in Europe?

https://www.irishtimes.com/opinion/2026/04/11/david-mcwilliams-ireland-has-too-much-money-and-is-...
1•religio•3m ago•0 comments

Show HN: NoPII – One line of code to protect PII before it hits your LLM

https://www.nopii.co
2•mroling•4m ago•0 comments

Largest study of pregnancy sickness uncovers six new genetic links

https://medicalxpress.com/news/2026-04-largest-pregnancy-sickness-uncovers-genetic.html
1•gmays•4m ago•0 comments

Rusting Rivers: Alarm Grows over Uptick in Acidic Arctic Waters

https://e360.yale.edu/features/rusting-rivers
1•speckx•6m ago•0 comments

What Should Smart People Think About UFOs?

https://www.thefp.com/p/what-should-smart-people-think-about
1•bookofjoe•7m ago•0 comments

Claude Opus 4.7

https://www.anthropic.com/news/claude-opus-4-7
22•meetpateltech•8m ago•0 comments

A faster, cheaper Claude Code alternative with automatic provider failover

https://www.surly.dev/articles/how-to-get-95-pct-claude-code-quality-at-half-the-cost-with-hermes...
1•thesurlydev•8m ago•0 comments

Channel Hosting on Prefix.dev

https://prefix.dev/blog/welcome-channel-hosting-on-prefix-dev
1•stinos•8m ago•0 comments

When El Salvador's Prisoners Go Free, She's There to Pick Them Up

https://www.nytimes.com/2026/04/15/world/americas/sugey-amaya-el-salvador-prisoners.html
1•g2183889•8m ago•0 comments

Show HN: I've Added Gdbstub to UVM32

https://github.com/ringtailsoftware/uvm32/tree/main/hosts/host-gdbstub
1•hamid_rostami•10m ago•0 comments

Sperm Whales Speak with a Complex Alphabet and Even Have 'Vowels,' Study Finds

https://gizmodo.com/sperm-whales-speak-with-their-own-unique-alphabet-scientists-found-they-even-...
2•Brajeshwar•13m ago•0 comments

Dependencies Are Someone Else's Attack Surface

https://quodeq.ai/blog/supply-chain-attack-surface/
1•nicksergeant•13m ago•0 comments

Show HN: Sentinel – LLM browser automation using 10x fewer tokens

https://www.isoldex.ai/
1•isoldex•14m ago•0 comments

The Common AI Provider: LLM and AI Agent Support for Apache Airflow

https://airflow.apache.org/blog/common-ai-provider/
1•jonbaer•14m ago•0 comments

Apple's 'AI coding bootcamp' could help its engineers fix Siri

https://appleinsider.com/articles/26/04/15/apples-ai-coding-bootcamp-could-help-its-engineers-mak...
1•speckx•15m ago•1 comments

A system that maps relationships across mixed data sources

https://github.com/Lumen-Labs/brainapi2
1•Chrisszz•17m ago•0 comments

You Own Your Role, We Own the Outcome

https://pointc.co/you-own-your-role-we-own-the-outcome/
1•benwerd•17m ago•0 comments

Qwen3.6-35B-A3B:Now Open-Source

https://twitter.com/Alibaba_Qwen/status/2044768734234243427
2•alexellisuk•18m ago•1 comments

Using 100ms Rooms with HLS

https://andrewarrow.substack.com/p/using-100ms-rooms-with-hls
1•fcpguru•18m ago•0 comments

What hackers talk about when they talk about AI

https://arxiv.org/abs/2602.14783
1•foruhar•18m ago•0 comments

What happens when code becomes abundant

https://zendesk.engineering/what-happens-when-code-becomes-abundant-cc3239c4561b
1•satyrnein•20m ago•0 comments

Show HN: EDDI – Multi-agent AI engine where agent logic lives in JSON, not code

https://github.com/labsai/EDDI
1•ginccc•20m ago•0 comments

A time travel debugger for WebAssembly

https://github.com/friendlymatthew/gabagool/tree/main/gabagool-debug-adapter
1•friendlymatthew•21m ago•0 comments

Show HN: FortyOne OSS – an SMS-first multi-tenant AI assistant platform

https://github.com/glitchnsec/fortyone-oss/
1•glitchnsec•21m ago•1 comments

Rsloop – an event loop for asyncio written in Rust

https://github.com/RustedBytes/rsloop
1•whalesalad•22m 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•10mo ago
Checked my openrouter stats, it took ~3M tokens but that involved quite a few runs of various experiments.