Skip to content

Instantly share code, notes, and snippets.

LLM Wiki

A pattern for building personal knowledge bases using LLMs.

This is an idea file, it is designed to be copy pasted to your own LLM Agent (e.g. OpenAI Codex, Claude Code, OpenCode / Pi, or etc.). Its goal is to communicate the high level idea, but your agent will build out the specifics in collaboration with you.

The core idea

Most people's experience with LLMs and documents looks like RAG: you upload a collection of files, the LLM retrieves relevant chunks at query time, and generates an answer. This works, but the LLM is rediscovering knowledge from scratch on every question. There's no accumulation. Ask a subtle question that requires synthesizing five documents, and the LLM has to find and piece together the relevant fragments every time. Nothing is built up. NotebookLM, ChatGPT file uploads, and most RAG systems work this way.

@burkeholland
burkeholland / ainstall.md
Last active April 17, 2026 23:08
Ultralight Orchestration

Ultralight Orchestration

A minimal multi-agent system with an orchestrator, a planner, a coder, and a designer working together providing orchestration between Claude, Codex and Gemini.

Instructions

Install all agents listed below into VS Code Insiders...

Title Type Description
@jboner
jboner / latency.txt
Last active April 17, 2026 23:07
Latency Numbers Every Programmer Should Know
Latency Comparison Numbers (~2012)
----------------------------------
L1 cache reference 0.5 ns
Branch mispredict 5 ns
L2 cache reference 7 ns 14x L1 cache
Mutex lock/unlock 25 ns
Main memory reference 100 ns 20x L2 cache, 200x L1 cache
Compress 1K bytes with Zippy 3,000 ns 3 us
Send 1K bytes over 1 Gbps network 10,000 ns 10 us
Read 4K randomly from SSD* 150,000 ns 150 us ~1GB/sec SSD
@codigoconjuan
codigoconjuan / _variables.scss
Created April 16, 2024 23:48
Variables para Festival de Techno y EDM 2024
// Colores
$verde:#4CB8B3;
$rosa: #F53756;
$amarillo: #fdda00;
$morado: #752F97;
$negro: #000000;
$blanco: #FFFFFF;
#!/usr/bin/env python3
"""One-shot texture setup for the Rust globe viewer.
Downloads the NASA Blue Marble JPEG if not cached, decodes it with Pillow,
resizes to the target dimensions, and writes a binary PPM (P6) file that
globe.rs reads with zero crates.
Usage:
.venv/bin/python convert_texture.py
.venv/bin/python convert_texture.py --url <URL> --width 2880 --height 1440
@bbaudry
bbaudry / chrome-flags.txt
Created October 6, 2020 16:36
List of Chrome flags collected on October 6, 2020, on Chrome Version 85.0.4183.83. chrome://flags/
Temporarily unexpire M83 flags.
Temporarily unexpire flags that expired as of M83. These flags will be removed soon. – Mac, Windows, Linux, Chrome OS, Android
#temporary-unexpire-flags-m83
Default
Temporarily unexpire M84 flags.
Temporarily unexpire flags that expired as of M84. These flags will be removed soon. – Mac, Windows, Linux, Chrome OS, Android
#temporary-unexpire-flags-m84
@uemuraj
uemuraj / symchk.md
Created July 28, 2019 05:56
Windows デバッグ用シンボルファイルのダウンロード

シンボルファイルのダウンロードはもう無くなったそうです。デバッガに付属の symchk.exe でダウンロードします。

以下は Visual Studio 2019 のデフォルトのキャッシュディレクトリにシンボルファイルをダウンロードする例:

symchk /r C:\Windows\SysWOW64 /s SRV*%TEMP%\SymbolCache*https://msdl.microsoft.com/download/symbols
symchk /r C:\Windows\System32 /s SRV*%TEMP%\SymbolCache*https://msdl.microsoft.com/download/symbols

ちょっと罠なのは:

  • Visual Studio の最新をインストールしていると SDK の最新が入った状態になるけれど symchk が無いみたい