Skip to content

Instantly share code, notes, and snippets.

View theophoric's full-sized avatar
💭
👾

theophoric theophoric

💭
👾
View GitHub Profile
@theophoric
theophoric / microgpt.py
Created March 4, 2026 20:02 — forked from karpathy/microgpt.py
microgpt
"""
The most atomic way to train and run inference for a GPT in pure, dependency-free Python.
This file is the complete algorithm.
Everything else is just efficiency.
@karpathy
"""
import os # os.path.exists
import math # math.log, math.exp
@theophoric
theophoric / introrx.md
Created June 10, 2016 04:31 — forked from staltz/introrx.md
The introduction to Reactive Programming you've been missing