Skip to content

Instantly share code, notes, and snippets.

@jottr
jottr / llm-wiki.md
Created April 15, 2026 14:16 — forked from karpathy/llm-wiki.md
llm-wiki

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.

@jottr
jottr / Spon.md
Created April 10, 2026 18:25
SpOn.nd

1. Problematische Vermischung von Erklärungsebenen

Der Artikel bewegt sich zwischen drei Ebenen, ohne sie sauber zu trennen:

  • evolutionsbiologisch (Fitness, Reproduktion, Paarbindung)
  • kulturhistorisch (Normen, Religion, Institutionen)
  • ideengeschichtlich (Romantik, Moralvorstellungen)

Das zentrale Problem: → Es wird implizit suggeriert, dass diese Ebenen kausal linear zusammenhängen, obwohl sie oft orthogonal oder nur lose gekoppelt sind.

typeset -U path cdpath fpath manpath
for profile in ${(z)NIX_PROFILES}; do
fpath+=($profile/share/zsh/site-functions $profile/share/zsh/$ZSH_VERSION/functions $profile/share/zsh/vendor-completions)
done
HELPDIR="/nix/store/i3lac62jigipwhsrjd10zr9z8ihfqmwb-zsh-5.9/share/zsh/$ZSH_VERSION/help"
typeset -U path cdpath fpath manpath
for profile in ${(z)NIX_PROFILES}; do
fpath+=($profile/share/zsh/site-functions $profile/share/zsh/$ZSH_VERSION/functions $profile/share/zsh/vendor-completions)
done
HELPDIR="/nix/store/i3lac62jigipwhsrjd10zr9z8ihfqmwb-zsh-5.9/share/zsh/$ZSH_VERSION/help"
BREAKING BAD
by
Vince Gilligan
5/27/05
AMC
Sony Pictures Television
TEASER
[convert-UUP]
AutoStart =1
AddUpdates =1
Cleanup =0
ResetBase =0
NetFx3 =0
StartVirtual =0
wim2esd =0
SkipISO =0
SkipWinRE =0
@jottr
jottr / install-config.sh
Created January 31, 2022 17:07 — forked from obfischer/install-config.sh
Generate Karabiner Elements configuration out of y YAML document
set -x
cat karabiner.yaml | ruby -r yaml -r json -e 'puts YAML.load($stdin.read).to_json' \
| jq --sort-keys 'del(.definitions)' > karabiner.json
// This renders the wiring diagram for the Makerbase 3D Touch probe for the Crealty 32bit Ender 3v2 board
digraph {
//rankdir=LR;
node [ shape=record ];
touch [label="
<G1> G|
<V> 5V|
<S> S|

How to set up the Raspberry Pi Zero W with SSH and Wifi

Download Raspbian

Use etcher to flash the image to SD.

Prepare the SD Card

  • Mount the SD and $ cd /Volumes/boot/
@jottr
jottr / config.yml
Created April 23, 2018 18:10 — forked from phra/config.yml
Update Chrome to latest version on CircleCI 2.0
- run: #STABLE
name: Install Chromedriver latest version
command: |
sudo apt-get update
sudo apt-get install lsb-release libappindicator3-1
curl -L -o google-chrome.deb https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
sudo dpkg -i google-chrome.deb
sudo sed -i 's|HERE/chrome"|HERE/chrome" --no-sandbox|g' /opt/google/chrome/google-chrome
rm google-chrome.deb