Skip to content

Commit

Permalink
Merge branch 'main' into kiz-hk-substrate
Browse files Browse the repository at this point in the history
  • Loading branch information
kianenigma authored Jan 14, 2024
2 parents d6439f6 + 83fa1e5 commit b0d8040
Show file tree
Hide file tree
Showing 59 changed files with 3,386 additions and 583 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Main CI

on:
push:
branches: [main]
pull_request:
branches: [main]

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: yarn
- run: yarn build

all:
# This job ensures that all jobs above (now we have just build) are successful.
needs: [build]
runs-on: ubuntu-latest
steps:
- run: echo Success
1 change: 0 additions & 1 deletion assets/styles/custom-classes.css
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,6 @@ th {
float: left;
margin: 10px;
text-align: center;
vertical-align: middle;
line-height: 100px;
}

Expand Down
4 changes: 2 additions & 2 deletions assets/templates/slide-template.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<link rel="stylesheet" href="{{{base}}}{{{highlightThemeUrl}}}" />

{{#cssPaths}}
<link rel="stylesheet" href="{{{base}}}/{{{.}}}" />
<link rel="stylesheet" href="{{{base}}}{{{.}}}" />
{{/cssPaths}}

{{#watch}}
Expand Down Expand Up @@ -138,4 +138,4 @@
</script>
</body>

</html>
</html>
4 changes: 0 additions & 4 deletions syllabus/1-Cryptography/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,15 +51,11 @@ They should not zone-out of class to complete this during class time, they shoul
1. `p4_signing` assignment problem
1. ☕ Break
1. [6-Advanced_Signatures](6-Advanced_Signatures-slides.md)
<!-- FIXME move to separate MONO repo for crypto-->
- 💻 [AES Modes](./materials/aes-modes-activity/) Activity
1. `p6_merkle` assignment problem

#### Afternoon

1. [7-Hash_Based_Data_Structures-slides](./7-Hash_Based_Data_Structures-slides.md)
<!-- FIXME move to separate MONO repo for crypto-->
- 💻 [Merkle Tree](./materials/merkle-tree-activity/) Activity
1. `p5_data_integrity_and_recovery` assignment problem
1. `p7_exotics` assignment problem if it exists
1. ☕ Break
Expand Down
Loading

0 comments on commit b0d8040

Please sign in to comment.