Skip to content

Instantly share code, notes, and snippets.

View cfsanderson's full-sized avatar

Caleb Frost Sanderson cfsanderson

View GitHub Profile
@cfsanderson
cfsanderson / skribe-feedback-bug-report.md
Last active April 29, 2019 16:43
Skribe bug reports and feedback

Tonya

  • expected a welcome email
  • pop up was a little distracting and felt like it was in the way
  • (personal info section) took me a second to realize where I should click. Looking for a button, rather than a link

Rob

@cfsanderson
cfsanderson / SNI-brand-assets-text1.md
Last active March 31, 2019 13:08
SNI-brand-assets-text
@cfsanderson
cfsanderson / zsh-default-install.sh
Last active July 4, 2017 04:28
This script checks for zsh and makes it the default shell
zsh --version
echo "Expected result: 'zsh 4.3.9' or more recent"
echo $SHELL
echo "confirm expected result: '/bin/zsh' or similar"
# make it the default shell
chsh -s $(which zsh)
echo "===== Log out and login back again to use your new default shell. ====="
echo "===== Next Step: Install Oh-My-Zsh ====="
echo "===== curl -Lks https://goo.gl/rysF9G | bash ====="
@cfsanderson
cfsanderson / ssh-keygen-install.sh
Last active July 4, 2017 04:01
Install/generate new SSH keys
# generate new keys
echo "===== after keygen, press enter to leave in default folder ====="
echo "===== go to 'GitHub-settings-SSH and GPG keys' and delete old SSH key and click on 'New SSH Key' button. ====="
echo "===== 'pbcopy < ~/.ssh/id_rsa.pub' to copy the contents of rsa.pub and paste into Github ====="
echo "===== Next Step: Install software from the web and fix all those settings! ====="
ssh-keygen -t rsa -b 4096 -C "calebsanderson@gmail.com"
eval "$(ssh-agent -s)"
@cfsanderson
cfsanderson / rvm-install.sh
Last active July 12, 2017 00:40
Install script for RVM - https://rvm.io/rvm/basics
# install stable version
\curl -sSL https://get.rvm.io | bash -s stable --ruby
# loads rvm
source ~/.rvm/scripts/rvm
# test with
type rvm | head -n 1
echo "should output 'rvm is a function'"
@cfsanderson
cfsanderson / npm-install.sh
Last active July 4, 2017 04:10
Install global npm packages
npm install --global trash-cli
npm install -g nodemon
echo "===== Next Step: ? ====="
echo "===== curl -Lks https://goo.gl/P473b2 | bash ====="
@cfsanderson
cfsanderson / nvm-install.sh
Last active July 4, 2017 04:12
Install and setup script for NVM.
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.2/install.sh | bash
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh"
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh"
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion"
nvm install node
We couldn’t find that file to show.
@cfsanderson
cfsanderson / oh-my-zsh-install.sh
Last active July 4, 2017 04:17
Install script for Oh-My-Zsh
sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
echo "===== Next Step: Install Powerline fonts ====="
echo "===== curl -Lks https://goo.gl/pceWrc | bash ====="
@cfsanderson
cfsanderson / homebrew-install.sh
Last active July 4, 2017 04:33
Homebrew and Brewfile install script
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
echo "===== Installing all Brewfile dependencies ====="
brew bundle
echo "===== Next Step: Make ZSH default shell ====="
echo "===== curl -Lks https://goo.gl/fnswYk | bash ====="