frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Specsmaxxing – On overcoming AI psychosis, and why I write specs in YAML

https://acai.sh/blog/specsmaxxing
1•brendanmc6•3m ago•0 comments

The AI coding tool config problem is getting worse, not better

https://github.com/sampleXbro/agentsmesh
2•samplexBro•4m ago•0 comments

FDA Clearance of IND Application for ER-100 in Optic Neuropathies

https://www.lifebiosciences.com/life-biosciences-announces-fda-clearance-of-ind-application-for-e...
1•andsoitis•6m ago•0 comments

Show HN: Seeker – Career Routing Engine

https://www.seekerscore.com
1•danylchukllc•7m ago•1 comments

Evaluating ER-100 for Safety in People with Glaucoma or Optic Nerve Conditions

https://clinicaltrials.gov/study/NCT07290244
1•andsoitis•8m ago•0 comments

Tython – Just a Small Language

https://github.com/younissk/tython
1•modinfo•12m ago•1 comments

Artisan (YC W24) uses AI to rip off "This is Fine" artist for ad

https://bsky.app/profile/kcg.bsky.social/post/3mkwcpx45q223
1•starkparker•13m ago•0 comments

The Final Form of Software Development

https://blog.zksecurity.xyz/posts/end-coding/
1•ricochet11•14m ago•0 comments

Deep Dive into the OTel Normalizer groundcover Built for GenAI

https://www.groundcover.com/blog/otel-normalizer-genai-part-2
1•thebitofmyheart•16m ago•0 comments

MathStudio Android APK modernized for Android >= 7

https://github.com/woct0rdho/mathstudio-apk-modernized
1•woctordho•34m ago•1 comments

Unruly Play

https://www.unrulyplay.com/
3•bkudria•38m ago•0 comments

I Wrote Ultralearning. This Is What I'd Change Because of AI

https://www.scotthyoung.com/blog/2026/04/29/ultralearning-ai/
2•pullshark91•38m ago•0 comments

Show HN: UIGen – Runtime front end for any OpenAPI spec with AI skills

https://github.com/darula-hpp/uigen
3•ombedzi•39m ago•0 comments

Turning live heart rate data into a generative audio story

https://runnory.com/blog/heart-rate-writes-the-story
2•danultimateb•40m ago•1 comments

Engaging Essays in Cosmology [1971-2026]

https://archive.org/details/a.-tomilin-engaging-essays-in-cosmology-mir-titles-2026
3•the-mitr•44m ago•0 comments

Yann LeCun's Billion Dollar Bet [video]

https://www.youtube.com/watch?v=kYkIdXwW2AE
1•mfiguiere•47m ago•0 comments

Show HN: Stay Lean – Calorie Navigation

https://apps.apple.com/us/app/stay-lean-calorie-navigation/id6762153463
1•janpmz•49m ago•1 comments

Making Postman load 60% Faster

1•vedkribhu•53m ago•1 comments

Model Engines Manufacturable drawings/plans

https://outerzone.co.uk/plans.asp?cat=Engines&Xcardsperpage=48
1•pillars•56m ago•0 comments

I wrote a custom CUDA inference engine to run Qwen3.5-27B on $130 mining cards

https://news.ycombinator.com/submit
2•Haru-neo•57m ago•0 comments

Einstein's Big Idea Documentry(2005) - 1h 49M [video]

https://thinktv.pbslearningmedia.org/resource/nvfb-sci-einsteinsidea/wgbh-nova-einsteins-big-idea...
1•num42•1h ago•0 comments

Pgxbackup: Continuity Support for PgBackRest

https://thebuild.com/blog/2026/05/01/pgxbackup-continuity-support-for-pgbackrest/
1•thunderbong•1h ago•0 comments

Show HN: Keryx: TypeScript framework where one Action becomes HTTP, WS, CLI, MCP

https://www.keryxjs.com
1•evantahler•1h ago•1 comments

The Reality of Being a Man in Your 50s in South Korea

https://indignified.com/the-hidden-realities-of-midlife-masculinity-in-south-korea/
10•ZguideZ•1h ago•3 comments

Mouse Pointer as a Mere Mortal

https://unsung.aresluna.org/mouse-pointer-as-a-mere-mortal/
1•zdw•1h ago•0 comments

Quantum Machine Learning: A Pragmatic Guide for Classical ML Engineers

https://pawankjha.substack.com/p/quantum-machine-learning-the-pragmatic
2•pawanjha25•1h ago•0 comments

Redesigning Agent Skills – two missing parts

https://simianwords.bearblog.dev/what-agent-skills-misses-now/
1•simianwords•1h ago•0 comments

NodeMind – binary document index, 48× smaller than float32 RAG, no GPU required

https://github.com/QLNI/NodeMind
2•Nodemind•1h ago•0 comments

MX Script: a scripting language for one file web APIs

https://www.mxscript.com/
2•jlkdevelop•1h ago•0 comments

Under sea internet cables need backup

https://restofworld.org/2026/iraq-big-tech-gulf-war-data/
1•hemc4•1h ago•1 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.