Skip to content
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .config/dotnet-tools.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"isRoot": true,
"tools": {
"dotnet-repl": {
"version": "0.1.204",
"version": "0.1.216",
"commands": [
"dotnet-repl"
]
Expand Down
20 changes: 18 additions & 2 deletions .tools/run_all_notebooks.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,26 @@ Set-Location $rootPath
# $notebooks = git diff --name-only $mainBranch | Where-Object { $_ -like "*.ipynb" }
$notebooks = Get-ChildItem -Path $rootPath -Recurse -Include *.ipynb | Where-Object { $_.FullName -notlike "*output*" }

# skip notebooks that are known to fail
# skip notebooks that are known to fail or require external network access
$notebooks_to_skip = @(
"14-Methods and Members.ipynb",
"02-Code Cells.ipynb"
"02-Code Cells.ipynb",
# Machine learning notebooks require NuGet package downloads which can hang in CI
"01-Intro to Machine Learning.ipynb",
"02-Data Preparation and Feature Engineering.ipynb",
"03-Training and AutoML.ipynb",
"04-Model Evaluation.ipynb",
"05 - AutoML Sweepable API.ipynb",
"06-AutoML HPO and tuner.ipynb",
"E2E-Classification with Iris Dataset.ipynb",
"E2E-Forecasting using Autoregressive with Luna Dataset.ipynb",
"E2E-Forecasting using SSA with Luna Dataset.ipynb",
"E2E-Regression with Taxi Dataset.ipynb",
"E2E-Text-Classification-API-with-Yelp-Dataset.ipynb",
"Parameter and SearchSpace.ipynb",
"REF-Data Processing with DataFrame.ipynb",
"REF-Graphs and Visualizations.ipynb",
"REF-Kaggle with Titanic Dataset.ipynb"
)

$notebooks = $notebooks | Where-Object { $notebooks_to_skip -notcontains $_.Name }
Expand Down
30 changes: 15 additions & 15 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,21 +14,21 @@ Download or clone this repo and open the `csharp-101` folder in VS Code to get s

| # | Topic | Notebook Link | Video Link | Documentation |
|---|-------------------------------|-----------------------|------------|---------------|
1 | Hello World | [01 Notebook](https://ntbk.io/csharp101-notebook01) | [01 Video](https://www.youtube.com/watch?v=KT2VR7m19So&list=PLdo4fOcmZ0oVxKLQCHpiUWun7vlJJvUiN&index=2) | [Intro to C#](https://docs.microsoft.com/dotnet/csharp/tour-of-csharp/tutorials/hello-world?WT.mc_id=csharpnotebook-35129-website)
2 | The Basics of Strings | [02 Notebook](https://ntbk.io/csharp101-notebook02) | [02 Video](https://www.youtube.com/watch?v=JSpC7Cz64h0&list=PLdo4fOcmZ0oVxKLQCHpiUWun7vlJJvUiN&index=3) | [Intro to C#](https://docs.microsoft.com/dotnet/csharp/tour-of-csharp/tutorials/hello-world?WT.mc_id=csharpnotebook-35129-website)
3 | Searching Strings | [03 Notebook](https://ntbk.io/csharp101-notebook03) | [03 Video](https://www.youtube.com/watch?v=JL30gSE3WaQ&list=PLdo4fOcmZ0oVxKLQCHpiUWun7vlJJvUiN&index=4) | [Intro to C#](https://docs.microsoft.com/dotnet/csharp/tour-of-csharp/tutorials/hello-world?WT.mc_id=csharpnotebook-35129-website)
4 | Numbers and Integers Math | [04 Notebook](https://ntbk.io/csharp101-notebook04) | [04 Video](https://www.youtube.com/watch?v=jEE0pWTq54U&list=PLdo4fOcmZ0oVxKLQCHpiUWun7vlJJvUiN&index=5) | [Numbers in C#](https://docs.microsoft.com/dotnet/csharp/tour-of-csharp/tutorials/numbers-in-csharp?WT.mc_id=csharpnotebook-35129-website)
5 | Numbers and Integer Precision | [05 Notebook](https://ntbk.io/csharp101-notebook05) | [05 Video](https://www.youtube.com/watch?v=31EmPADtv4w&list=PLdo4fOcmZ0oVxKLQCHpiUWun7vlJJvUiN&index=6) | [Numbers in C#](https://docs.microsoft.com/dotnet/csharp/tour-of-csharp/tutorials/numbers-in-csharp?WT.mc_id=csharpnotebook-35129-website)
6 | Numbers and Decimals | [06 Notebook](https://ntbk.io/csharp101-notebook06) | [06 Video](https://www.youtube.com/watch?v=kdKcpF9roeU&list=PLdo4fOcmZ0oVxKLQCHpiUWun7vlJJvUiN&index=7) | [Numbers in C#](https://docs.microsoft.com/dotnet/csharp/tour-of-csharp/tutorials/numbers-in-csharp?WT.mc_id=csharpnotebook-35129-website)
7 | Branches (if) | [07 Notebook](https://ntbk.io/csharp101-notebook07) | [07 Video](https://www.youtube.com/watch?v=y4OTe8LSokg&list=PLdo4fOcmZ0oVxKLQCHpiUWun7vlJJvUiN&index=8) | [Branches and Loops in C#](https://docs.microsoft.com/dotnet/csharp/tour-of-csharp/tutorials/branches-and-loops-local?WT.mc_id=csharpnotebook-35129-website)
8 | What Are Loops? | [08 Notebook](https://ntbk.io/csharp101-notebook08) | [08 Video](https://www.youtube.com/watch?v=z31m5Up_gSQ&list=PLdo4fOcmZ0oVxKLQCHpiUWun7vlJJvUiN&index=10) | [Branches and Loops in C#](https://docs.microsoft.com/dotnet/csharp/tour-of-csharp/tutorials/branches-and-loops-local?WT.mc_id=csharpnotebook-35129-website)
9 | Combining Branches and Loops | [09 Notebook](https://ntbk.io/csharp101-notebook09) | [09 Video](https://www.youtube.com/watch?v=qK7tUpaOXi8&list=PLdo4fOcmZ0oVxKLQCHpiUWun7vlJJvUiN&index=11) | [Branches and Loops in C#](https://docs.microsoft.com/dotnet/csharp/tour-of-csharp/tutorials/branches-and-loops-local?WT.mc_id=csharpnotebook-35129-website)
10 | Arrays, Lists, and Collections| [10 Notebook](https://ntbk.io/csharp101-notebook10) | [10 Video](https://www.youtube.com/watch?v=qLeF_wpnVto&list=PLdo4fOcmZ0oVxKLQCHpiUWun7vlJJvUiN&index=12) | [Arrays, Lists, and Collections in C#](https://docs.microsoft.com/dotnet/csharp/tour-of-csharp/tutorials/arrays-and-collections?WT.mc_id=csharpnotebook-35129-website)
11 | Search, Sort, and Index Lists | [11 Notebook](https://ntbk.io/csharp101-notebook11) | [11 Video](https://www.youtube.com/watch?v=NJ5ghiutzfY&list=PLdo4fOcmZ0oVxKLQCHpiUWun7vlJJvUiN&index=13) | [Arrays, Lists, and Collections in C#](https://docs.microsoft.com/dotnet/csharp/tour-of-csharp/tutorials/arrays-and-collections?WT.mc_id=csharpnotebook-35129-website)
12 | Lists of Other Types | [12 Notebook](https://ntbk.io/csharp101-notebook12) | [12 Video](https://www.youtube.com/watch?v=oIQdb93xewE&list=PLdo4fOcmZ0oVxKLQCHpiUWun7vlJJvUiN&index=14) | [Arrays, Lists, and Collections in C#](https://docs.microsoft.com/dotnet/csharp/tour-of-csharp/tutorials/arrays-and-collections?WT.mc_id=csharpnotebook-35129-website)
13 | Objects and Classes | [13 Notebook](https://ntbk.io/csharp101-notebook13)| [13 Video](https://www.youtube.com/watch?v=TzgxcAiHCWA&list=PLdo4fOcmZ0oVxKLQCHpiUWun7vlJJvUiN&index=16) | [Object Oriented Coding in C#](https://docs.microsoft.com/dotnet/csharp/fundamentals/tutorials/classes?WT.mc_id=csharpnotebook-35129-website)
14 | Methods and Members | [14 Notebook](https://ntbk.io/csharp101-notebook14) | [14 Video](https://www.youtube.com/watch?v=xLhm3bEG__c&list=PLdo4fOcmZ0oVxKLQCHpiUWun7vlJJvUiN&index=17) | [Object Oriented Coding in C#](https://docs.microsoft.com/dotnet/csharp/fundamentals/tutorials/classes?WT.mc_id=csharpnotebook-35129-website)
15 | Methods and Exceptions | [15 Notebook](https://ntbk.io/csharp101-notebook15) | [15 Video](https://www.youtube.com/watch?v=8YsoBBiVVzQ&list=PLdo4fOcmZ0oVxKLQCHpiUWun7vlJJvUiN&index=18) | [Object Oriented Coding in C#](https://docs.microsoft.com/dotnet/csharp/fundamentals/tutorials/classes?WT.mc_id=csharpnotebook-35129-website)
1 | Hello World | [01 Notebook](https://raw.githubusercontent.com/dotnet/csharp-notebooks/main/csharp-101/01-Hello%20World.ipynb) | [01 Video](https://www.youtube.com/watch?v=KT2VR7m19So&list=PLdo4fOcmZ0oVxKLQCHpiUWun7vlJJvUiN&index=2) | [Intro to C#](https://docs.microsoft.com/dotnet/csharp/tour-of-csharp/tutorials/hello-world?WT.mc_id=csharpnotebook-35129-website)
2 | The Basics of Strings | [02 Notebook](https://raw.githubusercontent.com/dotnet/csharp-notebooks/main/csharp-101/02-The%20Basics%20of%20Strings.ipynb) | [02 Video](https://www.youtube.com/watch?v=JSpC7Cz64h0&list=PLdo4fOcmZ0oVxKLQCHpiUWun7vlJJvUiN&index=3) | [Intro to C#](https://docs.microsoft.com/dotnet/csharp/tour-of-csharp/tutorials/hello-world?WT.mc_id=csharpnotebook-35129-website)
3 | Searching Strings | [03 Notebook](https://raw.githubusercontent.com/dotnet/csharp-notebooks/main/csharp-101/03-Searching%20Strings.ipynb) | [03 Video](https://www.youtube.com/watch?v=JL30gSE3WaQ&list=PLdo4fOcmZ0oVxKLQCHpiUWun7vlJJvUiN&index=4) | [Intro to C#](https://docs.microsoft.com/dotnet/csharp/tour-of-csharp/tutorials/hello-world?WT.mc_id=csharpnotebook-35129-website)
4 | Numbers and Integers Math | [04 Notebook](https://raw.githubusercontent.com/dotnet/csharp-notebooks/main/csharp-101/04-Numbers%20and%20Integer%20Math.ipynb) | [04 Video](https://www.youtube.com/watch?v=jEE0pWTq54U&list=PLdo4fOcmZ0oVxKLQCHpiUWun7vlJJvUiN&index=5) | [Numbers in C#](https://docs.microsoft.com/dotnet/csharp/tour-of-csharp/tutorials/numbers-in-csharp?WT.mc_id=csharpnotebook-35129-website)
5 | Numbers and Integer Precision | [05 Notebook](https://raw.githubusercontent.com/dotnet/csharp-notebooks/main/csharp-101/05-Numbers%20and%20Integer%20Precision.ipynb) | [05 Video](https://www.youtube.com/watch?v=31EmPADtv4w&list=PLdo4fOcmZ0oVxKLQCHpiUWun7vlJJvUiN&index=6) | [Numbers in C#](https://docs.microsoft.com/dotnet/csharp/tour-of-csharp/tutorials/numbers-in-csharp?WT.mc_id=csharpnotebook-35129-website)
6 | Numbers and Decimals | [06 Notebook](https://raw.githubusercontent.com/dotnet/csharp-notebooks/main/csharp-101/06-Numbers%20and%20Decimals.ipynb) | [06 Video](https://www.youtube.com/watch?v=kdKcpF9roeU&list=PLdo4fOcmZ0oVxKLQCHpiUWun7vlJJvUiN&index=7) | [Numbers in C#](https://docs.microsoft.com/dotnet/csharp/tour-of-csharp/tutorials/numbers-in-csharp?WT.mc_id=csharpnotebook-35129-website)
7 | Branches (if) | [07 Notebook](https://raw.githubusercontent.com/dotnet/csharp-notebooks/main/csharp-101/07-Branches%20(if).ipynb) | [07 Video](https://www.youtube.com/watch?v=y4OTe8LSokg&list=PLdo4fOcmZ0oVxKLQCHpiUWun7vlJJvUiN&index=8) | [Branches and Loops in C#](https://docs.microsoft.com/dotnet/csharp/tour-of-csharp/tutorials/branches-and-loops-local?WT.mc_id=csharpnotebook-35129-website)
8 | What Are Loops? | [08 Notebook](https://raw.githubusercontent.com/dotnet/csharp-notebooks/main/csharp-101/08-What%20Are%20Loops.ipynb) | [08 Video](https://www.youtube.com/watch?v=z31m5Up_gSQ&list=PLdo4fOcmZ0oVxKLQCHpiUWun7vlJJvUiN&index=10) | [Branches and Loops in C#](https://docs.microsoft.com/dotnet/csharp/tour-of-csharp/tutorials/branches-and-loops-local?WT.mc_id=csharpnotebook-35129-website)
9 | Combining Branches and Loops | [09 Notebook](https://raw.githubusercontent.com/dotnet/csharp-notebooks/main/csharp-101/09-Combining%20Branches%20and%20Loops.ipynb) | [09 Video](https://www.youtube.com/watch?v=qK7tUpaOXi8&list=PLdo4fOcmZ0oVxKLQCHpiUWun7vlJJvUiN&index=11) | [Branches and Loops in C#](https://docs.microsoft.com/dotnet/csharp/tour-of-csharp/tutorials/branches-and-loops-local?WT.mc_id=csharpnotebook-35129-website)
10 | Arrays, Lists, and Collections| [10 Notebook](https://raw.githubusercontent.com/dotnet/csharp-notebooks/main/csharp-101/10-Arrays%2C%20Lists%2C%20and%20Collections.ipynb) | [10 Video](https://www.youtube.com/watch?v=qLeF_wpnVto&list=PLdo4fOcmZ0oVxKLQCHpiUWun7vlJJvUiN&index=12) | [Arrays, Lists, and Collections in C#](https://docs.microsoft.com/dotnet/csharp/tour-of-csharp/tutorials/arrays-and-collections?WT.mc_id=csharpnotebook-35129-website)
11 | Search, Sort, and Index Lists | [11 Notebook](https://raw.githubusercontent.com/dotnet/csharp-notebooks/main/csharp-101/11-%20Search%2C%20Sort%2C%20and%20Index%20Lists.ipynb) | [11 Video](https://www.youtube.com/watch?v=NJ5ghiutzfY&list=PLdo4fOcmZ0oVxKLQCHpiUWun7vlJJvUiN&index=13) | [Arrays, Lists, and Collections in C#](https://docs.microsoft.com/dotnet/csharp/tour-of-csharp/tutorials/arrays-and-collections?WT.mc_id=csharpnotebook-35129-website)
12 | Lists of Other Types | [12 Notebook](https://raw.githubusercontent.com/dotnet/csharp-notebooks/main/csharp-101/12-Lists%20of%20Other%20Types.ipynb) | [12 Video](https://www.youtube.com/watch?v=oIQdb93xewE&list=PLdo4fOcmZ0oVxKLQCHpiUWun7vlJJvUiN&index=14) | [Arrays, Lists, and Collections in C#](https://docs.microsoft.com/dotnet/csharp/tour-of-csharp/tutorials/arrays-and-collections?WT.mc_id=csharpnotebook-35129-website)
13 | Objects and Classes | [13 Notebook](https://raw.githubusercontent.com/dotnet/csharp-notebooks/main/csharp-101/13-Objects%20and%20Classes.ipynb)| [13 Video](https://www.youtube.com/watch?v=TzgxcAiHCWA&list=PLdo4fOcmZ0oVxKLQCHpiUWun7vlJJvUiN&index=16) | [Object Oriented Coding in C#](https://docs.microsoft.com/dotnet/csharp/fundamentals/tutorials/classes?WT.mc_id=csharpnotebook-35129-website)
14 | Methods and Members | [14 Notebook](https://raw.githubusercontent.com/dotnet/csharp-notebooks/main/csharp-101/14-Methods%20and%20Members.ipynb) | [14 Video](https://www.youtube.com/watch?v=xLhm3bEG__c&list=PLdo4fOcmZ0oVxKLQCHpiUWun7vlJJvUiN&index=17) | [Object Oriented Coding in C#](https://docs.microsoft.com/dotnet/csharp/fundamentals/tutorials/classes?WT.mc_id=csharpnotebook-35129-website)
15 | Methods and Exceptions | [15 Notebook](https://raw.githubusercontent.com/dotnet/csharp-notebooks/main/csharp-101/15-Methods%20and%20Exceptions.ipynb) | [15 Video](https://www.youtube.com/watch?v=8YsoBBiVVzQ&list=PLdo4fOcmZ0oVxKLQCHpiUWun7vlJJvUiN&index=18) | [Object Oriented Coding in C#](https://docs.microsoft.com/dotnet/csharp/fundamentals/tutorials/classes?WT.mc_id=csharpnotebook-35129-website)

## Machine Learning

Expand Down
2 changes: 1 addition & 1 deletion csharp-101/01-Hello World.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@
"# Continue learning\n",
"\n",
"There are plenty more resources out there to learn!\n",
">> [⏩ Next Module - The Basics of Strings](https://ntbk.io/csharp101-notebook02)\n",
">> [⏩ Next Module - The Basics of Strings](https://raw.githubusercontent.com/dotnet/csharp-notebooks/main/csharp-101/02-The%20Basics%20of%20Strings.ipynb)\n",
">\n",
"> [Watch the video](https://www.youtube.com/watch?v=KT2VR7m19So&list=PLdo4fOcmZ0oVxKLQCHpiUWun7vlJJvUiN&index=2)\n",
">\n",
Expand Down
4 changes: 2 additions & 2 deletions csharp-101/02-The Basics of Strings.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -251,9 +251,9 @@
"# Continue learning\n",
"\n",
"There are plenty more resources out there to learn!\n",
"> [⏩ Next Module - Searching Strings](https://ntbk.io/csharp101-notebook03)\n",
"> [⏩ Next Module - Searching Strings](https://raw.githubusercontent.com/dotnet/csharp-notebooks/main/csharp-101/03-Searching%20Strings.ipynb)\n",
">\n",
"> [⏪ Last Module - Hello World](https://ntbk.io/csharp101-notebook01)\n",
"> [⏪ Last Module - Hello World](https://raw.githubusercontent.com/dotnet/csharp-notebooks/main/csharp-101/01-Hello%20World.ipynb)\n",
">\n",
"> [Watch the video](https://www.youtube.com/watch?v=JSpC7Cz64h0&list=PLdo4fOcmZ0oVxKLQCHpiUWun7vlJJvUiN&index=3)\n",
">\n",
Expand Down
4 changes: 2 additions & 2 deletions csharp-101/03-Searching Strings.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -123,9 +123,9 @@
"# Continue learning\n",
"\n",
"There are plenty more resources out there to learn!\n",
"> [⏩ Next Module - Numbers and Integer Math](https://ntbk.io/csharp101-notebook04)\n",
"> [⏩ Next Module - Numbers and Integer Math](https://raw.githubusercontent.com/dotnet/csharp-notebooks/main/csharp-101/04-Numbers%20and%20Integer%20Math.ipynb)\n",
">\n",
"> [⏪ Last Module - The Basics of Strings](https://ntbk.io/csharp101-notebook02)\n",
"> [⏪ Last Module - The Basics of Strings](https://raw.githubusercontent.com/dotnet/csharp-notebooks/main/csharp-101/02-The%20Basics%20of%20Strings.ipynb)\n",
">\n",
"> [Watch the video](https://www.youtube.com/watch?v=JL30gSE3WaQ&list=PLdo4fOcmZ0oVxKLQCHpiUWun7vlJJvUiN&index=4)\n",
">\n",
Expand Down
4 changes: 2 additions & 2 deletions csharp-101/04-Numbers and Integer Math.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -311,9 +311,9 @@
"# Continue learning\n",
"\n",
"There are plenty more resources out there to learn!\n",
"> [⏩ Next Module - Numbers and Integer Precision](https://ntbk.io/csharp101-notebook05)\n",
"> [⏩ Next Module - Numbers and Integer Precision](https://raw.githubusercontent.com/dotnet/csharp-notebooks/main/csharp-101/05-Numbers%20and%20Integer%20Precision.ipynb)\n",
">\n",
"> [⏪ Last Module - Searching Strings](https://ntbk.io/csharp101-notebook03)\n",
"> [⏪ Last Module - Searching Strings](https://raw.githubusercontent.com/dotnet/csharp-notebooks/main/csharp-101/03-Searching%20Strings.ipynb)\n",
">\n",
"> [Watch the video](https://www.youtube.com/watch?v=jEE0pWTq54U&list=PLdo4fOcmZ0oVxKLQCHpiUWun7vlJJvUiN&index=5)\n",
">\n",
Expand Down
4 changes: 2 additions & 2 deletions csharp-101/05-Numbers and Integer Precision.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -284,9 +284,9 @@
"source": [
"# Continue learning\n",
"\n",
"> [⏩ Next Module - Numbers and Decimals](https://ntbk.io/csharp101-notebook06)\n",
"> [⏩ Next Module - Numbers and Decimals](https://raw.githubusercontent.com/dotnet/csharp-notebooks/main/csharp-101/06-Numbers%20and%20Decimals.ipynb)\n",
">\n",
"> [⏪ Last Module - Numbers and Integer Math](https://ntbk.io/csharp101-notebook04)\n",
"> [⏪ Last Module - Numbers and Integer Math](https://raw.githubusercontent.com/dotnet/csharp-notebooks/main/csharp-101/04-Numbers%20and%20Integer%20Math.ipynb)\n",
">\n",
"> [Watch the video](https://www.youtube.com/watch?v=31EmPADtv4w&list=PLdo4fOcmZ0oVxKLQCHpiUWun7vlJJvUiN&index=6)\n",
">\n",
Expand Down
4 changes: 2 additions & 2 deletions csharp-101/06-Numbers and Decimals.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -128,9 +128,9 @@
"# Continue learning\n",
"\n",
"There are plenty more resources out there to learn!\n",
"> [⏩ Next Module - Branches (if)](https://ntbk.io/csharp101-notebook07)\n",
"> [⏩ Next Module - Branches (if)](https://raw.githubusercontent.com/dotnet/csharp-notebooks/main/csharp-101/07-Branches%20(if).ipynb)\n",
">\n",
"> [⏪ Last Module - Numbers and Integer Precision](https://ntbk.io/csharp101-notebook05)\n",
"> [⏪ Last Module - Numbers and Integer Precision](https://raw.githubusercontent.com/dotnet/csharp-notebooks/main/csharp-101/05-Numbers%20and%20Integer%20Precision.ipynb)\n",
">\n",
"> [Watch the video](https://www.youtube.com/watch?v=kdKcpF9roeU&list=PLdo4fOcmZ0oVxKLQCHpiUWun7vlJJvUiN&index=7)\n",
">\n",
Expand Down
4 changes: 2 additions & 2 deletions csharp-101/07-Branches (if).ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -217,9 +217,9 @@
"# Continue learning\n",
"\n",
"There are plenty more resources out there to learn!\n",
"> [⏩ Next Module - What Are Loops](https://ntbk.io/csharp101-notebook08)\n",
"> [⏩ Next Module - What Are Loops](https://raw.githubusercontent.com/dotnet/csharp-notebooks/main/csharp-101/08-What%20Are%20Loops.ipynb)\n",
">\n",
"> [⏪ Last Module - Numbers and Decimal](https://ntbk.io/csharp101-notebook06)\n",
"> [⏪ Last Module - Numbers and Decimal](https://raw.githubusercontent.com/dotnet/csharp-notebooks/main/csharp-101/06-Numbers%20and%20Decimals.ipynb)\n",
">\n",
"> [Watch the video](https://www.youtube.com/watch?v=KT2VR7m19So&list=PLdo4fOcmZ0oVxKLQCHpiUWun7vlJJvUiN&index=2)\n",
">\n",
Expand Down
4 changes: 2 additions & 2 deletions csharp-101/08-What Are Loops.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -226,9 +226,9 @@
"# Continue learning\n",
"\n",
"There are plenty more resources out there to learn!\n",
"> [⏩ Next Module - Combining Branches and Loops](https://ntbk.io/csharp101-notebook09)\n",
"> [⏩ Next Module - Combining Branches and Loops](https://raw.githubusercontent.com/dotnet/csharp-notebooks/main/csharp-101/09-Combining%20Branches%20and%20Loops.ipynb)\n",
">\n",
"> [⏪ Last Module - Branches (if)](https://ntbk.io/csharp101-notebook07)\n",
"> [⏪ Last Module - Branches (if)](https://raw.githubusercontent.com/dotnet/csharp-notebooks/main/csharp-101/07-Branches%20(if).ipynb)\n",
">\n",
"> [Watch the video](https://www.youtube.com/watch?v=z31m5Up_gSQ&list=PLdo4fOcmZ0oVxKLQCHpiUWun7vlJJvUiN&index=10)\n",
">\n",
Expand Down
Loading
Loading