frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

I built an offline Text-to-Speech app for iPhone using Kokoro-82M

https://apps.apple.com/us/app/ghost-reader-ai/id6759826819
1•jantheman•1m ago•1 comments

Ask HN: Do you use your smartphones for local LLMs?

1•lavren1974•1m ago•0 comments

China's Road from Revolution to Reform

https://branko2f7.substack.com/p/there-is-a-great-disorder-under-the
1•rmdmphilosopher•6m ago•0 comments

Show HN: Stuffer, browser based QR/NFC inventory management with peer.js sync

https://github.com/EternityForest/Stuffer
1•eternityforest•6m ago•0 comments

Tuish – TUI toolkit in pure portable shell script (bash/zsh/busybox/ksh/mksh)

https://github.com/alganet/tuish
1•gaigalas•7m ago•1 comments

Ironies of Automation

https://en.wikipedia.org/wiki/Ironies_of_Automation
1•py4•9m ago•0 comments

MCPs, CLIs, and skills: when to use what?

https://jngiam.bearblog.dev/mcps-clis-and-skills-when-to-use-what/
1•ankit84•9m ago•0 comments

Ukraine's $1k interceptor drones The Pentagon wants to buy

https://www.militarytimes.com/news/pentagon-congress/2026/03/11/these-are-ukraines-1000-intercept...
1•mizzao•15m ago•0 comments

Show HN: Global Maritime Chokepoints

https://ryanshook.org/chokepoints/
1•RyanShook•18m ago•0 comments

VeryAI raises $10M to build palm-scan identity system on Solana

https://cointelegraph.com/news/polychain-backs-veryai-s-10m-raise-to-build-palm-scan-identity-sys...
1•adrianwaj•21m ago•0 comments

Vite 8.0 Is Out

https://vite.dev/blog/announcing-vite8
8•kothariji•24m ago•1 comments

Some Simple Economics of AGI

https://arxiv.org/abs/2602.20946
1•aray07•27m ago•0 comments

ScraperNode – Scraping API for LinkedIn, Instagram, TikTok, and More

https://scrapernode.com
1•emery_p•27m ago•0 comments

Hugging Face Storage Buckets Storage Bucket

https://huggingface.co/storage
1•tamnd•27m ago•0 comments

2011-2026 time lapse: rebuilding after Tōhoku earthquake and tsunami [video]

https://www.youtube.com/watch?v=ZE-JgL_UUkI
1•kazinator•29m ago•1 comments

Ask HN: Does anyone here use Discord as their work chat tool?

2•Poomba•36m ago•4 comments

AI-generated passwords aren't random, it just looks that way

https://www.theregister.com/2026/02/18/generating_passwords_with_llms/
1•pabs3•37m ago•1 comments

Show HN: ClawRemove – Inspect and clean AI agent environments

https://github.com/tianrking/ClawRemove
1•tianrking•37m ago•1 comments

A Multilingual, IRGC-affiliated Influence Operation on X, Instagram, and Bluesky

https://open.clemson.edu/cgi/viewcontent.cgi?article=1009&context=mfh_reports
1•longislandguido•38m ago•0 comments

Who Will Remember Us When the Servers Go Dark?

https://newdesigncongress.org/en/pub/who-will-remember-us-when-the-servers-go-dark/
2•pabs3•42m ago•0 comments

Native CLI scaffolds consistently outper-form OpenCode when using the same model

https://arxiv.org/abs/2603.08640
1•xdotli•43m ago•1 comments

Show HN: Droeftoeter, a Terminal Coding Toy

https://github.com/whtspc/droeftoeter
1•whtspc64•44m ago•0 comments

Show HN: Freelancer Profitability Calculator

https://soloboss.app/freelancer-profitability-calculator
1•SoloBossFounder•46m ago•0 comments

Faulty urine tests may have inflated alcohol levels in California criminal cases

https://www.sfchronicle.com/bayarea/article/urine-tests-alcohol-level-faulty-california-22073795.php
3•littlexsparkee•50m ago•0 comments

Important Updates to GitHub Copilot for Students

https://github.com/orgs/community/discussions/189268
1•angst•51m ago•1 comments

From Optician to $62k MRR in 3 Months: AI Code Editors Reshaping SaaS

2•jackcofounder•56m ago•0 comments

CLI-Anything

https://github.com/HKUDS/CLI-Anything
4•tardismechanic•1h ago•0 comments

We compare model quality in Cursor

https://cursor.com/blog/cursorbench
2•xdotli•1h ago•0 comments

An Overview of the Amoeba Distributed Operating System – Tanenbaum

https://dl.acm.org/doi/pdf/10.1145/1041500.1041502
1•ivanbelenky•1h ago•0 comments

T4a – Terminals for Agents

https://github.com/denoland/t4a
1•garrettjoecox•1h ago•0 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.