frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

Precious Plastic Is in Trouble

https://www.preciousplastic.com//news/problems-in-precious-plastic
89•diggan•3h ago•46 comments

Deep learning gets the glory, deep fact checking gets ignored

https://rachel.fast.ai/posts/2025-06-04-enzyme-ml-fails/index.html
309•chmaynard•5h ago•37 comments

A deep dive into self-improving AI and the Darwin-Gödel Machine

https://richardcsuwandi.github.io/blog/2025/dgm/
71•hardmaru•5h ago•7 comments

Show HN: Ephe – A minimalist open-source Markdown paper for today

https://github.com/unvalley/ephe
51•unvalley•4h ago•16 comments

Destination: Jupiter

https://clarkesworldmagazine.com/liptak_06_25/
69•AndrewLiptak•7h ago•25 comments

Covert Web-to-App Tracking via Localhost on Android

https://localmess.github.io/
290•sebastian_z•14h ago•209 comments

Your Manager Is Not Your Best Friend

https://staysaasy.com/management/2025/06/02/your-manager-is-not-your-best-friend.html
31•thisismytest•1h ago•7 comments

Brain aging shows nonlinear transitions, suggesting a midlife "critical window"

https://www.pnas.org/doi/10.1073/pnas.2416433122
93•derbOac•3h ago•26 comments

Patched (YC S24) Is Hiring SWEs in Singapore

https://www.ycombinator.com/companies/patched/jobs/hgDeMBr-software-engineer
1•rohansood15•1h ago

The Small World of English

https://www.inotherwords.app/linguabase/
123•michaeld123•11h ago•60 comments

Mapping latitude and longitude to country, state, or city

https://austinhenley.com/blog/coord2state.html
27•azhenley•4h ago•11 comments

Meta pauses mobile port tracking tech on Android after researchers cry foul

https://www.theregister.com/2025/06/03/meta_pauses_android_tracking_tech/
52•coloneltcb•3h ago•6 comments

When the sun dies, could life survive on the Jupiter ocean moon Europa?

https://www.space.com/astronomy/when-the-sun-dies-could-life-survive-on-the-jupiter-ocean-moon-europa
37•amichail•8h ago•51 comments

New study casts doubt on the likelihood of Milky Way collision with Andromeda

https://www.durham.ac.uk/departments/academic/physics/news/new-study-casts-doubt-on-the-likelihood-of-milky-way-collision-with-andromeda/
15•layer8•4h ago•6 comments

Show HN: AirAP AirPlay server - AirPlay to an iOS Device

https://github.com/neon443/AirAP
157•neon443•6h ago•25 comments

Standard Completions

https://standardcompletions.org
6•todsacerdoti•3d ago•0 comments

Show HN: Localize React apps without rewriting code

https://github.com/lingodotdev/lingo.dev
70•maxpr•9h ago•55 comments

'Wind theft': The mysterious effect plaguing wind farms

https://www.bbc.com/future/article/20250506-renewable-energys-trouble-with-wind-theft
24•JumpCrisscross•3d ago•28 comments

(On | No) Syntactic Support for Error Handling

https://go.dev/blog/error-syntax
297•henrikhorluck•10h ago•400 comments

Changing Directions

https://jacobian.org/2025/jun/3/changing-directions/
48•speckx•9h ago•14 comments

Show HN: I wrote a Java decompiler in pure C language

https://github.com/neocanable/garlic
153•neocanable•14h ago•80 comments

Show HN: An Alfred workflow to open GCP services and browse resources within

https://github.com/dineshgowda24/alfred-gcp-workflow
42•dineshgowda24•7h ago•10 comments

Polish engineer creates postage stamp-sized 1980s Atari computer

https://arstechnica.com/gadgets/2025/06/polish-engineer-creates-postage-stamp-sized-1980s-atari-computer/
51•dangle1•4h ago•1 comments

CVE-2024-47081: Netrc credential leak in PSF requests library

https://seclists.org/fulldisclosure/2025/Jun/2
46•jupenur•8h ago•17 comments

The Shape of the Essay Field

