Skip to content

Instantly share code, notes, and snippets.

View tanker327's full-sized avatar

Eric tanker327

View GitHub Profile
@tanker327
tanker327 / frontend-project-setup-guide.md
Last active July 6, 2026 17:44
Project Setup Guide

Frontend Project Setup Guide

Use this as the reference when scaffolding or working on this project.

Versions as of July 2026. Targets: Vite 8 (Rolldown), React 19.2+, React Compiler 1.x, Zod 4, Biome 2.x, Vitest 4. If significant time has passed, verify current versions before scaffolding.


Stack

@tanker327
tanker327 / llm-wiki.md
Created April 5, 2026 15:34 — 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.

Screen Quick Reference

Basic

Description Command
Start a new session with session name screen -S <session_name>
List running sessions / screens screen -ls
Attach to a running session screen -x
Attach to a running session with name screen -r
@tanker327
tanker327 / System Design.md
Created February 26, 2024 14:26 — forked from vasanthk/System Design.md
System Design Cheatsheet

System Design Cheatsheet

Picking the right architecture = Picking the right battles + Managing trade-offs

Basic Steps

  1. Clarify and agree on the scope of the system
  • User cases (description of sequences of events that, taken together, lead to a system doing something useful)
    • Who is going to use it?
    • How are they going to use it?
@tanker327
tanker327 / gist:bd898f63c0b6254df315
Last active August 29, 2015 14:25
A test for github gist

My first GitHub Gist

here is the content.

@tanker327
tanker327 / git.css
Last active August 29, 2015 14:23 — forked from neilgee/git.css
/* Set up Git Configuration */
git config --global user.email "you@yourdomain.com"
git config --global user.name "Your Name"
git config --global core.editor "vi"
git config --global color.ui true