Skip to content

Commit 90df2c8

Browse files
committed
notes and ac
1 parent dfa5028 commit 90df2c8

9 files changed

Lines changed: 822 additions & 8 deletions

File tree

_practice/2025-10-23.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
1. Review the notes from today
2+
1. Answer the following in {index}`hpc.md` of your KWL repo: (to think about how the design of the system we used in class impacts programming and connect it to other ideas taught in CS)
3+
```
4+
1. What kinds of things would your code need to do if you were going to run it on an HPC system?
5+
2. What sbatch options seem the most helpful?
6+
3. How might you go about setting the time limits for a script? How could you estimate how long a script will take?
7+
```

_prepare/2025-10-28.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
2. ensure you can log into seawulf

_review/2025-10-23.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
1. Review the notes from today
2+
1. Answer the following in {index}`hpc.md` of your KWL repo: (to think about how the design of the system we used in class impacts programming and connect it to other ideas taught in CS)
3+
```
4+
1. What kinds of things would your code need to do if you were going to run it on an HPC system?
5+
1. What sbatch options seem the most helpful?
6+
1. How might you go about setting the time limits for a script? How could you estimate how long a script will take?
7+
```

activities/practice.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,4 +118,11 @@ Activities:
118118

119119
Activities:
120120
```{include} ../_practice/2025-10-21.md
121+
```
122+
## 2025-10-23
123+
124+
[related notes](../notes/2025-10-23)
125+
126+
Activities:
127+
```{include} ../_practice/2025-10-23.md
121128
```

activities/prepare.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,4 +127,11 @@ Activities:
127127

128128
Activities:
129129
```{include} ../_prepare/2025-10-23.md
130+
```
131+
## 2025-10-28
132+
133+
[related notes](../notes/2025-10-28)
134+
135+
Activities:
136+
```{include} ../_prepare/2025-10-28.md
130137
```

activities/review.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,4 +111,11 @@ Activities:
111111

112112
Activities:
113113
```{include} ../_review/2025-10-21.md
114+
```
115+
## 2025-10-23
116+
117+
[related notes](../notes/2025-10-23)
118+
119+
Activities:
120+
```{include} ../_review/2025-10-23.md
114121
```

notes/2025-10-16.md

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -473,22 +473,16 @@ Ayman
473473
+++{"lesson_part": "main","type":"heading"}
474474

475475

476-
476+
(nesting)=
477477
## Nesting commands
478478

479479

480-
+++{"lesson_part": "main"}
481480
We can run a command to generate the list by putting it inside `$()` to run that command first. Think kind of like PEMDAS and the `$` in bash is for variables.
482481

483482

484483
```{code-cell} bash
485484
:tags: ["skip-execution"]
486485
for file in $(ls)
487-
```
488-
489-
+++{"lesson_part": "main","type":"output"}
490-
491-
```{code-block} console
492486
> do
493487
> echo $file
494488
> done

0 commit comments

Comments
 (0)