frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Women and Children First

https://en.wikipedia.org/wiki/Women_and_children_first
1•vinnyglennon•48s ago•0 comments

Context Is Everything (Conditions May Vary)

https://terratauri.com/blog/context-is-everything/
1•donutshop•58s ago•0 comments

Show HN: Axiom Refract – Full architectural record for any codebase

https://axiomrefract.com/
1•Cerebrum_Cadre•1m ago•0 comments

GPT-Realtime-1.5 Released

https://twitter.com/OpenAIDevs/status/2026014334787461508
2•hectormalot•2m ago•0 comments

State honors five Carson City schools for best practices

https://www.nevadaappeal.com/news/2026/feb/23/state-honors-five-carson-city-schools-for-best-prac...
1•qualudeheart•4m ago•0 comments

Show HN: AI Studio – Multi-Persona AI with WhatsApp and Memory

https://council.gameinghub.com/
1•prijak•5m ago•0 comments

Disappointing Phones

https://cadence.moe/blog/2026-02-08-disappointing-phones
1•birdculture•5m ago•0 comments

Some AI startups use a multitiered fundraising maneuver to inflate valuations

https://www.inc.com/ben-sherry/this-controversial-fundraising-hack-is-booming-but-it-might-not-be...
1•spenvo•5m ago•1 comments

RetroDECK removes Switch emulator over potential Nintendo legal concerns

https://www.xda-developers.com/retrodeck-removes-steam-deck-switch-emulator-amid-nintendo-legal-c...
1•nyc_oliviasmith•5m ago•0 comments

Show HN: Moltgram, a social network where only AI agents can post

https://moltgram-api-production.up.railway.app
1•dedpool•10m ago•0 comments

Show HN: Draw lines on any floor plan image to get real-world measurements

https://viraniaman94.github.io/floor-plan-measure/
1•aster0id•11m ago•0 comments

People Are Worried About Blue Owl Liquidity

https://www.bloomberg.com/opinion/newsletters/2026-02-23/people-are-worried-about-blue-owl-liquidity
2•zerosizedweasle•13m ago•0 comments

Show HN: TreeTrek

https://repo.autonoma.ca/repo/treetrek/blob/HEAD/README.md
1•thangalin•13m ago•0 comments

B+tree Visualizer

https://bptvisualizer.netlify.app/
1•remywang•13m ago•0 comments

Anthropic Study: AI Coding Assistance Reduces Developer Skill Mastery by 17%

https://www.infoq.com/news/2026/02/ai-coding-skill-formation/
3•msolujic•14m ago•0 comments

Tetriss and Chess = Tetress

https://tetress.com/
1•kulesh•15m ago•0 comments

Agent-friendly B2B taxation made simple

https://rel.tax/
1•kulesh•15m ago•0 comments

Where to work: compare cost of living and PPP worldwide

https://whereto.work/compare/toronto-canada/ottawa-canada
1•kulesh•16m ago•1 comments

Understanding the Go Runtime: The Memory Allocator

https://internals-for-interns.com/posts/go-memory-allocator/
2•valyala•17m ago•0 comments

Show HN: Inference Engineering

https://www.baseten.com/inference-engineering/
1•philipkiely•19m ago•0 comments

Show HN: Tested ChatGPT prompts for business (email, sales, social media)

https://klepetohata.gumroad.com/l/xiafjb
1•promptvaulthq•20m ago•0 comments

Language model mitigates chimera artifacts in nanopore direct RNA sequencing

https://www.nature.com/articles/s41467-026-68571-5
1•PaulHoule•20m ago•0 comments

Rearranging the order Swift compiles generated code makes it >2x faster

https://hachyderm.io/@jpsim/116116818715645792
2•kabiroberai•20m ago•0 comments

The Hard Drive Shortage Hurts Small Cloud Hosts Too

https://www.fourplex.net/2026/02/23/the-hard-drive-shortage-hurts-small-cloud-hosts-too/
3•bbsc•22m ago•0 comments

ThinkingScript: Self-Improving AI Executables

https://thinkingscript.com/
2•bradgessler•22m ago•1 comments

Show HN: Massu – Governance layer for AI coding assistants (MCP, 51 tools)

https://github.com/massu-ai/massu
1•ethankowen73•22m ago•1 comments

Making Wolfram Tech Available as a Foundation Tool for LLM Systems

https://writings.stephenwolfram.com/2026/02/making-wolfram-tech-available-as-a-foundation-tool-fo...
3•surprisetalk•23m ago•0 comments

Show HN: Musefy – Recreating video ads with AI

https://musefy.ai/
1•tuye0305•24m ago•0 comments

Show HN: WorldCanvas – R/place, but with a real world map as the canvas

https://worldcanvas.art
2•recuerdame•25m ago•1 comments

US ambassador to France banned from meeting French government

https://www.reuters.com/world/us-ambassador-france-banned-meeting-french-government-2026-02-23/
21•Betelbuddy•26m ago•2 comments
Open in hackernews

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

8•codelion•9mo 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•9mo 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•9mo 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.