Skip to content

Commit 069a275

Browse files
committed
chore(gen): review tutorials
1 parent a79154c commit 069a275

File tree

5 files changed

+19
-19
lines changed

5 files changed

+19
-19
lines changed

tutorials/deploy-openproject-database-postgresql/index.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ categories:
1111
- instances
1212
hero: assets/scaleway_openproject.webp
1313
dates:
14-
validation: 2024-08-12
14+
validation: 2025-02-18
1515
posted: 2020-07-23
1616
---
1717

@@ -46,10 +46,10 @@ In this tutorial, you will learn how to install and configure OpenProject on an
4646
If you are using `sudo` to launch commands with administrator permissions, your password will be requested.
4747
</Message>
4848
4. Add the OpenProject repository:
49-
```
50-
wget -O /etc/apt/sources.list.d/openproject.list \
51-
https://dl.packager.io/srv/opf/openproject/stable/12/installer/ubuntu/22.04.repo
52-
```
49+
```
50+
sudo wget -O /etc/apt/sources.list.d/openproject.list \
51+
https://dl.packager.io/srv/opf/openproject/stable/15/installer/ubuntu/22.04.repo
52+
```
5353
5. Update the `apt` package list and install the OpenProject Community Edition.
5454
```
5555
apt-get update

tutorials/get-started-python/index.mdx

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ hero: assets/scaleway-python.webp
1010
categories:
1111
- compute
1212
dates:
13-
validation: 2024-08-12
13+
validation: 2025-02-18
1414
posted: 2023-01-25
1515
---
1616

@@ -59,11 +59,11 @@ We will be coding from the **terminal**, also referred to as the **command line*
5959
```
6060
python3
6161
```
62-
62+
6363
An output similar to the following displays, showing that you are in the Python Interactive Shell:
6464

6565
```
66-
Python 3.9.12 (main, <date>, <time>)
66+
Python 3.9.12 (main, <date>, <time>)
6767
[GCC 5.4.0 20160609] on <OS>
6868
Type "help", "copyright", "credits" or "license" for more information.
6969
>>>
@@ -84,12 +84,12 @@ So how do we get Python to display "Hello World"? The answer is: via the `print(
8484
- The brackets `()` contain the text you want to print
8585
- The text must be contained in quotation marks `" "` or `' '`
8686

87-
1. Type the following command into the shell and hit enter:
87+
1. Type the following command into the shell and hit enter:
8888

8989
```
9090
print("Hello world")
9191
```
92-
92+
9393
The following output displays:
9494

9595
```
@@ -117,7 +117,7 @@ Variables are used to store and label data. They are a key part of any programmi
117117
```
118118
print(my_new_variable)
119119
```
120-
120+
121121
The following output displays:
122122

123123
```
@@ -159,7 +159,7 @@ Variables are used to store and label data. They are a key part of any programmi
159159
```
160160
print(my_new_variable)
161161
```
162-
162+
163163
The following output displays:
164164

165165
```
@@ -176,7 +176,7 @@ Variables are used to store and label data. They are a key part of any programmi
176176
total_animals = dogs + cats
177177
print(total_animals)
178178
```
179-
179+
180180
The following output displays, showing you the total number of dogs and cats:
181181

182182
```
@@ -236,7 +236,7 @@ We assume that, as per our previous commands, we already have the variables `dog
236236
- The second line is indented with a tab or four spaces, and contains the command to execute if the condition is fulfilled.
237237
Indentation is crucial in Python for the code to be interpreted correctly. Make sure you always follow the indentation pattern shown in examples.
238238
</Message>
239-
239+
240240
Hit enter twice after you have finished typing, to make it clear to the Python shell that you do not have any other elements to add to this command.
241241

242242
The following output displays:
@@ -277,7 +277,7 @@ We assume that, as per our previous commands, we already have the variables `dog
277277

278278
We have 2 cats and 4 dogs, so the printed statement is true!
279279

280-
However, what if we had an equal number of dogs and cats?
280+
However, what if we had an equal number of dogs and cats?
281281

282282
4. Enter the following into the Python shell:
283283

@@ -395,7 +395,7 @@ So far, we've been doing all our coding in the Python Interactive Shell, where y
395395
Python has read our `.py` file and the output displays directly to the terminal. This makes it really easy to edit and play around with the code in your file, save it, and run it again to see how your changes affect the output. If you navigate within the terminal to the location of the file (in this case, via `cd /home/users/`) you can run the code directly just by typing `python3 animals.py`.
396396

397397
Let's try modifying the code in our file one final time.
398-
398+
399399
6. Open `animals.py` in your text editor, overwrite the existing code with the following, and save:
400400

401401
```

tutorials/install-docker-ubuntu-jammy-jellyfish/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ tags: docker ubuntu jammy-jellyfish
99
categories:
1010
- instances
1111
dates:
12-
validation: 2024-08-12
12+
validation: 2025-02-18
1313
posted: 2023-08-01
1414
---
1515

tutorials/install-mattermost/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ categories:
1010
- postgresql-and-mysql
1111
tags: messaging Mattermost Slack postgresql
1212
dates:
13-
validation: 2024-08-12
13+
validation: 2025-02-18
1414
posted: 2019-01-22
1515
---
1616

tutorials/send-emails-tem-serverless-framework/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ categories:
1212
- functions
1313
- transactional-email
1414
dates:
15-
validation: 2024-08-12
15+
validation: 2025-02-18
1616
posted: 2024-02-01
1717
---
1818

0 commit comments

Comments
 (0)