Skip to content

Instantly share code, notes, and snippets.

View stevewithington's full-sized avatar
⛑️
solving problems

Steve Withington stevewithington

⛑️
solving problems
View GitHub Profile

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.

@burkeholland
burkeholland / ainstall.md
Last active May 11, 2026 15:32
Ultralight Orchestration

Ultralight Orchestration

A minimal multi-agent system with an orchestrator, a planner, a coder, and a designer working together providing orchestration between Claude, Codex and Gemini.

Instructions

Install all agents listed below into VS Code Insiders...

Title Type Description
@BretFisher
BretFisher / Docker Model Runner Reference.excalidraw.png
Last active April 17, 2026 19:21
Use Open WebUI with Docker Model Runner and Compose
Docker Model Runner Reference.excalidraw.png
@stevewithington
stevewithington / SAP-Tables-Columns-and-Descriptions.sql
Last active October 28, 2022 13:47
SAP: Query recordset of SAP tables, columns/fields, and their descriptions
USE {YOUR-SAP-DBNAME-GOES-HERE};
GO
SELECT
D3L.POSITION AS SOURCE_COLUMN_POSITION
, D2L.TABNAME AS SOURCE_TABLE_NAME
, D2T.DDTEXT AS SOURCE_TABLE_DESC
, D3L.FIELDNAME AS SOURCE_COLUMN_NAME
, D4T.DDTEXT AS SOURCE_COLUMN_DESC
, D4T.REPTEXT AS SOURCE_COLUMN_HEADER
@stevewithington
stevewithington / powershell-create-system-dsn-via-csv-import.md
Last active January 13, 2023 06:12
Powershell: Create/Add Windows System DSN via .CSV Import

Powershell: Create/Add Windows System DSN via .CSV Import

You can create/add/update/get a Windows System DSN pretty easily with Powershell.

Example dsn.csv file

Database, SystemDSN, Server
AAA, AAA_DSN, SomeIP\User
@ChristopherA
ChristopherA / brew-bundle-brewfile-tips.md
Last active May 12, 2026 01:41
Brew Bundle Brewfile Tips

Brew Bundle Brewfile Tips

Copyright & License

Unless otherwise noted (either in this file or in a file's copyright section) the contents of this gist are Copyright ©️2020 by Christopher Allen, and are shared under spdx:Creative Commons Attribution Share Alike 4.0 International (CC-BY-SA-4.) open-source license.

Sponsor

If you more tips and advice like these, you can become a monthly patron on my GitHub Sponsor Page for as little as $5 a month; and your contributions will be multipled, as GitHub is matching the first $5,000! This gist is all about Homebrew, so if you like it you can support it by donating to them or becoming one of their Github Sponsors.

Continent_Name Continent_Code Country_Name Two_Letter_Country_Code Three_Letter_Country_Code Country_Number
Asia AS Afghanistan, Islamic Republic of AF AFG 4
Europe EU Albania, Republic of AL ALB 8
Antarctica AN Antarctica (the territory South of 60 deg S) AQ ATA 10
Africa AF Algeria, People's Democratic Republic of DZ DZA 12
Oceania OC American Samoa AS ASM 16
Europe EU Andorra, Principality of AD AND 20
Africa AF Angola, Republic of AO AGO 24
North America NA Antigua and Barbuda AG ATG 28
Europe EU Azerbaijan, Republic of AZ AZE 31
@croaky
croaky / App.tsx
Last active July 25, 2021 19:55
Parcel + TypeScript + React
import * as React from 'react'
// routing, etc.
import { Reset } from '~/ui/shared/Reset'
export class App extends React.Component {
public render() {
return (
<div>
<title>Dashboard</title>
@berkedel
berkedel / flow-error-icu4c-not-loaded.md
Created April 4, 2018 14:13
dyld: Library not loaded: /usr/local/opt/icu4c/lib/libicui18n.60.dylib

How to solve dyld: Library not loaded: /usr/local/opt/icu4c/lib/libicui18n.60.dylib

brew uninstall --ignore-dependencies node icu4c
brew install node
@stevewithington
stevewithington / tracking-form.cfm
Created February 26, 2018 23:02
Mura: example illustrating how to use a custom form and post the data to a .CFC and then update the display with the results.
<!---
save this file somewhere under your theme (e.g, custom/tracking-form.cfm),
then use [m]$.dspThemeInclude('custom/tracking-form.cfm')[/m] to display it
--->
<form id="trackingform" method="post">
<div class="form-group">
<label for="trackingnumber">Tracking Number</label>
<input type="text" name="trackingnumber" class="form-control" placeholder="Enter tracking number ..." />
</div>