
Article URL: https://addyo.substack.com/p/ai-wont-kill-junior-devs-but-your
Comments URL: https://news.ycombinator.com/item?id=44023663
Points: 24
# Comments: 24
https://addyo.substack.com/p/ai-wont-kill-junior-devs-but-your

Article URL: https://www.kscale.dev/
Comments URL: https://news.ycombinator.com/item?id=44023680
Points: 33
# Comments: 19

Hi HN,
I turned the freshly published paper “The Constructor Theory of Time” by David Deutsch and Chiara Marletto (arXiv, 13 May 2025) into an executable Python library.
What you’ll find • One-to-one translation of the paper’s formalism: Substrates, Attributes, Tasks, Constructors, and task-algebra operators • Possibility / impossibility predicates and counterfactuals encoded exactly as defined • Test suite that mirrors every lemma and example (>95 % coverage, mypy-typed) • Reproduct
Article URL: https://pscanf.com/s/341/
Comments URL: https://news.ycombinator.com/item?id=44024173
Points: 29
# Comments: 27
Article URL: https://social.numerique.gouv.fr/@codegouvfr/114529954373492878
Comments URL: https://news.ycombinator.com/item?id=44024759
Points: 5
# Comments: 0
https://social.numerique.gouv.fr/@codegouvfr/114529954373492878

We’ve been working on Vaev, a minimal web browser engine built from scratch. It supports HTML/XHTML, the CSS cascade, @page rules for pagination, and print-to-PDF rendering. It even handles calc(), var(), and percentage units—and yes, it renders Google.com (mostly).
This is an experimental project focused on learning and exploration. Networking is basic (http:// and file:// only), and grid layouts aren’t supported yet, but we’re making progress fast.

Stack Error reduces the up-front cost of designing an error handling solution for your project, so that you focus on writing great libraries and applications.
Stack Error has three goals:
1. Provide ergonomics similar to anyhow.
2. Create informative error messages that facilitate debugging.
3. Provide typed data that facilitates runtime error handling.
Comments URL: https://news.ycombinator.com/item?id=44023471
Article URL: https://telcontar.net/Misc/GUI/RISCOS/
Comments URL: https://news.ycombinator.com/item?id=44021191
Points: 18
# Comments: 2
Article URL: https://fabiensanglard.net/2168/index.html
Comments URL: https://news.ycombinator.com/item?id=44021824
Points: 30
# Comments: 12

Hey HN! We’ve just open-sourced model2vec-rs, a Rust crate for loading and running Model2Vec static embedding models with zero Python dependency. This allows you to embed text at (very) high throughput; for example, in a Rust-based microservice or CLI tool. This can be used for semantic search, retrieval, RAG, or any other text embedding usecase.
Main Features:
- Rust-native inference: Load any Model2Vec model from Hugging Face or your local path with StaticModel::from_pretrained(...).