Skip to content

Instantly share code, notes, and snippets.

View sundeepteki's full-sized avatar
🎯
Focusing

Sundeep Teki, PhD sundeepteki

🎯
Focusing
View GitHub Profile
@Tims101
Tims101 / Top 50 Universities List.md
Last active January 14, 2025 10:17
Top 50 Computer Science Universities

Universities

Massachusetts Institute of Technology (MIT)

###phd###

  • MIT Graduate Admissions link
  • PhD Program - MIT Sloan School of Management link
  • MIT - Massachusetts Institute of Technology link
  • to view contact information for all departments. - MIT link
@LeCoupa
LeCoupa / bash-cheatsheet.sh
Last active November 10, 2025 05:54
Bash CheatSheet for UNIX Systems --> UPDATED VERSION --> https://github.com/LeCoupa/awesome-cheatsheets
#!/bin/bash
#####################################################
# Name: Bash CheatSheet for Mac OSX
#
# A little overlook of the Bash basics
#
# Usage:
#
# Author: J. Le Coupanec
# Date: 2014/11/04
@kastnerkyle
kastnerkyle / gmmhmm.py
Last active July 4, 2025 10:50
GMM-HMM (Hidden markov model with Gaussian mixture emissions) implementation for speech recognition and other uses
# (C) Kyle Kastner, June 2014
# License: BSD 3 clause
import scipy.stats as st
import numpy as np
class gmmhmm:
#This class converted with modifications from https://code.google.com/p/hmm-speech-recognition/source/browse/Word.m
def __init__(self, n_states):
self.n_states = n_states