Skip to content

Instantly share code, notes, and snippets.

View cfsanderson's full-sized avatar

Caleb Frost Sanderson cfsanderson

View GitHub Profile
@cfsanderson
cfsanderson / TIY Pre-work Essay.md
Last active November 15, 2016 01:45
Pre-work Essay for November 2016 Front-End Engineering Cohort at The Iron Yard (Tampa, FL)

#Caleb Frost Sanderson ##Pre-work Essay for Front-End Engineering Cohort ###9/9/2016

“The journey of a thousand miles begins with one step.” - Lao Tzu

This quote is a bit cliché, but still true for me. My journey into code began with a couple simple steps;

  • looking for a new career in a creative field,
  • a lifelong and almost nagging interest in how the heck computers do what they do,
  • talking with other converted musician-turned-coder friends, etc.
@cfsanderson
cfsanderson / FizzBuzz.md
Last active April 13, 2017 00:56
Week 2, Day 1 essay for FEE cohort 6

FizzBuzz

for (let i = 1; i <= 100; i++) {
  if (i % 3 === 0 && i % 5 === 0) {
    console.log('fizzbuzz')
  } else if (i % 5 === 0) {
    console.log('buzz')
  } else if (i % 3 === 0) {
 console.log('fizz')

These are my personal settings for Atom.

@cfsanderson
cfsanderson / atom-sync-settings-01.md
Last active July 2, 2017 17:51
automatic update by http://atom.io/packages/sync-settings - these are my Atom settings for work and personal computer.

Sync settings for my Atom text editor

Shortcut keys creating and using Glist

  • ctrl-c cmd-c copyGistUrl
  • ctrl-c cmd-d deleteGist
  • ctrl-c ctrl-d delete
  • ctrl-c ctrl-g toggle
  • ctrl-c ctrl-o openGistWeb
  • ctrl-x ctrl-s saveGist
@cfsanderson
cfsanderson / powerline-install.sh
Last active July 12, 2017 00:42
Install Powerline fonts script
git clone https://github.com/powerline/fonts.git
cd fonts
./install.sh
cd ..
rm -rf fonts
echo "===== Next Step: Install NVM ====="
echo "===== curl -Lks https://goo.gl/dCgTYJ | bash ====="
@cfsanderson
cfsanderson / cfg-dotfiles-install.sh
Last active July 4, 2017 04:35
Install script for my dotfiles setup when migrating to a new machine.
git clone --bare https://github.com/cfsanderson/cfg-dotfiles.git $HOME/.cfg-dotfiles
function dotconfig {
/usr/bin/git --git-dir=$HOME/.cfg-dotfiles/ --work-tree=$HOME $@
echo "===== dotconfig function has run ====="
}
mkdir -p .dotconfig-backup
dotconfig checkout
if [ $? = 0 ]; then
@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 ====="
@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 ====="
We couldn’t find that file to show.