frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Starlink ends free dish perks ahead of new Standard and Mini kits launch

https://www.notebookcheck.net/Starlink-ends-free-dish-perks-ahead-of-new-Standard-and-Mini-kits-l...
1•ashitlerferad•2m ago•0 comments

Revisiting the Inmos Transputer – Also in the News

https://www.rs-online.com/designspark/revisiting-the-inmos-transputer
1•rbanffy•2m ago•0 comments

Europe Wants Digital Sovereignty. 2,165 Polish Organisations Show the Gap

https://ciphercue.com/blog/polish-cdn-email-traffic-american-companies-2026
2•adulion•5m ago•0 comments

Inmos and the Transputer – Part 1: Parallel Ventures

https://thechipletter.substack.com/p/inmos-and-the-transputer-part-1-parallel
1•rbanffy•7m ago•0 comments

Cyber-Censorship: Web Censorship Cases Rebound in 2025

https://www.statista.com/chart/35957/number-of-online-censorship-cases-worldwide-social-media-blo...
1•bilekas•8m ago•0 comments

Telescope Ranchers

https://kottke.org/26/06/telescope-ranchers
1•bookofjoe•8m ago•0 comments

The Productive Sovereign

https://greggbarbers.substack.com/p/the-productive-sovereign
1•taivare•9m ago•1 comments

x86 Hypervisors and Emulators: Architecture, Features, and Performance

https://deepresearch.ninja/2026/06/x86-Hypervisors-and-Emulators-Architecture-Features-and-Perfor...
1•scrapemaster•10m ago•0 comments

Show HN: Mittr – Webhook delivery on one Postgres (inbound and outbound)

https://mittr.io/
1•stevewanjohi•10m ago•0 comments

Reeks, Wrecks and Robots

https://www.washingtonpost.com/archive/politics/1982/07/21/reeks-wrecks-and-robots/c3b63ac8-a823-...
1•lebek•12m ago•0 comments

Agentic AI PRs sit in the review queue 5.3x longer than unassisted ones

https://blog.codacy.com/ai-breaking-code-review-how-engineering-teams-survive-pr-bottleneck
1•claudiacsf•12m ago•1 comments

The Unofficial and Home Assistant MCP Server

https://github.com/homeassistant-ai/ha-mcp
1•mooreds•13m ago•0 comments

Show HN: Mcpwn – treating MCP servers as the attack surface they are

https://github.com/D0rs4n/mcpwn
2•thedorsan•15m ago•0 comments

Rh Disease and its Cure (2023)

https://www.thebloodproject.com/hostile-blood-the-forgotten-history-of-rh-disease-and-its-miracul...
1•mooreds•16m ago•0 comments

Have You Noticed JalapeñOS Seem Milder These Days? (2025)

https://www.foodandwine.com/why-jalapenos-have-become-less-spicy-11740201
1•mooreds•17m ago•0 comments

Alibaba unveils AI models for robots, amid shift from chatbots to agents

https://www.reuters.com/world/asia-pacific/alibaba-unveils-ai-models-robots-amid-shift-chatbots-a...
2•giuliomagnifico•20m ago•0 comments

Show HN: Brainfuck but with Turtle Graphics

https://czterycztery.pl/programy/turtlefreeze/
2•fourgreen•20m ago•0 comments

Show HN: A prompt generator to help AI agents implement my new email API

https://emailsdone.dev/#prompt-generator
1•mikeapple•22m ago•0 comments

A Claude Code plugin that makes coding agents measurably cheaper over time

https://github.com/vukkt/token-warden
1•vukkt•23m ago•0 comments

Show HN: Build a timeline of your experiences and generate tailored job pitches

https://www.pitchlikethis.com
1•pranavm27•24m ago•0 comments

Attention Backpropagation: Step by step derivation

https://liyuan24.github.io/writings/attention_backprop.html
1•deadf00d•26m ago•0 comments

Ratchet: An AI Delivery Loop That Can Only Move Forward

https://praveenvijayan.substack.com/p/ratchet-an-ai-delivery-loop-that
1•praveenvijayan•26m ago•0 comments

Skills Are Where Your Judgment Goes

https://geoffstearns.com/blog/skills-are-where-your-judgment-goes/
1•tensafefrogs•27m ago•0 comments

IPO boom mints thousands of new millionaires and Silicon Valley angst

https://www.washingtonpost.com/technology/2026/06/13/ipo-boom-mints-thousands-new-millionaires-si...
2•bookofjoe•30m ago•1 comments

Building a Deep Research Agent That Survives

https://steel.dev/blog/durable-researcher
1•nkko•30m ago•0 comments

Haskell for Elm developers: giving names to stuff (Part 8 – IO)

https://flaviocorpa.com/haskell-for-elm-developers-giving-names-to-stuff-part-8-io.html
1•cekrem•33m ago•0 comments

Show HN: Rediscover the Small Web with an AI-Ranked RSS Reader

https://bubblewire.net/
3•pchm•34m ago•0 comments

Fox Buys Roku, the Problem with Fox's Smart Strategy, Streaming That Works

https://stratechery.com/2026/fox-buys-roku-the-problem-with-foxs-smart-strategy-streaming-that-wo...
1•swolpers•35m ago•0 comments

AI Instruction Use 78.7% of repos configure 1 tool but devs use avg 2-4

https://tomevault.io/standards/state-reports/2026
2•olijboyd•35m ago•0 comments

I'm building a local-first TypeScript guard for runaway AI-agent costs

https://github.com/salimassili62-afk/ai-costguard
1•salim2006•37m ago•0 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.