https://paulgraham.com/field.html
57•luisb•17h ago•36 comments

Show HN: Controlling 3D models with voice and hand gestures

https://github.com/collidingScopes/3d-model-playground
82•getToTheChopin•12h ago•17 comments

Quarkdown: A modern Markdown-based typesetting system

https://github.com/iamgio/quarkdown
583•asicsp•18h ago•245 comments

Show HN: Gradle plugin for faster Java compiles

https://github.com/elide-dev/gradle
22•sgammon•6h ago•15 comments

Swift at Apple: Migrating the Password Monitoring Service from Java

https://www.swift.org/blog/swift-at-apple-migrating-the-password-monitoring-service-from-java/
203•fidotron•9h ago•160 comments

How much do language models memorize?

https://arxiv.org/abs/2505.24832
30•mhmmmmmm•11h ago•0 comments
Open in hackernews

Show HN: System Prompt Learning – LLMs Learn Problem-Solving from Experience

47•codelion•1d ago
I built a system that lets LLMs automatically learn and improve problem-solving strategies over time, inspired by Andrej Karpathy's idea of a "third paradigm" for LLM learning.

The basic idea: instead of using static system prompts, the LLM builds up a database of strategies that actually work for different problem types. When you give it a new problem, it selects the most relevant strategies, applies them, then evaluates how well they worked and refines them.

For example, after seeing enough word problems, it learned this strategy:

1) Read carefully and identify unknowns,

2) Define variables with units,

3) Write equations,

4) Solve step-by-step,

5) Verify the answer.

All strategies are stored as human-readable JSON that you can inspect and edit.

I tested it on math benchmarks and saw decent improvements - 8.6% better on Arena Hard, 6.67% on AIME24. After 500 queries, the system had created 129 strategies and refined 97 of them.

The implementation is an open-source plugin for optillm (our inference optimization proxy). It works with any OpenAI-compatible API - you just add "spl-" to your model name. Has two modes: inference-only (uses existing strategies) and learning mode (creates and refines strategies).

What's interesting is that it bridges the gap between the sophisticated system prompts that production AI uses and the basic prompts most of us work with. Your model literally gets better at the types of problems you throw at it.

Built it because I noticed ChatGPT, Claude etc. have incredibly detailed system prompts with problem-solving frameworks, but most developers use basic prompts and miss out on those performance gains. The approach is inspired by Andrej Karpathy's tweet about a "third paradigm" for LLM learning beyond just pretraining and fine-tuning: https://x.com/karpathy/status/1921368644069765486

The strategies are completely transparent - you can see exactly what the system learned and why it's making certain decisions. No black box learning.

https://github.com/codelion/optillm/tree/main/optillm/plugin...

Would love feedback on the approach. Has anyone else experimented with LLMs learning from their own experience?

Comments

codelion•1d ago
Thanks for checking this out! A few additional details that didn't fit in the main post:

The system maintains two separate limits: a storage limit (max 10 strategies per problem type in the database) and an inference limit (max 3 strategies applied per query). This keeps the database manageable while ensuring the system prompt doesn't get too long.

One interesting finding was that strategies only get used for inference once they have at least 5 attempts and a 40% success rate. This prevents the system from applying unproven strategies to new problems.

The approach works particularly well with reasoning models like DeepSeek-R1 and QwQ - the learned strategies seem to guide their thinking process effectively.

I'm especially curious about:

1. How this might work with different model families

2. Whether the community sees value in sharing strategy databases between users

3. Ideas for extending beyond text-based reasoning to multimodal problems

The plugin integrates with our broader optillm project which has other inference optimization techniques. You can combine SPL with methods like mixture-of-agents or MCTS using the "&" operator.

Next I'm thinking about meta-learning - having the system learn how to create better strategies more efficiently. Also exploring collaborative strategy sharing.

Would love to hear thoughts on the approach or if anyone has ideas for other problem domains where this might be useful!

ramonga•1d ago
I would like to see some interesting input/output pairs. Do you have any?
codelion•1d ago
We have some examples in the plugin README: https://github.com/codelion/optillm/tree/main/optillm/plugin...

