Skip to content

Commit

Permalink
Update "Tips to Get Started"
Browse files Browse the repository at this point in the history
  • Loading branch information
DanWahlin committed Nov 1, 2023
1 parent 3a6042a commit 8f78657
Show file tree
Hide file tree
Showing 6 changed files with 52 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Adventures/1-Beginner/The-Clockwork-Town-of-Tempora.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ Your task is to create a system that checks all the clocks in the town and synch
1. Create a folder for your code.
- JavaScript: Create a folder called `tempora` and add a file named `app.js`.
- Python: Create a folder called `tempora` and add a file named `app.py`.
- C#: Create a folder called `tempora` and run `dotnet new console`;
- C#: Create a folder called `tempora` and run `dotnet new console`.

### GitHub Copilot Tips

Expand Down
6 changes: 3 additions & 3 deletions Adventures/1-Beginner/The-Magical-Forest-of-Algora.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,9 @@ Your task is to simulate the dance between Lox and Faelis. Each creature has its
- [Python](https://www.python.org/downloads/)
- [.NET](https://dot.net)
1. Create a folder for your code.
- JavaScript: Create a folder called `tempora` and add a file named `app.js`.
- Python: Create a folder called `tempora` and add a file named `app.py`.
- C#: Create a folder called `tempora` and run `dotnet new console`;
- JavaScript: Create a folder called `algora` and add a file named `app.js`.
- Python: Create a folder called `algora` and add a file named `app.py`.
- C#: Create a folder called `algora` and run `dotnet new console`.

### GitHub Copilot Tips

Expand Down
12 changes: 12 additions & 0 deletions Adventures/2-Intermediate/The-Celestial-Alignment-of-Lumoria.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,18 @@ The planets aren't sorted by their distance from the Lumorian Sun so you'll need
1. For each planet, check the planets that are closer to the Lumorian Sun to see if they cast a shadow on other planets.
1. Output the light intensity each planet receives.

### Tips to Get Started

1. If you're using a GitHub Codespace, you're ready to go!
1. If running locally, ensure that you have your target language/framework installed.
- [Node.js](https://nodejs.org)
- [Python](https://www.python.org/downloads/)
- [.NET](https://dot.net)
1. Create a folder for your code.
- JavaScript: Create a folder called `lumoria` and add a file named `app.js`.
- Python: Create a folder called `lumoria` and add a file named `app.py`.
- C#: Create a folder called `lumoria` and run `dotnet new console`.

### GitHub Copilot Tips

<a href="#">
Expand Down
12 changes: 12 additions & 0 deletions Adventures/2-Intermediate/The-Legendary-Duel-of-Stonevale.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,18 @@ Your task is to simulate the duel between Rok and Papyra. Each warrior makes a s
1. Tally the scores after 5 rounds.
1. Declare the overall winner of the duel.

### Tips to Get Started

1. If you're using a GitHub Codespace, you're ready to go!
1. If running locally, ensure that you have your target language/framework installed.
- [Node.js](https://nodejs.org)
- [Python](https://www.python.org/downloads/)
- [.NET](https://dot.net)
1. Create a folder for your code.
- JavaScript: Create a folder called `stonevale` and add a file named `app.js`.
- Python: Create a folder called `stonevale` and add a file named `app.py`.
- C#: Create a folder called `stonevale` and run `dotnet new console`.

### GitHub Copilot Tips

<a href="#">
Expand Down
12 changes: 12 additions & 0 deletions Adventures/2-Intermediate/The-Scrolls-of-Eldoria.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,18 @@ You, a young sorcerer's apprentice, have been given the task to retrieve and dec
1. Use a regular expression to filter out the misleading information and extract the true secrets.
1. Display the extracted secrets.

### Tips to Get Started

1. If you're using a GitHub Codespace, you're ready to go!
1. If running locally, ensure that you have your target language/framework installed.
- [Node.js](https://nodejs.org)
- [Python](https://www.python.org/downloads/)
- [.NET](https://dot.net)
1. Create a folder for your code.
- JavaScript: Create a folder called `eldoria` and add a file named `app.js`.
- Python: Create a folder called `eldoria` and add a file named `app.py`.
- C#: Create a folder called `eldoria` and run `dotnet new console`.

### GitHub Copilot Tips

<a href="#">
Expand Down
16 changes: 12 additions & 4 deletions Adventures/3-Advanced/The-Gridlock-Arena-of-Mythos.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,6 @@ Your task is to simulate a battle in the Gridlock Arena. Each creature will make
- Ensure efficient algorithms to handle the battle dynamics. Ask GitHub Copilot/Chat, "How can I make this code more readable and maintainable?".
- The program should have 100% test coverge. Use the /tests command in GitHub Copilot Chat.

### Getting Started

- Ensure that you have both the [GitHub Copilot](https://marketplace.visualstudio.com/items?itemName=GitHub.copilot) and [GitHub Copilot Chat](https://marketplace.visualstudio.com/items?itemName=GitHub.copilot-chat) extensions installed and are signed in to GitHub in VS Code.

### Summary of High-Level Tasks to Perform

1. Use a console application to render the output.
Expand Down Expand Up @@ -91,6 +87,18 @@ Your task is to simulate a battle in the Gridlock Arena. Each creature will make
1. **Return Final Scores**:
- After all moves have been simulated, return the final scores for each creature.

### Tips to Get Started

1. If you're using a GitHub Codespace, you're ready to go!
1. If running locally, ensure that you have your target language/framework installed.
- [Node.js](https://nodejs.org)
- [Python](https://www.python.org/downloads/)
- [.NET](https://dot.net)
1. Create a folder for your code.
- JavaScript: Create a folder called `mythos` and add a file named `app.js`.
- Python: Create a folder called `mythos` and add a file named `app.py`.
- C#: Create a folder called `mythos` and run `dotnet new console`.

### GitHub Copilot Tips

<a href="#">
Expand Down

0 comments on commit 8f78657

Please sign in to comment.