Skip to content

Instantly share code, notes, and snippets.

Session 2 Readings and Responses

The readings and responses listed here should take you approximately 60 minutes.

To start this assignment, click the button in the upper right-hand corner that says Fork. This is now your copy of this document. Click the Edit button when you're ready to start adding your answers. To save your work, click the green button in the bottom right-hand corner. You can always come back and re-edit your gist.

1. Learning Fluency by Turing alum Sara Simon (30 min)

  • Your key take-aways OR how you're going to implement specific points (minimum 3):

Session 2 Practice Tasks

The assignments listed here should take you approximately 2 hours.

To start this assignment, click the button in the upper right-hand corner that says Fork. This is now your copy of the document. Click the Edit button when you're ready to start adding your answers. To save your work, click the green button in the bottom right-hand corner. You can always come back and re-edit your gist.

1. Documentation and Googling (75 min)

Documentation of a language, framework, or tool is the information that describes its functionality. For this part of the practice tasks, you're going to practice digging into documentation and other reference material.

Session 3 Readings and Responses

The readings and responses listed here should take you approximately 20 minutes total.

To start this assignment:

  1. Click the button in the upper right-hand corner that says Fork. This is now your copy of this document.
  2. Click the Edit button when you're ready to start adding your answers.
  3. To save your work, click the green button in the bottom right-hand corner. You can always come back and re-edit your gist.

Session 3 Practice Tasks

The assignments listed here should take you approximately 25 total minutes.

To start this assignment, click the button in the upper right-hand corner that says Fork. This is now your copy of the document. Click the Edit button when you're ready to start adding your answers. To save your work, click the green button in the bottom right-hand corner. You can always come back and re-edit your gist.

1. Creating Files and Directories (10 min)

Need help? You can go back to the files/directories portion of the lesson here.

Session 4 Practice Tasks

The assignments listed here should take you between 1.5 and 2 total hours.

To start this assignment:

  1. Click the button in the upper right-hand corner that says Fork. This is now your copy of the document.
  2. Click the Edit button when you're ready to start adding your answers.
  3. To save your work, click the green button in the bottom right-hand corner. You can always come back and re-edit your gist.
@tschaffer1618
tschaffer1618 / mod_0_session_4_readings.md
Last active May 15, 2019 22:59 — forked from rwarbelow/mod_0_session_4_readings.md
Mod 0 Session 4 Readings and Responses

Session 4 Readings and Responses

The readings and responses listed here should take you approximately 50 minutes total.

To start this assignment:

  1. Click the button in the upper right-hand corner that says Fork. This is now your copy of this document.
  2. Click the Edit button when you're ready to start adding your answers.
  3. To save your work, click the green button in the bottom right-hand corner. You can always come back and re-edit your gist.
@tschaffer1618
tschaffer1618 / beginners_guide_to_git.md
Last active May 14, 2019 02:42
Beginner's Guide to Git

Beginner's Guide to Git

Git-Image

What Is Git?

Git is a DVCS (Distributed Version Control System). A Version Control System (VCS) allows users to manage files associated with a project by tracking past and present iterations of the files. A VCS can oversee multiple collaborators editing files in an organized fashion. Git is a Distributed VCS because every editor in a project can have a full copy of the version history of the project locally.


How Does Git Work Locally?

Start a Campfire

  1. Gather Wood

    1.1 Gather kindling

    1.2 Gather branches

     1.2.1 Break into appropriate pieces
    
Class: Vehicle
Attributes:
available_colors (array)
max_speed (integer)
does_it_fly (boolean)
original_manufacture_year (integer)
make (string)
current_speed (integer)
fuel_level (integer)
Object 1: Blackhawk helicopter
Attributes:
available_colors: ["Black", "Army Green"]
max_speed: 222
does_it_fly: true
original_manufacture_year: 1974
maker: "Sikorsky"
current_speed: 70
fuel_level: 150