frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Neverclick: Desktop application for performing mouse actions with your keyboard

https://github.com/LazoVelko/neverclick
1•thunderbong•2m ago•0 comments

The logic behind Kirkland x Palantir

https://lexifina.com/blog/kirkland-palantir-partnership
1•alansaber•3m ago•0 comments

America Changed Me and Europe Was Wrong [video]

https://www.youtube.com/watch?v=fUd6QHUnLMk
1•keepamovin•4m ago•0 comments

I find AI roleplay therapeutic

https://chatbrat.ai/bratlog/ultimate-ai-roleplay-setup-guide-memory-lorebooks
1•henrypissler•12m ago•0 comments

Show HN: Levee – a self-tuning circuit breaker and concurrency limiter for Go

https://github.com/codemartial/levee
1•code_martial•13m ago•0 comments

RTX 5070 Ti throttles at 107C; Blackwell hotspot sensor readable via MODS tool

https://www.tomshardware.com/pc-components/gpus/hotspot-temperature-sensor-on-nvidias-blackwell-g...
2•sbulaev•13m ago•0 comments

Rep. Ro Khanna was detained by Israeli settlers in occupied West Bank

https://www.theguardian.com/world/2026/jul/11/ro-khanna-congressman-detained-israel-settlers-west...
4•0x54MUR41•15m ago•2 comments

Flock Camera Conspiracy, Prepare for Whats Coming [video]

https://www.youtube.com/watch?v=ZFim3j9s6ic
1•Bender•21m ago•0 comments

Frequently Asked Questions on Expertise

https://jtpeterson.substack.com/p/faq-on-expertise
2•jger15•23m ago•0 comments

What xAI's Grok Build CLI Actually Sends to xAI

https://gist.github.com/cereblab/dc9a40bc26120f4540e4e09b75ffb547
1•jhoho•25m ago•0 comments

Like a cheat code for your car: We investigate ECU tuning

https://arstechnica.com/cars/2026/07/like-a-cheat-code-for-your-car-we-investigate-ecu-tuning/
1•martincmartin•29m ago•0 comments

Apple Hide My Email bug, possibly related to disclosure vulnerability

https://lapcatsoftware.com/articles/2026/7/2.html
1•zdw•29m ago•0 comments

Firefox 12.58% for Desktop Browser Market Share in North America June 2026

https://gs.statcounter.com/browser-market-share/desktop/north-america
30•speckx•30m ago•9 comments

A Erlang style pure Scheme Webserver and further

https://igropyr.com
2•guenchi•32m ago•1 comments

Dismissive Dan's Review of the Overplane AI Coding Harness

https://www.overplane.dev/overview/dan/
3•mayank•33m ago•0 comments

Learning-to-Optimize via Deep Unfolded Flows

https://mit-realm.github.io/flowopt/
2•E-Reverance•35m ago•0 comments

Hitting $125k MRR as a solo founder by doubling down on the right segment

https://www.indiehackers.com/post/tech/hitting-125k-mrr-as-a-solo-founder-by-doubling-down-on-the...
1•jason_zig•35m ago•0 comments

A pure scheme web programming tool

https://goeteia.dev
2•guenchi•38m ago•1 comments

A dock that wakes up reliably

https://fabiensanglard.net/tb4/index.html
11•ingve•47m ago•7 comments

WLV-01, a monochrome digital photography camera built from scratch

https://camerahacksbymalcolmjay.com/
1•car•47m ago•0 comments

The biggest steam locomotive is whistle-stopping across the U.S.

https://www.npr.org/2026/07/11/nx-s1-5872656/big-boy-locomotive-steam
5•ghtbircshotbe•55m ago•0 comments

"How 500 HN users crashed my 2GB server in 60 seconds – postmortem

https://dev.to/peakd/i-built-a-community-ranking-platform-alone-tonight-it-nearly-crashed-under-5...
1•GroguMaster•56m ago•0 comments

Autopsy Study Finds Replicating SARS-CoV-2 in the Hearts of Long Covid

https://my.uscap.org/uscap/program/S0tc675/index.cfm?pgid=5167&sid=14770&abid=51228
2•thenerdhead•57m ago•0 comments

I made a horror game that's IMPOSSIBLE to SCREENSHOT [video]

https://www.youtube.com/watch?v=RNhiT-SmR1Q
1•goodmythical•58m ago•2 comments

Social.Wiki is a wiki for editing social web pages

https://social.wiki/
1•raybb•59m ago•0 comments

Long Covid May Physically Damage the Nerves That Control the Stomach

https://www.ijidonline.com/article/S1201-9712(26)00608-9/fulltext
11•thenerdhead•1h ago•0 comments

Search for isRecord on any open source codebase

https://old.reddit.com/r/PrincipalAi/comments/1utzh5w/added_the_ability_to_search_for_isrecord_in...
1•fernando-ram•1h ago•0 comments

Martha Lillard, last US polio patient using iron lung, dies at 78 in Oklahoma

https://abcnews.com/US/wireStory/martha-lillard-us-polio-patient-iron-lung-dies-134668491
6•daniel_iversen•1h ago•0 comments

We built a free CVE and threat-Intel command center – no login, no paywall

https://community.resilientx.com/
1•R3dxpl0it•1h ago•0 comments

What happens between entering the prompt and seeing the first word appear

https://shbhmrzd.github.io/ai/ml-foundations/llm-training/2026/07/11/using-the-trained-model.html
2•shbhmrzd•1h ago•1 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.