Skip to content

Instantly share code, notes, and snippets.

@pcmueller
pcmueller / mod_0_session_3_practice_tasks.md
Last active January 13, 2021 23:49 — forked from damwhit/mod_0_session_3_practice_tasks.md
Mod 0 Session 3 Practice Tasks

Session 3 Practice Tasks

The assignments listed here should take you about 1 hour in total.

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.
@pcmueller
pcmueller / mod_0_session_3_readings.md
Last active January 13, 2021 23:47 — forked from damwhit/mod_0_session_3_readings.md
Mod 0 Session 3 Readings and Responses

Session 3 Readings and Responses

The readings and responses listed here should take you approximately 35 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.
@pcmueller
pcmueller / markdown_tester.md
Last active January 13, 2021 23:47
playground for markdown text

Array Methods

push // pop // shift // unshift


first, let's create an array to be accessed in our methods:
var spices = ["Cardamom", "Paprika"]
console.log(spices.length)
// 2
@pcmueller
pcmueller / mod_0_session_2_practice_tasks.md
Last active January 11, 2021 01:55 — forked from damwhit/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 55 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.

@pcmueller
pcmueller / mod_0_session_2_readings.md
Last active January 7, 2021 23:02 — forked from damwhit/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 65 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.
@pcmueller
pcmueller / mod_0_session_1_readings.md
Last active January 10, 2021 05:16 — forked from damwhit/mod_0_session_1_readings.md
Mod 0 Session 1 Readings

Session 1 Readings and Responses

The readings and responses listed here should take you approximately 25 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.

  • Your key take-aways OR how you're going to implement specific points (minimum 2):
  • Not only do experienced programmers frequently use Google, they might use it even more frequently than novice programmers, since that experience can create a sort of self-questioning "paranoia" that leads to a lot of double-checking with online resources.
@pcmueller
pcmueller / DATATYPES.md
Last active January 7, 2021 23:44
Beginners Guide to Data Types

JavaScript Data Types

String // Number // Boolean // Array // Hash // Object


1. String

  • A data type used to represent text.
  • Can contain alphanumberic characters, special characters, and spaces.

e.g.

@pcmueller
pcmueller / mod_0_session_1_practice_tasks.md
Last active January 8, 2021 00:03 — forked from damwhit/mod_0_session_1_practice_tasks.md
Mod 0 Session 1 Practice Tasks

Session 1 Practice Tasks

The assignments 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 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. Markdown (20 min)

Markdown is the format all of your homework gists are written in.

Using this markdown cheatsheet, create a new gist of your own by clicking the New Gist button in the upper right-hand corner of the screen. Create a "Beginners Guide to data types" documenting your data types knowledge so far using Markdown.