Skip to content

Instantly share code, notes, and snippets.

View adamki's full-sized avatar
🤙

Adam Ki adamki

🤙
View GitHub Profile
# Path to your oh-my-fish.
set fish_path $HOME/.oh-my-fish
# Path to your custom folder (default path is ~/.oh-my-fish/custom)
#set fish_custom $HOME/dotfiles/oh-my-fish
# Load oh-my-fish configuration.
. $fish_path/oh-my-fish.fish
# Custom plugins and themes may be added to ~/.oh-my-fish/custom
@adamki
adamki / vimrc
Last active February 28, 2016 09:36
set nocompatible " be iMproved, required
filetype off " required
set rtp+=~/.vim/bundle/Vundle.vim " set the runtime path to include Vundle and initialize
call vundle#begin()
Plugin 'vundleVim/vundle.vim' " let Vundle manage Vundle, REQUIRED
Plugin 'scrooloose/syntastic'
Plugin 'scrooloose/nerdtree.git'
Plugin 'kien/ctrlp.vim'
@adamki
adamki / gist:73de255332d0f8651f85
Created September 22, 2015 22:35
Lightning talk outline/Everyday Algoreithms
Here are some algorithms that we use everyday and they influence alot of the tech we user everyday.
#Fourier Transform
basic overview of how awesome this algorithm affects all electronics from cell phones, computers, wi-fi, routers etc.
#Integer Factorization
Brief overview of how, Without this algorithm, cryptography would be much more unsafe.
#Link Analysis
Learn how Google, Facebook, Google+, Facebook, LinkedIn suggestions, Netflix and Hulu for movies, YouTube for videos, etc effect YOU as a wonderful internet user!
@adamki
adamki / object_model_challenges.rb
Last active August 29, 2015 14:27 — forked from JoshCheek/object_model_challenges.rb
object_model_challenges.rb
# Run these with `command + option + n`, NOT `b`
# ===== Toplevel methods are defined where? =====
def rawr!
"#{self} says: rawr!"
end
public :rawr!
# *****