Skip to content

Instantly share code, notes, and snippets.

View zacacollier's full-sized avatar

Zac Collier zacacollier

View GitHub Profile
@zacacollier
zacacollier / gist:ec6fae0acf8d00364d87d78607fe2bb2
Last active June 23, 2017 00:52
Intermediate Last Day Notes

Intermediate Q2 Last Day Notes

Now that you've learned JavaScript, it's time to learn ....
more JavaScript
  • Watch Javascript: Understanding the Weird Parts (you can always find it for like $10, use the Honey extension for Chrome)
  • Watch the YouTube channel funfunfunction
  • Learn about l33t features like async / await, Promises, Higher-Order Functions & "Composition over Inheritance"
Programming Fundamentals
" -*- mode: vimrc -*-
"vim: ft=vim
" dotspaceneovim/auto-install {{{
"Automatic installation of spaceneovim.
if has('nvim')
let s:config_dir = $HOME . '/.config/nvim'
else
let s:config_dir = $HOME . '/.vim'
endif

Example Itinerary:

General Questions:
  • What have interviews been like?
  • What questions have you been asked?
    • "what's a closure? And when would you use one?"
    • "you're working on a project and you and another developer have a disagreement about how to resolve a certain problem. How do you deal with that?"
  • What questions should you ask your interviewer?

React Day 2

syntactical differences

Modern JavaScript

  • let & const - prefer const
  • Arrow functions > function
// gross
function greet(greeting) {
  return greeting
@zacacollier
zacacollier / get_repo_link.sh
Created February 8, 2019 23:03
print a link to a local git repository's origin (SSH only)