-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add functional exercises, mark academic ex extra
- Loading branch information
Showing
3 changed files
with
221 additions
and
42 deletions.
There are no files selected for viewing
This file contains 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 characters
This file contains 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 characters
This file contains 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 characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,20 @@ | ||
--- | ||
title: Setup | ||
--- | ||
FIXME | ||
|
||
As yesterday, we need to download the training materials from the GitHub code repository online. Go to `https://github.com/sabs-r3/module01_se_day2` in a browser and select the green `Clone or download` button, and then select `Download ZIP`. This will download all the files within a single archive file. After it's finished downloading, we need to extract all files from the archive. Find where the file has been downloaded to, then start a terminal, and assuming the file has downloaded to e.g. `/home/sabs-r3/Downloads`, do the following within the shell: | ||
|
||
~~~ | ||
cd ~ | ||
unzip /home/sabs-r3/Downloads/module01_se_day2-gh-pages.zip | ||
~~~ | ||
{: .language-bash} | ||
|
||
This will unpack the archive in your home directory, within a subdirectory called `module01_se_day2-gh-pages`. Change to the `code` directory within that new directory: | ||
|
||
~~~ | ||
cd module01_se_day2-gh-pages/code | ||
~~~ | ||
{: .language-bash} | ||
|
||
{% include links.md %} |