E.g. This was the strategy discovered by optiLLM for solving word problems:

*Refined Strategy for Solving Word Problems:*

1. *Understand:*\n * Read the problem carefully (multiple times).\n * Identify the question (what are you trying to find?).\n * List all given information (facts, numbers, units).\n * Clarify ambiguous terms/units.

2. *Organize Information & Identify Unknowns:*\n * Choose an organization method: (e.g., table, diagram, list, drawing).\n * Clearly identify the unknowns (what you need to solve for).

3. *Plan and Translate:*\n * Define all variables with units (e.g., `p = number of pennies`, `c = number of compartments`).\n * Identify relationships between knowns and unknowns.\n * Convert units if necessary.\n * Write equations or expressions, including units, that relate the knowns and unknowns.\n * Ensure units are consistent throughout the equations.\n * Outline the solution steps.

4. *Solve:*\n * Show work step-by-step.\n * Track units throughout calculations.\n * Calculate accurately.\n * Solve for the unknowns.\

5. *Evaluate and Verify:*\n * Check if the answer is reasonable.\n * Verify the answer.

6. *Summarize:*\n * State the answer with units

Full list of strategies discovered is available here -https://github.com/codelion/optillm/blob/main/optillm/plugin...

tanchaowen84•1d ago
This is a really cool idea! I recently came across another project on GitHub: https://github.com/tensorzero/tensorzero that explores a similar direction. You might find it interesting, and perhaps it could offer some inspiration or useful insights for your work as well.
yunusabd•1d ago
That's an interesting space to explore! I'm wondering about the baseline in the benchmarks. Which prompts did you use for those? I'm asking because some of the resulting prompts seem fairly generic, and I'm wondering if you could just blanket add them to each prompt and also see an improvement. Things like "Identify the question (what are you trying to find?)".

In the same vein, wouldn't it be interesting to measure which part of the prompt most contributed to better solving the problem? Surely some parts will be just noise and can be trimmed away.

Also wondering what this does, since the model probably won't (can't?) actually read the problem multiple times:

  > Read the problem carefully (multiple times).
codelion•1d ago
Re-reading the problem apparently works well - https://arxiv.org/abs/2309.06275

Here the system seems to have discovered this strategy by itself. The prompts are generic because during learning there is a part to refine and combine them. I haven’t experimented yet by adding all prompts to every query, given the large context it will be interesting to see.

yunusabd•1d ago
Okay, but it looks like in the paper, they are actually adding the question twice in the prompt, not just instructing the model to read it twice. Or am I missing something?
Falimonda•1d ago
How do you forsee a system like this efficiently managing and relying on a set of strategies whose size can become unbounded?
codelion•1d ago
We do not allow the strategies to keep growing there is a refinement phase where we refine and merge existing strategies. The experiments were run with this config - https://github.com/codelion/optillm/blob/main/optillm/plugin... which allows a maximum of 10 strategies of each type.
dedicate•1d ago
If I jump in and, say, manually 'tweak' one of those JSON strategies because I think I have a better idea, what happens next? Does the LLM just roll with my brilliant human intervention, or could it eventually 'learn' that my tweak was actually counterproductive and refine it back (or away from my edit)?
codelion•1d ago
You can run in two modes, by default you run in the inference mode without learning. So, the changes you made will be used. If you switch to learning mode then the strategies are updated/refined and merged based on a config that you can control.

# How often to perform maintenance operations (merge, prune)

MAINTENANCE_INTERVAL = 40

# Strategy selection thresholds

STRATEGY_CREATION_THRESHOLD = 0.7 # Higher threshold to avoid creating similar strategies

STRATEGY_MERGING_THRESHOLD = 0.6 # Lower threshold to merge more similar strategies

MIN_SUCCESS_RATE_FOR_INFERENCE = 0.4 # Minimum success rate for a strategy to be used during inference

The configs are all defined here - https://github.com/codelion/optillm/blob/main/optillm/plugin...

imaltont•1d ago
You should take a look at something called Case-based reasoning. Seems to perfectly fit into the road you are currently walking, as you basically just rediscovered the CBR-cycle.