Skip to content

Instantly share code, notes, and snippets.

View JamesRexMiller4's full-sized avatar

James Miller JamesRexMiller4

View GitHub Profile

Top Down Design - Building a Campfire

Location

  1. Decide if camping area is legal for building a campfire

    1.1 Review campground rules

    1.1.1 If no rules specifying that campsite is illegal for building a campfire continue to step 2

1.1.1.1 Else relocate to area that is legal for building a campbuild

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.

Beginner's Guide to Git

So you are well on your way to becoming a full fledged programmer, and the next step is to learn git. This Beginner's Guide to Git will help you on your journey. In this guide you will learn the commands to initialize git, add changes to your files using git, commit those changes, and a few other helpful tricks. You will also learn the how and why of these commands and how git will help you and your teammates to create awesome software.

What is Git?

According to Wikipedia,

Git is a distributed version-control system for tracking changes in source code during software development. It is designed for coordinating work among programmers, but it can be used to track changes in any set of files. Its goals include speed, data integrity, and support for distributed, non-linear workflows.

@JamesRexMiller4
JamesRexMiller4 / mod_0_session_4_readings.md
Last active July 29, 2019 21:25 — forked from damwhit/mod_0_session_3_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.

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 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):

Mod 0 Capstone

Day 1:

On a website, what is the purpose of HTML code?

  1. The purpose of HTML code is to tell your web browser the structure of the web page. HTML code does this with elements, comprised of opening and closing tags, that represent certain features and structure to the webpage. It is the framework upon which all website are built upon.

What is the difference between an element and a tag?

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 (60 min)

Documentation of a langauge, 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.