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.

@eightHundreds
eightHundreds / docs.md
Created January 20, 2025 06:58
ast-grep

------ website/blog.md -----

---
sidebar: false
outline: false
---

# ast-grep Blog
@cab404
cab404 / Cab's Fav.json
Last active May 21, 2026 21:08
Active EasyEffects profile for Framework Laptop
{
"output": {
"bass_enhancer#0": {
"amount": 4.0,
"blend": 0.0,
"bypass": false,
"floor": 10.0,
"floor-active": true,
"harmonics": 10.0,
"input-gain": 0.0,
@ndeadly
ndeadly / homebrew_sysmodules.txt
Last active May 21, 2026 21:08
Title IDs for Nintendo Switch sysmodules and system applets
/* Homebrew sysmodules */
0000000000534C56 SaltyNX
00FF0000000002AA BootSoundNX
00FF000053484101 switch-ha-sysmodule
00FF000053484102 switch-ha-overlay-loader
00FF0000636C6BF2 nx-reader
00FF0000636C6BFF sys-clk
00FF00006D7470FF mtp-server-nx
00FF0000A53BB665 SysDVR
00FF0000B378D640 NX-FanControl
@selcukcihan
selcukcihan / software_engineering.md
Created May 21, 2026 17:20
Software engineering in a nutshell
  • NodeJS and JavaScript
    • Event loop
    • Parallel programming
    • Async
    • Libuv and the thread pool
    • Streams and backpressure
    • Worker threads vs child processes
    • Memory model (V8 heap, garbage collection, memory leaks)
    • CommonJS vs ESM modules
  • Clustering and process management (PM2, cluster module)
@rbishop
rbishop / carl_hewitt_actor_model.md
Last active May 21, 2026 21:05
Notes from Carl Hewitt on the Actor Model

Carl Hewitt on Actors

Actor - Fundamental unit of computation, a computation model - not just a form of concurrency

An Actor has three essential elements:

  • 1 - Processing - you have to get something done
  • 2 - Storage - you have to be able to remember things
  • 3 - Communication