Skip to content

Commit 7b24b4d

Browse files
committed
few edits
1 parent 8b05857 commit 7b24b4d

File tree

6 files changed

+10
-18
lines changed

6 files changed

+10
-18
lines changed

sources/academy/platform/building_actors_with_ai/01_chatting.md

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ unlisted: true
99

1010
---
1111

12-
Even without knowing how to code, you can open [ChatGPT](https://chatgpt.com/), type the following, and you'll have a scraper ready:
12+
Want to get data about prices on [this Sales page](https://warehouse-theme-metal.myshopify.com/collections/sales)? Even without knowing how to code, you can open [ChatGPT](https://chatgpt.com/), type the following, and you'll have a scraper ready:
1313

1414
```text
1515
Create a scraper in JavaScript which downloads
@@ -36,15 +36,15 @@ Some are technical challenges:
3636
To address all of these, we'll use the [Apify](https://apify.com/) platform, where it's possible to deploy any program, as far as it's structured as a so-called Actor. We'll thank ourselves later if we start our program as an Actor from the very beginning.
3737
<!-- TODO END rewrite this paragraph, it's really bad -->
3838

39-
First, we'll use a few commands to setup an Actor template, and then we'll prompt ChatGPT to generate the code necessary for scraping that [Sales page](https://warehouse-theme-metal.myshopify.com/collections/sales) from the prompt above.
39+
First, we'll use a few commands to setup an Actor template, and then we'll prompt ChatGPT to generate the code necessary for scraping that Sales page.
4040

4141
:::info The Warehouse store
4242

4343
In this course, we'll scrape a real e-commerce site instead of artificial playgrounds or sandboxes. Shopify, a major e-commerce platform, has a demo store at [warehouse-theme-metal.myshopify.com](https://warehouse-theme-metal.myshopify.com/). It strikes a good balance between being realistic and stable enough for a tutorial.
4444

4545
:::
4646

47-
## Creating an Actor
47+
## Installing Apify CLI
4848

4949
First, let's head to the [Installation page](https://docs.apify.com/cli/docs/installation) of the Apify CLI, a command line program, which works as a remote control for the Apiary platform.
5050

@@ -62,14 +62,20 @@ You are ready if it prints something like the following:
6262
apify-cli/0.0.0 (1a2b3c4) running on ... with node-0.0.0, installed via ...
6363
```
6464

65+
## Setting up an Actor template
66+
6567
<!--
6668
TODO Now let's setup the Actor… Find a suitable folder and run `apify create`
6769
-->
6870

6971
:::note Course under construction
70-
7172
This section hasn't been written yet. Come later, please!
73+
:::
7274

75+
## Scraping products
76+
77+
:::note Course under construction
78+
This section hasn't been written yet. Come later, please!
7379
:::
7480

7581
## Running code
@@ -79,9 +85,7 @@ Save it to the template, setup Node/npm environment, run it, get results. If the
7985
-->
8086

8187
:::note Course under construction
82-
8388
This section hasn't been written yet. Come later, please!
84-
8589
:::
8690

8791
#### Scraping stock units
@@ -93,7 +97,5 @@ Teaser: In one of the next lessons we'll get rid of copying and pasting and upda
9397
-->
9498

9599
:::note Course under construction
96-
97100
This section hasn't been written yet. Come later, please!
98-
99101
:::

sources/academy/platform/building_actors_with_ai/02_using_platform.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,7 @@ In lesson 2, students could already push the Actor to Apify and start seeing som
1212
-->
1313

1414
:::note Course under construction
15-
1615
This page hasn't been written yet. Come later, please!
17-
1816
:::
1917

2018

sources/academy/platform/building_actors_with_ai/03_using_agent.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,7 @@ If the paragraph above turns out being a wrong direction, we should use VS Code
1616
-->
1717

1818
:::note Course under construction
19-
2019
This page hasn't been written yet. Come later, please!
21-
2220
:::
2321

2422
<!--

sources/academy/platform/building_actors_with_ai/04_docs_driven_prompting.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,7 @@ In lesson 3, students would try to make changes via ChatGPT and see that it gets
1212
-->
1313

1414
:::note Course under construction
15-
1615
This page hasn't been written yet. Come later, please!
17-
1816
:::
1917

2018
<!--

sources/academy/platform/building_actors_with_ai/05_tests_driven_prompting.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,7 @@ Improving the README, e.g. input output. Pointing the agent to the README and tu
1010
-->
1111

1212
:::note Course under construction
13-
1413
This page hasn't been written yet. Come later, please!
15-
1614
:::
1715

1816

sources/academy/platform/building_actors_with_ai/06_publishing.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,7 @@ It won't include the publishing itself, but will cover most of any 'tidying up'
1212
-->
1313

1414
:::note Course under construction
15-
1615
This page hasn't been written yet. Come later, please!
17-
1816
:::
1917

2018
<!--

0 commit comments

Comments
 (0)