Skip to content

Instantly share code, notes, and snippets.

@AraLawrence
AraLawrence / .vimrc
Created January 23, 2017 16:07
Ara's current settings
"" BASIC SETUP
filetype plugin indent on
set omnifunc=syntaxcomplete#Complete
syntax on
set encoding=utf-8
set number
set tabstop=4
set shiftwidth=4
set expandtab
@AraLawrence
AraLawrence / a_spilt.py
Created December 28, 2015 04:22
Summa Swap
summa = open("../summa.txt", 'r')
sum_answers = open("../buckets/answers.txt", "w")
summa_split = summa.read().split(' ')
switch = {'\n':' ', '_______________________':'', ']':'', '[':'', '(':'',
')':'', '_':'', ' man ':' humanity ', " man's ":' human ',
' man':' human', ' His ':' Her ', ' He ':' She ', ' Himself ':' Herself ',
' men ':' people '}
def check_answers():