frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Five studies changing how I think about AI in software engineering

https://newsletter.getdx.com/p/five-studies-that-are-changing-how
1•perpetua•2m ago•0 comments

Starlink V3 Satalites

https://starlink.com/updates/starlink-version-3-satellites
1•jtraglia•2m ago•0 comments

Trump teleprompter aide made $100k betting on what Trump would say, reports say

https://arstechnica.com/culture/2026/07/trump-teleprompter-aide-made-100000-betting-on-what-trump...
2•rbanffy•6m ago•0 comments

The Tail End (2015)

https://waitbutwhy.com/2015/12/the-tail-end.html
1•tosh•8m ago•0 comments

We rebuilt our data warehouse on DuckDB over ClickHouse

https://posthog.com/blog/why-we-rebuilt-our-data-warehouse
1•tosh•12m ago•0 comments

Gemini 3.5 Pro delays due to coding performance, upgraded Flash model in testing

https://9to5google.com/2026/07/16/gemini-3-5-pro-delays/
1•couAUIA•17m ago•0 comments

Lucy edits videos in realtime, now with more capabilities and greater control

https://lucy.decart.ai/
1•eddieoz•20m ago•0 comments

'Food Is Medicine'

https://reasonstobecheerful.world/food-is-medicine-study/
2•fodmap•20m ago•0 comments

Ask HN: How long should I wait before being able to post?

2•ThierryRkt•22m ago•0 comments

Coding in space, AI-XR, and new interaction paradigms for devs

https://blog.jetbrains.com/research/2026/07/ai-and-xr-future/
1•katie_fraser•22m ago•0 comments

xAI can't deny Grok makes CSAM anymore. So it's suing users

https://arstechnica.com/tech-policy/2026/07/xai-cant-deny-grok-makes-csam-anymore-so-its-suing-us...
2•isaacfrond•24m ago•1 comments

Electric-steam locomotive

https://en.wikipedia.org/wiki/Electric%E2%80%93steam_locomotive
1•networked•26m ago•0 comments

Astronomers discover first atmosphere around a rocky Earth-like planet

https://www.space.com/astronomy/exoplanets/astronomers-discover-1st-atmosphere-around-a-rocky-ear...
1•isaacfrond•27m ago•0 comments

A structurally chunked, pre-embedded SQLite corpus of the EU AI Act

https://huggingface.co/datasets/faitholopade/aiact-openrag
1•olopadef•30m ago•0 comments

One link-click Google account takeover

https://weirdmachine64.github.io/research/google-oauth-device-code-hijacking.html
1•zx8080•31m ago•0 comments

Trump made $1.4B from crypto in one year. Is Justin Sun the man who helped him?

https://www.theguardian.com/technology/ng-interactive/2026/jul/16/justin-sun-trump-family-crypto
1•beardyw•38m ago•0 comments

The most expensive instruction might be cmov

https://questdb.com/blog/cmov-vs-branch-perf/
1•theanonymousone•39m ago•0 comments

The Word "Emoji" Is Older Than You May Think

https://blog.emojipedia.org/the-word-emoji-is-older-than-you-may-think/
2•msephton•40m ago•0 comments

Show HN: cc-context-telemetry - context and rate-limit % in Claude Code's bar

https://github.com/alagiz/cc-context-telemetry
1•alagiz•42m ago•0 comments

Trump Media to sell instant access to 'market-moving' social posts

https://www.bbc.com/news/articles/c79gw4lj89eo
8•NikxDa•42m ago•0 comments

A visual data-app builder that generates SvelteKit source

https://svgrid.com/studio
1•boikom•50m ago•0 comments

America's Open-Model Paradox

https://twitter.com/DeanMeyerrr/status/2077834267086729674
1•aivantg•1h ago•0 comments

Show HN: We Want to Improve the Linux Experience on T2 Macs with KaiT2en Fedora

https://github.com/kaiT2en/KaiT2en-Fedora/
3•4l3x4f1sh3r•1h ago•3 comments

Grep by example: Interactive guide

https://antonz.org/grep-by-example/
4•saikatsg•1h ago•0 comments

Pushinka

https://en.wikipedia.org/wiki/Pushinka
5•benbreen•1h ago•0 comments

Gist of Go: Concurrency

https://antonz.org/go-concurrency/
1•saikatsg•1h ago•0 comments

We're Going to Make Out Like Bandits

https://www.rocketpoweredjetpants.com/2026/04/were-going-to-make-out-like-bandits/
1•birdculture•1h ago•0 comments

Passwork Shares Data with State-Certified Russian Firm

https://www.occrp.org/en/investigation/european-password-manager-shares-origins-and-updates-with-...
3•u1hcw9nx•1h ago•0 comments

Isvisible.ai, check if AI crawlers can access your site

https://isvisible.ai
1•alpkorpe•1h ago•0 comments

Show HN: Flick – Swipe Your Email

https://flicked.email/
2•Belkins•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.