Skip to content

Instantly share code, notes, and snippets.

@zrks
zrks / .vimrc
Last active November 12, 2017 16:37
here I will store any custom configs for vim
set nocompatible " required
filetype off " required
" set the runtime path to include Vundle and initialize.
set rtp+=~/.vim/bundle/Vundle.vim
" call vundle#begin()
" alternatively, pass a path where Vundle should install plugins.
"call vundle#begin('~/some/path/here')
@zrks
zrks / log_finder.py
Last active October 8, 2015 10:19
simple .log file locator
import os
import stat
count = 0
def file_not_empty(root, file):
if os.stat(os.path.join(root, file))[stat.ST_SIZE] > 0:
return file