Skip to content

Commit

Permalink
adding jupyter notebooks to page
Browse files Browse the repository at this point in the history
  • Loading branch information
Lara3333 committed Nov 4, 2024
1 parent 6cf358b commit 9ba78af
Show file tree
Hide file tree
Showing 4 changed files with 74 additions and 15 deletions.
24 changes: 9 additions & 15 deletions _includes/nav/home.html
Original file line number Diff line number Diff line change
Expand Up @@ -99,26 +99,20 @@
> Here are some notebooks with the basics of Javascript:

<div style="display: flex; flex-wrap: wrap; gap: 10px;">
<a href="{{site.baseurl}}/csse/javascript/fundamentals/variables" style="text-decoration: none;">
<div style="background-color: #ba6af0; color: #ffffff; padding: 10px 20px; border-radius: 5px; font-weight: bold;">
Snake Game
<a href="{{site.baseurl}}/variables" style="text-decoration: none;">
<div style="background-color: #e60d52; color: #ffffff; padding: 10px 20px; border-radius: 5px; font-weight: bold;">
Variables Lesson
</div>
</a>
<a href="{{site.baseurl}}/rpg0x/" style="text-decoration: none;">
<div style="background-color: #8314fa; color: white; padding: 10px 20px; border-radius: 5px; font-weight: bold;">
Ocean RPG v1
<a href="{{site.baseurl}}/math_operators/" style="text-decoration: none;">
<div style="background-color: #33e4f8; color: white; padding: 10px 20px; border-radius: 5px; font-weight: bold;">
Math Operators Lesson
</div>
</a>
<a href="{{site.baseurl}}/rpg2x/" style="text-decoration: none;">
<div style="background-color: #ba9df9; color: white; padding: 10px 20px; border-radius: 5px; font-weight: bold;">
Ocean RPG v2
<a href="{{site.baseurl}}/conditions/" style="text-decoration: none;">
<div style="background-color: #9e07f6; color: white; padding: 10px 20px; border-radius: 5px; font-weight: bold;">
Conditions Lesson
</div>
</a>
<a href="{{site.baseurl}}/latest/" style="text-decoration: none;">
<div style="background-color: #5c13fa; color: white; padding: 10px 20px; border-radius: 5px; font-weight: bold;">
Ocean RPG v3 (not working yet)
</div>
</a>
</div>


Expand Down
26 changes: 26 additions & 0 deletions navigation/conditions.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
### Condtions

> Here is what I have learned about Conditions and the hacks and homework I've done.

<div style="display: flex; flex-wrap: wrap; gap: 10px;">
<a href="{{site.baseurl}}/csse/lessons/conditional_p1/" style="text-decoration: none;">
<div style="background-color: #a515f8; color: rgb(0, 0, 0); padding: 10px 20px; border-radius: 5px; font-weight: bold;">
Conditions p1
</div>
</a>
<a href="{{site.baseurl}}/csse/lessons/conditionals-p2/" style="text-decoration: none;">
<div style="background-color: #d088fa; color: rgb(0, 0, 0); padding: 10px 20px; border-radius: 5px; font-weight: bold;">
Conditions p2
</div>
</a>
<a href="{{site.baseurl}}/csse/lessons/conditions_p3/" style="text-decoration: none;">
<div style="background-color: #9e07f6; color: rgb(0, 0, 0); padding: 10px 20px; border-radius: 5px; font-weight: bold;">
Homework
</div>
</a>
<a href="{{site.baseurl}}/csse/conditionals_hacks/" style="text-decoration: none;">
<div style="background-color: #9e07f6; color: rgb(0, 0, 0); padding: 10px 20px; border-radius: 5px; font-weight: bold;">
Hacks
</div>
</a>
</div>
21 changes: 21 additions & 0 deletions navigation/math_operators.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
### Math Operators Lesson

> Here is I've learned about math operators and the assignments I've done to them:

<div style="display: flex; flex-wrap: wrap; gap: 10px;">
<a href="{{site.baseurl}}/csse/lessons/operators/" style="text-decoration: none;">
<div style="background-color: #f05485; color: rgb(0, 0, 0); padding: 10px 20px; border-radius: 5px; font-weight: bold;">
Math Operators Intro
</div>
</a>
<a href="{{site.baseurl}}/csse/lessons/impliment_in_rpg/" style="text-decoration: none;">
<div style="background-color: #e22561; color: rgb(0, 0, 0); padding: 10px 20px; border-radius: 5px; font-weight: bold;">
Use in RPG
</div>
</a>
<a href="{{site.baseurl}}/csse/lessons/mathhomework/" style="text-decoration: none;">
<div style="background-color: #f1acc2; color: rgb(0, 0, 0); padding: 10px 20px; border-radius: 5px; font-weight: bold;">
Homework
</div>
</a>
</div>
18 changes: 18 additions & 0 deletions navigation/variables.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
### Variables: Hacks and Homework

> Here is I've learned about variables and the assignments I've done to them:

<div style="display: flex; flex-wrap: wrap; gap: 10px;">
<a href="{{site.baseurl}}/csse/lessons/variables/" style="text-decoration: none;">
<div style="background-color: #f05485; color: rgb(0, 0, 0); padding: 10px 20px; border-radius: 5px; font-weight: bold;">
Variables Intro
</div>
</a>
<a href="{{site.baseurl}}/csse/lessons/variables_popcorn_hax/" style="text-decoration: none;">
<div style="background-color: #e22561; color: rgb(0, 0, 0); padding: 10px 20px; border-radius: 5px; font-weight: bold;">
Popcorn Hacks
</div>
</a>
<a href="{{site.baseurl}}/csse/lessons/variables_hw/" style="text-decoration: none;">
<div style="background-color: #f1acc2; color: rgb(0, 0, 0); padding: 10px 20px; border-radius: 5px; font-weight: bold;">
Homework
</div>
</a>
</div>

0 comments on commit 9ba78af

Please sign in to comment.