Sun, Dec 28, 2025
5 notes this week
- Dec 27, 2025
how uv got so fast. UV performance is because of design decisions while rust contributes to micro optimizations.
- Dec 24, 2025
"LangGraph is an orchestration framework for building stateful multi-agent applications using LLMs. It provides low-level primitives such as nodes and edges, along with built-in features that give developers granular control over agent workflows, memory management and state persistence. This means developers can start with a simple pre-built graph and scale to complex, evolving agent architectures. With support for streaming, advanced context management and resilience patterns like model fallbacks and tool error handling, LangGraph enables you to build robust, production-grade agentic applications. Its graph-based approach ensures predictable, customizable workflows and simplifies debugging and scaling."
- Dec 22, 2025
Notes from Thoughtworks - Technology Radar vol 33
- text-to-sql solutions aren't working as expected
- pnpm, langGraph, and pydantic recommended for adoption
- Dec 22, 2025
npx -y npm-check-updatestells you the latest versions of yourpackage.json, ignoring pinned versions. - Dec 22, 2025
Inversion of Control principle -- "Don't call us, we'll call you".
- This design principle is used widely in Web Frameworks, GUI programs, etc in the form of event listeners, dependency injections, callbacks to avoid boilerplate code, resuability and testability.
- Some popular examples are DOM, Flask, NestJS, Angular, etc.