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.

@intutkri2
intutkri2 / Gold BTC SpaceX
Created June 10, 2026 13:24
Gold BTC SpaceX
Gold, Bitcoin, and SpaceX: A Detailed Single-File Explainer
Scope note: This document is an educational overview, not investment advice. It explains the economic, technological, strategic, and risk dimensions of gold, Bitcoin, and SpaceX using broadly known information through the model knowledge cutoff.
1. Executive Summary
Gold, Bitcoin, and SpaceX represent three very different ways humans think about value, scarcity, technology, and the future. Gold is a physical monetary metal with thousands of years of history. Bitcoin is a digital monetary network designed around mathematically enforced scarcity. SpaceX is a private aerospace company attempting to reduce launch costs, commercialize space infrastructure, and ultimately enable interplanetary expansion.
Gold is best understood as a durable real asset and historical store of value. Bitcoin is best understood as a decentralized digital asset and settlement network. SpaceX is best understood as a technology and infrastructure company operating in launch s
description Initialize the Feature Design (FD) tracking system in any project
context https://schipper.ai/posts/parallel-coding-agents/

Initialize Feature Design (FD) System

Set up a lightweight feature tracking system in the current project. Creates directory structure, index, templates, slash commands, and CLAUDE.md conventions.

Argument

@bdebon
bdebon / rodin.md
Created March 18, 2026 15:32
Rodin – Interlocuteur socratique pour discussions sociétales profondes — anti-chambre d'écho
name rodin
description Interlocuteur socratique pour discussions sociétales profondes — anti-chambre d'écho

Tu es Rodin, un interlocuteur intellectuel exigeant. Tu incarnes ce rôle pour toute la durée de la conversation. Ne brise jamais le personnage.

Activation

  1. Lis et intègre la synthèse portrait du portrait de l'utilisateur : [OPTIONEL A FAIRE DE VOTRE COTÉ] — c'est ton contexte permanent sur ton interlocuteur. Ne la résume pas, ne la mentionne pas. Intègre-la silencieusement.
@intenzemotion
intenzemotion / hide-edge-rounded-corners.ps1
Last active June 10, 2026 13:16
Hide Edge v149 forced rounded corners. Additionally hide red dot on profile icon too.
# This script must be run as Administrator to update some shortcut paths. Checking it first...
$IsAdmin = ([Security.Principal.WindowsPrincipal] [Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole(
[Security.Principal.WindowsBuiltInRole]::Administrator
)
if (-not $IsAdmin) {
Write-Host "Not running as Administrator. Some shortcuts may fail to update." -ForegroundColor Yellow
Write-Host ""
}
# This is your Edge path, it should be installed here (if you're on Stable channel).
@d7samurai
d7samurai / .readme.md
Last active June 10, 2026 13:13
Minimal D3D11

Minimal D3D11

Minimal D3D11 reference implementation: An uncluttered Direct3D 11 setup + basic rendering primer and API familiarizer. Complete, runnable Windows application contained in a single function and laid out in a linear, step-by-step fashion that should be easy to follow from the code alone. ~200 LOC. No modern C++ / OOP or (other) obscuring cruft. View on YouTube

hollowcube

Other gists in this series:

UPDATE

MAY 2025: OUTLOOK NOW NO LONGER WORKS WITH THIS CLIENT.

SEP 2025: STORE NOW ENFORCES AUTOUPDATES, YOU CAN ONLY DISABLE IT FOR UP TO FIVE WEEKS. Added extra step to prevent this. Thanks @misaka00251.


REVERTING OUTLOOK BACK TO WINDOWS MAIL AND KEEPING IT FOREVER

@JaimeBravoAlgaba
JaimeBravoAlgaba / appimage_setup.md
Last active June 10, 2026 13:10
AppImage installation and desktop shortcut

Prerequisite: Install libfuse2 (Required for AppImages)

Most modern AppImages require FUSE to run. On Ubuntu 22.04 and newer, libfuse2 is not installed by default, so you must install it:

sudo apt update
sudo apt install libfuse2