frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Cursor Bridge – Run Unlimited Claude Code on Your Cursor Subscription

https://github.com/hkc5/cursor-bridge
1•hakancan•2m ago•1 comments

Scriptc by Vercel: TypeScript-to-Native compiler, no JavaScript engine in binary

https://github.com/vercel-labs/scriptc
1•maxloh•4m ago•0 comments

Shepherd Model Gateway – Model-routing gateway for LLM deployments

https://github.com/lightseekorg/smg
1•rekl•14m ago•0 comments

Your GPS Is Lying to You

https://medium.com/@rohitdastalks/your-gps-is-lying-to-you-and-thats-a-national-security-crisis-7...
2•jonbaer•14m ago•0 comments

"A vicious circle of incompatibility" – Unsung

https://unsung.aresluna.org/a-vicious-circle-of-incompatibility/
1•rbanffy•16m ago•0 comments

A live black-box capability eval for autonomous offensive-security agents

https://phantomlogin.entropicsystems.net/
1•snorbleck•17m ago•0 comments

Claude of Duty

https://github.com/mshumer/Claude-of-Duty/tree/main
1•SweetSoftPillow•17m ago•0 comments

Stories Told About Data Centres – Pixel Envy

https://pxlnv.com/blog/stories-told-about-data-centres/
1•rbanffy•19m ago•0 comments

Tesler's Law

https://en.wikipedia.org/wiki/Law_of_conservation_of_complexity
3•soupspaces•21m ago•0 comments

Videos Helped Me Uncover Abuse at an Arkansas Private School

https://www.propublica.org/article/arkansas-private-school-abuse-video
2•Jimmc414•21m ago•0 comments

Court Reporter Submitted AI-Generated Errors in Official Court Transcript

https://www.404media.co/judge-caught-court-reporter-using-ai-transcript-errors/
1•Jimmc414•21m ago•0 comments

Fabric Interface Tutorial: E-Textiles, Conductive Thread and Trill Craft

https://www.youtube.com/watch?v=ClBYyYEFkF0
1•soupspaces•22m ago•0 comments

Hundreds of Drone-as-First-Responder Programs to Be Launched Across the Country

https://www.eff.org/deeplinks/2026/07/hundreds-drone-first-responder-programs-could-soon-be-launc...
1•Jimmc414•22m ago•0 comments

Show HN: Anyclaude-SDK – Claude Code-Style SDK for OpenAI/Anthropic Endpoints

https://github.com/pipilot-dev/anyclaude-sdk
1•hansade•23m ago•0 comments

Show HN: The Jac Programming Language

https://jaclang.org/
2•marsninja•24m ago•4 comments

The Metaverse Fever Dream – Pixel Envy

https://pxlnv.com/blog/metaverse-fever-dream/
2•rbanffy•25m ago•0 comments

Why does every mammal get 1B heartbeats in their life? [video]

https://www.youtube.com/watch?v=tL9Lw250spc
1•binyu•27m ago•0 comments

The highest-leverage bet in the whole market is not AI, it's LSD

https://www.singularityrainbow.ai/p/you-have-no-idea-how-big-dftx-is
1•charliejordan•27m ago•0 comments

Show HN: GG Translator – Turn gaming shit talk into friendly phrases

https://ggtranslator.com
1•mcadenhe•28m ago•0 comments

US citizen charged after GrapheneOS phone wipes during airport search

https://www.techspot.com/news/113236-us-prosecutors-charge-atlanta-man-after-grapheneos-phone.html
2•eecc•29m ago•0 comments

So-called 'Skynet Day' came too close to SF after rogue agent hacked a startup

https://apnews.com/article/skynet-ai-terminator-artificial-intelligence-eb85da03a0161beaa5f3babc4...
3•billybuckwheat•30m ago•1 comments

Show HN: LuaJIT with Native SIMD

https://github.com/TheLuaOSProject/LuaJITMT/releases/tag/1.0.0-simd
1•frityet•30m ago•1 comments

Can Frontier Models Recall Long-Tail Facts? A Cricket Stress Test

https://corvi.careers/blog/frontier-models-long-tail-facts/
1•sp1982•32m ago•0 comments

Building a CEL Engine for .NET

https://bsid.io/writing/building-a-cel-engine-for-net
2•jackedEngineer•32m ago•0 comments

Refactoring cuisine: how an Iraqi stew sailed to Singapore

https://iza.ac/posts/2026/07/the-journey-of-bamya/
1•infinitewalk•32m ago•0 comments

Browser-Based QBasic Environment

https://kavak.run/studio/
3•rickcarlino•35m ago•0 comments

RAMpocalypse, Now With Lawyers – ByteHaven – Where I ramble about bytes

https://blog.ppb1701.com/rampocalypse-now-with-lawyers
2•abdelhousni•38m ago•0 comments

Show HN: Codex fixed my 2010 MacBook Pro driver troubles with kernel patches

https://github.com/ldyeax/macbook2010_nouveau_and_sleep_fixes/
1•jimmaswell•39m ago•0 comments

Frontier LLMs drop from 83% to 43% once reasoning has to chain across domains

https://arxiv.org/abs/2607.18438
2•MarcoDewey•40m ago•1 comments

Anti-AI nostalgia and the cult of the past

https://www.seangoedecke.com/anti-ai-nostalgia/
1•gfysfm•41m 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.