frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: One prompt generates an app with its own database

https://www.manyminiapps.com/
1•stopachka•1m ago•0 comments

Show HN: CLI for Managing Mentat Agents

https://mentat.ai/blog/mentat-cli-not-tui
1•ja3k•2m ago•0 comments

Can a Data Race Happen on a Single-Core Machine?

https://aoli.al/blogs/data-race/
1•aoli-al•3m ago•0 comments

OneDev – Self-hosted Git server with CI/CD, Kanban, and packages

https://onedev.io/
1•jcbhmr•3m ago•0 comments

A Fairly Hostile Subtext

https://win-vector.com/2025/09/18/a-fairly-hostile-subtext/
1•jmount•3m ago•0 comments

FTC sues Ticketmaster, Live Nation, alleging 'illegal' ticket resale tactics

https://www.cnbc.com/2025/09/18/ftc-ticketmaster-live-nation-ticket-resales.html
2•koolba•3m ago•0 comments

Water Vapor Could Cool Your Next iPhone

https://spectrum.ieee.org/iphone-17-pro-vapor-chamber
1•Brajeshwar•3m ago•0 comments

A Deaf Quarterback Changed Sports Forever by Inventing the Huddle

https://www.smithsonianmag.com/innovation/deaf-quarterback-changed-sports-forever-inventing-huddl...
1•Brajeshwar•4m ago•0 comments

Gaia's Got a Fever

https://nautil.us/gaias-got-a-fever-1237888/
1•Brajeshwar•4m ago•0 comments

Outside In

https://www.youtube.com/watch?v=wO61D9x6lNY
1•JimmyBuckets•6m ago•0 comments

Faster Argmin on Floats

https://algorithmiker.github.io/faster-float-argmin/
1•return_to_monke•6m ago•0 comments

Show HN: Track Token Usage from Codex CLI with Splitrail (OSS, Rust)

https://github.com/Piebald-AI/splitrail
1•bl-ue•6m ago•0 comments

Java 25 LTS and IntelliJ Idea

https://blog.jetbrains.com/idea/2025/09/java-25-lts-and-intellij-idea/
1•sea-gold•7m ago•0 comments

Outsourcing critical IT and cybersecurity functions risks UK economic security

https://doublepulsar.com/the-elephant-in-the-biz-outsourcing-of-critical-it-and-cybersecurity-fun...
1•Mgtyalx•9m ago•0 comments

ABC Pulls Jimmy Kimmel Off Air After FCC Pressure

https://www.nytimes.com/2025/09/17/business/media/abc-jimmy-kimmel.html
4•sega_sai•9m ago•2 comments

Ask HN: best way to resolve Cloudflare problem?

1•logicallee•10m ago•0 comments

UniFi UNAS 2 Review

https://nascompares.com/2025/09/18/unifi-unas-2-review/
1•ksec•11m ago•0 comments

OneUptime – Complete open-source monitoring and observability platform

https://oneuptime.com/
1•ndhandala•11m ago•0 comments

You Should Be Rewriting Your Prompts

https://maxleiter.com/blog/rewrite-your-prompts
1•arrowsmith•13m ago•0 comments

The Art of the AI Prompt

https://www.art-of-the-ai-prompt.com/
1•logikblok•13m ago•0 comments

Avoid New York Law on Force Majeure

https://epic.law/avoid-new-york-law-on-force-majeure/
1•speckx•13m ago•0 comments

AI Engineering Resources

https://mmfm.bearblog.dev/ai-engineering/
2•younglin•13m ago•0 comments

Nano Banana AI Trend Explained: How to Generate Viral AI Images

https://www.revid.ai/blog/nano-banana-ai-trend-create-images
2•avinashvagh•15m ago•0 comments

Show HN: FastOpp: A Student-Friendly Starter for AI Web Apps

https://fastopp-site.fly.dev/
1•jcasman•16m ago•0 comments

Readers reply: Why are sports trophies so ugly?

https://www.theguardian.com/lifeandstyle/2025/sep/07/readers-reply-why-are-sports-trophies-so-ugly
1•PaulHoule•16m ago•0 comments

Live Pod Migration on Spot Instances

https://loopholelabs.io/blog/rethinking-spot-instances
1•loopholelabs•18m ago•0 comments

Smoke from Wildfires by Climate Change Will Fuel More Premature Deaths

https://insideclimatenews.org/news/18092025/wildfire-smoke-premature-deaths/
1•OutOfHere•18m ago•0 comments

21-Bit Encoder Technology: Precision Redefined

https://www.ark-dynamics.com/post/21-bit-encoder-technology-precision-redefined
1•Kinemaniacs•19m ago•1 comments

Clay Higgins Threatens Investigations Unless Charlie Kirk Critics Are Censored

https://clayhiggins.house.gov/2025/09/15/higgins-calls-upon-social-media-ceos-to-condemn-the-cele...
2•Improvement•19m ago•0 comments

One step closer to bringing back extinct dodo Dallas

https://www.axios.com/local/dallas/2025/09/18/one-step-closer-to-bringing-back-extinct-dodo
2•corvad•21m ago•1 comments
Open in hackernews

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

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