Forked from rwarbelow/mod_0_session_3_practice_tasks.md
Last active
July 7, 2019 19:00
-
-
Save sirsaw/6c49568a8ecff86feb5cc4a671af2ac7 to your computer and use it in GitHub Desktop.
Revisions
-
sirsaw revised this gist
Jul 3, 2019 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -182,7 +182,7 @@ Methods: If you have any questions, comments, or confusions that you would an instructor to address, list them below: 1. More of a general question about github - Do I have to make each assignment public for the teachers to see it? That's what I've been doing so far, but I'm wondering if that's actually needed. Does that make my assignments visible to everyone else on Github as well? ### Extensions -
sirsaw revised this gist
Jul 3, 2019 . 1 changed file with 6 additions and 5 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -168,20 +168,21 @@ Class: CardboardBox Attributes: - width (integer) - depth (integer) - height (integer) - thickness (float) Methods: - break_down - stack - close - open - fold ### 4. Questions/Comments/Confusions If you have any questions, comments, or confusions that you would an instructor to address, list them below: 1. None so far ### Extensions -
sirsaw revised this gist
Jul 3, 2019 . 1 changed file with 114 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -13,9 +13,40 @@ Scroll down to the bottom of this page and look at the image of the directories When you're done, type `history` to see your commands. Copy and paste the commands that were used to create the directory and files: ``` 27 cd 28 mkdir session_e_practice 29 ls 30 rm -rf session_e_practice 31 ls 32 mkdir session_3_practice 33 ls 34 cd session_3_practice 35 pwd 36 touch budget.csv 37 touch mentors.txt 38 mkdir notes 39 mkdir practice 40 ls 41 cd notes 42 pwd 43 ls 44 touch git_notes.txt 45 touch command_line_notes.txt 46 cd .. 47 pwd 48 cd practice 49 touch git_practice.txt 50 mkdir projects 51 cd projects 52 touch game.js 53 cd 54 pwd 55 ls 56 cd session_3_practice 57 history ``` Since this is just a practice directory, feel free to remove the parent directory `session_3_practice` when you're done with this exercise. ### 2. Git Practice (15 min) @@ -42,7 +73,88 @@ Follow the steps below to practice the git workflow. Be ready to copy-paste your Copy and paste **all** of the terminal text from this process below (not just the history): ``` shane~$ mkdir git_homework shane~$ cd git_homework shane~/git_homework$ touch quotes.txt shane~/git_homework$ ls quotes.txt shane~/git_homework$ git init Initialized empty Git repository in /Users/shane/git_homework/.git/ shane~/git_homework$ git status On branch master No commits yet Untracked files: (use "git add <file>..." to include in what will be committed) quotes.txt nothing added to commit but untracked files present (use "git add" to track) shane~/git_homework$ git add quotes.txt shane~/git_homework$ git status On branch master No commits yet Changes to be committed: (use "git rm --cached <file>..." to unstage) new file: quotes.txt shane~/git_homework$ git commit -m 'Initial commit.' [master (root-commit) 8e4aeb3] Initial commit. 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 quotes.txt shane~/git_homework[master]$ git status On branch master nothing to commit, working tree clean shane~/git_homework[master]$ echo "My fake plants died because I did not pretend to water themn." >> quotes.txt shane~/git_homework[master !]$ cat echo.txt cat: echo.txt: No such file or directory shane~/git_homework[master !]$ cat quotes.txt My fake plants died because I did not pretend to water themn. shane~/git_homework[master !]$ git status On branch master Changes not staged for commit: (use "git add <file>..." to update what will be committed) (use "git checkout -- <file>..." to discard changes in working directory) modified: quotes.txt no changes added to commit (use "git add" and/or "git commit -a") shane~/git_homework[master !]$ git diff diff --git a/quotes.txt b/quotes.txt index e69de29..7ea2784 100644 --- a/quotes.txt +++ b/quotes.txt @@ -0,0 +1 @@ +My fake plants died because I did not pretend to water themn. shane~/git_homework[master !]$ git diff quotes.txt diff --git a/quotes.txt b/quotes.txt index e69de29..7ea2784 100644 --- a/quotes.txt +++ b/quotes.txt @@ -0,0 +1 @@ +My fake plants died because I did not pretend to water themn. shane~/git_homework[master !]$ git add quotes.txt shane~/git_homework[master !]$ git status On branch master Changes to be committed: (use "git reset HEAD <file>..." to unstage) modified: quotes.txt shane~/git_homework[master !]$ git commit -m "Added quote." [master b1ac9cd] Added quote. 1 file changed, 1 insertion(+) shane~/git_homework[master]$ git status On branch master nothing to commit, working tree clean shane~/git_homework[master]$ git log --pretty=oneline b1ac9cdab02354e951f74fda7004ffb5340f71f3 (HEAD -> master) Added quote. 8e4aeb30099b2ab1a3a79a8fd1aa7567bf55d13f Initial commit. shane~/git_homework[master]$ ``` **IMPORTANT**: Do not remove this `git_homework` directory. You will be using this directory during Thursday's session. -
rwarbelow revised this gist
Jul 2, 2019 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -73,7 +73,7 @@ If you have any questions, comments, or confusions that you would an instructor ### Extensions 1. If time permits and you want extra git practice and alternative explanations (it's often beneficial to have something explained in many different ways), check out [Codecademy's Git Course](https://www.codecademy.com/learn/learn-git), particularly the first free item on the syllabus, "Basic Git Workflow". In Mod 0, we will not cover anything beyond Codecademy's intro section; however, you are welcome to check out the other git lessons listed on the syllabus if you want a head start. 1. [This course](https://learnpythonthehardway.org/book/appendixa.html) is how I personally learned command line. If time permits, I highly recommend reading and practicing. -
rwarbelow revised this gist
May 23, 2019 . 1 changed file with 19 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -47,7 +47,25 @@ paste all of your terminal text here **IMPORTANT**: Do not remove this `git_homework` directory. You will be using this directory during Thursday's session. ### 3. Classes, Attributes, and Methods Look at the template below for a `CardboardBox` class. Fill in missing blanks with additional attributes and methods. Class: CardboardBox Attributes: - width (integer) - depth (integer) - _____ (______) - _____ (______) Methods: - break_down - stack - ______ - ______ ### 4. Questions/Comments/Confusions If you have any questions, comments, or confusions that you would an instructor to address, list them below: -
rwarbelow revised this gist
May 9, 2019 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -37,7 +37,7 @@ Follow the steps below to practice the git workflow. Be ready to copy-paste your 1. Add the changes to the staging area 1. Commit the new changes 1. Check the status 1. Show the log in oneline (yes, `oneline`, not a spelling error) format Copy and paste **all** of the terminal text from this process below (not just the history): -
rwarbelow revised this gist
Feb 20, 2019 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
LoadingSorry, something went wrong. Reload?Sorry, we cannot display this file.Sorry, this file is invalid so it cannot be displayed. -
rwarbelow revised this gist
Feb 20, 2019 . 2 changed files with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -16,7 +16,7 @@ When you're done, type `history` to see your commands. Copy and paste the comman paste your commands here ``` Since this is just a practice directory, feel free to remove the parent directory `session_3_practice` when you're done with this exercise. ### 2. Git Practice (15 min) LoadingSorry, something went wrong. Reload?Sorry, we cannot display this file.Sorry, this file is invalid so it cannot be displayed. -
rwarbelow revised this gist
Feb 20, 2019 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -47,7 +47,7 @@ paste all of your terminal text here **IMPORTANT**: Do not remove this `git_homework` directory. You will be using this directory during Thursday's session. ### 3. Questions/Comments/Confusions If you have any questions, comments, or confusions that you would an instructor to address, list them below: -
rwarbelow revised this gist
Feb 20, 2019 . 1 changed file with 7 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -47,6 +47,12 @@ paste all of your terminal text here **IMPORTANT**: Do not remove this `git_homework` directory. You will be using this directory during Thursday's session. ### Questions/Comments/Confusions If you have any questions, comments, or confusions that you would an instructor to address, list them below: 1. ### Extensions 1. If time permits and you want extra git practice and alternative explanations (it's often beneficial to have something explained in many different ways), check out [Codecademy's Git Course](https://www.codecademy.com/pt-BR/learn/learn-git), particularly the first free item on the syllabus, "Basic Git Workflow". In Mod 0, we will not cover anything beyond Codecademy's intro section; however, you are welcome to check out the other git lessons listed on the syllabus if you want a head start. @@ -56,3 +62,4 @@ paste all of your terminal text here 1. Also recommended by Jeff Casimir: [Michael Hartl's Learn Enough Command Line](https://www.learnenough.com/command-line-tutorial/basics). 1. Add tab completion to make your life easier: <a href="https://gist.github.com/timomitchel/0981eeba8d69d435f94ab44f161f9bf4">Type Less. Do More.</a> -
rwarbelow revised this gist
Feb 19, 2019 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -6,9 +6,9 @@ To start this assignment, click the button in the upper right-hand corner that s ### 1. Creating Files and Directories (10 min) _Need help? You can go back to the files/directories portion of the lesson [here](http://mod0.turing.io/session3/#filesdirectories)._ Scroll down to the bottom of this page and look at the image of the directories and files. Use commands in your terminal to create the directories and files structured exactly how they appear in the image. When you're done, type `history` to see your commands. Copy and paste the commands that were used to create the directory and files: -
rwarbelow revised this gist
Jan 31, 2019 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -27,7 +27,7 @@ Follow the steps below to practice the git workflow. Be ready to copy-paste your 1. Create a directory called `git_homework`. Inside of there, create a file called `quotes.txt`. 1. Initialize the directory 1. Check the git status 1. Add your `quotes.txt` file to the staging area 1. Check the git status 1. Create an initial commit 1. Check the status -
rwarbelow revised this gist
Jan 30, 2019 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -45,7 +45,7 @@ Copy and paste **all** of the terminal text from this process below (not just th paste all of your terminal text here ``` **IMPORTANT**: Do not remove this `git_homework` directory. You will be using this directory during Thursday's session. ### Extensions -
rwarbelow revised this gist
Jan 29, 2019 . 1 changed file with 2 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -53,4 +53,6 @@ paste all of your terminal text here 1. [This course](https://learnpythonthehardway.org/book/appendixa.html) is how I personally learned command line. If time permits, I highly recommend reading and practicing. 1. Also recommended by Jeff Casimir: [Michael Hartl's Learn Enough Command Line](https://www.learnenough.com/command-line-tutorial/basics). 1. Add tab completion to make your life easier: <a href="https://gist.github.com/timomitchel/0981eeba8d69d435f94ab44f161f9bf4">Type Less. Do More.</a> -
rwarbelow revised this gist
Jan 29, 2019 . 1 changed file with 5 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -6,6 +6,8 @@ To start this assignment, click the button in the upper right-hand corner that s ### 1. Creating Files and Directories (10 min) _You can reference the files/directories portion of the lesson [here](http://mod0.turing.io/session3/#filesdirectories)._ Scroll down to the bottom and look at the image of the directories and files. Use commands in your terminal to create the directories and files structured exactly how they appear in the image. When you're done, type `history` to see your commands. Copy and paste the commands that were used to create the directory and files: @@ -18,6 +20,8 @@ Since this is just a practice directory, feel free to remove the parent director ### 2. Git Practice (15 min) _You can reference the files/directories portion of the lesson [here](http://mod0.turing.io/session3/#git)._ Follow the steps below to practice the git workflow. Be ready to copy-paste your terminal output as confirmation of your practice. 1. Create a directory called `git_homework`. Inside of there, create a file called `quotes.txt`. @@ -43,7 +47,7 @@ paste all of your terminal text here **IMPORTANT**: Do not remove this `git_practice` directory. You will be using this directory during Thursday's session. ### Extensions 1. If time permits and you want extra git practice and alternative explanations (it's often beneficial to have something explained in many different ways), check out [Codecademy's Git Course](https://www.codecademy.com/pt-BR/learn/learn-git), particularly the first free item on the syllabus, "Basic Git Workflow". In Mod 0, we will not cover anything beyond Codecademy's intro section; however, you are welcome to check out the other git lessons listed on the syllabus if you want a head start. -
rwarbelow revised this gist
Jan 28, 2019 . 1 changed file with 1 addition and 3 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -6,9 +6,7 @@ To start this assignment, click the button in the upper right-hand corner that s ### 1. Creating Files and Directories (10 min) Scroll down to the bottom and look at the image of the directories and files. Use commands in your terminal to create the directories and files structured exactly how they appear in the image. When you're done, type `history` to see your commands. Copy and paste the commands that were used to create the directory and files: -
rwarbelow revised this gist
Jan 28, 2019 . 1 changed file with 2 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -8,6 +8,8 @@ To start this assignment, click the button in the upper right-hand corner that s Look at the image (`z_img_1.png`) at the bottom of this gist. Use commands in your terminal to create the directories and files structured exactly how they appear in the image. <img src="data:image/png;base64,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" style="cursor:pointer;max-width:100%;" onclick="(function(img){if(img.wnd!=null&&!img.wnd.closed){img.wnd.focus();}else{var r=function(evt){if(evt.data=='ready'&&evt.source==img.wnd){img.wnd.postMessage(decodeURIComponent(img.getAttribute('src')),'*');window.removeEventListener('message',r);}};window.addEventListener('message',r);img.wnd=window.open('https://www.draw.io/?client=1&lightbox=1&edit=_blank');}})(this);"/> When you're done, type `history` to see your commands. Copy and paste the commands that were used to create the directory and files: ``` -
rwarbelow revised this gist
Jan 28, 2019 . 1 changed file with 2 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -41,6 +41,8 @@ Copy and paste **all** of the terminal text from this process below (not just th paste all of your terminal text here ``` **IMPORTANT**: Do not remove this `git_practice` directory. You will be using this directory during Thursday's session. ### Optional Things 1. If time permits and you want extra git practice and alternative explanations (it's often beneficial to have something explained in many different ways), check out [Codecademy's Git Course](https://www.codecademy.com/pt-BR/learn/learn-git), particularly the first free item on the syllabus, "Basic Git Workflow". In Mod 0, we will not cover anything beyond Codecademy's intro section; however, you are welcome to check out the other git lessons listed on the syllabus if you want a head start. -
rwarbelow revised this gist
Jan 27, 2019 . 1 changed file with 4 additions and 6 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -41,12 +41,10 @@ Copy and paste **all** of the terminal text from this process below (not just th paste all of your terminal text here ``` ### Optional Things 1. If time permits and you want extra git practice and alternative explanations (it's often beneficial to have something explained in many different ways), check out [Codecademy's Git Course](https://www.codecademy.com/pt-BR/learn/learn-git), particularly the first free item on the syllabus, "Basic Git Workflow". In Mod 0, we will not cover anything beyond Codecademy's intro section; however, you are welcome to check out the other git lessons listed on the syllabus if you want a head start. 1. [This course](https://learnpythonthehardway.org/book/appendixa.html) is how I personally learned command line. If time permits, I highly recommend reading and practicing. 1. Add tab completion to make your life easier: <a href="https://gist.github.com/timomitchel/0981eeba8d69d435f94ab44f161f9bf4">Type Less. Do More.</a> -
rwarbelow revised this gist
Jan 27, 2019 . 1 changed file with 3 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -47,3 +47,6 @@ If time permits and you want extra git practice and alternative explanations (it In Mod 0, we will not cover anything beyond Codecademy's intro section; however, you are welcome to check out the other git lessons listed on the syllabus if you want a head start. ### 4. Optional: Zed Shaw's Command Line Appendix [This course](https://learnpythonthehardway.org/book/appendixa.html) is how I personally learned command line. If time permits, I highly recommend reading and practicing. -
rwarbelow revised this gist
Jan 27, 2019 . 1 changed file with 2 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -14,6 +14,8 @@ When you're done, type `history` to see your commands. Copy and paste the comman paste your commands here ``` Since this is just a practice directory, feel free to remove the parent directory `turing` when you're done with this exercise. ### 2. Git Practice (15 min) Follow the steps below to practice the git workflow. Be ready to copy-paste your terminal output as confirmation of your practice. -
rwarbelow revised this gist
Jan 27, 2019 . 1 changed file with 42 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,7 +1,47 @@ # 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) Look at the image (`z_img_1.png`) at the bottom of this gist. Use commands in your terminal to create the directories and files structured exactly how they appear in the image. When you're done, type `history` to see your commands. Copy and paste the commands that were used to create the directory and files: ``` paste your commands here ``` ### 2. Git Practice (15 min) Follow the steps below to practice the git workflow. Be ready to copy-paste your terminal output as confirmation of your practice. 1. Create a directory called `git_homework`. Inside of there, create a file called `quotes.txt`. 1. Initialize the directory 1. Check the git status 1. Add your notes file to the staging area 1. Check the git status 1. Create an initial commit 1. Check the status 1. Add your favorite quote to the `quotes.txt` file 1. Check the status 1. Check the diff 1. Add the changes to the staging area 1. Commit the new changes 1. Check the status 1. Show the log in oneline format Copy and paste **all** of the terminal text from this process below (not just the history): ``` paste all of your terminal text here ``` ### 3. Optional: Codecademy's Git Course If time permits and you want extra git practice and alternative explanations (it's often beneficial to have something explained in many different ways), check out [Codecademy's Git Course](https://www.codecademy.com/pt-BR/learn/learn-git), particularly the first free item on the syllabus, "Basic Git Workflow". In Mod 0, we will not cover anything beyond Codecademy's intro section; however, you are welcome to check out the other git lessons listed on the syllabus if you want a head start. -
rwarbelow renamed this gist
Jan 27, 2019 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes -
rwarbelow revised this gist
Jan 24, 2019 . 1 changed file with 3 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -2,4 +2,6 @@ The assignments listed here should take you approximately ___ 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.  -
rwarbelow revised this gist
Jan 24, 2019 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
LoadingSorry, something went wrong. Reload?Sorry, we cannot display this file.Sorry, this file is invalid so it cannot be displayed. -
rwarbelow created this gist
Jan 21, 2019 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,5 @@ # Session 3 Practice Tasks The assignments listed here should take you approximately ___ 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.