diff --git a/pages/instances/api-cli/cli-cheatsheet.mdx b/pages/instances/api-cli/cli-cheatsheet.mdx
index 0bea7bd4ef..bc8ac0ff50 100644
--- a/pages/instances/api-cli/cli-cheatsheet.mdx
+++ b/pages/instances/api-cli/cli-cheatsheet.mdx
@@ -11,6 +11,7 @@ import Requirements from '@macros/iam/requirements.mdx'
import image from './assets/scaleway-instances-cli-cheatsheet.webp'
+import instancesCheatSheetPdf from "./assets/Scaleway-Instances-CLI-Cheatsheet.pdf"
This page shows the most common Scaleway CLI commands for creating and managing Scaleway Instances.
@@ -22,9 +23,7 @@ This page shows the most common Scaleway CLI commands for creating and managing
- This content is also available as a printable PDF file:
-
- [Download Instances CLI Cheatsheet - Printable](Scaleway-Instances-CLI-Cheatsheet.pdf)
+ This content is also available as a printable PDF file: Download Instances CLI Cheatsheet - Printable
diff --git a/pages/instances/reference-content/preventing-outgoing-ddos.mdx b/pages/instances/reference-content/preventing-outgoing-ddos.mdx
index a06558fb91..66abff5df6 100644
--- a/pages/instances/reference-content/preventing-outgoing-ddos.mdx
+++ b/pages/instances/reference-content/preventing-outgoing-ddos.mdx
@@ -8,6 +8,9 @@ categories:
- compute
---
+import ddosQuickGuidePdf from "./assets/DDoS_Quick_Guide.pdf"
+import npGuidePdf from "./assets/NP_Guide_DDoS.pdf"
+
The explanations given below are known best practices. They do not guarantee that your resources will not be locked if we detect that they are part of a DDoS attack.
@@ -16,7 +19,7 @@ categories:
A Denial of Service (DoS) attack is an attack through which a person can render a system unusable, or significantly slow it down for legitimate users, by overloading its resources.
-[A Distributed Denial of Service (DDoS) attack](DDoS_Quick_Guide.pdf) is a DoS attack that is performed at the same time by a multitude of compromised systems.
+A Distributed Denial of Service (DDoS) attack is a DoS attack that is performed at the same time by a multitude of compromised systems.
The goal of a DoS is not to gain unauthorized access to machines or data, but to prevent legitimate users of a service from using it.
@@ -107,4 +110,4 @@ To configure securely your HTTP proxy, proceed as follows:
## External References
- (In English) [Denial of Service (DoS) guidance](https://www.ncsc.gov.uk/collection/denial-service-dos-guidance-collection)
-- (In French) [Comprendre et anticiper les attaques DDoS](NP_Guide_DDoS.pdf)
\ No newline at end of file
+- (In French) Comprendre et anticiper les attaques DDoS
\ No newline at end of file
diff --git a/pages/kubernetes/reference-content/kubernetes-cheatsheet.mdx b/pages/kubernetes/reference-content/kubernetes-cheatsheet.mdx
index fe6a71fa64..6c3b5a378d 100644
--- a/pages/kubernetes/reference-content/kubernetes-cheatsheet.mdx
+++ b/pages/kubernetes/reference-content/kubernetes-cheatsheet.mdx
@@ -10,7 +10,7 @@ categories:
import Requirements from '@macros/iam/requirements.mdx'
import image from './assets/scaleway-kubernetes-cheatsheet.webp'
-
+import cheatSheetPdf from "./assets/scaleway-kubernetes-cheatsheet.pdf"
This page shows the most common `kubectl` commands for creating and managing Scaleway Kapsule and Kosmos clusters.
@@ -23,5 +23,5 @@ This page shows the most common `kubectl` commands for creating and managing Sca
This content is also available as a printable PDF file. Click the link below to download:
- - [Kubernetes kubectl cheatsheet - Printable](scaleway-kubernetes-cheatsheet.pdf)
+ - Kubernetes kubectl cheatsheet - Printable
\ No newline at end of file
diff --git a/pages/kubernetes/reference-content/kubernetes-decision-tree.mdx b/pages/kubernetes/reference-content/kubernetes-decision-tree.mdx
index 4402a002b9..005157d798 100644
--- a/pages/kubernetes/reference-content/kubernetes-decision-tree.mdx
+++ b/pages/kubernetes/reference-content/kubernetes-decision-tree.mdx
@@ -9,7 +9,7 @@ categories:
- kubernetes
---
import image from './assets/DecisionTreeKubernetes-DocumentationWebsite.webp'
-
+import decisionTreePdf from "./assets/decision-tree-kubernetes.pdf"
This page helps you evaluate your level of knowledge about Kubernetes and provides comprehensive documentation to help you understand the various offerings, integrations, tools, and usage.
@@ -17,7 +17,7 @@ This page helps you evaluate your level of knowledge about Kubernetes and provid
This content is also available as a printable PDF file. Click the link below to download it:
- - [Kubernetes decision tree - Printable](decision-tree-kubernetes.pdf)
+ - Kubernetes decision tree - Printable
## Referred content
diff --git a/tutorials/python-lists-dicts/index.mdx b/tutorials/python-lists-dicts/index.mdx
index b76065e553..7769b82954 100644
--- a/tutorials/python-lists-dicts/index.mdx
+++ b/tutorials/python-lists-dicts/index.mdx
@@ -17,6 +17,8 @@ import image6 from './assets/python-dicts-cheatsheet.webp'
import Requirements from '@macros/iam/requirements.mdx'
+import pythonCheatSheetPdf from "./assets/python-lists-cheatsheet.pdf"
+import pythonDictsCheatSheetPdf from "./assets/python-dicts-cheatsheet.pdf"
If you're coming to this tutorial as a complete Python beginner, make sure you're familiar with the Python concepts covered in our [Python for complete beginners](/tutorials/get-started-python/) tutorial first. You might also be interested in the next tutorial in the series: [Getting started with Python for-loops](/tutorials/python-for-loops/).
@@ -469,11 +471,11 @@ The table below provides a summary of everything covered above:
- This content is also available as a printable PDF file. [Download the Python lists cheatsheet - Printable](python-lists-cheatsheet.pdf).
+ This content is also available as a printable PDF file. Download the Python lists cheatsheet - Printable
## Dictionaries
-
+
While a simple list may be sufficient for storing values and carrying out operations like finding the average, what if we wanted to have a record not just of the class marks, but of which students got which marks? That's where dictionaries come in. Dictionaries are identified with curly brackets as opposed to square brackets and contain a series of key/value pairs.
Note that the methods we used on our lists - indexing to retrieve values, `insert()`, `extend()`, `append()` etc. - do not work on dictionaries. We need to learn a new set of methods, as shown below.
@@ -723,5 +725,5 @@ The table below provides a summary of everything covered above:
- This content is also available as a printable PDF file. [Download the Python dicts cheatsheet - Printable](python-dicts-cheatsheet.pdf)
+ This content is also available as a printable PDF file. Download the Python dicts cheatsheet - Printable
\ No newline at end of file