frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

10k+ Funny Quotes

https://gagzap.com
1•hackerbeat•1m ago•1 comments

Show HN: OpenTT – a self-hosted tool for managing table tennis leagues

https://github.com/tradicije/ttopen
1•tradicije•2m ago•0 comments

Rust Fuzz Book

https://rust-fuzz.github.io/book/
1•vinhnx•3m ago•0 comments

Anthropic's Killer-Robot Dispute with The Pentagon

https://www.theatlantic.com/technology/2026/03/inside-anthropics-killer-robot-dispute-with-the-pe...
2•spenvo•4m ago•0 comments

LLMs not = Security Products

http://hooked-on-mnemonics.blogspot.com/2026/02/llms-security-products.html
1•__alexander•4m ago•0 comments

Iran's Missile Barrage Tests Whether US Has Enough Interceptors

https://www.bloomberg.com/news/articles/2026-02-28/iranian-missile-attacks-set-to-strain-us-inter...
2•ParentiSoundSys•6m ago•0 comments

An Interview from 2036 with Elon Musk, Jeff Bezos and Sam Altman

https://www.aicandy.be/giorgio-1
2•wodniok•10m ago•0 comments

Ruby -run, utilities to replace common Unix commands

https://github.com/ruby/un
2•Alifatisk•14m ago•0 comments

Project Zero Trust: A story about a strategy for aligning security and business

https://cybercanon.org/project-zero-trust-a-story-about-a-strategy-for-aligning-security-and-the-...
3•teleforce•16m ago•0 comments

The Hard Truth About AI Agents: What We Learned Building in Open Source

https://alexchao.substack.com/p/the-hard-truth-about-ai-agents-what
1•alexchaomander•17m ago•1 comments

AI utility is perceived uniquely by programmers, scientists, and writers

1•kokhanserhii•18m ago•0 comments

Chief Mouser to the Cabinet Office

https://en.wikipedia.org/wiki/Chief_Mouser_to_the_Cabinet_Office
1•alabhyajindal•19m ago•0 comments

Show HN: Interpreted Art – Explore Symbolism in the Arnolfini Portrait

https://interpreted.art/art/MlLrLHxRKZHdQsGkv3RT
1•sailorganymede•19m ago•0 comments

Did a Restorer Paint Italian Prime Minister Giorgia Meloni into a Church Fresco?

https://news.artnet.com/art-world/church-fresco-giorgia-meloni-2742134
1•gnabgib•22m ago•0 comments

Show HN: I stopped wireframing pages – I design SaaS products as visual sitemaps

3•epic_ai•22m ago•5 comments

How I generate podcast-style audio overviews [video]

https://www.youtube.com/watch?v=mLiXIQjQ5CU
1•digitalhobbit•23m ago•1 comments

Show HN: Hmem v2 – Persistent hierarchical memory for AI agents (MCP)

https://github.com/Bumblebiber/hmem
1•Bumblebiber•24m ago•0 comments

AI contributed "zero" to U.S. economic growth, Goldman Sachs has calculated

https://www.washingtonpost.com/technology/2026/02/23/ai-economic-growth-gdp-mirage/
2•coliveira•29m ago•0 comments

Show HN: Glass box governance for multi-agent AI coding workflows

https://github.com/Vinix24/vnx-orchestration
1•vincentvandeth•30m ago•1 comments

Show HN: Plagiarismremover.ai – A Free AI Plagiarism Remover

https://plagiarismremover.ai/
2•PlagiarismRem•34m ago•0 comments

What I learned building a Multi-Agent System

https://davide.im/posts/multi-agent-system/
2•vector3•34m ago•0 comments

Show HN: Lensboy – Lightweight camera calibration with spline distortion models

https://github.com/Robertleoj/lensboy
1•robertleoj•37m ago•0 comments

Goodbye P < 0.05. P-value is simply one among many to gauge scientific evidence

https://www.sciencedirect.com/science/article/abs/pii/S1878788626000159
1•XzetaU8•38m ago•0 comments

Show HN: Nano Banana 2 Playground – text-to-image and image-to-image demo

https://nanobanana-2.xyz
1•iamouyang•39m ago•0 comments

Show HN: I built a headless bot to automate SaaS directory launches (and AI SEO)

https://signalscan.eu
1•Ben_Tycho•40m ago•0 comments

WatchGuardian: Enabling User-Defined Just-in-Time Intervention on Smartwatch

https://dl.acm.org/doi/10.1145/3788689
1•brandonb•47m ago•0 comments

California Becomes Latest State to Weigh Balcony Solar Legislation

https://www.bloomberg.com/news/newsletters/2026-01-30/california-becomes-latest-state-to-weigh-ba...
1•bilsbie•48m ago•0 comments

Show HN: Audio Toolkit for Agents

https://github.com/shiehn/sas-audio-processor
3•stevehiehn•48m ago•1 comments

Archiving my tweets in my own blog

https://solmaz.io/x/2027708131254387017/
2•hosolmaz•48m ago•0 comments

Show HN: Chromectl – CLI to give an AI agent its own Chrome session

https://github.com/BartlomiejLewandowski/chromectl
1•bartek_gdn•50m 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.