Category: Engineering

6 posts

Wasm Component Model Gives Plugin Runtimes A Real Boundary
Engineering · Views

Wasm Component Model Gives Plugin Runtimes A Real Boundary

Plugin systems often collapse under dependency conflicts and loose permissions. Wasm Component Model standardizes interfaces, capabilities, and runtime boundaries for multi-language plugins and edge execution.

Vector Search Accuracy Starts With What You Put Into The Vector
Engineering · Views

Vector Search Accuracy Starts With What You Put Into The Vector

Vector search is not finished when you concatenate every field and send it to an embedding model. This article uses a fictional API marketplace to explain noisy text, long descriptions, URLs, thresholds, hybrid retrieval, and evaluation sets.

Private PyPI With pypiserver And uv
Engineering · Views

Private PyPI With pypiserver And uv

A practical internal package workflow using pypiserver and uv: authentication, PEP 440 versioning, setuptools-scm, Docker without git, uv project configuration, BuildKit secrets, and CI publishing pitfalls.

Large-Scale LLM Classification: From Brute Force To Tree Pruning
Engineering · Views

Large-Scale LLM Classification: From Brute Force To Tree Pruning

When thousands of entities need to be labeled by an LLM, the naive approach can be shockingly expensive. This article breaks down reusable optimizations: hierarchical pruning, inheritance, batching, incremental skipping, ancestor expansion, prompt caching, and asyncio orchestration.