This file has been truncated, but you can view the full file.
This file contains hidden or 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"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>AlternateMouseScroll</key> | |
<true/> | |
<key>AppleAntiAliasingThreshold</key> | |
<integer>1</integer> | |
<key>ApplePressAndHoldEnabled</key> | |
<false/> |
This file contains hidden or 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
# CoC-Install coc-snippets | |
# A valid snippet should starts with: | |
# | |
# snippet trigger_word [ "description" [ options ] ] | |
# | |
# and end with: | |
# | |
# endsnippet |
This file contains hidden or 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
# This file is symlinked in my home directory --> ln -s ~/.oh-my-zsh/custom/.zshrc ~/.zshrc | |
# That's because ZSH expects to see a .zshrc file in your home directory | |
# Then provide the path to your .oh-my-zsh installation, so that we can source all the other configurations in this folder. | |
export ZSH="/Users/harrisoncramer/.oh-my-zsh" | |
ZSH_THEME="agnoster" | |
plugins=(zsh-syntax-highlighting zsh-autosuggestions fzf git) | |
source $ZSH/oh-my-zsh.sh | |
prompt_context() { | |
prompt_segment black default "🚀 " | |
} |
This file contains hidden or 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
#!/bin/bash | |
mkcd () { | |
mkdir "$1" | |
cd "$1" | |
} | |
if [ $# -eq 0 ]; then | |
echo "Must provide project name"; | |
exit 1; | |
fi |
This file contains hidden or 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
Show hidden characters
{ | |
"presets": [ | |
"@babel/preset-env" | |
] | |
} |
This file contains hidden or 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 nocompatible " required | |
filetype off " required | |
"""""""""""""""""" | |
" PLUGINS | |
"""""""""""""""""" | |
call plug#begin('~/.vim/plugged') | |
" CORE FUNCTIONALITY " | |
Plug 'neoclide/coc.nvim', {'branch': 'release'} " Autocompletion w/ language server | |
Plug 'tpope/vim-dispatch' " Allows functions to run asyncrhonously from within VIM (:Dispatch) |
This file contains hidden or 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
{ | |
"config": { | |
"target": "http://localhost:3005", | |
"phases": [ | |
{ | |
"duration": 10, | |
"arrivalRate": 20 | |
}, | |
{ | |
"duration": 10, |
This file contains hidden or 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
#!/bin/bash | |
if [ $# -eq 0 ]; then | |
echo 'Must provide ports.' | |
exit 1 | |
fi | |
for var in "$@" | |
do | |
if [ "$var" -eq "$var" ] 2>/dev/null |
This file contains hidden or 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
# Get PID of process running on port 9229 | |
lsof -i :9229 | awk 'NR>1 {print $2}' | |
# Kill port running on port 9229 | |
lsof -i :9229 | awk 'NR>1 {print $2}' | xargs kill |
This file contains hidden or 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
#!/bin/bash | |
echo "Starting deployment and assigning variables...\n" | |
usage(){ | |
echo "$0 NAME_OF_PM2 NAME_OF_STARTFILE" | |
exit 1 | |
} | |
FOLDER=$1; | |
STARTFILE=$2; |