Skip to content

Instantly share code, notes, and snippets.

View jpstokes's full-sized avatar
🎯
Focusing

Jason Stokes jpstokes

🎯
Focusing
View GitHub Profile
<?php
/**
* The base configuration for WordPress
*
* The wp-config.php creation script uses this file during the
* installation. You don't have to use the web site, you can
* copy this file to "wp-config.php" and fill in the values.
*
* This file contains the following configurations:
*
from __future__ import print_function
from time import time
import logging
import matplotlib.pyplot as plt
from sklearn.model_selection import train_test_split
from sklearn.model_selection import GridSearchCV
from sklearn.datasets import fetch_lfw_people
from sklearn.metrics import classification_report
@jpstokes
jpstokes / .tmux.conf
Created October 3, 2017 11:57
tmux.conf
# 0 is too far from ` ;)
set -g base-index 1
# set-option -g base-index 1
# Automatically set window title
set-window-option -g automatic-rename on
set-window-option -g pane-base-index 1
set-option -g set-titles on
# enable mouse to select window
@jpstokes
jpstokes / docker-compose.prod.yml
Created September 21, 2017 18:45
docker-compose
version: '3'
services:
backend:
build :
context: ./backend
dockerfile: Dockerfile.backend
entrypoint: 'bundle exec puma -C config/puma.rb'
volumes:
- ./backend:/home/app/backend
ports:
# 0 is too far from ` ;)
set -g base-index 1
# set-option -g base-index 1
# Automatically set window title
set-window-option -g automatic-rename on
set-window-option -g pane-base-index 1
set-option -g set-titles on
# enable mouse to select window
@jpstokes
jpstokes / .tmux.conf
Last active August 29, 2015 14:25
My Tmux Configuration
# 0 is too far from ` ;)
set -g base-index 1
# set-option -g base-index 1
# Automatically set window title
set-window-option -g automatic-rename on
set-window-option -g pane-base-index 1
set-option -g set-titles on
# enable mouse to select window
# Path to your oh-my-zsh installation.
export ZSH=$HOME/.oh-my-zsh
export EDITOR='vim'
# Set name of the theme to load.
# Look in ~/.oh-my-zsh/themes/
# Optionally, if you set this to "random", it'll load a random theme each
# time that oh-my-zsh is loaded.
ZSH_THEME="superjarin"
set nocompatible
filetype off
set rtp+=~/.vim/bundle/vundle/
call vundle#rc()
Plugin 'gmarik/vundle'
" Plugin 'tpope/vim-dispatch'
Plugin 'tpope/vim-endwise'
Plugin 'tpope/vim-git'