Skip to content

Instantly share code, notes, and snippets.

View pdbg's full-sized avatar
🎯
Focusing

Prakash Bhagat pdbg

🎯
Focusing
View GitHub Profile
@pdbg
pdbg / microgpt.py
Created February 28, 2026 21:29 — 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
@pdbg
pdbg / sed cheatsheet
Created May 3, 2018 09:14 — forked from un33k/sed cheatsheet
magic of sed -- find and replace "text" in a string or a file
FILE SPACING:
# double space a file
sed G
# double space a file which already has blank lines in it. Output file
# should contain no more than one blank line between lines of text.
sed '/^$/d;G'