Skip to content

Instantly share code, notes, and snippets.

View dreygur's full-sized avatar
⚠️
Cannot read property 'status' of undefined

Rakibul Yeasin dreygur

⚠️
Cannot read property 'status' of undefined
View GitHub Profile
@dreygur
dreygur / microgpt.py
Created May 2, 2026 14:03 — 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
@dreygur
dreygur / carbon-lang-snippets.md
Created August 1, 2022 16:04 — forked from bradtraversy/carbon-lang-snippets.md
Google Carbon Snippets

Google Carbon Snippets

This file contains some of the basic syntax for Google Carbon as well as some info and how to get set up.

The official repo and docs can be found at: https://github.com/carbon-language/carbon-lang

Carbon is an experimental successor to C++. It is NOT ready for production and will not be for a while. This crash course and document were made to explore some of the basic syntax.

How to get started