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.

@acmerfight
acmerfight / karpathy-llm-wiki-explained.md
Last active September 3, 2026 04:11
Karpathy LLM Wiki 方法论深度解读 — 基于原文的完整讲解与事实核查

🧠 Karpathy "LLM Wiki" 方法论深度解读

Andrej Karpathy — OpenAI 联合创始人、前 Tesla AI 负责人、"Vibe Coding" 提出者
原始推文:2026 年 4 月 2-3 日(因时区差异,不同来源记录为 2 日或 3 日) · GitHub Gist(5000+ ⭐)
本文基于原始推文与 Gist 原文,经多源交叉验证


〇、一句话概括

@kernertun
kernertun / Tarea 3_ Grupo 1.md
Last active September 3, 2026 04:06 — forked from LuGash/Tarea 3_ Grupo 1.md
Tarea 3_ Comunicación Asertiva_ Grupo1.

Tarea #3 - Laboratorio de Comunicación Asertiva

Grupo: 1

Integrantes:

  • Luis Angel García Vásquez - 202505370
  • Christian Josué Granados Sabán - 202502343
  • David Antonio Meza Silva - 202500708
  • Kerner Baltazar Tún Xón - 202505239
  • [Nombre Integrante 5]
@LuGash
LuGash / Tarea 3_ Grupo 1.md
Created September 2, 2026 22:14
Tarea 3_ Comunicación Asertiva_ Grupo1.

Tarea #3 - Laboratorio de Comunicación Asertiva

Grupo: 1 Integrantes:

  • [Nombre Integrante 1]
  • [Nombre Integrante 2]
  • [Nombre Integrante 3]
  • [Nombre Integrante 4]
  • [Nombre Integrante 5]
  • [Nombre Integrante 6]
@NateWeiler
NateWeiler / How to permalink to a gist's raw file.md
Last active September 3, 2026 03:32
How to permalink to a gist's raw file. Linking to the raw version of a gist.
@LuGash
LuGash / Tarea 3_ Grupo 1.md
Last active September 3, 2026 03:17 — forked from Christian21gs/Tarea 3_ Grupo 1.md
Tarea 3_ Comunicación Asertiva_ Grupo1.

Tarea #3 - Laboratorio de Comunicación Asertiva

Grupo: 1

Integrantes:

  • Luis Angel García Vásquez - 202505370
  • Christian Josué Granados Sabán - 202502343
  • David Antonio Meza Silva - 202500708
  • [Nombre Integrante 4]
  • [Nombre Integrante 5]
@vaualbus
vaualbus / .cpp
Created September 9, 2018 16:17
This file replace the msvc CRT and allow you to init static variables and TLS
#if _CRT_DISABLE
extern "C" int _fltused = 0x9875;
#define WIN32_LEAN_AND_MEAN
#include <stdint.h>
#include <limits.h>
#include <windows.h>
//#include <Windows.h>
@shuohangwang
shuohangwang / add_tests.sh
Created September 3, 2026 02:37
descope authzcache build stubs and issue test suite
#!/usr/bin/env bash
set -euo pipefail
# Replace the pre-ABAC test files that no longer compile against the new signatures.
rm -f internal/services/caches/projectauthzcache_test.go internal/services/authz_test.go internal/controllers/controller_test.go
mkdir -p "$(dirname "internal/services/cel/conditional_test.go")"
cat > "internal/services/cel/conditional_test.go" <<'TEST_EOF'
package cel_test