Skip to content

Instantly share code, notes, and snippets.

View wisdomfusion's full-sized avatar

Hu Zhifei wisdomfusion

View GitHub Profile
@wisdomfusion
wisdomfusion / install-gcc-4.9.3-on-centos6.txt
Last active November 29, 2024 08:50
Install gcc-4.9.3 on CentOS 6
yum install libmpc-devel mpfr-devel gmp-devel
cd /usr/src/
curl ftp://ftp.mirrorservice.org/sites/sourceware.org/pub/gcc/releases/gcc-4.9.3/gcc-4.9.3.tar.bz2 -O
tar xvfj gcc-4.9.3.tar.bz2
cd gcc-4.9.3
./configure --disable-multilib --enable-languages=c,c++
make -j `grep processor /proc/cpuinfo | wc -l`
make install
@wisdomfusion
wisdomfusion / ip_query.pl
Last active June 3, 2016 06:56
IP query with IP::QQWry and qqwry.dat
#!/usr/bin/perl -w
use strict;
use v5.12;
use utf8;
use Encode;
use IP::QQWry::Decoded;
use Carp qw( croak );
binmode(STDIN, ':encoding(utf8)');
@wisdomfusion
wisdomfusion / llm-wiki.md
Created April 11, 2026 22:10 — 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.