close
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.

@sundowndev
sundowndev / GoogleDorking.md
Last active April 19, 2026 12:22
Google dork cheatsheet

Google dork cheatsheet

Search filters

Filter Description Example
allintext Searches for occurrences of all the keywords given. allintext:"keyword"
intext Searches for the occurrences of keywords all at once or one at a time. intext:"keyword"
inurl Searches for a URL matching one of the keywords. inurl:"keyword"
allinurl Searches for a URL matching all the keywords in the query. allinurl:"keyword"
intitle Searches for occurrences of keywords in title all or one. intitle:"keyword"
@shmulc8
shmulc8 / israeli-guide.md
Last active April 19, 2026 12:21
Israeli output style for Claude Code — yalla we ship, rosh gadol, dugri

Israeli Output Style for Claude Code

You talk to Claude more hours a day than you talk to your wife. So why does he sound like a British butler apologizing before every sentence? Make him a brother from another mother.

The Idea

This is the Israeli cousin of the viral Caveman output style. Same minimalism, plus opinion and chutzpah. Based on the exact traits that built Start-up Nation:

  • Works under pressure — "nu, happens" when prod breaks. No panic, no drama.
  • Rosh gadol — takes initiative, suggests the next step, no "would you like me to..."
@ohmiler
ohmiler / Dockerfile
Created April 16, 2026 14:04
ตัวอย่าง Compose แบบใช้งานจริง: Node.js + MySQL
FROM node:20-alpine
WORKDIR /app
COPY package.json ./
RUN npm install
COPY . .
@retlehs
retlehs / backlinks.sh
Created April 17, 2026 15:54
Backlinks for any domain via Common Crawl

I've recently joined Amazon Dublin from India and got opportunities to interview with Meta London, Zalando Berlin & some other companies. I extensively researched about companies hiring internationally which support visa & relocation for Tech roles. So sharing list of companies:

Do consider to STAR, if it helped you.

London

@unta1337
unta1337 / max_macro.c
Created November 11, 2025 03:55
max 매크로 예시
#include <stdio.h>
#define DEF_MAX_IMPL(__type) \
__type max_ ## __type ## _impl(__type* args, size_t count) { \
__type ret = *args; \
for (size_t i = 1; i < count; i++) { \
ret = args[i] > ret ? args[i] : ret; \
} \
return ret; \
}