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
" let g:ctrlp_by_filename = 1 | |
" let g:ctrlp_match_window_bottom = 0 | |
" let g:ctrlp_match_window_reversed = 0 | |
" let g:ctrlp_max_depth = 40 | |
" let g:ctrlp_max_height = 50 | |
" let g:ctrlp_max_files = 0 | |
" Sane Ignore For ctrlp https://github.com/kien/ctrlp.vim/issues/313 | |
let g:ctrlp_custom_ignore = { | |
\ 'dir': '\.git$\|\.hg$\|\.svn$\|\.yardoc\|public\/images\|public\/system\|data\|log\|tmp$', |
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
[user] | |
name = Henry A. Lee | |
email = [email protected] | |
[alias] | |
st = status | |
cm = commit | |
br = branch | |
co = checkout | |
d = diff | |
dc = diff --cached |
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
brew install mongo | |
mkdir -p ~/Library/LaunchAgents | |
cp /usr/local/Cellar/mongodb/2.2.0-x86_64/homebrew.mxcl.mongodb.plist ~/Library/LaunchAgents/ | |
launchctl load -w ~/Library/LaunchAgents/homebrew.mxcl.mongodb.plist | |
# Mongo might be named differently, try this | |
cp /usr/local/Cellar/mongodb**/**/*plist ~/Library/LaunchAgents/ | |
launchctl load -w ~/Library/LaunchAgents/*mongo*plist |
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
diff --git a/app/controllers/api/stores/sessions_controller.rb b/app/controllers/api/stores/sessions_controller.rb | |
index e87ce01..34c0f62 100644 | |
--- a/app/controllers/api/stores/sessions_controller.rb | |
+++ b/app/controllers/api/stores/sessions_controller.rb | |
@@ -5,6 +5,7 @@ module Api | |
include Devise::Controllers::InternalHelpers | |
before_filter :ensure_params_exist | |
+ after_filter :mixpanel_track, :only => [:create] | |
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
[user] | |
name = Henry A. Lee | |
email = [email protected] | |
[github] | |
user = henryalee | |
token = ... | |
[alias] | |
st = status | |
cm = commit | |
br = branch |