Skip to content

Instantly share code, notes, and snippets.

View borisdev's full-sized avatar

Boris borisdev

View GitHub Profile
child's question mom's response rationale
Should I clean my toys? Yes Prioritize cleaning up.
Should I run accross the busy street? No Prioritize safety.
Should I go to school? Yes Prioritize schooling.
child's question, mom's response, rationale
Should I clean my toys?, Yes, Prioritize cleaning up.
Should I run accross the bust street?, No, Prioritize safety.
Should I go to school?, Yes, Prioritize schooling.
@borisdev
borisdev / .pylintrc
Created October 15, 2014 21:58
.pylintrc default (initial)
[MASTER]
# Specify a configuration file.
#rcfile=
# Python code to execute, usually for sys.path manipulation such as
# pygtk.require().
#init-hook=
# Profiled execution.
@borisdev
borisdev / .profile
Created October 15, 2014 21:52
.profile
alias ls="ls -GpFh"
# history size of commands saved
export HISTSIZE=2000
alias ls="ls -Gp"
# GIT PROMPT START
source ~/.git-prompt.sh
GIT_PS1_SHOWUPSTREAM="auto"
GIT_PS1_SHOWCOLORHINTS="yes"
export PROMPT_COMMAND='__git_ps1 "\u@\h:\W" "\\\$ ";'
@borisdev
borisdev / .vimrc
Created October 15, 2014 21:51
.vimrc
set nocompatible " be iMproved, 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')
" let Vundle manage Vundle, required
@borisdev
borisdev / bashrc
Created October 15, 2014 21:49
.bashrc
source .profile
export ANDROID_HOME=`brew --prefix android`
#export PGDATA='/usr/local/var/postgres'
#export PGHOST=localhost
#alias start-pg='pg_ctl -l $PGDATA/server.log start'
#alias stop-pg='pg_ctl stop -m fast'
#alias show-pg-status='pg_ctl status'
#alias restart-pg='pg_ctl reload'