- 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
Edited in OctoNote
Exciting things are happening at SNI and as we grow, we will continue to place a high value on our branding. This page will serve as both a usage guide and repository of assets pertaining to the Spatial Networks brand. If you cannot find a particular asset or have exceptions to the usage guidelines listed here, please contact us
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
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 =====" |
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
# 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 "[email protected]" | |
eval "$(ssh-agent -s)" |
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
# 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'" |
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
npm install --global trash-cli | |
npm install -g nodemon | |
echo "===== Next Step: ? =====" | |
echo "===== curl -Lks https://goo.gl/P473b2 | bash =====" |
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
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 |
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
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 =====" |
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
/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 =====" |