You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-4Lines changed: 3 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@ Below are the rough steps needed to complete this assignment, with specific deta
11
11
12
12
1. Fork the shared training repository to your GitHub account.
13
13
2. Clone the repository to your preferred development environment.
14
-
3. Create a script in **bash** or **python** in the `workshop_scripts` directory which decodes your chunk stored in the `encrypted_data` folder and outputs the decoded text into the `workshop_data` directory using the `[key].txt` format i.e. `2.txt`.
14
+
3. Create a script in **bash** or **python** in the `workshop_scripts` directory which decodes your chunk stored in the `encrypted_data` folder and outputs the decoded text into the `workshop_data` directory using the `[key].txt` format i.e. `2.txt`. Note: use relative paths in your script, the absolute path will be different on everyone's machine.
15
15
4. Commit the new script on your fork of the repository.
16
16
5. Push the new commit to your fork on GitHub.
17
17
6. Create pull request in the [StaPH-B/2026-amd-git-workshop](https://github.com/StaPH-B/2026-amd-git-workshop) on GitHub to merge changes from your fork into the shared training repository.
@@ -23,8 +23,7 @@ Below are the rough steps needed to complete this assignment, with specific deta
23
23
24
24
## Example Decryption function
25
25
26
-
```
27
-
python
26
+
```python
28
27
# Simple function to decrypt a string by shifting the ascii code by some value (key)
0 commit comments