frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Ask HN: What is the difference between big criminal org. and a state?

1•kingleopold•51s ago•0 comments

Honey Gets Terminated as Lawsuits Proceed [video]

https://www.youtube.com/watch?v=EXDemfGNGz0
2•nomilk•7m ago•0 comments

Death March (Project Management)

https://en.wikipedia.org/wiki/Death_march_(project_management)
2•Austin_Conlon•16m ago•0 comments

Apache Fory JSON: JSON Serialization for Java, 10x faster than Jackson

https://fory.apache.org/blog/fory_json_fastest_java_json_framework/
1•theanonymousone•19m ago•0 comments

YouTube sets Made For Kids flag on inappropriate video,won't let owner change it

https://twitter.com/nihaho13/status/2087317049278075130
1•Nition•19m ago•1 comments

The poverty of anti-tech thought

https://www.noahpinion.blog/p/the-poverty-of-anti-tech-thought
1•Ariarule•20m ago•0 comments

Show HN: Lethe is a portable identity layer – user consented

https://lethe-ai.vercel.app
1•NamanaManohar•31m ago•0 comments

Mark Zuckerberg: The Future Is for Everyone

https://about.fb.com/news/2026/08/the-future-is-for-everyone/
3•nedruod•35m ago•1 comments

Meta can't stop states' $1.4T lawsuit from going to trial

https://arstechnica.com/tech-policy/2026/08/meta-cant-stop-states-1-4-trillion-lawsuit-from-going...
4•oenton•38m ago•2 comments

World Encyclopaedia of Puppetry Arts

https://wepa.unima.org/en/
2•nephihaha•39m ago•0 comments

Rootless Container Sandbox for Claude Code and Codex

https://www.reddit.com/r/ClaudeAI/comments/1vm2w0e/a_lightweight_rootless_container_sandbox_for/
1•syumei•42m ago•0 comments

CVE-2026-53361 AF_Unix GC vs. MSG_PEEK use-after-free container escape

https://github.com/sgkdev/bad_garbage
3•eyberg•43m ago•0 comments

DoorDash Flux: Delegating Engineering Work to Cloud Based Agents

https://careersatdoordash.com/blog/delegating-engineering-work-to-cloud-based-agents/
1•rayval•43m ago•0 comments

DARPA heavy lift challenge ends with winner at a 3.84:1 payload to weight ratio

https://dronexl.co/2026/08/10/darpa-lift-challenge-results-avidrone/
2•daau•47m ago•0 comments

LSPs for LLMs

https://ianbarber.blog/2026/08/11/lsps-for-llms/
1•matt_d•49m ago•0 comments

Hannah Arendt's American Education

https://www.newyorker.com/magazine/2026/08/17/hannah-arendt-life-of-the-mind-thomas-meyer-book-re...
2•mitchbob•50m ago•1 comments

Supreme Computation – Fail-closed governance for AI execution

https://github.com/KnowledgeeKZA3224/scqos-reference-implementation
1•Knowledgee_KZA•50m ago•0 comments

Trump's childhood vaccine order: what it does and what doctors say

https://www.reuters.com/legal/litigation/trumps-childhood-vaccine-order-what-it-does-what-doctors...
2•gverrilla•51m ago•0 comments

Ask HN: How do you handle uncertain GPU capacity needs months in advance?

1•plainviewinstru•55m ago•0 comments

Spy cameras on Royal Navy drones sent data to China

https://www.telegraph.co.uk/news/2026/08/09/spy-cameras-on-navy-drones-secretly-sent-data-to-china
3•delichon•56m ago•0 comments

Show HN: DisplayWave – open-source and simple tool for Mac display management

https://github.com/kah-ve/DisplayWave
1•warpbin•59m ago•0 comments

Show HN: Memftprt, a consistent, process-tree-wide memory footprint on Linux

https://github.com/menzew/memoryfootprint
1•benzewdu•1h ago•0 comments

Measuring the Wrong Thing: Internal Harmfulness Scores Anti-Rank Successful

https://arxiv.org/abs/2608.09624
1•sbulaev•1h ago•0 comments

I built a PII pdf parser for your agent

https://www.pdfagent.net/
2•mattmerrick•1h ago•1 comments

Male redback spider's dramatic death somersault during sex coded in its DNA

https://www.abc.net.au/news/science/2026-08-12/redback-spiders-backflip-katipo-sex/107022976
4•Gaishan•1h ago•0 comments

Move 37 Is the Moment AI Changes Everything. It's Suddenly Happening Everywhere

https://www.wsj.com/tech/ai/move-37-ai-demis-hassabis-google-deepmind-alphago-ec832a41
4•RyanShook•1h ago•0 comments

Dogs can tell when you're happy, sad or frustrated

https://www.washingtonpost.com/lifestyle/2026/08/11/dogs-can-tell-when-you-happy-scared-or-sad-ne...
5•wslh•1h ago•3 comments

Crew, a multiplayer workspace for humans and AI agents to work together

https://github.com/JamelHammoud/crew
2•alihammoud21•1h ago•0 comments

The 7T AI Gamble Is Failing. Big Tech Is Trapped

https://www.youtube.com/watch?v=OunJtLnyPT4
5•cable2600•1h ago•0 comments

The StubHub Customers Who Battled for Tickets–and Battle Harder for a Refund

https://www.wsj.com/business/stubhub-tickets-resell-refund-de5ef8c3
2•fortran77•1h ago•1 comments
Open in hackernews

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

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