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.

@Orangera1n
Orangera1n / 15on16sepactivationguide.md
Last active July 26, 2026 08:33
How to activate a device on iOS 15 that was futurerestored on 16 sep

whatisthisthisthisthisthisthis?

This is a guide on how to activate ur idevice on ios 15 (maybe ios 14 idk) when its futurerestored on 16 sep.

DISCLAIMER: I am very aware people might use this to bypass icloud, but I am NOT encouraging you to bypass icloud.

ALSO: THIS IS RECOMMENDED FOR ADVANCED USERS ONLY, i am not responsable for ur device being broken (tho idk how it becomes broken via this)

also, i've only tested this on macOS, might work on linux tho if u replace darwin with linux and shit.

@rohitg00
rohitg00 / llm-wiki.md
Last active July 26, 2026 08:31 — forked from karpathy/llm-wiki.md
LLM Wiki v2 — extending Karpathy's LLM Wiki pattern with lessons from building agentmemory

LLM Wiki v2

A pattern for building personal knowledge bases using LLMs. Extended with lessons from building agentmemory 20K+ Stars ⭐️, a persistent memory engine for AI coding agents.

This builds on Andrej Karpathy's original LLM Wiki idea file. Everything in the original still applies. This document adds what we learned running the pattern in production: what breaks at scale, what's missing, and what separates a wiki that stays useful from one that rots.

What the original gets right

The core insight is correct: stop re-deriving, start compiling. RAG retrieves and forgets. A wiki accumulates and compounds. The three-layer architecture (raw sources, wiki, schema) works. The operations (ingest, query, lint) cover the basics. If you haven't read the original, start there.

@ahmadabulawi
ahmadabulawi / login.feature
Created July 26, 2026 08:25
Part 3: Cucumber Framework
Feature: User Authentication
Scenario: Successful Login with Valid Credentials
Given the user is on the login page
When the user enters "valid_user" and "secure_password"
And clicks the login button
Then the user should be redirected to the dashboard page
title Автономная продуктовая компания на базе Codex
subtitle Методичка: от первоначальной идеи и полного ТЗ до проверенного локального приложения и контролируемого релиза
version 0.1
date 2026-07-24

Автономная продуктовая компания на базе Codex

Методичка: от первоначальной идеи и полного ТЗ до проверенного локального приложения и контролируемого релиза.

# Run these commandline commands first to ensure you are able to run the Python script successfully.
# It will install to Python version 3.14 (the current version as of 2026-07-26).
# Then it will install the requests module which enables fetching data from websites which is what this script is dependent on.
# This allows the script to download from webservers, in this specific script it downloads music files.
# Important Notice: It appears you are only able to do this to your own BandLab songs if you have a Session Cookie ID from the website itself.
# pip install requests
# py -3.14 -m pip install requests
# py -m ensurepip --upgrade
# py -m pip install --upgrade pip
title Автономная продуктовая компания на базе Claude Code
subtitle Посадка оркестраторской модели: владелец остаётся продуктом, агент ведёт производство
version 1.0
date 2026-07-25

Автономная продуктовая компания на базе Claude Code

Парный документ к методичке «Автономная продуктовая компания на базе Codex». Методология одна; здесь — её посадка на архитектуру и инструменты Claude Code. И в отличие от «сделайте сами» — эта посадка уже реализована и опубликована: Claude Code Starter v6.3.0 «Orchestrator Model».

@patriciogonzalezvivo
patriciogonzalezvivo / GLSL-Noise.md
Last active July 26, 2026 08:14
GLSL Noise Algorithms

Please consider using http://lygia.xyz instead of copy/pasting this functions. It expand suport for voronoi, voronoise, fbm, noise, worley, noise, derivatives and much more, through simple file dependencies. Take a look to https://github.com/patriciogonzalezvivo/lygia/tree/main/generative

Generic 1,2,3 Noise

float rand(float n){return fract(sin(n) * 43758.5453123);}

float noise(float p){
	float fl = floor(p);
  float fc = fract(p);
@lukaskubanek
lukaskubanek / SwiftUIListRowHighlightFix.swift
Last active July 26, 2026 08:12
A workaround for fixing SwiftUI’s list row highlighting behavior by preventing unwanted delays
import InterposeKit
import SwiftUI
/// A workaround for an issue in SwiftUI related to delayed highlighting of list rows upon user
/// interaction, rendering it inconsistent with UIKit.
///
/// This fix implements the solution proposed by Léo Natan and utilizes `InterposeKit` by Peter
/// Steinberger to modify the behavior of `UICollectionViewCell` instances used internally
/// by SwiftUI.
///
Morty Proxy This is a proxified and sanitized view of the page, visit original site.