frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

1•NoodlesOfWrath•15s ago

Over 36,000 exposed Plex servers vulnerable to recent flaws

https://www.bleepingcomputer.com/news/security/over-36-000-plex-servers-unpatched-against-recentl...
1•DemiGuru•28s ago•0 comments

Dive into FrontierHarness Eval: Claude Code cost 5.6× for the same pass rate

https://runta.com/blog/introducing-frontierharness-eval/
2•ADD-SP•52s ago•0 comments

Amazon is now using generative AI to dub Prime Video with matching lip movements

https://www.neowin.net/news/amazon-prime-video-is-getting-ai-powered-dubbing-that-syncs-actors-lips/
1•bundie•1m ago•0 comments

I Am an Anthropic Guy. GPT-6 Astra Made Me Resubscribe to Codex

https://thoughts.jock.pl/p/gpt-6-astra-vs-claude-fable-5-1-agent-notes-2026
2•joozio•3m ago•0 comments

Understanding the Recent DDoS Attack Against Read the Docs

https://about.readthedocs.com/blog/2026/09/2026-ddos-attack/
2•davidfischer•4m ago•0 comments

AI could kill all humans in next decade, warn experts

https://www.theguardian.com/technology/2026/sep/09/ai-superintelligence-risks-warnings-scientists...
2•lf88•7m ago•0 comments

GNU Radio in the Browser

https://gnuradioworld.com/
2•kristianpaul•7m ago•0 comments

How long has it been since you last wrote code

https://meelangofficial.substack.com/p/how-long-has-it-been-since-you-last
3•BrucecarlL•7m ago•1 comments

Simple Answers (Xkcd)

https://xkcd.com/1289/
2•piinbinary•8m ago•0 comments

A Guide to Link Building for SaaS Companies

https://seenearme.com/blog/a-guide-to-link-building-for-saas-companies
2•Rollmodl•8m ago•0 comments

Couples with children with ADHD at risk of higher divorce rates

https://www.buffalo.edu/news/releases/2008/10/9713.html
2•andrewstetsenko•8m ago•1 comments

Adaptive Agentic Worms Are Here

https://www.lesswrong.com/posts/fpLDjKg3ej49beqTC/adaptive-agentic-worms-are-here
2•speckx•8m ago•0 comments

Cerun 0.3.0

https://cerun-lang.org/blog/release-0.3.0
2•zxdevcore•9m ago•0 comments

Show HN: Bounty Index ,compare public bug bounty programs across 6 platforms

https://www.bountyindex.in
2•axolotl619•10m ago•0 comments

Show HN: Intro-level book about quantum computing theory/hardware/applications

https://quantumcomputingfortheconfused.com/
2•msolomentsev•11m ago•0 comments

Middle aged are 'squeezed from every angle', some cannot even picture retirement

https://www.thisismoney.co.uk/money/pensions/article-16113791/Middle-aged-squeezed-retirement.html
3•robtherobber•11m ago•0 comments

Compiler-optimized Unicode in Codon 0.20

https://www.exaloop.io/blog/codon-unicode
2•arshajii•12m ago•0 comments

IFA 2026: Circular Ring 3, Moto Watch Ultra, iKairos and two more wearables

https://forgeeks.net/ifa-2026-wearables-circular-moto-ikairos/
2•kuuuzya•12m ago•0 comments

No Man's Sky Cosmos

https://www.nomanssky.com/cosmos-update/
7•Limb•12m ago•2 comments

Custom Scrollbar Component in 2026

https://blog.master.dev/custom-scrollbar-component-in-2026/
2•ibobev•14m ago•0 comments

Robotics with Conan: consuming ROS as a regular package

https://blog.conan.io/cpp/conan/ros/ros2/robotics/2026/09/08/Robotics-with-Conan-consuming-ROS.html
2•ibobev•14m ago•0 comments

Better AI code comment detector

https://entropicthoughts.com/better-ai-comment-classifier
4•ibobev•14m ago•0 comments

AI made me doubt everything about programming by Felienne Hermans [video]

https://www.youtube.com/watch?v=0-6-f94n_9M
2•wazoox•16m ago•1 comments

Planet Labs' Open Satellite Feed

https://tech.marksblogg.com/planet-labs-open-satellite-feed.html
6•marklit•16m ago•0 comments

Can Rivian Self Driving Edge Past Tesla and Waymo?

https://spectrum.ieee.org/rivian-self-driving
2•rbanffy•16m ago•0 comments

War Is a Racket

https://en.wikipedia.org/wiki/War_Is_a_Racket
6•simonebrunozzi•17m ago•2 comments

Rails 8 Guide: Features, Requirements and Upgrade Path (2026)

https://blog.appsignal.com/2024/10/07/whats-new-in-ruby-on-rails-8.html
3•andreigaspar•17m ago•0 comments

Show HN: SockLight – A SOCKS5 dev proxy with a live terminal dashboard

https://github.com/kosmrljt/socklight
2•tomazko•18m ago•0 comments

IBM releases SOTA Granite Time Series model with commercial-friendly license

https://huggingface.co/blog/ibm-research/ibm-releases-sota-granite-time-series
2•vertigoruntime•18m 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.