Clear All
Page 3 of 40 (Total items: 790)
GraphRAG Part 2: Minimum Viable GraphRAG
In Part 1, we explored why GraphRAG matters. Now let's build a minimum viable GraphRAG with three extraction modes: Mode LLM Calls Best For Heuristic (default) 0 per chunk Fast indexing, structured...

Saturday, 27 December 2025 14:00

//

13 minute read

GraphRAG: Why Vector Search Breaks Down at the Corpus Level
Your RAG system is great at "needle" questions: retrieve a few relevant chunks and synthesise an answer. It struggles with two common query types: Sensemaking: "What are the main themes across this...

Friday, 26 December 2025 12:00

//

21 minute read

Probability Is Not a System: The Ten Commandments of LLM Use
I keep seeing the same failure mode in "AI-powered" systems: LLMs are being asked to do jobs we already solved decades ago - badly, probabilistically, and without guarantees. This isn't cutting edge....

Thursday, 25 December 2025 12:40

//

15 minute read

DataSummarizer: Fast Local Data Profiling
Most “chat with your data” systems make the same mistake: they treat an LLM as if it were a database. They shove rows into context, embed chunks, or pick “representative samples” and hope the model...

Monday, 22 December 2025 18:30

//

6 minute read

DocSummarizer Part 3 - Advanced Concepts: The "I Went Too Far 🤦" Deep Dive
This is Part 3 of the DocSummarizer series: Part 1: Building a Document Summarizer with RAG - The architecture and why the pipeline approach beats naive LLM calls Part 2: Using the Tool - Quick-start...

Sunday, 21 December 2025 12:00

//

30 minute read

DocSummarizer Part 2 - Using the Tool
GitHub release .NET Version This is Part 2 of the DocSummarizer series. See Part 1 for the architecture and patterns, or Part 3 for the deep technical dive into embeddings and retrieval. Turn...

Sunday, 21 December 2025 11:00

//

21 minute read

Stop Shoving Documents Into LLMs: Build a Local Summarizer with Docling + RAG
Here's the mistake everyone makes with document summarization: they extract the text and send as much as fits to an LLM. The LLM does its best with whatever landed in context, structure gets...

Sunday, 21 December 2025 10:00

//

13 minute read

Fetching and Analysing Web Content with LLMs in C#
📌 Note: This article teaches the fundamentals of web content extraction with LLMs using the simplest possible approach. For production use cases (web summarization, document analysis, agent tools),...

Friday, 19 December 2025 10:00

//

16 minute read

How to Analyse Large CSV Files with Local LLMs in C#
Series: Local LLMs for Data - Part 1 of 2 Here's the mistake everyone makes: they try to feed their CSV into an LLM. Don't. LLMs should generate queries, not consume data. You've got a 500MB CSV file...

Thursday, 18 December 2025 10:00

//

18 minute read

Why I Don't Use LangChain (and What I Do Instead)
I'm a .NET developer. When I started building LLM-powered systems, everyone pointed me toward LangChain. "It's the standard," they said. "All the examples use it." And they were right - if you're in...

Thursday, 18 December 2025 10:00

//

14 minute read

Multiplatform AOT with SQLite: How to get it working!
Native AOT promises to turn your .NET applications into tiny, self-contained executables that start instantly and run anywhere—no runtime installation required. It's magic when it works. But add...

Tuesday, 16 December 2025 15:00

//

23 minute read

Building a "Lawyer GPT" for Your Blog - Part 9: Document Ingestion with Docling
Welcome to Part 9! In previous parts, we've built a robust RAG system that processes markdown blog posts and makes them searchable through semantic embeddings. Now it's time to expand our capabilities...

Monday, 15 December 2025 22:45

//

9 minute read

mostlylucid.ephemeral.complete; a strange concurrent systems pattern system in an LRU cache.
Well this has been my obsession for the past week. See the previous parts and what led to this; 'What if an LRU was an execution context.'. Now it's a set of 30 Nuget packages covering most major...

Sunday, 14 December 2025 13:35

//

20 minute read

Building a Frontend Before the API is Ready: Without Brittle Fixtures
How many times have you been blocked waiting for backend APIs to be ready? Or spent hours maintaining brittle mock data that becomes stale the moment requirements change? Enter mostlylucid.mockllmapi...

Saturday, 13 December 2025 14:30

//

14 minute read

Ephemeral Signals - Turning Atoms into a Sensing Network
A tiny primitive that turns concurrent work into a coordinated, adaptive system. "The Ephemeral Signals Pattern" In Part 1 we built ephemeral execution - bounded, private, self-cleaning async...

Friday, 12 December 2025 16:00

//

22 minute read

Building a Reusable Ephemeral Execution Library
In Part 1: Fire and Don't Quite Forget, we explored the theory behind ephemeral execution - bounded, private, debuggable async workflows that remember just enough to be useful and then evaporate. This...

Friday, 12 December 2025 14:00

//

13 minute read

Fire and Don't Quite Forget - Ephemeral Execution Without State
Most async systems either remember too much (logs, queues, persisted junk you never wanted)… or they remember nothing at all (fire-and-forget black holes that vanish the moment something goes...

Friday, 12 December 2025 12:00

//

15 minute read

Learning LRUs - When Exceeding Capacity Makes Your System Better
Most systems degrade when overloaded. Memory fills up, queries slow down, users complain, servers crash. A few unusual ones get better. This article shows how an LRU-based behavioural memory becomes...

Tuesday, 09 December 2025 12:00

//

19 minute read

Cooking with DiSE (Part 4): Building Systems That Learn, Adapt, and Evolve
Most software architectures assume the system is static. DiSE assumes the system is alive. Note: This is Part 4 in the "Cooking with DiSE" series. See Part 1, Part 2: Graduated Apprenticeships, and...

Monday, 08 December 2025 12:00

//

15 minute read

StyloBot: Fighting Back Against Scrapers (Part 1)
Scrapers are about to start using AI to mimic real users - so I built a bot detector that learns, adapts, and fights back. Read Part 2: How Bots Got Smarter - The New Frontier in Bot Detection 👉 See...

Monday, 08 December 2025 07:00

//

17 minute read

Page 3 of 40 (Total items: 790)
logo

© 2026 Scott Galloway — Unlicense — All content and source code on this site is free to use, copy, modify, and sell.