Skip to content

Instantly share code, notes, and snippets.

View mcat56's full-sized avatar

Mary Lang mcat56

  • Turing School of Software Development
  • Denver, CO
View GitHub Profile
@mcat56
mcat56 / mod_0_session_2_readings.md
Last active July 3, 2019 01:26 — forked from rwarbelow/mod_0_session_2_readings.md
Mod 0 Session 2 Readings

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):
  • Learning a new language is hard work, good learning can be applied across many different aspects of life
@mcat56
mcat56 / mod_0_session_2_practice_tasks.md
Last active July 3, 2019 03:23 — forked from rwarbelow/mod_0_session_2_practice_tasks.md
Mod 0 Session 2 Practice Tasks

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.

@mcat56
mcat56 / mod_0_session_3_readings.md
Last active July 4, 2019 14:21 — forked from rwarbelow/mod_0_session_3_readings.md
Mod 0 Session 3 Readings

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.

@mcat56
mcat56 / mod_0_session_4_practice_tasks.md
Last active July 6, 2019 16:57 — forked from rwarbelow/mod_0_session_4_practice_tasks.md
Mod 0 Session 4 Practice Tasks

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.
@mcat56
mcat56 / mod_0_session_4_readings.md
Last active July 4, 2019 23:53 — 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.
@mcat56
mcat56 / beginners_guide_to_git.md
Last active July 5, 2019 00:06
Beginners Guide to Git

Beginners Guide to Git

What is Git?

Git is a version control system or VCS. It is an open source project developed by Linus Torvalds in 2005. It is used in software development to track changes in files/code. It allows developers to collaborate easily on projects, share files and make changes that are tracked and recorded.

Pros and Cons

1 Apply for Job
1.1 Interview
1.1.1 Research interviewers
1.1.2 Prepare wardrobe
1.1.3 Prepare questions
1.1.4 Prepare answers
1.2 Research Jobs
1.2.1 Research location where you want to work
1.2.2 Research compensation
1.2.3 Research companies - pros and cons
class Vehicle
attributes :
color : string
year_made : integer
all_wheel_drive : boolean
passenger_capactity : integer
fuel_type : string
seats_filled = integer
instance of class Vehicle :
@inifinity
Attributes :
color = "blue"
passenger_capacity = 5
fuel_type = "premium"
all_wheel_drive = false
seats_filled = 1