Skip to content

Instantly share code, notes, and snippets.

View StephenStrickland's full-sized avatar

Stephen Strickland StephenStrickland

  • Staff Engineer @ CoreLogic
  • Atlanta, GA
View GitHub Profile
"""
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
@StephenStrickland
StephenStrickland / building-sync-systems.md
Created August 17, 2024 20:27 — forked from pesterhazy/building-sync-systems.md
Building an offline realtime sync engine

So you want to write a sync system for a web app with offline and realtime support? Good luck. You might find the following resources useful.

Overview articles

@StephenStrickland
StephenStrickland / 0_reuse_code.js
Last active August 29, 2015 14:22
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console