Skip to content

Instantly share code, notes, and snippets.

View tomrfitz's full-sized avatar

Thomas FitzGerald tomrfitz

View GitHub Profile
@karpathy
karpathy / microgpt.py
Last active February 22, 2026 06:46
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
@HenryLoenwind
HenryLoenwind / install.sh
Last active May 18, 2024 11:56
Script to install and update IC Script Hub. Requirements: sh-compatible shell, git and unzip
#!/bin/sh
echo "IC Script Hub Installer v 1.0.1"
echo ""
if [ -d "scripthub" ]; then
echo "Updating Script Hub"
git -C scripthub pull
else
echo "Getting Script Hub"