Skip to content

Commit 1911a55

Browse files
committed
Fix all validateLinks issues
1 parent df52309 commit 1911a55

File tree

32 files changed

+50
-51
lines changed

32 files changed

+50
-51
lines changed

dist/validateLinks.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ const main = async () => {
5757
resolved = normalize(path.join(dirname(parsedFile.filename), target));
5858
}
5959
const stats = await stat(resolved).catch(() => undefined);
60-
if (stats?.isDirectory()) {
60+
if (stats?.isDirectory() && !link.content.includes("folder")) {
6161
const readmeExists = await stat(`${resolved}/README.md`).catch(() => undefined);
6262
if (readmeExists) {
6363
// console.log(

legacy/career-training/week-3/preparation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ In order to prepare for your Technical Mock-Interview, please take a look at the
99
- What is the ["STAR" answer format](https://www.amazon.jobs/en/landing_pages/in-person-interview)?
1010
- Check out the [Developer Interview Training by Google](https://grow.google/certificates/interview-warmup/)
1111
- If you haven't yet.. read the [Freecodecamp React Interview Questions](https://www.freecodecamp.org/news/react-interview-questions-to-know/)
12-
- Check out the [Novoresumé](https://novoresume.com/) book about the Interview process [here](./novoresume-interview.pdf)
12+
- Check out the [Novoresumé](https://novoresume.com/) book about the Interview process [here](../week-2/novoresume-interview.pdf)
1313

1414
### General question catalog for interviewees
1515

legacy/git/git1/lesson_plan.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
These are some examples of previously created materials by mentors that you can use yourself, or for inspiration.
66

7-
- [Introduction to Git](https://radical-somersault-80b.notion.site/Introduction-to-Git-184dc1cafb9480ffad0de16e6ea8b379) (by [@aina21](https://www.github.com/aina21), Team 31)
7+
- [Introduction to Git](https://radical-somersault-80b.notion.site/Introduction-to-Git-184dc1cafb9480ffad0de16e6ea8b379) (by [@aina21](https://github.com/aina21), Team 31)
88

99
## Lesson outline
1010

@@ -89,7 +89,6 @@ The exercises suggested for the flipped classroom can be found [here](./class_ex
8989
Here you can find all the materials used to teach the first Git class ✨:
9090

9191
- **[Review](review.md)** - contains a short review over the materials taught in class;
92-
- **[FAQ](frequently_asked_questions.md)** - contains a compilation of the frequently asked questions;
9392
- **[Cheatsheet](cheatsheet.md)** - contains a cheatsheet with the commands used during the class (and a few extra);
9493
- **[Resources](resources.md)** - contains some resources about Git that might be useful;
9594
- **[Git Basics](Git_basics.pdf)** - the slides used to teach some concepts during class.

legacy/git/git1/preparation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Readings:
99

1010
Github:
1111

12-
- if you haven't created an account on [github.com](www.github.com) yet, please create it now :)
12+
- if you haven't created an account on [github.com](https://github.com/) yet, please create it now :)
1313

1414
Git:
1515

legacy/git/git1/preparation_flipped_classroom.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This is the preparation for the flipped classroom (vs. "old style" presential cl
66

77
Github:
88

9-
- if you haven't created an account on [github.com](www.github.com) yet, please create it now :)
9+
- if you haven't created an account on [github.com](https://github.com/) yet, please create it now :)
1010

1111
Git:
1212

legacy/git/git1/review.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ and create a new git repository using:
8181
git init
8282
```
8383

84-
You can also create a repository on your local machine by cloning a remote repository with `git clone <URL>` command. This copies the repository from a remote machine (typically github) and initializes it on your machine. You can try to clone some public repositories on [github.com](www.github.com).
84+
You can also create a repository on your local machine by cloning a remote repository with `git clone <URL>` command. This copies the repository from a remote machine (typically github) and initializes it on your machine. You can try to clone some public repositories on [github.com](https://github.com/).
8585

8686
Before creating any repository make sure you are not inside a git repository already. This is very important!!! To do so type `git status`, if you get an error it means you are not inside a git repository and you can safely create a new one.
8787

legacy/javascript/homework-projects/projects/currency-converter/currency-converter.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ Continue with the format of the object you used last week or improve it and refa
7474

7575
### `JS3 week1` - Json, Apis, Fetch
7676

77-
- [ ] Follow the [API creation guide](/homework-projects/guides/making-your-API-guide.md) to make your own API that you will use from now on.
77+
- [ ] Follow the [API creation guide](../../guides/making-your-API-guide.md) to make your own API that you will use from now on.
7878
- [ ] Refactor your code so that you use the currency rates dynamically from your API instead of the static array of objects.
7979
- [ ] Implement functionality to search for a specific currency.
8080
- [ ] Ensure all the functionality is working smoothly after refactoring.

legacy/javascript/homework-projects/projects/memory-game/memory-game.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Continue with the format of the picture object you used last week or improve it
3939

4040
### `JS3 week1` - Json, Apis, Fetch
4141

42-
- [ ] follow the [API creation guide](/homework-projects/guides/making-your-API-guide.md) to make your own API that you will use from now on.
42+
- [ ] follow the [API creation guide](../../guides/making-your-API-guide.md) to make your own API that you will use from now on.
4343
- [ ] refactor your code so that you ditch the static array of objects and instead fetch the cards data from your API.
4444
- [ ] ensure all the functionality is working smoothly after refactoring.
4545

legacy/javascript/homework-projects/projects/movie-app/movie-app.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ Here you will develop some features that will differentiate your movie platform
6464

6565
### `JS3 week1` - Json, Apis, Fetch
6666

67-
- [ ] follow the [API creation guide](/homework-projects/guides/making-your-API-guide.md) to make your own API that you will use from now on.
67+
- [ ] follow the [API creation guide](../../guides/making-your-API-guide.md) to make your own API that you will use from now on.
6868
- [ ] refactor your code so that you ditch the static array of objects and instead fetch the movies data from your API.
6969
- [ ] ensure all the functionality is working smoothly after refactoring.
7070

legacy/javascript/homework-projects/projects/quiz-app/quiz-app.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ b. add number inputs for the player points and use the browser's arrow buttons o
6363

6464
### `JS3 week1` - Json, Apis, Fetch
6565

66-
- [ ] follow the [API creation guide](/homework-projects/guides/making-your-API-guide.md) to make your own API that you will use from now on.
66+
- [ ] follow the [API creation guide](../../guides/making-your-API-guide.md) to make your own API that you will use from now on.
6767

6868
- [ ] refactor your code so that you ditch the static array of objects and instead fetch the initial questions data from your API.
6969

0 commit comments

Comments
 (0)