Skip to content

Commit 43e9745

Browse files
committed
fix: edit links to the JS course
1 parent f50f6bc commit 43e9745

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

sources/academy/homepage_content.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"Beginner courses": [
33
{
44
"title": "Web scraping basics for JavaScript devs",
5-
"link": "/academy/web-scraping-for-beginners",
5+
"link": "/academy/scraping-basics-javascript",
66
"description": "Learn how to use JavaScript to extract information from websites in this practical course, starting from the absolute basics.",
77
"imageUrl": "/img/academy/intro.svg"
88
},

sources/academy/platform/expert_scraping_with_apify/actors_webhooks.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Prior to moving forward, please read over these resources:
4141

4242
## Our task {#our-task}
4343

44-
In this task, we'll be building on top of what we already created in the [Web scraping basics for JavaScript devs](/academy/web-scraping-for-beginners/challenge) course's final challenge, so keep those files safe!
44+
In this task, we'll be building on top of what we already created in the [Web scraping basics for JavaScript devs](/academy/scraping-basics-javascript/legacy/challenge) course's final challenge, so keep those files safe!
4545

4646
Once our Amazon Actor has completed its run, we will, rather than sending an email to ourselves, call an Actor through a webhook. The Actor called will be a new Actor that we will create together, which will take the dataset ID as input, then subsequently filter through all of the results and return only the cheapest one for each product. All of the results of the Actor will be pushed to its default dataset.
4747

sources/academy/webscraping/advanced_web_scraping/crawling/sitemaps-vs-search.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ sidebar_position: 1
55
slug: /advanced-web-scraping/crawling/sitemaps-vs-search
66
---
77

8-
The core crawling problem comes to down to ensuring that we reliably find all detail pages on the target website or inside its categories. This is trivial for small sites. We just open the home page or category pages and paginate to the end as we did in the [Web scraping basics for JavaScript devs](/academy/web-scraping-for-beginners) course.
8+
The core crawling problem comes to down to ensuring that we reliably find all detail pages on the target website or inside its categories. This is trivial for small sites. We just open the home page or category pages and paginate to the end.
99

1010
Unfortunately, _most modern websites restrict pagination_ only to somewhere between 1 and 10,000 products. Solving this problem might seem relatively straightforward at first but there are multiple hurdles that we will explore in this lesson.
1111

sources/academy/webscraping/advanced_web_scraping/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ category: web scraping & automation
66
slug: /advanced-web-scraping
77
---
88

9-
In the [Web scraping basics for JavaScript devs](/academy/web-scraping-for-beginners) course, we have learned the necessary basics required to create a scraper. In the following courses, we learned more about specific practices and techniques that will help us to solve most of the problems we will face.
9+
In the [Web scraping basics for JavaScript devs](/academy/scraping-basics-javascript) course, we have learned the necessary basics required to create a scraper. In the following courses, we learned more about specific practices and techniques that will help us to solve most of the problems we will face.
1010

1111
In this course, we will take all of that knowledge, add a few more advanced concepts, and apply them to learn how to build a production-ready web scraper.
1212

src/pages/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ export default function Home() {
267267
icon={<WebScrapingForBeginners />}
268268
title="Web scraping for beginners"
269269
description="Learn the basics of web scraping and how to develop your own scraper."
270-
to="/academy/web-scraping-for-beginners"
270+
to="/academy/scraping-basics-javascript"
271271
/>
272272
<CardWithIcon
273273
icon={<ApifyPlatformCourse />}

0 commit comments

Comments
 (0)