Skip to content

Instantly share code, notes, and snippets.

View aarongodin's full-sized avatar
🏃‍♂️
encours

Aaron Godin aarongodin

🏃‍♂️
encours
View GitHub Profile
function rm-swap {
# Recursively remove vim swap files
find . -name "*.swp" -print0 | xargs -0 rm -rf
}
function tma() {
tmux attach -t $1
}
function tml() {
tmux list-sessions
}
function tmn() {
tmux new -s $1
@aarongodin
aarongodin / .vimrc
Last active February 23, 2016 16:14
" iMproved!
set nocompatible
" Vundle initialization
filetype off
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" Vundle
Plugin 'VundleVim/Vundle.vim'
@aarongodin
aarongodin / parallel.html
Last active May 19, 2016 22:09
Parallel AJAX with Rx.js
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Parallel AJAX</title>
<style>
body {
font-family: Arial;