Skip to content

nkwinslow/pt-syllabus

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

69 Commits
 
 

Repository files navigation

DevMountain Part-time Syllabus

Index

Week 1

Day 1 - Git & Version Control

  • Pre-Reading:
  • Learning Objectives
    • Students will understand and be able to use the command line for
      • creating a folder
      • creating a file
      • editing a file
      • changing directories
    • Students will understand what Git and Github are and how they fit into the web app landscape
    • Students will be able to Fork a repo and know it’s purpose
    • Students will be able to clone a repo and know it’s purpose
    • Students will be able to add, commit, and push files to github
    • Students will understand branching and it’s purpose
    • Students will understand how to use github in a group setting
    • Students will know how to create an upstream to master
    • Students will be able to handle merge conflicts
    • Students will be able to minimally manage vim to escape merge conflict messages
    • Students will know how to make a Pull Request
    • Students will be able to pull changes from the master repo
  • Project:
  • Additional Reading:

Day 2 - HTML & CSS I

  • Learning Objectives
    • Students will understand the purpose of HTML
    • Students will understand the purpose of CSS
    • Students will from scratch, be able to create a skeleton for their html and css page
    • understand and be able to use the following HTML Elements
      • p
      • footer
      • header
      • h1 - h6
      • ul
      • li
      • div
    • Understand and be able to use the following CSS properties
      • id (#) vs class(.) and specificity
      • width px & %
      • height px & %
      • background-color
      • background-image
      • color
      • font-size
      • text-align: center
      • line-height
      • box-model (margin, padding, border)
      • float
      • clear
  • Project:

Day 3 - HTML & CSS II

  • Pre-Reading:
  • Learning Objectives
    • Students will be able to use Chrome Dev Tools to inspect their HTML/CSS
    • Students will understand the purpose of CSS
    • Students will be able to compare and contrast fixed, relative, absolute, and static positioning in CSS
    • Students will be able to compare and contrast display block, inline-block, inline, and none
    • Students will be able to compare and contrast overflow hidden, auto, scroll
    • Students will understand and be able to use max/min-width and max/min-height
  • Projects:

Day 4 - HTML & CSS III

  • Pre-Reading:
  • (Continued) Learning Objectives
    • Students will be able to use Chrome Dev Tools to inspect their HTML/CSS
    • Students will understand the purpose of CSS
    • Students will be able to compare and contrast fixed, relative, absolute, and static positioning in CSS
    • Students will be able to compare and contrast display block, inline-block, inline, and none
    • Students will be able to compare and contrast overflow hidden, auto, scroll
    • Students will understand and be able to use max/min-width and max/min-height
  • Projects:
  • Additional Reading:

Week 2

Day 1 - Advanced CSS

  • Learning Objectives
    • Students will understand and be able to explain the box model to someone else
    • Students will understand media queries and be able to implement them
    • Students will understand when and when not to use floating elements
  • Project:
  • Additional Reading:

Day 2 - JavaScript Fundamentals I

  • Pre-Reading:
  • Learning Objectives
    • Students will understand how the web works:
      • front-end vs back-end
      • the web app landscape
    • Students will understand JavaScript vs jQuery
    • Students will understand what the DOM is
    • Students will understand conditional statements and how they’re used
    • Students will understand functions:
      • invocation vs definition
      • parameters vs arguments
      • global and local scope
      • anonymous functions
      • return values and how to save the returned value to another variable
  • Project:

Day 3 - JavaScript Fundamentals II

  • Pre-Reading:
  • Learning Objectives
    • Students will understand Arrays:
      • purpose
      • how to get values from arrays
      • array properties (length, push/pop, shift/unshift, split/join, splice/slice, reverse, indexOf)
      • how to create an array
      • how to loop through an array
  • Project:
  • Additional Reading:

Day 4 - JavaScript Fundamentals III

  • Pre-Reading:
  • Learning Objectives
    • Students will understand how Objects differ from Arrays
    • Students will understand use cases for objects
    • Students will understand how to create and add properties/values to objects
    • Students will understand how to loop through objects
    • Students will understand how to create and invoke a method
    • Students will understand bracket notation vs dot notation
    • Students will understand how to remove keys/props from objects (delete)
  • Projects:
  • Additional Reading:

Week 3

Day 1 - Advanced JavaScript I

  • Pre-Reading:
  • Learning Objectives
    • Students will understand synchronous vs asynchronous programming
    • Students will be able to talk about what a callback is
    • Students will understand the use cases of callbacks
    • Students will be able to identify and use callbacks
  • Projects:
  • Additional Reading:

Day 2 - Advanced JavaScript II

  • Pre-Reading:
  • Learning Objectives
    • Students will understand the difference between the maker pattern and constructor pattern
    • Students will understand what the ‘this’ keyword does and be able to use it
    • Students will understand what the ‘new’ keyword does and what the JavaScript compiler does when a function is called with the ‘new’ keyword
    • Students will understand what prototypes are in JavaScript and be able to add a method on a functions prototype and create instances of that function that invoke the prototypes method
  • Project:
  • Additional Reading:

Day 3 - Advanced JavaScript III

  • Pre-Reading:
  • Learning Objectives
    • Students will be able to define what a closure is
    • Students will be able to identify when a closure is being used
  • Project:
  • Additional Reading:

Day 4 - JavaScript Review

Week 4

Day 1 - jQuery I

  • Before Class
  • Learning Objectives
    • Student will understand the DOM
    • Students will be able to make basic manipulations to the DOM
    • Students will understand visual and functional purpose of the jQuery
  • Mini Project:
  • Project:

Day 2 - jQuery II

Day 3 - jQuery III

  • Before Class
  • Learning Objectives
    • Students will understand CRUD
    • Students will be able to make GET and POST requests
    • Students will understand why AJAX is important
  • Mini Project:
  • Additional Reading:

Day 4 - AngularJS I

  • Pre-Reading:
  • Mini Project:
  • Learning Objectives
    • Students will understand the difference between jQuery and Angular and how Angular fits into the web app landscape
    • Students will understand what a module, controller, directive, and service is in angular
    • Students will be able to, from scratch, build a basic angular application, put data on a controller's scope, and bind that data to the view
    • Students will be able to ng-repeat over data
    • Students will be able to filter data
  • Project:
  • Additional Reading:

Week 5

Day 1 - AngularJS II

  • Pre-Reading:
  • Mini Project:
  • Learning Objectives
    • Students will understand the purpose of Services in Angular
    • Students will know how to inject services into their controllers
    • Students will know how to call methods on their services from in their controllers and put the response on $scope
    • Students will know the difference between factories and services
  • Project:
  • Additional Reading:

Day 2 - AngularJS II Pt 2

  • Pre-Reading:
  • (Continued) Learning Objectives
    • Students will understand the purpose of Services in Angular
    • Students will know how to inject services into their controllers
    • Students will know how to call methods on their services from in their controllers and put the response on $scope
    • Students will know the difference between factories and services
  • Project:
  • Additional Reading:

Day 3 - AngularJS III

  • Pre-Reading:
  • Mini Project:
  • Learning Objectives
    • Students will be able to explain what JSON is
    • Students will be able to explain was REST is
    • Students will be able to explain what AJAX is
    • Students will make an ajax request with angular, call .then on the promise and add that data to the $scope
  • Project:
  • Additional Reading:

Day 4 - AngularJS III Pt 2

  • Pre-Reading:
  • (Continued) Learning Objectives
    • Students will be able to explain what JSON is
    • Students will be able to explain was REST is
    • Students will be able to explain what AJAX is
    • Students will make an ajax request with angular, call .then on the promise and add that data to the $scope
  • Project:

Week 6

Day 1 - AngularJS IIII

  • Pre-Reading:
  • Mini Project:
  • Learning Objectives
    • Students will be able to make $http requests to various APIs
    • Students will be able to use outside directives and know how to inject those modules into their application
    • Students will be able to create, return, and resolve their own promises with $q
  • Project:

Day 2 - AngularJS IIII Pt 2

  • Pre-Reading:
  • (Continued) Learning Objectives
    • Students will be able to make $http requests to various APIs
    • Students will be able to use outside directives and know how to inject those modules into their application
    • Students will be able to create, return, and resolve their own promises with $q
  • Project:
  • Additional Reading:

Day 3 - AngularJS Review I

Day 4 - AngularJS V

  • Pre-Reading:
  • Mini Project:
  • Learning Objectives
    • Students will understand the methodology behind routing and templating
    • Students will be able to set up a basic routing system with multiple views and controllers using ngRoute
    • Students will be able to use resolve to resolve data and pass in data to their controller before their controller initializes
    • Students will be able to use routeParams to gather data from the URL
  • Project:
  • Additional Reading:

Week 7

Day 1 - AngularJS V Pt 2

  • Pre-Reading:
  • (Continued) Learning Objectives
    • Students will understand the methodology behind routing and templating
    • Students will be able to set up a basic routing system with multiple views and controllers using ngRoute
    • Students will be able to use resolve to resolve data and pass in data to their controller before their controller initializes
    • Students will be able to use routeParams to gather data from the URL
  • Project:

Day 2 - AngularJS VI

Day 3 - AngularJS VI Pt 2

  • Pre-Reading:
  • Learning Objectives
    • Students will understand how Directives fit into the Angular ecosystem
    • Students will be able to create a custom directive and use it in a view
  • Project:

Day 4 - APIs I

  • Pre-Reading:
  • Learning Objectives
    • LEARNING OBJ
    • LEARNING OBJ
    • LEARNING OBJ
  • Project:
  • Additional Reading:

Week 8

Day 1 - APIs II

  • Pre-Reading
  • Learning Objectives
    • LEARNING OBJ
    • LEARNING OBJ
    • LEARNING OBJ
  • Project:
  • Additional Reading:

Day 2 - Angular Review Day

  • Review all the things

Day 3 - Firebase

Day 4 - Firebase Pt 2

Week 9

Day 1 - Personal Projects

Day 2 - Personal Projects

Day 3 - Personal Projects

Day 4 - Personal Projects

Week 10

Day 1 - Personal Projects

Day 2 - Personal Projects

Day 3 - Personal Projects

Day 4 - Personal Projects

Week 11

Day 1 - Personal Projects

Day 2 - Personal Projects

Day 3 - Personal Projects

Day 4 - Personal Projects

Week 12

Day 1 - Review I

  • Additional Reading:

Day 2 - Review II

  • Additional Reading:

Day 3 - Review III

  • Additional Reading:

Day 4 - Review IIII

  • Additional Reading:

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published