Skip to content

Instantly share code, notes, and snippets.

View sabinbajracharya's full-sized avatar
🎯
Focusing

Sabin Bir sabinbajracharya

🎯
Focusing
View GitHub Profile
@sabinbajracharya
sabinbajracharya / microgpt.py
Created February 20, 2026 09:39 — 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
@sabinbajracharya
sabinbajracharya / ember.js-with-google-maps.html
Last active August 29, 2015 14:27 — forked from ZogStriP/ember.js-with-google-maps.html
How to use Google Maps with Ember.js
<!DOCTYPE html>
<html>
<head>
<script src="//code.jquery.com/jquery-1.9.1.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/handlebars.js/1.0.0-rc.3/handlebars.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/ember.js/1.0.0-rc.3/ember.js"></script>
<script src="//maps.googleapis.com/maps/api/js?sensor=false"></script>
</head>
<body>
<script>