Ujaval's Notes and Bookmarks¶
This site is a collection of my personal notes and bookmarks collected over the years. It is organized to help search and recall specific items or find notes related to a certain topic.
These notes were scattered across many places and hard to manage. Finally, Claude Code helped organize this and build this site. These are now auto-updated weekly from my notes. See the CLAUDE.md file with processing instructions.
Latest Finds¶
- Ponytail: A Claude Code skill that enforces a "lazy senior developer" philosophy — a decision ladder that prioritizes using existing solutions (stdlib, native features, installed dependencies) before writing new code, demonstrating ~54% reduction in lines of code and ~20% cost savings. [Keywords:
Claude Codeskillsagentsproductivitybest practicescode generation] — More in Claude Code - Pi: A minimal, extensible open-source agent harness for coding workflows supporting 15+ LLM providers, with real-time customization via TypeScript extensions, skills, and packages — designed to adapt to user needs rather than enforce predetermined workflows. [Keywords:
AIagentsLLMopen-sourceTypeScriptcodingextensible] — More in AI - Optimizing DuckDB Spatial Queries: A technical deep-dive comparing spatial join performance between PostGIS and DuckDB, explaining how DuckDB's R-tree index fires only for single constant geometry comparisons while PostGIS auto-uses its GiST index — and showing that DuckDB's streaming
SPATIAL_JOINoperator wins at scale when both datasets are large. [Keywords:DuckDBPostGISspatial queriesR-treeGiSTspatial joinperformancegeospatial] — More in DuckDB