Skip to content

Commit 03d1a1f

Browse files
fix build issues
1 parent a38fc88 commit 03d1a1f

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

individual_modules/intro_to_GPUs/setup.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ Ensure you can SSH into the remote machine from your terminal. If SSH is not alr
280280

281281
5. Add a new SSH configuration to the file, specifying the remote machine’s details. Here’s an example configuration:
282282

283-
```ssh-config
283+
```
284284
Host my-remote-machine
285285
HostName <remote-ip-or-hostname>
286286
User <your-username>

short_courses/data_science_best_practices.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ While it is not essential to follow every recommendation to the letter, thoughtf
1111
Most of the instructions in this guide require use of the commandline interface in a Unix based system (Mac and Linux). For use with Windows first install Gitbash via [Git for Windows](https://gitforwindows.org).
1212
Where `{project-name}` is referenced, replace this with the name of your project _without_ the curly braces.
1313

14-
To get started you will need to make sure [Python](#language-python), [Git](#version-control-git) and [Poetry](#packaging-and-dependency-management-poetry) are installed.
1514
Python and Git come pre-installed on both Mac and Linux systems, and Git is installed as part of Git for Windows, but Windows users will need to [download](https://www.python.org/downloads/) and install Python.
1615
You will need to additionally install Poetry, which can be done from the [website](https://python-poetry.org/) or by running:
1716

@@ -77,7 +76,7 @@ poetry add {package-name}
7776

7877
### Writing Code:
7978

80-
We recommend writing the majority of code using [VSCode](#ide-vscode) which will need [installing](https://code.visualstudio.com/Download) on all systems
79+
We recommend writing the majority of code using VSCode which will need [installing](https://code.visualstudio.com/Download) on all systems
8180
Core project code can be added to a new `module_name.py` file in `src/{project-name}/` and then functions, classes and variables from that module can be imported into other files using:
8281

8382
```python
@@ -167,7 +166,7 @@ A well-organized project structure is key to keeping code manageable, especially
167166
- **.gitignore**: Defines what is and is not to be included in the git repository fot the project.
168167
- **README.md**: Provides an overview of the project, setup instructions, and usage examples.
169168

170-
There will be some additional files created through use of [git](#version-control-git) and [VSCode](#ide-vscode).
169+
There will be some additional files created through use of git and VSCode.
171170

172171
NOTE: files beginning `.` are hidden files and will not appear unless showing hidden files is specified, i.e. using:
173172

0 commit comments

Comments
 (0)