Skip to content

Instantly share code, notes, and snippets.

View anton-roos's full-sized avatar
🪐
Working from Saturn

Anton Roos anton-roos

🪐
Working from Saturn
View GitHub Profile
@karpathy
karpathy / microgpt.py
Last active February 22, 2026 13:47
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
@BFTrick
BFTrick / update-tax-status.sql
Created July 25, 2013 16:25
Update the tax status of all WooCommerce products.
UPDATE `wp_postmeta`
SET meta_value='taxable'
WHERE meta_key='_tax_status'