frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Vibe coding is a blight on open-source

https://old.reddit.com/r/webdev/comments/1qcxres/vibe_coding_is_a_blight_on_opensource/
1•doppp•4m ago•0 comments

Learning better decision trees – LLMs as Heuristics for Program Synthesis

https://mchav.github.io/learning-better-decision-tree-splits/
1•mchav•4m ago•0 comments

Divorce app to save you lawyers fee

https://replantlife.com/
1•cheroll•7m ago•1 comments

Meditation and Unconscious: A Buddhist Monk and a Neuroscientist (2022)

https://thereader.mitpress.mit.edu/meditation-and-the-unconscious-buddhism-neuroscience-conversat...
1•arunc•13m ago•0 comments

Do not give up your brain

https://cassidoo.co/post/good-brain/
1•gpi•14m ago•0 comments

Reality Is Breaking the "AI Revolution"

https://www.planetearthandbeyond.co/p/reality-is-breaking-the-ai-revolution
1•handfuloflight•21m ago•0 comments

Teen Jailed After Exploiting Refund Policy for $570k

https://www.vice.com/en/article/teen-jailed-after-exploiting-refund-policy-for-570000/
2•lnguyen•24m ago•1 comments

RubyShell: Ruby way to create shell scripts

https://github.com/albertalef/rubyshell
1•thunderbong•28m ago•0 comments

Ask HN: Convince me on why AI matters

1•moh20•30m ago•3 comments

New York proposal requires 3D printer manufacturers to prevent printing guns

https://www.tomshardware.com/3d-printing/new-york-state-takes-steps-to-ban-3d-printed-guns-propos...
3•josephcsible•32m ago•2 comments

Anatomy of an Excellent OpenCode Skill: Lessons from Cloudflare-Skill

https://medium.com/@jpcaparas/anatomy-of-an-excellent-opencode-skill-lessons-from-cloudflare-skil...
2•zenoware•32m ago•0 comments

The missed opportunity of constrained decoding

https://michaelorenstein.com/blog/zero-entropy-tokens/
2•killcoder•33m ago•2 comments

Show HN: I've Built a Python Playground

https://playcode.io/python-compiler
1•ianberdin•34m ago•0 comments

Trump Sets Fraudster Free from Prison for a Second Time

https://www.nytimes.com/2026/01/16/us/politics/trump-fraudster-pardon.html
1•duxup•35m ago•1 comments

Show HN: AI video generator (React output)– now with script gen and voice select

https://ai.outscal.com/
1•mayankkgrover•39m ago•0 comments

Global sports face challenges from 'AI slop' misinformation

https://www.reuters.com/sports/global-sports-face-challenges-ai-slop-misinformation-2026-01-17/
1•1vuio0pswjnm7•40m ago•0 comments

Show HN: Use Claude CLI to analyze its own protocol

https://github.com/mzhaom/claude-cli-protocol
1•keytalker•41m ago•0 comments

Counterfactual evaluation for recommendation systems

https://eugeneyan.com/writing/counterfactual-evaluation/
2•kurinikku•42m ago•0 comments

Google asks US judge to defer order forcing it to share data while it appeals

https://www.reuters.com/sustainability/boards-policy-regulation/google-asks-us-judge-defer-order-...
2•1vuio0pswjnm7•42m ago•0 comments

Anthropic opens up its Claude Cowork feature to anyone with a $20 subscription

https://www.engadget.com/ai/anthropic-opens-up-its-claude-cowork-feature-to-anyone-with-a-20-subs...
2•swolpers•50m ago•0 comments

The Pink Park Ranger Takedown: CCC vs. White Supremacy

https://canada.diplo.de/ca-en/about-us/vancouver/2751436-2751436
2•DyslexicAtheist•51m ago•2 comments

My daughter's boyfriend gave me a custom keyboard? I don't like it. What now?

2•0xWTF•53m ago•2 comments

A Nazi theorist's vision of a world divided has found a new advocate?

https://www.theguardian.com/commentisfree/2026/jan/16/nazi-theorist-vision-great-spaces-new-advoc...
1•KnuthIsGod•56m ago•0 comments

Show HN: CodeSyncer – Store AI coding context in code comments

https://github.com/bitjaru/codesyncer
1•bitjaru0402•57m ago•1 comments

I trained a 90-day weather AI on a single GPU using 150 years of data

https://github.com/consigcody94/lilith
1•sentinelowl•57m ago•1 comments

Remove Video Watermark, Logo and Subtitle

https://www.removewatermarker.com
1•ace520•57m ago•0 comments

AWS Duvet: a bidirectional link between implementation and specification

https://awslabs.github.io/duvet/
2•forks•1h ago•0 comments

Buffer Overflow in Qualcomm Snapdragon X65 Baseband

https://github.com/0verdu/X65_BufferOverflow
3•ggm•1h ago•0 comments

Open Claude Cowork Compatible with Any LLM API on Win/Linux/macOS

https://github.com/cowork-studio/OpenCowork
1•agi-hub•1h ago•0 comments

Build a Digital Clock from the 1980's

https://eightiesclock.mit.edu/
3•barishnamazov•1h ago•0 comments
Open in hackernews

Show HN: OpenEvolve – open-source implementation of DeepMind's AlphaEvolve

8•codelion•8mo 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•8mo 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•8mo ago
How many tokens did it take to generate the 800 versions of the code?
codelion•8mo ago
Checked my openrouter stats, it took ~3M tokens but that involved quite a few runs of various experiments.