Skip to content

Instantly share code, notes, and snippets.

View aalind0's full-sized avatar
🎯
Focusing but available.

Aalind Singh aalind0

🎯
Focusing but available.
View GitHub Profile
@zhanwenchen
zhanwenchen / Install NVIDIA Driver and CUDA.md
Last active March 13, 2024 23:42 — forked from wangruohui/Install NVIDIA Driver and CUDA.md
Install NVIDIA CUDA 9.0 on Ubuntu 16.04.4 LTS
@kastnerkyle
kastnerkyle / simple_caverphone.py
Last active May 14, 2019 22:35
Implementation of the Caverphone algorithm for phonetic shrinkage / substitution http://ntz-develop.blogspot.ca/2011/03/phonetic-algorithms.html
from collections import OrderedDict
import itertools
import re
# order of rules is very important
# this + ordered dict guarantees iteration order
def add_to(od, tups):
for tup in tups:
od.update({tup[0]: tup[1]})
return od
@joyrexus
joyrexus / README.md
Last active February 23, 2026 21:20 — forked from liamcurry/gist:2597326
Vanilla JS equivalents of jQuery methods

Sans jQuery

Events

// jQuery
$(document).ready(function() {
  // code
})