This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# DORA - Digital Operational Resilience Act | |
## Définition | |
Règlement européen entré en vigueur le **17 janvier 2025** pour renforcer la résilience numérique du secteur financier. | |
## Objectifs | |
- Garantir que les institutions financières peuvent **résister, répondre et se remettre** de perturbations ICT (cyber-attaques, pannes systèmes) | |
- Harmoniser les règles de cybersécurité dans l'UE | |
- Superviser les fournisseurs IT critiques du secteur financier | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# NotebookLM - Jour 1 Matinée : Tester les Limites | |
## 📋 Vue d'ensemble (09h-10h30) | |
**Objectif** : Comprendre quand NotebookLM excelle et quand il atteint ses limites | |
--- | |
## 1️⃣ Versions NotebookLM - Comparatif | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Templates NotebookLM - Audio/Video Overviews | |
## Structure d'un bon prompt | |
``` | |
[LANGUE] | |
[AUDIENCE] | |
[OBJECTIF] | |
[FOCUS/INCLURE] | |
[EXCLURE] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# NotebookLM - Questions Pièges & Réponses pour Présentation Finance | |
## 🔒 SÉCURITÉ & CONFIDENTIALITÉ | |
### Q1 : "Si on met des données sensibles dans NotebookLM, sont-elles utilisées pour entraîner l'IA ?" | |
**Réponse courte :** | |
Cela dépend de la version utilisée. | |
**Réponse détaillée :** |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Linux Swap Configuration Guide for EC2 Instances | |
## What is Swap? | |
**Swap** is disk space that the Linux kernel uses as virtual memory when physical RAM is full. Think of it as an overflow area for memory. | |
**How it works:** | |
1. When RAM fills up, Linux moves rarely-used memory pages to swap | |
2. Frees up RAM for active processes | |
3. If a swapped-out page is needed, Linux reads it back from disk (slow but prevents crashes) |