Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
21 changed files
with
256 additions
and
253 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
BIN
+0 Bytes
(100%)
docs/assessments/pdf/test_cw1_attempt1.pdf
Binary file not shown.
This file was deleted.
Oops, something went wrong.
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
@@ -0,0 +1,38 @@ | ||
--- | ||
subtitle: Lab Activity 1a | ||
author: Dr Ian Cornelius | ||
lang: en-GB | ||
--- | ||
|
||
# Task 1 | ||
|
||
## Sub-Task A | ||
|
||
### Sub-Sub-Task i | ||
|
||
# Task 2 | ||
|
||
## Sub-Task A | ||
|
||
### Sub-Sub-Task i | ||
|
||
# Task 3 | ||
|
||
```python | ||
def hello_world(_a): | ||
print("Hello World") | ||
return _a | ||
hello_world("Ian") | ||
``` | ||
|
||
## Sub-Task A | ||
|
||
### Sub-Sub-Task i | ||
|
||
# Task 4 | ||
|
||
## Sub-Task A | ||
|
||
## Sub-Task B | ||
|
||
## Sub-Task C |
BIN
-15.5 KB
docs/labs/pdf/1a_Example.pdf
Binary file not shown.
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
@@ -0,0 +1,5 @@ | ||
# Week 1 - Lab Activities | ||
|
||
| Activity | Hand-Out Date | HTML Labs | Knowledge Check | | ||
|----------|---------------|-----------------------------------|-----------------| | ||
| 1 | 00/00/0000 | [Access Here](html/1a_Example.md) | [Access Here]() | |
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
BIN
+121 KB
(150%)
docs/lectures/pdf/1a_Example.pdf
Binary file not shown.
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
@@ -0,0 +1,13 @@ | ||
Get-ChildItem .\master_files\labs -Recurse -filter "*.md" | foreach { | ||
$name = [System.IO.Path]::GetFileNameWithoutExtension($_.Name) | ||
$fullName = $_.FullName | ||
Copy-Item $fullName .\docs\labs\html\$name.md | ||
# pandoc.exe ` | ||
# -f markdown ` | ||
# --to html5 ` | ||
# --template=https://github.coventry.ac.uk/pages/ab6459/reveal.js/dist/templates/lab_template.html ` | ||
# -B https://github.coventry.ac.uk/pages/ab6459/reveal.js/headers/lab/4061cem.html ` | ||
# -A .\master_files\labs\checklists\$name.html ` | ||
# -o .\docs\labs\html\$name.html ` | ||
# $fullName | ||
} |
Oops, something went wrong.