frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

1•kristohb•34s ago

Apple iPhone 20: Everything We Know About the Redesign Coming in 2027

https://www.cnet.com/tech/mobile/apple-iphone-20th-anniversary-edition-rumors-2027/
1•taubek•1m ago•0 comments

Rekor – immutable tamper resistant metadata ledger

https://github.com/sigstore/rekor
1•gregsadetsky•2m ago•0 comments

Application Gatekeeping: An Ever-Expanding Pathway to Internet Censorship

https://www.eff.org/deeplinks/2025/11/application-gatekeeping-ever-expanding-pathway-internet-cen...
1•thunderbong•3m ago•0 comments

WordPalette – Generate a brand palette and visual identity from a word or image

https://wordpalette.github.io/
1•javatuts•3m ago•0 comments

Quantum computing startup says it will leapfrog everybody

https://arstechnica.com/science/2026/06/quera-promises-thousands-of-error-corrected-qubits-by-2029/
1•samizdis•5m ago•0 comments

This will save you hours on your CCNA/CCNP

https://old.reddit.com/r/ccnastudygroup/comments/1uh7eop/this_will_save_you_hours_learning_for_yo...
6•salad_vr•7m ago•3 comments

The Apple Disk II Controller Card

https://www.bigmessowires.com/2021/11/12/the-amazing-disk-ii-controller-card/
1•stmw•7m ago•0 comments

I have made a simple CLI and would like feedback

https://github.com/Tophatguard/KRSH
1•Tophatguard•7m ago•0 comments

Claude in Microsoft Foundry is now generally available

https://claude.com/blog/claude-in-microsoft-foundry
1•Xtrah•7m ago•0 comments

No Code Exec? No Problem Living the Age of VBS, HVCI, and Kernel CFG (2022)

https://connormcgarr.github.io/hvci/
1•Retr0id•8m ago•0 comments

Light Switch "Wakes Up" Sleeping Cancer Cells

https://www.optica-opn.org/home/newsroom/2026/june/light_switch_wakes_up_sleeping_cancer_cells/
1•visha1v•8m ago•0 comments

KitForge–generate an AI agent manifest; scaffold with enforced approval gates

https://www.agent-kits.com/kitforge
1•stoicstoic•10m ago•0 comments

A Solution to A.I.'S Growing Power Demand: Homes

https://www.nytimes.com/2026/06/24/business/energy-environment/ai-data-centers-tesla.html
1•visha1v•11m ago•1 comments

Gene Sequence: e2e CRISPR gRNA design pipeline – sequence to 3D model in ~5s

https://crisprr.bio/
1•pranay_joshi•12m ago•0 comments

Candle marked from 1 to 30 EUR, priced at 30 EUR

https://driesdepoorter.be/product/burningmoney/
2•driesdep•13m ago•0 comments

Guide to Using Large Language Models and Generative AI in Economic History

https://www.nber.org/papers/w35374
1•paulpauper•14m ago•0 comments

Scott Wheeler on Stephen Sondheim

https://www.thefp.com/p/great-americans-stephen-sondheim
1•paulpauper•14m ago•0 comments

Prism: An Impure Functional Language with Typed Effects

https://www.stephendiehl.com/posts/prism/
1•birdculture•14m ago•0 comments

The Humbling of the Once Almighty Dollar

https://paulkrugman.substack.com/p/the-humbling-of-the-once-almighty
1•paulpauper•15m ago•0 comments

Supreme Court rules geofence warrants are protected by privacy rights

https://techcrunch.com/2026/06/29/in-major-privacy-win-supreme-court-rules-geofence-warrants-are-...
2•igortru•16m ago•0 comments

Architectural Patterns: Moving Beyond Cloud-Native to Local-First

https://www.infoq.com/podcasts/natural-evolution-cloud-native/
1•msolujic•17m ago•0 comments

Family of magnetic field-boosted superconductors in rhombohedral graphene

https://www.nature.com/articles/s41586-026-10815-x
4•igortru•17m ago•0 comments

Clean build time is the wrong CI metric

https://krabarena.com/battles/gradle-vs-maven-vs-bazel-for-incremental-ci-builds
2•PashaGo•18m ago•0 comments

Show HN: Privacy Friendly Age Verification System

https://private-age-estimation.vednig.workers.dev
1•vednig•19m ago•0 comments

WhatsApp to let people chat without swapping phone numbers

https://www.bbc.com/news/articles/c1dykk3135xo
1•reconnecting•20m ago•0 comments

Cursor for iOS

https://apps.apple.com/us/app/cursor/id6767085653
1•SpyCoder77•22m ago•2 comments

Show HN: Halgorithem – an open-source tool for detecting AI hallucinations

https://github.com/TangibleResearch/Halgorithem
1•reboy•23m ago•0 comments

Show HN: The UNESCO Tsunami Warning Emails Are Gone

https://lists.unesco.org/wws/info/tsunami-information-ioc
1•Jaauthor•24m ago•0 comments

Are We Ready for an Agent-Native Memory System?

https://arxiv.org/abs/2606.24775
1•matt_d•25m 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.