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
# If you come from bash you might have to change your $PATH. | |
# export PATH=$HOME/bin:/usr/local/bin:$PATH | |
# Path to your oh-my-zsh installation. | |
export ZSH="$HOME/.oh-my-zsh" | |
# Set name of the theme to load --- if set to "random", it will | |
# load a random theme each time oh-my-zsh is loaded, in which case, | |
# to know which specific one was loaded, run: echo $RANDOM_THEME | |
# See https://github.com/ohmyzsh/ohmyzsh/wiki/Themes |
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
bundle config build.pg --with-pg-config=/Applications/Postgres.app/Contents/Versions/latest/bin/pg_config |
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 -x PATH /opt/homebrew/bin $PATH | |
set -x PATH /usr/local/bin $PATH | |
set -x PATH /usr/local/sbin $PATH | |
set -x PATH ~/bin $PATH | |
set -x PATH /Applications/Postgres.app/Contents/Versions/latest/bin $PATH | |
set PATH $HOME/.rbenv/shims $PATH | |
set PATH $HOME/.rbenv/bin:$PATH | |
rbenv rehash >/dev/null ^&1 | |
status --is-interactive; and source (rbenv init -|psub) |
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
# use custom function instead of fish built in git prompt due to performance | |
# (fish git prompt uses diff which can be slow) | |
function git_prompt | |
# uses simple grep and colrm instead of complicated sed regex | |
set -l branch (git branch 2> /dev/null | grep --color=never -e '*.\(.*\)' | colrm 1 2) | |
# use git status to improve performance (instead of using diff) | |
# [MADRC] - if file is modified | |
# ? - if untracked file exists | |
set -l git_dirty (git status -s | colrm 3 | colrm 1 1 | grep --color=never -e '[MADRC]') |
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
$ defaults write com.apple.finder AppleShowAllFiles -bool true |
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
require 'rubygems' | |
require 'ruby-progressbar' | |
require 'mechanize' | |
require 'pry' | |
require 'csv' | |
agent = Mechanize.new { |agent| | |
agent.user_agent_alias = 'Mac Safari' | |
} |
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
{ | |
"ensure_newline_at_eof_on_save": true, | |
"ignored_packages": | |
[ | |
"Vintage" | |
], | |
"trim_trailing_white_space_on_save": true, | |
"tab_size": 2, | |
"translate_tabs_to_spaces": true, | |
} |
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
install meteor | |
deploy app to meteor cloud | |
$ meteor build ~/Meteor/ \ | |
--server=lutz.meteor.com | |
install android studio: http://developer.android.com/sdk/installing/index.html?pkg=studio | |
start new project + create AVD from API 22. | |
$ brew install android-platform-tools | |
$ meteor add-platform android |
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 PATH $HOME/.rbenv/shims $PATH | |
rbenv rehash >/dev/null ^&1 | |
status --is-interactive; and source (rbenv init -|psub) | |
set -x PATH /usr/local/bin $PATH | |
set -x PATH /usr/local/sbin $PATH | |
set -x PATH ~/bin $PATH | |
set -x PATH /Applications/Postgres.app/Contents/Versions/latest/bin $PATH | |
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
require 'octokit' | |
require 'csv' | |
require 'date' | |
# Github credentials to access your private project | |
USERNAME="name" | |
PASSWORD="sekret" | |
# Project you want to export issues from | |
USER="gokart" | |
PROJECT="mayo-rx" |
NewerOlder