Skip to content

Instantly share code, notes, and snippets.

View standoge's full-sized avatar
💾
Byting....

Stanley Melgar standoge

💾
Byting....
View GitHub Profile
@karpathy
karpathy / microgpt.py
Last active February 28, 2026 06:12
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
@Villanuevand
Villanuevand / README-español.md
Last active February 25, 2026 17:06
Una plantilla para hacer un buen README.md. Inspirado en el gist de @PurpleBooth => https://gist.github.com/PurpleBooth/109311bb0361f32d87a2

Título del Proyecto

Acá va un párrafo que describa lo que es el proyecto

Comenzando 🚀

Estas instrucciones te permitirán obtener una copia del proyecto en funcionamiento en tu máquina local para propósitos de desarrollo y pruebas.

Mira Deployment para conocer como desplegar el proyecto.

@miguelbermudez
miguelbermudez / git-aliases-export.sh
Last active May 17, 2025 19:40
Git Aliases from oh-my-zsh git plugin
#
# Aliases
# (sorted alphabetically)
#
# GIT #
alias g 'git'
alias ga 'git add'