Skip to content

Instantly share code, notes, and snippets.

View jishnuteegala's full-sized avatar

Jishnu Teegala jishnuteegala

View GitHub Profile
@jishnuteegala
jishnuteegala / microgpt.py
Created February 12, 2026 19:27 — forked from karpathy/microgpt.py
microgpt
"""
The most atomic way to train and inference 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
@jishnuteegala
jishnuteegala / .zshrc
Last active January 18, 2026 21:27 — forked from bashbunni/.zshrc
CLI Pomodoro for Mac
# I'll be doing another one for Linux, but this one will give you
# a pop up notification and sound alert (using the built-in sounds for macOS)
# Requires https://github.com/caarlos0/timer to be installed
# Mac setup for pomo
alias work="timer 60m && terminal-notifier -message 'Pomodoro'\
-title 'Work Timer is up! Take a Break 😊'\
-appIcon '~/Pictures/pumpkin.png'\
-sound Crystal"