This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Prefix | |
set-option -g prefix C-q | |
# set-option -g prefix C-z | |
setw -g utf8 on | |
set -g status-utf8 on | |
set -g status-interval 10 | |
set -g status-bg colour100 | |
setw -g window-status-current-fg black | |
setw -g window-status-current-bg white | |
set -g pane-active-border-fg white |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set tabstop=2 | |
set shiftwidth=2 | |
set autoindent | |
set expandtab | |
set nocompatible | |
set backspace=start,eol,indent | |
set whichwrap=b,s,[,],<,>,~ | |
set mouse= | |
syntax on | |
set nohlsearch |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export PATH=/opt/local/bin:/opt/local/sbin/:$PATH | |
### Added by the Heroku Toolbelt | |
export PATH="/usr/local/heroku/bin:$PATH" | |
### tmux auto start setting | |
if [ -z "$PS1" ]; then return ; fi | |
if [ -z $TMUX ] ; then | |
if [ -z `tmux ls` ] ; then | |
tmux |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Validator | |
include ActiveModel::Validations | |
def self.verify(params, rules) | |
validator = Validator.new params, rules | |
validator.valid? | |
end | |
def initialize(params, rules) | |
rules.each do |key, val| |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<jmeterTestPlan version="1.2" properties="2.5" jmeter="2.10 r1533061"> | |
<hashTree> | |
<TestPlan guiclass="TestPlanGui" testclass="TestPlan" testname="Rails AP" | |
enabled="true"> | |
<stringProp name="TestPlan.comments">TEST_AP</stringProp> | |
<boolProp name="TestPlan.functional_mode">false</boolProp> | |
<boolProp name="TestPlan.serialize_threadgroups">false</boolProp> <elementProp name="TestPlan.user_defined_variables" elementType="Arguments" | |
guiclass="ArgumentsPanel" testclass="Arguments" testname="" enabled="true"> | |
<collectionProp name="Arguments.arguments"/> |