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.

@bodnarlajos
bodnarlajos / readme.md
Created May 24, 2024 17:07
This Simply Disables all useless or uneeded for windows 10/11 services to make your computer faster.

Make sure you run this script as admin,otherwise it will fail to execute

About this script

Warning this is a hardcore removal script, unlike the others, This tries to fully remove almost all uneeded services, without making the computer unusable

Disclamer

By running or using this script you accept. I am not hield responsible if anything breaks or stops working on your computer/machine. That is your fault and it is up to you to re-enable the service.

Printers will not work with this script.

@Makalamar
Makalamar / index.html
Last active September 21, 2026 18:49
Epic's header test placeholder -- notmaka
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="icon" href="https://upload.wikimedia.org/wikipedia/commons/3/31/Epic_Games_logo.svg" />
<title>cdn.epicgames.com</title>
<!-- import the webpage's stylesheet -->
@AKCodez
AKCodez / claude-code-statusline-guide.md
Last active September 21, 2026 18:46
Claude Code Status Line - Complete Guide: all fields, config, ready-to-use scripts

Claude Code Status Line - Complete Guide: all fields, config, ready-to-use scripts

Claude Code Status Line — Complete Guide

A persistent, customizable bar at the bottom of Claude Code that shows real-time session data.

image
@aravindnc
aravindnc / Activate_Windows_8_8.1_10_and_11_Pro_for_Free.md
Created February 19, 2024 17:15
Activate Windows 8, 8.1, 10 and 11 Pro for Free

Activate Windows 8, 8.1, 10 and 11 Pro for Free

A guide how to get and activate Windows 8, 8.1, 10 and 11 Pro for free!

NOTE

If you see the Windows keyboard button in this guide; and you can't find it on your keyboard, you likely have/had Windows 10 which has the button . If you can't find that one, you likely have a PC that has been upgraded to Windows 8/8.1/10/11 from Windows 8.1/8/7/Vista/XP and other ones. If you have one of those, refer the Windows key button to as yours. A list of them is below:

Windows key buttons

- Windows 11

- Windows 10

@markfulton
markfulton / FULL-ADMIN-PANEL-PROMPT.md
Last active September 21, 2026 18:44
Full Admin Panel Prompt | Agent Ops Club

Build an admin dashboard that helps you run your app

Copy the complete prompt below into your coding agent inside your existing project. It adapts to your stack and business model. A membership app, marketplace, internal tool and SaaS should not all get the same metrics.

Inspired by the Agent Ops Club admin implementation: signup sources, member activity, free-to-paid activity, learning progress, downloads and labeled revenue estimates. These are examples of useful questions, not a promise that your project already collects the required data.

Copy from here

Act as a senior product engineer, analytics engineer and admin UX designer. Build a production-quality admin insights and operations dashboard for THIS application. Work in the existing repository and deliver functioning software, not only a plan or a mockup.

@nxfx21
nxfx21 / Reset CrossOver Trial.md
Last active September 21, 2026 18:44
Resets the CrossOver Trial. This script is only intended for educational purposes. This script is ONLY for macOS. THIS SCRIPT IS NOT FOR PIRACY.

Read this first!

This is important!

Note

Ensure CrossOver.app is installed in your /Applications folder and has been opened at least once before using this script.

Tested on macOS 14+, from CrossOver 22.0.0 onwards, on both Apple Silicon and Intel Macs.


1. Download the script

@antoniopicone
antoniopicone / setup_xe_gpu.sh
Last active September 21, 2026 18:35
Install Intel xe drivers for GPU (on Arrow Lake) on Fedora, replacing legacy i915 drivers
#!/usr/bin/env bash
set -euo pipefail
# ---------------------------------------------------------------------------
# Intel Xe GPU driver + video acceleration setup for Fedora 44
# Target: Intel Arrow Lake-H / Arc 140T (Xe2/Xe-LPG+ iGPU), e.g. Core Ultra
# 7 255H. Should also work on other Intel Gen8+ iGPUs (Meteor Lake, Lunar
# Lake, Battlemage-based) with no changes.
#
# What this script does:
# 1. Detects the Intel GPU PCI device ID automatically (no hardcoded IDs).
@i0Z3R0
i0Z3R0 / gtranslatebypass.js
Last active September 21, 2026 18:34
Bypass blocked websites with this simple one-liner. Add this code as a page bookmark on Chrome (I haven't tested it on other platforms yet. Click on it and enter an address (excluding http/https) and press ok to visit an unblocked version of that website. This works and can let you access almost any blocked website by having Google Translate tra…
javascript:(function(){var destination = prompt("Destination (Don't include http/https: ");window.location='https://translate.google.com/translate?sl=auto&tl=en&u='+'https://'+destination})();