frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

I Automated Oracle 19.28 Database and Grid Patching with Ansible

https://dincosman.com/2026/04/18/ansible-oracle-patching/
1•osmandinc•1m ago•1 comments

Reverse Engineering ME2's USB with a Heat Gun and a Knife

https://github.com/coremaze/ME2-Writeup
1•Bawoosette•1m ago•0 comments

How We Build Effective Agents: Barry Zhang, Anthropic [video]

https://www.youtube.com/watch?v=D7_ipDqhtwk
1•Anon84•2m ago•0 comments

Real-time poker engine (replay, telemetry, AI players)

https://oxyklon.net/portal
2•naydref•4m ago•0 comments

2001: A TV Series

https://owl.billpg.com/2001-a-tv-series/
1•billpg•4m ago•0 comments

Gpgwrap

https://0ut3r.space/2026/04/06/gpgwrap/
1•h0ek•6m ago•0 comments

Recent advances push Big Tech closer to the Q-Day danger zone

https://arstechnica.com/security/2026/04/while-some-big-tech-players-accelerate-pqc-readiness-oth...
1•bookmtn•8m ago•0 comments

Ask HN: Is an open source initiative for students worth it?

1•wasimsk•9m ago•0 comments

Show HN: 60-Second Hack – a daily hacker typing puzzle

https://hack-game-pi.vercel.app/
1•Kodaren1338•12m ago•1 comments

Trump deal with IRS could see him given $14B in taxpayer money

https://www.9news.com.au/world/donald-trump-irs-lawsuit-suing-10-billion-dollars-tax-office-usa-p...
3•johnbarron•17m ago•0 comments

TPM 2.0 is actually cool

https://apas.tel/blog/tpm-is-cool
1•art049•18m ago•0 comments

Native IPv6 Kubernetes for true edge routing

https://henrikgerdes.me/blog/2026-04-k8s-native-ipv6-edge/
1•jandeboevrie•20m ago•0 comments

The UK needs to discuss the risk of a new Pacific War over Taiwan

https://ukdefencejournal.org.uk/the-uk-needs-to-discuss-the-risk-of-a-new-pacific-war-over-taiwan/
1•Bender•22m ago•0 comments

I visited drone factories in Ukraine

https://ukdefencejournal.org.uk/i-visited-drone-factories-in-ukraine/
2•Bender•22m ago•2 comments

Raspberry Pi OS ends open-door policy for sudo

https://www.theregister.com/2026/04/15/raspberry_pi_os_sudo/
2•Bender•23m ago•0 comments

Show HN: ChatbotChambers – Watch LMs talk to each other

https://github.com/jac08h/ChatbotChambers
1•jac08h•29m ago•0 comments

Dive into Claude Code: The Design Space of Today's and Future AI Agent Systems

https://arxiv.org/abs/2604.14228
1•Anon84•29m ago•0 comments

LLMs will soon disrupt algorithmic media feeds

https://www.lesswrong.com/posts/YuXcbWRTjmvr4QF7u/llms-are-about-to-disrupt-algorithmic-media-feeds
1•linhns•30m ago•0 comments

Simple Made Easy (2011) [video]

https://www.youtube.com/watch?v=SxdOUGdseq4
1•tosh•35m ago•0 comments

My AI writes to my Apple Health in real time: observations on personal software

https://shuyangli.substack.com/p/my-ai-writes-to-my-apple-health-in
2•shuyang•35m ago•0 comments

Sprawl was caused by the nuclear arms race

https://www.treehugger.com/why-sprawl-was-caused-nuclear-arms-race-and-why-matters-more-ever-toda...
2•leonidasrup•35m ago•0 comments

Toward Autonomous Long-Horizon Engineering for ML Research

https://arxiv.org/abs/2604.13018
1•Anon84•36m ago•0 comments

Huoziime: An On-Device LLM-Enhanced Input Method for Deep Personalization

https://arxiv.org/abs/2604.14159
1•Brajeshwar•37m ago•0 comments

Delve – Hawaii Edition – Part II

https://substack.com/home/post/p-193790932
1•JustSkyfall•38m ago•0 comments

Kitten Space Agency: A technical dive into the inner workings of planetary rings

https://ahwoo.com/news/4807024/kitten-space-agency/planetary-rings
1•cubefox•38m ago•0 comments

Maarten Baas Creates Clock Made of People For Schiphol Airport

https://www.dezeen.com/2026/04/17/maarten-baas-peoples-clock-schiphol-airport/
1•bookofjoe•38m ago•0 comments

Takeaways from the Story of Trump's Decision to Go to War with Iran

https://www.nytimes.com/2026/04/07/us/politics/trump-iran-war-takeaways.html
3•niklasbuschmann•40m ago•0 comments

They Built the 'Cursor for Hardware.' Now, Anthropic Wants In

https://www.wired.com/story/schematik-is-cursor-for-hardware-anthropic-wants-in-on-it/
1•indigodaddy•40m ago•0 comments

Show HN: I built a hiring platform where you can't list your skills

https://gotskillz.tech/
1•andysteaua•41m ago•0 comments

Vibe Coders Confessions

https://horror.vc
2•melonheader•41m ago•0 comments
Open in hackernews

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

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